cloudflare
tcp/443 tcp/80 tcp/8443
Open service 2606:4700:3036::ac43:b041:8443 · alzc33.dpdns.org
2026-01-26 14:12
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 14:12:39 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 3797
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jSYyCt0TNf8ovTQ9RyuB8jFK5xW9mPQAfofEOXf1Jb61odz9UH02cZFfZWmhGmZH3sMEWs1xgtPdPTJYN2VauOz2UWjvFeDv%2B6DllJWQZPfeV0lMb13whuFuQvo%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c409b3fbac06037-SJC
alt-svc: h3=":8443"; ma=86400
Page title: 订阅管理系统
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>订阅管理系统</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
.login-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.login-box {
backdrop-filter: blur(8px);
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transition: all 0.3s;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.input-field {
transition: all 0.3s;
border: 1px solid #e2e8f0;
}
.input-field:focus {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}
</style>
</head>
<body class="login-container flex items-center justify-center">
<div class="login-box p-8 rounded-xl w-full max-w-md">
<div class="text-center mb-8">
<h1 class="text-2xl font-bold text-gray-800"><i class="fas fa-calendar-check mr-2"></i>订阅管理系统</h1>
<p class="text-gray-600 mt-2">登录管理您的订阅提醒</p>
</div>
<form id="loginForm" class="space-y-6">
<div>
<label for="username" class="block text-sm font-medium text-gray-700 mb-1">
<i class="fas fa-user mr-2"></i>用户名
</label>
<input type="text" id="username" name="username" required
class="input-field w-full px-4 py-3 rounded-lg text-gray-700 focus:outline-none">
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">
<i class="fas fa-lock mr-2"></i>密码
</label>
<input type="password" id="password" name="password" required
class="input-field w-full px-4 py-3 rounded-lg text-gray-700 focus:outline-none">
</div>
<button type="submit"
class="btn-primary w-full py-3 rounded-lg text-white font-medium focus:outline-none">
<i class="fas fa-sign-in-alt mr-2"></i>登录
</button>
<div id="errorMsg" class="text-red-500 text-center"></div>
</form>
</div>
<script>
document.getElementById('loginForm').addEventListener('submit', async (e) => {
e.preventDefault();
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const button = e.target.querySelector('button');
const originalContent = button.innerHTML;
button.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i>登录中...';
button.disabled = true;
try {
const response = await fetch('/api/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password })
});
const result = await response.json();
if (result.success) {
window.location.href = '/admin';
} else {
document.getElementById('errorMsg').textContent = result.message || '用户名或密码错误';
button.innerHTML = originalContent;
button.disabled = false;
}
} catch (error) {
document.getElementById('errorMsg').textContent = '发生错误,请稍后再试';
button.innerHTML = originalContent;
button.disabled = false;
}
});
</script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · alzc33.dpdns.org
2026-01-26 14:12
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 14:12:38 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 3797
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=kHJH6JmP67xZJhOtm1bpB8UdvsHKn6NktaeuHsWVTdmlB9vDuq9L4QzlYux8B0lzbLGWwsHXmZN2gZu4oUs7mKehDJcotVefJLB6ncHuhnAhmgLDTXqhEHlQIQ4%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c409b3f2ad3911c-LHR
alt-svc: h3=":443"; ma=86400
Page title: 订阅管理系统
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>订阅管理系统</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
.login-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.login-box {
backdrop-filter: blur(8px);
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transition: all 0.3s;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.input-field {
transition: all 0.3s;
border: 1px solid #e2e8f0;
}
.input-field:focus {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}
</style>
</head>
<body class="login-container flex items-center justify-center">
<div class="login-box p-8 rounded-xl w-full max-w-md">
<div class="text-center mb-8">
<h1 class="text-2xl font-bold text-gray-800"><i class="fas fa-calendar-check mr-2"></i>订阅管理系统</h1>
<p class="text-gray-600 mt-2">登录管理您的订阅提醒</p>
</div>
<form id="loginForm" class="space-y-6">
<div>
<label for="username" class="block text-sm font-medium text-gray-700 mb-1">
<i class="fas fa-user mr-2"></i>用户名
</label>
<input type="text" id="username" name="username" required
class="input-field w-full px-4 py-3 rounded-lg text-gray-700 focus:outline-none">
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">
<i class="fas fa-lock mr-2"></i>密码
</label>
<input type="password" id="password" name="password" required
class="input-field w-full px-4 py-3 rounded-lg text-gray-700 focus:outline-none">
</div>
<button type="submit"
class="btn-primary w-full py-3 rounded-lg text-white font-medium focus:outline-none">
<i class="fas fa-sign-in-alt mr-2"></i>登录
</button>
<div id="errorMsg" class="text-red-500 text-center"></div>
</form>
</div>
<script>
document.getElementById('loginForm').addEventListener('submit', async (e) => {
e.preventDefault();
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const button = e.target.querySelector('button');
const originalContent = button.innerHTML;
button.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i>登录中...';
button.disabled = true;
try {
const response = await fetch('/api/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password })
});
const result = await response.json();
if (result.success) {
window.location.href = '/admin';
} else {
document.getElementById('errorMsg').textContent = result.message || '用户名或密码错误';
button.innerHTML = originalContent;
button.disabled = false;
}
} catch (error) {
document.getElementById('errorMsg').textContent = '发生错误,请稍后再试';
button.innerHTML = originalContent;
button.disabled = false;
}
});
</script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · alzc33.dpdns.org
2026-01-26 14:12
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 14:12:38 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 3797
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LH8%2Fu4ymECIrTkScsIyKwLPSLW0PXQIMsQ1SguCsuA1DpIHEHYVwuY8gXwQw2kU%2FN4j%2B6h32wBMmnGGiw%2BfWcNEGdmGQN1W7zqBMJ4s0p324Iufx85jocdjnjMA%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c409b3f2842d232-FRA
alt-svc: h3=":443"; ma=86400
Page title: 订阅管理系统
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>订阅管理系统</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
.login-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.login-box {
backdrop-filter: blur(8px);
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transition: all 0.3s;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.input-field {
transition: all 0.3s;
border: 1px solid #e2e8f0;
}
.input-field:focus {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}
</style>
</head>
<body class="login-container flex items-center justify-center">
<div class="login-box p-8 rounded-xl w-full max-w-md">
<div class="text-center mb-8">
<h1 class="text-2xl font-bold text-gray-800"><i class="fas fa-calendar-check mr-2"></i>订阅管理系统</h1>
<p class="text-gray-600 mt-2">登录管理您的订阅提醒</p>
</div>
<form id="loginForm" class="space-y-6">
<div>
<label for="username" class="block text-sm font-medium text-gray-700 mb-1">
<i class="fas fa-user mr-2"></i>用户名
</label>
<input type="text" id="username" name="username" required
class="input-field w-full px-4 py-3 rounded-lg text-gray-700 focus:outline-none">
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">
<i class="fas fa-lock mr-2"></i>密码
</label>
<input type="password" id="password" name="password" required
class="input-field w-full px-4 py-3 rounded-lg text-gray-700 focus:outline-none">
</div>
<button type="submit"
class="btn-primary w-full py-3 rounded-lg text-white font-medium focus:outline-none">
<i class="fas fa-sign-in-alt mr-2"></i>登录
</button>
<div id="errorMsg" class="text-red-500 text-center"></div>
</form>
</div>
<script>
document.getElementById('loginForm').addEventListener('submit', async (e) => {
e.preventDefault();
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const button = e.target.querySelector('button');
const originalContent = button.innerHTML;
button.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i>登录中...';
button.disabled = true;
try {
const response = await fetch('/api/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password })
});
const result = await response.json();
if (result.success) {
window.location.href = '/admin';
} else {
document.getElementById('errorMsg').textContent = result.message || '用户名或密码错误';
button.innerHTML = originalContent;
button.disabled = false;
}
} catch (error) {
document.getElementById('errorMsg').textContent = '发生错误,请稍后再试';
button.innerHTML = originalContent;
button.disabled = false;
}
});
</script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · magenta-hydration.com
2026-01-26 13:49
HTTP/1.1 522 <none> Date: Mon, 26 Jan 2026 13:49:43 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19576,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c4079300d3f64a6-YYZ alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · magenta-hydration.com
2026-01-26 13:49
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 13:49:24 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
vary: RSC, Next-Router-State-Tree, Next-Router-Prefetch, Next-Router-Segment-Prefetch, Accept-Encoding
x-nextjs-cache: HIT
x-nextjs-prerender: 1
x-nextjs-stale-time: 4294967294
x-powered-by: Next.js
Cache-Control: s-maxage=31536000
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=11,cfOrigin;dur=644
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fVDNDEi9aGtJy%2FCOavrRhjjxWKlMyfbiTzsNeNB1N7IMymW22W93ITdYtZEXx6F%2FyjTDkXOV9PrFHP6WiWQSnwFUdC1xX4VZvMywINyKtgwPTSkUxTEvsIhBVCRiMdAe2w%3D%3D"}]}
strict-transport-security: max-age=31536000; includeSubDomains; preload
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-Content-Type-Options: nosniff
Server: cloudflare
CF-RAY: 9c40792e8c9fc50c-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · magenta-hydration.com
2026-01-26 13:49
HTTP/1.1 308 Permanent Redirect
Date: Mon, 26 Jan 2026 13:49:23 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://magenta-hydration.com
cf-cache-status: DYNAMIC
X-Content-Type-Options: nosniff
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sjyu7RQAkhYXT49k7W7ib3ruNN4qpAuTjhBWi45AAgtloSVNN5Jwoqxx53k8fOlMxbf3Q9A%2FNLOY7hzSsvCW1nzskHOc9zNJZpg68Lha8F9d4sQfK8J09Sx4yZCrAK64Vw%3D%3D"}]}
Server: cloudflare
CF-RAY: 9c40792a89226657-AMS
alt-svc: h3=":443"; ma=86400
Page title: 308 Permanent Redirect
<html>
<head><title>308 Permanent Redirect</title></head>
<body>
<center><h1>308 Permanent Redirect</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · jixiantz.com
2026-01-26 11:57
HTTP/1.1 403 Forbidden
Date: Mon, 26 Jan 2026 11:57:43 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=wDqmv3ZxJSP%2B%2BntR0L5KXSYSumXHLDpCiXoGkKbG1UBNnufGkCR4jyhJwIbOqkO%2FkwAaqC%2B%2FpAcYW98cTd4XovELxnIWCfwWLgqzidcuipw%2F3s5gHsm0CQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3fd59d6cf6d278-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> jixiantz.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c3fd59d6cf6d278</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::e58:2001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:8443 · jixiantz.com
2026-01-26 11:57
HTTP/1.1 403 Forbidden
Date: Mon, 26 Jan 2026 11:57:43 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bLoP9%2Fl9hBvv5V8xh3vJFcl2sONyAXXzUkudymK4es21XNc8LZP4sERhirgBdOqtP7xgPm%2B8bdkKXHSTY8rQNd3K9Hk8yy1S9nsQXT70YTWP1vvT8bkuoQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3fd59bf9ddb94a-AMS
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> jixiantz.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c3fd59bf9ddb94a</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:2:d0::176f:2001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-rev
Open service 2606:4700:3036::ac43:b041:80 · jixiantz.com
2026-01-26 11:57
HTTP/1.1 403 Forbidden
Date: Mon, 26 Jan 2026 11:57:43 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yGDlG6Y3WJ7LwQT8D9DWchcUcAd8UrKArVi5F%2BM%2FjUYIa2QtdYvZ5KcRXJvddikVhxjSMnwV%2BdW9mm0iJXladueHWrFBWc%2BEl3X9IiSXUy%2BpQfTx23emGw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3fd59bff4c30ee-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> jixiantz.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c3fd59bff4c30ee</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::d1a:1</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal"
Open service 2606:4700:3036::ac43:b041:8443 · vaticanises.com
2026-01-26 11:51
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 11:51:29 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3fcc76fea58f38-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · vaticanises.com
2026-01-26 11:51
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 11:51:29 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vWwrQeCjaD99n46In%2FFD5P6hP0xw4MVL%2BeHAjgO3IgiCtQjw%2FiZE5R6XQn2zwlYGy1CizibPkrZbN3%2FneshPpSZvQFyNJTVaTkVjs%2BZFmUbfZnEWK2HGGLC4eA%3D%3D"}]}
cf-cache-status: DYNAMIC
vary: accept-encoding
CF-RAY: 9c3fcc770a2f775e-AMS
alt-svc: h3=":443"; ma=86400
Page title: Joints Restoration Solution
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Joints Restoration Solution</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #ffffff;
color: #333333;
text-align: center;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 24px 16px;
}
.header {
margin-bottom: 16px;
color: #666666;
}
.header p {
font-size: 14px;
line-height: 1.5;
}
.header .title {
display: block;
font-weight: 600;
color: #1f2937;
margin-bottom: 4px;
}
.header .meta {
font-size: 12px;
color: #6b7280;
}
.divider {
border-top: 1px solid #e5e7eb;
margin: 24px auto;
width: 75%;
}
.main-title {
font-size: 32px;
font-weight: normal;
line-height: 1.3;
margin: 24px 0;
color: #475569;
padding: 0 8px;
}
.highlight {
color: #ef4444;
font-weight: bold;
background-color: #fef2f2;
padding: 4px 8px;
border-radius: 6px;
display: inline-block;
margin-top: 4px;
}
.emphasis {
font-weight: bold;
color: #1f2937;
}
.video-container {
margin: 32px auto;
width: 100%;
max-width: 640px;
padding: 0 8px;
}
.video-wrapper {
position: relative;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.video-image {
width: 100%;
height: 100%;
cursor: pointer;
}
.play-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.play-button {
width: 64px;
height: 64px;
background-color: #ef4444;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}
.play-icon {
width: 24px;
height: 24px;
fill: white;
margin-left: 4px;
}
.cta-button {
display: block;
width: 100%;
max-width: 640px;
margin: 24px auto;
background-color: #ef4444;
color: white;
font-size: 18px;
font-weight: bold;
padding: 16px 24px;
border-radius: 12px;
text-decoration: none;
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
transition: all 0.3s ease;
border: 2px solid #ef4444;
}
.cta-button:hover {
background-color: #dc2626;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}
.description {
max-width: 800px;
margin: 32px auto;
text-align: left;
padding: 0 16px;
color: #374151;
}
.description p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 20px;
}
.description .highlight-text {
color: #ef4444;
font-weight: bold;
background-color: #fef2f2;
padding: 2px 6px;
border-radius: 4px;
}
.description .success-number {
font-weight: bold;
color: #059669;
}
.description .warning {
font-weight: bold;
color: #dc2626;
}
.call-to-action-text {
text-align: center;
padding: 16px 24px;
border-radius: 8px;
}
.call-to-action-text p {
font-size: 16px;
font-weight: 500;
color: #1f2937;
}
.footer {
font-size: 14px;
color: #6b7280;
margin-top: 48px;
padding: 16px 24px;
border-top: 1px solid #e5e7eb;
background-color: #f9fafb;
border-radius: 12px 12px 0 0;
}
.footer p {
margin-bottom: 16px;
font-weight: 500;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px 16px;
margin-bottom: 24px;
font-size: 12px;
}
.footer-links a {
color: #3b82f6;
text-decoration: none;
padding: 4px 8px;
}
.footer-links a:hover {
text-decoration: underline;
color: #1d4ed8;
}
.footer-links .separator {
color: #d1d5db;
}
.disclaimer {
font-size: 12px;
color: #9ca3af;
line-height: 1.5;
text-align: left;
Open service 2606:4700:3036::ac43:b041:80 · vaticanises.com
2026-01-26 11:51
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 11:51:29 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Gl6hG39PmBx84WPdlo%2Fza7Zk%2FfQ34P9bTFLbgUwhjTtEl6qE2cSMeR6VXHeazHDd%2FLW%2FMLZUYs8GmwL7xJeKDcdskC6LxvH2mfWl63%2F7agbyY7TmCaPqYYJ7PA%3D%3D"}]}
cf-cache-status: DYNAMIC
vary: accept-encoding
CF-RAY: 9c3fcc76c8adae16-LHR
alt-svc: h3=":443"; ma=86400
Page title: Joints Restoration Solution
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Joints Restoration Solution</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #ffffff;
color: #333333;
text-align: center;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 24px 16px;
}
.header {
margin-bottom: 16px;
color: #666666;
}
.header p {
font-size: 14px;
line-height: 1.5;
}
.header .title {
display: block;
font-weight: 600;
color: #1f2937;
margin-bottom: 4px;
}
.header .meta {
font-size: 12px;
color: #6b7280;
}
.divider {
border-top: 1px solid #e5e7eb;
margin: 24px auto;
width: 75%;
}
.main-title {
font-size: 32px;
font-weight: normal;
line-height: 1.3;
margin: 24px 0;
color: #475569;
padding: 0 8px;
}
.highlight {
color: #ef4444;
font-weight: bold;
background-color: #fef2f2;
padding: 4px 8px;
border-radius: 6px;
display: inline-block;
margin-top: 4px;
}
.emphasis {
font-weight: bold;
color: #1f2937;
}
.video-container {
margin: 32px auto;
width: 100%;
max-width: 640px;
padding: 0 8px;
}
.video-wrapper {
position: relative;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.video-image {
width: 100%;
height: 100%;
cursor: pointer;
}
.play-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.play-button {
width: 64px;
height: 64px;
background-color: #ef4444;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}
.play-icon {
width: 24px;
height: 24px;
fill: white;
margin-left: 4px;
}
.cta-button {
display: block;
width: 100%;
max-width: 640px;
margin: 24px auto;
background-color: #ef4444;
color: white;
font-size: 18px;
font-weight: bold;
padding: 16px 24px;
border-radius: 12px;
text-decoration: none;
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
transition: all 0.3s ease;
border: 2px solid #ef4444;
}
.cta-button:hover {
background-color: #dc2626;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}
.description {
max-width: 800px;
margin: 32px auto;
text-align: left;
padding: 0 16px;
color: #374151;
}
.description p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 20px;
}
.description .highlight-text {
color: #ef4444;
font-weight: bold;
background-color: #fef2f2;
padding: 2px 6px;
border-radius: 4px;
}
.description .success-number {
font-weight: bold;
color: #059669;
}
.description .warning {
font-weight: bold;
color: #dc2626;
}
.call-to-action-text {
text-align: center;
padding: 16px 24px;
border-radius: 8px;
}
.call-to-action-text p {
font-size: 16px;
font-weight: 500;
color: #1f2937;
}
.footer {
font-size: 14px;
color: #6b7280;
margin-top: 48px;
padding: 16px 24px;
border-top: 1px solid #e5e7eb;
background-color: #f9fafb;
border-radius: 12px 12px 0 0;
}
.footer p {
margin-bottom: 16px;
font-weight: 500;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px 16px;
margin-bottom: 24px;
font-size: 12px;
}
.footer-links a {
color: #3b82f6;
text-decoration: none;
padding: 4px 8px;
}
.footer-links a:hover {
text-decoration: underline;
color: #1d4ed8;
}
.footer-links .separator {
color: #d1d5db;
}
.disclaimer {
font-size: 12px;
color: #9ca3af;
line-height: 1.5;
text-align: left;
Open service 2606:4700:3036::ac43:b041:80 · events.homeschoolfox.com
2026-01-26 10:07
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 10:07:58 GMT
Content-Length: 0
Connection: close
Location: https://events.homeschoolfox.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=i3aWOXWEdM5gKv2X1u5slR%2BlnEVCeLz3y6HaKdX4RR50i76PXrTn4bwY4jPoWyQidm7M5qZteQVCRRLKb93fHR%2FnM%2BheZw8wMzhboQ0sTDzp2PI6tNv6niZpT5PCZilvOeps3w%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3f34d629e1dbea-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · events.homeschoolfox.com
2026-01-26 10:07
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 10:07:58 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: max-age=0, private, must-revalidate
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pnRQA0bgRHgt468KM7uup%2FBcdZIhBd10fxnNTjG9Tl5LHl7x3XBpnH1XywGlePt1bxbdrXgAyMMCXta6CwTlLlEg9GHKQWiQCzGJ8MGpW%2Fvw5Nw6x%2BAl7GGNMC67oHztzAd41Q%3D%3D"}]}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=8,cfOrigin;dur=169
Link: </assets/application-6e7d8d64.css>; rel=preload; as=style; nopush,</assets/application.tailwind-f0144024.css>; rel=preload; as=style; nopush,</assets/badge-af16c68f.css>; rel=preload; as=style; nopush,</assets/brand-b985d60c.css>; rel=preload; as=style; nopush,</assets/buttons-c35c0f03.css>; rel=preload; as=style; nopush,</assets/card-b3305ae8.css>; rel=preload; as=style; nopush,</assets/dropdown-cb2504b0.css>; rel=preload; as=style; nopush,</assets/editor-2cd55d1f.css>; rel=preload; as=style; nopush,</assets/forms-238a148c.css>; rel=preload; as=style; nopush,</assets/rsvp_modal-2ee779f1.css>; rel=preload; as=style; nopush,</assets/sortable-d154addc.css>; rel=preload; as=style; nopush,</assets/typography-1444f545.css>; rel=preload; as=style; nopush,</assets/vendor/tippy-266ccbf2.css>; rel=preload; as=style; nopush,</assets/application-fd6bb652.js>; rel=modulepreload; as=script; nopush
Referrer-Policy: strict-origin-when-cross-origin
Set-Cookie: _event_fox_session=YN4J60LrAhu%2FbkkXgS2S7%2BIRTo6smRMtCC4hfaMglAuN3P14%2BWPv29gKIMdBwLnSO9%2FaUfJK5fj467XBuVsQwIvXb1BA1SI%2BvyfVt9qFfolFTYzb%2Fh2QkYze7SvVdBJZl25jYQB4pTJfxgHpTeONdEm4sMxB50UBYlgqqLNA4A50j9M6LS5m%2BICa5ZcWZpcx7%2BFnFZbT3Q%2BkyMsxJBgM6HLdJkoL1Ye6hM%2FY9%2F952mvGr4%2FiZCrM1jnGvOkRwIVdl6pb5lFIn5k3mymOEVs3AmwGS0l1G7f56mw%3D--zLwawgJDua5NHTao--y8uoSzDcQo5FC36yGkmxxA%3D%3D; path=/; secure; httponly; samesite=lax
Strict-Transport-Security: max-age=63072000; includeSubDomains
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Permitted-Cross-Domain-Policies: none
X-Request-Id: 3c242bc6-105b-4e31-b953-91a8c2f9753d
X-Runtime: 0.008457
X-Xss-Protection: 0
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3f34d68b668c45-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · events.homeschoolfox.com
2026-01-26 10:07
HTTP/1.1 522 <none> Date: Mon, 26 Jan 2026 10:08:19 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19708,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3f34dbaac143a3-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · foom.md
2026-01-26 09:13
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 09:13:27 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server-Timing: cfEdge;dur=36,cfOrigin;dur=0
CF-Ray: 9c3ee4f919fff92a-SIN
Access-Control-Allow-Origin: *
Cache-Control: no-store, max-age=0
Link: <https://fonts.googleapis.com>; rel="preconnect"
Server: cloudflare
Vary: Accept-Encoding, Accept
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
x-foom-status: rebuilding
x-robots-tag: noindex
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bDycAC%2FJatq4Ntwo%2F%2FRi5AHN%2BxS9NSlnC2vDmv3ZhOfsIzekE6zp4P7dH1Gd%2BF%2B2lSW%2B6%2BoeAT8cS3kTj%2FDtET9%2BJZxMlaGY4FI5Nms%2FAJfLKK8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
alt-svc: h3=":443"; ma=86400
Page title: FOOM.MD · Under Reconstruction
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>FOOM.MD · Under Reconstruction</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
color-scheme: light dark;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::selection {
background: #808080;
color: #ffffff;
}
body {
min-height: 100vh;
font-family: "JetBrains Mono", "Courier New", monospace;
background: #ffffff;
color: #000000;
}
.maintenance-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
background: inherit;
color: inherit;
position: relative;
overflow: hidden;
}
.crypto-bg {
position: fixed;
top: 0;
left: 0;
width: calc(100% + 24vw);
height: calc(100% + 20vh);
transform: translate(-12vw, -10vh);
overflow: hidden;
z-index: 0;
font-family: "JetBrains Mono", monospace;
font-size: var(--crypto-font-size, 1.2rem);
line-height: 1.35;
letter-spacing: 0.08em;
user-select: none;
pointer-events: none;
white-space: pre;
padding: 0 6vw 8vh;
box-sizing: border-box;
display: block;
color: transparent;
}
.crypto-bg div,
.crypto-bg span {
color: rgba(0, 0, 0, 0.18);
}
.card {
background: linear-gradient(135deg, #e2e2e2 0%, #f5f5f5 55%, #ffffff 100%);
border: 2px solid #000000;
box-shadow: 8px 8px 0 #000000;
padding: 2rem;
max-width: 580px;
width: 100%;
position: relative;
z-index: 1;
}
.header {
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 2px solid #000000;
}
h1 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.status {
font-size: 0.75rem;
color: #808080;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.content {
margin: 1.5rem 0;
line-height: 1.6;
}
.content p {
margin-bottom: 1rem;
font-size: 0.9rem;
}
code {
display: inline-block;
padding: 0.5rem 1rem;
border: 1px solid #000000;
background: rgba(0, 0, 0, 0.05);
margin: 1rem 0;
font-family: inherit;
font-size: 0.85rem;
}
.footer {
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 2px solid #000000;
font-size: 0.75rem;
color: #808080;
}
@media (prefers-color-scheme: dark) {
body {
background: #0a0a0a;
color: #e0e0e0;
}
.maintenance-page {
background: #0a0a0a;
color: #e0e0e0;
}
.card {
background: linear-gradient(135deg, #141414 0%, #101010 55%, #080808 100%);
border-color: #353535;
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6);
}
.header {
border-bottom-color: #353535;
}
h1 {
color: #f5f5f5;
}
.status {
color: #a0a0a0;
}
code {
border-color: #353535;
background: rgba(255, 255, 255, 0.05);
}
.footer {
border-top-color: #353535;
color: #a0a0a0;
}
.crypto-bg div,
.crypto-bg span {
color: rgba(255, 255, 255, 0.22);
}
}
@media (
Open service 2606:4700:3036::ac43:b041:443 · foom.md
2026-01-26 09:13
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 09:13:26 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server-Timing: cfEdge;dur=130,cfOrigin;dur=0
CF-Ray: 9c3ee4f6af92ce96-EWR
Access-Control-Allow-Origin: *
Cache-Control: no-store, max-age=0
Server: cloudflare
Vary: Accept-Encoding, Accept
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
x-foom-status: rebuilding
x-robots-tag: noindex
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5%2BvI62WFlzIVewER4%2F48xfxDq%2B8qKwIeXrAffobrBpuS0ymRQ8BtPTFbjn6xLn57SApxcVzmOPjZgYlKDW%2BXPg1iGG1J5DYLMsJeE%2BUxrh83YvA%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
alt-svc: h3=":443"; ma=86400
Page title: FOOM.MD · Under Reconstruction
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>FOOM.MD · Under Reconstruction</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
color-scheme: light dark;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::selection {
background: #808080;
color: #ffffff;
}
body {
min-height: 100vh;
font-family: "JetBrains Mono", "Courier New", monospace;
background: #ffffff;
color: #000000;
}
.maintenance-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
background: inherit;
color: inherit;
position: relative;
overflow: hidden;
}
.crypto-bg {
position: fixed;
top: 0;
left: 0;
width: calc(100% + 24vw);
height: calc(100% + 20vh);
transform: translate(-12vw, -10vh);
overflow: hidden;
z-index: 0;
font-family: "JetBrains Mono", monospace;
font-size: var(--crypto-font-size, 1.2rem);
line-height: 1.35;
letter-spacing: 0.08em;
user-select: none;
pointer-events: none;
white-space: pre;
padding: 0 6vw 8vh;
box-sizing: border-box;
display: block;
color: transparent;
}
.crypto-bg div,
.crypto-bg span {
color: rgba(0, 0, 0, 0.18);
}
.card {
background: linear-gradient(135deg, #e2e2e2 0%, #f5f5f5 55%, #ffffff 100%);
border: 2px solid #000000;
box-shadow: 8px 8px 0 #000000;
padding: 2rem;
max-width: 580px;
width: 100%;
position: relative;
z-index: 1;
}
.header {
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 2px solid #000000;
}
h1 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.status {
font-size: 0.75rem;
color: #808080;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.content {
margin: 1.5rem 0;
line-height: 1.6;
}
.content p {
margin-bottom: 1rem;
font-size: 0.9rem;
}
code {
display: inline-block;
padding: 0.5rem 1rem;
border: 1px solid #000000;
background: rgba(0, 0, 0, 0.05);
margin: 1rem 0;
font-family: inherit;
font-size: 0.85rem;
}
.footer {
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 2px solid #000000;
font-size: 0.75rem;
color: #808080;
}
@media (prefers-color-scheme: dark) {
body {
background: #0a0a0a;
color: #e0e0e0;
}
.maintenance-page {
background: #0a0a0a;
color: #e0e0e0;
}
.card {
background: linear-gradient(135deg, #141414 0%, #101010 55%, #080808 100%);
border-color: #353535;
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6);
}
.header {
border-bottom-color: #353535;
}
h1 {
color: #f5f5f5;
}
.status {
color: #a0a0a0;
}
code {
border-color: #353535;
background: rgba(255, 255, 255, 0.05);
}
.footer {
border-top-color: #353535;
color: #a0a0a0;
}
.crypto-bg div,
.crypto-bg span {
color: rgba(255, 255, 255, 0.22);
}
}
@media (
Open service 2606:4700:3036::ac43:b041:8443 · foom.md
2026-01-26 09:13
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 09:13:26 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
CF-Ray: 9c3ee4f5daa2d275-FRA
Access-Control-Allow-Origin: *
Cache-Control: no-store, max-age=0
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Link: <https://fonts.googleapis.com>; rel="preconnect"
Server: cloudflare
Vary: Accept-Encoding, Accept
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
x-foom-status: rebuilding
x-robots-tag: noindex
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=YmJrcSUVQJ8flVGUqtIUQQKCQPrdol9Kp83E%2BuwH2trTG8eDv9KulmJu8NkQMXKo9IxP3adLfMhpXrmRFfBUgAyTdQUDBmKWlGNrcxb%2Fc9fNSIA%3D"}]}
alt-svc: h3=":8443"; ma=86400
Page title: FOOM.MD · Under Reconstruction
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>FOOM.MD · Under Reconstruction</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
color-scheme: light dark;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::selection {
background: #808080;
color: #ffffff;
}
body {
min-height: 100vh;
font-family: "JetBrains Mono", "Courier New", monospace;
background: #ffffff;
color: #000000;
}
.maintenance-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
background: inherit;
color: inherit;
position: relative;
overflow: hidden;
}
.crypto-bg {
position: fixed;
top: 0;
left: 0;
width: calc(100% + 24vw);
height: calc(100% + 20vh);
transform: translate(-12vw, -10vh);
overflow: hidden;
z-index: 0;
font-family: "JetBrains Mono", monospace;
font-size: var(--crypto-font-size, 1.2rem);
line-height: 1.35;
letter-spacing: 0.08em;
user-select: none;
pointer-events: none;
white-space: pre;
padding: 0 6vw 8vh;
box-sizing: border-box;
display: block;
color: transparent;
}
.crypto-bg div,
.crypto-bg span {
color: rgba(0, 0, 0, 0.18);
}
.card {
background: linear-gradient(135deg, #e2e2e2 0%, #f5f5f5 55%, #ffffff 100%);
border: 2px solid #000000;
box-shadow: 8px 8px 0 #000000;
padding: 2rem;
max-width: 580px;
width: 100%;
position: relative;
z-index: 1;
}
.header {
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 2px solid #000000;
}
h1 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.status {
font-size: 0.75rem;
color: #808080;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.content {
margin: 1.5rem 0;
line-height: 1.6;
}
.content p {
margin-bottom: 1rem;
font-size: 0.9rem;
}
code {
display: inline-block;
padding: 0.5rem 1rem;
border: 1px solid #000000;
background: rgba(0, 0, 0, 0.05);
margin: 1rem 0;
font-family: inherit;
font-size: 0.85rem;
}
.footer {
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 2px solid #000000;
font-size: 0.75rem;
color: #808080;
}
@media (prefers-color-scheme: dark) {
body {
background: #0a0a0a;
color: #e0e0e0;
}
.maintenance-page {
background: #0a0a0a;
color: #e0e0e0;
}
.card {
background: linear-gradient(135deg, #141414 0%, #101010 55%, #080808 100%);
border-color: #353535;
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6);
}
.header {
border-bottom-color: #353535;
}
h1 {
color: #f5f5f5;
}
.status {
color: #a0a0a0;
}
code {
border-color: #353535;
background: rgba(255, 255, 255, 0.05);
}
.footer {
border-top-color: #353535;
color: #a0a0a0;
}
.crypto-bg div,
.crypto-bg span {
color: rgba(255, 255, 255, 0.22);
}
}
@media (
Open service 2606:4700:3036::ac43:b041:443 · creativesmixer.com
2026-01-26 08:11
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 08:11:07 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: http://www.creativesmixer.com/
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=10,cfOrigin;dur=535
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Qpjiw3Vfokv7dPGyg77di2mI9hvKhV3jQBZr0tn4NY0d2PNoaCNKy4wu9AdBeGXr4Q%2BXYZlnU1rjULt3nVcDC%2BmcJmEPCDsYYyocGCdnCtyU9swVv2lMLrRi2uM%3D"}]}
CF-RAY: 9c3e89ab7e3150c3-BOM
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · creativesmixer.com
2026-01-26 08:11
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 08:11:07 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=216,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3e89a95ea687e3-SIN alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · creativesmixer.com
2026-01-26 08:11
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 08:11:07 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: http://www.creativesmixer.com/
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=12,cfOrigin;dur=91
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0rwJB5OCfgUcKelinZrCDfQINs52HK26qByYgi%2F%2FpK0VwjOc6e%2F0aCkZPfvmd9kt1eVfylTQg1Pg5VNIP%2FBtbDuCXl42d77vztXqYXaUTekBu3DnrxSofIq61W%2BwGQ%3D%3D"}]}
CF-RAY: 9c3e89a89a48428f-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · ajlbz.com
2026-01-26 08:05
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 08:05:16 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=217,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3e8116bac4c63b-SIN alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · ajlbz.com
2026-01-26 08:05
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 08:05:16 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: http://www.ajlbz.com/
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=26,cfOrigin;dur=421
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Oll7E6LIpKk0Is3ZCbBM%2Fy8GjGB%2FkU4%2FYmum5UtYh0arcjv4P8XyhQQYOU38355%2F83qy0Rg4tKjpEpI3eM3cDflBkRdU3y5m3elkdZ7GeVZwOEev5w%3D%3D"}]}
CF-RAY: 9c3e8117ad89882c-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · ajlbz.com
2026-01-26 08:05
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 08:05:15 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: http://www.ajlbz.com/
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=3,cfOrigin;dur=85
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UK72ETZhoVClTX4Kc3EsShaoPodq4PLHvyUNOUZ5FIrLG2G7ZvE6VTKx1xR8Sx6DzAzdgXjJfvs1Xa112CxCjM4mmSzrmbXJgTQsYB3Ss%2Bhlw7A%2B0A%3D%3D"}]}
CF-RAY: 9c3e8114be2b4e6f-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · mail.fatrover.com
2026-01-26 06:59
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 06:59:18 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=246,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3e20747a91447e-BOM alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · mail.fatrover.com
2026-01-26 06:59
HTTP/1.1 301 Moved Permanently
Date: Mon, 26 Jan 2026 06:59:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Content-Security-Policy: upgrade-insecure-requests;
X-Redirect-By: WordPress
Location: https://fatrover.com/
Cache-Control: max-age=0
Expires: Mon, 26 Jan 2026 06:59:18 GMT
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=4,cfOrigin;dur=6202
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=09AbUj1v%2BcWfeNzFh44MgPzR3a3f12v4TihIwVkTcYxd5Si2yJbZTtYIPnIhJoXOQ3mvMW4yYwdEKNF%2FI00XdB0fSK3LZant%2Fw8zSJNVIf1nPVfTmAX3ASdtGtM7"}]}
CF-RAY: 9c3e20782d645f74-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · fatrover.com
2026-01-26 06:59
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 06:59:18 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=446,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3e2073bc75fe09-SIN alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · fatrover.com
2026-01-26 06:59
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 06:59:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Content-Security-Policy: upgrade-insecure-requests;
Last-Modified: Tue, 20 Jan 2026 16:37:19 GMT
Cache-Control: max-age=0
Expires: Mon, 26 Jan 2026 06:59:18 GMT
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=6LQYEkWOLAHVKAE6DjofXCNf3Llj1aZYeY8%2FBz8beNipTwmfgLgsRKJQ60PfM5ew9Bl1aZz35ipN84vHJ2TAE%2B%2BCYzQxoC4GLAxH8mj3I%2BRI5QVcjAs%3D"}]}
CF-RAY: 9c3e2077c9b99b21-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · stbk.com.cn
2026-01-26 06:26
HTTP/1.1 403 Forbidden
Date: Mon, 26 Jan 2026 06:26:31 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=2,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=z%2F5kiBWOqncvfivrrCTkH26hVURkYAJlOt8yIF1wDh1SVMhKx3lPzBY3dRyMN833hc4Ttf3rUJz396J6XZQGHowvUPTnciTA0ILP0QFLHlV0oziUil7h"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3df0746b891ed2-SJC
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> stbk.com.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c3df0746b891ed2</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:4:1d0::36c:6000</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:8443 · stbk.com.cn
2026-01-26 06:26
HTTP/1.1 403 Forbidden
Date: Mon, 26 Jan 2026 06:26:31 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Pdocw1%2BiVgfEORrJrMudizKLpJGHQF%2FNIKUdtRfc2dfrqATVPaJRRVjUwTvhYYp0k99mPWDiqsGafwMlVM0mUYcFxJ%2BOiIukY9ecry9PZNL3WLgV%2FA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3df073c9c65c98-FRA
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> stbk.com.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c3df073c9c65c98</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::d09:a001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-revea
Open service 2606:4700:3036::ac43:b041:80 · stbk.com.cn
2026-01-26 06:26
HTTP/1.1 403 Forbidden
Date: Mon, 26 Jan 2026 06:26:31 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=BXMM5LH9ZLvLfI5A%2FoY8jXw%2FcWUpQVx9RVM2OTK2LEH8FOiY2EYbkdHfPRHP231On5%2FMzyBaON4TXF6Ycq4YWm1t04usgxdRwcwkiT144RLMzfp0FLzs"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3df073ae9b57aa-LHR
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> stbk.com.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c3df073ae9b57aa</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:1:d0::c59:9001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-revea
Open service 2606:4700:3036::ac43:b041:443 · main.ly168.co
2026-01-26 01:28
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 01:28:11 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=7,cfOrigin;dur=261
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LqMj43bR5cE%2F%2B3KFXJIjpY7NQtJCzZ5xPjSfQkc9XIyzCwgoaMJetioErcSnwbNZxrxqZuyIde1Ek9%2B0ybkebqyuqTiC7ay2y5rqRTzXSWRNByRDC9fpFdM%3D"}]}
CF-RAY: 9c3c3b6b5bebac63-YYZ
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:80 · main.ly168.co
2026-01-26 01:28
HTTP/1.1 302 Found
Date: Mon, 26 Jan 2026 01:28:10 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-Powered-By: PHP/7.4.33
set-cookie: PHPSESSID=54a35669808fd0324e7e03c734880227; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Pragma: no-cache
Location: login.php
Server: cloudflare
Strict-Transport-Security: max-age=63072000; includeSubDomains
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
Vary: User-Agent
X-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ALA%2BwsjIugJB6A1NrvAUychA4%2BNUxkssmGat%2BTCCKywlrfr2QsBqvPmfG36yVospg6%2BeL5sdC%2BHirULok6RopHVwd1jBFhqy3x6t%2BB7IPnRJ17doPCpgEio%3D"}]}
CF-RAY: 9c3c3b66abd1fea6-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · main.ly168.co
2026-01-26 01:28
HTTP/1.1 521 <none> Date: Mon, 26 Jan 2026 01:28:09 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3c3b657ccfd3a9-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · www.thursdaydesign.com.au
2026-01-26 00:00
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 00:00:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
strict-transport-security: max-age=31536000; includeSubDomains; preload
referrer-policy: strict-origin-when-cross-origin
vary: Accept-Encoding,User-Agent
x-xss-protection: 1; mode=block
x-permitted-cross-domain-policies: none
x-content-type-options: nosniff
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=6,cfOrigin;dur=1123
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2FYEmKa66ONUBFACttC96nehllZ0TpEpMLjgWPoJVkas5I%2FqDQSIZ%2FjHysdnUwyxXY82ghstfVA0rDYmCv8N8nKEqn7A5SzEqLbN%2FnRiBxO5%2BsrPW89zHO9wA3nsVAjUfHk%2FskRs%3D"}]}
CF-RAY: 9c3bbaa5cc4210f3-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · www.thursdaydesign.com.au
2026-01-26 00:00
HTTP/1.1 522 <none> Date: Mon, 26 Jan 2026 00:00:35 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19591,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3bbaa55cdd28c9-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · www.thursdaydesign.com.au
2026-01-26 00:00
HTTP/1.1 200 OK
Date: Mon, 26 Jan 2026 00:00:16 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
Referrer-Policy: strict-origin-when-cross-origin
Vary: Accept-Encoding,User-Agent
X-XSS-Protection: 1; mode=block
X-Permitted-Cross-Domain-Policies: none
X-Content-Type-Options: nosniff
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=20,cfOrigin;dur=448
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0HO7a77NeGVggWS2kpvPl5SKjOiCAHwqFZSh%2FBVRX1cqSxqonQM3pGBgC7V4WxYls0i1dNWA0kTYpsQM4g1dH9NKzBABy%2FZKd%2FHQYneSpHHajY6BNWTvStqpcUgb%2F%2B8rUKWO%2FQ8%3D"}]}
CF-RAY: 9c3bbaa1da7742ee-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · yesmysweet.com
2026-01-25 23:51
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 23:51:52 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Set-Cookie: PHPSESSID=mddjed2bgds5plf9eh45rkc1e6; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
X-UA-Compatible: IE=edge
Link: <http://yesmysweet.com/wp-json/>; rel="https://api.w.org/"
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OwBPonhRBIhUdPKdjtN8mYd%2FWw1c64Dy6EX9gzQNKvw3%2B2b72oaGo5qI4KlKTOjfN9QqANxSWXchIFNlYKre8q4mtzhpZBo0OhABjr5N%2B9bU9EDTJXmY4mrS"}]}
Referrer-Policy: no-referrer-when-downgrade
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=10,cfOrigin;dur=465
CF-RAY: 9c3bae591960c487-SJC
alt-svc: h3=":443"; ma=86400
Page title: Yes My Sweet |
<!DOCTYPE html>
<html class="no-js" lang="en-US">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" >
<title>Yes My Sweet |</title>
<script>document.documentElement.className = document.documentElement.className.replace("no-js","js");</script>
<!-- All in One SEO Pack 2.12 by Michael Torbert of Semper Fi Web Design[280,299] -->
<meta name="description" content="Tutu is a travel planning service. There is a schedule for each type of transport." />
<link rel="canonical" href="https://yesmysweet.com/" />
<!-- /all in one seo pack -->
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel='dns-prefetch' href='//dsms0mj1bbhn4.cloudfront.net' />
<link rel='dns-prefetch' href='//apps.shareaholic.com' />
<link rel='dns-prefetch' href='//grace.shareaholic.com' />
<link rel='dns-prefetch' href='//analytics.shareaholic.com' />
<link rel='dns-prefetch' href='//recs.shareaholic.com' />
<link rel='dns-prefetch' href='//go.shareaholic.com' />
<link rel='dns-prefetch' href='//partner.shareaholic.com' />
<link rel="alternate" type="application/rss+xml" title="Yes My Sweet » Feed" href="https://yesmysweet.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Yes My Sweet » Comments Feed" href="https://yesmysweet.com/comments/feed/" />
<!-- Powered by Shareaholic; Grow your audience faster! - https://www.shareaholic.com -->
<link rel='preload' href='//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js' as='script' />
<script data-cfasync='false'>
//<![CDATA[
_SHR_SETTINGS = {"endpoints":{"local_recs_url":"http:\/\/yesmysweet.com\/wp-admin\/admin-ajax.php?action=shareaholic_permalink_related","ajax_url":"http:\/\/yesmysweet.com\/wp-admin\/admin-ajax.php"}};
//]]>
</script>
<script data-cfasync='false'
src='//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js'
data-shr-siteid='a553e8d71b8af1cb383f81aafeb0fc75' async >
</script>
<!-- Shareaholic Content Tags -->
<meta name='shareaholic:site_name' content='Yes My Sweet' />
<meta name='shareaholic:language' content='en-US' />
<meta name='shareaholic:article_visibility' content='private' />
<meta name='shareaholic:site_id' content='a553e8d71b8af1cb383f81aafeb0fc75' />
<meta name='shareaholic:wp_version' content='8.12.4' />
<!-- Shareaholic Content Tags End -->
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/yesmysweet.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=f37adb05cc5db9ff388d0310045e0059"}};
!function(a,b,c){function d(a){var b,c,d,e,f=String.fromCharCode;if(!k||!k.fillText)return!1;switch(k.clearRect(0,0,j.width,j.height),k.textBaseline="top",k.font="600 32px Arial",a){case"flag":return k.fillText(f(55356,56826,55356,56819),0,0),!(j.toDataURL().length<3e3)&&(k.clearRect(0,0,j.width,j.height),k.fillText(f(55356,57331,65039,8205,55356,57096),0,0),b=j.toDataURL(),k.clearRect(0,0,j.width,j.height),k.fillText(f(55356,57331,55356,57096),0,0),c=j.toDataURL(),b!==c);case"emoji4":return k.fillText(f(55357,56425,55356,57341,8205,55357,56507),0,0),d=j.toDataURL(),k.clearRect(0,0,j.width,j.height),k.fillText(f(55357,56425,55356,57341,55357,56507),0,0),e=j.toDataURL(),d!==e}return!1}function e(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i,j=b.createElement("canvas"),k=j.getContext&&j.getContext("2d");for(i=Array("flag","emoji4"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythi
Open service 2606:4700:3036::ac43:b041:80 · yesmysweet.com
2026-01-25 23:51
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 23:51:51 GMT
Content-Length: 0
Connection: close
Location: https://yesmysweet.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=udqGSoeQN4pQEGUHtndaRMbDbrOiqnICROtB%2F3LC3fqJmHkx4e2Y1fgQ9EU4vOJP41hvlmKnQ4d8ysu%2FiAB6fSMmPDvG6XXgD4ureoj2G6t8wc%2F6GZg9IA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c3bae547c8cc1c8-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · yesmysweet.com
2026-01-25 23:51
HTTP/1.1 523 <none> Date: Sun, 25 Jan 2026 23:51:52 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=199,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3bae55be90ce57-SIN alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:8443 · getrollsudsco.com
2026-01-25 20:46
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 20:46:53 GMT
Content-Length: 0
Connection: close
Location: https://www.rollingsudspowerwashing.com/melbourne-palm-bay-fl/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=tTY0yuZmwLBvxX05dNcROOtWW98Wkbect4uIhJKobozbYYSW39u0ECZaxrRCg8L4V1Eb45XKWf68KA6e4AWw3l2CYZa2AAKzeodFtMbBmchdPBZzpe%2FXiLYC4nYf"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3a9f5fa8ecce1d-SIN
Open service 2606:4700:3036::ac43:b041:80 · getrollsudsco.com
2026-01-25 20:46
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 20:46:53 GMT
Content-Length: 0
Connection: close
Location: https://www.rollingsudspowerwashing.com/melbourne-palm-bay-fl/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=t8vryfkkZRs%2BYMz9MjyXR%2BGdtCgI7vXM3qBXc5owOeNxHRs8Ho0%2F9N7%2FtoglNGzenLMIpUUp54EWKLdHUxoJmFNcMJoNBkC6pbe1XqF5aI822oRjQyOFVJDR2tcs"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3a9f5eba1e1a6d-FRA
Open service 2606:4700:3036::ac43:b041:443 · getrollsudsco.com
2026-01-25 20:46
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 20:46:53 GMT
Content-Length: 0
Connection: close
Location: https://www.rollingsudspowerwashing.com/melbourne-palm-bay-fl/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=m%2Fnq9s3OFc8Th%2BaXhtFVomh4Al7KrGcI%2Bv4OLcHSPfLfM34SlXfY1pXrm4SWXP4AUsEWcyfzSrSgPUInxXc%2F%2BG1Du9Ge%2Foc9oBz1vo19FMmp3X%2BfEo%2BTlFgsOjft"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3a9f5e5b405c1c-SJC
Open service 2606:4700:3036::ac43:b041:8443 · qservicessmarttech.info
2026-01-25 17:44
HTTP/1.1 522 <none> Date: Sun, 25 Jan 2026 17:44:46 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c399422cc132bb2-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · qservicessmarttech.info
2026-01-25 17:44
HTTP/1.1 522 <none> Date: Sun, 25 Jan 2026 17:44:46 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c399422aec84a25-AMS alt-svc: h3=":443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · www.taibabosnic.com
2026-01-25 17:15
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 17:15:51 GMT
Content-Length: 0
Connection: close
Location: https://www.taibabosnic.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=4%2B4jO3aFUTV1WKdPcNXhf0jZYsrbTBHcxJztLeuBCkfbVrQ0z87WUa4WYwy7wjK8dyefDe9nK5fhzv53iKrKIryW%2BtUWWZsbLM0OYd1BQk2zuWM6i70zXky1DkucXFs%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c396a3dda00ff63-BOM
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · www.taibabosnic.com
2026-01-25 17:15
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 17:15:51 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
location: https://taibabosnic.com/
strict-transport-security: max-age=31536000
x-ac: 1.yyz _dca MISS
alt-svc: h3=":443"; ma=86400
server-timing: a8c-cdn, dc;desc=yyz, cache;desc=MISS;dur=32.0
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=PJ7jaDsfUZ7LD5zGfOC1%2FWACMpFSO0oEkyIQdeORC4jpUb1Gv9u84TYqq%2Bt92V8loPxv1%2F%2BY%2BVNFeqGQ0va6OZDioDhuC%2FQXZf6uxLYGDwDdrfp1l33QF3ZiNIZ%2F5Io%3D"}]}
CF-RAY: 9c396a3d7ac6c0f6-YYZ
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · www.taibabosnic.com
2026-01-25 17:15
Open service 2606:4700:3036::ac43:b041:80 · taibabosnic.com
2026-01-25 17:15
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 17:15:51 GMT
Content-Length: 0
Connection: close
Location: https://taibabosnic.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=XtjqbMywIJh%2FexFTfEUlcaGJ%2FDmogUQiTG756UpJp4mMF5QImEDeFG6ST3Uhr6SAkF5Bc%2BqzBEmIWq8aa0tW8DFOo1sEjV0esrOIVMlEWLu2c2z9La9IU5Vlhg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c396a3cfc09e18e-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · taibabosnic.com
2026-01-25 17:15
Open service 2606:4700:3036::ac43:b041:443 · taibabosnic.com
2026-01-25 17:15
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 17:15:51 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
location: https://mindfulmotherhood.co/
strict-transport-security: max-age=31536000
vary: Cookie
x-ac: 24.hhn _dfw MISS
alt-svc: h3=":443"; ma=86400
server-timing: a8c-cdn, dc;desc=hhn, cache;desc=MISS;dur=136.0
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pqGqux8wD0zS6%2FMWC3ghC%2FAA48DaoZriBwDrRLEljxfepZfZoydC9CWbAUfJuaU0LCvZpBGdsaGTLzWINaWQSxraURTap1opD0V%2BEz0JOtEAzJDogZxVGwxl0w%3D%3D"}]}
CF-RAY: 9c396a3ddb45d2cb-FRA
Open service 2606:4700:3036::ac43:b041:80 · nurek.online
2026-01-25 16:38
HTTP/1.1 404 Not Found
Date: Sun, 25 Jan 2026 16:38:24 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=14,cfOrigin;dur=144
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Ud3%2BrbjWc792XjOYDrL1qkz%2FMeOhzT8Zf8iFfMHCyWfi24M%2FKXU0sljCyPT2QOXQsHfKf59ITtOBuxaq%2FcvaikpeP7IoYbqfp0YJCPYLQcm5E9kVuIzKfg%3D%3D"}]}
CF-RAY: 9c3933620d656180-EWR
alt-svc: h3=":443"; ma=86400
Page title: 404 Not Found
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"e613f01a91f1479b956ae60e62fff4bc","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · nurek.online
2026-01-25 16:38
HTTP/1.1 521 <none> Date: Sun, 25 Jan 2026 16:38:24 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3933608fe165b0-FRA alt-svc: h3=":443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:8443 · nurek.online
2026-01-25 16:38
HTTP/1.1 522 <none> Date: Sun, 25 Jan 2026 16:38:44 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c39336659a4b8f7-AMS alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · contactapprendo.com
2026-01-25 16:21
HTTP/1.1 307 Temporary Redirect
Date: Sun, 25 Jan 2026 16:21:56 GMT
Content-Length: 0
Connection: close
Location: https://apprendo.co/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GjPllXwULkgzbucUlQn8xeokdHZY9PP2ZpdE93U3Fu0FOTyAy68luNbpbBa6Ae84m2l3%2BR93igarcO0eFUwpCGUuGcthrNqhBd9Rwyo75kzbnWLFsUveOexaEcbZ20M%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c391b42ef67281e-SIN
Open service 2606:4700:3036::ac43:b041:80 · contactapprendo.com
2026-01-25 16:21
HTTP/1.1 307 Temporary Redirect
Date: Sun, 25 Jan 2026 16:21:55 GMT
Content-Length: 0
Connection: close
Location: https://apprendo.co/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Zs%2FgH3oqmqIA%2BPUFteXFXi%2FcF%2B%2BWf4tHHFXFKKQ%2B26CUB89aCb2fhtX1aKd8VyEeazm8xYFc9gk4%2FFJgSLI66Yh4NOkPes8hp00HE4Cqcr5njC4vdRE91iyMl2t1YKg%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c391b408c38f9cc-SJC
Open service 2606:4700:3036::ac43:b041:443 · contactapprendo.com
2026-01-25 16:21
HTTP/1.1 307 Temporary Redirect
Date: Sun, 25 Jan 2026 16:21:55 GMT
Content-Length: 0
Connection: close
Location: https://apprendo.co/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Vt%2BDx%2BmvRmvchFKugOVh4RL4E0MeSUAyq%2BBO30f9QhyRNmWrOhJrPuzC%2BEFzwSTlnA%2BQe0Fdsl6QbMvhSRnxUhah9xI9TZK6bJVIHj%2F1YiOMiygNvlVv7lAX7aTdIBI%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c391b40199129c1-LHR
Open service 2606:4700:3036::ac43:b041:8443 · pthumb.polos.world
2026-01-25 15:22
HTTP/1.1 404 Not Found
Date: Sun, 25 Jan 2026 15:22:14 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=erxWji%2BrLxH%2FOddSNzj1haE5vbKHhCagVTY%2FEDm%2B6RrlurHeRexuRuDF3gIzjGu%2FQAPIV0hWEoyONjVwNBHnlq1dVOn8VZWALd5D%2BiPFcwY1ka836G%2BOz6fDRSjQwg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
CF-RAY: 9c38c3ce0ab19175-EWR
Page title: Not Found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://www.cloudflare.com/favicon.ico" />
<title>Not Found</title>
<style>
body {
font-family: system-ui;
font-weight: 300;
font-size: 1.25rem;
color: #36393a;
display: flex;
align-items: center;
justify-content: center;
}
main {
max-width: 1200px;
margin-top: 120px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#text {
max-width: 60%;
margin-left: 1rem;
margin-right: 1rem;
}
main > section > div {
margin-bottom: 3.25rem;
}
svg {
margin-left: 2rem;
}
@keyframes eye-1 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(-5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
@keyframes eye-2 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
svg > .eye-1 {
animation: eye-1 3s infinite;
}
svg > .eye-2 {
animation: eye-2 3s 0.6s infinite;
}
h1 {
font-size: 3.75rem;
font-weight: 400;
margin-bottom: 0.5rem;
}
h3 {
font-size: 2rem;
font-weight: 400;
color: #92979b;
margin: 0;
}
a {
color: #0055dc;
}
p {
margin: 0;
}
#error-title {
font-size: 2rem;
margin-bottom: 1rem;
}
#footer-title {
font-weight: 700;
margin-bottom: 0.75rem;
}
</style>
</head>
<body>
<main>
<section id="text">
<div>
<h1>Error 404</h1>
<h3>Object not found</h3>
</div>
<div>
<p>
This object does not exist or is not publicly accessible at this
URL. Check the URL of the object that you're looking for or contact
the owner to enable Public access.
</p>
</div>
<div>
<p id="footer-title">Is this your bucket?</p>
<p>
Learn how to enable
<a
href="https://developers.cloudflare.com/r2/data-access/public-buckets/"
>Public Access</a
>
</p>
</div>
</section>
<section>
<svg
width="414"
height="212"
viewBox="0 0 414 212"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse cx="208.5" cy="166.5" rx="174.5" ry="45.5" fill="#E2F5FA" />
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
fill="#C5EBF5"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<rect
x="137"
y="75"
width="70.9351"
height="9.39611"
rx="2.40792"
fill="#C5EBF5"
stroke="#6ECCE5"
stroke-width="2"
/>
<path
d="M124.566 13.277C121.053 13.277 118.204 10.4288 118.204 6.91534C118.204 3.40191 121.053 0.553711 124.566 0.553711C128.08 0.553711 130.928 3.40191 13
Open service 2606:4700:3036::ac43:b041:443 · pthumb.polos.world
2026-01-25 15:22
HTTP/1.1 404 Not Found
Date: Sun, 25 Jan 2026 15:22:14 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=E3B9TNy1X3xwOTtsOf7I6KYOHjkFKUqeBtHqtmluIApa8dc0DoF8vGMY6vSsj6IDHVTW1E7Fk%2Bf%2F4PI73G9eophqVUbI776dz%2F9VJXHwnYmGScjuFZz%2FIyduGcrNVg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
CF-RAY: 9c38c3cdec4b72a1-EWR
Page title: Not Found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://www.cloudflare.com/favicon.ico" />
<title>Not Found</title>
<style>
body {
font-family: system-ui;
font-weight: 300;
font-size: 1.25rem;
color: #36393a;
display: flex;
align-items: center;
justify-content: center;
}
main {
max-width: 1200px;
margin-top: 120px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#text {
max-width: 60%;
margin-left: 1rem;
margin-right: 1rem;
}
main > section > div {
margin-bottom: 3.25rem;
}
svg {
margin-left: 2rem;
}
@keyframes eye-1 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(-5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
@keyframes eye-2 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
svg > .eye-1 {
animation: eye-1 3s infinite;
}
svg > .eye-2 {
animation: eye-2 3s 0.6s infinite;
}
h1 {
font-size: 3.75rem;
font-weight: 400;
margin-bottom: 0.5rem;
}
h3 {
font-size: 2rem;
font-weight: 400;
color: #92979b;
margin: 0;
}
a {
color: #0055dc;
}
p {
margin: 0;
}
#error-title {
font-size: 2rem;
margin-bottom: 1rem;
}
#footer-title {
font-weight: 700;
margin-bottom: 0.75rem;
}
</style>
</head>
<body>
<main>
<section id="text">
<div>
<h1>Error 404</h1>
<h3>Object not found</h3>
</div>
<div>
<p>
This object does not exist or is not publicly accessible at this
URL. Check the URL of the object that you're looking for or contact
the owner to enable Public access.
</p>
</div>
<div>
<p id="footer-title">Is this your bucket?</p>
<p>
Learn how to enable
<a
href="https://developers.cloudflare.com/r2/data-access/public-buckets/"
>Public Access</a
>
</p>
</div>
</section>
<section>
<svg
width="414"
height="212"
viewBox="0 0 414 212"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse cx="208.5" cy="166.5" rx="174.5" ry="45.5" fill="#E2F5FA" />
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
fill="#C5EBF5"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<rect
x="137"
y="75"
width="70.9351"
height="9.39611"
rx="2.40792"
fill="#C5EBF5"
stroke="#6ECCE5"
stroke-width="2"
/>
<path
d="M124.566 13.277C121.053 13.277 118.204 10.4288 118.204 6.91534C118.204 3.40191 121.053 0.553711 124.566 0.553711C128.08 0.553711 130.928 3.40191 13
Open service 2606:4700:3036::ac43:b041:443 · proud-math-fba3.dharan731.workers.dev
2026-01-25 13:48
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 13:48:35 GMT
Content-Type: application/json
Content-Length: 812
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pcb%2BdfIn5y3%2BglLu4g1vlxAgGrXw3ad4wSGEPzv5ThiaUHNt0BJ8ugjoFlcqDMv3%2FW7dfh2Yrg2KqQSqcpOTj3TL613K2seSQptY4XOxCXnJWcYhheUGo603J12jwWZ8lukDpGP3U54HP%2BoecnEGedI%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c383a75894639f1-FRA
alt-svc: h3=":443"; ma=86400
[{"inputs":{"prompt":"Tell me a joke about Cloudflare"},"response":{"response":"I'd be happy to spin one up for you! Why did Cloudflare go to therapy? Because it was struggling to \"route\" out its feelings of being a \"middleman\" and wanted to \"cache\" some emotional baggage! Hope that brought a smile to your face!","usage":{"prompt_tokens":50,"completion_tokens":57,"total_tokens":107}}},{"inputs":{"messages":[{"role":"system","content":"You are a helpful assistant."},{"role":"user","content":"Who won the world series in 2020?"}]},"response":{"response":"The Los Angeles Dodgers won the World Series in 2020, defeating the Tampa Bay Rays in the Fall Classic, 4 games to 2. It was the Dodgers' first World Series title since 1988.","usage":{"prompt_tokens":31,"completion_tokens":45,"total_tokens":76}}}]
Open service 2606:4700:3036::ac43:b041:8443 · proud-math-fba3.dharan731.workers.dev
2026-01-25 13:48
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 13:48:34 GMT
Content-Type: application/json
Content-Length: 755
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=C4MdC5bwEZ4B3dKn5kXIpdDVfDCMccQdr8NvjlVxeoyKSp97u72Fvg2nDu8bU%2FU2iF%2BnPibwAeqOOvv5K2mv0936NRuW5nNSyk9xXLzfuIKoGGpCooNkCUMqrGLx%2BCP272tvsdJPAji3peZZodFi2f8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c383a759977bd24-FRA
alt-svc: h3=":8443"; ma=86400
[{"inputs":{"prompt":"Tell me a joke about Cloudflare"},"response":{"response":"Here's one: Why did Cloudflare go to therapy?\n\nBecause it was struggling to \"cache\" its emotions! (get it? cache, like how Cloudflare caches web pages?)\n\nI hope that brought a smile to your face!","usage":{"prompt_tokens":50,"completion_tokens":48,"total_tokens":98}}},{"inputs":{"messages":[{"role":"system","content":"You are a helpful assistant."},{"role":"user","content":"Who won the world series in 2020?"}]},"response":{"response":"The Los Angeles Dodgers won the 2020 World Series, defeating the Tampa Bay Rays in six games (4-2). It was the Dodgers' first World Series title since 1988.","usage":{"prompt_tokens":31,"completion_tokens":40,"total_tokens":71}}}]
Open service 2606:4700:3036::ac43:b041:443 · pvid.polos.world
2026-01-25 12:59
HTTP/1.1 404 Not Found
Date: Sun, 25 Jan 2026 12:59:02 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1ruz7tvfTQ1SciozF%2Blr%2FfrwQsqmsn%2BqvAn7LvEsBxEVSe3Xw7yBKqucxe6EKw6arofHhX%2Fc%2FsiTIGBB1oYKbVY25Kki5mZSHgIxv9CJwCbhqzYyd9pAzyCO0v8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
CF-RAY: 9c37f2085e5139fa-YYZ
Page title: Not Found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://www.cloudflare.com/favicon.ico" />
<title>Not Found</title>
<style>
body {
font-family: system-ui;
font-weight: 300;
font-size: 1.25rem;
color: #36393a;
display: flex;
align-items: center;
justify-content: center;
}
main {
max-width: 1200px;
margin-top: 120px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#text {
max-width: 60%;
margin-left: 1rem;
margin-right: 1rem;
}
main > section > div {
margin-bottom: 3.25rem;
}
svg {
margin-left: 2rem;
}
@keyframes eye-1 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(-5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
@keyframes eye-2 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
svg > .eye-1 {
animation: eye-1 3s infinite;
}
svg > .eye-2 {
animation: eye-2 3s 0.6s infinite;
}
h1 {
font-size: 3.75rem;
font-weight: 400;
margin-bottom: 0.5rem;
}
h3 {
font-size: 2rem;
font-weight: 400;
color: #92979b;
margin: 0;
}
a {
color: #0055dc;
}
p {
margin: 0;
}
#error-title {
font-size: 2rem;
margin-bottom: 1rem;
}
#footer-title {
font-weight: 700;
margin-bottom: 0.75rem;
}
</style>
</head>
<body>
<main>
<section id="text">
<div>
<h1>Error 404</h1>
<h3>Object not found</h3>
</div>
<div>
<p>
This object does not exist or is not publicly accessible at this
URL. Check the URL of the object that you're looking for or contact
the owner to enable Public access.
</p>
</div>
<div>
<p id="footer-title">Is this your bucket?</p>
<p>
Learn how to enable
<a
href="https://developers.cloudflare.com/r2/data-access/public-buckets/"
>Public Access</a
>
</p>
</div>
</section>
<section>
<svg
width="414"
height="212"
viewBox="0 0 414 212"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse cx="208.5" cy="166.5" rx="174.5" ry="45.5" fill="#E2F5FA" />
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
fill="#C5EBF5"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<rect
x="137"
y="75"
width="70.9351"
height="9.39611"
rx="2.40792"
fill="#C5EBF5"
stroke="#6ECCE5"
stroke-width="2"
/>
<path
d="M124.566 13.277C121.053 13.277 118.204 10.4288 118.204 6.91534C118.204 3.40191 121.053 0.553711 124.566 0.553711C128.08 0.553711 130.928 3.40191 13
Open service 2606:4700:3036::ac43:b041:8443 · pvid.polos.world
2026-01-25 12:59
HTTP/1.1 404 Not Found
Date: Sun, 25 Jan 2026 12:59:01 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=USB9msrV%2B%2BPhRNX2ROkLlj21%2BMmG2C%2BEAeOmg8ac9Iyqo8oY%2B6BhJTvYd9NW10I8llPEtA2R6P0xpHAdaZiyo94Pj%2F9HqObt4XwsG2TwK3EJqA95Q4j9yLlv"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
CF-RAY: 9c37f207cbeb0c78-EWR
Page title: Not Found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://www.cloudflare.com/favicon.ico" />
<title>Not Found</title>
<style>
body {
font-family: system-ui;
font-weight: 300;
font-size: 1.25rem;
color: #36393a;
display: flex;
align-items: center;
justify-content: center;
}
main {
max-width: 1200px;
margin-top: 120px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#text {
max-width: 60%;
margin-left: 1rem;
margin-right: 1rem;
}
main > section > div {
margin-bottom: 3.25rem;
}
svg {
margin-left: 2rem;
}
@keyframes eye-1 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(-5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
@keyframes eye-2 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
svg > .eye-1 {
animation: eye-1 3s infinite;
}
svg > .eye-2 {
animation: eye-2 3s 0.6s infinite;
}
h1 {
font-size: 3.75rem;
font-weight: 400;
margin-bottom: 0.5rem;
}
h3 {
font-size: 2rem;
font-weight: 400;
color: #92979b;
margin: 0;
}
a {
color: #0055dc;
}
p {
margin: 0;
}
#error-title {
font-size: 2rem;
margin-bottom: 1rem;
}
#footer-title {
font-weight: 700;
margin-bottom: 0.75rem;
}
</style>
</head>
<body>
<main>
<section id="text">
<div>
<h1>Error 404</h1>
<h3>Object not found</h3>
</div>
<div>
<p>
This object does not exist or is not publicly accessible at this
URL. Check the URL of the object that you're looking for or contact
the owner to enable Public access.
</p>
</div>
<div>
<p id="footer-title">Is this your bucket?</p>
<p>
Learn how to enable
<a
href="https://developers.cloudflare.com/r2/data-access/public-buckets/"
>Public Access</a
>
</p>
</div>
</section>
<section>
<svg
width="414"
height="212"
viewBox="0 0 414 212"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse cx="208.5" cy="166.5" rx="174.5" ry="45.5" fill="#E2F5FA" />
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
fill="#C5EBF5"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<rect
x="137"
y="75"
width="70.9351"
height="9.39611"
rx="2.40792"
fill="#C5EBF5"
stroke="#6ECCE5"
stroke-width="2"
/>
<path
d="M124.566 13.277C121.053 13.277 118.204 10.4288 118.204 6.91534C118.204 3.40191 121.053 0.553711 124.566 0.553711C128.08 0.553711 130.928 3.40191 13
Open service 2606:4700:3036::ac43:b041:80 · pvid.polos.world
2026-01-25 12:59
HTTP/1.1 404 Not Found
Date: Sun, 25 Jan 2026 12:59:02 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=IW4zJaGMPVJvPAKjhqS1l8faK2Ems%2FNNfJ1T2v3RDhkPWNdBVFIkb9SNJlcfrxev6B0cvsUIrTdosnwjoV2ECuQLQo11gcdvr%2F6cr2LggrWBk8BHg3yvX7SI"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
CF-RAY: 9c37f209bb5cedf3-LHR
Page title: Not Found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://www.cloudflare.com/favicon.ico" />
<title>Not Found</title>
<style>
body {
font-family: system-ui;
font-weight: 300;
font-size: 1.25rem;
color: #36393a;
display: flex;
align-items: center;
justify-content: center;
}
main {
max-width: 1200px;
margin-top: 120px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#text {
max-width: 60%;
margin-left: 1rem;
margin-right: 1rem;
}
main > section > div {
margin-bottom: 3.25rem;
}
svg {
margin-left: 2rem;
}
@keyframes eye-1 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(-5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
@keyframes eye-2 {
0% {
transform: translateX(0);
}
10%,
50% {
transform: translateX(5px);
}
60% {
transform: translateX(0);
}
100% {
transform: translateX(0px);
}
}
svg > .eye-1 {
animation: eye-1 3s infinite;
}
svg > .eye-2 {
animation: eye-2 3s 0.6s infinite;
}
h1 {
font-size: 3.75rem;
font-weight: 400;
margin-bottom: 0.5rem;
}
h3 {
font-size: 2rem;
font-weight: 400;
color: #92979b;
margin: 0;
}
a {
color: #0055dc;
}
p {
margin: 0;
}
#error-title {
font-size: 2rem;
margin-bottom: 1rem;
}
#footer-title {
font-weight: 700;
margin-bottom: 0.75rem;
}
</style>
</head>
<body>
<main>
<section id="text">
<div>
<h1>Error 404</h1>
<h3>Object not found</h3>
</div>
<div>
<p>
This object does not exist or is not publicly accessible at this
URL. Check the URL of the object that you're looking for or contact
the owner to enable Public access.
</p>
</div>
<div>
<p id="footer-title">Is this your bucket?</p>
<p>
Learn how to enable
<a
href="https://developers.cloudflare.com/r2/data-access/public-buckets/"
>Public Access</a
>
</p>
</div>
</section>
<section>
<svg
width="414"
height="212"
viewBox="0 0 414 212"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse cx="208.5" cy="166.5" rx="174.5" ry="45.5" fill="#E2F5FA" />
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
fill="#C5EBF5"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M205.516 80.2674H139.419L148.186 141.237H197.788L205.516 80.2674Z"
stroke="#6ECCE5"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<rect
x="137"
y="75"
width="70.9351"
height="9.39611"
rx="2.40792"
fill="#C5EBF5"
stroke="#6ECCE5"
stroke-width="2"
/>
<path
d="M124.566 13.277C121.053 13.277 118.204 10.4288 118.204 6.91534C118.204 3.40191 121.053 0.553711 124.566 0.553711C128.08 0.553711 130.928 3.40191 13
Open service 2606:4700:3036::ac43:b041:443 · pgcfulfill.com
2026-01-25 12:35
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 12:35:15 GMT
Content-Length: 0
Connection: close
Location: https://pgprints.io/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uBTGodua3Fj3jYeyyHgKgfUD9X5cN1S733Vavs0YB7QNzoR6hiaBVvqmDw0LSuKU74HraqahmRxTj3xR5cFz9EtM5Vx%2BjSOAbhjyjgYpqQkWCPtaawC6Nz8K"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c37cf338f348377-BOM
Open service 2606:4700:3036::ac43:b041:8443 · pgcfulfill.com
2026-01-25 12:35
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 12:35:14 GMT
Content-Length: 0
Connection: close
Location: https://pgprints.io/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zI8gP5sLipXvk5KRjPW5%2BPLb0A4TIlV9p6YYHSZg5Z8%2BBq03lw%2B2arKSReLna48xQPeRZqL39ggE3JuYwF%2FSgHVEcXNLZOioyGcQsk2OpIiCsoUyEsPqyL1x"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c37cf32ae902ef2-EWR
Open service 2606:4700:3036::ac43:b041:80 · pgcfulfill.com
2026-01-25 12:35
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 12:35:14 GMT
Content-Length: 0
Connection: close
Location: https://pgprints.io/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dvVxluds9gpEMCwUQE3VqsqYTli%2BFUNLPw%2B%2FlNy%2BcL580XJeAfx7dEeCeUN7iNfXFaadgGGELCxEjUG0R1d8ofdNk%2Br54xIMfkiRAq4wzJgd4OquQ6%2FLLSyI"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c37cf3228e62bcd-FRA
Open service 2606:4700:3036::ac43:b041:443 · 99hhg099.com
2026-01-25 10:40
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 10:40:57 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Tue, 25 Mar 2025 05:23:44 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Strict-Transport-Security: max-age=31536000
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DZ80YGFplxBUo6puUq7Vi4tEx2d%2FqFrwr85IgoSa6TKQeARvukIrbmpVQ%2BsTDcjpH2fEDloop6qiazGTVXe3Bj8Gk2%2BpMyK8qObZvDI8oeQn9riZEo3L0g%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c3727c3aa97dcce-FRA
alt-svc: h3=":443"; ma=86400
Page title: 欢迎光临
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>欢迎光临</title>
</head>
<body style="background: #e6eaeb;">
<div style="position: relative;margin: 200px auto 0;padding: 0 0 22px;border-radius: 15px 15px 5px 5px;background: #fff;box-shadow: 10px 20px 20px rgba(101, 102, 103, .75);width:95%;max-width: 400px;color: #fff;text-align: center;">
<canvas id="canvas" width="200" height="200" style="display:block;position:absolute;top:-100px;left:0;right:0;margin:0 auto;background:#fff;border-radius:50%;"></canvas>
<div style="color: #242424;font-size: 28px;padding:111px 0 20px">通过安全加密检测</div>
<div style="margin: 25px 0 14px;color: #7b7b7b;font-size: 18px;">AG直营,20周年信誉保障!</div>
<a id="btn" href="javascript:void(0);" style="display: block;border-radius: 500px;background-color: #ff5656;height: 65px;line-height: 65px;width: 250px;color: #fff;font-size: 22px;text-decoration: none;letter-spacing: 2px;margin:20px auto;cursor:pointer;">链接检测中……</a>
<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>LA.init({id:"K4n629xQvS8C65gV",ck:"K4n629xQvS8C65gV"})</script>
</div>
<script>
window.onload = function() {
var canvas = document.getElementById('canvas')
, ctx = canvas.getContext('2d')
, ras = canvas.width / 2
, index = 0;
drawFrame();
function drawFrame() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.save();
ctx.translate(ras, ras);
ctx.beginPath();
ctx.lineWidth = ras * 0.08;
ctx.strokeStyle = "#d1d2d4";
ctx.arc(0, 0, ras * 0.8, 0, Math.PI * 2, false);
ctx.stroke();
ctx.strokeStyle = "#00a2ff ";
ctx.lineWidth = ras * 0.12;
ctx.beginPath();
ctx.arc(0, 0, ras * 0.8, -Math.PI / 2, -Math.PI / 2 + index * Math.PI * 2 / 100, false);
ctx.stroke();
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.font = ras / 2.2 + 'px Arial';
ctx.fillText(index.toFixed(0) + '%', 0, 0);
ctx.restore();
document.title = '加载中 ' + index.toFixed(1) + '%';
if (index < 99.2) {
if (index > 90) {
index += 1;
btn.innerHTML = '立即进入k8凯发';
btn.onclick = function() {
location.href = 'http://192.186.15.162:58888/';
}
;
btn.style.background = '#36A11E'
} else if (index > 60) {
index += 1
} else {
index += 3
}
setTimeout(drawFrame, 20)
} else if (index != 100) {
index = 100;
drawFrame()
} else {
document.title = '请点击进入'
}
}
}
</script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · 99hhg099.com
2026-01-25 10:40
HTTP/1.1 523 <none> Date: Sun, 25 Jan 2026 10:40:57 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3727c648c3a8d0-EWR alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:80 · 99hhg099.com
2026-01-25 10:40
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 10:40:56 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Tue, 25 Mar 2025 05:23:44 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Strict-Transport-Security: max-age=31536000
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=4O45qEhCHK9Ayezmj90KhDKP7UX5LaN9o0%2F%2BwDeoaDa%2BNYDw%2FTMxx45%2FG8B4tNVbpOZ%2FHdHKcVDjL9LPyC0bv5Dsl9j67VPexws0%2F6P9mtzES1CWVM0%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c3727c20befc342-EWR
alt-svc: h3=":443"; ma=86400
Page title: 欢迎光临
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>欢迎光临</title>
</head>
<body style="background: #e6eaeb;">
<div style="position: relative;margin: 200px auto 0;padding: 0 0 22px;border-radius: 15px 15px 5px 5px;background: #fff;box-shadow: 10px 20px 20px rgba(101, 102, 103, .75);width:95%;max-width: 400px;color: #fff;text-align: center;">
<canvas id="canvas" width="200" height="200" style="display:block;position:absolute;top:-100px;left:0;right:0;margin:0 auto;background:#fff;border-radius:50%;"></canvas>
<div style="color: #242424;font-size: 28px;padding:111px 0 20px">通过安全加密检测</div>
<div style="margin: 25px 0 14px;color: #7b7b7b;font-size: 18px;">AG直营,20周年信誉保障!</div>
<a id="btn" href="javascript:void(0);" style="display: block;border-radius: 500px;background-color: #ff5656;height: 65px;line-height: 65px;width: 250px;color: #fff;font-size: 22px;text-decoration: none;letter-spacing: 2px;margin:20px auto;cursor:pointer;">链接检测中……</a>
<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>LA.init({id:"K4n629xQvS8C65gV",ck:"K4n629xQvS8C65gV"})</script>
</div>
<script>
window.onload = function() {
var canvas = document.getElementById('canvas')
, ctx = canvas.getContext('2d')
, ras = canvas.width / 2
, index = 0;
drawFrame();
function drawFrame() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.save();
ctx.translate(ras, ras);
ctx.beginPath();
ctx.lineWidth = ras * 0.08;
ctx.strokeStyle = "#d1d2d4";
ctx.arc(0, 0, ras * 0.8, 0, Math.PI * 2, false);
ctx.stroke();
ctx.strokeStyle = "#00a2ff ";
ctx.lineWidth = ras * 0.12;
ctx.beginPath();
ctx.arc(0, 0, ras * 0.8, -Math.PI / 2, -Math.PI / 2 + index * Math.PI * 2 / 100, false);
ctx.stroke();
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.font = ras / 2.2 + 'px Arial';
ctx.fillText(index.toFixed(0) + '%', 0, 0);
ctx.restore();
document.title = '加载中 ' + index.toFixed(1) + '%';
if (index < 99.2) {
if (index > 90) {
index += 1;
btn.innerHTML = '立即进入k8凯发';
btn.onclick = function() {
location.href = 'http://192.186.15.162:58888/';
}
;
btn.style.background = '#36A11E'
} else if (index > 60) {
index += 1
} else {
index += 3
}
setTimeout(drawFrame, 20)
} else if (index != 100) {
index = 100;
drawFrame()
} else {
document.title = '请点击进入'
}
}
}
</script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · www.americanlegalteam.com
2026-01-25 09:54
HTTP/1.1 403 Forbidden
Date: Sun, 25 Jan 2026 09:54:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9c36e399bf521c32"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=Q7wp46eCNM1rz92ne0sbinrQ94QU5NxSQy8yaHksURiJvoAjbOTHYNI21CllRvFMcMFjUC%2Fm44W3mAdTn1rOIJvko7d1PTGGpgni5O%2FzzWrc3I%2BANRRyuI%2Bqq6Q6e477uMia%2BgCEGFH9iEIzCJHMnSGWcw9LP2Uw"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
speculation-rules: "/cdn-cgi/speculation"
Server: cloudflare
CF-RAY: 9c36e399bf521c32-FRA
alt-svc: h3=":8443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=718&min_rtt=697&rtt_var=305&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4212&recv_bytes=1783&delivery_rate=6183486&cwnd=253&unsent_bytes=0&cid=387f9ad1e277a31d&ts=24&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'www.americanlegalteam.com',cType: 'non-interactive',cRay: '9c36e399bf521c32',cH: 'zQvj_Cly31Y2A_GzAF6If7XOQBxL7ci8_shocBoR0Tg-1769334864-1.2.1.1-wEJ.UB8pTAzXT2dbJc_zHGvsCbVqmuziRpgzsC0DuFqggyFmNpIrHU48mEYvjTUm',cUPMDTk:"\/?__cf_chl_tk=pRXus6K8XZ3kOHqKDIas3Ih5JmTSRmnLkYDaBhQRFgM-1769334864-1.0.1.1-kybr9gM5TplyZwiD6SviCnxDLJNaTgPcguygFKzkh50",cFPWv: 'b',cITimeS: '1769334864',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=pRXus6K8XZ3kOHqKDIas3Ih5JmTSRmnLkYDaBhQRFgM-1769334864-1.0.1.1-kybr9gM5TplyZwiD6SviCnxDLJNaTgPcguygFKzkh50",md: 'x6VLn10M_l3Wi1itYPGigYqza3Aq6yriPtovkC.Hvqo-1769334864-1.2.1.1-WRwEIXyIq_0zL7NE2KxSFXUVmrsO8XCCdJtcasFfRcVJXdS4CVJWTQ9f6l_jSMU0sH3Iozb78XshTGcc7ibHU0iTFY_QcHDdSOLu.w5M3O_Ss1gE0wkRYbXwfN58qoYa4R5vH32UQqNQILm9l_K4mrSufYLbBGkK3b1xoWcDk6BvDCfeTQCGzAeu5DErU7fU7DdyYZQLcSzRSP0s8H.gcSPBbcv8nmFWCDTejo6cqDAfIONqWQLCzWeBRip_sE3P.CSxCjcr9LcHJtiRvAUQFwLr9oz56s69mPUFPmQmzMgz4Vhgculnj4rsFH0aqT8QdMGJ4Tin8d_eKAhHG6zsypsrRr7EVR6ahSH428DmeHotT2hNA3H5U6ykk.LhqHXF5T5hLbpvU3jI4UyUd3KCeXLf3wZmHAWN6FP7t6h8sUuCizIdNQJYEj3gK4uKmD721TKWwzuD1uf9A60yz.XA8HmkoNLnim_DI.Js6POJb7nlYA2f3sI.FF.CyUi3qVkrrSkM6qyxF2R6_5Bm4twCJ4Rpgmjt75f5DTNJXlNWVaa7SbpiqEpJQARWSz4S.ccZtqHA0I5iSTfNvSMHm_nCKlWDuZFsAIz2Y.V5b9bbJs2SDGeRl0lSxKlF9UrR53LTIIVryT_wuePkK8OKs66GwTAN1WFFPnl7HTK97LGHb8eM0BW4FjjUF9XJVqO81pOSNPv.YwF97M6xp7VpwbgxNBLlrDq7_rL_xmLE0D5pBg3MGewRwrUiJK2mHjxIs.1KNRjQY7h318LDV0x4GbS9ejFwdbwAm38Qo7gk6Qbt5Hy4Ih0rqM9JexvsVMTVm0YLRe1jejUMinJnA_uL4lfXTXNS66YZesr.IIGZjcFnH3iKd_Iw5LzAar1DIu7a5IEKtEkB9pJxxOS3VOHfQoB9NqWdV_WmWnX8VZR2NmNRJMi0vO_YSHYL3hcpynLXWkOkNJpjwEas3Nz1Ik6a57as3JbCsHUNJ67_BbBU9MDZlxrrv4q9SzC3onR5xDTl0MPzfz0.ylhd18aNod8KNcy8Cw',mdrd: 'RMU3F8SpSyCth9_lKNPu1iGunL5hsjbYbmweHJywPqU-1769334864-1.2.1.1-iq7a9uJPONrzQ496zA0MxHzB4nX59qlX9y5qhIUmQRbl4edHl4JQxPRVZ34s8EzTDSTaEw_nBMiC4QHqx78Y.RllYt4cp388LnOwoHKZ7sZBWAAeIlPBUk0o5EpdLxSSDpb887F0kCmuHzaChwHxhIicvskkYYjtRyZHpvk.rd9NRdcFzWhRYUlaVxZadKxk0mp60kgI_a6WMQWrMbHz649cRB6aUX7frOp27HLJVCyPtHevB_Vo_OdQwf56936K0KE2NB6b0gdJHFBmSbQtXiECGyMCHL8T5Qqbltx7AiTrkmq_HvLvzgzkJxEZp0g_IrdYep6Sd.uMG9e6VfXpY.OL_Dc
Open service 2606:4700:3036::ac43:b041:80 · www.americanlegalteam.com
2026-01-25 09:54
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 09:54:24 GMT
Content-Type: text/html
Content-Length: 167
Connection: close
Cache-Control: max-age=3600
Expires: Sun, 25 Jan 2026 10:54:24 GMT
Location: https://www.americanlegalteam.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=sZ%2FqLvB8%2Fa9GSP%2Fvesh1QEW%2FzOKrd6IjPaSNqUEGyng3oa1sppXCZaQ3cyvHhf%2BPfOiyOVZN7LrV%2BdX5bYA%2BPUrs1CX89YRv8iCwNcKO%2FviG1LSg7ZTYMh7vkl8bP9c%2FX5tIW8IEnL2Qpt8CuKYxALu9YSEsNUof"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
speculation-rules: "/cdn-cgi/speculation"
Server: cloudflare
CF-RAY: 9c36e399aba014d6-LHR
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=2128&min_rtt=2128&rtt_var=1064&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=180&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>cloudflare</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · www.americanlegalteam.com
2026-01-25 09:54
HTTP/1.1 403 Forbidden
Date: Sun, 25 Jan 2026 09:54:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9c36e3997d6c7705"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=b4Wl%2BS4h%2Bh%2BDklLeTYiBdDCyXEKTtMx5Xf2vlDq8J0SXzo2%2BW4nt3uZWi0llxD0USteUI61WbTqzAPkdeD3KVBrCTP6vak%2Bpjj66fbXjpkPCdnRks0W9fvov1ZK2DNE4yfz9Ou9Q5%2BkD4yUdSJeJrWjW3IpeqCyY"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
speculation-rules: "/cdn-cgi/speculation"
Server: cloudflare
CF-RAY: 9c36e3997d6c7705-LHR
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=2177&min_rtt=2170&rtt_var=829&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4212&recv_bytes=1783&delivery_rate=2415770&cwnd=253&unsent_bytes=0&cid=1e7c750b8cbbd660&ts=30&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'www.americanlegalteam.com',cType: 'non-interactive',cRay: '9c36e3997d6c7705',cH: '7230wuHYMbZSLtGyaIMj6mslJQrY7qsCI5TJPaeZ4.U-1769334864-1.2.1.1-tFjY19c2.Ba63.VK2eI2mVBPzxK9rGSex3hk3QsFkohHLnmHZqDB1f9HC9HRYeJQ',cUPMDTk:"\/?__cf_chl_tk=q65OdkwWQih8LcIl1FKcNTH9CRMExP1GKD3xGLuCN90-1769334864-1.0.1.1-oqxXVDahre3P3jWjBH04coNFWm2wM9iazn.jR_fJL0w",cFPWv: 'b',cITimeS: '1769334864',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=q65OdkwWQih8LcIl1FKcNTH9CRMExP1GKD3xGLuCN90-1769334864-1.0.1.1-oqxXVDahre3P3jWjBH04coNFWm2wM9iazn.jR_fJL0w",md: 'OxEYMvMHVoOFE..WpAQ2lmCxHWikEqTzwny0wD9ogGY-1769334864-1.2.1.1-6H6wbqfT1UtEk839p2iwZlC0I.YGd2SMHBn5cfyv1phghpZTHIuPzK41U3_yVxVQ3IxfVuxzYgSSfz.dUDKqyHc66yXjz_ZehSuCeCUuRye4C8tY_b6Res865DDnFJB4UYJPaJ6Hop.iswhCD7w1egISGJs3H9aBdDXYlHDgKTdEPSePI4mmUOCgMOuIel6H9EzwgOZsUGGEe4XIxiQzDfHe3Aq5gYQJAJZwq_pAvKQWMK.WTa4qSkPqagmLiqkFb8H2v_Dc340TvbplidAM2FHM7y1X5isYwHQIZ90vIAGAsCQtoFIlY9uHjA04VNNH7pIR99JXlJT9McziLIVNF6ffwiI5LfHi_cGh2RqhtGX8MnFQ7MpIpS_inEEbpRIXbnLauwaiGGcOiuybOAGx3KezEItHcX9Hs4PolaQjT0gSU2BRIIDsj67iMLRKPVmubLuc5w9FdFFgDCCGE_P9Bt9eCPsxeZNKXQm8EbYitbgXg2pSQPX14gGRJSFWL1MXGWJSykzbe46lhqsG6OgxpCZtb6x0Rc5awmEhO7ckJy4C6LLnaKio3qnpodrCl2CpZW_yyURA3gqvi0_J.G2eyOv.gdUPOkNlYlTYXIVacwmAWg.wtq0S2t0JMX8aAOWbv2JH6gVQnYY2U.U0gclyF8zprvkpcFoirf88FA8juEDIMvDqYj38OUDuYweF3kvfowFGaJuzBIG0hRLElzHpc99Ki.eVlrnfetRB4yDuouImq2JwooP5vSwgnS8bEni.TnksAjW5CGH5qGNEpzbFsXGN34_y.MweTlDEW5g2KLheQErn4qCTlSIrDNyRnSBYfGni8MsmCY87Z0PYJj2uCQajfwj_cRxEm1Kl0ktlESLNfzK4G4pb9z5zdEJb6TNrj342zdryO4WczGmkKITeIfaoRLObn4t2r7lUnMuE6SL_hGM9Yl6GbZFAlHCUob_fGlI3lRq8JWktrg4KU6nxBhfroLI7r0lBIgz0Vbhwja6.N.Y_umid6n_cQqgjhX1PU81TwOldwukIq8Gxh_aQ5Q',mdrd: 'RSE3g3U5SVaCu2Kd0ZURXWhw6dHAUbCkRdyLINMGRUA-1769334864-1.2.1.1-BAjCHSmXEBIoXHKcZnPKSFFbkdbQeQdYwwE.PwR2emuhP_SmbpmSpEDLrSHVznevizQ3pJVt3XluKdzi_HTvkEPGMt6GxxiomZdUyvuaFmik37EeOiKLNR9cehahtXGDX2wiQPG4P0nTBZzlBF7VkeVsAJ2ZKzLkTP0dP5W3X8NBriLgfEQWEQBK7.HMEO8EWNMd619IVWI1ORvk9BNBtj.zjxTnnn4JQQRUgSnIBZXuAiRSgj7x_ij89sQ0a6RBGBr_jUIU8DztET_wrstdAvyyOMp9t2r4vjn6OrDi7Z9NXTizRZGR4.Cs5YQJMfU2wxu2zNDV83X2FK9PdIT9i9BKHHa
Open service 2606:4700:3036::ac43:b041:80 · wangdachui.eu.org
2026-01-25 09:27
HTTP/1.1 400 Bad Request
Date: Sun, 25 Jan 2026 09:27:07 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 29
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=huJtyOGlUWV4yq34I0Gayj3iMV8LjvJedLbOGHCfar3hIQb3K9SAjyqqszHxWAvUaXUN%2BYPse2taKlE2wZC8LLdTUhWs%2FziPHo%2BNZ3cWifQj08qk%2F3%2BhJEw%2BcyxQ"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c36bb9f4c98001f-LHR
alt-svc: h3=":443"; ma=86400
Expected WebSocket connection
Open service 2606:4700:3036::ac43:b041:443 · wangdachui.eu.org
2026-01-25 09:27
HTTP/1.1 400 Bad Request
Date: Sun, 25 Jan 2026 09:27:07 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 29
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LrbT%2Byn%2FCUJdeJE3grSpba4oGbmJGF0kLL2%2FFp72aQV6xEwFpGLRhhoTi5YxtyE3SJDI4%2F3RVBcWJwZ8OjcYPuj1e%2F06P7bqwm9JhMdHrSOBnY4alnJxmyvq%2FLOY"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c36bb9ea93e4b56-YYZ
alt-svc: h3=":443"; ma=86400
Expected WebSocket connection
Open service 2606:4700:3036::ac43:b041:8443 · wangdachui.eu.org
2026-01-25 09:27
HTTP/1.1 400 Bad Request
Date: Sun, 25 Jan 2026 09:27:07 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 29
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=B%2FKnhJ3gnuvLSsMbu7N077sxMz6J18YTwuJir5pU%2BljzZKz5QS4cL3aR1BfutOmGiMxRA%2B%2BGDa3%2Bgwmw5Onj%2Fabj5Q9m8rEWuIlsyXfRPlgxI6bZlURwQv5%2BcS7q"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c36bb9e19324d49-FRA
alt-svc: h3=":8443"; ma=86400
Expected WebSocket connection
Open service 2606:4700:3036::ac43:b041:80 · angkaultraman.com
2026-01-25 08:28
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 08:28:27 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Accept-Ranges: bytes
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=j9u7KWRDHsv0LLHw1dNvcapPNwkPBWQsbP1vkw8lyJ6Ruc8ALrg0VVthJfL7ICL3nRTUGBqLS0Fl81z4dFjIVvEatdFCaPPxV%2FpEABN9yWnsKqfr1%2BLVlhSEQkYK"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c36658e0a1bc5bc-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · angkaultraman.com
2026-01-25 08:28
HTTP/1.1 521 <none> Date: Sun, 25 Jan 2026 08:28:21 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c36658ba82b3356-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · angkaultraman.com
2026-01-25 08:28
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 08:28:21 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Le94Q1UuILIoEkvoE5ok46BLW03u1TV2dAWYgNMloujSgO6lFbSGj1r0VzYd0bOGxblqLDoWuKKizIP5LMSKP8c538ywuliDzOdznCjo6n1Rep6n%2B%2Ftdn0TqzuJ2"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c36658b8bcb8e9b-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · www.angkaultraman.com
2026-01-25 08:28
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 08:28:27 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Accept-Ranges: bytes
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=PikW%2BUybVRl2AYbBYtxdrxsFyS%2BCjSKaVawuKxIIT%2FPGOqUemC8PYTwR725iYNHdzfwfJfplU3UVsA33m7Kgf10OiaO0hFeWSwf4l%2B5lSxhgBbEYUM%2BHQnpItUAoTV5rYQ%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c36658caaafd384-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · www.angkaultraman.com
2026-01-25 08:28
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 08:28:26 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GnXiS4KeQr9uvrDeFeZED2WcUBNpMVAsJtKL59ECfRmBHr5cyYYElN1J9l86bN5gwU9uQWUKjcJlZL7p1ET6UP%2BUTGlc3rogI5D60tskawlWliPuS1viURK47utT45Of9A%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c36658dd9c63a74-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · www.angkaultraman.com
2026-01-25 08:28
HTTP/1.1 521 <none> Date: Sun, 25 Jan 2026 08:28:21 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c36658b1980def8-AMS alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · tzwnyw.info
2026-01-25 07:02
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 07:02:19 GMT
Content-Length: 0
Connection: close
Location: https://www.google.com/search
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=l9Pwe021FvBmEe1Rqbo4CdtdhkuJF4jIyFm4CD7gtYMvCfhtYAoAr4wFbv0DInV8r%2F6OPSQkuuhvAcFc%2F873cHJab%2F%2FMZaS6EsmyfzXbW3Y99Wiug9aT"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c35e7861dec1961-FRA
Open service 2606:4700:3036::ac43:b041:8443 · tzwnyw.info
2026-01-25 07:02
HTTP/1.1 521 <none> Date: Sun, 25 Jan 2026 07:02:20 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=196,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c35e7861f9b36b1-YYZ alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · tzwnyw.info
2026-01-25 07:02
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 07:02:19 GMT
Content-Length: 0
Connection: close
Location: https://www.google.com/search
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5S7jiNubZa6a5l91m5dUJgBTRw2C5WxOEl3tFDq1KrcZXGMzj4ETDqojCz%2Bu1XpP3lE7x2GuqYRorSNAWfYk6A%2BCLeE7T%2BEdmfO%2F4CvlQnCdOJIKunND"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c35e785cdf3d289-FRA
Open service 2606:4700:3036::ac43:b041:443 · joker369.solutions
2026-01-25 06:43
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 06:43:43 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=izWoP84IzRUAo440ed6MXckB%2Fmq89kSBux9rRPXAAtu619IwIraADWlmmbVc%2BkihyNGL24aCdV0UJpe178abeJne0qqe%2Bprh9e0iN6Gxzikjhy0NUUXgmZXte9VR6A%3D%3D"}]}
CF-RAY: 9c35cc472e0793d2-SIN
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:80 · joker369.solutions
2026-01-25 06:43
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 06:43:43 GMT
Content-Length: 0
Connection: close
Location: https://joker369.solutions/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=6SWK41xVYsIb%2FqGaCjuANhJ8SdV2a3XNsd2kQ%2BKVzLD%2FqpAhb6ndIvmDFXHsBjXw3U%2FfeJCW9r%2FCTQveqAMMybMVZ2CAfygh1%2FT4aolkWjO1dNfGq8rfFZes3d45iA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c35cc46b80da6e8-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · joker369.solutions
2026-01-25 06:43
HTTP/1.1 522 <none> Date: Sun, 25 Jan 2026 06:44:04 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c35cc4bdc966632-AMS alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · bjjjjd.com
2026-01-25 06:11
HTTP/1.1 522 <none> Date: Sun, 25 Jan 2026 06:12:16 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19629,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c359db59f4b9c35-SIN alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · bjjjjd.com
2026-01-25 06:11
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 06:11:56 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
location: https://www.bjjjjd.com/
strict-transport-security: max-age=31536000
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=8,cfOrigin;dur=531
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=FWFx8oQPkqKsBjI8giFc1Vu3%2B6Wn%2BMrmCb7tgFj8XYircTktLXwydJMc%2BknZM2gKwHUUdlGPDUknlGhHv%2F%2F0kTTpzY9Xu7wcW0zOEn%2FpSRH3wKe%2FU%2F8%3D"}]}
CF-RAY: 9c359db2bd06fd2e-SIN
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"a8425d93b11a45db82d76272bc6d2ecd","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · bjjjjd.com
2026-01-25 06:11
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 06:11:55 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://www.bjjjjd.com/
Strict-Transport-Security: max-age=31536000
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vUN643V24deOMEaO9iRWIjGMorZhNPfB%2FZms23ptWteNDabolc02mIGxMle5MUL10IPAblSqmCmkUXgydslG9ELkerTYRUMkRUaX8XZfM6pNtwvPKxE%3D"}]}
CF-RAY: 9c359daf4f0be7b2-FRA
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · ytmp3-cc.com.im
2026-01-25 03:26
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 03:26:22 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=0, must-revalidate
cf-cache-status: DYNAMIC
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zmthPhj0PlOeRkxMF8QQfMJ65YrFGhThqJMw%2F6l6UzRvOAvpvy4sDnyGlFIkZ05pccoXLZWzYWn%2BtriRJXxqkEXPNerc13kedSahuTwUDCnV1KLLnxsUIc2Dkg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=10,cfOrigin;dur=48
CF-RAY: 9c34ab2eecba3117-SJC
alt-svc: h3=":443"; ma=86400
Page title: Youtube to MP3 Converter | YTMP3 Youtube Downloader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Youtube to MP3 Converter | YTMP3 Youtube Downloader</title>
<meta name="description" content="Need an easy method to convert videos into MP3? This thorough guide on ytmp3 provides insights, tips, and steps for seamless audio extraction.">
<meta name="robots" content="index, follow">
<link rel="shortcut icon" href="./images/icon.png" type="image/x-icon">
<meta property="og:image" content="./images/banner.jpg">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f6f6f6;
font-size: 16px;
font-weight: 300;
line-height: 1.6;
color: #293a46;
}
.wrap{
max-width: 600px;
margin: auto;
}
header {
text-align: center;
margin: 0 auto;
display: flex;
justify-content: space-between;
padding: 30px 0;
background: #0055b9;
}
article {
max-width: 600px;
margin: 32px auto;
padding: 32px;
box-sizing: border-box;
background: #fff;
border-radius: 9px;
}
#logo {
color: #293a46;
font-size: 23px;
font-weight: 700;
display: flex;
align-items: center;
height: auto;
}
#logo img {
margin-left: 10px;
opacity: 0.85;
}
section {
background-image: linear-gradient(to bottom, #0055b9 0 66%, #004fab 66% 100%);
width: 100%;
padding-bottom: 32px;
}
label {
color: #002438;
font-size: 14px;
font-weight: bold;
line-height: 16px;
}
.wrap-from {
display: flex;
justify-content: space-between;
}
div#format {
background-color: #f9f9f9;
height: 40px;
border: 1px #e5e5e5 solid;
border-radius: 100px;
padding: 4px;
box-sizing: border-box;
}
button.active {
color: #002438;
background-color: #ffffff;
border: 1px #ebebeb solid;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
button {
color: #8b989f;
background-color: transparent;
font-weight: bold;
height: 30px;
border: 1px transparent solid;
margin: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
font-size: 14px;
border-radius: 100px;
cursor: pointer;
padding: 0 16px;
}
#search-form {
border-radius: 12px;
box-sizing: border-box;
display: flex;
flex-direction: column;
padding:16px;
background: #fff
}
input#txt-url {
color: #7f8d96;
font-family: Arial, sans-serif;
font-size: 16px;
width: 100%;
height: 48px;
border: 1px #cfdcdd solid;
border-radius: 100px;
padding: 0 16px;
box-sizing: border-box;
outline: none;
margin: 16px 0;
}
input#txt-url:focus-visible {
outline: none;
}
input#txt-url::placeholder{
color: #999;
}
.w-submit{
color: #ffffff;
background-color: #151515;
font-family: Arial, sans-serif;
font-size: 14px;
height: 40px;
border: none;
border-radius: 100px;
cursor: pointer;
padding: 0 16px;
}
p.w-submit img {
width: 15px;
height: 11px;
}
.w-submit:hover {
opacity: 0.8;
}
input[type="submit"] {
border: none;
color: #fff;
background: none;
font-size: 14px;
font-weight: 400;
}
p.small {
font-size: 13px;
text-align: center;
color: #666;
padding: 6px;
margin: 0 auto 66px;
}
h1 {
font-size: 22px;
color: #203e4f;
font-weight: normal;
margin: 0;
}
h2{
font-size: 26px;
margin: 0 0 10px;
}
.aligncenter{
text-align: center;
}
hr:before{
background: rgba(0, 0, 0, 0) radial-gradient(ellipse at center center, rgba(0, 0, 0, 0.2) 0px, rgba(255, 255, 255, 0) 75%) repeat scroll 0 0;
bottom: 0;
content: "";
display: block;
height: 1px;
left: 50%;
margin-left: -40%;
position: absolute;
width: 80%;
}
hr{
padding: 1px;
position: relative;
border: none;
margin: 30px 0;
}
footer {
border-top: solid 1px #dcdfe4;
text-align: center;
Open service 2606:4700:3036::ac43:b041:8443 · ytmp3-cc.com.im
2026-01-25 03:26
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 03:26:22 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=0, must-revalidate
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=901nhWwcUsVpeQIjGdyCPSi0QpkTYCO29T2P0AQatDs3VPWFWMyQCgtbq8UK6rgruJMhfZWkjKOV5qu2IS6pw%2FpJrCJquuDtpjlok%2FkcsX1se1GcU7mDgikUNw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9c34ab2e1fa9751f-AMS
alt-svc: h3=":8443"; ma=86400
Page title: Youtube to MP3 Converter | YTMP3 Youtube Downloader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Youtube to MP3 Converter | YTMP3 Youtube Downloader</title>
<meta name="description" content="Need an easy method to convert videos into MP3? This thorough guide on ytmp3 provides insights, tips, and steps for seamless audio extraction.">
<meta name="robots" content="index, follow">
<link rel="shortcut icon" href="./images/icon.png" type="image/x-icon">
<meta property="og:image" content="./images/banner.jpg">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f6f6f6;
font-size: 16px;
font-weight: 300;
line-height: 1.6;
color: #293a46;
}
.wrap{
max-width: 600px;
margin: auto;
}
header {
text-align: center;
margin: 0 auto;
display: flex;
justify-content: space-between;
padding: 30px 0;
background: #0055b9;
}
article {
max-width: 600px;
margin: 32px auto;
padding: 32px;
box-sizing: border-box;
background: #fff;
border-radius: 9px;
}
#logo {
color: #293a46;
font-size: 23px;
font-weight: 700;
display: flex;
align-items: center;
height: auto;
}
#logo img {
margin-left: 10px;
opacity: 0.85;
}
section {
background-image: linear-gradient(to bottom, #0055b9 0 66%, #004fab 66% 100%);
width: 100%;
padding-bottom: 32px;
}
label {
color: #002438;
font-size: 14px;
font-weight: bold;
line-height: 16px;
}
.wrap-from {
display: flex;
justify-content: space-between;
}
div#format {
background-color: #f9f9f9;
height: 40px;
border: 1px #e5e5e5 solid;
border-radius: 100px;
padding: 4px;
box-sizing: border-box;
}
button.active {
color: #002438;
background-color: #ffffff;
border: 1px #ebebeb solid;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
button {
color: #8b989f;
background-color: transparent;
font-weight: bold;
height: 30px;
border: 1px transparent solid;
margin: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
font-size: 14px;
border-radius: 100px;
cursor: pointer;
padding: 0 16px;
}
#search-form {
border-radius: 12px;
box-sizing: border-box;
display: flex;
flex-direction: column;
padding:16px;
background: #fff
}
input#txt-url {
color: #7f8d96;
font-family: Arial, sans-serif;
font-size: 16px;
width: 100%;
height: 48px;
border: 1px #cfdcdd solid;
border-radius: 100px;
padding: 0 16px;
box-sizing: border-box;
outline: none;
margin: 16px 0;
}
input#txt-url:focus-visible {
outline: none;
}
input#txt-url::placeholder{
color: #999;
}
.w-submit{
color: #ffffff;
background-color: #151515;
font-family: Arial, sans-serif;
font-size: 14px;
height: 40px;
border: none;
border-radius: 100px;
cursor: pointer;
padding: 0 16px;
}
p.w-submit img {
width: 15px;
height: 11px;
}
.w-submit:hover {
opacity: 0.8;
}
input[type="submit"] {
border: none;
color: #fff;
background: none;
font-size: 14px;
font-weight: 400;
}
p.small {
font-size: 13px;
text-align: center;
color: #666;
padding: 6px;
margin: 0 auto 66px;
}
h1 {
font-size: 22px;
color: #203e4f;
font-weight: normal;
margin: 0;
}
h2{
font-size: 26px;
margin: 0 0 10px;
}
.aligncenter{
text-align: center;
}
hr:before{
background: rgba(0, 0, 0, 0) radial-gradient(ellipse at center center, rgba(0, 0, 0, 0.2) 0px, rgba(255, 255, 255, 0) 75%) repeat scroll 0 0;
bottom: 0;
content: "";
display: block;
height: 1px;
left: 50%;
margin-left: -40%;
position: absolute;
width: 80%;
}
hr{
padding: 1px;
position: relative;
border: none;
margin: 30px 0;
}
footer {
border-top: solid 1px #dcdfe4;
text-align: center;
Open service 2606:4700:3036::ac43:b041:80 · ytmp3-cc.com.im
2026-01-25 03:26
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 03:26:22 GMT
Content-Length: 0
Connection: close
Location: https://ytmp3-cc.com.im/
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=xptR8BFShlnN6y2GzoWzASt4rQ50bPXsa5fDCrMWU7%2Fn1tgcUJs4Xi9DB5RZmOEbTcZXb8BIb42N7PIpkBWwPFwq%2B8vNcAky69Tfn0412sstGp%2BuQhnA5RADFQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9c34ab2d6cc79757-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · voc.org.uk
2026-01-25 03:11
HTTP/1.1 302 Found
Date: Sun, 25 Jan 2026 03:11:36 GMT
Content-Length: 0
Connection: close
Location: https://www.domain-investors.co.uk/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KYxjlkx0IUzcpJ3%2BpuOPst6EXvupBwGPtbTFah2qxy3KZUL4YdDvwRqMv0xGKiaRjAzWOxDco4lEMxrnu9EFmdsIk0Nh7tNgfor9NZStSLooCGUdrkw%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c34958d3b6b964a-YYZ
Open service 2606:4700:3036::ac43:b041:80 · voc.org.uk
2026-01-25 03:11
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 03:11:36 GMT
Content-Length: 0
Connection: close
Location: https://voc.org.uk/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5z8Gt0nyL8T42ni1paRHfYEbhEqAxQm%2Btt%2BNUfqXrqCAtZSv3g54%2FtedLzDDAwhti9IDK8zxQkpRB57bHjlHnDye7xnDMOSTmEVfG8lI6JkikL94RgU%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c34958c7af2d8d9-YYZ
Open service 2606:4700:3036::ac43:b041:8443 · voc.org.uk
2026-01-25 03:11
HTTP/1.1 302 Found
Date: Sun, 25 Jan 2026 03:11:36 GMT
Content-Length: 0
Connection: close
Location: https://www.domain-investors.co.uk/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pEGQLNTd0PMKBAPPO6Vaq2YplFTBcm7lbCXTqZcacRshqVWQvWC7Azv2OMl7hqHtybspeytL4%2BfZo2V8NZk3UU9px24p7SP%2BDB37GBBQgfHgHhi1I1M%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c34958cf95766f3-AMS
Open service 2606:4700:3036::ac43:b041:80 · fastrackenergy.com
2026-01-25 01:45
HTTP/1.1 301 Moved Permanently
Date: Sun, 25 Jan 2026 01:45:18 GMT
Content-Type: text/html
Content-Length: 167
Connection: close
Cache-Control: max-age=3600
Expires: Sun, 25 Jan 2026 02:45:18 GMT
Location: https://fastrackenergy.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=oVUDspp5KttUVVhozprp5MTA1frNBGEIt97dMukNs0WIGfMs22vv4TE9qaftgzorIZzOEHlRs6UZyHXmvyKHPef%2F%2BnUhDZ3YEVR3zxXWGL1eq%2FQ4%2BpWEsWQrkLBSM4vueV7ffkAZ1qypYoYyCmZd5qQ%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
X-Content-Type-Options: nosniff
Server: cloudflare
CF-RAY: 9c34171f6e9d8c49-FRA
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=714&min_rtt=714&rtt_var=357&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=173&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>cloudflare</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · fastrackenergy.com
2026-01-25 01:45
HTTP/1.1 403 Forbidden
Date: Sun, 25 Jan 2026 01:45:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9c34171ded5ad291"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=8uCjqYMqi%2F7i3YwT%2BcMyigUrOQ%2FQC9SCDHF%2F4aOt4qMrkXaFyssshas3TyfGtnZyvOxGBpBG0rqMKyOHFU6BEs0zpmLqZUObzYEoAX32S2b1a%2BDSHAh%2BX0pa5LhfBOFIV5O8a6r5xKxtQznMZHhExWc%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Strict-Transport-Security: max-age=31536000; includeSubDomains
Server: cloudflare
CF-RAY: 9c34171ded5ad291-FRA
alt-svc: h3=":8443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=803&min_rtt=793&rtt_var=318&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4208&recv_bytes=1769&delivery_rate=6155251&cwnd=253&unsent_bytes=0&cid=e611ff2d94c48f7e&ts=18&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'fastrackenergy.com',cType: 'managed',cRay: '9c34171ded5ad291',cH: 'f2e6J_S44khvA6Cnsru_xV8QJXwVmtnBzQ32C5EUy4s-1769305517-1.2.1.1-W89XQF9cBCIZXdHDBFEnx0NdsiqGlbI1oq5Rbkbt9sc4wyYl6OvsDpIK7XmdfwEf',cUPMDTk:"\/?__cf_chl_tk=un7ezahrxME1lhRi3_ZONBGCMdkvDEkuhIO1MG2dfPg-1769305517-1.0.1.1-KoXQvz80Guz6EsIcwPSBH2VtWRBGd3yTwjCfJPyKnx8",cFPWv: 'b',cITimeS: '1769305517',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=un7ezahrxME1lhRi3_ZONBGCMdkvDEkuhIO1MG2dfPg-1769305517-1.0.1.1-KoXQvz80Guz6EsIcwPSBH2VtWRBGd3yTwjCfJPyKnx8",md: 'K639_JMVL9wFyoSvpTEC825TLI9M3rg0NVh5xIhl1IM-1769305517-1.2.1.1-fCOGXTDT2UUdAFjpuU5b7aCpRB7SMPaLrAr_EOJAerx9MyXjmd2g4mRU6s4mkiKruIm2Agsqc5.UoATL9DFShfoi5DqRE2XCsc6y9nzyDbF9xY3oLOy._P4ynrkQxnQZfD8xGl4gaXXsoDkWCAnymfYJ6IAreOID3v7siE_TbdPpHprleirxO8EyNBfpaCNXa1PeNDoEboX.XnkUduzroddFDmgPLXEz1nD5R8p_NrWz9okck87hGJTqHg.oqe58ZNZI72hwmrlmV8Cdr84cdQBW1syFkVR.23_UOvqD7OVL4yRTJOGMhtyvSBgJ38IIAz0R.fqcwM7fxttEQe4BQUCoPsnd8yrXSOqBZs6SWF4Y.ite.f4z45unubW_fnslgx9N98bozvA13JjZXBmFJiAEZ3saKIDKTVA2iw.Ke1YpoxQrICiCKLh6SF39V2cZa1m9vpA4fhup4XVKQ9MqcCRqP38OdjuLCCVePkfwc0cQFRbdDFS2fRbkI5BmDJu36jzUf5NPbZ0uKyijurRP5kgDpJLAlH8Z2aHzU_vGEv2asQHWvrKslltQgvOdYhHCgqL66wpUocsAdUKAxnRa7q6v63yAXa2j43OS9NCWaVW8KbdoyR_QbWcRO7ASfP1_BLiCwRnp.1qqPT35B39mxxuuXlQIVnErpR1.bBfTkGBT96pAQr0uyiV4h_Ct736TPhBZnZwTnyCAkID5Sr3twFp5B0C491Eotx9KeRtkYUbN_4EzTGmpW4xEueaQqUDtCAw93mvAtwsgyLfgokOcpFZkBrZ8eS_zGq22tJdGOId8tpRCD1xsZIJMns8HxzcHh8JS50ppjXjmw8AE0UeWSwQYjowH5yjJXn66JwvrsjqMMx9OaoZ0i9bkey.yl.n1s6oAcm6hK1mkCtiH6FMDyA',mdrd: 'qbnHyF8d3qTfQ05X6_BORAbBLvSrkPWVmbbvAzQ3SiQ-1769305517-1.2.1.1-33PNS_ike13tuLtoF8M9irDphDXZguJvkmdHztPqBiFiVeR5UkLP49F53N_HqIjov7abzZpccvsqW2itsbU365SBO26NH8LUasfLLZkDiKSR.zi6yR8STTm_lI_GYU4pA.gHKwWAeLSa260vwc_dfa4tf7eSzZVGB7qUuk4FlxzxyyJ0R.s6c26BLkB5nthh.bMu8PJ9vM6culHfWYPeGhrSQ9aWBVNmTEh_FkhNQi0sacDbgd7GoDtu6XtJobSCll7SwL5d6QDoR0MMTco1tar5lde8iYQFDBIZxYCgQs5i0zJY0Hsa2hV3Gr0.Lt8Ixj1lsA1a1.D7j9GibUBbACr9jCTE4tzgIpIlhEAchq4cIRBbv78742p7Y2bC.UQWZuK.bKiDEp4Hs6OtvwG0vf8evbJtJ_qwySmQ7Zn._U9d1TXtdEjyfxslymmqXc99kg0hY54W7m1RZaUW6tsmzis3yDSps7mU3LAbnRn86o
Open service 2606:4700:3036::ac43:b041:443 · fastrackenergy.com
2026-01-25 01:45
HTTP/1.1 403 Forbidden
Date: Sun, 25 Jan 2026 01:45:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9c34171ddcd91e26"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=oaKpQnQGBz9EKnY14dD0ozIxlVwLxISWwQaSTYM3AuwZ3wFejVnFNcPr3IlG5PZAHeg%2BfgrrfhQMOxy3iC0sEANSKUhQum7OWQLDbT2ucGMrxJnvz5gBL2y6qIcdeeP8qHTJbPjWLlM1tWiTsHr7KnY%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Strict-Transport-Security: max-age=31536000; includeSubDomains
Server: cloudflare
CF-RAY: 9c34171ddcd91e26-FRA
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=843&min_rtt=745&rtt_var=350&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4209&recv_bytes=1769&delivery_rate=7237583&cwnd=253&unsent_bytes=0&cid=f4da1bdd1206486e&ts=16&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'fastrackenergy.com',cType: 'managed',cRay: '9c34171ddcd91e26',cH: 'ZgYzAPJgFlfyXdzaV2jbYdP.tki7yCAlfR5i.RgdKoI-1769305517-1.2.1.1-1mLP9w3CkuW_zn4xYKPiuI_ip6HfZKr_tuIjM67jTt.DzGVyuXJ_kosxR4KdMRey',cUPMDTk:"\/?__cf_chl_tk=Vw5TozBaPLw9rUHHShx0WmVvQkAnWBlgI1O984MOOGg-1769305517-1.0.1.1-__xkZzXKhfQTI4xNiMlzW5lW4FXyIDImD7jnQLFDabo",cFPWv: 'b',cITimeS: '1769305517',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=Vw5TozBaPLw9rUHHShx0WmVvQkAnWBlgI1O984MOOGg-1769305517-1.0.1.1-__xkZzXKhfQTI4xNiMlzW5lW4FXyIDImD7jnQLFDabo",md: 'wmUYrIM75f8TZKM_xRRxLg5k9UEdlLqnEK6wE_wgbN4-1769305517-1.2.1.1-WntXl6aKAhQe4NQ39VRK7_yhW977esj_MijNTD_bhDY2rzxdNDshH_5IUuBSf2Md34KZ_Io6DqA0HhJ_GFlhAF_shCVBwe_SMUqYZ.mbV6GX6R8amQCht3KhfO5FJScluKpSWTfPVnx.4gSM1J1ZwMgSdaSvwJ0_b3xZlIm5FwaqsPonTMIHZNN1Upl.6DtNDuWg05LfRHOqHjl.GXabHQZyThU2NkweQbNWXWt.e1FyikWfdueAvAAEjWRgeaA0FrqtZMYFKuswaFfLu1Mwegt7m0G8xTy8Ijl3BKIQToDOezqgNNWIisArbPmjdOPxFNCod1712cjH4plVfdq3UW99EMaa2JeN3GvJeexDnnkIMjpBjA8t2mHjcu946AsUcp0hoqJpds9ggG4GNScDsgSKTblRz2FZTakgFc1gxyEyToQFBypTKYSKedCmh2.s5ThkpcdLB5iMYrxnNwVLpXzU1UKZMJEDxb.31TAozLK41NX4G1PMpZePOBM.D5LzY4yeqS_RRZLqS8a8Br8kFjpTH9mLKe6PbyP4OsJym8A3OgZrLtz.6k7GHmyDD3HaYCBB0vUGT7VVnJIjbsgu3qQSBsMpqhiEjQV_KrlRQ5obzbDlq6LncvWpbHnFfnhGH.l6gV8F2QyE1IRbVZO6p6RVyAi6IxiJK3oVOw41vtTceiD96FEiZotsE1D3hPECf63vqoNHKb6g2Piegu3r9m_ShIEU1DcVf8K2N4cdjqplDso26WByc8jhMOcMmBpnCzVkXcxMs4PjNBi1hOxQrL76uCRYWaZHlb79qtgagHblFCEWKkBeq3tnLroY10Kx8CE6jKYl4TYNhUexMf4N7WSsJkE9K1_5gsU8A56KHXeMu7Sb0krCPVszipMZ9s4EYoyYhrmjHwTwsaXudHW4kw',mdrd: 'BUU2.ndPfIEw7337PfbWVwW1gc6AS_lm9wxO0VlvirM-1769305517-1.2.1.1-t30DnV03Y6K5IZwatJmWkRqhR30GCX4X721GHPfeF3Q3RR97yhnP2j0ZBxFW9dUOJiI_08nLj8O_5troXMyFe_j9d6q6RuqRm4F9mcp8jwOiJkJTe4EiNVrq_Fmdsa.POEoRj8bSBPLgvNEdsGeBr00Jz.VqlqGZIEX5hyRuIvN80sC8M2oqqhcZugpF.Grs15Y8UEph0nYSb8m0qguSgnks79SHWnnplIey2HpySwNnO_1LzLXHmOQOK4N3KBVaf4tBS9IHLOf3mDZAW1maBtD1Hx8FmR0ST5LTdYnzQf_0fcUrQFgDqd7enffNOOs73f_0LtYSxMx0sivOnGga.6Y4734mMsBgAh7JXG6daUBhMPP8WFOhSEC3q0O0Yl4YReRFeSMk1bAef61aGMJkLg14YPL3AF48kDp1xQIQ1XO6ROFGEUg_HaFm6Koj1zwMJxuxc9MHhHSEJv4ohLQb_ItEOfO30YhLEJVipEqVmu
Open service 2606:4700:3036::ac43:b041:8443 · 7003.ly168.co
2026-01-25 01:35
HTTP/1.1 521 <none> Date: Sun, 25 Jan 2026 01:35:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3408bce9ee5667-LHR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · 7003.ly168.co
2026-01-25 01:35
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 01:35:30 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=16,cfOrigin;dur=1282
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DM%2FxUA%2BC7FHjqTjOOFqJj0xs8Ky76qHc3OqoPWxPyZmxlR7gXNWUoPCFU9y%2BWlSNfICw629wzokgz8MTXXGkRJF5HHcDuwUcmdUQ546PNahUphXxMuGNeWc%3D"}]}
CF-RAY: 9c3408c1ec088ccd-EWR
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:80 · 7003.ly168.co
2026-01-25 01:35
HTTP/1.1 200 OK
Date: Sun, 25 Jan 2026 01:35:29 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=i246oESO1WZ3IZUqdQu6bj9APRYxS4htyU8DsznlIJWJVDFehVOp7ZA4PcSpjT58inSYPOxMU%2B8RRxgBHCD01Rai%2F9DqxgWDJb6xp5hj0Vc0Ain7erxeWOo%3D"}]}
CF-RAY: 9c3408bdbbc9d398-FRA
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:8443 · 12cocobet.com
2026-01-25 00:47
HTTP/1.1 403 Forbidden
Date: Sun, 25 Jan 2026 00:47:49 GMT
Content-Type: text/plain; charset=UTF-8
Content-Length: 16
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sPPVYr5jGzyfk4R018aK8EtJYjPRlmdzbXiERXqS%2FgugdBWL5J%2BAj%2BU%2Fj2mfupgaW%2BzIoEj84V4TYBGB1okCgqWEP5DxynUuErxT8B%2BhbQQKBTEQrKQ1JDY%3D"}]}
Server: cloudflare
CF-RAY: 9c33c2ecfb027e9f-LHR
error code: 1005
Open service 2606:4700:3036::ac43:b041:80 · 12cocobet.com
2026-01-25 00:47
HTTP/1.1 403 Forbidden
Date: Sun, 25 Jan 2026 00:47:49 GMT
Content-Type: text/plain; charset=UTF-8
Content-Length: 16
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Yv%2BUBWsu0q%2Bh7cQ1%2F%2BMtfeIAOh%2Bzt31iRFX4cKi8VWZLfQvQK99MdLJEdAAV7mda7knsqSwLZUpCLVT%2F1wNfL%2BM1jzkEL%2BqHm8RZYpdw6X0TERPkOusc4hI%3D"}]}
Server: cloudflare
CF-RAY: 9c33c2ec2840149b-LHR
error code: 1005
Open service 2606:4700:3036::ac43:b041:443 · 12cocobet.com
2026-01-25 00:47
HTTP/1.1 403 Forbidden
Date: Sun, 25 Jan 2026 00:47:49 GMT
Content-Type: text/plain; charset=UTF-8
Content-Length: 16
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Hl4WXPa19PNMohmCCy9lc7BmEOtdPgZm1ci2koCEMWv%2Fe%2BweWyejUMSadtOA1Et0O%2FdxkjHJJ%2F4EuZvZECiZpg8yDFC%2F%2FA8k8MDd7%2BXUAIvihuAHwL92%2BJs%3D"}]}
Server: cloudflare
CF-RAY: 9c33c2eb9cfd3655-FRA
error code: 1005
Open service 2606:4700:3036::ac43:b041:80 · globaloilmanagementgroup.com
2026-01-24 23:59
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 23:59:22 GMT
Content-Length: 0
Connection: close
Location: https://globaloilmanagementgroup.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9fxQ4I2at6IdTtNPOiv5mq9l7G%2Bb7VuGpoUuUno%2FWBZ4plKoAYPv7MMkOHktcpdY4BAstSVRMGBuBT%2BpfBr4Ig%2FEU7%2F9we53lOrhrgQFB1%2Bvsxhu0mjj4KbhU5Tr3FuETH%2F2H5YuqfY%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c337bf51d12d4de-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · globaloilmanagementgroup.com
2026-01-24 23:59
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 23:59:22 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=R%2BPF3K4IB%2BqgvjWMVa75avxe0rQB4h1SMK2GdWDJBiTsWZnPjC3%2BJDPK1OsTF5lI509n1IYYuB1rl5kCqkWlI1urVB21kJKuq5w3fmnq2mC7ySBrlrgE9E9qqJ%2FKLDEDfRNldN1B9C4%3D"}]}
CF-RAY: 9c337bf69edbd2a5-FRA
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:8443 · globaloilmanagementgroup.com
2026-01-24 23:59
HTTP/1.1 525 <none> Date: Sat, 24 Jan 2026 23:59:22 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=76,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c337bf47993b35a-EWR alt-svc: h3=":8443"; ma=86400 error code: 525
Open service 2606:4700:3036::ac43:b041:443 · bodemillerskiacademy.org
2026-01-24 23:37
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 23:37:48 GMT
Content-Length: 0
Connection: close
Location: https://www.adsala10.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Ue9O6EjOkZiSMTQ3gIKFRsMWGzmPbUDsHlPBzJs8Gs4JL62oc4GaOxR5fkbkmC4uocbJJn61tQQhYDN3aoF00NTmD5Kcz8lAWpidNR0yCoHipqFrtT%2F9%2BhvRRVnYsJ8qMemD0Q%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c335c5ec96365c0-FRA
Open service 2606:4700:3036::ac43:b041:80 · bodemillerskiacademy.org
2026-01-24 23:37
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 23:37:48 GMT
Content-Length: 0
Connection: close
Location: https://www.adsala10.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=t020Yxav0XAKTwZGmPpm0c07rquVaPOZi5pkhGKVUYlUBjPuiptIXyL%2FxrdxgoeP8eH4ivhEaafWQKy1tkE0qnw36Kb2Kcu1uUU2PjMX3wWYoOjz%2B%2Bga8fbA3Ml0MC6ez0C1kQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c335c5e9eb03f6d-BOM
Open service 2606:4700:3036::ac43:b041:8443 · bodemillerskiacademy.org
2026-01-24 23:37
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 23:37:48 GMT
Content-Length: 0
Connection: close
Location: https://www.adsala10.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=8%2BThVlBkjYNjofMbpLZYwLahKSEYhaGCurFGCh4j9t9%2F3JkOAZDY43CtRiazLlGCtW93KscSTS7sXbu1D%2BXV%2BwQSHN5XmEOb4qIhYJNiYiGzyp8QmO9f8LgmYcKk4TbEPI4%2F1g%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c335c5e2ecdaac0-YYZ
Open service 2606:4700:3036::ac43:b041:8443 · gondesen.cloud
2026-01-24 23:01
Open service 2606:4700:3036::ac43:b041:443 · gondesen.cloud
2026-01-24 23:01
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 23:01:42 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-WS-RateLimit-Limit: 1000
X-WS-RateLimit-Remaining: 999
Server: cloudflare
Last-Modified: Wed, 13 Mar 2024 18:46:50 GMT
vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=L6G4fdxmLiIgBvKhyEYUEccFeznfFi6HXDH4tNOXN3u5x38MudJEjoL707PE8JdJimlbLSo6vYrXiLJj881VBMleD7UjopeQjLS%2FB50iHhac7bbjn9Q2RA%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c3327798d61ef54-LHR
alt-svc: h3=":443"; ma=86400
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Refresh" content="0;url=defaultsite" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
<!-- DE -->
</head>
<body>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · gondesen.cloud
2026-01-24 23:01
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 23:01:41 GMT
Content-Length: 0
Connection: close
Location: https://gondesen.cloud/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0Kp3YX7FJSeHAX4qKiOytF1J%2BYISdhZLLMUS%2BkRBIQy69kh2kaCIxAbJZCd9dOyfFpL8j8o6OdKjIrjTGULI5dGSrB3KlsYeIx7NcX4rQ4FbdglWD775wd6m"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c3327790962f6ad-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · alljv.com
2026-01-24 21:21
HTTP/1.1 521 <none> Date: Sat, 24 Jan 2026 21:21:09 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=32,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c3294335e2b5d00-LHR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · alljv.com
2026-01-24 21:21
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 21:21:09 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=URs0SepjyjGpQX3KnP%2FSFDayMqtcJZZXUQ43RHX33Qr1F21JeaKCQuam9ySCu95TIvjUVsxut02oQSIjdUn6lY4CtTJPaetFz%2FJGOcrlP9ywM1Yo0A%3D%3D"}]}
x-powered-by: PHP/8.0.30
link: <https://alljv.com/wp-json/>; rel="https://api.w.org/"
link: <https://alljv.com/wp-json/wp/v2/pages/10>; rel="alternate"; title="JSON"; type="application/json"
link: <https://alljv.com/>; rel=shortlink
x-litespeed-cache: hit
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=10,cfOrigin;dur=37
vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9c329434aeb7371d-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · alljv.com
2026-01-24 21:21
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 21:21:09 GMT
Content-Length: 0
Connection: close
Location: https://alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=C9BEG5lq%2BgEezg464plLsOAEVEIU%2BBDTmY6U2sH62LJ2e%2BYvVv8%2F%2FONKoyOjabHCU4h9MY0PKYkdxpKWqmBcpYE8rq%2FKkupEUmiXQyQgphLCWp8Wjw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c329432fc6bfde0-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · manjiangli.cn
2026-01-24 18:45
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 18:45:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sxnYs%2Bk2dmBcHf%2FiTThi%2BUdA1XnK6QxRuYbhICduzHW%2FpPEBHitc3jAQIEVhuZPXQcDa1%2FOnY7Be84mbwmefvl1zcKyhdCHaFF8dgtgZ9XUzi%2Fs4II7kGSk%3D"}]}
Server: cloudflare
X-Powered-By: Nginx
cf-cache-status: DYNAMIC
vary: accept-encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=13,cfOrigin;dur=5
CF-RAY: 9c31afe29fc080fd-SJC
alt-svc: h3=":443"; ma=86400
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>document.title='无锡华之源环保工程设备有限公司';</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
</head>
<body>
<div id="loading" style="padding:50px;text-align:center;font-family:Arial,sans-serif;">
<h2>页面加载中...</h2>
<p>请稍候,正在为您准备内容</p>
<div style="margin:20px auto;width:50px;height:50px;border:3px solid #f3f3f3;border-top:3px solid #3498db;border-radius:50%;animation:spin 1s linear infinite;"></div>
</div>
<style>
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<script language="javascript" type="text/javascript" src="/common.js"></script>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"95e41c71ad604cfd83bd420a140e8082","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · manjiangli.cn
2026-01-24 18:45
HTTP/1.1 521 <none> Date: Sat, 24 Jan 2026 18:45:18 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c31afe27c0303f4-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · manjiangli.cn
2026-01-24 18:45
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 18:45:18 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NyXMNOq0QDMgILvpBegzZVrr%2F8j34TNxyFJbhJaTDf9nX0%2B5w3umiFPuPiUYI1CmtMP6tw8EWTXJXTu0l380tU%2BhCInGXWR8RjFiGOPTe9Cfj%2BdrXQIGGeg%3D"}]}
Server: cloudflare
X-Powered-By: Nginx
cf-cache-status: DYNAMIC
vary: accept-encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9c31afe34af703dc-FRA
alt-svc: h3=":443"; ma=86400
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>document.title='无锡华之源环保工程设备有限公司';</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
</head>
<body>
<div id="loading" style="padding:50px;text-align:center;font-family:Arial,sans-serif;">
<h2>页面加载中...</h2>
<p>请稍候,正在为您准备内容</p>
<div style="margin:20px auto;width:50px;height:50px;border:3px solid #f3f3f3;border-top:3px solid #3498db;border-radius:50%;animation:spin 1s linear infinite;"></div>
</div>
<style>
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<script language="javascript" type="text/javascript" src="/common.js"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · choppercommute.com
2026-01-24 18:44
HTTP/1.1 520 <none> Date: Sat, 24 Jan 2026 18:44:37 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c31aedf6d7880da-EWR alt-svc: h3=":443"; ma=86400 error code: 520
Open service 2606:4700:3036::ac43:b041:8443 · choppercommute.com
2026-01-24 18:44
HTTP/1.1 521 <none> Date: Sat, 24 Jan 2026 18:44:36 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c31aedf2c3d5d38-SIN alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · choppercommute.com
2026-01-24 18:44
HTTP/1.1 525 <none> Date: Sat, 24 Jan 2026 18:44:41 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c31aee3d950dc5c-FRA alt-svc: h3=":443"; ma=86400 error code: 525
Open service 2606:4700:3036::ac43:b041:443 · tryentregadordigitalemail.sbs
2026-01-24 14:20
HTTP/1.1 522 <none> Date: Sat, 24 Jan 2026 14:20:33 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19584,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c302b9a8cfef44c-SIN alt-svc: h3=":443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · tryentregadordigitalemail.sbs
2026-01-24 14:20
HTTP/1.1 522 <none> Date: Sat, 24 Jan 2026 14:20:33 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19379,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c302b9a5931c755-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · kseftangodown.pl
2026-01-24 13:57
HTTP/1.1 400 Bad Request Server: cloudflare Date: Sat, 24 Jan 2026 13:57:25 GMT Content-Type: text/html Content-Length: 253 Connection: close CF-RAY: - Page title: 400 The plain HTTP request was sent to HTTPS port <html> <head><title>400 The plain HTTP request was sent to HTTPS port</title></head> <body> <center><h1>400 Bad Request</h1></center> <center>The plain HTTP request was sent to HTTPS port</center> <hr><center>cloudflare</center> </body> </html>
Open service 2606:4700:3036::ac43:b041:443 · kseftangodown.pl
2026-01-24 13:57
HTTP/1.1 400 Bad Request Server: cloudflare Date: Sat, 24 Jan 2026 13:57:25 GMT Content-Type: text/html Content-Length: 253 Connection: close CF-RAY: - Page title: 400 The plain HTTP request was sent to HTTPS port <html> <head><title>400 The plain HTTP request was sent to HTTPS port</title></head> <body> <center><h1>400 Bad Request</h1></center> <center>The plain HTTP request was sent to HTTPS port</center> <hr><center>cloudflare</center> </body> </html>
Open service 2606:4700:3036::ac43:b041:80 · kseftangodown.pl
2026-01-24 13:57
HTTP/1.1 302 Found
Date: Sat, 24 Jan 2026 13:57:26 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Set-Cookie: PHPSESSID=0f4204b0a762f10e4e9f4092a1e9e726; path=/; HttpOnly
Set-Cookie: locale=pl_PL; expires=Tue, 22-Jan-2036 13:57:26 GMT; Max-Age=315360000; path=/
Location: https://statusksef.pl
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=U8tpTzlvkbFkmJYwsfeRPNUO6NbCBnI7E1khLb%2BsEKjD2QLJaTNBuTkpLZ0xbAHp1I4wdJA1FZtDpgLWxV08J17Ookt8TlOt4%2B2BlCRjM13LKfVYoLMWEbw3Aqg%3D"}]}
CF-RAY: 9c300a345d61957d-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · chem-suppliers.com
2026-01-24 13:46
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 13:46:10 GMT
Content-Length: 0
Connection: close
Location: https://www.chem-suppliers.com
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=j2TVEp2u4JzQWoZof4AMXD%2BXDFzY31SH1wJuSSRIRRgb9Ax0xDEjJIlMUQ3lBd6XgGllephhEyv3dOsm1vw%2F%2F5WGUuXf9WEYhcUMBLEUuIIXzW1gFJyZP0m4ZVfODQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=6,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c2ff9ba38558c3f-EWR
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · chem-suppliers.com
2026-01-24 13:46
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 13:46:10 GMT
Content-Length: 0
Connection: close
Location: https://www.chem-suppliers.com
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Q68%2FiqAOa2rZHXsnaPcCsHElze9%2FSxzA93p4HCzCm4Ux1%2Bdrr2AKBt8FnxTHDtoo%2Fxn4sRhdUEPaA2pKGUp79Z3V67swd1%2FBDX%2BJzPsvHPf6k27rglP5Ofle1TnGkQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=11,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c2ff9ba1ac5fd67-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · chem-suppliers.com
2026-01-24 13:46
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 13:46:10 GMT
Content-Length: 0
Connection: close
Location: https://www.chem-suppliers.com
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bj1ArBqlRaHYMKgUAFQ862gwknj45RG4buzMTrMut%2FCaxAE6JuSs5KF7li8vz6zi3QDESFpEJMbbDWxD5XqQXQHNWavI7pSNdwbJ5SkA%2BzqGQkpofl1cxOoe9hlwVQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=6,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c2ff9b9deceff8f-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · edu-sight.cn
2026-01-24 11:09
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 11:09:35 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NZAitNmnnFHv1WBrKhXf6cSXC25zngbBxtmcU2M8%2BJrGpVXm5%2B7XLQRxW%2B457Rfcfq4J2NhO3fS%2FvEZnkC35QrT79Lf8rLEo30d1RZyaqvlkM5TY74MPKw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2f14560894923b-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> edu-sight.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2f14560894923b</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::14a4:1001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-rev
Open service 2606:4700:3036::ac43:b041:8443 · edu-sight.cn
2026-01-24 11:09
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 11:09:35 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ua%2FxYqMmZS%2BBGswM%2FdTPi85cDt1uvagT84awGKGqSYONt9ugaBpwqf8%2BWFqN9swHnoenEVqdpdmM9a%2FeRl3Mecgva12Ewty0fHJmq72frKWaaIMdpyMz7w%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2f14561d05d38a-FRA
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> edu-sight.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2f14561d05d38a</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::14a4:1001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-rev
Open service 2606:4700:3036::ac43:b041:443 · edu-sight.cn
2026-01-24 11:09
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 11:09:34 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=4,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NFliO%2Ft1%2FkjwCW61ntnYnYk19RQTIcOI%2Fqb%2BjOOfnCFptQwe4bXaVmf1bKOUuw7dfwtmbGlMbXg%2B7TwbeV%2FyST7SqJq%2BAn2x5TBlGxCyZEOu9rqbHE8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2f14559e8c36a5-YYZ
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> edu-sight.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2f14559e8c36a5</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:cad:d0::d5a:e001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-re
Open service 2606:4700:3036::ac43:b041:443 · holamedleyhome.shop
2026-01-24 09:57
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 09:57:36 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZNgys%2BpN27eLCI4GGSpO2zKIxw%2BNZX2nd2C4ahdgdF4fiYN15kQSDv%2FoOjaE1cvaiH%2B7BvfZF%2FIexpH4BtHPuI3DrTCmB5G0kfGBAd2HwxzOrxlrJUn590MVwKnO9AY%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9c2eaadf980f3e52-BOM
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · holamedleyhome.shop
2026-01-24 09:57
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 09:57:34 GMT
Content-Length: 0
Connection: close
Location: https://holamedleyhome.shop/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EwKrc90cZGi3%2F5Ku%2BatJrLEh9QnMGS7MpIhxWO2z1YJ9sJroTDGenI6Xu%2FRg8JMZ%2Bf%2FFntYj1w4MdwdGzy%2BH%2FxjjbfLx%2BedAV%2Fy%2FkvzBVVAwGqBQLsmP5nPi%2F0HNvzE%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2eaad94834982f-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · holamedleyhome.shop
2026-01-24 09:57
HTTP/1.1 521 <none> Date: Sat, 24 Jan 2026 09:57:34 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2eaad98d6bd3c1-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · sdmyedu.cn
2026-01-24 08:55
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 08:55:52 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=11,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=O8HOG5oYp9dCnkrNd4F4t1ZOgbyHTCuQpkAF5H6GfwsFLFuawvh%2BuOOjPPzdA%2BBLoCwZzA4aZmajTsSBq3YSXCoVO7U0KoIy620h3b56DU%2BILzsryVA%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2e507bdc084259-EWR
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> sdmyedu.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2e507bdc084259</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:400:d0::24f2:4001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-rev
Open service 2606:4700:3036::ac43:b041:443 · sdmyedu.cn
2026-01-24 08:55
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 08:55:52 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bjcOMu1o2Yy%2B7VSX9CNSk4JV%2BCbm7bucqs6Cmp8gPD4oPjIbRse1z3YIrvWOyb8N9lRTVpnO09WdM2NbTpKZ%2B3bjnIcNzIMoMr1oNEHgE1qEIb4s6s4%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2e507be95e1992-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> sdmyedu.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2e507be95e1992</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::e89:e001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal
Open service 2606:4700:3036::ac43:b041:8443 · sdmyedu.cn
2026-01-24 08:55
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 08:55:52 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=4,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2FrOA2%2FWnot3YvcmO8GjzjcieNByv7EyGZjQc9k4RKo0omIZbc%2BHRoqqEm9MqBO3xtt68z0wqbV9bDAjTNKJlDDCYCXwfModlfRTSqrDsTih9DyJA1mU%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2e507b696d5616-SJC
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> sdmyedu.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2e507b696d5616</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:4:1d0::3d7:5000</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-revea
Open service 2606:4700:3036::ac43:b041:8443 · igadigi.top
2026-01-24 08:35
HTTP/1.1 522 <none> Date: Sat, 24 Jan 2026 08:35:46 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2e328a9c2fb873-SJC alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · igadigi.top
2026-01-24 08:35
HTTP/1.1 404 Not Found
Date: Sat, 24 Jan 2026 08:35:27 GMT
Content-Length: 0
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rbfhAOonjdOXC9BD7p30Z9PwwoG%2BlL%2B4Kc0v1ERT3Z51IrPR7k3SHkS7W%2FKCmAoLxGF3O9dfZjqxSDTeutpjnUACYu9Exeapjlg94fpFUM1ZmEDaccPU"}]}
CF-RAY: 9c2e3289cec36e1d-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · igadigi.top
2026-01-24 08:35
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 08:35:25 GMT
Content-Length: 0
Connection: close
Location: https://igadigi.top/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=H8GyVVU8vWXe6AkrtUaeEZkKizcjmFU%2FYxRM0KEgxpKwOUGbSw0nZXv8M4MQ2FkC40LqaQr1AZbOLUwQm0yUQ%2FtXaFTsQ7M6tSlAsdnWbgJLuJ%2BJjTYp"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2e3283bd76252b-LHR
Open service 2606:4700:3036::ac43:b041:443 · limoberg.com
2026-01-24 08:00
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 08:00:34 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=kq%2BikqWGrzWV7%2FXJZPRJKOtm6nIO%2Fq%2Bnfqkvz8ACZpa3SXuQTox50sP8So2iiooJ1C0ZONoKGRx8wrWwSvM9jCCRPg76XXjehcGKKDw9tpG0yX4PB70wGg%3D%3D"}]}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=5,cfOrigin;dur=14
CF-RAY: 9c2dff779a2de16d-SJC
alt-svc: h3=":443"; ma=86400
Page title: 男人天堂中文网av在线,日韩特一级毛片在线看,亚洲经典千人斩日产,中文字幕精品一区二区三区人妻,亚洲午夜视频久久,日本成人综合在线,国产精品亚洲久久精品,韩国三级日本三级欧美三级,大尺度亚洲美女网站在线观看,日本亚洲高清视频在线,国产精品一一在线观看,国产免费一级高清淫日本片,国产午夜福利在线观看高清,夜夜av一区二区三区另类,91久久精品都在这里,久国产亚洲精品久久久,亚洲第一福利专区,国产精品一国产精品,激情黄色国产视频,欧美特黄视频免费观看,久久大香蕉五月婷婷av,久久午夜欧美日韩中文字幕,美女久久久久久免费看片
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>document.title='������ʷ��е�豸����˾';</script>
<title>男人天堂中文网av在线,日韩特一级毛片在线看,亚洲经典千人斩日产,中文字幕精品一区二区三区人妻,亚洲午夜视频久久,日本成人综合在线,国产精品亚洲久久精品,韩国三级日本三级欧美三级,大尺度亚洲美女网站在线观看,日本亚洲高清视频在线,国产精品一一在线观看,国产免费一级高清淫日本片,国产午夜福利在线观看高清,夜夜av一区二区三区另类,91久久精品都在这里,久国产亚洲精品久久久,亚洲第一福利专区,国产精品一国产精品,激情黄色国产视频,欧美特黄视频免费观看,久久大香蕉五月婷婷av,久久午夜欧美日韩中文字幕,美女久久久久久免费看片</title>
<meta name="keywords" content="男人天堂中文网av在线,日韩特一级毛片在线看,亚洲经典千人斩日产,中文字幕精品一区二区三区人妻,亚洲午夜视频久久,日本成人综合在线,国产精品亚洲久久精品,韩国三级日本三级欧美三级,大尺度亚洲美女网站在线观看,日本亚洲高清视频在线,国产精品一一在线观看,国产免费一级高清淫日本片,国产午夜福利在线观看高清,夜夜av一区二区三区另类,91久久精品都在这里,久国产亚洲精品久久久,亚洲第一福利专区,国产精品一国产精品,激情黄色国产视频,欧美特黄视频免费观看,久久大香蕉五月婷婷av,久久午夜欧美日韩中文字幕, 
Open service 2606:4700:3036::ac43:b041:80 · limoberg.com
2026-01-24 08:00
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 08:00:34 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=J7GeQEs5fPqc5Os3kdbfl4afrsNOUpaF1z76OI01RAakv2kFTcqmPR29Z8ZWFYqaDGDkK3NI9%2Bhw9PVYMVpUne8x9phDtAFkLXWsUiaptlZCmsXGSvN1hQ%3D%3D"}]}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=16,cfOrigin;dur=140
CF-RAY: 9c2dff782ba60f71-EWR
alt-svc: h3=":443"; ma=86400
Page title: 男人天堂中文网av在线,日韩特一级毛片在线看,亚洲经典千人斩日产,中文字幕精品一区二区三区人妻,亚洲午夜视频久久,日本成人综合在线,国产精品亚洲久久精品,韩国三级日本三级欧美三级,大尺度亚洲美女网站在线观看,日本亚洲高清视频在线,国产精品一一在线观看,国产免费一级高清淫日本片,国产午夜福利在线观看高清,夜夜av一区二区三区另类,91久久精品都在这里,久国产亚洲精品久久久,亚洲第一福利专区,国产精品一国产精品,激情黄色国产视频,欧美特黄视频免费观看,久久大香蕉五月婷婷av,久久午夜欧美日韩中文字幕,美女久久久久久免费看片
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>document.title='������ʷ��е�豸����˾';</script>
<title>男人天堂中文网av在线,日韩特一级毛片在线看,亚洲经典千人斩日产,中文字幕精品一区二区三区人妻,亚洲午夜视频久久,日本成人综合在线,国产精品亚洲久久精品,韩国三级日本三级欧美三级,大尺度亚洲美女网站在线观看,日本亚洲高清视频在线,国产精品一一在线观看,国产免费一级高清淫日本片,国产午夜福利在线观看高清,夜夜av一区二区三区另类,91久久精品都在这里,久国产亚洲精品久久久,亚洲第一福利专区,国产精品一国产精品,激情黄色国产视频,欧美特黄视频免费观看,久久大香蕉五月婷婷av,久久午夜欧美日韩中文字幕,美女久久久久久免费看片</title>
<meta name="keywords" content="男人天堂中文网av在线,日韩特一级毛片在线看,亚洲经典千人斩日产,中文字幕精品一区二区三区人妻,亚洲午夜视频久久,日本成人综合在线,国产精品亚洲久久精品,韩国三级日本三级欧美三级,大尺度亚洲美女网站在线观看,日本亚洲高清视频在线,国产精品一一在线观看,国产免费一级高清淫日本片,国产午夜福利在线观看高清,夜夜av一区二区三区另类,91久久精品都在这里,久国产亚洲精品久久久,亚洲第一福利专区,国产精品一国产精品,激情黄色国产视频,欧美特黄视频免费观看,久久大香蕉五月婷婷av,久久午夜欧美日韩中文字幕, 
Open service 2606:4700:3036::ac43:b041:8443 · limoberg.com
2026-01-24 08:00
HTTP/1.1 522 <none> Date: Sat, 24 Jan 2026 08:00:54 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2dff7bec380df5-AMS alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · agentbettingx500.site
2026-01-24 07:45
HTTP/1.1 522 <none> Date: Sat, 24 Jan 2026 07:45:34 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2de902887871e0-LHR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · agentbettingx500.site
2026-01-24 07:45
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 07:45:14 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
last-modified: Sun, 28 Sep 2025 06:39:36 GMT
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=6,cfOrigin;dur=232
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ofYXCev6sZZ%2FtdAp3r4W7LVrKD7VN4cR0faCvrawTzq7tlnLYS6%2BFysak1uxG3dOtZVQxDQ9AjQBdWqaZUFipzKach5MtpmWwkPVhGAs6f7XltZyaIrsnoaTROsFsPQIFQ%3D%3D"}]}
vary: Accept-Encoding
Server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9c2de8fdc9b0880c-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · agentbettingx500.site
2026-01-24 07:45
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 07:45:13 GMT
Content-Length: 0
Connection: close
Location: https://agentbettingx500.site/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=3Lo02gSwy8GcZzKKHyov7Ayc1IZMFdB86vx7nhMLlbc%2BCXOZq6Ygay91XPvJ1roy0p45WHTDwTSzHI6em8bCO%2B5j9dqY0DcKjncLasjPjNN5JXC6eQgEZs%2FMEzBr388g7Q%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c2de8fbfe037b0e-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · thaiebook.org
2026-01-24 07:40
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 07:40:57 GMT
Content-Length: 0
Connection: close
Location: https://thaiebook.org/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=02aefCnFhCeSvJUki6CxAYe144fgh%2BE9S8O0PjRlYQ6yK8qdtmmIOymPhmS33OPVpsThoqe7ZGn6zOYFBjd1IImnUgiP7DK6KlRz0MpcUmSym1fpqVHwMng%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c2de2baeb0da0f4-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · thaiebook.org
2026-01-24 07:40
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 07:40:57 GMT
Content-Type: text/html; charset=tis-620
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
x-powered-by: PHP/7.4.33
strict-transport-security: max-age=31536000;
strict-transport-security: max-age=31536000;
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=4,cfOrigin;dur=191
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KBOlgL1%2BIKRr9aPDlKffJQ%2F6tfWkTcxurF5SwTA5zv8u1ejVPhh2fKOwdBhDy36ONT91Q3XGKb1eyFxYxkbXfbXUF3VtvWeOwE%2BkdYp0iQdBAnQFhyZd"}]}
CF-RAY: 9c2de2bd3e48cceb-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · thaiebook.org
2026-01-24 07:40
HTTP/1.1 521 <none> Date: Sat, 24 Jan 2026 07:40:57 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=114,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2de2baf92e375e-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:8443 · taiwanruralfront.org
2026-01-24 07:18
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 07:18:55 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=0, must-revalidate
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WsIXzbE0vJyfIGP%2F5GSINBhl1q%2BZbUTNY27OOLhsdPoYQUYIS79YdRHluBIiCZ2%2Bu07xAWbixZFUcuiiTevpNnEWcNU6bVVGu%2FXIWSJNWgc2K8WQAA%2F2BZ%2BChssr0OuV"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9c2dc275de00d745-LHR
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · taiwanruralfront.org
2026-01-24 07:18
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 07:18:55 GMT
Content-Length: 0
Connection: close
Location: https://taiwanruralfront.org/
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=brDWHkMzsxya9%2BsxwYmRh88Q46WN5b%2FqlopTFVeC2G2vMtWLI2emJUdIUNo5hppX4%2FhPbxQMx6bIn09M1gRXW83A6pjaUcT25pggxKTmwR5wxBe%2B%2BIYLsB9G6%2BrMZdS7"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9c2dc27588246692-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · taiwanruralfront.org
2026-01-24 07:18
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 07:18:55 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=0, must-revalidate
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=susNgmWjcJy1EfXbIbKcBSYe%2BKxQI%2BnV9QPRt855LO6w7QPBjGu6NrZx5lWXg%2F%2FvQE5uO2wZRRp52S%2BA60lra1%2Bs2QyIrW2NTSguDACq7ofSxt2g%2BPT8RvDviF6aebUj"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9c2dc2761ee6fcfd-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · lineascan.com
2026-01-24 06:52
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 06:52:25 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UPRdfLePhV%2BOcN6smug5PGNYf1oqeBnch4qVELVV0Gyy8tBsZLcXsYOvdpH%2B2%2BwTCsqCe1gFBBQ%2BHd2r0HAmDXDM8f5%2BZvbK0raC3Q%2BTIb4rJlhjgaKTzPQ%3D"}]}
Last-Modified: Wed, 31 Dec 2025 16:40:00 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Server: cloudflare
X-Powered-By: ASP.NET
cf-cache-status: DYNAMIC
CF-RAY: 9c2d9ba2dea24248-BOM
alt-svc: h3=":443"; ma=86400
Page title: IIS Windows Server
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>IIS Windows Server</title>
<style type="text/css">
<!--
body {
color:#000000;
background-color:#0072C6;
margin:0;
}
#container {
margin-left:auto;
margin-right:auto;
text-align:center;
}
a img {
border:none;
}
-->
</style>
</head>
<body>
<div id="container">
<a href="https://go.microsoft.com/fwlink/?linkid=66138&clcid=0x409"><img src="iisstart.png" alt="IIS" width="960" height="600" /></a>
</div>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · lineascan.com
2026-01-24 06:52
HTTP/1.1 522 <none> Date: Sat, 24 Jan 2026 06:52:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2d9ba57997eef5-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · lineascan.com
2026-01-24 06:52
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 06:52:24 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=8mvH47nE3wjfUzGrmzfzlniHAYVc9%2Fii%2BtKmv1UzoRdU3oH5mJ8Dwq0JAIRn59XltP22ZpEqosrK%2BxXU6Ub9C4%2FmpQblc2wsN7yfYca%2FfgtxFy2ABLUfwMc%3D"}]}
Last-Modified: Wed, 31 Dec 2025 16:40:00 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Server: cloudflare
X-Powered-By: ASP.NET
cf-cache-status: DYNAMIC
CF-RAY: 9c2d9b9eacb9d123-EWR
alt-svc: h3=":443"; ma=86400
Page title: IIS Windows Server
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>IIS Windows Server</title>
<style type="text/css">
<!--
body {
color:#000000;
background-color:#0072C6;
margin:0;
}
#container {
margin-left:auto;
margin-right:auto;
text-align:center;
}
a img {
border:none;
}
-->
</style>
</head>
<body>
<div id="container">
<a href="https://go.microsoft.com/fwlink/?linkid=66138&clcid=0x409"><img src="iisstart.png" alt="IIS" width="960" height="600" /></a>
</div>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · ss0591.com
2026-01-24 06:20
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 06:20:15 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rmDzoe7LBoMy33T5tQc7T3u1OiPnSJOHRowyI5AY6kbroAol%2Fjz8VBmw93yIaW4Ohs7YuO4XshfwyCb1SCYRkTYayTzmnDCObdhjKLZ13HwTYd5g7Sk%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2d6c85dbf318fd-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> ss0591.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2d6c85dbf318fd</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::20:e001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal"
Open service 2606:4700:3036::ac43:b041:8443 · ss0591.com
2026-01-24 06:20
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 06:20:15 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=HJ6wgR36jqQ8SLuFkspU5yJV3NhaauukFA0vwPl8LjD00rUNYrS5FxjZFQsEHNySFHvh1m6YadlPrZGsRFUqm3d5htTtz7SYmgENhvvKR8zsKjvrvzw%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2d6c85b83394cc-LHR
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> ss0591.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2d6c85b83394cc</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:1:d0::c59:9001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal
Open service 2606:4700:3036::ac43:b041:80 · ss0591.com
2026-01-24 06:20
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 06:20:15 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EnLVKSn16oi147y9H2x1QI4HaN9F4WwQ9D8pVdzRs4hZGjhCYYVmrUolq40LFrthDvQDaLImfPImt74rAa4psEASz%2Bapj%2F5GbKMROvzMcYp8D4Q7bJI%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2d6c853eb6141d-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> ss0591.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2d6c853eb6141d</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::12bc:e001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-revea
Open service 2606:4700:3036::ac43:b041:8443 · americanlegalteam.com
2026-01-24 00:54
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 00:54:34 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9c2b8f6f59006ade"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=%2B2nab%2F2xiTAjjMX3lEdWWgG0T%2FV2Ux41YbWl2hILcMx9POIxdCX6soiTVmXe17gaRF1t%2B6HMGGIDjk9YFQAl5hKDAVA34WfAgl6fBy3OlgtSUhv1PLdytwQXNIl8QA2uR6STTvrbycJ6PYZkcRyQm4iUPqg%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
speculation-rules: "/cdn-cgi/speculation"
Server: cloudflare
CF-RAY: 9c2b8f6f59006ade-FRA
alt-svc: h3=":8443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1023&min_rtt=690&rtt_var=497&sent=7&recv=7&lost=0&retrans=0&sent_bytes=4212&recv_bytes=1775&delivery_rate=7814492&cwnd=253&unsent_bytes=0&cid=1c553f3d0fbf3d8f&ts=29&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'americanlegalteam.com',cType: 'non-interactive',cRay: '9c2b8f6f59006ade',cH: 'e_.Ie7xfL68hcyWggLd.dDX9gJEkevBbdDKTlh9on4Y-1769216074-1.2.1.1-RSJX5vnO5bjftULb2fLFvrETUd6M9UimXfW8ATL6.TVxbVqgpYpeNsZJ1f2tnr_X',cUPMDTk:"\/?__cf_chl_tk=FZWFpMuHa6606EYljLE5kQ1Ox7YRUsjpsLmI5qJgs.Y-1769216074-1.0.1.1-USXh9cWfCWG__3bXXpqp.58NmbsenrjuILGmBMhPvaU",cFPWv: 'b',cITimeS: '1769216074',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=FZWFpMuHa6606EYljLE5kQ1Ox7YRUsjpsLmI5qJgs.Y-1769216074-1.0.1.1-USXh9cWfCWG__3bXXpqp.58NmbsenrjuILGmBMhPvaU",md: 'ub0.vYz3JXh_em4r9FSAlxmPN0G7w3WSxC0kHaTR890-1769216074-1.2.1.1-2a809zpkDmKQ8oa.dUsQs5cZxH.XIz5zvos2YWHEFJjb.0AmOTdWldTjY8mQmXTaj4DTJOf83h2ChL98E9KflV1l1Ir0A.nhMc9iRDWMxr4PzATNCQ2lN_dShSp1mpGy9JATfRsbElKpI4w1cUVCfKu1kJPN4oA9TWrBAly.GJoSUVJFfnF1tID9qlqCoFm6CQq2lEIOVlhSEsPLzk0oh_M6d9LfCbwbvtTk2_Io2_YVbHtjoSKTnGuLNZVMLtPgPfr3fVLzvsYmadzx2l3n_hzALZKUhv.gaMsGtz5455qKsLKt.u4fraNPh8RtJHaRKR.Jus6SrbGWfwIhy6dUhvMXyNIz5pYS9RlSvyKpBNe0g2STetYqeHF5PM1i8iUK_YoEwHJh.0_74e7B1WHzcjCl7Fb9gkPWldEPQyEQNFp9ZK78NY6NO4wMt3wTS7kYyNAn_rhpbfrydgN5ngOvh6H_QGeMyLGgMFeLjcCKnMh7PReRq0dYF4t8yGE6.rWoUAB3nK9_z1C8fc3.5LwA3YHGi.yfPflm1oF5CHQSVj5Is11EDblrm2rFSPb6AN9a5_3pD6MdKnU0glqnccd6WXb4y9rfVfdv.CQeFoybPfiszm5QhZn1QlK4BhNr3XfIscZcrSJ_t.w.K._uSgk5Cp4H_HTRYyfgd00WAPUk28TzEBG5vLq.sBkiLz5IFo4Zq2ek1n3oyPxOImR9hzWsY1RvCu2d_1vNqGYQNfxmMmTm6QRU6gJ8b7F.tR2FCKXYGKjrVs7Fnu9CHfMOmnmGs.VCiiXkBBk0p3EzCITn.Gw9jH2Raq5LyUeW7SLdKg6d5vHed3n1KxlVXwvwFMaBqkuKDz2by4X5POcQLY20qzJRuW5JnvbyjAgQ6EwsdQi.979_JzNR0C3iswm0cCfGFP.AJdREHH26Em14sU0TcwqCUz8E6cNvVM5rUi.ztWPif9EUNzQzTuJY00Kb17x546c8IiCHrze3VJJdsLf71iXiwYn7Mk9yDv6D1SEsUD0FboTXG9ksoHeIAg.shYdqWA',mdrd: '96ub3DGRTHb2hqUTqsBbY0Iog5is7YGxU4yYwHwn4ak-1769216074-1.2.1.1-anps8DgQ.As8Bs7UWj6u3gGb5vQtZJm_hjTPWAatQeacubgEQfL_GutBdCgdQAswDT7sRmKx.sN4PTxAGCr_.2RMljScWL3mSn0PHMcw.AWKthNPUnQfqQ23DfLYYQnansQnnIqRrCI9HinuejDLup80c.xFWYBwa_BfBEwuLkKtxv8aePeOK7vtNBULuxrqqxyG_PGEa4qw4OMUs0lBqc7khXwsMLomRKsrGvZiMhMrEVp5NPpcRO_lJGNJcAZUOi84QaUcRKf9hh1_lRFRp.64RdDcz6v78iAyswnUqJPjT6ddUaQPFpT3gGaDnzySL7Qxbi_RM6t7.9PjDsula7dMnzdl5g6
Open service 2606:4700:3036::ac43:b041:443 · americanlegalteam.com
2026-01-24 00:54
HTTP/1.1 403 Forbidden
Date: Sat, 24 Jan 2026 00:54:34 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9c2b8f6eed89dbaf"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=MzbGxeGtFZcF4afMEgrPJnRN77TcmPYso7HUG0VvgsA9RgVaY4KV9Tx%2FSfFQx7C%2BXmqaa1pFLm03UntZB4uIlmBIAtJSPe8X0C0Lvzd5pXIQ17rInVLFXbLH3U8zLn4ATxeJWMeszIu2LAgeNQNADI7dfeI%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
speculation-rules: "/cdn-cgi/speculation"
Server: cloudflare
CF-RAY: 9c2b8f6eed89dbaf-FRA
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1233&min_rtt=712&rtt_var=639&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4212&recv_bytes=1775&delivery_rate=7573033&cwnd=253&unsent_bytes=0&cid=37714cb754367251&ts=17&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'americanlegalteam.com',cType: 'non-interactive',cRay: '9c2b8f6eed89dbaf',cH: 'AVtA79VYjfG8C8ETS7_OVMkSgJtyYjTjjUcmsgFztDw-1769216074-1.2.1.1-88.k9Rhstxj59UQjOTngLH.doTsPXbIT8Ury1ygXZBZJ6sjTgajzOHsY0yf.y6k9',cUPMDTk:"\/?__cf_chl_tk=8yJLujkcFsMTh4CQgfV.eNEPK.7njqHHzZHsHW63gAQ-1769216074-1.0.1.1-m4s0Rw5O54CX8F1yqR.Pidg.acbI4K79FLYyVJcZrXo",cFPWv: 'b',cITimeS: '1769216074',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=8yJLujkcFsMTh4CQgfV.eNEPK.7njqHHzZHsHW63gAQ-1769216074-1.0.1.1-m4s0Rw5O54CX8F1yqR.Pidg.acbI4K79FLYyVJcZrXo",md: 'LA5uZwgF3QwxD5x5b90Pprul4m.T4n3tOP4dwd6cPF8-1769216074-1.2.1.1-p7c9t1c1m2xWZ8gP.HnAdL.rWVAM0JttikDBTOJWkb1CXFyQNwTgYgwQ2WQTKD6jIvbwPnuLSv2lYdmrKQxqv7b5ttpgbmRk5HGBD5QI2XZ2HxDvPrs0LCNqlkAvmL93CcWoWrhTEz2LJ3m4yJgVZRTuR4XiUCW9lfpWLNvtEQc6jbGwn.cZKHePjxsu2qa0I9iiGTwP3Yp9h7JPcHHnN64W8sUPW5xUHxHK8dHiBUJaYO1Uf1599Lr6L8_3VYZamAvytu1XFMmaftkXVllOrmhcI0w3o4qsHaa0.rjNgagcyc805wqb7CcCOk75PAc6uAszh1xp2RvxOIumXNPMkKm_yOr3RHKFB97ru0nsxJaIAlUg36LIsaUidA36pUUObtsGMix9Y0lN1lKY8tpVW8on.x7fCLrnGOvxTNH0wBBWQ8J8HUL5AzaxoJ8ZNbojFnbai6zBFCE0k_qkEnhaB0W4nskpIi9UxUnHZ038s8lkIlLGwC_gg5FqkLFqnqjzUIVipVuiTfaKmiTSNaIBT6RO8wyrtgJJyw_mA99G0DTN2F0GjO2sC8hNYBzpR7F57It.a4SMHqkNeIGdBP2aUY53BiahPLHSz_2FkjFbAelBhZlPQjtLD5TntfbWydBj_4Dxd.Zlj7at6etlPCtaD3AXCIu_cBxA1ayjkg.ks0H22XcFxCbsT6R8kTzVM00B8NfmXjd1nBNstdipnPJCgQo752PqSCEBdeiWH9h6dtA18MyMroViGkn8yNpKAY5QMcNRFndYoHGbfIwTG51Q_ocwW6PRCWGxBIMLi54DUg3a_X9LrwTQvXmi1upBR4Fkxh1fqQGMkNBXQjQC1zM3.jV.HFL54SgjChM8dvw1oNSpNdFTK3N0cy03dHBb0lUhS_UIt9BzmrHyJ1a0MU1kLg60jOoZpZ6L.g4jLBrCnYsEPVxLf9jUoSFP97f4tgLNIaJfjPuoJeo9XIfoMIow8__Q.8o0w7gQQjpOZLufQ6M0aD4ZC4fr6ORSp8xyhcp3U6xNmbPPqGlyfDqFH4dv2A',mdrd: 'ntqpFvsfWtHBBV5Nuk7M0n1Nccdduti3P4SUK0t1xGM-1769216074-1.2.1.1-wFYp.Y.u37F0VYpOOin4jpiR396ehkWH.B8qj0H5pZ_b80fiyP7eELUnFBAqvdZal.vd6dnOErhmXn1znsvOuyIwzhmIitR7Yl6fqNiiMf4rqau84bqW98zd.oOoLBCKveFUckN0FvAwww7EIFlkwPUEk88_dJ8oRLIDglo19c8ffSwaubEKu5tFLPFuTo3EOphddUL6TEfzSdIzfTflXLUMTnCUoA5aw9kjwx35DvDlc_wKc08IwWYtVERRCp0IN9HQ6X7cST8gqVB1iHxYISsC8NfOMb2h5cJaz.LrdBXKTbwTW6RxUoLHxf_5HWIKhuPNoHRAov8HmRBrVFBJa5Ez_w5XM6v
Open service 2606:4700:3036::ac43:b041:80 · americanlegalteam.com
2026-01-24 00:54
HTTP/1.1 301 Moved Permanently
Date: Sat, 24 Jan 2026 00:54:34 GMT
Content-Type: text/html
Content-Length: 167
Connection: close
Cache-Control: max-age=3600
Expires: Sat, 24 Jan 2026 01:54:34 GMT
Location: https://americanlegalteam.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=w41khKKG199UopSPtEKNEIiM1BaY89qxw3SevSQBLP7trylfg6QHZ3W8vVNizyK1KzyW3OU7kmHjcvXfrPR6QC6Nz4BE6f68ZuHWrhqfaFoSPqxjCVW7%2BbeRuQ4uDsknG0qNeUoRNVgNkvVWAs8ZwfQhLzg%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
speculation-rules: "/cdn-cgi/speculation"
Server: cloudflare
CF-RAY: 9c2b8f6e7998dc78-FRA
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1195&min_rtt=1195&rtt_var=597&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=176&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>cloudflare</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · www.pressdiary1.com
2026-01-23 23:48
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 23:48:11 GMT
Content-Length: 0
Connection: close
Location: https://pressdiary1.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2BpiIbRY1DGkIp5o9IHVTl7gJGZMggQGxb6KY2Tbby7x8%2FAHkhcoV4S1g5k79L%2FVQ6zib7nr7E2a%2F2THQ%2FTZlZMG4TruKi3h3kYvzvJ5sYIPrhev5pNE0cZntC%2FIaz5o%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2b2e349ba9dc8c-FRA
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · pressdiary1.com
2026-01-23 23:48
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 23:48:11 GMT
Content-Length: 0
Connection: close
Location: https://pressdiary1.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UGC4CthxMDezPBDoUm%2F%2BOjCjXeYSc8XC6f%2B%2BIuY4cp1Ey%2B6S5%2Bn2pW5uB%2B66ba6yROjQ6sSDzd568tbAjos9x0KlkJCU3%2FuXlUAbWxFkRnPC1FSLm%2FjY3UDH0g%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c2b2e345a775642-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · www.pressdiary1.com
2026-01-23 23:48
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 23:48:11 GMT
Content-Length: 0
Connection: close
Location: https://pressdiary1.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=6DOH3ObtBqvjGFn61QQF4fBHbASygeOWSH%2BojhPRnZHeAb%2BcJu0Ua6qOrmzRW11e42ZqtFjsLkOGbfqWIWivn3h0TtBInBFtyhjuAlvq9FoKxndT1dBCWpZbHh%2FC%2FeA%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c2b2e345a30b17b-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · mail.pressdiary1.com
2026-01-23 23:48
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 23:48:32 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2b2e3a7f87348f-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · www.pressdiary1.com
2026-01-23 23:48
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 23:48:11 GMT
Content-Length: 0
Connection: close
Location: https://pressdiary1.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JzyyDJShjtptCw%2FtWGGdVD60s%2B8JVyUhIpdBSoyGPqJZmRm1vc%2FpK35kxOYl19WpaPUWCdkbKT7eNxd%2BpK1C6ennFiyWrKbssl9YugRB%2BxMUUs6sl9SwvRtkG3MsMtY%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2b2e33fb9912c4-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · pressdiary1.com
2026-01-23 23:48
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 23:48:31 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19376,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2b2e39d8679187-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · pressdiary1.com
2026-01-23 23:48
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 23:48:14 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Set-Cookie: c9d376e419aa253eadd8cee2911283b1=ae5e5c5d8ab8c97c79c3f9b93c4729b7; path=/; secure; HttpOnly
x-logged-in: False
x-content-powered-by: K2 v2.10.0 (by JoomlaWorks)
vary: Accept-Encoding,User-Agent
expires: Wed, 17 Aug 2005 00:00:00 GMT
last-modified: Fri, 23 Jan 2026 23:48:14 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0,public
pragma: no-cache
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yIAQCCr4RNEXVH8%2F%2FlB%2Fj9Mph94EWXECw6GndTD1G4XOcHbypinjwecX2fDb876I7RFQdAvqiSOrGQQGXYZOO%2FJUqv0Qv17J0g111727B4qGp1ViQyCJeuE%3D"}]}
Server: cloudflare
alt-svc: h3=":443"; ma=86400
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=5,cfOrigin;dur=2074
CF-RAY: 9c2b2e39baf39630-EWR
Open service 2606:4700:3036::ac43:b041:443 · mail.pressdiary1.com
2026-01-23 23:48
HTTP/1.1 526 <none> Date: Fri, 23 Jan 2026 23:48:11 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2b2e33eaeb6561-AMS alt-svc: h3=":443"; ma=86400 error code: 526
Open service 2606:4700:3036::ac43:b041:80 · mail.pressdiary1.com
2026-01-23 23:48
HTTP/1.1 403 Forbidden
Date: Fri, 23 Jan 2026 23:48:11 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LFsLduhUs%2FS4B6jAELsIfHz2UZ9oG1v2Pz0YVZtOAPIRNu2UxJOmF55GtyXWLfXm4kQnlz38hbtuQRNIcC3Dc63TmBfWugibblsy1eD3DDkpTzHw38iKZyuIvGan9Ofr"}]}
Last-Modified: Thu, 07 Mar 2024 12:41:11 GMT
cf-cache-status: DYNAMIC
Vary: Accept-Encoding,User-Agent
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
X-turbo-charged-by: LiteSpeed
CF-RAY: 9c2b2e33dc85d212-FRA
alt-svc: h3=":443"; ma=86400
Page title: Error 403 Brak dostępu do strony
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error 403 Brak dostępu do strony</title>
</head>
<body>
<section class="section section--landing-hero content landing-hero-image">
<div class="container logo">
<span class="header__logo">
<p style="font-size: 11px; text-align: center;" id="text_5">Strona utrzymywana na serwerach</p>
<a href="https://cyberfolks.pl">
<svg enable-background="new 0 0 253 37.7" viewBox="0 0 253 37.7" xmlns="http://www.w3.org/2000/svg">
<path d="m251.3.2-1 2.7-.6 1.9h-.1l-.6-1.9-1.1-2.7h-1.7v7.3h1.3v-3.2l-.2-2.5h.1l1.7 4.4h1l1.7-4.4h.1l-.2 2.5v3.2h1.3v-7.3zm-12 1.3h2.2v6h1.4v-6h2.2v-1.3h-5.9zm-130.3 8.2c-1.3-.7-2.7-1.1-4.2-1.1-2.7 0-5.4 1.3-7.4 3.7l-.2-3.3h-3.5v20.1h3.7v-12.8c1.7-2.7 3.6-4.4 6.4-4.4 1.4 0 2.8.4 4.1 1zm-98 16.9c-4.1 0-7.3-2.9-7.3-7.4s3.2-7.5 7.3-7.5c2 0 4 .8 5.5 2.2l1.8-2.3c-2.1-1.9-4.7-2.9-7.5-2.9-5.5-.1-10.8 3.9-10.8 10.5s5.3 10.4 10.8 10.5c3 0 5.8-1.1 8-3.1l-1.7-2.4c-1.5 1.3-3.6 2.4-6.1 2.4m45.4-17.9c-2.5 0-4.7 1-6.7 2.9l.1-5v-5.8h-3.7v28.4h3.1l.2-2.2c1.6 1.7 3.8 2.7 6.2 2.7 4.7.1 9-3.9 9-10.8.1-6.2-3.3-10.2-8.2-10.2m-1.3 17.8c-1.5 0-3.4-.5-5.2-2.2v-9.7c2.1-2.3 4.1-2.9 5.7-2.9 3.2 0 5.4 2.6 5.4 7.2-.1 4.8-2.6 7.7-5.9 7.6m-22.7-1.6-6.9-15.8h-4l9.2 19.9-.6 1.7c-1 2.3-2.6 4-5.3 4-.6 0-1.2-.1-1.8-.3l-.8 2.9c.9.3 1.8.4 2.8.4 4.6 0 7-3 8.6-7l8.7-21.6h-3.8zm46.6-16.2c-5.3 0-10 3.9-10 10.5s4.6 10.5 10.8 10.5c2.8 0 5.6-.8 7.9-2.4l-1.4-2.4c-1.8 1.2-3.6 1.9-6 1.9-4.1 0-7.1-2.1-7.6-6.5h15.5c.2-.7.3-1.4.2-2.2.1-5.7-4.1-9.4-9.4-9.4m-6.2 8.7c.6-3.6 3-5.9 6.2-5.9 3.1 0 5.6 2 6 5.9zm136.2.8 7.2-6.8c1.7-1.6-.7-4-2.4-2.3l-10.1 9.6v-16.8c0-1-.8-1.9-1.9-1.9-1 0-1.9.8-1.9 1.9v26c0 1 .8 1.9 1.9 1.9 1 0 1.9-.8 1.9-1.9v-4.6l2.9-2.7 7.9 8.4c1.7 1.8 4.3-.5 2.5-2.3zm-15.4 7.6c-.9 0-1.6.7-3.2.7-2.3 0-3.5-1.5-3.5-4v-20.3c0-.8-.6-1.4-1.4-1.4h-6.4c-.9 0-1.6.7-1.6 1.6 0 .9.7 1.6 1.6 1.6h4.1v18.3c0 4.6 2.4 7.4 6.9 7.4 2.5 0 5.2-.8 5.2-2.4-.2-.8-.9-1.5-1.7-1.5m-39.2-25h-14.5c-.9 0-1.6.7-1.6 1.6v25.4c0 1 .9 1.9 1.9 1.9s1.9-.8 1.9-1.9v-11.6h9.1c.9 0 1.6-.7 1.6-1.6s-.7-1.6-1.6-1.6h-9.1v-9h12.3c.9 0 1.6-.7 1.6-1.6s-.7-1.6-1.6-1.6zm-24.5 31.2h-23.7v3.1h23.7c.9 0 1.6-.7 1.6-1.6 0-.8-.7-1.5-1.6-1.5.1 0 .1 0 0 0m36.8-23.3c-6.4 0-10.4 4.9-10.3 10.5-.1 5.7 3.9 10.5 10.3 10.5 6.3 0 10.1-4.9 10.2-10.5.2-5.6-3.9-10.5-10.2-10.5m0 17.7c-4 0-6.5-3.2-6.5-7.3 0-4 2.5-7.2 6.5-7.2 3.9 0 6.4 3.3 6.4 7.2 0 4.1-2.5 7.3-6.4 7.3m63.9-8.9c-3.6-.8-5.3-1.7-5.3-3.3 0-3.2 6-3 9.4-1 1.9 1.1 3.4-1.3 1.4-2.6-1.7-1.1-4.3-1.9-7.1-1.9-5.2 0-7.3 2.9-7.3 5.6 0 1.9 1.1 4.6 5.1 5.8 3.8 1 7.6 1.3 7.6 3.8 0 1.7-1.8 2.9-4.7 2.9-2.3 0-4.6-.9-6.4-2.3-1.7-1.3-3.9.4-2.1 2.3 1.2 1.4 5 3.1 8.6 3.1 4.4 0 8.1-2.3 8.2-6.2.1-4.3-3.7-5.4-7.4-6.2"
fill="#3d403b"
/>
</svg>
</a>
</span>
</div>
<div class="container">
<div class="column__content--left">
<span style="font-size: 35px; font-weight: 600;" id="text_6">Błąd 403</span>
<h1 class="landing-hero__title" id="text_1">
Stop!
</h1>
<p class="landing-hero__description" id="text_2">
Wszystko wskazuje na to, że nie posiadasz odpowiednich uprawnień by przejść dalej. <br><br>
Jeżeli uważasz, że powinieneś mieć dostęp do witryny – skontaktuj się z jej administratorem!
</p>
<div class="landing-hero__btn">
<a href="https://cyberfolks.pl/pomoc/blad-403/" target="blank" class="btn--yellow" id="text_3">Więcej informacji</a>
</div>
</div>
<div class="column__content--right">
</div>
</div>
</section>
<section class="section section--landing-hero footer">
<span class="container" id="text_4">Więcej informacji o błędzie 403 znajdziesz w artykule <a href="https://cyberfolks.pl/pomoc/blad-403/" target="blank">Błędy 403 skąd sie biorą?</a><br> Zajrzyj do naszej pomocy, gdzie znajdziesz wiele przydatnych artykułów: <a
Open service 2606:4700:3036::ac43:b041:80 · chatwithdata.ai
2026-01-23 18:58
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 18:58:28 GMT
Content-Length: 0
Connection: close
Location: https://aichat.fm/blog/chatwithdata-s-powerful-document-analysis-now-available-in-ai-chat
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DqVMnbZu1g1QRNsgcK1I7Oa%2Ft0j0DyZLBoevMEIgNhneeNces%2BFCik74forxHkVPwO82nC4HHLtmGC7ef99Ny29H0gB%2FPv2AQI1drgK6eqZ%2BxgbDB2xGqUTLCw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2985ce1d020f61-EWR
Open service 2606:4700:3036::ac43:b041:443 · chatwithdata.ai
2026-01-23 18:58
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 18:58:28 GMT
Content-Length: 0
Connection: close
Location: https://aichat.fm/blog/chatwithdata-s-powerful-document-analysis-now-available-in-ai-chat
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aemQcJynS08nLHBWox64HbtmjtHHUIhZD7vRkj2SGvqCQlojpuBbTFhlXcGAqypQiZ8mmcJF1K5%2BPZLAXZ%2B%2FZR5W4S3j8RodjohyLQPei6SCe2blAvOlPjHo9Q%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2985cdebd1c51a-SIN
Open service 2606:4700:3036::ac43:b041:8443 · chatwithdata.ai
2026-01-23 18:58
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 18:58:28 GMT
Content-Length: 0
Connection: close
Location: https://aichat.fm/blog/chatwithdata-s-powerful-document-analysis-now-available-in-ai-chat
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=iJxI35E0hFmdFlBzQHzEmiWhSccs4ZxQeSbsm8terqE1TPhx1qy%2BOIhvKZe8kiTRsQo%2FRtXMzMuJbfauzPcX1QtrLzHUVLkKYiLn5Fc5jd1Jcpdln87Xk%2Fqpyw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2985cdbacff4a5-LHR
Open service 2606:4700:3036::ac43:b041:8443 · 1001t.me
2026-01-23 18:26
HTTP/1.1 521 <none> Date: Fri, 23 Jan 2026 18:26:05 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c29565c5c12dc0d-SJC alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · 1001t.me
2026-01-23 18:26
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 18:26:06 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Cache-Control: private,max-age=30
Location: https://www.1001traiteurs.com/
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=gznPNZ%2BxQ%2BGcPLR0sOyy2Tha7bv6cGrVGdCGwahJswzPHmJWFOVc4tbk2rqk3xTbMubC9pH3vhogDlD8RkVDxXjxhX1gUJgwCKYtBf0M57OLTr9U"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c295660ca6efd8b-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · 1001t.me
2026-01-23 18:26
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 18:26:05 GMT
Content-Type: text/html; charset=iso-8859-1
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Location: https://1001t.me/
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WCISWWwAmsY5oc2kWbqZxY2JJpBcTwu9FCjAi5%2Fy9SqQArYE0NmQJg%2BkIYHWpMiGaK%2FgH4AfiK9lmuAT5Qx2YvXv%2BPrjaq4467Uw6bOepHIlkz%2B5"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c29565e08230e6e-BOM
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://1001t.me/">here</a>.</p>
<hr>
<address>Apache/2.4.61 (Debian) Server at 1001t.me Port 80</address>
</body></html>
Open service 2606:4700:3036::ac43:b041:443 · livescores4u.com
2026-01-23 17:03
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 17:03:37 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DvR13d0MGN7uQsHZL%2F4IhQ4Xr%2Fu%2FggITRwO9ZsI%2FMTVwVvNTBhj%2BNhKRYlKpObpbSSLcA6WrsBXOTxLeLGs6zA2r3dszTdy0G%2FCg62OxXqQVt59ZyjCQ76DTU9g%3D"}]}
Last-Modified: Mon, 20 Oct 2025 13:16:46 GMT
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=8,cfOrigin;dur=175
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
platform: hostinger
panel: hpanel
Content-Security-Policy: upgrade-insecure-requests
Cache-Control: max-age=0, no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: Mon, 29 Oct 1923 20:30:00 GMT
X-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9c28dd94587eab8e-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · livescores4u.com
2026-01-23 17:03
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 17:03:37 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=W0f0LD%2FUXaL5qtYIcZhikWi1KATO8SaqZv0Ji7VqMGmKXmsF9LoGa5GE%2BAUAJYMu%2F9Y8RTu%2FQtbim9KjOIeF9Gz2CFA8hvoyWUZTJtLHXP91UeCbuQBZcCcBGjQ%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Location: https://livescores4u.com/
platform: hostinger
panel: hpanel
Content-Security-Policy: upgrade-insecure-requests
X-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=12,cfOrigin;dur=190
CF-RAY: 9c28dd941996713b-YYZ
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<!DOCTYPE html>
<html style="height:100%">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title> 301 Moved Permanently
</title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
<body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
<div style="height:auto; min-height:100%; "> <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
<h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">301</h1>
<h2 style="margin-top:20px;font-size: 30px;">Moved Permanently
</h2>
<p>The document has been permanently moved.</p>
</div></div><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"72b1e85030a149f5a2d311410107abb2","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body></html>
Open service 2606:4700:3036::ac43:b041:8443 · livescores4u.com
2026-01-23 17:03
Open service 2606:4700:3036::ac43:b041:80 · happydragonchinese.com.au
2026-01-23 16:40
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 16:40:24 GMT
Content-Length: 0
Connection: close
Location: https://happydragonchinese.com.au/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=N2Nc%2FUxYcZjwl%2BzsvpSZ2ETy5bFG37T03WL%2FG9Lha9%2Btazek1IOIdxF5vTGLFhsnYQcbzyGw3eo9nrOXwDdYDUKNHZ%2BQxjVAThUlTHebCD9robur43LupW75%2FslMS4JKclaMJhI%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c28bb8e9dacf3e6-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · happydragonchinese.com.au
2026-01-23 16:40
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 16:40:26 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
x-powered-by: PHP/7.4.33
x-redirect-by: WordPress
location: https://www.happydragonchinese.com.au/
Server: cloudflare
alt-svc: h3=":443"; ma=86400
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Hx%2Biam9Jj%2FnKX1%2F8XrgZW2iHL80rpeuDwPeYEzbfzs66DiqGeIagwnS%2BDCKE%2FkfHtF3BzUhI%2FI9cpNu16AFsa8LpzPOlk8%2BsohAtiXoHeSQ8OYIC3PsLYxqbWowc%2FbiIhgETBcs%3D"}]}
CF-RAY: 9c28bb929f771afe-AMS
Open service 2606:4700:3036::ac43:b041:8443 · happydragonchinese.com.au
2026-01-23 16:40
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 16:40:44 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19381,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c28bb9269180cfb-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · www.huat138-market.autos
2026-01-23 15:21
HTTP/1.1 302 Found
Date: Fri, 23 Jan 2026 15:21:25 GMT
Content-Type: text/html; charset=iso-8859-1
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Location: http://www.huat138-market.autos/cgi-sys/suspendedpage.cgi
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Me2p8UPIBpUHmLwJPchMsoMZagSOcM%2FD8vwpNIRckxtYEd3U39xH9Y1cfxOSUZhEh%2BB9vlEuSx1in9VWMvu8Hxw4gv6xuT7ClY9wY%2F6kc4qxSCQqMSIGwQNp8k%2BT2z8VagDlWA%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c2847dda9e6a0f2-SJC
alt-svc: h3=":443"; ma=86400
Page title: 302 Found
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>302 Found</title>
</head><body>
<h1>Found</h1>
<p>The document has moved <a href="https://www.huat138-market.autos/cgi-sys/suspendedpage.cgi">here</a>.</p>
</body></html>
Open service 2606:4700:3036::ac43:b041:8443 · www.huat138-market.autos
2026-01-23 15:21
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 15:21:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2847e269c14394-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · www.huat138-market.autos
2026-01-23 15:21
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 15:21:25 GMT
Content-Length: 0
Connection: close
Location: https://www.huat138-market.autos/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KStNm2U6T94FV6kKFqbXMlbqUWn2pNAVHJxmC0MengSIs4%2FOw3JNvbCCrIbwX4drViFfxSDxY3pJqwk4suOQd34hMjwxE4zyACYG7fKZ4pUpkEU5WffvrH%2B2VruXhajnXDAuXg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2847dc0930cd4a-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · plinio-kingdom-wars.online
2026-01-23 11:36
HTTP/1.1 521 <none> Date: Fri, 23 Jan 2026 11:36:16 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=114,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c26fe0dbce3426d-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · plinio-kingdom-wars.online
2026-01-23 11:36
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 11:36:16 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Wed, 18 Jun 2025 14:29:15 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=R1cAgjHC2NnkRMWIvFgup8ZWaOjyhNRjaqLI9CQCUVcP4M6vKoFBfZtkXkGg%2BpzCxtqZaR8XX7nl4hSDtKXUwlOYFDDx8ezXguYl63oFmue4CzTlNANkCcSX%2FGkbWPz76v7tvK2M"}]}
Accept-Ranges: bytes
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=7,cfOrigin;dur=235
CF-RAY: 9c26fe0e8d91df5a-YYZ
alt-svc: h3=":443"; ma=86400
Page title: FASTPANEL
<!DOCTYPE html>
<html lang="en">
<head>
<title>FASTPANEL</title>
<meta charset="UTF-8">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex,nofollow">
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:regular,500&display=swap');::after,::before,a,label{display:inline-block}.main,.wrapper{flex-direction:column}.window-main,.window-main__item{position:relative}*{padding:0;margin:0;border:0}*,::after,::before{box-sizing:border-box}body,html{height:100%;min-width:320px}body{color:#fff;line-height:1;font-family:Roboto;font-size:.875rem;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#000}button,input,textarea{font-family:Roboto;font-size:inherit;line-height:inherit;color:inherit;background-color:rgba(0,0,0,0)}input,textarea{width:100%}button,option,select{cursor:pointer}a{color:inherit;text-decoration:none}ul li{list-style:none}img{vertical-align:top}h1,h2,h3,h4,h5,h6{font-weight:inherit;font-size:inherit}.lock body{overflow:hidden;touch-action:none;-ms-scroll-chaining:none;overscroll-behavior:none}.wrapper{min-height:100%;display:flex;overflow:hidden}@supports (overflow:clip){.wrapper{overflow:clip}}.wrapper>main{flex:1 1 auto}.wrapper>*{min-width:0}.main{display:flex;align-items:center;justify-content:center;min-height:100vh;min-width:100vw;padding:1rem}.window-main{background-color:#13151a;border-radius:.75rem;max-width:45.625rem}.window-main .svg-one{position:absolute;top:-240px;right:-360px;z-index:-1}.window-main .svg-two{position:absolute;bottom:-258px;left:-223px;z-index:-1}.window-main__title{text-align:center;padding-bottom:1.875rem;position:relative;font-weight:500;line-height:1.2777777778}.window-main__title::before{content:"";position:absolute;bottom:0;left:50%;height:2px;width:8rem;background-color:#15b4fc;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.window-main__body{line-height:1.5294117647}.window-main__list{display:flex;flex-direction:column;gap:1.5rem}.window-main__item::before{content:"";position:absolute;left:0;top:10px;width:4px;height:4px;border-radius:50%;background-color:#fff}.window-main__actions{display:flex;justify-content:center}.window-main__actions a{min-height:34px;border:2px solid #2b313d;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;border-radius:1.0625rem;font-weight:500;padding:.375rem .8125rem}@media (min-width:45.625em){.window-main__actions,.window-main__body{margin-top:1.875rem}.window-main{padding:3.75rem 8.9375rem}.window-main__title{font-size:2.25rem}.window-main__body{font-size:1.0625rem}.window-main__info{margin-bottom:1.875rem}.window-main__list{padding-left:.6875rem}.window-main__item{padding-left:.875rem}}@media (max-width:20em){.window-main{padding:1.5rem}.window-main__title{font-size:1.5rem}.window-main__body{margin-top:1.5rem;font-size:.875rem}.window-main__info{margin-bottom:1.5rem}.window-main__list{padding-left:.5625rem}.window-main__item{padding-left:.75rem}.window-main__actions{margin-top:1.5rem}}@media (max-width:29.99875em){.window-main .svg-one{top:-330px}.window-main .svg-two{bottom:-423px;left:-343px}}@media (min-width:20em)and (max-width:45.625em){@supports (padding-left:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-left:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)}}@supports not (padding-left:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-left:calc(1.5rem + 7.4375*(100vw - 20rem)/ 25.625)}}@supports (padding-right:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-right:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)}}@supports not (padding-right:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-right:calc(1.5rem + 7.4375*(100vw - 20rem)/ 25.625)}}@supports (padding-top:clamp(1.5
Open service 2606:4700:3036::ac43:b041:80 · plinio-kingdom-wars.online
2026-01-23 11:36
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 11:36:16 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Wed, 18 Jun 2025 14:29:15 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=t%2BjWxyYpVIvX5a66BD7GsLhpNiAlOwm%2F2f1tbp9j4jGI06CoAZqBQNgOFhsFRGAdigKsSg%2Fdb0e5mqyo3pl1sw8QnaWg3XhUGqOz2p2L%2FAk2rgjXmdl74lctxkcbVpys%2BKTPWNoc"}]}
Accept-Ranges: bytes
cf-cache-status: DYNAMIC
CF-RAY: 9c26fe0cdfc4d40e-FRA
alt-svc: h3=":443"; ma=86400
Page title: FASTPANEL
<!DOCTYPE html>
<html lang="en">
<head>
<title>FASTPANEL</title>
<meta charset="UTF-8">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex,nofollow">
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:regular,500&display=swap');::after,::before,a,label{display:inline-block}.main,.wrapper{flex-direction:column}.window-main,.window-main__item{position:relative}*{padding:0;margin:0;border:0}*,::after,::before{box-sizing:border-box}body,html{height:100%;min-width:320px}body{color:#fff;line-height:1;font-family:Roboto;font-size:.875rem;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#000}button,input,textarea{font-family:Roboto;font-size:inherit;line-height:inherit;color:inherit;background-color:rgba(0,0,0,0)}input,textarea{width:100%}button,option,select{cursor:pointer}a{color:inherit;text-decoration:none}ul li{list-style:none}img{vertical-align:top}h1,h2,h3,h4,h5,h6{font-weight:inherit;font-size:inherit}.lock body{overflow:hidden;touch-action:none;-ms-scroll-chaining:none;overscroll-behavior:none}.wrapper{min-height:100%;display:flex;overflow:hidden}@supports (overflow:clip){.wrapper{overflow:clip}}.wrapper>main{flex:1 1 auto}.wrapper>*{min-width:0}.main{display:flex;align-items:center;justify-content:center;min-height:100vh;min-width:100vw;padding:1rem}.window-main{background-color:#13151a;border-radius:.75rem;max-width:45.625rem}.window-main .svg-one{position:absolute;top:-240px;right:-360px;z-index:-1}.window-main .svg-two{position:absolute;bottom:-258px;left:-223px;z-index:-1}.window-main__title{text-align:center;padding-bottom:1.875rem;position:relative;font-weight:500;line-height:1.2777777778}.window-main__title::before{content:"";position:absolute;bottom:0;left:50%;height:2px;width:8rem;background-color:#15b4fc;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.window-main__body{line-height:1.5294117647}.window-main__list{display:flex;flex-direction:column;gap:1.5rem}.window-main__item::before{content:"";position:absolute;left:0;top:10px;width:4px;height:4px;border-radius:50%;background-color:#fff}.window-main__actions{display:flex;justify-content:center}.window-main__actions a{min-height:34px;border:2px solid #2b313d;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;border-radius:1.0625rem;font-weight:500;padding:.375rem .8125rem}@media (min-width:45.625em){.window-main__actions,.window-main__body{margin-top:1.875rem}.window-main{padding:3.75rem 8.9375rem}.window-main__title{font-size:2.25rem}.window-main__body{font-size:1.0625rem}.window-main__info{margin-bottom:1.875rem}.window-main__list{padding-left:.6875rem}.window-main__item{padding-left:.875rem}}@media (max-width:20em){.window-main{padding:1.5rem}.window-main__title{font-size:1.5rem}.window-main__body{margin-top:1.5rem;font-size:.875rem}.window-main__info{margin-bottom:1.5rem}.window-main__list{padding-left:.5625rem}.window-main__item{padding-left:.75rem}.window-main__actions{margin-top:1.5rem}}@media (max-width:29.99875em){.window-main .svg-one{top:-330px}.window-main .svg-two{bottom:-423px;left:-343px}}@media (min-width:20em)and (max-width:45.625em){@supports (padding-left:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-left:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)}}@supports not (padding-left:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-left:calc(1.5rem + 7.4375*(100vw - 20rem)/ 25.625)}}@supports (padding-right:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-right:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)}}@supports not (padding-right:clamp(1.5rem ,-4.3048780488rem + 29.0243902439vw ,8.9375rem)){.window-main{padding-right:calc(1.5rem + 7.4375*(100vw - 20rem)/ 25.625)}}@supports (padding-top:clamp(1.5
Open service 2606:4700:3036::ac43:b041:443 · home.aiqming.xyz
2026-01-23 11:01
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 11:02:00 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=0, must-revalidate
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=7,cfOrigin;dur=36
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LcXX4usu%2FAjAJBTjS9X%2BajL%2BpZkXzsSouvayxDSnASGT467r6LCxT5DXb4N94mjRlG2sik6emHVReaoMVSiZGfBE%2B79VZ3ghju6qumREXl%2FMkvxvybCHfB4uSkc%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Speculation-Rules: "/cdn-cgi/speculation"
cf-cache-status: DYNAMIC
CF-RAY: 9c26cbdb3c59e860-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · home.aiqming.xyz
2026-01-23 11:01
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 11:02:00 GMT
Content-Length: 0
Connection: close
Location: https://home.aiqming.xyz/
Speculation-Rules: "/cdn-cgi/speculation"
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Edh8Z5HgsPYv77haouOfvPAtOiWURTFQtcJqDAsV8kJ7KVqkwTpaUBPPPwjE01nXOr%2FihYR6rXDcBkEX95yoq%2F1LvDqIJw17xXf69kUA3DqtlZtUgdo5g%2B2oy5M%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=14,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c26cbda7fab46f0-BOM
Open service 2606:4700:3036::ac43:b041:8443 · home.aiqming.xyz
2026-01-23 11:01
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 11:02:00 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=0, must-revalidate
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=6,cfOrigin;dur=36
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=z7Ws0srUT7xaZTiswNUzPxGvZaDv%2Bt4tyIHQx7MAdKWOLk2IFV7l7KVZF3T6ErfdBvPhqOtJG09PhqqIIdfubpHqiSoaAlBoqgVhSjmjevvajY%2BQFrfquN77%2F2k%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Speculation-Rules: "/cdn-cgi/speculation"
cf-cache-status: DYNAMIC
CF-RAY: 9c26cbd9ff6db213-EWR
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · forum.solargames.ca
2026-01-23 10:50
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 10:50:32 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://forum.solargames.ca/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Vtw%2BkVkLcMX6%2FRFfHxR%2BUExbNUwuNSXo%2ByKN5aPK4kXkR0NqCX425pvx4WYsJbtF55ga%2Fo9A%2FCT%2FsubeDTZ%2BMH5S7SqvAwehODI9nLegx%2FAsoCVo50pUT2js10%2Fuww8%3D"}]}
CF-RAY: 9c26bb12fb8f361b-FRA
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · forum.solargames.ca
2026-01-23 10:50
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 10:50:52 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c26bb1799dcae18-YYZ alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · forum.solargames.ca
2026-01-23 10:50
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 10:50:33 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Set-Cookie: phpbb3_ajyav_u=1; expires=Sat, 23-Jan-2027 10:50:33 GMT; path=/; domain=solargames.ca; secure; HttpOnly
Set-Cookie: phpbb3_ajyav_k=; expires=Sat, 23-Jan-2027 10:50:33 GMT; path=/; domain=solargames.ca; secure; HttpOnly
Set-Cookie: phpbb3_ajyav_sid=6eeb26e98a8599ff2341ab91d2b2e0b9; expires=Sat, 23-Jan-2027 10:50:33 GMT; path=/; domain=solargames.ca; secure; HttpOnly
Cache-Control: private, no-cache="set-cookie"
Expires: Fri, 23 Jan 2026 10:50:33 GMT
Referrer-Policy: strict-origin-when-cross-origin
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dC6I4jMyIy7hvmMgu6M9Ra3P0Zb86hY%2F%2F%2B7DsLIM4hoa6aLkxCPqRG6FYX4ucyy4svugVkAO7nbjr0CqyBK0I%2F6TGxuHxyFwccDLBP6UdHxuqI6pFb1amk7BcYQvg8g%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c26bb136f715fe3-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · rankhunt.ing
2026-01-23 09:49
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 09:50:14 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19602,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2662435ba71a1f-SJC alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · rankhunt.ing
2026-01-23 09:49
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 09:49:54 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sOPM0y5U9o9BczBkCXy5Fcv2vkJJloZyjmPaEAQLXNYQqeoO%2BeNClRmsPb%2B%2FbX52gZU6atmlPj7ARAPU4eQI6prA5pF2kAzkWrA2EaaHMtgf0rKTQXO5rA%3D%3D"}]}
Server: cloudflare
CF-RAY: 9c26623def70dc8c-FRA
alt-svc: h3=":443"; ma=86400
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta name="google-site-verification" content="3CbaVvw-I7MlrmmmHz0bfbko7oMCW1mn2u65uWsWWB8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="format-detection" content="telephone=no">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<title></title>
<link rel="stylesheet" media="screen" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" />
<link rel="stylesheet" href="/assets/css/app.css" />
</head>
<body>
<header>
<a href="https://www.hover.com/?source=parked" rel="nofollow">
<img src="/images/logo.png" alt="Hover" width="102" height="30" >
</a>
</header>
<main>
<h1>rankhunt.ing</h1>
<h2>is a totally awesome idea still being worked on.</h2>
<p class="big">Check back later.</p>
<form action="https://www.hover.com/domains/results" method="GET">
<input type="hidden" name="source" value="parked">
<input
name="q"
placeholder="Find a domain for your own great idea."
type="text"
>
<button>
<svg
height="30"
viewBox="15 0 80 80"
width="30"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="50" cy="40" r="20" style="fill:none; stroke-width:10"></circle>
<line style="stroke-width:10; stroke-linecap: round" x1="68" x2="78" y1="58" y2="68"></line>
</svg>
</button>
</form>
<nav>
<ul>
<li><a href="https://www.hover.com/?source=parked" rel="nofollow">Home</a></li>
<li><a href="https://www.hover.com/transfer_in?source=parked" rel="nofollow">Transfer</a></li>
<li><a href="https://www.hover.com/renew?source=parked" rel="nofollow">Renew</a></li>
<li><a href="https://www.hover.com/domain_pricing?source=parked" rel="nofollow">Domain Pricing</a></li>
<li><a href="https://www.hover.com/email?source=parked" rel="nofollow">Email</a></li>
<li><a href="https://www.hover.com/about?source=parked" rel="nofollow">About Us</a></li>
<li><a href="https://help.hover.com/home?source=parked" rel="nofollow">Help</a></li>
<li><a href="https://www.hover.com/tools?source=parked" rel="nofollow">Your Account</a></li>
</ul>
</nav>
<nav class="social">
<ul>
<li>
<a href="https://www.facebook.com/hover" rel="nofollow">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx=50 cy=50 r=50></circle>
<g transform="scale(0.25 0.25) translate(30 50)">
<path d="M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z"></path>
</g>
</svg>
</a>
</li>
<li>
<a href="https://www.instagram.com/hover_domains" rel="nofollow">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx=50 cy=50 r=50></circle>
<g transform="translate(22 73) scale(0.037 -0.037)">
<path d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270 q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5 t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -
Open service 2606:4700:3036::ac43:b041:443 · rankhunt.ing
2026-01-23 09:49
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 09:50:14 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19470,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c266241fa335476-SJC alt-svc: h3=":443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · stararc.uk
2026-01-23 09:33
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 09:34:17 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c264ae68f701d99-SJC alt-svc: h3=":443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · stararc.uk
2026-01-23 09:33
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 09:34:17 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c264ae6995eb257-LHR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · christopherboelz.com
2026-01-23 09:18
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 09:18:46 GMT
Content-Type: text/html;charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oQNa%2B7AU7bB7I6UJWED4uuLa%2Bty4VXDOKqPNpeebVOh3lEWA%2BOcDA3w2oLc1kBXLeGj5s7c5SEfNKkg1oh%2FrqH7MAXzv60ERCTYznn8yCmabaRN4IgFph4tKTkhxis5t"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Set-Cookie: __cf_bm=MlTmxIOhhtWP_9quKjj4wu3FpDydQEmexE8mqGBXorA-1769159926-1.0.1.1-udVn9uCBau4MyEnejEO6XFSJwcvHOZQGR715ivm9MV4HpT1UnRZieESSj6BCSHHklHVe.G8ZdYy.vzL8EvdB7wZ2iqg0OEVUWbt6tQ7Z64gdpHM0DK.kGVMTgRPFcNON; path=/; expires=Fri, 23-Jan-26 09:48:46 GMT; domain=.christopherboelz.com; HttpOnly
Vary: Accept-Encoding
Server: cloudflare
CF-RAY: 9c2634a5aefc7da6-FRA
Page title: Cloudflare
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cloudflare</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<header>
<h1><span id="domain-name"></span></h1>
<h2>
The owner of this domain hasn't put up a website yet. Try visiting
again soon. This domain is registered using
<a
href="https://www.cloudflare.com/products/registrar/"
target="_blank"
>Cloudflare Registrar.
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.99575 1.53249L10.0042 2.53249L12.783 2.50999L8.6465 6.64649L9.3535 7.35349L13.49 3.21699L13.4675 5.99574L14.4675 6.00424L14.5042 1.49574L9.99575 1.53249Z"
fill="currentColor"
/>
<path
d="M12 12H4V3.99999H8.5V2.99999H3.5L3 3.49999V12.5L3.5 13H12.5L13 12.5V7.49999H12V12Z"
fill="currentColor"
/>
</svg>
</a>
</h2>
</header>
<h3>Are you the domain owner?</h3>
<section>
<p>
Log in to the Cloudflare Dashboard to
<a
href="https://developers.cloudflare.com/dns/manage-dns-records/how-to/create-root-domain/"
target="_blank"
>create a root domain record.
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.99575 1.53249L10.0042 2.53249L12.783 2.50999L8.6465 6.64649L9.3535 7.35349L13.49 3.21699L13.4675 5.99574L14.4675 6.00424L14.5042 1.49574L9.99575 1.53249Z"
fill="currentColor"
/>
<path
d="M12 12H4V3.99999H8.5V2.99999H3.5L3 3.49999V12.5L3.5 13H12.5L13 12.5V7.49999H12V12Z"
fill="currentColor"
/>
</svg>
</a>
</p>
</section>
<h3>What is Cloudflare?</h3>
<section>
<p>
Cloudflare is a global cloud provider designed to make everything you
connect to the Internet secure, private, fast, and reliable. Our
mission is to help build a better Internet.
</p>
</section>
<section class="promotional-cards">
<a href="https://1.1.1.1/" target="_blank">
<section>
<h2>
Download 1.1.1.1 — the free app that makes your Internet safer.
</h2>
<p>
Protect your traffic and speed up your connection on all your
devices.
</p>
</section>
</a>
<a
href="https://www.cloudflare.com/products/registrar/"
target="_blank"
>
<section>
<h2>
Register your own domain name for the lowest cost, every time.
</h2>
<p>
Cloudflare Registrar charges wholesale prices, without sneaky
markups.
</p>
</section>
</a>
</section>
<div class="animation_wrapper">
<div class="animation animation_center"></div>
<div class="animation animation_left"></div>
<div class="animation animation_right"></div>
</div>
</main>
<footer>
<div class="footer-border">
<div class="footer-left">
<svg
width="80"
height="2"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<mask
id="b"
style="mask-type: alpha"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="80"
height="2"
>
<path fill="
Open service 2606:4700:3036::ac43:b041:8443 · christopherboelz.com
2026-01-23 09:18
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 09:18:46 GMT
Content-Type: text/html;charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=RSlkMfC5S18wv%2FJxoN7aahpYGlAIECVuMPbTyC5SE5SB3vNOEmFH%2FBKyX2zqD2r2WRB1rDunBsMIj%2FWQIn67FaeFcGL8SQFbqYsIr1WML3nG5lswK6RL7Jg2jVFQPJU%2B"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Set-Cookie: __cf_bm=Uurm9LUKrPBELuxHdzCCDecV02ZzWJv3oSwjdKehUPg-1769159926-1.0.1.1-gH.v6MePFVB3qJji04DHCJe3hBBLmP6PFQkxyyv84aOODgFNPI1D.ISzYy7EvsoLWql8DcBMeYidriIMRIQTV8JLFzpF0Wzpd93V5YjY3yQWJeWzaNyiDcbeBvn6g.Mq; path=/; expires=Fri, 23-Jan-26 09:48:46 GMT; domain=.christopherboelz.com; HttpOnly; Secure; SameSite=None
Vary: Accept-Encoding
Server: cloudflare
CF-RAY: 9c2634a5a91ad3a8-FRA
Page title: Cloudflare
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cloudflare</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<header>
<h1><span id="domain-name"></span></h1>
<h2>
The owner of this domain hasn't put up a website yet. Try visiting
again soon. This domain is registered using
<a
href="https://www.cloudflare.com/products/registrar/"
target="_blank"
>Cloudflare Registrar.
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.99575 1.53249L10.0042 2.53249L12.783 2.50999L8.6465 6.64649L9.3535 7.35349L13.49 3.21699L13.4675 5.99574L14.4675 6.00424L14.5042 1.49574L9.99575 1.53249Z"
fill="currentColor"
/>
<path
d="M12 12H4V3.99999H8.5V2.99999H3.5L3 3.49999V12.5L3.5 13H12.5L13 12.5V7.49999H12V12Z"
fill="currentColor"
/>
</svg>
</a>
</h2>
</header>
<h3>Are you the domain owner?</h3>
<section>
<p>
Log in to the Cloudflare Dashboard to
<a
href="https://developers.cloudflare.com/dns/manage-dns-records/how-to/create-root-domain/"
target="_blank"
>create a root domain record.
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.99575 1.53249L10.0042 2.53249L12.783 2.50999L8.6465 6.64649L9.3535 7.35349L13.49 3.21699L13.4675 5.99574L14.4675 6.00424L14.5042 1.49574L9.99575 1.53249Z"
fill="currentColor"
/>
<path
d="M12 12H4V3.99999H8.5V2.99999H3.5L3 3.49999V12.5L3.5 13H12.5L13 12.5V7.49999H12V12Z"
fill="currentColor"
/>
</svg>
</a>
</p>
</section>
<h3>What is Cloudflare?</h3>
<section>
<p>
Cloudflare is a global cloud provider designed to make everything you
connect to the Internet secure, private, fast, and reliable. Our
mission is to help build a better Internet.
</p>
</section>
<section class="promotional-cards">
<a href="https://1.1.1.1/" target="_blank">
<section>
<h2>
Download 1.1.1.1 — the free app that makes your Internet safer.
</h2>
<p>
Protect your traffic and speed up your connection on all your
devices.
</p>
</section>
</a>
<a
href="https://www.cloudflare.com/products/registrar/"
target="_blank"
>
<section>
<h2>
Register your own domain name for the lowest cost, every time.
</h2>
<p>
Cloudflare Registrar charges wholesale prices, without sneaky
markups.
</p>
</section>
</a>
</section>
<div class="animation_wrapper">
<div class="animation animation_center"></div>
<div class="animation animation_left"></div>
<div class="animation animation_right"></div>
</div>
</main>
<footer>
<div class="footer-border">
<div class="footer-left">
<svg
width="80"
height="2"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<mask
id="b"
style="mask-type: alpha"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="80"
height="2"
>
<path fill="
Open service 2606:4700:3036::ac43:b041:443 · christopherboelz.com
2026-01-23 09:18
HTTP/1.1 200 OK
Date: Fri, 23 Jan 2026 09:18:46 GMT
Content-Type: text/html;charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=b6Wj98HK5pnwYS58NO1xzWuGwsjUdAAHPAwldWxUc31gl75KMbzWkH9vdmIskkBGUF%2BpOCSJcgIdoepRZ7CBstcKOdCwNDVavoLSj8PSwwIl9EIYCOZPoDV5O1g%2Fb8Zd"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Set-Cookie: __cf_bm=7YYo_9HV4MhAIbO4nk7B2uFLfg_WXjqMfCqsRGgGIVo-1769159926-1.0.1.1-Ponk32qAbmFBDE2RW5DhWkMS2Xb_Ovt6omIR5MZY4QaUPpuenBm86f4hYo9YR63PWiKOk1pkVxINZ8qGm6U2m_rtfVTKiWEx8Tt7c10NTubRvWALBemC.9LQ7I.I8MYw; path=/; expires=Fri, 23-Jan-26 09:48:46 GMT; domain=.christopherboelz.com; HttpOnly; Secure; SameSite=None
Vary: Accept-Encoding
Server: cloudflare
CF-RAY: 9c2634a53d69d278-FRA
Page title: Cloudflare
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cloudflare</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<header>
<h1><span id="domain-name"></span></h1>
<h2>
The owner of this domain hasn't put up a website yet. Try visiting
again soon. This domain is registered using
<a
href="https://www.cloudflare.com/products/registrar/"
target="_blank"
>Cloudflare Registrar.
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.99575 1.53249L10.0042 2.53249L12.783 2.50999L8.6465 6.64649L9.3535 7.35349L13.49 3.21699L13.4675 5.99574L14.4675 6.00424L14.5042 1.49574L9.99575 1.53249Z"
fill="currentColor"
/>
<path
d="M12 12H4V3.99999H8.5V2.99999H3.5L3 3.49999V12.5L3.5 13H12.5L13 12.5V7.49999H12V12Z"
fill="currentColor"
/>
</svg>
</a>
</h2>
</header>
<h3>Are you the domain owner?</h3>
<section>
<p>
Log in to the Cloudflare Dashboard to
<a
href="https://developers.cloudflare.com/dns/manage-dns-records/how-to/create-root-domain/"
target="_blank"
>create a root domain record.
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M9.99575 1.53249L10.0042 2.53249L12.783 2.50999L8.6465 6.64649L9.3535 7.35349L13.49 3.21699L13.4675 5.99574L14.4675 6.00424L14.5042 1.49574L9.99575 1.53249Z"
fill="currentColor"
/>
<path
d="M12 12H4V3.99999H8.5V2.99999H3.5L3 3.49999V12.5L3.5 13H12.5L13 12.5V7.49999H12V12Z"
fill="currentColor"
/>
</svg>
</a>
</p>
</section>
<h3>What is Cloudflare?</h3>
<section>
<p>
Cloudflare is a global cloud provider designed to make everything you
connect to the Internet secure, private, fast, and reliable. Our
mission is to help build a better Internet.
</p>
</section>
<section class="promotional-cards">
<a href="https://1.1.1.1/" target="_blank">
<section>
<h2>
Download 1.1.1.1 — the free app that makes your Internet safer.
</h2>
<p>
Protect your traffic and speed up your connection on all your
devices.
</p>
</section>
</a>
<a
href="https://www.cloudflare.com/products/registrar/"
target="_blank"
>
<section>
<h2>
Register your own domain name for the lowest cost, every time.
</h2>
<p>
Cloudflare Registrar charges wholesale prices, without sneaky
markups.
</p>
</section>
</a>
</section>
<div class="animation_wrapper">
<div class="animation animation_center"></div>
<div class="animation animation_left"></div>
<div class="animation animation_right"></div>
</div>
</main>
<footer>
<div class="footer-border">
<div class="footer-left">
<svg
width="80"
height="2"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<mask
id="b"
style="mask-type: alpha"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="80"
height="2"
>
<path fill="
Open service 2606:4700:3036::ac43:b041:8443 · 29373358.com
2026-01-23 05:30
HTTP/1.1 403 Forbidden
Date: Fri, 23 Jan 2026 05:30:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=4,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bSRB5%2Bj1H%2FYBQ4z7ziKt7ZQA5H8pZGvpPGqkwpAIrKfJz1LHdUFlk8jaAZWRgJyxLL2L1gemr8wFfFstqkhdA5vYbrSCijBtxNR6aw2YPDWI%2FaiJZMscKw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c24e61f2f2ae10a-SIN
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> 29373358.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c24e61f2f2ae10a</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2400:6180:0:d0::13f7:9001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-rev
Open service 2606:4700:3036::ac43:b041:80 · 29373358.com
2026-01-23 05:30
HTTP/1.1 403 Forbidden
Date: Fri, 23 Jan 2026 05:30:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JkpV1fOMUMtm2RMbXbXz5LX3DgCgIwM0wRWprssCn4hG1dqyrAz2fLOqXPRb7WPQJzmPiA7e%2BHjzVPDk%2BE2OjxutolxnpR%2Fw5eCLt6X%2FvLeXju4PBI7gdg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c24e61df9054d44-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> 29373358.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c24e61df9054d44</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::fae:a001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:443 · 29373358.com
2026-01-23 05:30
HTTP/1.1 403 Forbidden
Date: Fri, 23 Jan 2026 05:30:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2BYL2foyJ%2BefITW208ERksG8qWptaQwMhXnnjCgVMgLvlJbV4OSC2MOJBv0k86eL5hf8nNJm6KH%2Bh7tpS0iS38sGG8xuV4pza2aIQsWw%2FH8NW22GOcUerTw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c24e61dbd25dbc8-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> 29373358.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c24e61dbd25dbc8</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::1237:b001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-rev
Open service 2606:4700:3036::ac43:b041:8443 · huat138-market.autos
2026-01-23 03:47
HTTP/1.1 522 <none> Date: Fri, 23 Jan 2026 03:47:41 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c244f2f4862fb44-SJC alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · huat138-market.autos
2026-01-23 03:47
HTTP/1.1 301 Moved Permanently
Date: Fri, 23 Jan 2026 03:47:21 GMT
Content-Length: 0
Connection: close
Location: https://huat138-market.autos/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UayZyVQKZVyF46XbiqmFFHcrRfqGHWttPXUdoUayeGLNL9%2FjoblBoW%2BMIvl9ukT8QKe42oQ8C1s7skjrUpYzuztP92aKH26XthPrTu0MRt4p6aOliMCsNlpkoT0PH52o"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c244f28fe49ff89-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · huat138-market.autos
2026-01-23 03:47
HTTP/1.1 302 Found
Date: Fri, 23 Jan 2026 03:47:21 GMT
Content-Type: text/html; charset=iso-8859-1
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Location: http://huat138-market.autos/cgi-sys/suspendedpage.cgi
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=w29rR%2FMAbtvKSp0SNYt9f4uUFXu3wKqaV3GK0vaLs2b%2B%2FAqy49QuA9TZ5IWVWKi0%2FIJW0fsOY4JXZ1BD%2Fz1wlMLcudKd6LVrEpmFOcohzFcZOQdi%2BUZH6ySnDnRzSKsF"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c244f291e23ca24-LHR
alt-svc: h3=":443"; ma=86400
Page title: 302 Found
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>302 Found</title>
</head><body>
<h1>Found</h1>
<p>The document has moved <a href="https://huat138-market.autos/cgi-sys/suspendedpage.cgi">here</a>.</p>
</body></html>
Open service 2606:4700:3036::ac43:b041:8443 · hitclub53.win
2026-01-22 22:13
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 22:13:01 GMT
Content-Length: 0
Connection: close
Location: https://gsa.ae.org/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=mdSOH8SN9HHEnnkL2s32b%2F57wUWae96TuPRsYVThATwDNU8e%2BbBIV%2F2gnErbnc50WVTKK3DX844c%2BJ3IccT%2BsKDrUZ7pyXNLsMiawoHkKvUz0Yjr05fY"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c22656dd803f875-SIN
Open service 2606:4700:3036::ac43:b041:80 · hitclub53.win
2026-01-22 22:13
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 22:13:01 GMT
Content-Length: 0
Connection: close
Location: https://gsa.ae.org/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bSW2UJ2oHmFyFKAGIjo0rpKSGExFrxUpTvM5doehpqupNqqxq5pd8cH6iYyX0RiwCItuUJzMiyRCeOKBZUB%2Fb8TSkgkchN38hxOg1JN59M6YJd7mLPM%2FRGU%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c22656ddd4235ae-YYZ
Open service 2606:4700:3036::ac43:b041:443 · hitclub53.win
2026-01-22 22:13
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 22:13:01 GMT
Content-Length: 0
Connection: close
Location: https://gsa.ae.org/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=SeqM6tnj%2FqnJhfBN4lzZnXsXSWrFtgYcFdHOduUJzSJXYsjPuuSrqFYwCKUPhjVFY4qoSjq%2FyLR%2F8n%2BOYs3ac%2Bu6WdaCABMizfDvnxDPAZtrAo7i3rbYQus%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c22656daa9922a2-SJC
Open service 2606:4700:3036::ac43:b041:80 · lucky88.fyi
2026-01-22 21:06
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 21:06:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dTKVeHRwBRHI7g9EwME5v38Pnc0r7Pi6sYtdz6fWC4%2F%2FJsFzgwDmuasHNfluJDIvkMsXRWzn4Txcnd5zoumk5T3qXEyYztHvJQBue57PngqqY46c1s9q"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2203adbd2cfd87-SIN
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> lucky88.fyi</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2203adbd2cfd87</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2400:6180:0:d0::f29:6001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-revea
Open service 2606:4700:3036::ac43:b041:8443 · lucky88.fyi
2026-01-22 21:06
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 21:06:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=7,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZV1F8m5iLB5t7oRHJ89EV%2B44saLGNjbdKdBnjuB%2B7ZT0Ipoef%2FApLX7dRv7l5nU5M1iMxemuRF%2BL1u%2F348xv1uYMXpyY5PYlFRoa6HqaCHBi9gdqMyNm"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2203ad7e360e82-EWR
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> lucky88.fyi</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2203ad7e360e82</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:800:10::d4e:a001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-rev
Open service 2606:4700:3036::ac43:b041:443 · lucky88.fyi
2026-01-22 21:06
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 21:06:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=2,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jEv9chzT3OFtE8bEOQWVHYPpByjhJi1%2FdTnTfqnYiiFkcskVGlIqy0dKBEH6ps%2BuDt%2FshHvtKbWL7Kc%2BYcpeskugvHwDkdYWKmH3JfaomcDa6wj5vofp"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c2203acbbb73ee5-EWR
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> lucky88.fyi</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c2203acbbb73ee5</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:400:d0::24c8:8001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-re
Open service 2606:4700:3036::ac43:b041:443 · beautyhallcomo.it
2026-01-22 19:58
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 19:58:43 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=19,cfOrigin;dur=441
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MQslokmzuNjLWNY981jC2bCVdxD58VmkCQo4MyZvJADCWhlsdjwu9P%2Fe0RDjNQ5Bemd5NVvBv50xW%2BsMiDl%2FyfICvGcRHIPYdo3kcAEk1clsD1p92ZBCpZCYhmc4"}]}
CF-RAY: 9c21a0b0bc9a760e-SJC
alt-svc: h3=":443"; ma=86400
Page title: 403 Forbidden
<html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"68c31f4cc2a04168a9abef7f30ec0e94","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · beautyhallcomo.it
2026-01-22 19:58
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 19:58:42 GMT
Content-Length: 0
Connection: close
Location: https://beautyhallcomo.it/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=RvbpD4CmNIrdvVDBR%2FSLw3BfvgA0kMjd3hlyKALF3AW%2F5ayk3qUPa08CZw1ZUppljBIHbcIpj1zZnTCZfulWH8fvBheyPC5JAmuo%2BJvf93sPHNRmCHzqzQ9ZHA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=7,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c21a0ad1bf2dcf2-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · beautyhallcomo.it
2026-01-22 19:58
HTTP/1.1 523 <none> Date: Thu, 22 Jan 2026 19:58:42 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c21a0ad7e1a6913-FRA alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:80 · haemata.co.nz
2026-01-22 19:41
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 19:41:25 GMT
Content-Type: text/html; charset=iso-8859-1
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bId9VeqHHpRBFzGyIlugYP1X3oMMDdhyLqeGe3sISN%2BuP9WYCaODg31XqaovJHfSf1B2gQ5aY%2BIzCC4wOMXX%2BNT9u72cf4CGrCcutWcSrbSzJ%2FvFYscdpgg%3D"}]}
Location: https://haemata.co.nz/
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=227,cfOrigin;dur=2
CF-RAY: 9c21875baa39ac63-YYZ
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
<style>
body {margin: 20px; font-family: helvetica, sans-serif; max-width: 800px;}
.error {color: #e00;}
pre {font-size: 16px;}
h1 {font-size: 28px;}
</style>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://haemata.co.nz/">here</a>.</p>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"c288ecf317b24194971aff8f4a5bd579","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body></html>
Open service 2606:4700:3036::ac43:b041:8443 · haemata.co.nz
2026-01-22 19:41
HTTP/1.1 522 <none> Date: Thu, 22 Jan 2026 19:41:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19566,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c21875eaa3baabf-YYZ alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · haemata.co.nz
2026-01-22 19:41
HTTP/1.1 200 OK
Date: Thu, 22 Jan 2026 19:41:26 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
vary: X-Forwarded-Protocol
Cache-Control: no-cache, no-store, must-revalidate
alt-svc: h3=":443"; ma=86400
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=royfq9RqXEbHuDcZyI27F9wyAt%2F7Tov9VpA89ol%2B5lKKpRTEPuzxwyfzWvtg1fbT7wzfF8867KjM6P5I3OWyRE3o%2FyNWxRejxXfi%2B19xCz%2FY3NQI5%2BkzzJ8%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9c21875deb24dbbf-FRA
Open service 2606:4700:3036::ac43:b041:80 · cozzco.com
2026-01-22 17:38
HTTP/1.1 404 Not Found
Date: Thu, 22 Jan 2026 17:38:56 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
X-XSS-Protection: 0
X-Frame-Options: SAMEORIGIN
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2BKOQjcXhtjmDHAjI8QiD9pOvAYQbFhBJVTP2qhZu7%2Bj53pjijZagwM0q%2Fxn9MkPhkI02%2B7Rx3DjqcD%2BLOG6MVqIhQOjzA3s8uRMGmKlvDfg8egfQ%2FPw%3D"}]}
CF-RAY: 9c20d3f03c337542-SJC
alt-svc: h3=":443"; ma=86400
Page title: Error 404 (Not Found)!!1
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
<title>Error 404 (Not Found)!!1</title>
<style>
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
</style>
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
<p><b>404.</b> <ins>That’s an error.</ins>
<p>The requested URL <code>/</code> was not found on this server. <ins>That’s all we know.</ins>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9c20d3f03c337542',t:'MTc2OTEwMzUzNg=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script>
Open service 2606:4700:3036::ac43:b041:8443 · cozzco.com
2026-01-22 17:38
Open service 2606:4700:3036::ac43:b041:443 · cozzco.com
2026-01-22 17:38
HTTP/1.1 404 Not Found
Date: Thu, 22 Jan 2026 17:38:56 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
X-XSS-Protection: 0
X-Frame-Options: SAMEORIGIN
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2B24TTdpkg4MBkLVxwcQAGBzvxVE1It9rRL5ZzOOzwi3BoAHNpzqPnUBriF1AyxGhms864VVlYexoQhmpO31zyIgbCuyGpF3agf65YwZogcLwAU1kTwI%3D"}]}
CF-RAY: 9c20d3efab742e7a-EWR
alt-svc: h3=":443"; ma=86400
Page title: Error 404 (Not Found)!!1
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
<title>Error 404 (Not Found)!!1</title>
<style>
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
</style>
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
<p><b>404.</b> <ins>That’s an error.</ins>
<p>The requested URL <code>/</code> was not found on this server. <ins>That’s all we know.</ins>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9c20d3efab742e7a',t:'MTc2OTEwMzUzNg=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script>
Open service 2606:4700:3036::ac43:b041:443 · angkaultraman.com
2026-01-22 16:14
HTTP/1.1 200 OK
Date: Thu, 22 Jan 2026 16:14:09 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7HPJUpB%2FZhuYKX3NhL6MiHcoViwCJilPFKV12n7HcjoATprWrI%2BeOcome9MEL4xpZM7tl0ObJqIGDEDlpbE8YDbPQsV2uhtFXBxgP305FiBBYTVSqdiv%2FjVPbA%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c2057be0a54c688-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · angkaultraman.com
2026-01-22 16:14
HTTP/1.1 200 OK
Date: Thu, 22 Jan 2026 16:14:09 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Accept-Ranges: bytes
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9LxRms%2F4rd0tVcKRltXC3IN27RYlw0iO%2FojfNq2swM3W7jhxDMoa45bLi1OhXDO02ntmG05qspRROzhypEMETk2SVDAHeE7DkWs5KKOiMC77LzOlYKCJQhXxjDj3"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c2057bcfcd51990-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · angkaultraman.com
2026-01-22 16:14
HTTP/1.1 521 <none> Date: Thu, 22 Jan 2026 16:14:09 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c2057bceeebac7c-YYZ alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · surprisevistahavens.xyz
2026-01-22 12:19
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 12:19:19 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LG9CcvfOYXWDJ0L6KByZHAhn%2FnlvBHz0PsT1wvgu1B7ORdVGrwZxOFmEWf9ICvRLBYO7rkslQqZYgMD%2FCEuEg2Ww4KqqsTfSC0lIq3UHl%2FnIbFJog1Pq4YEbrc%2F8WPSpttVV"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1effbfdbadad1b-EWR
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> surprisevistahavens.xyz</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c1effbfdbadad1b</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:400:d0::24fc:4001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-
Open service 2606:4700:3036::ac43:b041:8443 · surprisevistahavens.xyz
2026-01-22 12:19
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 12:19:19 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=2,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=G9cMXyt3d4jJb0Z%2BGxpBlSwZItZ4Bi4m0R7QUAclEllQf6Vs0g%2FwJHDZOk75J2UUGplFGf8HXYM5NO6UmlZ8FZBTMCMLjtvWr8XUpIYk%2FJMyvN1wmlLyoLC9fhxrMLWHqWeU"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1effbfda3aa8d0-EWR
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> surprisevistahavens.xyz</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c1effbfda3aa8d0</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:400:d0::24c8:8001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-
Open service 2606:4700:3036::ac43:b041:443 · surprisevistahavens.xyz
2026-01-22 12:19
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 12:19:19 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=3,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NgphvaT0jA%2F%2FAaqhcCknJBZ%2BJTPDQeQcvPxM%2Fd8F%2Bg%2FhyazvZ1leMHPzdr3WrYSPVyA71OfMcl%2BzEyowsoeomNF62HjxsU7iCyZH6b%2BJlNO4ArxVOzTRimKFACUAlpInVEOo"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1effbfae5c9d09-SJC
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> surprisevistahavens.xyz</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c1effbfae5c9d09</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:4:1d0::3d7:5000</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-fo
Open service 2606:4700:3036::ac43:b041:443 · prometheus.solargames.ca
2026-01-22 11:55
HTTP/1.1 200 OK
Date: Thu, 22 Jan 2026 11:55:53 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Set-Cookie: PHPSESSID=tbnafnh0jars4rjfet5k10fcrq; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2Bk1mIH%2FPXdmyTW4LNsf%2BGOcu%2B0b26urd%2BnLysqe7TXlem4x7QtQ6CN47rsnWVpgyiVHq3saEY31bQy7qAz3Wz%2Fh2EaHoGsWZPJPTVNU9JkRgRvea4lVZ1TZi5QKdr4Wii2QtTQ%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9c1edd679956dde5-YYZ
alt-svc: h3=":443"; ma=86400
Page title: Solar Games Donation Page - Home
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Include required CSS and scripts -->
<meta charset="utf-8">
<title>Solar Games Donation Page - Home</title>
<meta http-equiv="content-type" value="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700" rel="stylesheet" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="compiled/css/site.css">
<script src="compiled/js/essential.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<div class="wrap">
<div class="banner">
<div class="container">
<div class="row">
<div class="col">
<img src="img/banner.png"/>
</div>
<div class="col d-flex justify-content-end align-items-start">
</div>
</div>
</div>
</div>
<nav class="navbar navbar-inverse navbar-expand-lg " role="navigation">
<div class="container"> <div class="navbar-header d-flex justify-content-between justify-content-md-start align-items-center">
<div class="ml-auto ml-md-0">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars fa-fw text-white"></i>
</button>
<a class="navbar-brand" href="."><img src="img/logo.png" width="64px" height="64px"/></a>
</div>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="nav flex-column flex-md-row">
<li class="nav-item active">
<a class="nav-link" href=".">
<i class="fas fa-home fa-fw"></i> Home </a>
</li>
<li class="nav-item dropdown
">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Store </a>
<ul class="dropdown-menu" role="menu">
<li class="">
<a class="dropdown-item" href="store.php?page=server">
<i class="fas fa-shopping-cart pr-1 fa-fw"></i>
Store </a>
</li>
</ul>
</li>
</ul>
<ul class="nav ml-auto flex-column flex-md-row">
<li class="nav-item"><a class="nav-link" href="https://steamcommunity.com/openid/login?openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Fprometheus.solargames.ca%2Findex.php&openid.realm=http%3A%2F%2Fprometheus.solargames.ca&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select"><i class="fas fa-sign-in-alt fa-fw"></i> Sign in</a></li> </ul>
</div>
</div> </nav>
<div class="content mb-5">
<div class="container">
<div class="row">
<div class="col">
</div>
</div>
Open service 2606:4700:3036::ac43:b041:80 · prometheus.solargames.ca
2026-01-22 11:55
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 11:55:52 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://prometheus.solargames.ca/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LUq%2BkPIJvj0rZ72UGxeorb6L9mqQlsHFmTJYI8J2FoQcTsUdIKuRbmxpAWVtP3%2BrZ4soKyQbW5CMtX4DRlfF5KZh0nPoS0bpcBi%2FmvN2mppIEk%2Fa4Bw6Af1s4u6mylLfUpPZ%2Bw%3D%3D"}]}
CF-RAY: 9c1edd652e028d3f-EWR
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · prometheus.solargames.ca
2026-01-22 11:55
HTTP/1.1 522 <none> Date: Thu, 22 Jan 2026 11:56:12 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1edd6a997cb145-AMS alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · boschshop.com.br
2026-01-22 11:49
HTTP/1.1 520 <none> Date: Thu, 22 Jan 2026 11:49:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=145,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1ed4706ab0ab0c-YYZ alt-svc: h3=":443"; ma=86400 error code: 520
Open service 2606:4700:3036::ac43:b041:8443 · boschshop.com.br
2026-01-22 11:49
HTTP/1.1 522 <none> Date: Thu, 22 Jan 2026 11:50:05 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1ed472c99b9f33-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · boschshop.com.br
2026-01-22 11:49
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 11:49:44 GMT
Content-Length: 0
Connection: close
Location: https://boschshop.com.br/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=T013z1t%2BgbxVhiR70Tv845T%2FqCbuioyek4PTiIRdVO2ZRGx5atfOa8ARRHcKXrNAxIgnshnXW29yumT3KNlTjO27p5c%2F9Psk34JoefDGtOoMUHMNZQVx9GzCW%2BA%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c1ed46bd8371ea7-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · www.srilankandriversguides.com
2026-01-22 10:02
HTTP/1.1 200 OK
Date: Thu, 22 Jan 2026 10:02:31 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
link: <https://www.srilankandriversguides.com/wp-json/>; rel="https://api.w.org/"
link: <https://www.srilankandriversguides.com/wp-json/wp/v2/pages/459>; rel="alternate"; title="JSON"; type="application/json"
link: <https://www.srilankandriversguides.com/>; rel=shortlink
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=8,cfOrigin;dur=454
x-litespeed-cache: hit
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uqjm5NXcnpz%2FgzuATmJPwKzA%2Bwttb4ydTsm%2BF%2B0LnLCRSnnD3Gx2AwaxQSEZXDM4kbYEeyPjoOK05SUxHNWVEvyGPLvhloTWbZFko2JAkDuB2HxRw8drAbkjnhaAmjMSOQI3GGIA%2Bps%3D"}]}
vary: Accept-Encoding
Server: cloudflare
alt-svc: h3=":443"; ma=86400
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9c1e37551c1cea84-YYZ
Open service 2606:4700:3036::ac43:b041:8443 · www.srilankandriversguides.com
2026-01-22 10:02
HTTP/1.1 521 <none> Date: Thu, 22 Jan 2026 10:02:30 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1e375248a494c6-LHR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · twistedfitnessstudios.com
2026-01-22 06:19
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 06:19:58 GMT
Content-Length: 0
Connection: close
Location: https://twistedfitnessstudios.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rv4SUx8Cg4tOAV9PcShuX9ZoA5XqiSaruYgjdEp8f4jnfImVHJpTX45KFuvjCZyYUWtWCmS3M9nDI1wdTUi%2FPIvCPlXcXOMadMVElFOH%2FmW%2BTFzj%2BzzPgI8nf3xMqQnU8nZGDbo%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1cf1577ba8377b-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · twistedfitnessstudios.com
2026-01-22 06:19
HTTP/1.1 200 OK
Date: Thu, 22 Jan 2026 06:19:58 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
vary: Accept-Encoding
content-security-policy: upgrade-insecure-requests
last-modified: Thu, 22 Jan 2026 02:58:54 GMT
Cache-Control: max-age=0
expires: Thu, 22 Jan 2026 06:19:58 GMT
x-httpd-modphp: 1
host-header: 6b7412fb82ca5edfd0917e3957f05d89
x-proxy-cache: MISS
x-proxy-cache-info: 0 NC:000000 UP:
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Dkq2p4S%2FPy5VX8Q%2BTNgxtGg2MKXas%2FGkPygfWHIdsJrZ8tjndMThDA4hm9kPKwhQkVADqvdzQpPgmqg2kWb23UcNHplTa2WXI7UtLeH17WusB1PyVpWQQKNCkZUYl4S0ja0zsOw%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9c1cf15a3db5dbb3-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · twistedfitnessstudios.com
2026-01-22 06:19
HTTP/1.1 522 <none> Date: Thu, 22 Jan 2026 06:20:18 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19734,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1cf15d8af30c86-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · sqyj.com.cn
2026-01-22 04:31
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 04:31:59 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=P4TvRIaZ3ZojvQT%2BERe9%2BiDzVbZvT8OVJmT0FbXRd%2BiYb0iljG6hDAvj0kpW3TqEKu007HZ9JZac4JmMW8EAuP2D0zLvFoxjXOwpQdq7auU%2BHouGQDz6"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1c532f8e36dbfb-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> sqyj.com.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c1c532f8e36dbfb</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::1413:d001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:80 · sqyj.com.cn
2026-01-22 04:31
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 04:31:59 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dds29PioUoDk1br%2FlMVLLz5SpgdGyZr7xwSeqlmbzRIxL83YFA6yqUcugCnPU9D5VOiPuVTN64wXtiJHVvl%2FMGPFkpJ7fW9U9y8hB4hhWD4q1LTpEj%2Bo"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1c532eebccdfe4-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> sqyj.com.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c1c532eebccdfe4</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::11fa:8001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:8443 · sqyj.com.cn
2026-01-22 04:31
HTTP/1.1 403 Forbidden
Date: Thu, 22 Jan 2026 04:31:59 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MiZPPaiA8Enlnn5Q9ghxD6jKQHl3XALmzzbfO9GjX0qtrgEYO7bnk88bQkDaZZyUTupRhNQJQzNXv1oV3wVusA%2FAT2VA8%2BFuhseNYdDbgaDTBQx71K%2Fu"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1c532ebd89d356-FRA
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> sqyj.com.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9c1c532ebd89d356</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::fe3:3001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-revea
Open service 2606:4700:3036::ac43:b041:443 · ileqa.info
2026-01-22 02:49
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 02:49:07 GMT
Content-Length: 0
Connection: close
Location: https://www.google.com/search
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UiPeHVEZymISbMldyvrUGfJXGrO8xeK%2BHqBH5CN0dlw6nfJEM4%2FjVyg1AGv5%2BC0oR%2B1uBm2RchgbNEaaEGLIO%2FHZUZPHtFUHVtXeE%2BI6nx5AZf0S"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1bbc801a5b5f2c-SIN
Open service 2606:4700:3036::ac43:b041:8443 · ileqa.info
2026-01-22 02:49
HTTP/1.1 522 <none> Date: Thu, 22 Jan 2026 02:49:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1bbc864cb025c3-SJC alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · ileqa.info
2026-01-22 02:49
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 02:49:07 GMT
Content-Length: 0
Connection: close
Location: https://www.google.com/search
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cUY9PQRu65mavzg7WB%2BIUEUbpnvtvt7%2B9ReFjtR9TEHdPksm5wGf3BnMLs%2F17NCoScO4Yvg6u3ja62p%2FekAsk6JHko2B5VFzG9fBsRe51%2FyhuMFUY%2F4%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c1bbc7efc24ddee-AMS
Open service 2606:4700:3036::ac43:b041:80 · nicealliance.org
2026-01-22 01:08
HTTP/1.1 301 Moved Permanently
Date: Thu, 22 Jan 2026 01:08:17 GMT
Content-Type: text/html; charset=iso-8859-1
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Content-Security-Policy: upgrade-insecure-requests;
Location: https://www.nicealliance.org/
Age: 7762
X-Cache: HIT
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=15,cfOrigin;dur=4
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=6tz2oRW%2FYWrMTePtCUwnOfULk6hG%2F%2Fh8gGKoxF9IyV72cItiQtlK3kXQ8UEwcnc1Ya1490u6AMCDu0aGiwACk%2B0XoLqzTCFMeUVyXBZXYTYpSw6kY52qyVhrqtw%3D"}]}
CF-RAY: 9c1b28c9be3da62e-EWR
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://www.nicealliance.org/">here</a>.</p>
<hr>
<address>Apache/2.4.62 (Debian) Server at nicealliance.org Port 80</address>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"b2dd4b4e8da74a718e5ef65a121a4440","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body></html>
Open service 2606:4700:3036::ac43:b041:8443 · nicealliance.org
2026-01-22 01:08
HTTP/1.1 522 <none> Date: Thu, 22 Jan 2026 01:08:38 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1b28cf8cd264e8-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · nicealliance.org
2026-01-22 01:08
HTTP/1.1 200 OK
Date: Thu, 22 Jan 2026 01:08:17 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=n%2BpZNYOHSD1PuYdURDvPmzC0FFzUIaxemNv2IjlP%2FzugDPoyBKNkq%2FfCuW9neRQQMB6GXd1P57qQekWdGx9cZwHp4gG9iibqGtua8BH91ciOsO%2FagwWflaq26k8%3D"}]}
CF-RAY: 9c1b28c988974d80-FRA
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:8443 · taodande.vip
2026-01-21 22:45
HTTP/1.1 523 <none> Date: Wed, 21 Jan 2026 22:45:26 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c1a578abf26db0e-FRA alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:443 · taodande.vip
2026-01-21 22:45
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 22:45:29 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
link: <https://taodande.vip/wp-json/>; rel="https://api.w.org/"
link: <https://taodande.vip/wp-json/wp/v2/pages/2>; rel="alternate"; title="JSON"; type="application/json"
link: <https://taodande.vip/>; rel=shortlink
strict-transport-security: max-age=31536000
x-rocket-nginx-serving-static: MISS
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=pzuWp4XIPF3L8vYtNudp393QR3Dkn%2F8CrT2HSsocMJwzU%2FLL8XgJWyLu4s0MXf17Ndmw4UFhRpL4Xe3OEX3wt5GTiz9ithwIVf2k0s2GRaXYasXkjVVueg%3D%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9c1a578fa8634179-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · rokasvetki.lv
2026-01-21 19:53
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 19:53:12 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server-Timing: cfEdge;dur=504,cfOrigin;dur=0
Set-Cookie: _session=eyJzZXNzaW9uX2lkIjoiWjZSUFM0a1FpWXNvZW9lOCJ9.2FLVpGIuEhBZi97itw2doHRd%2BpHECPbu6TjosRfzZdQ; Max-Age=604800; Path=/; HttpOnly; Secure; SameSite=Lax
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=z8RHP4GBt7vDUxqcLCBT39G49S8kX2oFShc8gKajNCZ49dTBHPkGB7JoE6OQFHpt4ztXHcMq6YkDlGUCN2fXcMGPy%2F6sGtx2fr5Gfx7utyfbpx4lK8jpUX8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c195b3c9845d2a0-FRA
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · rokasvetki.lv
2026-01-21 19:53
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 19:53:12 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server-Timing: cfEdge;dur=43,cfOrigin;dur=0
Set-Cookie: _session=eyJzZXNzaW9uX2lkIjoiYlNNVEFFNlFvUk5odjQ2ZCJ9.R8oVj%2Bv6pXqjJTJWuM%2ByL8Go6yAHR6esHYc9dzfeLZc; Max-Age=604800; Path=/; HttpOnly; Secure; SameSite=Lax
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=23kxCz%2FNxiy83uqTxCo3owXEYaimTT3IHyFonBp7v4mOxpylO7PiRNG5B8UX277zfwllfWOHkUpJEavdDvkHJeGitx2rg2Q7giGC7U6o0xXYhJk29RDlw1M%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c195b3b588c61e8-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · source.kundera.org
2026-01-21 18:17
HTTP/1.1 404 Not Found
Date: Wed, 21 Jan 2026 18:17:16 GMT
Content-Length: 0
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: no-store
referrer-policy: strict-origin-when-cross-origin
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eWnnZ9K1IaR3C77k4Rzyg5qhiAZdWv2ZaTpimbikS2FUBanV0g%2BcoCHgjm6z5e%2FfsYTOLDINom%2FM5hjvtinJ5MxSA6%2Ffp0rT4jna9K1Atks%2BSVpDeCz2uAUsYK1CtQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9c18ceb48fef4702-BOM
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · source.kundera.org
2026-01-21 18:17
HTTP/1.1 404 Not Found
Date: Wed, 21 Jan 2026 18:17:15 GMT
Content-Length: 0
Connection: close
Access-Control-Allow-Origin: *
Cache-Control: no-store
referrer-policy: strict-origin-when-cross-origin
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=67hDVrvEQtWdtZ5dFrWRd1vHmotEwi12S8j2YJw9u5YNBrisly91CKIQ4mjcJ%2BEmeTZ6lzr9SGfplZBfDyod2bnZa85PTdJYnR0xkjNJZC2z0FXnasGapRQGCArBuQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9c18ceb0ca3e5e6a-EWR
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · source.kundera.org
2026-01-21 18:17
HTTP/1.1 301 Moved Permanently
Date: Wed, 21 Jan 2026 18:17:15 GMT
Content-Length: 0
Connection: close
Location: https://source.kundera.org/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=8r2EQ5i51xt5rN%2Bu4QuBcgP9uLFkW5d5wIHfmPGqVYUYiou1RDTOFCdAgNqqpLYR4ytuJbZQsnQU0BXz1lBQm5uDUKyq0Xtz%2B8jXAIT27Dpq3aIXPfLkiyesRQ3npg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9c18ceb01cb79b95-FRA
Open service 2606:4700:3036::ac43:b041:443 · carneyassets.com
2026-01-21 17:33
HTTP/1.1 522 <none> Date: Wed, 21 Jan 2026 17:34:14 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c188f30ada6d3c1-FRA alt-svc: h3=":443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · carneyassets.com
2026-01-21 17:33
HTTP/1.1 522 <none> Date: Wed, 21 Jan 2026 17:34:14 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c188f30adbbd289-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · tjstudiohouse.com
2026-01-21 17:19
HTTP/1.1 301 Moved Permanently
Date: Wed, 21 Jan 2026 17:19:41 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://tjstudiohouse.com/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=kwF30pIW%2B1oykRT9RfskOQmdl9o4GlD9%2FpMpXsP1ps9SlCKlkF2uJGlboi42oyun0DMgdmvcG0nY5exBrXiomRBmOSYFxjtAYiIGM%2FQIMhEL6voI6l1PL4B5WJGd"}]}
CF-RAY: 9c187a58ecf5635f-LHR
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · tjstudiohouse.com
2026-01-21 17:19
HTTP/1.1 522 <none> Date: Wed, 21 Jan 2026 17:20:01 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c187a5b7d7ddbb5-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · tjstudiohouse.com
2026-01-21 17:19
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 17:19:42 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
last-modified: Wed, 21 Jan 2026 09:41:54 GMT
Cache-Control: max-age=0
expires: Wed, 21 Jan 2026 13:46:18 GMT
vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yW9%2FQY7nhuYVDvovs%2BRHoadPYufPPhE0dg3d2Xo2z89Ue8s7V8FD4HOrq0qVbf5yGvwrNJfoKbYkiarAFhUj5lwbZnpuEAllFWRUF9JOfFNuVkukh5okb9lpcguU"}]}
Age: 12803
x-cache: HIT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
CF-RAY: 9c187a5b6f6987d9-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · cgnstore.com
2026-01-21 16:14
HTTP/1.1 302 Found
Date: Wed, 21 Jan 2026 16:14:51 GMT
Content-Length: 0
Connection: close
Location: https://www.cgnstore.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=loMhQi9mzi%2Flwl9wjk%2BCHQW9YhBPJ6exVjhbrE3VE8HP7MrYU9OT0h0GbSX1PHS0FNmGiHOF%2BbaieACS69vvmj6O34j6gH3Ag0W9jCPkelVyGZHEREzm%2Fw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c181b61bc5fff99-BOM
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · cgnstore.com
2026-01-21 16:14
HTTP/1.1 302 Found
Date: Wed, 21 Jan 2026 16:14:51 GMT
Content-Length: 0
Connection: close
Location: https://www.cgnstore.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=HsM7kDclIEi9pzohXQX6AJbTaF7Z8JEh3H869gumbXSKViHYcrNrP3ZIR7%2Bi7j%2BKhh6WLPw7KcyXRxA4K0%2BzelkE4nXpZSVxpb3GXNX2lXuhm2G%2BWHarNw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=4,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c181b621bb46027-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · cgnstore.com
2026-01-21 16:14
HTTP/1.1 302 Found
Date: Wed, 21 Jan 2026 16:14:51 GMT
Content-Length: 0
Connection: close
Location: https://www.cgnstore.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZeYtbC4KCKJWFgDlaV%2BhuCosxMEKe9n4napoZPHY%2BYEl9Dk7UiiOfeiuAHdaNDLOAij6CuoP80l8%2BrmCRWGpo46%2F7WONCsy%2F4tMhJmFdYmKP53YFQDgz1A%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=5,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9c181b615d0ef902-SIN
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · keenwp.com
2026-01-21 15:22
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 15:22:35 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
x-powered-by: PHP/8.3.28
link: <https://keenwp.com/wp-json/>; rel="https://api.w.org/"
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=f6QwXCdeAAq%2FkdfWeF4KZSbgLhRiGr9i5D2s%2FT9pLMEll5DVYqZZv6%2FZdghT5mZv5rWpCr%2FfXj3UYOSKCdE9Hyx1%2FphB%2BBPuoD8unICkOEVC7E2sALU%3D"}]}
vary: Accept-Encoding
Server: cloudflare
alt-svc: h3=":443"; ma=86400
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=11,cfOrigin;dur=1209
CF-RAY: 9c17cec9ecba4910-BOM
Open service 2606:4700:3036::ac43:b041:80 · www.keenwp.com
2026-01-21 15:22
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 15:22:33 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qA2wQlKxXUfd4MbhtUCZaeW7FW8tfr82Gk1yyRggD32%2FzwonzQmB4RXkQ8kYlchvcx1%2BXMBMlsh2UrGPsxNK6Y4NLWKEYTn58D18%2BPHQcdlSYSsDPx4U2A%3D%3D"}]}
CF-RAY: 9c17cec50b305c98-FRA
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:8443 · www.keenwp.com
2026-01-21 15:22
HTTP/1.1 521 <none> Date: Wed, 21 Jan 2026 15:22:33 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=275,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c17cec54a71a6dc-BOM alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · www.keenwp.com
2026-01-21 15:22
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 15:22:34 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MygCq3MIrUhCqQ%2BTRCcx4HP6o8MiTp7%2BJxMyUei3Bl1j5Mt31tTk4MipfHvVPnAlSE9mD%2B5%2BS37fu9TmxHdlk4LAV1Q517n%2FZ9vg5HL%2FFONoqWlChCAm3bvw"}]}
CF-RAY: 9c17cec6bb8c1987-FRA
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:8443 · keenwp.com
2026-01-21 15:22
HTTP/1.1 521 <none> Date: Wed, 21 Jan 2026 15:22:32 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=69,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9c17cec31920c540-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · keenwp.com
2026-01-21 15:22
HTTP/1.1 200 OK
Date: Wed, 21 Jan 2026 15:22:32 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=16,cfOrigin;dur=118
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=k5m40jmIq%2B2K1bPqoNnhWz6SO5eUblHxgbIficGugmw6AXaTiPqWEP6pe8YLNt8%2Fycw%2BvfBae4vJi0MkduAgkvUPDMSjItlfLLVnx6v2C4SANceF"}]}
CF-RAY: 9c17cec36bff6399-EWR
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:443 · npowerbusinesssolutions.uk
2026-01-13 00:19
HTTP/1.1 301 Moved Permanently
Date: Tue, 13 Jan 2026 00:19:22 GMT
Content-Length: 0
Connection: close
Location: https://npowerbusinesssolutions.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AEaavlMuBcxdPZQfsUBhshQu2GLyw5tpW2MTaji%2Fo9jWC3JV1UjqU56gulDQMfUecf9OEgcl4T%2FNfIDHQIJViP1CI30HdIf9TNOBKgY3d7KixYGwWFHt%2FH3Iz2%2BVCBcz%2FxN7enik"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bd0b8c1bf96404f-BOM
Open service 2606:4700:3036::ac43:b041:8443 · npowerbusinesssolutions.uk
2026-01-13 00:19
HTTP/1.1 301 Moved Permanently
Date: Tue, 13 Jan 2026 00:19:22 GMT
Content-Length: 0
Connection: close
Location: https://npowerbusinesssolutions.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=s1Y1v5rDd0KnC7xjBcI19aAQwevUo%2BaSrtsggs1s%2BuVIAr864Ar5ktbHZzMKuFle68kluo59%2FlNyN78k4%2BDkO6%2FWzRouFMoqFlKaKxjFBTZAewru3Q8U6Vb0owxIhBtlNT0OdNv2"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bd0b8c0dcbed286-FRA
Open service 2606:4700:3036::ac43:b041:80 · npowerbusinesssolutions.uk
2026-01-13 00:19
HTTP/1.1 301 Moved Permanently
Date: Tue, 13 Jan 2026 00:19:22 GMT
Content-Length: 0
Connection: close
Location: https://npowerbusinesssolutions.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EiXcU3hPdxEZvkMk5kP2em1vgs2GUPvOeO9Hux1qXMGpusrFfRu9QvFocdWx0VGQZnoC3wPBiw2JAwU4wDuuNklJAWBPZGZrG15ZZ2PKLZ78o7cpYQRv5F01QP3b%2BvD0NyS0Vrvu"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bd0b8c00ff71fad-FRA
Open service 2606:4700:3036::ac43:b041:8443 · gics.gi
2026-01-12 21:52
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 21:52:43 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19683,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcfe177ac613f7f-BOM alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · gics.gi
2026-01-12 21:52
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 21:52:25 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
strict-transport-security: max-age=15552000; includeSubDomains
x-frame-options: SAMEORIGIN
referrer-policy: no-referrer-when-downgrade
permissions-policy: geolocation=(), microphone=(), camera=()
x-content-type-options: nosniff
last-modified: Mon, 17 Mar 2025 14:03:57 GMT
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=5,cfOrigin;dur=1085
x-httpd-modphp: 1
content-security-policy: default-src 'self'; img-src 'self' data: https:; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https:; font-src 'self' https: data:;
host-header: 8441280b0c35cbc1147f8ba998a563a7
x-proxy-cache: HIT
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=M9jT9HRGj9mOtdP9793Ti%2FyFS04EcchH4ynm%2B6yuiwnF40pOOKPIjnTwWYq37A4MD8jGyFn6yIhg0BPoEs8ZSxTmWU1VSkq3u8YQsNvANGEeylc%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9bcfe1773b203af2-BOM
alt-svc: h3=":443"; ma=86400
Page title: GICS About Us
<!doctype html>
<html class="no-js" lang="en-US">
<head>
<!-- meta -->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1">
<!-- Uncomment the meta tags you are going to use! Be relevant and don't spam! -->
<meta name="keywords" content="GDGB, Gibraltar Deposit Guarantee Scheme" />
<meta name="description" content="GDGB Information">
<!-- Title -->
<title>GICS About Us</title>
<!-- Desktop Favicons -->
<link rel="icon" type="image/png" href="images/favicon.ico" sizes="16x16">
<!-- <link rel="icon" type="image/png" href="images/favicons/favicon-32x32.png" sizes="32x32"> -->
<!-- <link rel="icon" type="image/png" href="images/favicons/favicon-96x96.png" sizes="96x96"> -->
<!-- Google Fonts CSS Stylesheet // More here http://www.google.com/fonts#UsePlace:use/Collection:Open+Sans -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400italic,400,600,600italic,700,800,800italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel='stylesheet' type='text/css'>
<!-- ***** Boostrap Custom / Addons Stylesheets ***** -->
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" media="all">
<!-- Required CSS file for IOS Slider element -->
<link rel="stylesheet" href="css/sliders/ios/style.css" type="text/css" media="all">
<!-- ***** Main + Responsive & Base sizing CSS Stylesheet ***** -->
<link rel="stylesheet" href="css/template.css" type="text/css" media="all">
<link rel="stylesheet" href="css/responsive.css" type="text/css" media="all">
<link rel="stylesheet" href="css/responsive2.css" type="text/css" media="all">
<link rel="stylesheet" href="css/base-sizing.css" type="text/css" media="all">
<!-- Custom CSS Stylesheet (where you should add your own css rules) -->
<link rel="stylesheet" href="css/custom.css" type="text/css" />
<!-- Modernizr Library -->
<script type="text/javascript" src="js/modernizr.min.js"></script>
<!-- jQuery Library -->
<script type="text/javascript" src="js/jquery.js"></script>
</head>
<body class="">
<!-- Page Wrapper -->
<div id="page_wrapper">
<!-- Header style 1 -->
<header id="header" class="site-header style1 cta_button">
<!-- header bg -->
<div class="kl-header-bg"></div>
<!--/ header bg -->
<!-- siteheader-container -->
<div class="container siteheader-container">
<!-- top-header -->
<div class="kl-top-header clearfix">
<!-- HEADER ACTION -->
<div class="header-links-container ">
<ul class="topnav navRight topnav">
</ul>
<!-- header search
<div id="search" class="header-search">
<a href="#" class="searchBtn "><span class="glyphicon glyphicon-search icon-white"></span></a>
<div class="search-container">
<form id="searchform" class="header-searchform" action="https://www.google.ro/search" method="get" target="_blank">
<input type="hidden" id="q" name="q"/>
<input name="s" maxlength="20" class="inputbox" type="text" size="20" value="SEARCH ..." onblur="if (this.value=='') this.value='SEARCH ...';" onfocus="if (this.value=='SEARCH ...') this.value='';">
<button type="submit" id="searchsubmit" class="searchsubmit glyphicon glyphicon-search icon-white"></button>
</form>
</div>
</div>
<!--/ header search -->
</div>
<!--/ HEADER ACTION -->
<!--<div class="news blue">
<a href="Gibraltar Investor Compensation Scheme.docx"><span>Latest News</span><span class="text1" ><marquee>“In our efforts to gain further understanding of potential compensation for ‘eligible clients’ and improve future quarterly reporting requirements, we are requesting you to participate in this pilot survey. For a copy of the template, please click here:”</marquee></span></a>
</div> -->
<!-- HEADER ACTION left -->
<div cla
Open service 2606:4700:3036::ac43:b041:80 · gics.gi
2026-01-12 21:52
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 21:52:23 GMT
Content-Length: 0
Connection: close
Location: https://gics.gi/
X-Content-Type-Options: nosniff
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LANrE4HVMkWviS8u1PpuFVF8p2gi8jFgalmUFTrB0NXDA8INf5%2FZCpf5lqWH4oVQNJXHUQsAlHffqWO2JwU1mxiWTswtJniVh9RuRdKlCRIU"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=12,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bcfe1705ad17091-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · gensynfoundation.ai
2026-01-12 19:09
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 19:09:07 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Avchdc2%2FvkUAoinc%2BBH1j1%2Fu4LH9SQfcuJm440Yd9axxCMOKXbmlArit%2FDL95RIwRl8pv0APlS%2FN4%2BGx05F%2BvjRkGqZLo1f79u3Rmnom1vaZezRZyBE8IBYGn5FxAEM%3D"}]}
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Cache-Control: public, max-age=0, must-revalidate
Vary: Accept-Encoding
CF-RAY: 9bcef24b8867ec72-YYZ
Page title: Welcome to Cloudflare
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Cloudflare</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="content-wrapper" role="main">
<img src="logo.svg" alt="Cameron.ai Logo" class="w-auto mb-8 logo" />
<div class="mb-48-responsive">
<h1 class="text-4xl font-bold mb-4 break-words">
<span id="current-hostname"></span>
</h1>
<p class="text-2xl">
Hosted and protected by
<span class="font-semibold text-orange-500">Cloudflare</span>
</p>
</div>
<div class="mb-8">
<p class="mb-2">Register a domain name at cost</p>
<div class="domain-input-container">
<label for="domain-search" class="sr-only"
>Register a domain name at cost</label
>
<input
type="text"
id="domain-search"
placeholder="example.com"
class="domain-input"
aria-label="Enter a domain name to search"
name="domain_search"
/>
<button type="submit" class="register-button" id="search-button">
Search available domains
</button>
</div>
</div>
</div>
<script src="js/script.js"></script>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9bcef24b8867ec72',t:'MTc2ODI0NDk0Ny4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · gensynfoundation.ai
2026-01-12 19:09
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 19:09:07 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eKx0vMQyTASs2d%2FRgHO0s1oYMt3doFt9WEoqI2sfto%2BU9A5FtCbigncuFVfk5U11PR3eRu7zBLPHgvnwyhafM7UUCyl7Uozt%2BCn%2BOWdsOwizJ20wFfvyRwKt1eBxyD0%3D"}]}
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Cache-Control: public, max-age=0, must-revalidate
Vary: Accept-Encoding
CF-RAY: 9bcef24b491b6180-EWR
Page title: Welcome to Cloudflare
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Cloudflare</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="content-wrapper" role="main">
<img src="logo.svg" alt="Cameron.ai Logo" class="w-auto mb-8 logo" />
<div class="mb-48-responsive">
<h1 class="text-4xl font-bold mb-4 break-words">
<span id="current-hostname"></span>
</h1>
<p class="text-2xl">
Hosted and protected by
<span class="font-semibold text-orange-500">Cloudflare</span>
</p>
</div>
<div class="mb-8">
<p class="mb-2">Register a domain name at cost</p>
<div class="domain-input-container">
<label for="domain-search" class="sr-only"
>Register a domain name at cost</label
>
<input
type="text"
id="domain-search"
placeholder="example.com"
class="domain-input"
aria-label="Enter a domain name to search"
name="domain_search"
/>
<button type="submit" class="register-button" id="search-button">
Search available domains
</button>
</div>
</div>
</div>
<script src="js/script.js"></script>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9bcef24b491b6180',t:'MTc2ODI0NDk0Ny4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · gensynfoundation.ai
2026-01-12 19:09
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 19:09:07 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=F%2FDdwSQWpCYh1B4Gjp11imqrEuQgtVlR5zBL44mLnp0c4mPvyB3u1Xpxwahv6ybZYG3SzsbjP1FnvHnVPHOiiPBu%2F%2B69zh0RpCHfWGWv5a7JIWnRNr%2BVlzb86gsc0iQ%3D"}]}
cf-cache-status: DYNAMIC
Cache-Control: max-age=3600
Expires: Mon, 12 Jan 2026 20:09:07 GMT
Location: https://gensynfoundation.ai/
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcef24b4e437ac0-EWR
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>cloudflare</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · xytlzy.cn
2026-01-12 19:00
HTTP/1.1 403 Forbidden
Date: Mon, 12 Jan 2026 19:00:48 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UTMP%2FEG2nh5hNwq4ehp2xz8R3CfYmchW0Cfzk4%2FtBBjljc09HjKjI8q36i6EFk7XPm6mmg28rD19Y15MQwvezxsEL97M14Z6kqB13V%2BQgXZXpqNenw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcee6183efac4fb-EWR
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> xytlzy.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bcee6183efac4fb</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:800:10::b0a:b001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-revea
Open service 2606:4700:3036::ac43:b041:443 · xytlzy.cn
2026-01-12 19:00
HTTP/1.1 403 Forbidden
Date: Mon, 12 Jan 2026 19:00:48 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=InCmt3k5vCqzvPaqwp3vs6fEgnhsUgLQBEOAyY5iFNrjSBcknIpq4kTLMuS67ut1MLL3nLiEC1by634a%2FNMwv2QHO6mGtDJNNcZEgew%2Bov5BbT7BZQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcee6184e27db49-EWR
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> xytlzy.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bcee6184e27db49</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:400:d0::24fe:a001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:80 · xytlzy.cn
2026-01-12 19:00
HTTP/1.1 403 Forbidden
Date: Mon, 12 Jan 2026 19:00:47 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=a5R4oC3eGTAzSOiMSc8vPFSjTiMLHojfEBBndSFcf1Op8%2BtyUMO1ocwbzU1MR761U5lIk7mcelQNBvgGCLHDRSZVaaZA3yoI43IJJNTseoqCUf%2FYuQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcee6179a61d38e-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> xytlzy.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bcee6179a61d38e</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::dc2:2001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal"
Open service 2606:4700:3036::ac43:b041:8443 · 7pwin-com.com
2026-01-12 16:32
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 16:33:15 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bce0d7d397cdbf6-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · 7pwin-com.com
2026-01-12 16:32
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 16:32:54 GMT
Content-Length: 0
Connection: close
Location: https://7pwin-com.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=mXfheUEKBGsSnu%2Fp%2FAvpDYhbgBkBFyGfukX8mTtpJ1Qj927qqsD7vvFdSp2ns7ElgNDWCkKU%2FZoovpzSRQKhm6IeGkNzZqN3snwfFSm6XmjtdT5OA%2BrTY0o%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bce0d771b72dbab-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · 7pwin-com.com
2026-01-12 16:32
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 16:32:55 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=l5NNfo8ioFxH2HqMlPxVy7lUs7NuWi9k7GmlrdnuZQmhMOXeOLA9XavAWZHzXQF4HabOct2Jn5ZmKCuLabagS7JdfAjf%2F6iXPBhyzI2bonQzAE%2BHnNHHWv0%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bce0d778b01cd2a-LHR
alt-svc: h3=":443"; ma=86400
Page title: 7pwin | Seu app de cassino favorito, para jogar no Brasil
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Acesse o 7pwin, uma plataforma inovadora que oferece uma experiência completa em jogos online. Aproveite nossos bônus e comece a jogar hoje mesmo!"/>
<title>7pwin | Seu app de cassino favorito, para jogar no Brasil</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.webp" sizes="48x48">
<link rel="canonical" href="https://7pwin-com.com/" />
<meta property="og:image" content="https://7pwin-com.com/app.webp" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "7pwin",
"url": "https://7pwin-com.com/",
"description": "Acesse o 7pwin, uma plataforma inovadora que oferece uma experiência completa em jogos online. Aproveite nossos bônus e comece a jogar hoje mesmo!",
"logo": "https://7pwin-com.com/logo.webp",
"image": {
"@type": "ImageObject",
"url": "https://7pwin-com.com/app.webp"
}
}
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8ZRN1B74JN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8ZRN1B74JN');
</script>
</head>
<body>
<header class="header" id="header">
<div class="container">
<div class="header__wrapper">
<div class="header-toggler">
<div class="header-toggler__icon">
<div class="header-toggler__line header-toggler__line-top"></div>
<div class="header-toggler__line header-toggler__line-middle"></div>
<div class="header-toggler__line header-toggler__line-bottom"></div>
</div>
</div>
<a href="/" class="header__logo">
<picture>
<source srcset="/logo.webp" type="image/webp">
<img class="textSection__img" src="/logo.png" alt="7pwin">
</picture>
</a>
<nav class="header-menu">
<ul>
<li class="header-menu__item">
<a href="/app.html" class="header-menu__item-link">Aplicativo Móvel</a>
</li>
<li class="header-menu__item">
<a href="/promotion.html" class="header-menu__item-link">Promoções Especiais</a>
</li>
<li class="header-menu__item">
<a href="/plataforma.html" class="header-menu__item-link">Plataforma Oficial</a>
</li>
<li class="header-menu__item">
<a href="/login.html" class="header-menu__item-link">Área de Login</a>
</li>
<li class="header-menu__item">
<a href="/apostas.html" class="header-menu__item-link">Apostas ao Vivo</a>
</li>
<li class="header-menu__item">
<a href="/esporte.html" class="header-menu__item-link">Apostas em Esportes</a>
</li>
<li class="header-menu__item">
<a href="/confiavel.html" class="header-menu__item-link">Site Confiável</a>
</li>
</ul>
</nav>
<div class="header-info">
<a href="/ogfjognj.html" rel="noindex nofollow" class="header-info__log">Login</a>
<a href="/ogfjognj.html" rel="noindex nofollow" class="header-info__reg">Cadastro</a>
</div>
</div>
</div>
</header>
<main class="main">
<div class="container">
<div class="main-wrap">
<h1 class="main-wrap__title">7pwin | Seu app de cassino favorito, para jogar no Brasil</h1>
<div class="main-wrap__link">
<a href="/ogfjognj.html" rel="noindex nofollow" class="main-wrap__link__btn">REGISTRO 7pwin</a>
</div>
<div class="main-wrap__img">
<p>Descubra a emoção de jogar no 7pwin, onde as melhores promoções e bônus esperam por você! Ao se cadastrar, você é recebido com um bônus de boas-vindas que aumenta suas chances de ganhar. Com promoções regulares e bônus de recarga, o 7pwin garante que você tenha sempre oportunid
Open service 2606:4700:3036::ac43:b041:443 · hahabags.ru
2026-01-12 14:40
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 14:40:38 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
alt-svc: h3=":443"; ma=86400
location: https://www.ihahabags.ru/
Server: cloudflare
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Strict-Transport-Security: max-age=15552000; includeSubDomains; preload
X-Content-Type-Options: nosniff
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=VXj1FsHalBnm7YU%2Bin6P1sUpFrTASrwXd7Q63rJzeMf%2B5A9nqECg3TYI0oSxqRyNqoo3RGtWFaLLVLJpbBaV29WRv0yBfMQKpUBOy0Z1Ko0RtFe9vo1o"}]}
CF-RAY: 9bcd68fe7f12d2a0-FRA
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · hahabags.ru
2026-01-12 14:40
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 14:40:38 GMT
Content-Length: 0
Connection: close
Location: https://hahabags.ru/
X-Content-Type-Options: nosniff
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Lv06jDmcOtBmbpYbAkwZGXL49%2FoCG0hDV8z3KDiasNLUGZubU9LDcwxS74X3REYhHrF%2FyDsh6%2BR2nJOAqbc58DJeJZOJVeDB6krHw8gv3nXjQGA8cBtP"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcd68fdc89a9a0e-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · hahabags.ru
2026-01-12 14:40
Open service 2606:4700:3036::ac43:b041:443 · 99gameslogin.in.net
2026-01-12 14:23
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 14:23:24 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
strict-transport-security: max-age=31536000
alt-svc: h3=":443"; ma=86400
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=htMMdlurmTNs4wk6Qz1Hy8SjZPlDmwJjNB6QMGl6VBw5hEgYrQRWKcLa9bHx%2FlWWMvitDMKSwGvyjNm3wFXj71dfSulE%2F6VYI7BuR7lp6jt%2BwBpLUPNHrVhJZK30Os0%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=18,cfOrigin;dur=821
CF-RAY: 9bcd4fbd3c9f289f-SIN
Page title: 99 games login
<!DOCTYPE html><html lang="en-IN"><head>
<meta charset="UTF-8"/>
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="format-detection" content="telephone=no"/>
<link rel="canonical" href="https://99gameslogin.in.net"/>
<title>99 games login</title>
<meta name="description" content="99 games login is an India-focused online casino & sports platform. Enjoy cricket betting, Teen Patti, Andar Bahar, slots & live casino with instant UPI deposits and fast withdrawals. Secure play, daily promos, and 24/7 support."/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="https://99gameslogin.in.net"/>
<meta property="og:title" content="99 Games Login • India Login & Register | UPI Fast Withdrawals – 99 games login"/>
<meta property="og:description" content="Play in India with 99 games login: cricket, Teen Patti, Andar Bahar, slots & live casino. UPI deposits, quick withdrawals, and daily promotions."/>
<meta property="og:site_name" content="99 games login"/>
<meta property="og:image" content="https://99gameslogin.in.net/static/qsljb3/logo.png"/>
<meta name="robots" content="noarchive"/>
<script type="application/ld+json">
{
"@context":"http://www.schema.org",
"@type":"BreadcrumbList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"name":"99 games login",
"item":"https://99gameslogin.in.net"
}
]
}
</script>
<link rel="shortcut icon" href="https://99gameslogin.in.net/static/qsljb3/logo.png" type="image/x-icon"/>
<link rel="icon" type="image/png" sizes="32x32 48x48" href="https://99gameslogin.in.net/static/qsljb3/logo.png"/>
<link rel="icon" type="image/png" sizes="192x192" href="https://99gameslogin.in.net/static/qsljb3/logo.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="https://99gameslogin.in.net/static/qsljb3/logo.png"/>
<link href="/static/qsljb3/style.css" rel="stylesheet"/>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header__inner">
<div class="logo">
<a href="https://99gameslogin.in.net">
<img src="https://99gameslogin.in.net/static/qsljb3/logo.png" width="125" height="50" alt="99 games login"/>
</a>
</div>
<input type="checkbox" id="menu-toggle" class="menu-toggle"/>
<label for="menu-toggle" class="burger">
<span></span><span></span><span></span>
</label>
<nav class="main-nav">
<ul class="main-nav__list">
<li><a href="https://99gameslogin.in.net">99 games login</a></li>
<li><a href="https://99gameslogin.in.net/casino.html">Casino</a></li>
<li><a href="https://99gameslogin.in.net/download.html">Download App</a></li>
<li><a href="https://99gameslogin.in.net/promo.html">Promotions</a></li>
<li><a href="https://99gameslogin.in.net/slot.html">Slots</a></li>
</ul>
</nav>
<div class="header-buttons right">
<a class="login-btn" target="_blank" href="/tz.html">Log In</a>
<a class="registr-btn" target="_blank" href="/tz.html">Register</a>
</div>
</div>
</header>
<main>
<div class="entry-content">
<section class="main-section">
<h1 class="main-section__title">99 games login</h1>
<p align="center">
<a href="/tz.html"><img src="https://99gameslogin.in.net/static/qsljb3/logo.png" alt="99 games login"/></a>
</p>
<p>Bem-vindo ao 99 games login, o destino da Índia para cassino online e apostas esportivas. Aposte em críquete e nas principais ligas, jogue Teen Patti, Andar Bahar, Rummy, Aviator e milhares de slots. Aproveite depósitos instantâneos via UPI e saques rápidos, promoções diárias e suporte 24 horas por dia, 7 dias por semana.</p>
<a class="main-button" target="_blank" href="/tz.html">🔥 Register & Claim Bonus 🔥</a>
</section>
<section class="content-table content-table__table
Open service 2606:4700:3036::ac43:b041:8443 · 99gameslogin.in.net
2026-01-12 14:23
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 14:23:43 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19469,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcd4fbfcd315163-YYZ alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · 99gameslogin.in.net
2026-01-12 14:23
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 14:23:23 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://99gameslogin.in.net/
Strict-Transport-Security: max-age=31536000
Alt-Svc: h3=":443"; ma=86400
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=14,cfOrigin;dur=127
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fhJm8jEMATwGpUfQLyyWj3na6HAHp3VvNhiTyXvEhI8dpFbCsdXWhDQ7s3ZkPmUYOlvQd78EOiJRpvDhr9sMwfRGOPYgYdI2lUds6aimjLMHSmyMNjqypd5iICcNwho%3D"}]}
CF-RAY: 9bcd4fb97908aac6-YYZ
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"f2692bbfad0947a5b7b5b7744452047f","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · webmail.boschshop.com.br
2026-01-12 13:42
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 13:42:26 GMT
Content-Length: 0
Connection: close
Location: https://webmail.boschshop.com.br/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rJjRBv8%2Fv1lEsh2X01lJ95pNFW83SyrNiWGiPhAI8YUeIKbdsQqz5AzFGvFWg8XmBMdMEoAnsxlvIH9iefn7YlBN4HO4fP7qJjwGChamwpeNcRHjI4Md5F8lnsUH2iMIAjg3bA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcd13c0fea05d50-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · webmail.boschshop.com.br
2026-01-12 13:42
HTTP/1.1 520 <none> Date: Mon, 12 Jan 2026 13:42:27 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcd13c38c6a03cd-FRA alt-svc: h3=":443"; ma=86400 error code: 520
Open service 2606:4700:3036::ac43:b041:8443 · webmail.boschshop.com.br
2026-01-12 13:42
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 13:42:46 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcd13c5db593803-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · www.boschshop.com.br
2026-01-12 13:30
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 13:30:12 GMT
Content-Length: 0
Connection: close
Location: https://www.boschshop.com.br/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ycP7qIYZaHXgJR4f1XT4zFXqU25NNfHsB15iyTmQgq4i5jRbO3VBgAaZVz0fqZ8F8jrP7kQDMQ0DctuLIEYsJEQiD2TsxaCucmRddlpU2PmgOw87kMJYEzx%2BytjV2tE8"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=14,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bcd01d4cc38ab3c-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · www.boschshop.com.br
2026-01-12 13:30
HTTP/1.1 520 <none> Date: Mon, 12 Jan 2026 13:30:13 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcd01d7be1c78f2-LHR alt-svc: h3=":443"; ma=86400 error code: 520
Open service 2606:4700:3036::ac43:b041:8443 · www.boschshop.com.br
2026-01-12 13:30
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 13:30:32 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcd01d9f91de7b6-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · localsip.info
2026-01-12 13:04
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 13:04:32 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19376,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bccdbc0dcae42d5-EWR alt-svc: h3=":443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · localsip.info
2026-01-12 13:04
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 13:04:32 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19270,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bccdbc0399343a7-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · ftp.boschshop.com.br
2026-01-12 12:54
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 12:54:59 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19714,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcccdc009eaaa9d-YYZ alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · ftp.boschshop.com.br
2026-01-12 12:54
HTTP/1.1 520 <none> Date: Mon, 12 Jan 2026 12:54:38 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=142,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcccdbc9d5a78a5-YYZ alt-svc: h3=":443"; ma=86400 error code: 520
Open service 2606:4700:3036::ac43:b041:80 · ftp.boschshop.com.br
2026-01-12 12:54
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 12:54:38 GMT
Content-Length: 0
Connection: close
Location: https://ftp.boschshop.com.br/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=te9yLVLwy58cHPQ6fLuWqAmGnamj9ao5BnNGLNVKXvSN6FM6n57fsrRqt8rrgaIV6TGSMMPYQtWz%2FxHWAsoV%2FPGSnVbnCY2ZSFZOVJaGbmLhzGym2Bey8SCZVTZkwz43"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcccdb88d3d60de-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · cpanel.boschshop.com.br
2026-01-12 12:38
HTTP/1.1 520 <none> Date: Mon, 12 Jan 2026 12:38:37 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=411,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bccb644dd51ac7c-YYZ alt-svc: h3=":443"; ma=86400 error code: 520
Open service 2606:4700:3036::ac43:b041:80 · cpanel.boschshop.com.br
2026-01-12 12:38
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 12:38:36 GMT
Content-Length: 0
Connection: close
Location: https://cpanel.boschshop.com.br/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=x3wLQMfp9MROtIDedQrua%2F33CZrynsbtnGGKs48b6ZBkTdudUduutrAIwIiLLyE4DjwKyPn2WriZyPzJCLpsdbyzQlGJHJiG0%2Fjej3Qkg59vIXvgpYJqUuUoB%2FRCrkhTVrpA"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=12,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bccb6405abdcdd2-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · cpanel.boschshop.com.br
2026-01-12 12:38
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 12:38:57 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19496,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bccb645881e42f8-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · boschshop.com.br
2026-01-12 12:14
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 12:15:07 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcc935c59a13a79-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · boschshop.com.br
2026-01-12 12:14
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 12:14:46 GMT
Content-Length: 0
Connection: close
Location: https://boschshop.com.br/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=LNKisWcjFU353QZ1gbNLxbIp2Vet7ObJK%2FiJnAm%2B6eqeLOh2KqkJHCjrHktST9uhT%2FKUikPBloKfszSZaJM%2F1ZEXWtf52NBqgaxQR%2Bm9UVhq9qVGzqdpstPM7B8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=10,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bcc9355cdecc470-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · boschshop.com.br
2026-01-12 12:14
HTTP/1.1 520 <none> Date: Mon, 12 Jan 2026 12:14:47 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcc935a3e873831-FRA alt-svc: h3=":443"; ma=86400 error code: 520
Open service 2606:4700:3036::ac43:b041:8443 · abcprojekt.com.pl
2026-01-12 10:34
HTTP/1.1 521 <none> Date: Mon, 12 Jan 2026 10:34:46 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=183,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcc00d64ae91d41-SJC alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · abcprojekt.com.pl
2026-01-12 10:34
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 10:34:46 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Mon, 01 Apr 2019 21:41:17 GMT
Vary: Accept-Encoding
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=5,cfOrigin;dur=177
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=8xLRdbqLy%2FDnnecQQDZNz3aHZgX6rT8iqa2OlpQqlBEBJaDiqlRWQvGZ7mPzGbyr%2Bpc%2FQQLOsttP6dB5wteiV1XbbpO%2FNRam2M5d2D5puepSNMMtOTDxzzsS9aCQ"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bcc00d76849552b-SJC
alt-svc: h3=":443"; ma=86400
Page title: ABC Projekt • Pracownia projektowa • mgr inż Grzegorz Dubik
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>ABC Projekt • Pracownia projektowa • mgr inż Grzegorz Dubik</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/loader.css" rel="stylesheet">
<link href="css/stylish-portfolio.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!--link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css"-->
<link href="https://fonts.googleapis.com/css?family=Rokkitt" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="loading">
<img id="loading-image" src="./img/logo_big.PNG" alt="Loading..." style="fill:white;stroke:black;stroke-width:5" />
<div class="loader">Loading...</div>
</div>
<!-- Navigation -->
<a id="menu-toggle" href="#" class="btn trans btn-dark btn-lg toggle"><i class="fa fa-bars"></i></a>
<nav id="sidebar-wrapper" class="trans">
<ul class="sidebar-nav">
<a id="menu-close" href="#" class="btn trans btn-light btn-lg pull-right toggle"><i class="fa fa-times"></i></a>
<li class="sidebar-brand trans">
<img id="logo_big" src="./img/logo_big.PNG" alt="ABC" width="60" height="30">
</li>
<li>
<a class="trans" href="#top" onclick=$("#menu-close").click();>START</a>
</li>
<li>
<a class="trans" href="#about" onclick=$("#menu-close").click();>O FIRMIE</a>
</li>
<li>
<a class="trans" href="#portfolio" onclick=$("#menu-close").click();>OFERTA</a>
</li>
<li>
<a class="trans" href="#services" onclick=$("#menu-close").click();>ABC INWESTORA</a>
</li>
<li>
<a class="trans" href="#contact_map" onclick=$("#menu-close").click();>MAPA DOJAZDUU</a>
</li>
<li>
<a class="trans" href="#contact" onclick=$("#menu-close").click();>KONTAKT</a>
</li>
</ul>
</nav>
<nav id="sidebar-wrapper1" class="trans">
<h4 id="mainFrame_title" class="trans pull-left" style="min-width:230px;margin-left:15px;position:fixed;color:white"></h4>
<a id="menu-close1" href="#" class="btn trans btn-light btn-lg pull-right toggle"><i class="fa fa-times"></i></a>
<iframe id="mainFrame" src=""></iframe>
</nav>
<!-- Header -->
<header id="top" class="header img-cover">
<!--video autoplay>
<source src="./vid/Aerial%20Shot%20Of%20City.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video-->
<div class="text-vertical-center trans typejs1" style="color:#ffffff;text-shadow: 0 0 10px #000000;font-weight:700">
<a href=""><img id="logo_big" src="./img/logo_big.PNG" alt="ABC" width="200" height="100"></a>
<h2>ABC Projekt</h2>
<h3>Pracownia projektowa - mgr inż Grzegorz Dubik</h3>
<h4>rok założenia: 2000</h4>
<a href="#about" class="btn trans btn-dark btn-lg">Dowiedz się więcej</a>
</div>
</header>
<!-- About -->
<section i
Open service 2606:4700:3036::ac43:b041:80 · abcprojekt.com.pl
2026-01-12 10:34
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 10:34:46 GMT
Content-Length: 0
Connection: close
Location: https://abcprojekt.com.pl/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=3KT0Nr4pJMtwkekoaPS5khFP%2BOIJe1rWFa%2ButFANsOiN77l02eRRlaKBB%2BzMTa4FlFwGlhE08tLgTzOpGAezRIKo16RdgOddSokyqmK68yvgBQ4zLFQ9pk9vf2OJ"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bcc00d58a43cc7e-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · itlwgc.cn
2026-01-12 10:26
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 10:26:49 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: http://www.itlwgc.cn/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JUPH3d3bvjAXuj%2FdHMDFRAVeiCeP7%2BOYkZe0n5H%2F2ENK9kTAu8fqoNCqPvMQOVTg%2Bz0%2Blb3OOIh5jzY%2FjvJyBs6dYVB41LvzX3bqB8xJV0HrsM4%3D"}]}
CF-RAY: 9bcbf5334ce6ec6e-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · itlwgc.cn
2026-01-12 10:26
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 10:26:49 GMT
Content-Length: 0
Connection: close
Location: https://itlwgc.cn/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=hleJYUq96Yy0ZaAdcst6OplB8%2F7qVWEjgxeP8li%2F%2B0KAJRlHMNtmti8lxqRj4du2rSDXR0%2B6pgWsyaSieYAhxwM%2BuVLUu5yup%2F4FHTBEZJ1KDUhORA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcbf5320caad840-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · itlwgc.cn
2026-01-12 10:26
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 10:27:09 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcbf5376f47145d-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · alitrain.cn
2026-01-12 10:21
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 10:21:43 GMT
Content-Length: 0
Connection: close
Location: https://alitrain.cn/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=HMd1js7lFX53chvIWccQCYq3UiuhPopMJmAjm6JFZ7cax%2FnzJrzUCnLpiqsT1a033KOj6a4QSZtjcIs8triPu21oPX%2FgKRwX74Q0wbw94YczU0YgnkK0"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bcbedbc3adaabf7-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · alitrain.cn
2026-01-12 10:21
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 10:22:04 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcbedc23ef4957e-LHR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · alitrain.cn
2026-01-12 10:21
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 10:21:45 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: http://www.alitrain.cn/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GgZpaAZ%2BhCIuKRl3iEX73P3uJiWRDXHoSRLFjk06LklwjaObfZU3KE0oHZQJ7qN1upUWOY2kCilDLpO5HgVSpr1Tl4sP9O4cv1cNyEqzFnjRqxgr4Cgz"}]}
CF-RAY: 9bcbedc218b8663f-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · vodka.uk.com
2026-01-12 09:55
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 09:55:22 GMT
Content-Length: 0
Connection: close
Location: https://rur.uk.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AqS0z%2BPLi3nPGHEMsI%2BMwC76UH3ifCv0YxlOorucBv4g47%2FbWllq3lmq8wWq6wQS%2B68QWtskRveIWWSlgyIORPQUbT9sgPW88zjl7%2FjLxIHUSpferFrALA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcbc7237b885d81-FRA
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · vodka.uk.com
2026-01-12 09:55
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 09:55:22 GMT
Content-Length: 0
Connection: close
Location: https://rur.uk.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=4TkQCAclgTVL%2Fu1Z60Jix60pLEs%2F9gvIgm8QrszVWSw1r9wCYaRsu4DUOE4vY4Anai28tQPzaOZTfL%2FhrnpUy4RQUhojn7xuDO7n1UNj2lrDNVwFnZj4AA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcbc7236c9a37e4-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · vodka.uk.com
2026-01-12 09:55
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 09:55:22 GMT
Content-Length: 0
Connection: close
Location: https://rur.uk.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bW9J4dvn1GBxrmqlQsmQtK3wwUHrv71cLdFMQ93PNb03TophgztpLgS9aykgg5YE73Z%2B2TqHN2Q77TtfuxP%2B0wlwQy7cVBLnGmbIpgZUUnzjASmrobnwDA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcbc7236d9adbb7-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · wyzmaster.cfd
2026-01-12 09:44
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 09:44:45 GMT
Content-Length: 0
Connection: close
Location: https://wyzmaster.cfd/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=nRf8WwHowZdA59oc%2BApHQyHZ0hpdYGiZK8f40tILxH2pw0lEDQXwiUzASxog2icdbXabajo%2F0EdkQwpsgzbMMvFXWWaqsaL%2BVs%2FZjp22%2BnmCvyPEofi6K9o%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcbb797091b4a19-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · wyzmaster.cfd
2026-01-12 09:44
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 09:45:06 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19444,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcbb79d4defcca0-YYZ alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · wyzmaster.cfd
2026-01-12 09:44
HTTP/1.1 204 No Content
Date: Mon, 12 Jan 2026 09:44:46 GMT
Connection: close
Server: cloudflare
Cache-Control: no-cache, private
Cache-Control: public, max-age=31536000
x-frame-options: SAMEORIGIN
x-content-type-options: nosniff
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=7,cfOrigin;dur=113
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JeHEGmZt5IPTwGlUMmlUt%2FyNJhg%2F1Y9PwjqGQppdhKla1sJRtuL9JI3SFOoJw9oFDqXNzDhoOd1VlbbNgX2MbUNpAHFfxJLbxgBE6azzRjyh5PMs6TuD"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9bcbb798efc936b1-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · xivu.shop
2026-01-12 08:52
HTTP/1.1 523 <none> Date: Mon, 12 Jan 2026 08:53:00 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcb6bc3888891dd-FRA alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:443 · xivu.shop
2026-01-12 08:52
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 08:53:05 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Set-Cookie: PHPSESSID=3sb3d7dnvmh1t0bblot11jg9b5; path=/
Set-Cookie: server_name_session=e0b5e0e7028604bdd29c5b41df0a70f0; Max-Age=86400; httponly; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Pragma: no-cache
Cache-control: private
X-Powered-By: ThinkPHP
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=FBnWMo%2B6C%2FneGj0NSAXwFvW1PDVPhY9Pf4ID%2F%2Flz4VQRnyc5HaBf7Rl6vfE00mzYGNozkVOdVtffqzctU6asM20xgsmZOJjfaiZ6uQ2YDkp8393Tyw%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bcb6bc85f2dbb01-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · xivu.shop
2026-01-12 08:52
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 08:52:59 GMT
Content-Length: 0
Connection: close
Location: https://xivu.shop/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JLV6QHl8evpLycENJYfZ3CjIb85WXF1JHJIxv2RTixlTph1ea9CLnwxMxGny8%2FxnIjGx%2FsUWcOrFmciPcUXmdhv3QI9Y6FDfUe3HYO90ChocIryIqg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcb6bc22e2218e3-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · nutokay9.pro
2026-01-12 08:20
HTTP/1.1 404 Not Found
Date: Mon, 12 Jan 2026 08:20:15 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-Powered-By: PHP/7.4.33
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=XADcOOTBw7NEYi08AYZ8kcVIBA49lZ0eIA%2BWYN3G2xhQXYRnxMuGaLHzz%2BgI28L9SF0anUS4XT%2FzITLfvfwJwI4bO%2Bs0CclMjMXg3%2FetjvE6yPXJTLSI%2BA%3D%3D"}]}
cf-cache-status: DYNAMIC
vary: accept-encoding
CF-RAY: 9bcb3bcaecd308b9-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · nutokay9.pro
2026-01-12 08:20
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 08:20:15 GMT
Content-Length: 0
Connection: close
Location: https://nutokay9.pro/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=w4OyhOcklsZsSEiPn8IXOAgADDfLVlwkHW%2FEWDkz80ksMk3M%2B9kVVI%2BNFJUkMc%2FOxs0a6kpAhPVAHb6oJwRCKZTURHt34Dq11KZm3PMpHU1PZ3VELB2zHw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bcb3bca99cbe904-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · nutokay9.pro
2026-01-12 08:20
HTTP/1.1 523 <none> Date: Mon, 12 Jan 2026 08:20:15 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcb3bcca86bce3d-SIN alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:8443 · chiswickdrains.co.uk
2026-01-12 08:03
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 08:04:18 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19293,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bcb23f438d68c48-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · chiswickdrains.co.uk
2026-01-12 08:03
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 08:03:58 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Location: http://www.chiswickdrains.co.uk/
Server: cloudflare
X-Powered-By: ASP.NET
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=8,cfOrigin;dur=87
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oyN615k8fO1h75%2FFWXmvfKkbG3ZoYPmkV8QymK50L6vLDJqme%2F%2FXmzt6DFDIp%2BbPuK4ANIZOcvbXJHmsrpFerdvul5yDYHSRMHdWBOxRCUhwVimf4QCxaMJ51inVrJr0"}]}
CF-RAY: 9bcb23ef0c5eaafd-YYZ
alt-svc: h3=":443"; ma=86400
Page title: Document Moved
<head><title>Document Moved</title></head>
<body><h1>Object Moved</h1>This document may be found <a HREF="http://www.chiswickdrains.co.uk/">here</a><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"4e120e296f304b2e8e25bd3baacc0e09","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
Open service 2606:4700:3036::ac43:b041:80 · chiswickdrains.co.uk
2026-01-12 08:03
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 08:03:57 GMT
Content-Length: 0
Connection: close
Location: https://chiswickdrains.co.uk/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=em1kryKaXEh4QJIwgLMRpEboqRzxHWw4qQ%2FwXtchOHPzqtIs1EgNtKCkX4U6DJNCYVbJVFCj0vDCdmRw2eiM3%2FdoVxnDCjfCneVRTeKL%2FuhiT41ZCxewla9muQgQh4wq"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bcb23ed8f1c5e71-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · kimo-therapy.com
2026-01-12 06:19
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 06:19:24 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
x-powered-by: PHP/8.3.29
x-powered-by: PleskLin
last-modified: Mon, 09 Jun 2025 14:11:47 GMT
vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=6WgMljUcx9djl51VKZHWgjzIGR4tDIu%2BXwYVs3CttPVTBG5jxUCwy307JOuKhLhbU8xcCD1OuEA%2FmYeUfZbjDMG1YQHD2kqPqv1FcOmv9nR0c7%2BDjEmgYoPaKR0%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=254,cfOrigin;dur=6770
CF-RAY: 9bca8a99a9aeb7dd-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · kimo-therapy.com
2026-01-12 06:19
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 06:19:16 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://kimo-therapy.com/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UXIFSKE7G9gLXYDrYnY8NfUMMp605pbhktwtnKaJ4N36P9pmEpunDW5Gn5z5iL%2BD%2BSawDGJ6AjroEmuvCPG71EMWaLzNV8yTXB3rmOR6o4atN48ouu9mxSWdxPQ%3D"}]}
CF-RAY: 9bca8a93a87ad37a-FRA
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · kimo-therapy.com
2026-01-12 06:19
HTTP/1.1 303 See Other
Date: Mon, 12 Jan 2026 06:19:16 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
location: https://kimo-therapy.com/login.php
expires: Fri, 28 May 1999 00:00:00 GMT
last-modified: Mon, 12 Jan 2026 06:19:16 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
pragma: no-cache
p3p: CP="NON COR CURa ADMa OUR NOR UNI COM NAV STA"
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
x-content-type-options: nosniff
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=V4qTtbWo8r0PT9qtCweX9%2BLSfbZZdsZ6ypHPJ6TYGFeBKwu6fTf0SiZMbr2ecPThwh3HilgWTGGxgru1HeaxtIqA%2Fkyrb%2FvZK9eG1UsYg7znyUzWJ6ubd7koRB8%3D"}]}
CF-RAY: 9bca8a930c6f664c-AMS
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · yanai.ca
2026-01-12 06:15
HTTP/1.1 302 Found
Date: Mon, 12 Jan 2026 06:16:01 GMT
Content-Length: 5
Connection: close
Location: https://yanai.ca/
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=F%2B3YzNVkCmgnH6Iv%2Fl0kTJv3LQz579Fv9uA61nuCnXB6kzKvEWXBS%2BTlK%2B7qr5U9Ln6rvMN36zMLI38K%2BQLZl7BNtithJuGxn3Yh6vFUZtRdE4Zj"}]}
Server: cloudflare
CF-RAY: 9bca85cf6cfd79c8-LHR
alt-svc: h3=":443"; ma=86400
Found
Open service 2606:4700:3036::ac43:b041:443 · yanai.ca
2026-01-12 06:15
HTTP/1.1 200 OK
Date: Mon, 12 Jan 2026 06:16:01 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=gyw%2F7lJ25X92cTEXfJ9Ql5r7fgzOowkHEAJjcbknhxectszNllheOnLHNZQESweLbxHcIsKqM%2FWOlLEcl7iUltVCeOwsAI4wDI0RaYMMbx4oDc6H"}]}
Last-Modified: Mon, 11 Aug 2025 13:18:42 GMT
Server: cloudflare
Vary: Accept-Encoding
X-Process-Time: 0
cf-cache-status: DYNAMIC
CF-RAY: 9bca85cf6bd4d8b6-LHR
alt-svc: h3=":443"; ma=86400
Page title: Open WebUI
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="/static/favicon.png" />
<link rel="icon" type="image/png" href="/static/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
<link rel="shortcut icon" href="/static/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Open WebUI" />
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover"
/>
<meta name="theme-color" content="#171717" />
<meta name="robots" content="noindex,nofollow" />
<meta name="description" content="Open WebUI" />
<link
rel="search"
type="application/opensearchdescription+xml"
title="Open WebUI"
href="/opensearch.xml"
/>
<script src="/static/loader.js" defer></script>
<link rel="stylesheet" href="/static/custom.css" />
<script>
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
}
</script>
<script>
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
(() => {
const metaThemeColorTag = document.querySelector('meta[name="theme-color"]');
const prefersDarkTheme = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (!localStorage?.theme) {
localStorage.theme = 'system';
}
if (localStorage.theme === 'system') {
document.documentElement.classList.add(prefersDarkTheme ? 'dark' : 'light');
metaThemeColorTag.setAttribute('content', prefersDarkTheme ? '#171717' : '#ffffff');
} else if (localStorage.theme === 'oled-dark') {
document.documentElement.style.setProperty('--color-gray-800', '#101010');
document.documentElement.style.setProperty('--color-gray-850', '#050505');
document.documentElement.style.setProperty('--color-gray-900', '#000000');
document.documentElement.style.setProperty('--color-gray-950', '#000000');
document.documentElement.classList.add('dark');
metaThemeColorTag.setAttribute('content', '#000000');
} else if (localStorage.theme === 'light') {
document.documentElement.classList.add('light');
metaThemeColorTag.setAttribute('content', '#ffffff');
} else if (localStorage.theme === 'her') {
document.documentElement.classList.add('her');
metaThemeColorTag.setAttribute('content', '#983724');
} else {
document.documentElement.classList.add('dark');
metaThemeColorTag.setAttribute('content', '#171717');
}
window.matchMedia('(prefers-color-scheme: dark)').addListener((e) => {
if (localStorage.theme === 'system') {
if (e.matches) {
document.documentElement.classList.add('dark');
document.documentElement.classList.remove('light');
metaThemeColorTag.setAttribute('content', '#171717');
} else {
document.documentElement.classList.add('light');
document.documentElement.classList.remove('dark');
metaThemeColorTag.setAttribute('content', '#ffffff');
}
}
});
const isDarkMode = document.documentElement.classList.contains('dark');
const logo = document.createElement('img');
logo.id = 'logo';
logo.style =
'position: absolute; width: auto; height: 6rem; top: 44%; left: 50%; transform: translateX(-50%); display:block;';
logo.src = isDarkMode ? '/static/splash-dark.png' : '/static/splash.png';
document.addEventListener('DOMContentLoaded', function () {
const splash = document.getElementById('splash-screen');
if (splash) splash.prepend(logo);
});
})();
</script>
<title>Open WebUI</title>
<link rel="modulepreload" href="/_app/immutable/entry/start.Bq_QCbsm.js">
<link rel="modulepreload" href="/_app/immutable/chunks/gpFbC-Yc.js">
<link rel="modulepreload" href="/_app/immutable/chunks/BCvnKofF.js">
<link rel="moduleprelo
Open service 2606:4700:3036::ac43:b041:8443 · yanai.ca
2026-01-12 06:15
HTTP/1.1 522 <none> Date: Mon, 12 Jan 2026 06:16:21 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bca85d2bcb166c3-AMS alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · shellnet.uk.com
2026-01-12 05:30
HTTP/1.1 530 <none> Date: Mon, 12 Jan 2026 05:30:42 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 16 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=22,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bca436dc92dce3a-SIN alt-svc: h3=":443"; ma=86400 error code: 1016
Open service 2606:4700:3036::ac43:b041:80 · shellnet.uk.com
2026-01-12 05:30
HTTP/1.1 301 Moved Permanently
Date: Mon, 12 Jan 2026 05:30:42 GMT
Content-Length: 0
Connection: close
Location: https://shellnet.uk.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ifXUBMWZ6jN%2Fzm9bu2CqVlrKg%2BU40t%2FomMIdu5%2Fg0TMbjhDNwFH%2B5kub8eiXNwYJs7gF16qNJUMxr11U8GvwrxKUwBT1OKr1%2FvhpXOe2yI%2F8zr68cdtXWQncgw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bca436d3da937a1-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · shellnet.uk.com
2026-01-12 05:30
HTTP/1.1 530 <none> Date: Mon, 12 Jan 2026 05:30:41 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 16 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bca436c1f9c5d7d-FRA alt-svc: h3=":8443"; ma=86400 error code: 1016
Open service 2606:4700:3036::ac43:b041:8443 · wangdachui.eu.org
2026-01-11 23:31
HTTP/1.1 400 Bad Request
Date: Sun, 11 Jan 2026 23:31:25 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 29
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AcxyUSGn85KNDr7FXHpkWqNZdFVN5V3J8vV%2FbLObA8UsZbu9e%2Bf2%2BGRqmqeDb3dptKAIkU578tQREaoF5E2R3CLN%2BcKK1w4ILkLGsnCE1bIl9SkAB%2BFasZgCmADJ"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc835220abec472-EWR
alt-svc: h3=":8443"; ma=86400
Expected WebSocket connection
Open service 2606:4700:3036::ac43:b041:80 · wangdachui.eu.org
2026-01-11 23:31
HTTP/1.1 400 Bad Request
Date: Sun, 11 Jan 2026 23:31:25 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 29
Connection: close
CF-RAY: 9bc8352119052953-SJC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=zDBKM6TIphUN1wezuFQNJ3VaZkyzVimdeglq%2FaYFT5gDRdhjj9WUpF5%2BMSX1JLQEGsn0ypzThP82xDFL39gRpTJBtozaEHBW5esK3FszOvxgNq9O%2BQZj4tGQxguEh%2Bu%2BGPkmoGFKqH%2Fkvk0lp%2FgMQg%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
alt-svc: h3=":443"; ma=86400
Expected WebSocket connection
Open service 2606:4700:3036::ac43:b041:443 · wangdachui.eu.org
2026-01-11 23:31
HTTP/1.1 400 Bad Request
Date: Sun, 11 Jan 2026 23:31:24 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 29
Connection: close
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jzg4miyohmgVaIwdHIrMqliVGPL2E5r4yFoEV5VHEWkkSsER%2BtzSa2R8Qcg%2BH9fsJRCjgTuMzg0nqE6KuNEN9KkbJTqwoS4JQZyjxqqnZj5TPDu82jWU5RzUmQLz"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc83520de5b418f-LHR
alt-svc: h3=":443"; ma=86400
Expected WebSocket connection
Open service 2606:4700:3036::ac43:b041:8443 · cupe3631.ca
2026-01-11 22:46
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 22:46:31 GMT
Content-Length: 0
Connection: close
Location: https://younified.ca/landing?uid=679111f09e526ff442fcff6a
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=P6HBh%2BtrFxUGsaj30h%2BwdlMDAAvv2uz6yGm7jvKZtWIHlHa8aYwl4GYiyKRn1JpFL2FOt%2F%2FkThCA96voJ2elCv6U9OnCZxM4XnX8FLb5yw7o%2Fus9yRc5"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc7f35e283cfd20-SIN
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · cupe3631.ca
2026-01-11 22:46
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 22:46:31 GMT
Content-Length: 0
Connection: close
Location: https://younified.ca/landing?uid=679111f09e526ff442fcff6a
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=581dc7LQvlT8kjxWHT%2BXU6fCOV0WNiHFHsvwjawa92icuW4F9NlY3U2yhkPcbRZXbAVsAoHbSN7P1kCAud7bB8L%2Fsa%2F1rCgQ8ma6tKyH%2BqR6XiV%2F9A5C"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc7f35dfc35592d-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · cupe3631.ca
2026-01-11 22:46
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 22:46:31 GMT
Content-Length: 0
Connection: close
Location: https://younified.ca/landing?uid=679111f09e526ff442fcff6a
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=HTJXjdC9ni4UlxsNRakgAWJOZm0wnBNsHwh%2F377V5KL7q0zkSfK5tavvBsMNOZ8jOyaNtGFMVtU9xU57wBFt4atV2NgrX7W27kro2KeDr4ma59s6m6dN"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc7f35d09978e83-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · marriagechat.ai
2026-01-11 20:56
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 20:56:13 GMT
Content-Length: 0
Connection: close
Location: https://seodomain.ai/name/marriagechat-ai
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=xT2w87H9Zravui4Guq1XRyDZGw%2FP%2FNCO%2FFd3tU7ec2J6dzg6%2FsYoSM3jgEs%2FoLkEZy3m0BhGZvBDY8JnE3wpvXOKLfBaJZIYACLDksT%2FNOwbaA6TkUmsp6QNRg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc751cefb6cce51-SIN
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · marriagechat.ai
2026-01-11 20:56
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 20:56:13 GMT
Content-Length: 0
Connection: close
Location: https://seodomain.ai/name/marriagechat-ai
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=xvLqARul50IK5tyFgDxVDkkDyuFXYUBGZZIAKfDIWgUzXHFiAWOlvQ8yk79G2c%2BAj7dO0IXqdFd5Flk5AC5ub7F9CbujEjPRsM3xrnAVo%2FMfoeyUpMX%2FCVG0Uw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc751ceec3dd4a5-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · marriagechat.ai
2026-01-11 20:56
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 20:56:13 GMT
Content-Length: 0
Connection: close
Location: https://seodomain.ai/name/marriagechat-ai
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=N0WI8sLqyYTIzyaTx2J3YN5nKX8PRWx2pXboxJLCGOnhQhoqK1blrF4dPa%2FvvSSvTh6nRXYvra4TsFnJNbawKFvXj04acqGGlVlppsEcBrcpQjRRZeYtwP9oeA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc751cf6f1cf288-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · valleypeak.co
2026-01-11 18:49
Open service 2606:4700:3036::ac43:b041:8443 · valleypeak.co
2026-01-11 18:49
Open service 2606:4700:3036::ac43:b041:80 · valleypeak.co
2026-01-11 18:49
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 18:49:40 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Last-Modified: Wed, 19 Nov 2025 14:16:59 GMT
x-amz-version-id: FqowgPelD082B2eFPuqZCo_aoVx0.y_u
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=IWYnKInO9eel1MK8bOzkTDPJd6UzO%2F2HU36gYwEh6lMPpMqqFSGUGcvhEU4G9ZGH%2BSEKsfUWD4egNfgqM90vltDdIrJ4z5nFQrICAGLFgUOwuyjAU97ncfg%3D"}]}
X-Frame-Options: SAMEORIGIN
Content-Security-Policy: frame-ancestors 'self'
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Referrer-Policy: strict-origin-when-cross-origin
Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
X-Cache-Status: HIT
cf-cache-status: DYNAMIC
CF-RAY: 9bc6986b7eac9848-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · joker369.solutions
2026-01-11 18:35
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 18:35:58 GMT
Content-Length: 0
Connection: close
Location: https://joker369.solutions/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=O%2BWIHqaWo0fPaA1yyH%2BtYoPhLwbeFkbFOXuo85DQog6KmY9GGJ53iFpnpRT29kgKQ7bKwbAaoqYkkUvkSKWf%2F6CuTfv8ftWYQ%2B8EouSxEuOsUv3lqZ1X%2FrsiGQQ8CQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc684598f36cefd-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · joker369.solutions
2026-01-11 18:35
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 18:35:58 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
cf-edge-cache: no-cache
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zJzIdikLw4RoT2y6aSJiwYQk6WWzVgKBsC15r2MOnCzmHiOShWTV93EHNWMuXQRq8x0j7I4wLx06Y2SElGdatG0a0EciqE4f%2B7%2FldN7CT3ltyViD1RT0s8VeSow%3D"}]}
CF-RAY: 9bc6845a892f012e-EWR
alt-svc: h3=":443"; ma=86400
Page title: One moment, please...Loader
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script>
(function(){
setTimeout(function(){
window.location.reload();
}, 5000);
}())
</script>
<link rel="icon" href="data:,">
<title>One moment, please...</title>
<style>
.spinner {
-webkit-animation: spin 1s ease-out;
animation: spin 1s ease-out;
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
#outer-container {
text-align: center;
}
#container {
display: inline-block;
height: 100px;
}
#text {
float: left;
height: 100px;
line-height: 100px;
font-size: 3rem;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0 .4em 0 .2em;
letter-spacing: 0.06em;
color: rgba(38, 122, 72, 0.86);
}
@media (min-height: 180px) {
#outer-container {
margin-top: 0;
}
}
@media (min-height: 360px) {
#outer-container {
margin-top: 5%;
}
}
@media (min-height: 540px) {
#outer-container {
margin-top: 10%;
}
}
@media (min-height: 720px) {
#outer-container {
margin-top: 20%;
}
}
@media (min-width: 1450px) {
.throbber {
width: 90px;
height: 90px;
float: left;
padding: 5px 0 5px 5px;
opacity: 0.86;
}
#container {
display: inline-block;
border: 3px solid rgb(38, 122, 72, 0.86);
border-radius: 51px;
height: 100px;
}
}
</style>
</head>
<body>
<div id="outer-container">
<div id="container">
<div class="throbber">
<svg class="spinner" width="90px" height="90px" viewBox="0 0 47 47"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loader</title>
<defs>
<polygon id="path-1"
points="0 0.375484146 0 15.7255695 15.7013244 15.7255695 15.7013244 0.375484146 0 0.375484146"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none"
fill-rule="evenodd">
<g id="Logo" transform="translate(-5.000000, -2.000000)">
<g id="Group-2" transform="translate(5.000000, 2.000000)">
<path d="M22.6150244,4.52988293 C23.1538049,3.06256585 23.6031707,1.59582195 24.231939,0.158882927 C25.1902805,2.22459024 25.8190488,4.43989512 26.7768171,6.47579756 C29.1417195,7.40376098 31.7164024,7.7929439 34.1116829,8.69110244 C28.9623171,11.2663585 23.7229634,13.7510537 18.4836098,16.176139 C19.7709512,12.2545049 21.2382683,8.4217122 22.6150244,4.52988293 L22.6150244,4.52988293 Z"
id="Fill-1" fill="#467C45"></path>
<path d="M13.7718598,8.94461585 C16.1424939,7.68077439 18.4500793,6.28968902 20.8207134,5.02527439 C18.9240915,10.8412378 16.7747012,16.5614817 14.8465549,22.3774451 C12.7292622,18.3950549 10.895689,14.2544695 8.9044939,10.2090305 C8.27228659,8.85004268 7.5455061,7.55353049 7.00844512,6.16359146 C9.31545732,6.95342073 11.4648476,8.24935976 13.7718598,8.94461585"
id="Fill-3" fill="#467C45"></path>
<path d="M24.2134256,15.0745049 C29.4602305,12.4969561 34.7379866,9.91940732 40.0157427,7.4031878 C39.1565598,9.61276098 38.1747183,11.7300537 37.2232549,13.9086756 C38.4504134,16.2099561 39.9544134,18.388578 41.0898646,20.7511878 C35.4435598,18.9405415 29.8287793,17.0381878 24.2134256,15.0745049"
id="Fill-5" fill="#467C45"></path>
<g id="Group-9"
transform=
Open service 2606:4700:3036::ac43:b041:8443 · joker369.solutions
2026-01-11 18:35
HTTP/1.1 522 <none> Date: Sun, 11 Jan 2026 18:36:18 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc6845e9c3f4a37-LHR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · galileoenterprisesolutions.com
2026-01-11 18:33
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 18:33:07 GMT
Content-Length: 0
Connection: close
Location: https://www.sistemasgalileo.net/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yXDfaQP%2FtCNv4BPSYsgsMbapg11A7bmvLUOdnq4IVDflYW2ePCNDafEmkNlaYm1RskMssJjjRyR%2FEEdThT5ZiP7nJgq%2FrwPS%2FGDOGEZwbO%2F9sz2HPa3%2Be7ic%2BZI%2BJI9AWklFancGiMfBxA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc6803058ef8d32-SIN
Open service 2606:4700:3036::ac43:b041:443 · galileoenterprisesolutions.com
2026-01-11 18:33
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 18:33:07 GMT
Content-Length: 0
Connection: close
Location: https://www.sistemasgalileo.net/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uPPYv8CshXg7lq%2BnOZncFjVl3WKhbW50frGP2fLs9FobVPFMeYflGgQI%2BbPzQ5pZedMu%2FoyDIG5mAgyWFWCBnJTXfnf2GdqWpXchgSRhV2Q%2Fi4WyRwDyL9trpZYH2qRhDKQ6lZrjPa5dpg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc6802fb9d2db9b-FRA
Open service 2606:4700:3036::ac43:b041:8443 · galileoenterprisesolutions.com
2026-01-11 18:33
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 18:33:07 GMT
Content-Length: 0
Connection: close
Location: https://www.sistemasgalileo.net/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=TnG3A23nOZi4KW7120jz7kVoNrLovVT53ip0WG8otKPj1IwvLekFNmv%2Byv3BQh20cDyTS8a7wNxGYQdGkHqnIBa05gsiq%2B0nMwdrw1snQ8PYks5cDuK%2FQJOfO2D2Dyc29BA%2BsZKKBRw%2BCg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc6802f78ac1947-FRA
Open service 2606:4700:3036::ac43:b041:8443 · fibytwih.quest
2026-01-11 18:13
Open service 2606:4700:3036::ac43:b041:443 · fibytwih.quest
2026-01-11 18:13
HTTP/1.1 404 Not Found
Date: Sun, 11 Jan 2026 18:13:34 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Vary: Accept-Encoding
X-Powered-By: PHP/7.4.0
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=BPruc94P%2F4s%2F%2BHPhfuOkVPJfNQCVT02C0z0qaLy%2Fw5D8Qh7DdXNcCnXpOSF%2BNzH13%2FaWwezkZuSJx1QMXUIYVH5JZvqH10Z4ifRutEvIqcMMmBmhWgPjDg%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bc6638bbeacf5e2-AMS
alt-svc: h3=":443"; ma=86400
File not found.
Open service 2606:4700:3036::ac43:b041:80 · fibytwih.quest
2026-01-11 18:13
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 18:13:34 GMT
Content-Length: 0
Connection: close
Location: https://fibytwih.quest/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7oyF7o0BBauCom6cT1yXQxd00BbgqlNTwkKvrcTrXEuYzUqRT0LYAMFHEvnbDDxsnGBpFE1q4AfMdhDvxpsgSSpR4CIcBaM7FRfO6skHrncYThdyNYlJyaCh"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc6638b1c1ec8bd-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · pgribali.org
2026-01-11 16:44
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 16:44:15 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
last-modified: Tue, 25 Nov 2025 07:29:15 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=A8dwayLtfEmOzpltRNgaJKwTm9IrUIBrWPoUrwwEXWLvcTMfTnuWJt6VF9iFcfTr4lPd7mJZ2Gp8MSthmvfSMUncPtQgvbz9sxPV8T16Su60x5c%2B3V2IMA%3D%3D"}]}
Server: cloudflare
cf-cache-status: DYNAMIC
CF-RAY: 9bc5e0a7bd0dd38c-FRA
alt-svc: h3=":443"; ma=86400
Page title:
Website Resmi Pengurus Daerah Persatuan Guru Republik Indonesia – Provinsi Bali
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="Mobirise v4.10.15, mobirise.com" name="generator"/>
<meta content="width=device-width, initial-scale=1, minimum-scale=1" name="viewport"/>
<link href="assets/frontend/assets/images/logo2.png" rel="shortcut icon" type="image/x-icon"/>
<meta content="Selamat datang di website resmi Pengurus Cabang Persatuan Guru Republik Indonesia. Situs ini dirancang sebagai sumber informasi terpercaya bagi seluruh anggota dan masyarakat umum mengenai kegiatan, berita, dan informasi terbaru seputar guru di wilayah kami." name="description"/>
<title>
Website Resmi Pengurus Daerah Persatuan Guru Republik Indonesia – Provinsi Bali
</title>
<link href="assets/frontend/assets/web/assets/mobirise-icons-bold/mobirise-icons-bold.css" rel="stylesheet"/>
<link href="assets/frontend/assets/web/assets/mobirise-icons/mobirise-icons.css" rel="stylesheet"/>
<link href="assets/frontend/assets/bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/bootstrap/css/bootstrap-grid.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/bootstrap/css/bootstrap-reboot.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/dropdown/css/style.css" rel="stylesheet"/>
<link href="assets/frontend/assets/animatecss/animate.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/tether/tether.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/socicon/css/styles.css" rel="stylesheet"/>
<link href="assets/frontend/assets/theme/css/style.css" rel="stylesheet"/>
<link href="assets/frontend/assets/gallery/style.css" rel="stylesheet"/>
<link as="style" href="assets/frontend/assets/mobirise/css/mbr-additional.css" rel="preload"/>
<link href="assets/frontend/assets/mobirise/css/mbr-additional.css" rel="stylesheet" type="text/css"/>
<link href="assets/cdn/css/alertify/alertify.core.css" rel="stylesheet">
<link href="assets/cdn/css/datepicker.css" rel="stylesheet">
<link href="assets/cdn/css/alertify/alertify.default.css" id="toggleCSS" rel="stylesheet">
<link href="assets/cdn/css/Typeahead-BS3-css.css" id="toggleCSS" rel="stylesheet">
<link href="assets/cdn/boots/dist/css/bootstrap-timepicker.min.css" rel="stylesheet">
<link href="assets/cdn/css/bootstrap-combined.min.css" id="toggleCSS" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript">
</script>
<script src="assets/cdn/js/jquery.min.js" type="text/javascript">
</script>
</link>
</link>
</link>
</link>
</link>
</link>
</head>
<body>
<style>
/* Style untuk tombol accordion */
.accordion {
background-color: #cccccc;
color: #444444;
cursor: pointer;
padding: 10px;
width: 70%;
text-align: left;
border: none;
outline: none;
font-size: 15px;
margin: 10px auto;
display: block;
}
.accordion.active {
background-color: #aaaaaa;
}
/* Style untuk panel accordion */
.panel {
padding: 0 10px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
width: 70%;
margin: 0 auto;
}
/* Style untuk tautan */
.panel a {
display: block;
padding: 5px;
text-decoration: none;
color: #0077b5;
}
.panel a:hover {
background-color: #ddd;
}
a:link {
color: red;
}
a:visited {
color: green;
}
</style>
<section class="menu cid-rE0Gn8TeVf" id="menu2-49" once="menu">
<nav class="navbar navbar-expand beta-menu navbar-dropdown align-items-center navbar-fixed-top navbar-toggleable-sm">
<button aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="
Open service 2606:4700:3036::ac43:b041:80 · pgribali.org
2026-01-11 16:44
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 16:44:13 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=b7UIWJ2ZpRv0thIedVWf1FNvq36KTciKEmOhp6gdj3V4MjqTq4V5mQf96OvfRIkL%2BPQttgIAHCIJDF6JvtBgBaULzO7DhQJw%2BuiI%2BhsoGVps4uVDWDwxZQ%3D%3D"}]}
Last-Modified: Tue, 25 Nov 2025 07:29:15 GMT
Accept-Ranges: bytes
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
CF-RAY: 9bc5e0a41cce5c39-AMS
alt-svc: h3=":443"; ma=86400
Page title:
Website Resmi Pengurus Daerah Persatuan Guru Republik Indonesia – Provinsi Bali
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="Mobirise v4.10.15, mobirise.com" name="generator"/>
<meta content="width=device-width, initial-scale=1, minimum-scale=1" name="viewport"/>
<link href="assets/frontend/assets/images/logo2.png" rel="shortcut icon" type="image/x-icon"/>
<meta content="Selamat datang di website resmi Pengurus Cabang Persatuan Guru Republik Indonesia. Situs ini dirancang sebagai sumber informasi terpercaya bagi seluruh anggota dan masyarakat umum mengenai kegiatan, berita, dan informasi terbaru seputar guru di wilayah kami." name="description"/>
<title>
Website Resmi Pengurus Daerah Persatuan Guru Republik Indonesia – Provinsi Bali
</title>
<link href="assets/frontend/assets/web/assets/mobirise-icons-bold/mobirise-icons-bold.css" rel="stylesheet"/>
<link href="assets/frontend/assets/web/assets/mobirise-icons/mobirise-icons.css" rel="stylesheet"/>
<link href="assets/frontend/assets/bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/bootstrap/css/bootstrap-grid.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/bootstrap/css/bootstrap-reboot.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/dropdown/css/style.css" rel="stylesheet"/>
<link href="assets/frontend/assets/animatecss/animate.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/tether/tether.min.css" rel="stylesheet"/>
<link href="assets/frontend/assets/socicon/css/styles.css" rel="stylesheet"/>
<link href="assets/frontend/assets/theme/css/style.css" rel="stylesheet"/>
<link href="assets/frontend/assets/gallery/style.css" rel="stylesheet"/>
<link as="style" href="assets/frontend/assets/mobirise/css/mbr-additional.css" rel="preload"/>
<link href="assets/frontend/assets/mobirise/css/mbr-additional.css" rel="stylesheet" type="text/css"/>
<link href="assets/cdn/css/alertify/alertify.core.css" rel="stylesheet">
<link href="assets/cdn/css/datepicker.css" rel="stylesheet">
<link href="assets/cdn/css/alertify/alertify.default.css" id="toggleCSS" rel="stylesheet">
<link href="assets/cdn/css/Typeahead-BS3-css.css" id="toggleCSS" rel="stylesheet">
<link href="assets/cdn/boots/dist/css/bootstrap-timepicker.min.css" rel="stylesheet">
<link href="assets/cdn/css/bootstrap-combined.min.css" id="toggleCSS" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript">
</script>
<script src="assets/cdn/js/jquery.min.js" type="text/javascript">
</script>
</link>
</link>
</link>
</link>
</link>
</link>
</head>
<body>
<style>
/* Style untuk tombol accordion */
.accordion {
background-color: #cccccc;
color: #444444;
cursor: pointer;
padding: 10px;
width: 70%;
text-align: left;
border: none;
outline: none;
font-size: 15px;
margin: 10px auto;
display: block;
}
.accordion.active {
background-color: #aaaaaa;
}
/* Style untuk panel accordion */
.panel {
padding: 0 10px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
width: 70%;
margin: 0 auto;
}
/* Style untuk tautan */
.panel a {
display: block;
padding: 5px;
text-decoration: none;
color: #0077b5;
}
.panel a:hover {
background-color: #ddd;
}
a:link {
color: red;
}
a:visited {
color: green;
}
</style>
<section class="menu cid-rE0Gn8TeVf" id="menu2-49" once="menu">
<nav class="navbar navbar-expand beta-menu navbar-dropdown align-items-center navbar-fixed-top navbar-toggleable-sm">
<button aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="
Open service 2606:4700:3036::ac43:b041:8443 · pgribali.org
2026-01-11 16:44
HTTP/1.1 521 <none> Date: Sun, 11 Jan 2026 16:44:12 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=252,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc5e0a349d8c745-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:8443 · g088h.fun
2026-01-11 15:51
HTTP/1.1 523 <none> Date: Sun, 11 Jan 2026 15:51:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc593b50aabd359-FRA alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:443 · g088h.fun
2026-01-11 15:51
HTTP/1.1 523 <none> Date: Sun, 11 Jan 2026 15:51:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc593b5094a92a1-FRA alt-svc: h3=":443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:443 · bishejingxuan162635.buzz
2026-01-11 14:27
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 14:27:56 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Content-Disposition: inline
Vary: Accept-Encoding
Accept-Charset: big5, big5-hkscs, cesu-8, euc-jp, euc-kr, gb18030, gb2312, gbk, ibm-thai, ibm00858, ibm01140, ibm01141, ibm01142, ibm01143, ibm01144, ibm01145, ibm01146, ibm01147, ibm01148, ibm01149, ibm037, ibm1026, ibm1047, ibm273, ibm277, ibm278, ibm280, ibm284, ibm285, ibm290, ibm297, ibm420, ibm424, ibm437, ibm500, ibm775, ibm850, ibm852, ibm855, ibm857, ibm860, ibm861, ibm862, ibm863, ibm864, ibm865, ibm866, ibm868, ibm869, ibm870, ibm871, ibm918, iso-2022-cn, iso-2022-jp, iso-2022-jp-2, iso-2022-kr, iso-8859-1, iso-8859-13, iso-8859-15, iso-8859-2, iso-8859-3, iso-8859-4, iso-8859-5, iso-8859-6, iso-8859-7, iso-8859-8, iso-8859-9, jis_x0201, jis_x0212-1990, koi8-r, koi8-u, shift_jis, tis-620, us-ascii, utf-16, utf-16be, utf-16le, utf-32, utf-32be, utf-32le, utf-8, windows-1250, windows-1251, windows-1252, windows-1253, windows-1254, windows-1255, windows-1256, windows-1257, windows-1258, windows-31j, x-big5-hkscs-2001, x-big5-solaris, x-compound_text, x-euc-jp-linux, x-euc-tw, x-eucjp-open, x-ibm1006, x-ibm1025, x-ibm1046, x-ibm1097, x-ibm1098, x-ibm1112, x-ibm1122, x-ibm1123, x-ibm1124, x-ibm1166, x-ibm1364, x-ibm1381, x-ibm1383, x-ibm300, x-ibm33722, x-ibm737, x-ibm833, x-ibm834, x-ibm856, x-ibm874, x-ibm875, x-ibm921, x-ibm922, x-ibm930, x-ibm933, x-ibm935, x-ibm937, x-ibm939, x-ibm942, x-ibm942c, x-ibm943, x-ibm943c, x-ibm948, x-ibm949, x-ibm949c, x-ibm950, x-ibm964, x-ibm970, x-iscii91, x-iso-2022-cn-cns, x-iso-2022-cn-gb, x-iso-8859-11, x-jis0208, x-jisautodetect, x-johab, x-macarabic, x-maccentraleurope, x-maccroatian, x-maccyrillic, x-macdingbat, x-macgreek, x-machebrew, x-maciceland, x-macroman, x-macromania, x-macsymbol, x-macthai, x-macturkish, x-macukraine, x-ms932_0213, x-ms950-hkscs, x-ms950-hkscs-xp, x-mswin-936, x-pck, x-sjis_0213, x-utf-16le-bom, x-utf-32be-bom, x-utf-32le-bom, x-windows-50220, x-windows-50221, x-windows-874, x-windows-949, x-windows-950, x-windows-iso2022jp
Access-Control-Allow-Origin: *
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Age: 0
Cache-Control: max-age=14400
cf-cache-status: HIT
last-modified: Sun, 11 Jan 2026 14:27:56 GMT
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=s9fHdcBCcgwWwZ8UAGkhogxShWZSwwyRPikodkEaskHl4lKA5TvQzovGGFpxoMYlPnwu8O%2F5TGfYzFl5mR%2FuhXMI5iXuc9ILiioo87ovtTppgf4l03CsT4tYxpstgMQjg1b06Q%3D%3D"}]}
CF-RAY: 9bc519033d7c34ac-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · bishejingxuan162635.buzz
2026-01-11 14:27
HTTP/1.1 523 <none> Date: Sun, 11 Jan 2026 14:27:55 GMT Content-Type: text/html; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=148,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Content-Disposition: inline Server: cloudflare CF-RAY: 9bc518ff282767ee-SJC alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:80 · bishejingxuan162635.buzz
2026-01-11 14:27
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 14:27:55 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dSy3eJXMz5Jd3eNW3XbB1RbnTaRQmT8ZPf0gE8v4%2Fz4AkONktv4ZSoytl8Lu4jpAjs0%2Fd4fEU8NspfOjizi4CI9L8uG0FRaq7sAOBG5gwCGvCPf9ILYbFspOiqN2inXxMhH3xA%3D%3D"}]}
Content-Disposition: inline
Server-Timing: cfEdge;dur=7,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bc518fe3dca3824-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · fitnesstrustcrew.sbs
2026-01-11 14:05
HTTP/1.1 503 Service Unavailable
Date: Sun, 11 Jan 2026 14:05:23 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=4,cfOrigin;dur=157
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fXlh4FOrsq1wss2p6zlfcP2BCGBsffXYbBEQl4zRr7xx8XoWk1FpPal3zyxuUIYw%2BQcFuLq%2FAiRuM%2F8%2FzYa0CC8tWSYrWWAFzJIxdZ5uakhiBaSw7L1JLGLE9NHjDSbK"}]}
CF-RAY: 9bc4f7faebdead1b-EWR
alt-svc: h3=":443"; ma=86400
Page title: 503 Service Temporarily Unavailable
<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body>
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"3c18e1003bc544da832fbef50dae2454","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · fitnesstrustcrew.sbs
2026-01-11 14:05
HTTP/1.1 503 Service Unavailable
Date: Sun, 11 Jan 2026 14:05:22 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=04qo9gYQV%2FKCJr7XML4BT%2FKZ2oHFKNgXNEgpgnd2CcTOFqxNAq7KHsKX8QOyJruwXK72wcTPBM76NjpxLz2EZY%2FuCZkojaOMeuALs3IQk7ZtWuVKYCnRXYDGdR9HEVg9"}]}
CF-RAY: 9bc4f7f96c461c32-FRA
alt-svc: h3=":443"; ma=86400
Page title: 503 Service Temporarily Unavailable
<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body>
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · fitnesstrustcrew.sbs
2026-01-11 14:05
HTTP/1.1 521 <none> Date: Sun, 11 Jan 2026 14:05:22 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=103,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc4f7f9c9ef52e6-YYZ alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · angkaultraman.com
2026-01-11 13:18
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 13:18:53 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Accept-Ranges: bytes
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=3sJREPrUB1tgrYTt3QU4ltDxdDRhfSNoNQTcrwTXHsaWSDhJ%2B1MMnPmjMh6hLX%2BnxU9dweuFkZ6K7F7OvUcDmFiJIqVArlGMGbmiLWlztBFIGu4K2v45uq79mNez"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bc4b3e14e58eb30-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · angkaultraman.com
2026-01-11 13:18
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 13:18:55 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 29 Nov 2024 18:17:05 GMT
Vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eP2p2UPWZ6HNrT7OdQqpcoD8OyPXNHcacWMrMkIE76mxOU42rNZqbvB7sOtrdxKTYNNO6Jb9jjciNhRAtqd3dAaehEc81O3pjsM8wH9hxJ1Wu75MddRwYHvP3ImI"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bc4b3e33dbec518-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · angkaultraman.com
2026-01-11 13:18
HTTP/1.1 521 <none> Date: Sun, 11 Jan 2026 13:18:53 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc4b3e08e11a4c6-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · hotrueckwand24pop.shop
2026-01-11 13:00
HTTP/1.1 530 <none> Date: Sun, 11 Jan 2026 13:00:47 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 16 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc4995d19939bfa-FRA alt-svc: h3=":443"; ma=86400 error code: 1016
Open service 2606:4700:3036::ac43:b041:8443 · hotrueckwand24pop.shop
2026-01-11 13:00
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 13:00:47 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=3,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=q9Rolkf6dizxuM%2Fw1Fq3VKsckpgFP2XdDzNX7KMsdzJoRSkja425N1Jw7pxmyOA6xia4w8AZK2y7y5TumwBKK4XqOjEl2GQ5sbjrww%2F7XGq2vvzsCmjcyTJyBKzveQm%2BeL0%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc4995cfcc990c2-EWR
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> hotrueckwand24pop.shop</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bc4995cfcc990c2</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:400:d0::24f2:4001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-f
Open service 2606:4700:3036::ac43:b041:443 · hotrueckwand24pop.shop
2026-01-11 13:00
HTTP/1.1 530 <none> Date: Sun, 11 Jan 2026 13:00:47 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 16 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc4995c9fb88ed6-FRA alt-svc: h3=":443"; ma=86400 error code: 1016
Open service 2606:4700:3036::ac43:b041:80 · manage.bieniek.dev
2026-01-11 12:46
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 12:46:37 GMT
Content-Length: 0
Connection: close
Location: https://manage.bieniek.dev/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=FUXBn5HdTYObYjvs1cGtQ44Ugpbbdw2os43r%2BARZnANDCKcuQEQdeyaSBmGuOTjmrnPG2Lda9ZU73oTktN1Z9M8d1RMyxHks73cxSztNhpKvldUk%2F3mpwe9F%2FxCUTQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc4849c582940a4-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · manage.bieniek.dev
2026-01-11 12:46
HTTP/1.1 521 <none> Date: Sun, 11 Jan 2026 12:46:37 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc4849b3ec60487-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · manage.bieniek.dev
2026-01-11 12:46
HTTP/1.1 521 <none> Date: Sun, 11 Jan 2026 12:46:37 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc4849a99936367-LHR alt-svc: h3=":443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:8443 · mediax.fun
2026-01-11 11:17
Open service 2606:4700:3036::ac43:b041:443 · mediax.fun
2026-01-11 11:17
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 11:17:48 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qNaBUxb86khdKGZzPMihWfG7pgKPRCB0hNbOBHg0zKFQ%2BcC5ewHyewaI4AiRDZfcYj1a6RbSLHSj4itzdaffNmuHQZtMW80bJBx5gDZVOPlPVoCUT4A%3D"}]}
Server: cloudflare
alt-svc: h3=":443"; ma=86400
x-hcdn-request-id: c56adb02df3d7afb9289279b22448f4d-fra-edge1
Expires: Sun, 11 Jan 2026 11:17:47 GMT
Cache-Control: no-cache
cf-cache-status: DYNAMIC
CF-RAY: 9bc40283ae50a034-FRA
Page title: Parked Domain name on Hostinger DNS system
<!doctypehtml><html lang=en><meta charset=UTF-8><meta content="width=device-width,initial-scale=1"name=viewport><meta content="noindex, nofollow, noarchive, nosnippet"name=robots><title>Parked Domain name on Hostinger DNS system</title><link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"rel=stylesheet><style>*{margin:0;padding:0;box-sizing:border-box}body{font-family:'DM Sans',sans-serif;background-color:#fafbff;color:#1d1e20;line-height:1.5}.container{max-width:1110px;margin:160px auto;padding:0 32px;box-sizing:content-box}.header{display:flex;flex-direction:column;gap:32px;align-items:flex-start;margin-bottom:80px}.header-content{flex:1;display:flex;flex-direction:column;gap:24px;max-width:420px}.domain-info{display:flex;flex-direction:column;gap:16px}.domain-title{font-size:40px;font-weight:700;line-height:48px;color:#1d1e20;font-family:'DM Sans',sans-serif;word-break:break-word}.registered-at{display:flex;align-items:center;gap:16px}.registered-text{font-size:16px;color:#1d1e20;font-family:'DM Sans',sans-serif}.logotype{width:150px;height:30px}.description{font-size:16px;color:#1d1e20;max-width:384px;font-family:'DM Sans',sans-serif}.figma-button{background-color:#673de6;color:#fff;border:none;border-radius:8px;padding:8px 16px;min-height:40px;min-width:96px;font-size:14px;font-weight:700;line-height:24px;font-family:'DM Sans',sans-serif;cursor:pointer;transition:opacity .2s;width:fit-content;text-decoration:none;display:inline-block}.figma-button:hover{opacity:.9}.visual-mockup{flex:1;display:flex;justify-content:center;position:relative;width:100%;max-width:658px;height:363px;overflow:hidden;height:100%;object-fit:cover}.bg-rect-1{position:absolute;background:#d5dfff;height:51px;width:328px;right:320px;top:247px}.bg-rect-2{position:absolute;background:#d5dfff;height:45px;width:112px;right:163px;top:298px}.bg-rect-3{position:absolute;background:#d5dfff;height:45px;width:112px;right:321px;top:298px}.bg-rect-4{position:absolute;background:#d5dfff;height:45px;width:52px;right:492px;top:298px}.bg-rect-5{position:absolute;background:#d5dfff;width:16px;height:16px;right:27px;top:261px}.bg-rect-6{position:absolute;background:#d5dfff;height:45px;width:101px;right:62px;top:298px}.main-showcase{position:absolute;background:#fff;height:238px;width:423px;right:118px;top:50px;border-radius:11px;border:1px solid #c3cce9;box-shadow:0 10px 15px -3px rgba(0,0,0,.1);overflow:hidden}.showcase-nav{position:absolute;top:25px;left:50%;transform:translateX(-50%);display:flex;gap:24px;font-size:6px;font-weight:600;color:#2f1c6a;text-transform:uppercase;letter-spacing:.05em}.bold-text{position:absolute;left:46px;top:64px;font-size:41px;line-height:.89;font-weight:900;color:#8c85ff;letter-spacing:-.025em}.shop-now{position:absolute;left:46px;top:145px;display:flex;align-items:center;gap:8px}.shop-text{color:#2f1c6a;font-size:6px;font-weight:600;text-transform:uppercase;letter-spacing:.05em}.shop-line{width:16px;height:1px;background:#2f1c6a}.domain-tags{position:absolute;right:78px;top:36px;display:flex;gap:4px}.domain-tag-1{background:linear-gradient(to right,rgba(103,61,230,.2),transparent);backdrop-filter:blur(4px);background-color:rgba(255,255,255,.8);padding:9px 14px;border-radius:8px;border:1px solid #eaeaff;box-shadow:0 10px 15px -3px rgba(0,0,0,.1)}.domain-tag-2{background:#673de6;padding:9px 14px;border-radius:8px;border:1px solid #5025d1}.tag-text-1{font-size:10px;font-weight:700;color:#45219c}.tag-text-2{font-size:10px;font-weight:700;color:#fff}.services{display:flex;flex-direction:column;gap:24px}.services-title{font-size:24px;font-weight:700;color:#1d1e20;line-height:36px;font-family:'DM Sans',sans-serif}.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px}.services-grid-2{display:grid;grid-template-columns:repeat(auto-fit,minmax(400px,1fr));gap:24px}.service-card{background:#f4f5ff;border:none;border-radius:8px;padding:24px;display:flex;flex-direction:column}.service-card-large{background:#f4f5ff;border:none;border
Open service 2606:4700:3036::ac43:b041:8443 · js71.cn
2026-01-11 09:01
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 09:01:32 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oojJCC0pTA8zoEaixf9OSxRrK7vBs6L76ln408LczOzLJiZa4AqZ0ezGOC%2BGxkznM92gGrZe2IPFkyoPqc7y9Rc7VlZiEOaYqIiyJBmntaHOVCY%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc33ae6299c8873-LHR
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> js71.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bc33ae6299c8873</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:1:d0::c66:2001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal");
Open service 2606:4700:3036::ac43:b041:80 · js71.cn
2026-01-11 09:01
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 09:01:32 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jXsahufeeuMiuuYVrhYOmgAc3OPv4cVSdUWpEIo%2BuQKkhA7xG8Bi%2B8WgaW4Snj9R%2Bemkpu%2Fb9EOQ4cPxqgNf2jXpZmPAAObVvcwmIJaLiwfVeCo%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc33ae5ad07368f-LHR
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> js71.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bc33ae5ad07368f</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:1:d0::d83:3001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal");
Open service 2606:4700:3036::ac43:b041:443 · js71.cn
2026-01-11 09:01
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 09:01:32 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=VrY0vT49Y8vsKH%2FLZaccgxPWTcXolRTuUwXRNYDxJOIeJwOovcSUePeqxwV0O0dF7vbLsNU6kALWe7YfTKSKqe1NXHZ7Oea%2FqvMUEL4gXOLmZ7U%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc33ae5396a193c-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> js71.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bc33ae5396a193c</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::402:d001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal");
Open service 2606:4700:3036::ac43:b041:8443 · www.zendodesign888.com
2026-01-11 08:42
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 08:42:33 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bc31f14b9c89e6b"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=XAXVijIL8IZaBifCfrMJD48oMa%2FKXvF37rWcmHrjedDyLZv2w9g6kDSDrPXUnjtnh4hBemVcX9ekL0ifwTCIlcTTGSS971LIyDHj8c7YZBNG02fXSRj2Jjm4wHiNjXjoa7yzfuFnMCGIkb%2FzdfiM4TVuQM1l"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bc31f14b9c89e6b-SJC
alt-svc: h3=":8443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1110&min_rtt=1103&rtt_var=428&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4208&recv_bytes=1777&delivery_rate=4640275&cwnd=253&unsent_bytes=0&cid=7ad314fdba125b43&ts=28&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'www.zendodesign888.com',cType: 'managed',cRay: '9bc31f14b9c89e6b',cH: 'eGIKzHOIQAOFOLG4Y5wSo79hnbwUu7.MCDm3t.3Mzzg-1768120953-1.2.1.1-3vI3QGbzDek4UR5q.Iqo6.mcFBTl99knznMfXum9zxW9V3XWvbEVmyQN8R6S7AXk',cUPMDTk:"\/?__cf_chl_tk=DtjJtHcbr37XYOvcpSB.EGPHMXpR1vtrjSwfNXmnwfY-1768120953-1.0.1.1-2_cpbwr0R.ri6Y5gPlfkTzAVOkwtjAopbLjn8sor6Nc",cFPWv: 'g',cITimeS: '1768120953',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=DtjJtHcbr37XYOvcpSB.EGPHMXpR1vtrjSwfNXmnwfY-1768120953-1.0.1.1-2_cpbwr0R.ri6Y5gPlfkTzAVOkwtjAopbLjn8sor6Nc",md: 'nWHPjvwRWc0hXTIGvw4aZ.Fh.rI5c5bGG3ZDHQCMfR0-1768120953-1.2.1.1-k0Pav1C51EMDJfa_9C9XMDPswwjhBkcP5KBKoiR_7uHcsBaN71YY5Da1jHA74wOYUHTSnwRhc4H4Mmt2vZlHMDYBonxmyDR5MjnZhsuA9FuI_1taWWLR49vVmOFyIDrmVndQbvZrLYX.TWUEw_rsi7b2T1lsRA9N7E_tmf.jDNGJClJXef6bEWLiEV9QlDJ9230UnB1eaGf18ClnDLyPYxM8F143TNHVuiK80rKILCaxOqq63V.RQB5irtv0yslFAUVrltE6EiITsqXJpZNpYH64jLOtFIEs3sFaGr0OwyurPN9iIsrelSRY2Saoa_gnMAISvfJ4oVGQD4Wk0pdB81kr6DmU_MLu5GFXHKNzALxDyhXgnUxl.sMlWFtbTAqQzfiztsK5UrT4sga6NBFWdkUJXxtz7axk_JebqQfHBhKMSbyCrolW3E4yTaLROcSjjXCr7Tnrt2PyLxtHqO6PHCZ2LW6mQc6tBJ281hZ8lSdEMqRWJLjIY6tF4Yn9dp1JzbsI.hSOni.hc_Hn99r5NuCByR34uQ2BlDDAdQh_k0M_sKHoukrbvhlRsAnxIiZErV9sBzkHSQ9b122kSYpfaiw2OqnEkjJQ03Jzn59uNTwTzecu9NGuCXjOvDIcjnOqsHu3HUw9p2BAxDynRnZT9rCk9BjbelMF6Cjm4GlvC6rpjH5Glwyisqa4_TJjaWHc7smDkD1L8oaBPVTBG4lbuF0QDHQPtBbruhw5M_EL_3T4mKQd52LRbTgCrYH3tuGy_rP6VWyb21e7OFb8jZHCrDZboad.vKzwURY0IMqbE2fJSEFWIz8LQzUskg64q_xjiwxwwqgMoUjrQ9x.lLY1Po7ksinMGVMhLyojDbGHVypnUIJPfs3Yk8Et6hnAHUctXk5db_jd36m4d6f2c0CXmVd2qocfkzpabieuSelvLHY2_8sSa55rR.vaEByKo_78Ij9B9a3pPcSMoThMX3Nx2spmAXZsaGa8_Y_U6qUndiUZluyI1ncUQd2tLUHU7LDY2Ou_Lc_Bo4yN1o1Jng7p9A',mdrd: 'sIf_MB18sUlWvCOcqZpDaP5w1doFY3IGltLOgceS3tA-1768120953-1.2.1.1-JSW2XugzeyABY_6JeRtCrCAeYuWmVuDsTjrxXflEoqzmS_6bKx0vouEuIlG73cHpxOvZbnHXj4O44aghsdSG4CruRVok_ADL5fG3vDaItANQCWzeG12TGrbDxNG6t2xFfjUeRJVhpSMzhpGljhoJhXT9UxhUGWph_4g4ZbRYFf2IbyAMgd3UxKc5ZNpBW4ybnYmnLHZKQdYDlGj6anjhHqIyoysbZu8vaBMe2VqM.3tL1v5pEiVBlY_Ui0OhzuuBhsyLlxkQAD9lAgIt3gToV4bRUSE5GmHBCa6Yf12CuD1WVatS6LBqozm66NGYuQWaBziWfII6ubBH4SlM8WQE0fL7YmxCkbyOTOz6aR
Open service 2606:4700:3036::ac43:b041:80 · www.zendodesign888.com
2026-01-11 08:42
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 08:42:33 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bc31f14bb3efcff"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=%2BW9I%2Fzd%2BF%2BLfvXWKh4TaaQf9i6ceBta5HXXTaz21XMy85aT2mpMZg5Ya6WET63CKGYjo70IdL2ARTZfpb1JEYb7OPZzKCdx58zPRpDl9pMiMZNKsVJbyUA0jBGkpI38GR9wQ4eBs1Koen9d5PLziQ%2F1iiSaq"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bc31f14bb3efcff-SIN
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1200&min_rtt=1200&rtt_var=600&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=177&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'www.zendodesign888.com',cType: 'managed',cRay: '9bc31f14bb3efcff',cH: 's1ArBkAGQn6Q3uFNb8af8QGaty5ob1mK02Cs6mBx_yU-1768120953-1.2.1.1-Fc0aEMfhL1uaO_GF0N_dxOX8gIkt.cj32KA1DIwW5dPiKGVcLQac4KPnmEqtsYn2',cUPMDTk:"\/?__cf_chl_tk=XzC9cyRCiiFeER2yD.nhQxHW4KD37MpbpxaHZZ8jmGI-1768120953-1.0.1.1-vB5Sn8LTn89g2zN0p0prNkYMg33iZTjBngjCEL.t7iM",cFPWv: 'g',cITimeS: '1768120953',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=XzC9cyRCiiFeER2yD.nhQxHW4KD37MpbpxaHZZ8jmGI-1768120953-1.0.1.1-vB5Sn8LTn89g2zN0p0prNkYMg33iZTjBngjCEL.t7iM",md: '.JapNb7ZeQLW9zMT2_1AXi1dB7PfezLK6dQCPwtD5B4-1768120953-1.2.1.1-JY23_kJ_8Mv14j2BHIKhm5gof4xtYrcJyc0aqfz1mLOdbmCEKXh.54ztaPEP3EG8V1qaygXaMua605mTksuAaUESiFFN8nk1ZH8gG6we0ynchfJXsiWhOg8nyeHsLWdBXkj3lN1MtsNHVFlwk_SgdBTs3j4Sp_LXXzdEMdEJs1pyGovG4hdzB9qiWofx8VSAte.8qRjbIXw5lS5TqoN9RhA5E2U9Kg_aj67tmFC991_F25M70PD31nVHnBXAz6RRp0tZ6z9CtuAZjXZ6SAfKyTll5Xv_H8c5Ayqm8h4PmSprOzejBIB8Ck_WQJ1._aGa.6_n0ByY9tEfmbZXyKHC1G.8a4zZ5udCJOamIONvPWMV.i8aNxT1rvW3XHCXGepn_Hg2VQBFKBjB39Vs9CGqTCo.hGr3_ecnH7vdNfKxcRQJ3JhRrFu5u_UB4yJYvwJTIUmPpbjJFv4bxtdrNEYZ57RUCeqJBn7DDpWG_0pA4wPs9Kr9RKf8.8DCuZZjKzci6j8QwtajK5kfwYli4SyVMd2YVq7S.bzfu5XtPmZGdVXJ3muxxN6r6LDjIhspzL5jxLVmu7Rd0k_6tavfEu5ndoOmKkMFA_GGeqjRKJOf8I0JLJWr45djCBiLEFnY1PuYbReVlN34Zh9Szcsw91sElRfSt5_JemsLOzkqrIrqbJX6SKFlsF0jwNgzLW3IwmZPFlmy1OvPZyx45zRvpo90B6n2kTXAuF5_N0AwGpAi3weK2yLOYqrsgNl3CbcyfYOXZfqNNII2eUgexZxBqMf805kuGKtZAapCEOPLlAnIZhjPMe2OCtekTaEGr7TBYRCXlouM._X8TdsGsJeXIlkzZPJ9q53E6SNWyGKd2qm.5vVLWl1eVmdgLvJiNRM7EFWCa9sI_mRRgUL9wLOEL0knFoZkAnBPiVNVTkkAMgdbevOorh98rVJ9ZTgsXJEXEUVWnj4FhATCSOPY5a4TpV2_juC0R.J8ARz.a6a_p1qYbpfGBJhQf.eNXEM5n6bacaU2xS2A4vSBYE4pBIR9mgkF5A',mdrd: 'D2X_1coHB3GzdsaTKclfyuPlp45NPKCxzeSKWw4yXDc-1768120953-1.2.1.1-H0QTy47m_OSJORjYTkf6PZLvqTrUFVDtNcH6wV46hkwW_GzDq_mj26ygy74hk4M1Ec3LE_LwZ71YtJ.eKdkPXgecqYVZOhhPqbWZ3.ejQ.6yE18GWMv2lb5aG2HWC.e0ASxGZUh5E4FoRk.wF3e_5v92.uvzYGhjA5.ZK83aMonxU3sfBPsb3OFyx3tEirw9q949XyCwz32Yjwi1suXdkjvpid7c5WqVpfEdz3zy8X4xRu28HFr3StRkRfH_dEw3Xr8hXyhg9G4YD5BgC1haM7m7LcUsFcZVkab4kKB5T8_wv.Pkn.Gt8UfKP5aJflvFgvgaukBJuCNdJouMvJ1Mz_jqvHa2QDRVrC9Vz1
Open service 2606:4700:3036::ac43:b041:443 · zendodesign888.com
2026-01-11 08:42
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 08:42:33 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bc31f14690cf5f7"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=L%2By6RGv%2BwUvVaOEKMNLTkSdDn3aeEMbQRwLdNqbY3SSJFQaTbbGGJUMNu4z%2F5nsaeIyjgJYmaBFSeb%2Bm6MHkJPwlltQHrkr5MTiSpAZxqeN0GmVmNqEfHtMZaX0QqXslnloXmRDFUD2LFXPQNsDlS1k%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bc31f14690cf5f7-EWR
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1027&min_rtt=952&rtt_var=410&sent=7&recv=7&lost=0&retrans=0&sent_bytes=4208&recv_bytes=1769&delivery_rate=5663865&cwnd=253&unsent_bytes=0&cid=a62fd93465d2aa5f&ts=20&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'zendodesign888.com',cType: 'managed',cRay: '9bc31f14690cf5f7',cH: 'iUq7rg5wBqvM7nch3PJC1arhrl5MJl28AS0wR3kJ1eM-1768120953-1.2.1.1-sIu7w4kBEDojHVKDm3Eu6O5RtMyhs0jtzq2nqaiEoKfj6lUOq8KSUL9hJZm1Ptqt',cUPMDTk:"\/?__cf_chl_tk=l.lYnsCRZqXdq.zCj5cZBhmG0MBHtoR2bKYGbSafqs0-1768120953-1.0.1.1-BDpS2NlIXlAtThNQWjcQusoP9VS6rI4AJaO2ZmYLV.c",cFPWv: 'g',cITimeS: '1768120953',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=l.lYnsCRZqXdq.zCj5cZBhmG0MBHtoR2bKYGbSafqs0-1768120953-1.0.1.1-BDpS2NlIXlAtThNQWjcQusoP9VS6rI4AJaO2ZmYLV.c",md: 'zhM.jtMT3wrCKiAyK.fby4dx3W0DzQpTwsMzdnqDuvs-1768120953-1.2.1.1-XOxiV0yx8DsDYlAKY5SJZij0BJ8pDnalIciJV1zWgSp.ixbuyjF33YYq5XO1GwnbqPMbPxr.nvA41EbjgPRbD6B.HSVvoVzj2s2DGhpHd3T1Ut3dx2P5Q2YDky2HCi5VdZCePIxMojCykNcDeb5jrQ3POzUl0sT3DZv6jqDMoV20Wokxlodk_jUgMskgxj.LsEXwv8so7Un7J_Gk6hmsYOEP0FXhHs1jUYoOFq8HCdNzNl_u8ihr48l0DIIF0jQTGG_JhJfxc1uNjzpEqTQsUTG2C7RHWmUoG31VLdGJGRhGTv18S2vJcbKbmtIFtL8hKLFf8aoYAhSu4yn1dgmWrBiu9O3PPy03ryIMRwInGBFkD0317LP0_wsplNjW1IF4ODE6HmEVloWYZQNLOgImLfICkRsC0MzVXekmf87fbpzxp0qjz4yFQBWKDPL5Vz2wiubCIUn_boodMeVD8Nme1vFayJpEcx_eS05sEx9LcqtU2ynerBaAM0XHMzlENWDeKW0JnJVytigMafjZ5FHZTqtBGywK0teMHFxHFrsvMwILKonutcbwb9L0QqrX0LB9gevvirwrOfKF83yg4Fd94EL4lz.PsK6Uay2phFyocXZ7AMQhVtiy_RpOcppbJpnPcTJSidZeVNBKuDUQd0NuR.Rl2_hyxW1W6OagWmWjNr1ReuhraDrchwmowZ6TrcbZXQ.SDVBXhhu6Zvyo_llYHzIzlqDm74aavi0tGSkVev7EJmlgb1qSUXRXc28u0SQNllIp.VMuYR0RG7T7R1KN.cXhfhDcA4IdA4LuLzKM.dPVUzkVPM1r.lAv_g29vSRzDdFYyfpUxhQSmiGhMIFZYCiolviTlZHZdYhowyiJfFpTAX1E6VRKix3HYCClxVPLuKMMDvh.TyDhEYbtYC18euztbJyPqbwPIdvibwcZlFNCvpBsdPG0olzEsWOdSPD0BOTQC_XB.wFdAR9TUs0tNQe84e75H79RgcPew1g8GtxKXTIkZbP4_o7e7czv3QOV0SKo5aU2gTz0TitySpbYnA',mdrd: 'ztn4.vXMp7lDFecl8P4P8bMa61u1MUAVr5eezpOEhfY-1768120953-1.2.1.1-2oFxCVEJtRah766ijWt9oilt0G.M.Ywhf.1fAvOZJP0HhgCDaM.woRr97oHsabGGtpQEIf06rZOmRzCp_1N4pojH4Oo6zLQnUXC0tFKbmaXGpCz1zXqG8IXAsffmDTGiGAlhqIYhAO.KAv1Uggvqad3ZJFCvfwUXHnPkqmhRfz0kTPTjLOJcaXXf18s4nmvTaN6S5e8nN2wktPysSAkarOZy6cHk1WJwpP90vSqgNq3uvvIIrxkMuleIzv4uYmwju9GeIbZtqU.t9kzyYPaXHDPXU6GdBudGrAJqiIj6SDHiZ4Aseo_SKTRrQ2dmSz5IEAiXJSGq7Ye5MjFAv2wdUqKSX_wDIK0SR3oTREgYfV
Open service 2606:4700:3036::ac43:b041:8443 · zendodesign888.com
2026-01-11 08:42
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 08:42:33 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bc31f144839319d"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=%2FsL1lFlxjqvAAgKxCdc%2FzhNj5693w5jdYIaDYj%2F%2BdVfG7xF1bMJHE7cwg1UpR7QostZ51fft7pCf7SeQeB%2FhpdJVHVyT0FPRE9c4kZlmkfvY6Ky58NYLNcKRPbVbWWoZ0DEHqI5PfIn1wqe3%2FeIxntM%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bc31f144839319d-AMS
alt-svc: h3=":8443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=721&min_rtt=717&rtt_var=277&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4208&recv_bytes=1769&delivery_rate=7179760&cwnd=253&unsent_bytes=0&cid=78b0c0fbadfa47c6&ts=26&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'zendodesign888.com',cType: 'managed',cRay: '9bc31f144839319d',cH: 'TcWDsabjILviJ18gbSqcbkg_zkqmMunR6wjVCr897KQ-1768120953-1.2.1.1-2tVtSizls0Qtsp8.WibqWi33BR2.jcpHD7Iqy_tLqAbJA445aXkzdjunyek_C5li',cUPMDTk:"\/?__cf_chl_tk=L.Vr_EtjIvxdpt5Sm3vCfniV4plGhOLH0egiA4rlLcA-1768120953-1.0.1.1-i1AeIV809DZkx5kCTT0bqQFTnRZTMqHI0UWWksDMFgU",cFPWv: 'g',cITimeS: '1768120953',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=L.Vr_EtjIvxdpt5Sm3vCfniV4plGhOLH0egiA4rlLcA-1768120953-1.0.1.1-i1AeIV809DZkx5kCTT0bqQFTnRZTMqHI0UWWksDMFgU",md: 'yH_u0cHOYnNEYl2pamR462k9OU1RsOa4Fxp5rWQ389o-1768120953-1.2.1.1-kqXLDuG3bmx87t6GJM4S6Cuis9dZoWGgOQUKU9QPb_mT7HfwyFtRYsPzWsxu2uTO.XfodxedA6MIl_ECvNDLX7VW0pdCuiuMFBM.okZOk8PL8ViFqrVQ6v5RJWxbGYs7QIOHSe8QO82AmV7Lo4cbym65pPzMaXWLpnhO.M5L3UpiI7Hl3YlCV5ld65Y4F2mNIzWIfMOVg1XD0Sc5onKw7UoMXuL1mr4DnAsU5aVEkPAdILeVjwM.f1i04LGjAzaK58A_ZxXQFwA05k0tygyctFr8ZsVBOaqfsgLkIqJhEitCgiQDzG5QbvrevA6R722JLoJNUUQ_FFaxuQbdqVDK2fM9GeC4n8CUs49VHNfz_qw0f9JpGR2w6tlkou0oR2cfpDFi2TNZlaAG7SxrEhIKhFa_Ig10LRAIeEBzaIrNl5LwhVTobGSXZfDQXn.QBMbC5VFCPr46ilhZ1L.Al.5SmE51Q.IOtizuF_LWF2SzrKGdYvalD3nHBVifT2cJfrv7hxPYymq_BQkBFinhB8k6u40yxHsDKRxS8Lb6ndSD7mU6eOQsFR8JvwnyvD8rPEiO.0nzhhG8Ky3g1QszoAOFmeXs9dDs4ry1iHHHibtY8Pp1.OTGQc9y7aPMZ0YZ_M9nj97WoD9NkI8jbQI4nf81R5E5BBXey4uIXdFAOdmASVGeM7XVA7tQ_V32wSyPMwdNw4uOWzxJv_X7JL94Z4aylhYqiz73BP24Ou7AwIe4trYmPtsER7mkZV5mlW7ZchKh56EYCDE1aerNGfGjHdtyl7cSPIbMA2kUGAlIH1Nr0_7aL6aw_aJlid5YqAi4SWFO0kXb8y0p5QyxW1ROOgczBcAYxFK04CbKo6vKNQCbQGesm04OVtcVg85deXtFmCjD90UFGs6Diq4UWwM5aj1AxUdu5psa.Xd9ireN6XwQC6VmY7SmTDT8Xgo236o80txk0CVbGo2weBCL6txqilnK9kkQPEH9DWq9Hwpm1pE_Nhdb_aef8fP_JrSk9fIopsjtKGyFGhnwJtwFLJ8DGhaWWQ',mdrd: 'Xbg3EwIqfPv79CrFtWwBcWrCLZaw2diJxQZQqiHPsRk-1768120953-1.2.1.1-s0KzzcNiHGJLNakdgMV5CCImEIi_AG3VtgH9Owr45cO90MJ1lw0nRn0ZdksruU5UXE76a06JCVXn67sOIbxMEaQBRAlQmuiPA99YPx7zguL.VeR7I4B6mqncsaP0_QpKCU00dAERZ9i2rOkdX0cMmBlUevBsYoCZwB9pWUFRecQQurddfWwUzYXL9EGeUlVWPS130HV9G1biDiEnwm2qazTqvsrm3RVeQOwNbUyo.tmJpEXckOXU_jQhPjkt6HDJfd.MFhfq_2sk9E3a.TVUZ8yLp0NlbeAcE7bYnefNWEdDwqdgMRl4m.dFgM4ORWutVhjAApdWz58c7Cdnb93WeIYH2hryvywPfEHxauHJSR
Open service 2606:4700:3036::ac43:b041:443 · www.zendodesign888.com
2026-01-11 08:42
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 08:42:32 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bc31f13df8f1a68"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=8Np4NqdIbXze%2BTDs66U8zwT0MGX1Xuo4Fm6uw53G3D%2BWEtXVG9CeI4eziNcVyGp0kqB1XjWCkA0qE%2F%2FR3mm2gy4V82Oe5bbdddMm7F5ek93QYzou0oAcrjEUlmhkXS5t9Vn5rRWgAvd7yM0%2FCx5k%2FQX0nk5U"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bc31f13df8f1a68-EWR
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1428&min_rtt=1338&rtt_var=566&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4206&recv_bytes=1777&delivery_rate=4029895&cwnd=253&unsent_bytes=0&cid=2039a1a1e415bab4&ts=20&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'www.zendodesign888.com',cType: 'managed',cRay: '9bc31f13df8f1a68',cH: 'OOvpTupPqj.wLkUfGfFtju2kn0wVG2gycpdWvUOGNgg-1768120952-1.2.1.1-4O4fNsy7nxwPU3hfKNXOy8kGoNeHSvvhLHp9Pg8R6OKs5hOVuNvwLxuReB__FAh7',cUPMDTk:"\/?__cf_chl_tk=W_cNGWrQG0zJlI_.5MrzGK_okeUGdgOp6Yif5ebPkRk-1768120952-1.0.1.1-fChba84ZagVcnyc1v.S9cCaMFFDA0SYo7m7fQPEAZZU",cFPWv: 'g',cITimeS: '1768120952',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=W_cNGWrQG0zJlI_.5MrzGK_okeUGdgOp6Yif5ebPkRk-1768120952-1.0.1.1-fChba84ZagVcnyc1v.S9cCaMFFDA0SYo7m7fQPEAZZU",md: 'VEYKZ1hAm_bX5.nhxAsXrrvjyOJy35S8yupZI45abQw-1768120952-1.2.1.1-mvBCwGMM64oV8FkEeNosSmhSLVfy7bXEycQV4YniHMWMEaWo5XD4c7CCTtI_oOa0mR_iFvBm55pLBvX.a0h7oKVqgZ5scBLuNCgBo6Hp4FxZh1zX21vDiKew3vbDUGdOY8vh9SGxd97_dWGcDua98pi8rbCWSC_QK2lMY9gjBgA_qlavUXh4uA_zIOVm32FhJNQcT4SJ4Q4tVGt0eMVQeEUTvr4kSmsUt0lzlHoKoSZfhF_CBYjFFnNwwaONJxP36W1_AsBsgQEHPEqnHkzUSIeQLrq4Pif7e56AmjV_ifka6nPnKOxOgqaoIe5lYGlfylcB0dAlQ6r2Quq0CeBDO_.Z2dXJtYU_4U4cUGYsO1zeckt4URkaBBsJKjyLPYr9EYL.K9WvB_diRCkLrBGZJHOI3DnZN_zQ57cCJ7CKakmXU18QO8dMSwdQseG_fWHf6h19_9XTeL.iAHmA1B2R1tK5crxAjTT_Gt9AKQ7bJoR7wWfvVMxteBxXSc14laBZo4s6YZK.060PXfP8J0jmrvWtBeGU8HT69tLSm_rt1CuQ.jszVZeOQYwSc0uhX1yRetAs6S71T36l3cBSjzOouLOWLLzaXVG7KPGoXg8K5ZpNeFI6QfeFARSMvoAcJgjfLOErFriWPUjRwnry2kJ7iIqc0zIBPsWxnZJFO58lTq8mDCrkI6epsqik9TIRTbOraeXvAcM3koT.SuwY5q1sBYrViKA90IG__dEHv36ZRqx7.vihxs12VjEjerYJjh2s0ui3zUGDh2lzHP1seqkZh9ZXYfoY6TVfgyoiYk0oiPFmR_NzZP4cWQ6gXxpwugqDpfhF0XE5fXDjBw3Qnv.7fbxqsdIkf3Hwq0aE_O7.3HCkp_.O3ha8uHyzmX4X42HRAHI3_6VQwyxc37tAh4l2kKXXaaWdv5VuylzJeHMYDGXlDFKXUtAl4vtBr4tSjxDpl8Dae2RSyoa73sGi7qs7Os4xjZ0iXXB3wVuMaIkGtE3dozb8cH12lI9zzLzmgpqeW..YDT59oD7KDY1u8x8awA',mdrd: 'J.KmVyWruSOCdMjZb4w.v3D_R3LM.gc.gor0wTNCyj0-1768120952-1.2.1.1-r2_PZ_4t8acEvAh0zF3Ijt3d3U3lATn0.Tx2xTW0Ofe1dM8vMUlrQhu4OsH9lHmUlptZIj5ke06gjpoPDQIiQRi91becoiaLJ9sXnNL5Cz5xcLMbJ8v.hR_cul9fb2jPKDA21v9GKFymGgpUG37tHaNcezF5cGVTaXPdcr6a3I8WT8C8EBVGDSGbtzXAP49fYSPeeyqYBd6b.h4FeHqNGKEsseLiCES9SuGERd8culbheouyeKzaZUeDashXs8QBWdTbKHoqgo6w3kbnL9olT_KayIPNDPR67lvNqV2_oBmFHiqtLK3je86SoWa4x5al_WZT82J__QlvuQsLO_zp7Hcjt5N6FUSQTk5pur
Open service 2606:4700:3036::ac43:b041:80 · zendodesign888.com
2026-01-11 08:42
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 08:42:32 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bc31f139eadb35c"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=eJJ67NKwg0tk6Pjb2Phh79oNXepk6XHlVXCBrLUCHFk5BrxPFG0Ig9l%2BbE153ESH6MbvexlxOyMp86Zvf0dSaVkfEu24YR4a5%2FMiqu%2FqOVETzqyNgeyo7eGl28GhCesHjr1s%2BLUeko4hrGk6aMaFRX4%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bc31f139eadb35c-AMS
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=747&min_rtt=747&rtt_var=373&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=173&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'zendodesign888.com',cType: 'managed',cRay: '9bc31f139eadb35c',cH: 'Y3nFbxMZueQCp8mK053kcL1SuLZFuTLVWY.wqS3kQYs-1768120952-1.2.1.1-fxG8_1Hafc6UxZ6R5GcumbKOvp9yUO7bKKwCo0cuEKEzW5h7RFunU949nPop6eU7',cUPMDTk:"\/?__cf_chl_tk=fOrgfRryImr3x02LdT46taF34KotdN5bib_8d0OHsvo-1768120952-1.0.1.1-SHHJPFn_yrkfKCkOUVEIucArwSl1M9ovI7XZUgRu7KQ",cFPWv: 'g',cITimeS: '1768120952',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=fOrgfRryImr3x02LdT46taF34KotdN5bib_8d0OHsvo-1768120952-1.0.1.1-SHHJPFn_yrkfKCkOUVEIucArwSl1M9ovI7XZUgRu7KQ",md: 'u7PAcpdWfklyElCY2TVTfwB.EJS8bd8keMKeWWiWhQs-1768120952-1.2.1.1-6Qh54aevapIaDXgAlMnk0iGu.d5MJ27Is8czwBX4LCTWHovVUmPTK71NfRsrgRndXHQrI9grzkRU0jjXkK8_4QjkiuV7Tlxgf7MEfEIRE9atpJZ6ebciowvrL6TDhbyXmhGWVOymnHYmx_EZKxn9zqlUBGiBAJrvGH0EvXOxGK8OaRtTIniJN8iHRMg_QjYF1gH5zlFJKhkGzIUpNNgShNSLdJTnJhVu6EXybQCt.OtOZraQ6rLZhHZ0maV1KF1rxxhqDFj6bjjL5HrttvnfH7xg3sodgCiHiQ0A02XP_zf9d4PhGrFuTdl15l6fqsguliR3pAx2egJya9c35im2QUPI0h_8oNl6leG.WkUjiob7P3CUEU6VquQeinVD5rnIonwG8h7KYl5xYlgo3NYUjEYNKTJK_rbEMiNzU32UdX0mHqjTRgRSZW8xhUw3igDOTAdhlOxBGD_Nd_high9KtVcCG3esccCE9IUzTNFI_UV_SQbi4o3b3_wuzC_OSi3AYPlrzexHFBpIag9w41M1ao2qpUdJuitgx83kOZvA4V8ev12Zc0FRBy3EWT9.0KmE8e1CgqZZozg7Rro_dfwjeUxQXaGf15F7xJrD_TfdMY3WIorxRjQUnHQt95lsL.LwAPtFCu_AlAj4wtaE2BHhQ5AUt9fy3tI.CRi0Dfuu7hb7S9HuYCbEWcmVcxjjlkBNmRP3LNIq.z71msn7qVVJ6hTkGAtw3XGAdB9Vnd.YvGfTcfXQg7Rt7iXyrLMQRWIbNpL64suEVJpYK63fs0kK4s41x3zrkT1H5QgbV3KeZFmGFYo8S5qdS3ZpXuD52La.x.BXprd8FsQy4.hHKNEcFeNUgcsFrYC5c7L2PUM1eWWVA7OjmKihwknpUBObIdb_300DmobyFItEQ6nENMLKyh_FoqLA8nqB7ZeoEjRP0iudrWilkmmasPfNfCmCyC8DNna3SLQNeemiJvHcLc6ieUSFEiRlkES1I2b9HjUNvEkisAiUdtozMLclfdCPsN4Ei6VHkz4Spm7uKeY6lLX8Xw',mdrd: 'DlD5_cjn0p2Axv43YyGnEqdvBfatGAmNZlAdVFEOIMg-1768120952-1.2.1.1-OlfGe__6ZZyTrRf1HiqkJmYk4WZNeYH30qMlNnIfDaF.SRHCCmur4qwKuxVeWvcxiLGQv16b7L2d4dfmwNtMNpU0nfu2QtXI.x8yxmlXix0Np3AQl655MLlBfL0.cmJPmSZSFobbrznfZlFDSlm_DUbePknXTv.csFp8jXHqogJ0Tlq38Jz220p96xXtTDrxfJlG4KAaMnv3tYacMirdKX_aqtTfiB4.UtfJZTjt6sAYaez2WiUr6puIKfsbvwYLUyDg1eu3B_9Kyk8.7nJw57UhV.a0mgIEQo1oopJzzDkgIaldyJnoSxM1U353fyaODnPPJ8bbwRVacvIy2v0gWpzUDP1hyKi4TyjeKLxzhW
Open service 2606:4700:3036::ac43:b041:8443 · coayamk.info
2026-01-11 08:00
HTTP/1.1 522 <none> Date: Sun, 11 Jan 2026 08:01:02 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19672,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc2e1c8ca2b2223-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · coayamk.info
2026-01-11 08:00
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 08:00:41 GMT
Content-Length: 0
Connection: close
Location: https://www.google.com/search
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zwDXG6ONwyxKxGTO9Gxf7FZwpFalMkt12kX%2BufamaXV%2FL%2FiAxMc6ozoOPFDz%2FFPyRlSOoUUuD2YYFMxgcBh38LfptQA2Qn7kQdPyxfF6Eq9Bon4IYQKD4A%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc2e1c1eea320a9-FRA
Open service 2606:4700:3036::ac43:b041:80 · coayamk.info
2026-01-11 08:00
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 08:00:41 GMT
Content-Length: 0
Connection: close
Location: https://www.google.com/search
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Zpmg8P4G%2F86oUWbTHrJu82JcVGbnCvy9xPO%2BTBmtjbgm%2FHDdWpoO7F8l48LUCfhbaQvu2TagV%2F0K6%2BJ5qdDE5VoXGpbhR2FaePAJMFBbLyKz24JFxw7G8w%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc2e1c1b86dd46c-LHR
Open service 2606:4700:3036::ac43:b041:8443 · voc.org.uk
2026-01-11 06:26
HTTP/1.1 302 Found
Date: Sun, 11 Jan 2026 06:26:17 GMT
Content-Length: 0
Connection: close
Location: https://www.domain-investors.co.uk/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jq%2FOKP%2BaW8E3UIkjJPK4UaMqgxfIT2x0gOOvW730GIVqY%2F3y7fsyxUp%2FNlOBzkfibeHD1hGr%2FZ9n5bYLWfQZFF2FER8Ex2JnESRLcdidbTQY0%2F0L7h4%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc257784fdafb28-SJC
Open service 2606:4700:3036::ac43:b041:80 · voc.org.uk
2026-01-11 06:26
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 06:26:17 GMT
Content-Length: 0
Connection: close
Location: https://voc.org.uk/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sQTq1l7t7xYHE9xIc52kIN7pzTPALsTzhKmAN0tv5KBfEetzcbtYH%2Fl9O0YEJLZxw6BFDn%2BYxyUK2TH6HLc%2Bjr5hTjG80hrJw3lA1vQ0SxcZcY5UAPc%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc257787c6a3a1c-BOM
Open service 2606:4700:3036::ac43:b041:443 · voc.org.uk
2026-01-11 06:26
HTTP/1.1 302 Found
Date: Sun, 11 Jan 2026 06:26:17 GMT
Content-Length: 0
Connection: close
Location: https://www.domain-investors.co.uk/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=3AVADwjXV6fBMBK7CDwiM%2BeIj4dznD9dLErV1ZfPqkdpK%2F9EeR6U6EUa9bmb7LnIUVk8ELQMDmSFe6cJeW6zSAxANeE3b0c97SQL1%2FQa34Cmmg8rZGU%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc2577839ee4900-SJC
Open service 2606:4700:3036::ac43:b041:443 · gamingbeast.website
2026-01-11 05:37
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 05:37:14 GMT
Content-Length: 0
Connection: close
Location: https://gamingbeasts.store/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EjcC6FWl2I%2FsF9w5SHBXHspeFJVSBiNZtNlXPBQWEcsEMpZTt%2BpS2It5g99tSj6JuFbHspsHOVrr1lFWQq9BZF9q5nB%2B765h1TFuCpnXeJKTBG%2BL6SywNUQhue8%2BhsU%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc20fa31a9b3b43-BOM
Open service 2606:4700:3036::ac43:b041:8443 · gamingbeast.website
2026-01-11 05:37
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 05:37:14 GMT
Content-Length: 0
Connection: close
Location: https://gamingbeasts.store/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aRZSRU4WFVgnU%2Fp1fRbV1vr1BV1sWZbPeE3XS86lkN2Yz50RDbcn9mmkkmm9jtLADXLBDmEB1Rn8oJO%2Fa6NTT7R1c29zn649bHdB9D5x41Y6kGy4I1zQ%2ByKS7EPW%2FQ4%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc20fa2d8f1556e-EWR
Open service 2606:4700:3036::ac43:b041:80 · gamingbeast.website
2026-01-11 05:37
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 05:37:14 GMT
Content-Length: 0
Connection: close
Location: https://gamingbeasts.store/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=4I61l447zf%2BrQT932PzfWkRzBx79s3NLQMs%2BZSg1re%2BIVq5bSbDvDmLx4j57pQx4kubsNWjHkVNTkVYexxZvQWHLMhLtpQ4qEarM2ap4x%2FXfPj9wdN1xRvoxqW0DM6o%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc20fa29926dbaf-FRA
Open service 2606:4700:3036::ac43:b041:80 · 77pak5c.com
2026-01-11 05:15
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 05:15:09 GMT
Content-Length: 0
Connection: close
Location: https://77pak5c.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5KOC7U6cdj%2BeVvgp2d2SrxK6ZFO0gMG0L0hH5d2YYzw%2FHCkKnB%2BFMSwdXLO2sjord6TyrAmlvswHGiV%2Fb7mQZkCcot907w3ej3ox6TvK6qWx2b%2B6v8Iy"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Access-Control-Allow-Origin: *
Server: cloudflare
CF-RAY: 9bc1ef472bef975d-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · 77pak5c.com
2026-01-11 05:15
Open service 2606:4700:3036::ac43:b041:443 · 77pak5c.com
2026-01-11 05:15
HTTP/1.1 302 Found
Date: Sun, 11 Jan 2026 05:15:09 GMT
Content-Length: 0
Connection: close
Access-Control-Allow-Origin: *
Server: cloudflare
Location: https://www.77pak5c.com/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0w1aIQGvPHDKrt9P1U9b%2F79ft53ErvK3Mxerq09wr9L%2FdW7NoaChTonUn00%2BFRAlthiXqFDkVeIKXcBN8fQNthwWzzPCVpFTW8BZDLAbFC9JvFdpW6dd"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9bc1ef48eb5b940d-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · incomich.com.mx
2026-01-11 04:16
HTTP/1.1 522 <none> Date: Sun, 11 Jan 2026 04:16:40 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc19921f8e66567-AMS alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · incomich.com.mx
2026-01-11 04:16
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 04:16:19 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Set-Cookie: PHPSESSID=2irv1vn7l5r8k21s52lo1dtet8; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Location: https://incomich.com.mx/
X-Site-Id: 4af5e773d905cb51d76b175bcd83abd96b771764e0a2ca419d51ccd7805f71e6e07c6bcf
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=N8Hjame7etF9P%2FG2%2Bcb%2B%2BIXMBIHWBNsLJVJvC99IM1s3l%2BYENZhUXUBAX7qpiDPV%2B%2BHwiWRxF9JvLJmE5gl8o1VrCvfTeh6hZHps3%2BMRFKTibmK38T%2FhjwpDmQ%3D%3D"}]}
CF-RAY: 9bc1991ba8e0a6e5-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · incomich.com.mx
2026-01-11 04:16
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 04:16:19 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Set-Cookie: PHPSESSID=386bug8q3io29q9f5bfpjb3cv2; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
X-Site-Id: 4af5e773d905cb51d76b175bcd83abd96b771764e0a2ca419d51ccd7805f71e6e07c6bcf
X-Robots-Tag: none
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=V8oYFDzPWQRyldOL6P05KWwGLiYnnfjt60gcFSdCuq%2BGuKbHsbT2hHSJTzEMo1HCbs0NLj2Ly%2FUY6ntEnAVv15UHaCgl1UFmQt7WTRWRXRxW8RFrwZ2ZpREYmA%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bc1991bd9ef66ca-AMS
alt-svc: h3=":443"; ma=86400
Page title: Inicio
<!DOCTYPE html>
<html lang="es-es">
<head>
<script type="text/javascript">
</script>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Inicio</title>
<base href="https://incomich.com.mx/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- Facebook Open Graph -->
<meta property="og:title" content="Inicio" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://incomich.com.mx/" />
<!-- Facebook Open Graph end -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-3.5.1.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/main.js?v=20220409223410" type="text/javascript"></script>
<link href="css/font-awesome/font-awesome.min.css?v=4.7.0" rel="stylesheet" type="text/css" />
<link href="css/site.css?v=20220409223409" rel="stylesheet" type="text/css" id="wb-site-stylesheet" />
<link href="css/common.css?ts=1651532354" rel="stylesheet" type="text/css" />
<link href="css/1.css?ts=1651532354" rel="stylesheet" type="text/css" id="wb-page-stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-166544967-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-166544967-1');
</script>
<script>
(function() {
var anonymize = function() {
if (!('ga' in window) || !window.ga) {
setTimeout(function() {
anonymize();
}, 50);
} else {
ga('set', 'anonymizeIp', true);
}
};
anonymize();
})();
</script>
<link rel="icon" href="/gallery/world-wide-web-on-grid-ts1589405030.png" type="image/png" />
<script type="text/javascript">
window.useTrailingSlashes = true;
</script>
<link href="css/flag-icon-css/css/flag-icon.min.css" rel="stylesheet" type="text/css" />
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
</head>
<body class="site " ><div class="root"><div class="vbox wb_container" id="wb_header">
<div class="wb_cont_inner"><div id="wb_element_instance0" class="wb_element wb-menu wb-menu-mobile" data-plugin="Menu"><a class="btn btn-default btn-collapser"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><ul class="hmenu" dir="ltr"><li class="active"><a href="" target="_self">Inicio</a></li><li><a href="Productos/" target="_self">Productos</a></li><li><a href="Contactos/" target="_self">Contactos</a></li></ul><div class="clearfix"></div></div></div><div class="wb_cont_outer"></div><div class="wb_cont_bg"></div></div>
<div class="vbox wb_container" id="wb_main">
<div class="wb_cont_inner"><div id="wb_element_instance3" class="wb_element wb_text_element" data-plugin="TextArea" style=" line-height: normal;"><p class="wb-stl-normal" style="text-align: center;"><span class="wb-stl-highlight">Soluciones de negocios</span></p>
</div><div id="wb_element_instance4" class="wb_element wb_element_shape" data-plugin="Shape"><div class="wb_shp"></div></div><div id="wb_element_instance5" class="wb_element wb_text_element" data-plugin="TextArea" style=" line-height: normal;"><h1 class="wb-stl-heading1" style="text-align: center;"><strong>INTERNET Y COMPUTADORAS DE MICHOACAN S.A. DE .C.V.</strong></h1>
</div><div id="wb_element_instance6" class="wb_element wb_text_element" data-plugin="TextArea" style=" line-height: normal;"><h2 class="wb-stl-heading2" style="text-align: center;">Bienvenido </h2>
</div><div id="wb_element_instance7" class="wb_element wb_text_element" data-plugin="TextArea" style=" line-height: normal;"><p><span class="wb-stl-highlight">Esta usted contando con nuestra experiencia y el conocimiento para obtener una solución adecuada a sus necesi
Open service 2606:4700:3036::ac43:b041:8443 · vaughanlaserclinic.com
2026-01-11 02:57
HTTP/1.1 522 <none> Date: Sun, 11 Jan 2026 02:57:54 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc125c37e0388b0-LHR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · vaughanlaserclinic.com
2026-01-11 02:57
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 02:57:35 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
location: https://www.vaughanlaserclinic.com/
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oQsG7%2B0VdOiWhN7O8Cary6Z6cLlhmzkKOt3U8ZEIYjc1CisHFajA1Rcw4Gx6tkzfDuJukjI2bCxbN9Kk7p7LljgkDcScPIN1Xam9zegDlsgQ2ro9w8%2FDuOk9AbSvf2zH3B8%3D"}]}
CF-RAY: 9bc125c039b19488-LHR
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · vaughanlaserclinic.com
2026-01-11 02:57
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 02:57:34 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=FRohawqTc4LspR%2Fk689RON5YdN12Knu8giGyIYRRwAamidt5MzM%2Fy1Mu%2Bj4zFHoEgoQJH6poXikKoohpSvd9coHobvoj4UUYZ3e4Kw%2BAOVoALdd%2Bdq8Fk3Y4VtlkO7JlCp4%3D"}]}
Location: http://www.vaughanlaserclinic.com/
cf-cache-status: DYNAMIC
CF-RAY: 9bc125be8c06dba3-FRA
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · rashlanutlawyer.co.il
2026-01-11 02:42
HTTP/1.1 522 <none> Date: Sun, 11 Jan 2026 02:42:40 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc10f6ddc3d71ac-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · rashlanutlawyer.co.il
2026-01-11 02:42
HTTP/1.1 200 OK
Date: Sun, 11 Jan 2026 02:42:19 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
link: <https://rashlanutlawyer.co.il/wp-json/>; rel="https://api.w.org/", <https://rashlanutlawyer.co.il/wp-json/wp/v2/pages/4402>; rel="alternate"; title="JSON"; type="application/json", <https://rashlanutlawyer.co.il/>; rel=shortlink
vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=YGbg7Xq4RMDPMYTMDXUWIifP%2B%2BCZ3Xjdord9aC17lBjWdg8yMsBiCYqcZ%2B1OkdvUH9quvqp4rkI1QA9QmzWUuh%2FQcyB8HpDvMJiPowghSIeLmKoSa9mL4mvTxaWS8iSr2A%3D%3D"}]}
Age: 5088
x-cache: HIT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
CF-RAY: 9bc10f677d5a661e-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · rashlanutlawyer.co.il
2026-01-11 02:42
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 02:42:19 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://rashlanutlawyer.co.il/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=k5HoGWjHKuTnTLUONUqPFWraNHVQWd%2BiD2AwLy%2BJRB97Xzk1CXl1M5CPflOXCTktAtKuvzFAqk4KFJuQrx7SPeQDRdFvEtVJ%2BSdrh20J2ixYw50UyjPl4LBIwzhETElARA%3D%3D"}]}
CF-RAY: 9bc10f674e1165a2-FRA
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · hnhaoji.com
2026-01-11 02:12
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 02:12:28 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=7,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oO2VuA6t%2F1bO1d7oQpbnp2tzX7JG5bhZyEujvhJfaCsZU2b7z3yI6RtzgyBzoVDt2kx98jyapaN5Q4hUZv%2FnjTAGVmnOcT7E1f9NbXoQhvyzAtCO%2BuMZ"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc0e3ac2938fd41-SIN
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> hnhaoji.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bc0e3ac2938fd41</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2400:6180:0:d0::13eb:7001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:443 · hnhaoji.com
2026-01-11 02:12
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 02:12:28 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sc4Cd8bAe5XJNQ%2B0m0VqNtZrMGL4kMQi0P1%2BvP%2FC0LDe%2FnkNn43cCyWkvOSNGjCOBXXgzSabOfrT8Q6z3m1fNm%2F1Zn5MrPUMnVS6xIdFcaYWVtC75f0u"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc0e3abed89d378-FRA
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> hnhaoji.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bc0e3abed89d378</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:3:d0::d04:1</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal")
Open service 2606:4700:3036::ac43:b041:8443 · hnhaoji.com
2026-01-11 02:12
HTTP/1.1 403 Forbidden
Date: Sun, 11 Jan 2026 02:12:28 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=8SxkftSzuJrK%2FuGAsGFvH%2FhegJ7OEvOyiRESGP1CZnwgSzBA83Ajbp%2FXHQAZpr0GpO8ngAZLm9hWv7jvnzeRSVtXrYn0rGDYOy2raGtjLxaCjUUfLPGE"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc0e3abe9c9511b-AMS
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> hnhaoji.com</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bc0e3abe9c9511b</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:2:d0::1773:1001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
Open service 2606:4700:3036::ac43:b041:80 · revendo.li
2026-01-11 01:55
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 01:55:09 GMT
Content-Length: 0
Connection: close
Location: https://revendo.ch
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=P%2F1FqofFTtpgXcRTUuwrNyTTTMVoX0AR%2F16JWMO4YYk2T9rKlPQ5pM2yw%2BOggQmutQgDlyVN0xkIYWXZhlfOIzBlODaQg5d%2F4XDvU6maNmGaxCz5kOk%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc0ca4ff8aaaa31-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · revendo.li
2026-01-11 01:55
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 01:55:09 GMT
Content-Length: 0
Connection: close
Location: https://revendo.ch
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2FCjsb0Wmr6ti85gcQyZQktfmSygJ72wwcM3FyeCLLFkrBaQxf0TfeL0hFriRKHBE5LIsHtHboWkzm4FGcEZ6IJDVYySQeHuH82aNVYks2YFAzDb7ii8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=5,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bc0ca4ffc50424f-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · revendo.li
2026-01-11 01:55
HTTP/1.1 301 Moved Permanently
Date: Sun, 11 Jan 2026 01:55:09 GMT
Content-Length: 0
Connection: close
Location: https://revendo.ch
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=r8IDX0eM%2Bx2PScayb9kEvwDWs%2FHY7e09vZI%2FuWXI89xrDjW60wTnGy36Lz%2F45I3hmOmsBtJlD5ttatk9gnWrAphdwJ72ewxTsK8lCQignGlOTudPbIk%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bc0ca4fb8fd1808-FRA
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · foomoniiosdalraze.cyou
2026-01-11 01:22
HTTP/1.1 522 <none> Date: Sun, 11 Jan 2026 01:22:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc09a620ef8e351-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · foomoniiosdalraze.cyou
2026-01-11 01:22
HTTP/1.1 522 <none> Date: Sun, 11 Jan 2026 01:22:45 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bc09a620e9dc91c-LHR alt-svc: h3=":443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · gondesen.cloud
2026-01-10 23:00
Open service 2606:4700:3036::ac43:b041:443 · gondesen.cloud
2026-01-10 23:00
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 23:00:54 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-WS-RateLimit-Limit: 1000
X-WS-RateLimit-Remaining: 999
Server: cloudflare
Last-Modified: Wed, 13 Mar 2024 18:46:50 GMT
vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AqehY80%2BV5fC091LR3Q9ocwbQU%2BozouJ8RKUI%2BpPsOWIO3sgO2p0k%2FSZnboJuYR2K5FWbRUZbzyxDZ2tFnh22iBKRh5t4quT%2Bc2jX9H65Qagt%2BNAyAIqx2eG"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbfcb0fd93e14a8-EWR
alt-svc: h3=":443"; ma=86400
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Refresh" content="0;url=defaultsite" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
<!-- DE -->
</head>
<body>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · gondesen.cloud
2026-01-10 23:00
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 23:00:54 GMT
Content-Length: 0
Connection: close
Location: https://gondesen.cloud/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=f6wTq%2F0HS2cnrotrkyv2vLJFc7vnDFcRDGH4NzMipWPa01hZm7obQ1NgDSt3PfOQhyVmIyc29qwPFBToWzaUbWw74hh%2BcX0zZYtfe2vw80QSvV3kzKMKcGKn"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bbfcb0e3ff11cc6-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · ysfwq.top
2026-01-10 20:09
HTTP/1.1 403 Forbidden
Date: Sat, 10 Jan 2026 20:09:16 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Set-Cookie: server_name_session=fd3861404b1373a740e6a4e862fe110d; Max-Age=86400; httponly; path=/
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=19,cfOrigin;dur=181
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MEa55ELzhZJXl5t5iUhOpcUGa9%2BSCiDNkD1sWlK8xo%2BeTMNKXPnTIsOP7rdxLaLdAjmTr3wlrAD8wBILgHfUvCMbSeTJmI6DMbWqVGMncfaC4i8rrA%3D%3D"}]}
CF-RAY: 9bbecfa5a9393f7f-BOM
alt-svc: h3=":443"; ma=86400
Page title: 403 Forbidden
<html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"514bf58f516244c285ffb11fcf1cc316","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · ysfwq.top
2026-01-10 20:09
HTTP/1.1 522 <none> Date: Sat, 10 Jan 2026 20:09:36 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19766,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbecfaa7ab75425-YYZ alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · ysfwq.top
2026-01-10 20:09
HTTP/1.1 403 Forbidden
Date: Sat, 10 Jan 2026 20:09:16 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Set-Cookie: server_name_session=81f35fe4f610e97500420f0fe0722e31; Max-Age=86400; httponly; path=/
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=SU%2FgakFm7EkZw8ogJ6UmawT379W64Yz6W7sJYTueHG%2BaYQXYICoHFNOcP8f%2BcEtD65wWNNqF%2FZ%2Fqprqrt9cDO9zLodM5xWCMxWJKLPsm3Q%2F036o6rQ%3D%3D"}]}
CF-RAY: 9bbecfa69930d204-AMS
alt-svc: h3=":443"; ma=86400
Page title: 403 Forbidden
<html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · 112234.vip
2026-01-10 18:38
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 18:38:05 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=276,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbe4a0f8eb6423b-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · 112234.vip
2026-01-10 18:38
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 18:38:04 GMT
Content-Length: 0
Connection: close
Location: https://112234.vip/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GOQTbPa7ot2rYa7yGL8%2FrCel0kg6yV9Tzt2huR0hjIYYe98xC%2FldaT7rBIXsrxmiz0VqvRWufXQrbBxq2BAjKx1eu%2BpFCoISP9JF5GPG6vjxAe2%2By6U%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=12,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbe4a0deb018eee-BOM
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · 112234.vip
2026-01-10 18:38
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 18:38:05 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Mon, 29 Sep 2025 03:33:04 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Strict-Transport-Security: max-age=31536000
Alt-Svc: h3=":443"; ma=86400
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7C%2BI%2Ba4ZyvljiD%2BAYqe%2B3xSsVFB355SjUwKF9rD0ftRxj7Y72HQLI1oWBj2BZCByFz4z1cPn3hgNGRIzxBv1nFAMzj%2FPN%2BuAHTx7teuB2%2FLegza%2B%2FI8%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbe4a0fd8aaefe0-LHR
Page title: welcome
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>welcome</title>
</head>
<body style="background: #e6eaeb;">
<div style="position: relative;margin: 200px auto 0;padding: 0 0 22px;border-radius: 15px 15px 5px 5px;background: #fff;box-shadow: 10px 20px 20px rgba(101, 102, 103, .75);width:95%;max-width: 400px;color: #fff;text-align: center;">
<canvas id="canvas" width="200" height="200" style="display:block;position:absolute;top:-100px;left:0;right:0;margin:0 auto;background:#fff;border-radius:50%;"></canvas>
<div style="color: #242424;font-size: 28px;padding:111px 0 20px">通过360安全检测</div>
<div style="margin: 25px 0 14px;color: #7b7b7b;font-size: 18px;">AG直营,20周年信誉保障!</div>
<a id="btn" href="javascript:void(0);" style="display: block;border-radius: 500px;background-color: #ff5656;height: 65px;line-height: 65px;width: 250px;color: #fff;font-size: 22px;text-decoration: none;letter-spacing: 2px;margin:20px auto;cursor:pointer;">链接检测中……</a>
<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>LA.init({id:"K4n629xQvS8C65gV",ck:"K4n629xQvS8C65gV"})</script>
</div>
<script>
window.onload = function() {
var canvas = document.getElementById('canvas')
, ctx = canvas.getContext('2d')
, ras = canvas.width / 2
, index = 0;
drawFrame();
function drawFrame() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.save();
ctx.translate(ras, ras);
ctx.beginPath();
ctx.lineWidth = ras * 0.08;
ctx.strokeStyle = "#d1d2d4";
ctx.arc(0, 0, ras * 0.8, 0, Math.PI * 2, false);
ctx.stroke();
ctx.strokeStyle = "#00a2ff ";
ctx.lineWidth = ras * 0.12;
ctx.beginPath();
ctx.arc(0, 0, ras * 0.8, -Math.PI / 2, -Math.PI / 2 + index * Math.PI * 2 / 100, false);
ctx.stroke();
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.font = ras / 2.2 + 'px Arial';
ctx.fillText(index.toFixed(0) + '%', 0, 0);
ctx.restore();
document.title = '加载中 ' + index.toFixed(1) + '%';
if (index < 99.2) {
if (index > 90) {
index += 1;
btn.innerHTML = '点此莅临';
btn.onclick = function() {
location.href = 'https://34.92.144.31:8888/';
}
;
btn.style.background = '#36A11E'
} else if (index > 60) {
index += 1
} else {
index += 3
}
setTimeout(drawFrame, 20)
} else if (index != 100) {
index = 100;
drawFrame()
} else {
document.title = '请点击进入'
}
}
}
</script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · iyilikbahcesi.com
2026-01-10 15:44
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 15:44:34 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Fri, 12 Sep 2025 14:00:49 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=8,cfOrigin;dur=101
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Referrer-Policy: no-referrer-when-downgrade
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=zGfioJmyE0%2F5GGiziTY%2BVO6w2gR2tbR5s0PFGPf%2FObXUMuYqNru4U5k6LTJEMV0QMvDWZ9eZNdb%2FpX2fvO4QfSbEZYerCq5ivEF%2Fgp6sUTcXLLSQV%2FqIUD3UvZTu"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbd4be8ae3af80a-YYZ
alt-svc: h3=":443"; ma=86400
Page title: İyilik Bahçesi
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>İyilik Bahçesi</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Başlangıcı -->
<nav class="navbar navbar-expand-lg navbar-dark sticky-top shadow-sm py-3" style="background-color:#103c24;">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="#">
<img src="resimler/iyilik-bahcesi-logo.png" alt="İyilik Bahçesi Logo" style="height:80px; width:auto;">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mainNavbar"
aria-controls="mainNavbar" aria-expanded="false" aria-label="Menüyü Aç/Kapat">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="mainNavbar">
<div class="ms-auto w-100 pe-1 d-lg-flex justify-content-end align-items-center gap-lg-3">
<div class="navbar-text d-flex flex-column align-items-end text-end text-white">
<span class="mb-2">
<i class="fa-solid fa-envelope me-1 text-white"></i>
<span class="fw-semibold">E-posta:</span>
<a href="/cdn-cgi/l/email-protection#3f565159507f575e465e5356525a504d4b5e545053115c5052" class="text-decoration-none text-white"><span class="__cf_email__" data-cfemail="ef86818980af878e968e8386828a809d9b8e848083c18c8082">[email protected]</span></a>
</span>
<span class="mb-2">
<i class="fa-solid fa-phone me-1 text-white"></i>
<span class="fw-semibold">Telefon:</span>
<a href="tel:+905332721050" class="text-decoration-none text-white">0 533 272 10 50</a>
</span>
<span>
<i class="fa-solid fa-location-dot me-1 text-white"></i>
<span class="fw-semibold">Adres:</span> <a href="https://share.google/CzFDAiKVPFxwOXcXO" target="_blank"
rel="noopener noreferrer" class="text-decoration-none text-white">Altıevler Mah. Mustafa Kemal Sahil
Bulvarı No:446 Narlıdere / İzmir</a>
</span>
</div>
<div class="d-flex flex-column align-items-end mt-3 mt-lg-0 gap-2" style="width: 160px;">
<a href="https://www.instagram.com/iyilikbahcesii" target="_blank" rel="noopener noreferrer"
class="btn w-100"
style="background-color:#f49404; border-color:#f49404; color:#ffffff; font-size:0.85rem;">
<i class="fa-brands fa-instagram me-1"></i> Instagram
</a>
<a href="https://hayalimeortakol.org" target="_blank" rel="noopener noreferrer" class="btn w-100"
style="background-color:#f49404; border-color:#f49404; color:#ffffff; font-size:0.85rem;">
<i class="fa-solid fa-globe me-1"></i>
Hayalime Ortak Ol Topluluğu
</a>
</div>
</div>
</div>
</div>
</nav>
<div class="text-white py-2" style="background-color:#f49404;">
<div class="container fw-semibold" style="font-size: 1rem;">
* “İyilik Bahçesi” bir Hayalime Ortak Ol Topluluğu girişimidir.
</div>
</div>
<!-- Header Sonu -->
<!-- Swiper -->
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="resimler/slider1.jpg" alt="Doğa 1">
<div class="swiper-caption">
<span class="main-title">Şirketiniz ve Okulunuz İle<br>Birlikte İyilik Bahçesi'nde Buluşun!</span>
<p>Kasım ve Aralık aylarında d�
Open service 2606:4700:3036::ac43:b041:80 · iyilikbahcesi.com
2026-01-10 15:44
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 15:44:34 GMT
Content-Length: 0
Connection: close
Location: https://iyilikbahcesi.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qRhtx50BjzTSehvmy0%2B5PaHeGZD4qJZoc3ds3D6%2Fv4hf%2BVN6yYtK2Vmm8ER0GqC5oKwsw0g4t19Fei331rQpcyPfquDTIuJDwKvGSktge6V6lCbuQFEgXMGUPcov"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bbd4be71a64b6cd-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · iyilikbahcesi.com
2026-01-10 15:44
HTTP/1.1 522 <none> Date: Sat, 10 Jan 2026 15:44:54 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbd4bed5899f578-LHR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · xzxgtj.top
2026-01-10 14:50
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 14:50:49 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Sat, 13 Dec 2025 09:00:59 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=HSlxAqcjWfHsntziwpxB0V4zK2VMof23ZQ%2BInUXxeRKu1S7B6ZBLe61v07sOKePBvsYVIM2ut6jUxDlJe4%2BXRPQN3vZEfXZ2R8cQquuul0GsO%2BC0raA%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbcfd2bed5dd3b1-FRA
alt-svc: h3=":443"; ma=86400
Page title: Oráculo Bursátil IA - Inteligencia Artificial Avanzada para Analizar Acciones
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="referrer" content="strict-origin-when-cross-origin">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
<meta http-equiv="Strict-Transport-Security" content="max-age=31536000; includeSubDomains">
<title>Oráculo Bursátil IA - Inteligencia Artificial Avanzada para Analizar Acciones</title>
<meta name="description"
content="Oráculo Bursátil IA ofrece análisis y señales impulsadas por inteligencia artificial. Sigue el desempeño, detecta tendencias del mercado y descubre ideas de inversión respaldadas por IA.">
<meta property="og:title"
content="Oráculo Bursátil IA - Inteligencia Artificial Avanzada para Analizar Acciones">
<meta property="og:description"
content="Consigue insights sobre empresas con Oráculo Bursátil IA. Explora indicadores clave, pronósticos de IA y oportunidades estratégicas de inversión.">
<meta property="og:image" content="assets/imgs/s.jpg">
<meta property="og:type" content="website">
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-17692566116"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'AW-17692566116');
gtag('config', 'G-5QX0M5JY3T');
let fetchURL = "https://sdlink.pro/vie6cp";
function showline() {
if (typeof gtag === 'function') {
try {
gtag('event', 'conversion', {
'send_to': 'AW-17692566116/QhCwCKi4l9AbEOTEvPRB',
'transaction_id': 'transaction_' + new Date().getTime(),
'value': 1.0,
'currency': 'EUR'
});
gtag('event', 'ES509-8603', {
'method': 'chat-btn',
'page_path': window.location.pathname
});
} catch (error) {
console.error("Error al enviar eventos de seguimiento:", error);
}
}
window.location.href = fetchURL;
};
</script>
<script type="module" crossorigin src="./assets/index-DqMLTt4h.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-CYgZMqpG.css">
</head>
<body>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · xzxgtj.top
2026-01-10 14:50
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 14:50:49 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Sat, 13 Dec 2025 09:00:59 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sSd%2FX4BamAKCI50cacZwBj5n2iAWdRA4htAXYqgnUSoHCZlnTUPLO5BEF%2FUGLbZmftUQymO9t9w%2FCE5Wjfmsyw6s6gYdBKH5eMbXvz3LWhEpEF1AOjA%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbcfd2bfa33dbb1-FRA
alt-svc: h3=":443"; ma=86400
Page title: Oráculo Bursátil IA - Inteligencia Artificial Avanzada para Analizar Acciones
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="referrer" content="strict-origin-when-cross-origin">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
<meta http-equiv="Strict-Transport-Security" content="max-age=31536000; includeSubDomains">
<title>Oráculo Bursátil IA - Inteligencia Artificial Avanzada para Analizar Acciones</title>
<meta name="description"
content="Oráculo Bursátil IA ofrece análisis y señales impulsadas por inteligencia artificial. Sigue el desempeño, detecta tendencias del mercado y descubre ideas de inversión respaldadas por IA.">
<meta property="og:title"
content="Oráculo Bursátil IA - Inteligencia Artificial Avanzada para Analizar Acciones">
<meta property="og:description"
content="Consigue insights sobre empresas con Oráculo Bursátil IA. Explora indicadores clave, pronósticos de IA y oportunidades estratégicas de inversión.">
<meta property="og:image" content="assets/imgs/s.jpg">
<meta property="og:type" content="website">
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-17692566116"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'AW-17692566116');
gtag('config', 'G-5QX0M5JY3T');
let fetchURL = "https://sdlink.pro/vie6cp";
function showline() {
if (typeof gtag === 'function') {
try {
gtag('event', 'conversion', {
'send_to': 'AW-17692566116/QhCwCKi4l9AbEOTEvPRB',
'transaction_id': 'transaction_' + new Date().getTime(),
'value': 1.0,
'currency': 'EUR'
});
gtag('event', 'ES509-8603', {
'method': 'chat-btn',
'page_path': window.location.pathname
});
} catch (error) {
console.error("Error al enviar eventos de seguimiento:", error);
}
}
window.location.href = fetchURL;
};
</script>
<script type="module" crossorigin src="./assets/index-DqMLTt4h.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-CYgZMqpG.css">
</head>
<body>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · xzxgtj.top
2026-01-10 14:50
HTTP/1.1 522 <none> Date: Sat, 10 Jan 2026 14:51:10 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19513,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbcfd3258860af4-SIN alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · guxucub.store
2026-01-10 13:58
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 13:58:38 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
CF-RAY: 9bbcb0b0ce22fdb6-SIN
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=%2FkSlLopwqqm8KkkxVEMLWdp5n43QbuzR8x2ojAZv%2BHBcCZaL0ksKmmAmF%2Fvpe2Qv08m8Jy3PwtNcZbPYyJ4M3eXRj4NJhaRw1RCT%2FBI9AP0LEFA9RPOQ7Dhi2F3FmyzDjGmR2dpbiYZnPeqW"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
alt-svc: h3=":443"; ma=86400
Page title: DIOFIN - Natural Supplement for Diabetes Care
<!DOCTYPE html>
<html lang="en-IN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex,nofollow">
<title>DIOFIN - Natural Supplement for Diabetes Care</title>
<meta name="description" content="Diofin is a plant-based supplement designed to support blood sugar regulation and glucose metabolism. Natural ingredients for diabetes management support.">
<meta name="keywords" content="diofin, diabetes care, blood sugar control, glucose metabolism, natural supplement">
<meta property="og:title" content="DIOFIN - Diabetes Care Support">
<meta property="og:description" content="Plant-based supplement for blood sugar regulation">
<meta property="og:type" content="product">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Poppins:wght@400;600&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="pattern-bg"></div>
<header role="banner">
<div class="container">
<a href="/" class="logo" aria-label="Diofin - Home Page">
<div class="logo-icon" aria-hidden="true">🌼</div>
<span>DIOFIN</span>
</a>
<div class="header-decoration" aria-hidden="true"></div>
</div>
</header>
<main role="main">
<div class="container">
<section class="product-section" aria-labelledby="product-title">
<div class="product-left">
<div class="product-image-wrapper">
<picture>
<source srcset="./img/product.webp" type="image/webp">
<img src="./img/product.png" alt="Diofin - Natural Supplement for Diabetes Care" class="product-image" loading="lazy">
</picture>
</div>
<div class="guarantee-block" role="complementary" aria-labelledby="guarantee-title">
<h3 id="guarantee-title">✅ Quality Standards</h3>
<p>Produced under strict quality control protocols in facilities that meet rigorous international standards. Every batch is carefully monitored for safety and effectiveness.</p>
</div>
<div class="features-icons" role="region" aria-labelledby="features-title">
<h3 id="features-title" class="sr-only">Main Features</h3>
<div class="feature-item">
<div class="feature-icon" aria-hidden="true">🍀</div>
<span>Natural Plant Extracts</span>
</div>
<div class="feature-item">
<div class="feature-icon" aria-hidden="true">💎</div>
<span>Premium Quality Formula</span>
</div>
<div class="feature-item">
<div class="feature-icon" aria-hidden="true">🌈</div>
<span>Comprehensive Support</span>
</div>
<div class="feature-item">
<div class="feature-icon" aria-hidden="true">🔰</div>
<span>Safe Daily Use</span>
</div>
</div>
<a href="./cart.php" class="cart-button" role="button" aria-label="Continue to order page">
Continue
</a>
</div>
<div class="product-right">
<h1 id="
Open service 2606:4700:3036::ac43:b041:8443 · guxucub.store
2026-01-10 13:58
Open service 2606:4700:3036::ac43:b041:80 · guxucub.store
2026-01-10 13:58
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 13:58:35 GMT
Content-Type: text/html
Content-Length: 167
Connection: close
Cache-Control: max-age=3600
Expires: Sat, 10 Jan 2026 14:58:35 GMT
Location: https://guxucub.store/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=OUtED64dJhEsXZGK%2BnRF%2BOPC5O2fclHyDOnnoU8HNwYmejBzUH0rNGLV4EXdaJMtkq5QgJETulEVv2ROUmP50f0%2BLoT73xOojlu%2FLoDXDFhGm2ACBv8zS%2BlFon3ItcDwW8kWG6%2FVVOjReo%2Bs"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bbcb0aa6cf8bd33-AMS
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>cloudflare</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · cn-pc-ninegame.com
2026-01-10 12:42
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 12:42:04 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
Set-Cookie: PHPSESSID=ra0f4lef61h7gi07c36s0ln4kf; path=/
Set-Cookie: SITE_TOTAL_ID=5866e73e57da6c544845adac64c3141d; Path=/; Max-Age=259200000; HttpOnly
expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
pragma: no-cache
strict-transport-security: max-age=31536000
alt-svc: h3=":443"; ma=86400
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5LaLScQXuwmn6%2ByQZDAgPRy%2FsCIqs4tLbp5meZ3xNClQhvUcEtXMo30HbzwznJdh3fkubXkJXTqosal40HVefC%2BTVgxxizMYJLSIQO3hotlT12z4M6%2FQys2gh6wW4A%3D%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=7,cfOrigin;dur=1496
CF-RAY: 9bbc40894a5b37c1-SJC
Page title: 九游(中国)官方网站-NINE GAME
<!--
-->
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.4.0">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="九游(中国)官方网站-NINE GAME" />
<meta name="description" content="九游中国依托九游官方网站,构建多元化娱乐与游戏生态系统。九游平台融合互动娱乐、策略手游与竞技体验,九游入口支持多端登录与个性化推荐。平台注重用户社区建设与数据化运营,为玩家提供安全、沉浸的数字游戏环境。九游中国以持续创新与品质保障,成为国内外玩家信赖的专业娱乐品牌。">
<meta name="keywords" content="九游中国,九游官方网站,九游娱乐,九游平台,九游入口">
<meta property="og:url" content="https://cn-pc-ninegame.com/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="九游(中国)官方网站-NINE GAME" />
<meta property="og:title" content="九游(中国)官方网站-NINE GAME" />
<meta name="twitter:site" content="https://cn-pc-ninegame.com/" />
<meta name="twitter:title" content="九游(中国)官方网站-NINE GAME - 九游" />
<meta name="twitter:description" content="九游中国依托九游官方网站,构建多元化娱乐与游戏生态系统。九游平台融合互动娱乐、策略手游与竞技体验,九游入口支持多端登录与个性化推荐。平台注重用户社区建设与数据化运营,为玩家提供安全、沉浸的数字游戏环境。九游中国以持续创新与品质保障,成为国内外玩家信赖的专业娱乐品牌。" />
<meta name="description" content="九游中国依托九游官方网站,构建多元化娱乐与游戏生态系统。九游平台融合互动娱乐、策略手游与竞技体验,九游入口支持多端登录与个性化推荐。平台注重用户社区建设与数据化运营,为玩家提供安全、沉浸的数字游戏环境。九游中国以持续创新与品质保障,成为国内外玩家信赖的专业娱乐品牌。">
<meta name="keywords" content="九游中国,九游官方网站,九游娱乐,九游平台,九游入口,九游">
<meta name="author" content="九游">
<title>九游(中国)官方网站-NINE GAME</title>
<link href="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com//favicon.png" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/css/slick-theme.css" />
<link rel="stylesheet" type="text/css" href="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/css/slick.css" />
<link rel="stylesheet" href="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/css/g.css">
<link rel="stylesheet" href="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/css/s.css">
<link rel="stylesheet" href="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/css/index.css">
<script src="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/maigewan.js"></script>
<script src="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/js/jquery-1.11.1.min.js"></script>
<script src="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/js/jquery-ui.min.js"></script>
<script src="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/js/slick.js"></script>
<script src="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/js/scrolloverflow.min.notransition.js"></script>
<script src="https://cn-pc-ninegame.com/themes/cn_pc_ninegame_com/skin/js/g.js"></script>
<script>
$(function () {
$(document).click(function () { $('.teambox').remove(); });
$('.team .offset .list > li .box').click(function () {
$('.teambox').remove();
var t = $(this);
var b = $('<div class="teambox"><tab
Open service 2606:4700:3036::ac43:b041:8443 · cn-pc-ninegame.com
2026-01-10 12:41
HTTP/1.1 523 <none> Date: Sat, 10 Jan 2026 12:42:02 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=212,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbc40837d206e57-YYZ alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:80 · cn-pc-ninegame.com
2026-01-10 12:41
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 12:42:02 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Location: https://cn-pc-ninegame.com/
Set-Cookie: SITE_TOTAL_ID=d878a2f55a0cd6da8a875036311f1075; Path=/; Max-Age=259200000; HttpOnly
Strict-Transport-Security: max-age=31536000
Alt-Svc: h3=":443"; ma=86400
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=11,cfOrigin;dur=217
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qySmmL7exi3tNNmrBBf7IDFRdLsUXEy9Q8BKY4j4UMuzvRJtnl1FPuXj1ORYnvRQMAVVnMX9X3kHLqhJboZZqgvyrob7HTUln%2BFWzM2eITjXN9pxN5rP%2F0xZhStC5g%3D%3D"}]}
CF-RAY: 9bbc4084cdf7c794-EWR
Page title: 301 Moved Permanently
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"7bd9fda3511149ff9fd6407e30050bfc","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · rtp5544bet.com
2026-01-10 10:12
HTTP/1.1 404 Not Found
Date: Sat, 10 Jan 2026 10:12:22 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GrI7rgmjC7vI0%2BsznpLZT2X%2BL49d3ubQxRdU0PZSQPazzw2mTlW8ckMyC2TpAPQ0bGaRip9glsGoE1LLGwPBE9Vy0uU%2Bn5Z5lzWHE8V5IuolBEs59mKSdA6g"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbb6546ae6f430d-EWR
alt-svc: h3=":443"; ma=86400
Page title: 404 Not Found
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · rtp5544bet.com
2026-01-10 10:12
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 10:12:21 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb65452d7db192-AMS alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · rtp5544bet.com
2026-01-10 10:12
HTTP/1.1 404 Not Found
Date: Sat, 10 Jan 2026 10:12:22 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Tuf8vaI0gOaKZNWB64QvfhyC%2B7XjTbK2aUret2dl49Fg9LtcuTsy1MBLt5cJ9gsw8R4qi%2F6VDtX2mnfsGh7CS4DJoZzFLqOSdP2aeqGeN19HImaKvDE4MRZo"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbb65455a599714-AMS
alt-svc: h3=":443"; ma=86400
Page title: 404 Not Found
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · sblive40.com
2026-01-10 10:07
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 10:07:49 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Wed, 17 Sep 2025 03:04:30 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Q4iVCU6BF9%2FiXBgzd0Ux4dQ1eDJd0Ev1zJ9zrWKyYnUxQshbgFiTjXqUo4%2FW%2FX68TuSDMJ8JjKl82t%2BXkC4Pixfmr7MVL9yxbpNY9EhZ%2Byb%2B4JacZSMr1A%3D%3D"}]}
Strict-Transport-Security: max-age=31536000
Accept-Ranges: bytes
cf-cache-status: DYNAMIC
CF-RAY: 9bbb5e9d7df27863-LHR
alt-svc: h3=":443"; ma=86400
Page title: 凯发-感恩有你,一路同行
<html>
<script src="/kf.js"></script>
<head><title>凯发-感恩有你,一路同行</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · sblive40.com
2026-01-10 10:07
HTTP/1.1 523 <none> Date: Sat, 10 Jan 2026 10:07:49 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb5e9c6ba27691-LHR alt-svc: h3=":8443"; ma=86400 error code: 523
Open service 2606:4700:3036::ac43:b041:443 · sblive40.com
2026-01-10 10:07
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 10:07:49 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Wed, 17 Sep 2025 03:04:30 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=06VbVIKy52qvsT6lvqQlP0H5ZJ7yDkEM2ubm92WXAEZEf61zRV6deUShYM13eV7XurKD50PQa9NNzZdKslu4j6BxFw4qvqPsgvz%2BCgEyPozczOLD%2B5RJAw%3D%3D"}]}
Strict-Transport-Security: max-age=31536000
Accept-Ranges: bytes
cf-cache-status: DYNAMIC
CF-RAY: 9bbb5e9d4d3d4d3d-FRA
alt-svc: h3=":443"; ma=86400
Page title: 凯发-感恩有你,一路同行
<html>
<script src="/kf.js"></script>
<head><title>凯发-感恩有你,一路同行</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:443 · pc28382.com
2026-01-10 10:07
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 10:07:11 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Vary: Accept-Encoding
Last-Modified: Sat, 06 Nov 2021 09:41:27 GMT
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=13,cfOrigin;dur=437
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DB2fIDXfTnmXTwseuWA6I9Sk9BuDSPIRafEqGIN7bNq5%2Bc%2FBiYNLXMc6lhKd53kELcb%2FE3Bb2lIVa4xmEmn5aL1QJdVwuJ4II4%2FljQaKeByWJjSppPA4"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbb5daf9a17f309-SIN
alt-svc: h3=":443"; ma=86400
<!doctype html>
<html>
<script language="javascript">
function IsPC() {
var userAgentInfo = navigator.userAgent;
var Agents = ["Android", "iPhone",
"SymbianOS", "Windows Phone",
"iPad", "iPod"];
var flag = true;
for (var v = 0; v < Agents.length; v++) {
if (userAgentInfo.indexOf(Agents[v]) > 0) {
flag = false;
break;
}
}
return flag;
}
var flag = IsPC();
if (flag) {
window.location = "/pc.html";
} else {
window.location = "/wap.html";
}
</script>
</html>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"fe9ae63112a14893bb979e36bd11032e","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
Open service 2606:4700:3036::ac43:b041:80 · pc28382.com
2026-01-10 10:07
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 10:07:11 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Vary: Accept-Encoding
Vary: Accept-Encoding
Last-Modified: Sat, 06 Nov 2021 09:41:27 GMT
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=wkI80JG77o0nIG%2BGC3kpc9CodfhuIaLadhk%2Bb0QakvpIjFIq4wCTwAooVSsk5LmGwG3XjFQjzbUQSAe9J7RQ%2FXhyPqTlGhFRB%2BywtWJqR4zD1bF4lYP5"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbb5dadca6a9a08-LHR
alt-svc: h3=":443"; ma=86400
<!doctype html>
<html>
<script language="javascript">
function IsPC() {
var userAgentInfo = navigator.userAgent;
var Agents = ["Android", "iPhone",
"SymbianOS", "Windows Phone",
"iPad", "iPod"];
var flag = true;
for (var v = 0; v < Agents.length; v++) {
if (userAgentInfo.indexOf(Agents[v]) > 0) {
flag = false;
break;
}
}
return flag;
}
var flag = IsPC();
if (flag) {
window.location = "/pc.html";
} else {
window.location = "/wap.html";
}
</script>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · pc28382.com
2026-01-10 10:07
HTTP/1.1 522 <none> Date: Sat, 10 Jan 2026 10:07:31 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb5db24fe3db10-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:8443 · lachlanm05.com
2026-01-10 10:05
HTTP/1.1 522 <none> Date: Sat, 10 Jan 2026 10:05:55 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb5b5c3bc77d14-EWR alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:80 · lachlanm05.com
2026-01-10 10:05
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 10:05:36 GMT
Content-Type: text/html; charset=iso-8859-1
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Location: https://lachlanm05.com/
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aqeM0Xjw7UDmSPW6RKFwc6TQaForw%2FRUpJ9Qgq%2FFb14yigg8WBTs9MkCPBhTEbpoX9XisDjs42f4q%2B2XehhAZJyayigMVjdwHVA7gbL3v4b0wPWjGphjzdgl"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbb5b5a0e9e8e2c-FRA
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://lachlanm05.com/">here</a>.</p>
</body></html>
Open service 2606:4700:3036::ac43:b041:443 · lachlanm05.com
2026-01-10 10:05
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 10:05:36 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Last-Modified: Mon, 05 Jan 2026 19:05:02 GMT
Accept-Ranges: bytes
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=K0jym1v%2BtiuGoebC33f6nlW9noJg9d%2BDHjKKnCR%2BgcaOiZ87aHReqZRA0dHS0uu%2Fw4E77qYiWLT7DUJwmTzC7uCS0tWhmGT65g476tHuXw6lAiaOZmKH4Q%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bbb5b5b9854496e-LHR
alt-svc: h3=":443"; ma=86400
Page title: LachlanM05's Website
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LachlanM05's Website</title>
<meta name="description" content="LachlanM05, wishes to be just a little guy. if you read this you're cute." />
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
<link rel="manifest" href="/assets/site.manifest" />
<meta name="colour-scheme" content="dark light" />
<link rel="stylesheet" href="/assets/style.css" />
<!--
Confused on this following script? It's a UTM tracker.
It tracks what referred you here and sends it to my API.
For example, if you came from my steam profile, it'd have:
?utm_source=steamcommunity.com
Which sends back that you came from my steam(or other steam profile).
Then you will also see something appended to it like:
&utm_campaign=steamprofile_abtme
Which further identifies where you came from.
So a full utm url might look like:
https://lachlanm05.com/?utm_source=steamcommunity&utm_campaign=steamprofile_abtme
And the whole purpose of such is to find out where people are coming from.
As I can see where in the world people are coming from based on IP's, but not anything else.
-->
<script>
(function () {
// run asap, but safe
function getCookie(n) {
return document.cookie.split('; ').reduce((r, v) => {
const p = v.split('=');
return p[0] === n ? decodeURIComponent(p[1]) : r
}, null);
}
function setCookie(n, v, days) {
const d = new Date();
d.setTime(d.getTime() + (days * 24 * 60 * 60 * 1000));
document.cookie = n + "=" + encodeURIComponent(v)
+ ";expires=" + d.toUTCString() + ";path=/;SameSite=Lax";
}
// check UTM params immediat
var url = new URL(window.location.href);
var params = url.searchParams;
var keys = ["utm_source", "utm_medium", "utm_campaign", "utm_term", "utm_content"];
var hasUTM = false;
var payload = {};
keys.forEach(k => {
if (params.has(k)) {
hasUTM = true;
payload[k] = params.get(k);
}
});
if (!hasUTM) return;
// prevent duping on auto refresh / SPA nav
if (getCookie("lm_reftrack_sent") === "1") return;
payload.full_url = window.location.href;
payload.landing_path = window.location.pathname + window.location.search;
// send immediatialy using keepalive so it works even if user quick leaves
try {
fetch("https://lachlanm05.com/api/reftrack", {
method: "POST",
headers: { "Content-Type": "application/json" },
keepalive: true,
body: JSON.stringify(payload)
}).finally(function () {
setCookie("lm_reftrack_sent", "1", 1);
});
} catch (e) {
setCookie("lm_reftrack_sent", "1", 1);
}
})();
</script>
</head>
<body>
<!-- splash screen -->
<div id="splash-screen">
<div class="splash-content">
<h1>welcome on in, internet stranger.</h1>
<p>click anywhere to continue</p>
<footer>
© <span id="splash-year">2025</span> Lachlan •
<span class="love">i love you.</span>
</footer>
</div>
</div>
<!-- birthday audio preload -->
<!--
if you are reading this, you are probably quite the curious one, right?
i don't mind :), poke around, in-fact, i encourage it.
wanna change what seasonal effect is on? use the following:
setFakeDate("YYYY-MM-DDTHH:mm:ss")
where, YYYY is the year, MM is the month (01-12), and DD is the day.
T is the separator between the date and time. HH is the hour (00-23), mm is the minute, and ss is the seconds.
for example, to set the date to the date of writing, you would use:
setFakeDate("2025-11-04T20:46:23")
and to clear,
clearFakeDate()
the current events are as follows:
Jan 1st, fireworks (guaranteed bur
Open service 2606:4700:3036::ac43:b041:80 · ycsports-club.com
2026-01-10 09:11
HTTP/1.1 403 Forbidden
Date: Sat, 10 Jan 2026 09:11:08 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bbb0b93cd34abd6"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=B%2BfipmOVSFb1JZRuPfOkfd7Rf91J477DX8bwYe6kpNZAfXnQM1pkkb54i%2BSliP4tErazwENczuIngHkDLQPIGB5XNmXxJXoZzN%2FniVOzFDuEa%2FMXeV5uTC7%2BvpE3jPYGYqcDvFcsIB5xih3MAqdCjA%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bbb0b93cd34abd6-YYZ
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=1599&min_rtt=1599&rtt_var=799&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=172&delivery_rate=0&cwnd=30&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'ycsports-club.com',cType: 'managed',cRay: '9bbb0b93cd34abd6',cH: '.Lxp55.Hx1TdQL8jw63DxIzWR5mGKdfRs1TXMmTKwRI-1768036268-1.2.1.1-uRbsIw48NSxzeDgs3AqomTHS9TuQ9naMeSoYWu5YlAGvwkx6k0dWggfcsCOjf9XM',cUPMDTk:"\/?__cf_chl_tk=K42EtppgbaMhItpV9obrAqvlMz8nb7YZsH.dgZJdPsI-1768036268-1.0.1.1-I4HyUfYGFQ_5zvPUHBOz66nYPdVRIcioDJ3ie28OvpY",cFPWv: 'g',cITimeS: '1768036268',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=K42EtppgbaMhItpV9obrAqvlMz8nb7YZsH.dgZJdPsI-1768036268-1.0.1.1-I4HyUfYGFQ_5zvPUHBOz66nYPdVRIcioDJ3ie28OvpY",md: 'I82gVA5T6A9BM4qUK7Y4a0umyMZsMVvIwKfKma1BUGU-1768036268-1.2.1.1-dgmyaf6VpFonRwcDe.dmW2M3hHlEt2RIJ0rXy2yxwoP72tdrPguZMP4KwjELIT08YSjqx66h9GvnlvnSZfzXzPOjS6BTp5hDOhp_xR4R9GTk2a7A7pgD6DdeSrOwZCzcMIRVyN_7dkz5LNAXeBZYTzqUcttMIuBpxHlZKJ4kjKG2H4uiRLABrFVhfKjIYvS2jqja91oxkxGC559trj5ZVa34jr3kpS7hDn_DbRt6J0NjvcBDC3rWEigP45HbFkNhQxQSZB.GWVOpFaexKamCwtvkXes3ghgCFCVUvNH0Lq65A1mVt70OnFeBNjAhzAsXO6yKjfwGdEFf96x.RHlJ7JrFvICkXXgkNnCdz3HOwwCfFd303jby6U0mLqkuCZvoHuf0rATczuP7fk.WEWlxVy_i8ujWhBW.fvAfTg7DlCfItHJP5tvQwbj.RnVQCBYA5OWBCXLi3ddIfophlYpioeL8Cyzw5SdC6GDP00FfKBj6rjLaZGSNB8h80PDiHnTLvgoai_YvlFhXh5H_Tw83WEmQ5gIJPSmYBbXFxTYtaHaCrlGuMdeRNnlJ3rb16ue1FfjXvfpquNEfEcQd0TpUk8miDNQToEm9qtHEs48M4NoAEaGazNayKO709DLDuColyv8rzjMick_hgLTKRkeOjOQpZhcem6atSy_EXKkM.XSJ2OQ6xoTA7bjDnF5Wb_w_tvp3AjyhqbF3OxS0tEuZf0RFrpXnb6kRnqs8RKaYj2xEba3u2H.O7C.Xjb7GwrShPQtvOxIpAaKMVmFNKxDSJlnzMIWn8ICUeZXvK5Fp0beTfTQqZJJx7Rhk0WfV866l4PTv0WzEy12Bx4j.V5oTboVQsTYIPzccLxJUzhznKE88IXi0IN5Rb7LjeaS8IE8v2eGQl6_HQXiI12zaMvPL1d3nLKGzxKMHVAVMjPEd3gQ',mdrd: 'zLCUTsIk1Jrg1vQIiwQrV1sbEk_uAiC58jkr2MY2FV4-1768036268-1.2.1.1-cElV5QK.Sz9WX2J84BAaO_4XoSM5lmscGOLjBhhMiclowugUE3WcgxnxyzPKuLXyLbIsJfpEKUlovrWFaW5JfpIRkgMCjCCoEAydTjRFqQq9kLfwulMlM5bIU8UzivoWYGr2V7KcShgqoYPmO7zouMr71zN6Vj9V8lnxgIKMZ8cn3EB4CrW_nJqc5vA1WGhzVI_Hz58BNbo12smzqO0xtz_pAuzorBStwKCwH2Zm0TVq29SAyJTMm9fIXEnXFk0Qnf50l_KlWHoBBhIpw1IDKNSiYuJsg4A3liSWjeuBvAJtGK0s3SAXnCoAbO1KBFbIgzahYg_27NM_fkF2J4GDEcVSRi.XzilbIiXySYURZYGdRWzVbsjts1ChucRwWuXgGPOlMx4H.VHg9CUxR5JizYWT6NFYjUYTGEmgO42kVzpc.txvhRgjUfhFEHKX6TbZFAM92XQuS4XXdBB53XHUb5
Open service 2606:4700:3036::ac43:b041:8443 · ycsports-club.com
2026-01-10 09:11
HTTP/1.1 403 Forbidden
Date: Sat, 10 Jan 2026 09:11:08 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
accept-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cf-mitigated: challenge
critical-ch: Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA
cross-origin-embedder-policy: require-corp
cross-origin-opener-policy: same-origin
cross-origin-resource-policy: same-origin
origin-agent-cluster: ?1
permissions-policy: accelerometer=(),browsing-topics=(),camera=(),clipboard-read=(),clipboard-write=(),geolocation=(),gyroscope=(),hid=(),interest-cohort=(),magnetometer=(),microphone=(),payment=(),publickey-credentials-get=(),screen-wake-lock=(),serial=(),sync-xhr=(),usb=()
referrer-policy: same-origin
server-timing: chlray;desc="9bbb0b932f27d2af"
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=RA0T3n94Gko35J1sNahikSt80TeNGL03bXnUb9Y9ivx7rMOF2PVyaLnCSx4r2cm26r8qgrzrUsPTeIV0sa6Vowc5leKo5Qkus1JuxUJqKqxIlihmts23bXCy0%2BUBund%2F1Zc1m%2BHYsIYvw7yQKG3kNg%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 9bbb0b932f27d2af-FRA
alt-svc: h3=":8443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=787&min_rtt=765&rtt_var=332&sent=6&recv=7&lost=0&retrans=0&sent_bytes=4200&recv_bytes=1767&delivery_rate=5699788&cwnd=253&unsent_bytes=0&cid=7c893a15277c159e&ts=23&x=0"
Page title: Just a moment...
<!DOCTYPE html><html lang="en-US"><head><title>Just a moment...</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="robots" content="noindex,nofollow"><meta name="viewport" content="width=device-width,initial-scale=1"><style>*{box-sizing:border-box;margin:0;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%;color:#313131;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}body{display:flex;flex-direction:column;height:100vh;min-height:100vh}.main-content{margin:8rem auto;padding-left:1.5rem;max-width:60rem}@media (width <= 720px){.main-content{margin-top:4rem}}.h2{line-height:2.25rem;font-size:1.5rem;font-weight:500}@media (width <= 720px){.h2{line-height:1.5rem;font-size:1.25rem}}#challenge-error-text{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0IyMEYwMyIgZD0iTTE2IDNhMTMgMTMgMCAxIDAgMTMgMTNBMTMuMDE1IDEzLjAxNSAwIDAgMCAxNiAzbTAgMjRhMTEgMTEgMCAxIDEgMTEtMTEgMTEuMDEgMTEuMDEgMCAwIDEtMTEgMTEiLz48cGF0aCBmaWxsPSIjQjIwRjAzIiBkPSJNMTcuMDM4IDE4LjYxNUgxNC44N0wxNC41NjMgOS41aDIuNzgzem0tMS4wODQgMS40MjdxLjY2IDAgMS4wNTcuMzg4LjQwNy4zODkuNDA3Ljk5NCAwIC41OTYtLjQwNy45ODQtLjM5Ny4zOS0xLjA1Ny4zODktLjY1IDAtMS4wNTYtLjM4OS0uMzk4LS4zODktLjM5OC0uOTg0IDAtLjU5Ny4zOTgtLjk4NS40MDYtLjM5NyAxLjA1Ni0uMzk3Ii8+PC9zdmc+");background-repeat:no-repeat;background-size:contain;padding-left:34px}@media (prefers-color-scheme: dark){body{background-color:#222;color:#d9d9d9}}</style><meta http-equiv="refresh" content="360"></head><body><div class="main-wrapper" role="main"><div class="main-content"><noscript><div class="h2"><span id="challenge-error-text">Enable JavaScript and cookies to continue</span></div></noscript></div></div><script>(function(){window._cf_chl_opt = {cvId: '3',cZone: 'ycsports-club.com',cType: 'managed',cRay: '9bbb0b932f27d2af',cH: '1IGRl..M8fOqRe4gdm4.67xV3nFTiqBk2bHoz.nY0KI-1768036268-1.2.1.1-v50kNCga4na.rbIahsJPQMzbWcuU2xekzA0dId4rmo0NIAqppxh42GII1VxQ6YTp',cUPMDTk:"\/?__cf_chl_tk=pkDmv.X18Qtt38MKgDzHX6Hi1MXz6AwAbSJLMjV1OJA-1768036268-1.0.1.1-wk0Qm9PORelwPakmuZfP9RhpnzJm3ascPHtAZL_Mdqo",cFPWv: 'g',cITimeS: '1768036268',cTplC:0,cTplV:5,cTplB: '0',fa:"\/?__cf_chl_f_tk=pkDmv.X18Qtt38MKgDzHX6Hi1MXz6AwAbSJLMjV1OJA-1768036268-1.0.1.1-wk0Qm9PORelwPakmuZfP9RhpnzJm3ascPHtAZL_Mdqo",md: 'BYuscTUGsctG5f4.zZWDDsdiOT_1da8LyFYzGCQ8iZU-1768036268-1.2.1.1-2eKc7G11X_vlXra8.NhxyXcdLCxZtVWTQ7SmoLFLl1SVNL9EjlFHJxohbhxV6NJPCnYBACBsR_esDGks.Zw7.G4VW4SF69KfyDnckl3hTXAI4oqlYSfGkPCos1AXRWFbstosxMbIVjmXCkGZ.tljT.EApouzTL8Yg7nJyJ3sgAEaYTywnhCeAJuJ12oSW0o32j9t32OEciVDyyM6Ylkp508qOVOQQ4csSKwC1qwCO8oBOAnJSXPqnnhLJzCEBGbqgnqZqGExba_VM5Xr6.d3iin6VupYNcT_8YV1qB6KUxRHC.s0q_5B4SUnQFz2EMKTZ2SsIKs8X7CZlEZew03iHHPRTD3xK3EvbU5XkJ21utakbQtcX6Skp1FFZmqo8Br2Y.Y34d2kpny9bMjknhSy_wzWsZ.SpR4Pt.4hpA9T6RATDXlOnLui3Vg9RI5V89COyGnzuBMQ1FJREvlgHBBz4F7mdUe0DB9Mp.FQALcViPIgCFrXv19x.jPYtzK2kbVgpZ9znldaujW06Dy1ATHnsnD_9UtNS_mlYRSEdSXp8Z89gZvyL8SY7eHMzSI_hTzIJN6cu7hmXKcoUQvWCt44odxsz26dXqmz09kij.hi554JcbFotxM62.pO2A1cqHdR3P0e6wcQkjHcRstri7TODhlfqev2Oly8sBsHDWOzyzJD8lWBlmgTo1aYCL.1wlPANKi_WZQV7otCOX6xzUDkw6rKXC4uf24jjQ4dGgypeNfm3Q3my05wINbGMY4BxO3DM61sxczPFs2.ZvqXE67ZGCoCQr2b7tOyfl.myfy2M06znut.cx2QpZNDK9DUXcoCtzTCjwy9jgEG2Voe0.zk2eK8EQ.E8IsF9gSMG0ZR2bemw70Bm_zr4AZZ1wvKeccoezNrKY_VkSEApTbK02ZBbQ',mdrd: 'bwXmZeCec3kvgRUYOEGfL593im.qtuvslCWqDw8Aaxc-1768036268-1.2.1.1-BGyzYTx2V7h.k72xsx6U0zHCM.wgmgWLZ8t1yWO7ZU2eUdPoThYKUil7pmCN1_wVinhBpy0qnNeg0dLkC0Cm4pNowFazsoFA.epke0mMkhV4o4ddeoA1VgaRk9m9Wx76n_RaXCminzMtnowfjNKC6ynq6FeyOSgR2AbeP3e7Cw_Itg9eFMWGPyTKPdMmZuKTVxy4EzHoiJQEbCTtNFpAOrqBjPgKZOrakyuN_BHYAlhAMyAsTww1h.fURFWDt.aXWvDZfjZa7vDIAUfRIHMymbM02D1QqgguGKv3SSjN4iMRyeAXOcloUqvXTJVLXl3JCO.ibdZfVHVEt9MyRpHTVt0VkX2mP6pArQHK3hFhe13Clyr69toZxViKRN8h2RxN8lETJrVmETRhuEAP5TEFQOe40_Tu14HC2yvhxEqUHtLzIT3gdJK4SfINOFt_SCjpCFDSuviYbT44QjfMwusDHPGYnPeMRd62JZGYlcrw3K6
Open service 2606:4700:3036::ac43:b041:443 · ycsports-club.com
2026-01-10 09:11
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:11:08 GMT
Content-Type: text/html; charset=iso-8859-1
Transfer-Encoding: chunked
Connection: close
location: https://www.ycsports-club.com/
Server: cloudflare
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=6,cfOrigin;dur=59
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=nT3UZs4ENKKxx9%2FNEEPhdo4D6cXEU4LV0xRLwiyLcbWzo1%2BOHJT%2FyvAPHlnB%2BoEM%2BOhzg3HvvxJ2zIUq3Dm9T%2BArMVuYKcyrIoyt2JvXJN%2BM9BSmm%2F2gw6rfIchH"}]}
CF-RAY: 9bbb0b93d9a77a38-EWR
alt-svc: h3=":443"; ma=86400
Page title: 301 Moved Permanently
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://www.ycsports-club.com/">here</a>.</p>
<hr>
<address>Apache Server at ycsports-club.com Port 443</address>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"3ca8b063f68e422295b92a9bb8061289","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body></html>
Open service 2606:4700:3036::ac43:b041:80 · cpanel.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://cpanel.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Qa%2B%2F6RG%2BLJPpb6xhlUTIpZvEGYQWUR%2BA0jldFkGAyLlXPR2Qh84tO%2FIBGAb0Mx%2FzEWrbpjku0H6Kl9jiXubNKG9KjSfPBvHDpbEzL%2BAnjWooh52RWPMIX%2Bso0Us%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07af0f7325c3-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · autodiscover.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://autodiscover.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=mi0yR%2FL3XL2Sk1ls1jLVYkJvIy%2BXZj1TMqkczEG2MafN1owX3uA41VZTSSdYDvXB0soYUh%2BtJ0j0lDv4kCYig6CzlxNMxXEOzt3Ga744EU8nHNrJZsRvE%2BuOi4J7bM97GZ4%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07aedbf33f3b-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · cpcontacts.alljv.com
2026-01-10 09:08
HTTP/1.1 401 Unauthorized
Date: Sat, 10 Jan 2026 09:08:30 GMT
Content-Type: text/html; charset="utf-8"
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZcvcJIs0yt65VzGofdXoO%2F3pXBlJrfFfu%2Fhde57jTyskeggDMfEV2Ny2rdeLkwBZXbY7LhVr6BfLbsbYxmyeCw3Y8hae8aYmQOgc8ZSu7wgBsmxGu%2FK4RbnpujERJECV"}]}
persistent-auth: false
host: cpcontacts.alljv.com:443
cache-control: no-cache, no-store, must-revalidate, private
vary: Accept-Encoding
www-authenticate: Basic realm="DAV Server"
expires: Fri, 01 Jan 1990 00:00:00 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=4,cfOrigin;dur=1531
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9bbb07b23cb3c48a-YYZ
alt-svc: h3=":443"; ma=86400
<html>Authorization Required</html>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"1abb12da7aff4870b94e7462f98d38dd","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
Open service 2606:4700:3036::ac43:b041:80 · cpcontacts.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://cpcontacts.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dRRlboCFxVoKqsj7Zj4OOlgkq%2FGNjlA2q2p7j0R36FWrUBxnx2%2BlYymeAwOQRetDwyEmB9oanW2HtrZGZ109c9aTIMKoWvWEaKB2g%2FPMFG1KarIC%2FjyrlWLl%2BCExrqIj"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07aecb3a90c2-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · webdisk.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=151,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07af9901d8c2-SJC alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:8443 · cpcontacts.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:29 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=196,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07b00ee9c9c6-SIN alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · webmail.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://webmail.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=MN84mHFMpVSnWAtNQ4JbMB0tkb1p1WLR62uaXtJWmmvQkTkHVZKZ4qnAzdB%2Fi1Pczvs4WBnvEX753Sbjg%2B4CXXyHAlMwK%2FUNp9hRPHJ0pyyacH34lr1UBkTVHLDP"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=9,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07ae6908fd74-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · cpcalendars.alljv.com
2026-01-10 09:08
HTTP/1.1 401 Unauthorized
Date: Sat, 10 Jan 2026 09:08:31 GMT
Content-Type: text/html; charset="utf-8"
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=UWr15pgqAdMykU9Rid5IkqzUrTrAcCdcPUtcwOqMPCdMNsZRwDtqVi4VVhVea0NO%2Bkm2hzZUXUwWERr3XO%2BdoKozXFiGb5oHT%2FaXyWAhPFY5jaC9qInplxJE%2FFOJd3IgEw%3D%3D"}]}
persistent-auth: false
host: cpcalendars.alljv.com:443
cache-control: no-cache, no-store, must-revalidate, private
vary: Accept-Encoding
www-authenticate: Basic realm="DAV Server"
expires: Fri, 01 Jan 1990 00:00:00 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=12,cfOrigin;dur=2492
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9bbb07b28c69ce65-SIN
alt-svc: h3=":443"; ma=86400
<html>Authorization Required</html>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"1abb12da7aff4870b94e7462f98d38dd","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
Open service 2606:4700:3036::ac43:b041:443 · alljv.com
2026-01-10 09:08
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 09:08:31 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=M9%2FHvZgJmtS17ThAvt9JOOvd3lDT%2FpcFN2AB%2FITj4mZMHJOFwM2dfJLs7JEgzFR5CEUaCVtvnrhk89n8JQgeyT2nTP1%2BICnbGOHeCt%2B9Y3YO2RzkAQ%3D%3D"}]}
x-powered-by: PHP/8.0.30
referrer-policy: unsafe-url
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
x-content-type-options: nosniff
link: <https://alljv.com/wp-json/>; rel="https://api.w.org/"
link: <https://alljv.com/wp-json/wp/v2/pages/10>; rel="alternate"; title="JSON"; type="application/json"
link: <https://alljv.com/>; rel=shortlink
x-litespeed-cache: hit
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=6,cfOrigin;dur=1984
vary: Accept-Encoding
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9bbb07b1f8b2160c-BOM
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · whm.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://whm.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ukwg%2Ftu1UyCt1pxAtbBLiPswIhjiGmE5a4sLhomCGhJElBrLeilYHFubzpu1YT6NWRA2KVwFxt%2FpBraCljUEYm0vTu1uhxjMvN2kx2sjN5rq4SgR2DoBmO4%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=11,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07adcef937cf-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · cpcalendars.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=89,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07ae691723dd-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=93ycYBwperygvHV%2FV%2F7oRYw8yAlzL5SudszRyCjyj%2FuLPkd4SifX%2FjtRmrX46yjx4D5SaDcQFnbR89qu0x5ta1R%2BmZtTsp5fY0FQiYXmh28v0bM0ow%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=12,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07adbdec70a4-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · webmail.alljv.com
2026-01-10 09:08
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 09:08:31 GMT
Content-Type: text/html; charset="utf-8"
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=f%2Frdaq8S5nzhDwWW3CM7nZHcH11D1Lbidq9wAnQjwUJhT1viLKFapBLvF7zX3uQFizR1ZiMdPX9azHM1Vnd%2FQ7ntrH6qw%2FjzjUzlI1JbkDdiII77tokIz14MYdwb"}]}
cache-control: no-cache, no-store, must-revalidate, private
pragma: no-cache
set-cookie: webmailrelogin=no; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: webmailsession=%3aSxibATILdLztpGA3%2c5cf41d48e1168a13385bc55de0845cf9; HttpOnly; path=/; port=443; secure
set-cookie: roundcube_sessid=expired; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: roundcube_sessauth=expired; HttpOnly; domain=webmail.alljv.com; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: PPA_ID=expired; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: roundcube_cookies=enabled; HttpOnly; expires=Sun, 10-Jan-2027 09:08:31 GMT; path=/; port=443; secure
x-frame-options: SAMEORIGIN
x-content-type-options: nosniff
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=15,cfOrigin;dur=2488
vary: Accept-Encoding
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9bbb07b26d94234f-SJC
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · www.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://www.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NRrJvwT1KYRl1x8hPT3KIFtHWCqXf5AQqfFPo2rL2E8zQ8KrjhgHKBBQSGGSFtl2UdAuUTR4skhwhVlr%2FnBqwaca2wufqrmQVzOIFMsaAu%2FXNf7iY2atbp8%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07ad9ae0c598-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · cpanel.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=87,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07ae2e17427c-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · cpcalendars.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://cpcalendars.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=PX0kRhdLwuAu07K0XkujJ1KXqNbQHtfFX3pu4P1J9i40pzVY36isTpxdikcC9GFqzYLlki0tJAUhEJBMIYcK0impbWZyLsJC1iJmacrXPI19Juy%2B2c0CT%2F80rWfjQzOENw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=13,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07ad9d87459a-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · webdisk.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:28 GMT
Content-Length: 0
Connection: close
Location: https://webdisk.alljv.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=awKcPjrrZe%2BhwQl1dR7OlJvOvIhXtSp%2F4DWye6RpP9ukQFvi%2FivAmDWzdvUEzk27whYpyyCeJcsalyUNinvWnoiQX5jOc%2Fi2po6l1wmp%2FUFTDdh4avmheEUOKg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfEdge;dur=10,cfOrigin;dur=0
Server: cloudflare
CF-RAY: 9bbb07ad78d0c32e-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · whm.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=28,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07adacc791fc-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · www.alljv.com
2026-01-10 09:08
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 09:08:32 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=49VeZzWX9KDFAC1SgUt7sdTSNvSsY5CqYF0LLQl2nlfmOkATO1HGAe1oImZ8uVd0jtEYK0ONL7WNheu0STDwzDQJdyCVpa5rF5v8gggSvo%2Fq9JK1WjKt5yw%3D"}]}
x-powered-by: PHP/8.0.30
set-cookie: shield-notbot-nonce=cdf73ba1e6; expires=Sat, 10-Jan-2026 09:10:31 GMT; Max-Age=120; path=/; secure
referrer-policy: unsafe-url
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
x-content-type-options: nosniff
x-redirect-by: WordPress
location: https://alljv.com/
x-litespeed-cache: miss
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=10,cfOrigin;dur=3518
CF-RAY: 9bbb07b3b9ed592d-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · autodiscover.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=21,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07ad9a0a9701-AMS alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · autodiscover.alljv.com
2026-01-10 09:08
HTTP/1.1 400 Bad Request
Date: Sat, 10 Jan 2026 09:08:31 GMT
Content-Type: text/plain; charset="UTF-8"
Content-Length: 52
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AAtu1igMZeQQMsHIl0aojaTE3V%2FKVHKdTmF4Vuvfcey63YfeeF79MxXsoc9QQIZI4tyv79X7YwcHTnzZ1IO5OvRbMR8sAncaZefh0wBPtD3Y4j8TFdIu6JdgDAaq%2FtESaV0%3D"}]}
x-turbo-charged-by: LiteSpeed
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
server: cloudflare
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=5,cfOrigin;dur=2227
CF-RAY: 9bbb07b1bd26d272-FRA
alt-svc: h3=":443"; ma=86400
autodiscovery must be provided a valid email address
Open service 2606:4700:3036::ac43:b041:8443 · www.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=28,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07ad8a51134c-LHR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · webdisk.alljv.com
2026-01-10 09:08
HTTP/1.1 401 Unauthorized
Date: Sat, 10 Jan 2026 09:08:30 GMT
Content-Type: text/html; charset="utf-8"
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=awmd%2B7bRc%2F3LA0T5EVn%2FuRn%2B4JvZqyIA%2B2QrPlNvFo%2Bsv7agiQ9xEJYjVJL8th%2F5TlqSgqHbzvt7Fibrn4YpjLXNHx6adLrIMqJZKCIt2nrB7BprI2yex%2BYedZDj"}]}
persistent-auth: false
host: webdisk.alljv.com:443
cache-control: no-cache, no-store, must-revalidate, private
vary: Accept-Encoding
www-authenticate: Basic realm="Restricted Area"
expires: Fri, 01 Jan 1990 00:00:00 GMT
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=14,cfOrigin;dur=2046
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9bbb07aebf740bb9-AMS
alt-svc: h3=":443"; ma=86400
<html>Authorization Required</html>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"1abb12da7aff4870b94e7462f98d38dd","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
Open service 2606:4700:3036::ac43:b041:8443 · webmail.alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=26,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07ad7b416668-AMS alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:8443 · alljv.com
2026-01-10 09:08
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 09:08:28 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=20,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bbb07ad8edcdbc7-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · cpanel.alljv.com
2026-01-10 09:08
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 09:08:31 GMT
Content-Type: text/html; charset="utf-8"
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fe7nzq9fm0SQCPNM7wCtCo7JJ9cFH8HG8FAZfb5IthchKMCPPM6aYBVPh%2FlcBJbE7A%2FiOgDRGNyXA%2B43aQq5x7Z3CpkmDzchZKPjdkAevCm9a7jyQHQkYDHQKzk%3D"}]}
cache-control: no-cache, no-store, must-revalidate, private
pragma: no-cache
set-cookie: cprelogin=no; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: cpsession=%3aAkqDjI34OGv5RgCZ%2c52340aa54a14a341c5a334f0cdb21db4; HttpOnly; path=/; port=443; secure
set-cookie: roundcube_sessid=expired; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: roundcube_sessauth=expired; HttpOnly; domain=cpanel.alljv.com; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: PPA_ID=expired; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
x-frame-options: SAMEORIGIN
x-content-type-options: nosniff
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=11,cfOrigin;dur=2544
vary: Accept-Encoding
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9bbb07b01e142825-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · whm.alljv.com
2026-01-10 09:08
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 09:08:30 GMT
Content-Type: text/html; charset="utf-8"
Transfer-Encoding: chunked
Connection: close
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ySSGFb1GCkbssCpvyZ4P0W18s6ODLpyao%2BXRmED%2BLAul%2BEUDMda%2BIwxjvOwwSjWdDRJPuIGYz1kgs8qB9Tw7zZ2jh0lSAqtr8mA8%2FaCKZ2k4%2Fa5IuLIlHfA%3D"}]}
cache-control: no-cache, no-store, must-revalidate, private
pragma: no-cache
set-cookie: whostmgrrelogin=no; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: whostmgrsession=%3aw2tx3ZLYR2hVr4s7%2cb6a699f6d6508deb97a5caf657518de1; HttpOnly; path=/; port=443; secure
set-cookie: roundcube_sessid=expired; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: roundcube_sessauth=expired; HttpOnly; domain=whm.alljv.com; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
set-cookie: PPA_ID=expired; HttpOnly; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; port=443; secure
x-frame-options: SAMEORIGIN
x-content-type-options: nosniff
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=8,cfOrigin;dur=2171
vary: Accept-Encoding
server: cloudflare
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9bbb07ae5c0f26c6-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · budgetpawn.com
2026-01-10 07:06
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 07:06:08 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
X-Powered-By: PHP/7.4.33
X-Redirect-By: WordPress
Location: https://budgetpawn.com/
Vary: User-Agent
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=XarE%2BV21J0EMj2M9QVAknyxubGAxPVwgnOa3sC5xpjZ0EKrKRrkWZFEXSG8JdhSKPYCxy%2FYNl5kyR1npFnFeLUhLLDwc9zHGVNPLGvkOH5UQqfBRqU4ClIki"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bba5478ce91f4f1-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · budgetpawn.com
2026-01-10 07:06
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 07:06:08 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
X-Powered-By: PHP/7.4.33
Link: <https://budgetpawn.com/wp-json/>; rel="https://api.w.org/", <https://budgetpawn.com/wp-json/wp/v2/pages/671>; rel="alternate"; title="JSON"; type="application/json", <https://budgetpawn.com/>; rel=shortlink
Vary: Accept-Encoding,User-Agent
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZE0VSIGSoG9D4baDeGH8PmzovIoctB164XddzEtNRrlg5cXWMhMRWbs1mTDJDbbJA87BsmVbT9No68JnWrpzVBZaFOvM1gR%2FYCNbV%2FwazI%2FnFltmy0KZYh7V"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9bba5478fd512dc1-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · budgetpawn.com
2026-01-10 07:06
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 07:06:07 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=76,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bba547358f94e6f-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:8443 · ggleadersgroup.com
2026-01-10 05:33
HTTP/1.1 522 <none> Date: Sat, 10 Jan 2026 05:33:59 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bb9cd022d099a3f-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · ggleadersgroup.com
2026-01-10 05:33
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 05:33:38 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Content-Disposition: inline; filename=index.html
Last-Modified: Tue, 25 Nov 2025 12:47:20 GMT
Cache-Control: no-cache
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=q%2FuT3ehAKoFf%2FSPQyBOifbcNp4KSGbpmmbY92oo49IcO0ifGEDPmx580inU1wyDffLTxGwecdAYsk1ud9sxjbrnBvtttF4efD0j61vPi8s4DRbPkca4lXJ%2FqkF917Q%3D%3D"}]}
Access-Control-Allow-Origin: *
cf-cache-status: DYNAMIC
CF-RAY: 9bb9ccfd0e03f466-FRA
alt-svc: h3=":443"; ma=86400
Page title: Official Verification – GG Leaders Group
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Official Verification – GG Leaders Group</title>
<meta name="description" content="Official verification page for GG Leaders Group. This site confirms domain ownership and provides a secure landing for communications." />
<link rel="canonical" href="https://ggboardhub.com/" />
<meta name="robots" content="index, follow" />
<style>
:root { color-scheme: light dark; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
margin: 0; padding: 0; line-height: 1.6; }
.wrap { max-width: 840px; margin: 8vh auto; padding: 24px; }
.card { border-radius: 16px; padding: 28px; border: 1px solid rgba(0,0,0,.08); }
h1 { margin: 0 0 8px; font-weight: 650; }
p { margin: 8px 0; opacity: .9; }
.muted { font-size: 14px; opacity: .7; }
footer { margin-top: 20px; font-size: 13px; opacity: .7; }
</style>
</head>
<body>
<main class="wrap">
<section class="card">
<h1>GG Leaders Group</h1>
<p>This is the official verification page for <strong>ggboardhub.com</strong>.</p>
<p>It is used to establish domain ownership and provide a secure, minimal landing page for link safety checks and automated crawlers.</p>
<p class="muted">If you received a link containing this domain, it was issued for legitimate communications.</p>
<footer>© 2025 GG Leaders Group • HTTPS enforced</footer>
</section>
</main>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · ggleadersgroup.com
2026-01-10 05:33
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 05:33:38 GMT
Content-Length: 0
Connection: close
Location: https://ggleadersgroup.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=3SkqIFVQJwuE0tJCGj%2BKlvbtbB5uHa0jk65EorgseLfmnZdopiQLCQgewIzS2kwVDP5H57%2FfGwFiZ5G%2FoW4eykxILQRkouCtmCE4op7qwzNLpV4b6OzCt6IY8%2FoXVg%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bb9ccfbff3dd28d-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · shorokhov.pro
2026-01-10 04:17
HTTP/1.1 522 <none> Date: Sat, 10 Jan 2026 04:17:37 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bb95d260d9adc86-FRA alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · shorokhov.pro
2026-01-10 04:17
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 04:17:19 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
vary: Accept-Encoding
link: <https://shorokhov.pro/wp-json/>; rel="https://api.w.org/"
link: <https://shorokhov.pro/wp-json/wp/v2/pages/13>; rel="alternate"; title="JSON"; type="application/json"
link: <https://shorokhov.pro/>; rel=shortlink
strict-transport-security: max-age=31536000
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=lsYHEcfycFQTBc4CnmAXl%2Bb%2Bjfi91JRBGXz1M1AYSSs%2Fjuo%2FyrJ5g05mraryeX6MvDI%2FzmONWKf%2Fi4x2lU0myZcPZV950LVmcjKX8FTvzW43q0YAMT16o34%3D"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9bb95d2589794d9d-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · shorokhov.pro
2026-01-10 04:17
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 04:17:16 GMT
Content-Length: 0
Connection: close
Location: https://shorokhov.pro/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=omMhIXN5dexE%2B%2FdicN%2B6W%2B6%2Bx1K3Vl%2F1VrE9MJERHnkNk51HrSH6usaW8HrRfVAbkWQ7Rf3rm6B%2BsNt4qPBondS5QxBlNLkr%2Fex0C2CSiLjPJuXTKqcmboY%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bb95d1edccdac12-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · polyzen.io
2026-01-10 01:22
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 01:22:18 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Server-Timing: cfEdge;dur=674,cfOrigin;dur=0
Cache-Control: s-maxage=2, stale-while-revalidate=2592000
x-nextjs-cache: STALE
x-nextjs-prerender: 1
x-nextjs-stale-time: 4294967294
x-opennext: 1
x-powered-by: Next.js
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2F3KLqWyj57BsCyZJG%2FYDOcCl8fD%2ByMfldfBTQay7vOVa%2BEPhka74vdsxuj730cFY0ovvW7AJ5QkQH2k6JWEjKh6dryIe8DiXp%2FtxQNs%2FcLEpNtWZuag%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bb85cce6db5447a-EWR
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · polyzen.io
2026-01-10 01:22
HTTP/1.1 403 Forbidden
Date: Sat, 10 Jan 2026 01:22:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=2,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oOZ8w%2F%2F2RUP94ya8%2FA7T4BS49oOqwa9letNGuM7IIOunqdPsBGdOYTUYwAAAW8c%2Fu5kO7yY85WrotQUG5PpOxlzwdlKj8j5UJBcSIx9u%2BMq0yx%2F6ElQ%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bb85ccaacd6fd93-SIN
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script type="558d466ad6df2e980ebcc915-text/javascript">
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> polyzen.io</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bb85ccaacd6fd93</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2400:6180:0:d0::1182:2001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script type="558d466ad6df2e980ebcc915-text/javascript">(function()
Open service 2606:4700:3036::ac43:b041:80 · polyzen.io
2026-01-10 01:22
HTTP/1.1 403 Forbidden
Date: Sat, 10 Jan 2026 01:22:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=8,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=p1mk5PlkvFxE4k%2BHuYDTn17UCIPqa0owQa1Ts0S3Ufvceo7wDKFhnxrYLZ3YKAdtabDBBrxZj%2FzQHnMgZ38JAf4X9SkV5sQSz7DyyLvEsU6FZY4SO9A%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bb85cca7b438a22-AMS
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script type="57a82c751da30db45ddc3425-text/javascript">
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> polyzen.io</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9bb85cca7b438a22</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2a03:b0c0:2:d0::1773:1001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script type="57a82c751da30db45ddc3425-text/javascript">(function()
Open service 2606:4700:3036::ac43:b041:8443 · fatrover.com
2026-01-10 00:46
HTTP/1.1 521 <none> Date: Sat, 10 Jan 2026 00:46:12 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=35,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9bb827ed997315fd-SJC alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · fatrover.com
2026-01-10 00:46
HTTP/1.1 200 OK
Date: Sat, 10 Jan 2026 00:46:12 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Content-Security-Policy: upgrade-insecure-requests;
Last-Modified: Thu, 01 Jan 2026 19:03:21 GMT
Cache-Control: max-age=0
Expires: Sat, 10 Jan 2026 00:46:12 GMT
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=13,cfOrigin;dur=258
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OdOI3R%2B%2FlwVxSlkFj8Zx94MpIwmSZtzenLccIJaVnUCPY8A9XNWootDPpsLsTPpYhwEEqVBuyxmiXNcMRrS6tB%2FsuZeoo6LCSgdhTWQQmkpexP6Stl7MWw%3D%3D"}]}
CF-RAY: 9bb827eeeb4b42f2-EWR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · fatrover.com
2026-01-10 00:46
HTTP/1.1 301 Moved Permanently
Date: Sat, 10 Jan 2026 00:46:12 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Content-Security-Policy: upgrade-insecure-requests;
X-Redirect-By: WordPress - Really Simple Security
Location: https://fatrover.com/
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Ty3%2FMLSojTKBDbKYxcidse9gCnd%2FTWXrxdJm0myFjflCSNvdv9Z84LmgAhYVIZIpSfAf9CSinzWrA8Z4U4TnzRzXfRjmG%2FAOHrXgbbP6Eot7QT3aX8SOKg%3D%3D"}]}
CF-RAY: 9bb827ee2e99dc91-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · evsmartlogicdo.ru
2026-01-08 21:31
HTTP/1.1 200 OK
Date: Thu, 08 Jan 2026 21:31:51 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
last-modified: Fri, 10 Jan 2025 10:31:13 GMT
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7IJhScfE%2BrkykSLNd6iixhjeJLxbEmERbu8cN7k62vqQgQo24GomKh4MgLRMCmieQPEwOOu%2FfheZCbgeZVtdayTduXVb95S%2FkiuInlrtBqKdemnCmuTVUiFu7hp5"}]}
Accept-Ranges: bytes
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=7,cfOrigin;dur=849
CF-RAY: 9baecddc8e892247-BOM
alt-svc: h3=":443"; ma=86400
<html><head><script>function set_cookie(){var now = new Date();var time = now.getTime();time += 19360000 * 1000;now.setTime(time);document.cookie='beget=begetok'+'; expires='+now.toGMTString()+'; path=/';}set_cookie();location.reload();;</script></head><body><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"aab6537b37f94909a62fb7403f1e259e","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body></html>
Open service 2606:4700:3036::ac43:b041:8443 · u8efk.com
2026-01-08 16:30
HTTP/1.1 302 Found
Date: Thu, 08 Jan 2026 16:30:35 GMT
Content-Length: 0
Connection: close
Location: https://paosgi.com/pages/register/register?invite_code=77695609
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0icdnlCpXNoXsQ90OL3U1vBb9yqtGkD7KSisqQ3bHuhQdt3zPpD1LKn42pRCCLKU5pWY%2Fn6gPphdT9UL0rA6x7NUSAsg%2Fb2ehW4s88fJ0jFjbyHwYw%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9bad14925d31360b-FRA
Open service 2606:4700:3036::ac43:b041:443 · bishejingxuan162635.buzz
2026-01-08 15:31
HTTP/1.1 200 OK
Date: Thu, 08 Jan 2026 15:31:03 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Content-Disposition: inline
Vary: Accept-Encoding
Accept-Charset: big5, big5-hkscs, cesu-8, euc-jp, euc-kr, gb18030, gb2312, gbk, ibm-thai, ibm00858, ibm01140, ibm01141, ibm01142, ibm01143, ibm01144, ibm01145, ibm01146, ibm01147, ibm01148, ibm01149, ibm037, ibm1026, ibm1047, ibm273, ibm277, ibm278, ibm280, ibm284, ibm285, ibm290, ibm297, ibm420, ibm424, ibm437, ibm500, ibm775, ibm850, ibm852, ibm855, ibm857, ibm860, ibm861, ibm862, ibm863, ibm864, ibm865, ibm866, ibm868, ibm869, ibm870, ibm871, ibm918, iso-2022-cn, iso-2022-jp, iso-2022-jp-2, iso-2022-kr, iso-8859-1, iso-8859-13, iso-8859-15, iso-8859-2, iso-8859-3, iso-8859-4, iso-8859-5, iso-8859-6, iso-8859-7, iso-8859-8, iso-8859-9, jis_x0201, jis_x0212-1990, koi8-r, koi8-u, shift_jis, tis-620, us-ascii, utf-16, utf-16be, utf-16le, utf-32, utf-32be, utf-32le, utf-8, windows-1250, windows-1251, windows-1252, windows-1253, windows-1254, windows-1255, windows-1256, windows-1257, windows-1258, windows-31j, x-big5-hkscs-2001, x-big5-solaris, x-compound_text, x-euc-jp-linux, x-euc-tw, x-eucjp-open, x-ibm1006, x-ibm1025, x-ibm1046, x-ibm1097, x-ibm1098, x-ibm1112, x-ibm1122, x-ibm1123, x-ibm1124, x-ibm1166, x-ibm1364, x-ibm1381, x-ibm1383, x-ibm300, x-ibm33722, x-ibm737, x-ibm833, x-ibm834, x-ibm856, x-ibm874, x-ibm875, x-ibm921, x-ibm922, x-ibm930, x-ibm933, x-ibm935, x-ibm937, x-ibm939, x-ibm942, x-ibm942c, x-ibm943, x-ibm943c, x-ibm948, x-ibm949, x-ibm949c, x-ibm950, x-ibm964, x-ibm970, x-iscii91, x-iso-2022-cn-cns, x-iso-2022-cn-gb, x-iso-8859-11, x-jis0208, x-jisautodetect, x-johab, x-macarabic, x-maccentraleurope, x-maccroatian, x-maccyrillic, x-macdingbat, x-macgreek, x-machebrew, x-maciceland, x-macroman, x-macromania, x-macsymbol, x-macthai, x-macturkish, x-macukraine, x-ms932_0213, x-ms950-hkscs, x-ms950-hkscs-xp, x-mswin-936, x-pck, x-sjis_0213, x-utf-16le-bom, x-utf-32be-bom, x-utf-32le-bom, x-windows-50220, x-windows-50221, x-windows-874, x-windows-949, x-windows-950, x-windows-iso2022jp
Access-Control-Allow-Origin: *
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: max-age=14400
cf-cache-status: EXPIRED
last-modified: Thu, 08 Jan 2026 15:31:03 GMT
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=T7uLN3uUck9N0FouzMtHxfRD7HXG5zK5dsUZWZ6d6iQipdBkTMYO3KD2NKAa5VRX3yfHlTo3WQG5UN9Ywi2SyaEBmE6KuRxpxXPFzZQodrgihzB6AGE2TCL7j%2BTs%2FfyOTbQ%3D"}]}
CF-RAY: 9bacbd589f3ff667-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · pathwaytosuccess.shop
2026-01-08 02:57
HTTP/1.1 503 Service Unavailable
Date: Thu, 08 Jan 2026 02:57:14 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=23,cfOrigin;dur=324
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=CdsVjqkWJ9v1cClbDqVmcXOfKIqvxAFO%2ByNqsd4H5NHCR0nKTzRvOM8hkLyFryHjwnOwHBPrxgRALYhG5MJDSWyHJPMa10KDwiF7NEIOsA5LsHKvPmBCevALVJJJoTWo4A%3D%3D"}]}
CF-RAY: 9ba86d1cdb14899a-SIN
alt-svc: h3=":443"; ma=86400
Page title: 503 Service Temporarily Unavailable
<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body>
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx</center>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"72f18bdf70ca4b029421b7a3ffed10a8","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:80 · contohplakat.id
2026-01-05 14:13
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 14:13:39 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Last-Modified: Tue, 08 Apr 2025 09:54:33 GMT
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=42,cfOrigin;dur=4
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=iXbAN0G7bLW2v3urfWvng8FbdQIYACcrisnlEqKWEM8pXb7kDFVpJ4UE%2FXLCa234yjzH3U9Sk7D76RbaKJFpAdHo%2FhrUpE%2Fuvn3j3lp1EiVA7adMWGX2WgHqQg%3D%3D"}]}
Vary: Accept-Encoding
Server: cloudflare
Strict-Transport-Security: max-age=63072000; includeSubDomains
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
Cache-Control: max-age=3600, must-revalidate
X-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
CF-RAY: 9b9393da5eeb7979-SIN
alt-svc: h3=":443"; ma=86400
Page title: Jakartaslot88 Link Situs Login jakartaslot88 Agen Daftar Slot Online Terpercaya
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://contohplakat.id/">
<link rel="amphtml" href="https://inilayananresmijks.live/amp/43/">
<title>Jakartaslot88 Link Situs Login jakartaslot88 Agen Daftar Slot Online Terpercaya</title>
<meta name="description" content="Jakartaslot88 2025 tampil baru dengan menyediakan link login bebas blokir dan memberikan daftar slot online terpercaya yang sangat lengkap.">
<!-- font-awesome cdn link -->
<link rel="stylesheet" href="https://contohplakat.id/css/all.css">
<link rel="icon" type="image/x-icon" href="https://iili.io/3uXYYCv.png">
<!-- custom css file link -->
<link rel="stylesheet" href="https://contohplakat.id/css/style.css">
</head>
<body>
<section id="header">
<img style="max-width: 15%; height: auto; display: block; margin-left: 0; background-color: black; padding: 10px;"
src="https://iili.io/3uXYXZG.png" alt="Jakartaslot88 logo">
<div id="mobile">
<a href="cart.html"><i class="far fa-shopping-bag"></i></a>
<i id="bar" class="fas fa-outdent"></i>
</div>
</section>
<section id="productdetails" class="section-p1">
<div class="single-pro-image">
<img src="https://iili.io/3YOugPn.md.jpg" width="100%" id="MainImg" alt="Jakartaslot88-img">
<div class="small-image-group">
<div class="small-img-col">
<img src="https://iili.io/3YOugPn.md.jpg" width="100%" class="small-img" alt="Jakartaslot88-Slot">
</div>
<div class="small-img-col">
<img src="https://iili.io/3YOugPn.md.jpg" width="100%" class="small-img" alt="Jakartaslot88-login">
</div>
<div class="small-img-col">
<img src="https://iili.io/3YOugPn.md.jpg" width="100%" class="small-img" alt="Jakartaslot88-sportsbook">
</div>
<div class="small-img-col">
<img src="https://iili.io/3YOugPn.md.jpg" width="100%" class="small-img" alt="Jakartaslot88-rtp-slot">
</div>
</div>
</div>
<div style="z-index: 100;" class="single-pro-details">
<br>
<h2>Jakartaslot88 Link Situs Login jakartaslot88 Agen Daftar Slot Online Terpercaya</h2>
<a class="add-to-cart" href="https://abang.link/daftarjakartaslot88/">
<span> <strong>DAFTAR</strong></span>
</a>
<br>
<a class="add-to-cart" href="https://abang.link/daftarjakartaslot88/">
<span> <strong>LOGIN</strong></span>
</a>
<br>
<a class="add-to-cart" href="https://direct.lc.chat/14659944/">
<span> <strong>LIVECHAT</strong></span>
</a>
<p> <strong>Rp 10.000</strong></p>
<h3 style="color: #320b63;">Deposit Jakartaslot88</h3>
<strong><span><br><a href="https://contohplakat.id/">Jakartaslot88</a> memulai tahun 2025 dengan layanan ciamik memberikan daftar slot online terpercaya dan memperlakukan semua member yang bergabung dengan baik. Salah satu bentuk kepedulian jakartaslot88 sebagai link situs login slot resmi menyajikan cara menang slot terbaru dari efek rtp slot live yang gacor.</span><br>
<span><br>Penelitian yang sudah jakartaslot88 lakukan menyimpulkan kalau mahjong wins, olympus 1000 dan mahjong ways meunjukkan tingkat jackpot maxwin tertinggi. Melalui jakartaslot88 kamu bisa mendapatkan akses <a href="https://contohplakat.id/">slot</a> bebas blokir dan game slot yang sangat lengkap. YUK cobain sekarang buat akun bersama dengan kami modal cuma 10k aja.
</span><br>
</div>
</section>
<section id="newsletter" class="sectio
Open service 2606:4700:3036::ac43:b041:443 · contohplakat.id
2026-01-05 14:13
HTTP/1.1 526 <none> Date: Mon, 05 Jan 2026 14:13:38 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b9393d399419a21-FRA alt-svc: h3=":443"; ma=86400 error code: 526
Open service 2606:4700:3036::ac43:b041:8443 · contohplakat.id
2026-01-05 14:13
HTTP/1.1 521 <none> Date: Mon, 05 Jan 2026 14:13:38 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b9393d28c57c95d-FRA alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · forthrightweddings.beauty
2026-01-05 13:36
HTTP/1.1 503 Service Unavailable
Date: Mon, 05 Jan 2026 13:36:47 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=VJzOJwy45DVJh5Dthp4mYPGhGSHXgh1ViwO9IJCPBLz84%2BQH6%2FTMYzCmQ7aTDX86PcC27YG7K1vl%2FfU9%2FFDxdjxSN6UZn7rvkGqz5aZaL2jWk3DgTYtg49dbfDrlQ0xdzxKHQwk%3D"}]}
CF-RAY: 9b935ddafaaeac4c-YYZ
alt-svc: h3=":443"; ma=86400
Page title: 503 Service Temporarily Unavailable
<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body>
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · forthrightweddings.beauty
2026-01-05 13:36
HTTP/1.1 521 <none> Date: Mon, 05 Jan 2026 13:36:48 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b935ddabb780c16-SIN alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · forthrightweddings.beauty
2026-01-05 13:36
HTTP/1.1 503 Service Unavailable
Date: Mon, 05 Jan 2026 13:36:47 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
cf-cache-status: DYNAMIC
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yl%2FA6R2%2Fwglu1INeiYgDU%2FkQTu6P4upasbWfBFAe2ZDDOqciywDiNMTBDkBkSq5%2BMJuTBA2JbwbMrhXlcSxgD0VqWDIH2C0GePtSvTCBfiqX9ascyo00cOrqHeJdaBn6YZN2"}]}
CF-RAY: 9b935dd878075caa-FRA
alt-svc: h3=":443"; ma=86400
Page title: 503 Service Temporarily Unavailable
<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body>
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx</center>
</body>
</html>
Open service 2606:4700:3036::ac43:b041:8443 · hazel.ru.com
2026-01-05 13:34
Open service 2606:4700:3036::ac43:b041:80 · hazel.ru.com
2026-01-05 13:34
HTTP/1.1 301 Moved Permanently
Date: Mon, 05 Jan 2026 13:34:54 GMT
Content-Length: 0
Connection: close
Location: https://hazel.ru.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aClJWjSi4Q%2FI2rF81qrStgN%2B2%2BHEiATVepgLvW2AG49zGNiVRis4bX461LrVC%2BkdcOfujmnibcUffFougaUEQcBHuQiPpom9c4T1Y15EFBqMv%2FWrPfA%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b935b1958996957-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · hazel.ru.com
2026-01-05 13:34
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 13:34:56 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
x-dns-prefetch-control: on
link: <https://hazel.ru.com/wp-json/>; rel="https://api.w.org/"
link: <https://hazel.ru.com/wp-json/wp/v2/pages/19>; rel="alternate"; title="JSON"; type="application/json"
link: <https://hazel.ru.com/>; rel=shortlink
vary: Accept-Encoding
x-litespeed-cache: hit
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=TVItGaq8Ya2LXroo5fkKxYJk6rttOggJDWG%2BHiSQVEisgqCV8Z1zgM1X2yph1myJt3b1lclBWBAf7ArYs94JEatdVGIGtKph8NIX2qfArTSTMnBwUqw%2BiA%3D%3D"}]}
Server: cloudflare
x-xss-protection: 1;mode=block
x-frame-options: SAMEORIGIN
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
permissions-policy: accelerometer=(), camera=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=()
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9b935b1df9adfc94-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · dandelionpaperweightspop.shop
2026-01-05 11:30
HTTP/1.1 530 <none> Date: Mon, 05 Jan 2026 11:30:08 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 16 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=13,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b92a450cf5efa7e-SJC alt-svc: h3=":443"; ma=86400 error code: 1016
Open service 2606:4700:3036::ac43:b041:8443 · dandelionpaperweightspop.shop
2026-01-05 11:30
HTTP/1.1 403 Forbidden
Date: Mon, 05 Jan 2026 11:30:08 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=7,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rCxa7xKfIJQkHPW0VW7h576HGaRdXsCJPwRlwYeDRF6KJU0rvT1Lf4Hm%2FR6dQ3kC6xGCRqaddV1eosHL1lTK0dE9UIa9I3F0Yo%2FZyctaPhDXZtEx9HyASM2pp5y%2FWDuUOWCqqaMdfzsW"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b92a4500ffafd3e-SIN
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> dandelionpaperweightspop.shop</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9b92a4500ffafd3e</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2400:6180:0:d0::1182:2001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById(
Open service 2606:4700:3036::ac43:b041:80 · dandelionpaperweightspop.shop
2026-01-05 11:30
HTTP/1.1 530 <none> Date: Mon, 05 Jan 2026 11:30:08 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 16 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=18,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b92a4500d69f534-EWR alt-svc: h3=":443"; ma=86400 error code: 1016
Open service 2606:4700:3036::ac43:b041:443 · adebq.link
2026-01-05 10:52
HTTP/1.1 403 Forbidden
Date: Mon, 05 Jan 2026 10:52:14 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
cache-control: no-cache
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=9,cfOrigin;dur=297
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aCLiCURAS9wahYkTd8KaDsE8C0uP8sS2WY9un7mel49vXMrZS5%2B7oiMVOyWMT2auAU%2FkIFOavBhLDl7oT6JIgsIIJXqJsCIAmzjVwLgRxl%2FBcAoU"}]}
Server: cloudflare
CF-RAY: 9b926ccb0baa36a1-YYZ
alt-svc: h3=":443"; ma=86400
<html><body><h1>403 Forbidden</h1>
Request forbidden by administrative rules.
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"b3c9e982a0ed4ae1bc4124f464164f86","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body></html>
Open service 2606:4700:3036::ac43:b041:80 · adebq.link
2026-01-05 10:52
HTTP/1.1 403 Forbidden
Date: Mon, 05 Jan 2026 10:52:14 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
cache-control: no-cache
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=13,cfOrigin;dur=327
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=OUsOM5KLNmebS%2FDN4h0DdthCEVNDZhudXaaaq0fyPY39uPc2WZMFLr3s%2Bg%2F8V%2FSbEbHoG%2FIH1qw8787g3T%2BBjaC2qIMCV3ZnqCozJN9OW2NT6S%2BX3Ok%3D"}]}
Server: cloudflare
CF-RAY: 9b926cca4e49ee14-SJC
alt-svc: h3=":443"; ma=86400
<html><body><h1>403 Forbidden</h1>
Request forbidden by administrative rules.
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"b3c9e982a0ed4ae1bc4124f464164f86","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body></html>
Open service 2606:4700:3036::ac43:b041:8443 · adebq.link
2026-01-05 10:52
HTTP/1.1 521 <none> Date: Mon, 05 Jan 2026 10:52:13 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b926cc7bec6fffe-AMS alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · woldeseinnovate.info
2026-01-05 08:55
HTTP/1.1 301 Moved Permanently
Date: Mon, 05 Jan 2026 08:55:06 GMT
Content-Length: 0
Connection: close
Location: https://woldese.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=wJH%2BbSM7jJdthtDmk3iBboYu%2FYldGIzBH%2B1kpGvWAFFe%2FmEpDOriLNCvDbCoUysd%2BZTn7FTtslkYvdGBSRoYd8S5pvGhAg6AOdSjnpHlddYalMILpRQuq92bAy%2FgL5GY"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b91c1394b0efdc1-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · woldeseinnovate.info
2026-01-05 08:55
HTTP/1.1 301 Moved Permanently
Date: Mon, 05 Jan 2026 08:55:06 GMT
Content-Length: 0
Connection: close
Location: https://woldese.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=lNZrA%2B1mZbS45mwkcOCPoh5kzsoZ7hArBnMLQWsvdRRXLg7xxgbPslkjBuPzghWHuSijB3FpEBzAagRFWMAiaBzF%2Bk0zs1rmkWhGR1qCgWU0Z%2BBKBzgaChNHoNJsoYTs"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b91c138cb3b39ed-YYZ
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · woldeseinnovate.info
2026-01-05 08:55
HTTP/1.1 301 Moved Permanently
Date: Mon, 05 Jan 2026 08:55:06 GMT
Content-Length: 0
Connection: close
Location: https://woldese.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Gj%2BzPxmNSyGIbB%2FvOKSHESAh1bInYcsQIaJmIysCAOPp%2F57kxjZeV346dL9WhVth5N%2Fp%2BVXmn3voQB%2FgSKpuX%2BQmJ624K1RMgIHARNId3P%2BbE%2BTALtqQscNs%2BrIuwWFr"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b91c13888169627-LHR
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · cookiedo.ae
2026-01-05 04:48
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 04:48:55 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
x-powered-by: PHP/8.0.30
x-powered-by: PleskLin
link: <https://cookiedo.ae/wp-json/>; rel="https://api.w.org/", <https://cookiedo.ae/wp-json/wp/v2/pages/398>; rel="alternate"; title="JSON"; type="application/json", <https://cookiedo.ae/>; rel=shortlink
vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=p1Lx7lywnVRj2W35DuuMU1IKQ7FI%2BBKo7kx0vK0o4lQHKDbUndGW02AfPx9PtqANP%2FcRrnmAM0O4tzKCdk6lx0vQJo16qWlrcDO12dEl%2BQ8erQo2iDNe"}]}
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9b90588df9edb8fd-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · cookiedo.ae
2026-01-05 04:48
HTTP/1.1 303 See Other
Date: Mon, 05 Jan 2026 04:48:53 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
location: https://cookiedo.ae/login.php
expires: Fri, 28 May 1999 00:00:00 GMT
last-modified: Mon, 05 Jan 2026 04:48:53 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
pragma: no-cache
p3p: CP="NON COR CURa ADMa OUR NOR UNI COM NAV STA"
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
x-content-type-options: nosniff
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=c1MWEnmMCySh5Nvnq00WHqs0WMICwmT0kGxfhDSvd5B1%2FKmRU62Bz01OKxyXYaYTCN5VHsJU6n41Usz%2Fox34lgXgg3xjTOefDuKSvy784Jy34kiyn9Jg"}]}
CF-RAY: 9b90588cfb8bdc7a-FRA
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · rent-a-car-verona.com
2026-01-05 04:46
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 04:46:32 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Set-Cookie: advanced-frontend=63c2a7f5a6434191811fc962eaa21e32; path=/; HttpOnly
Set-Cookie: _csrf-frontend=216c4e7bfa0640e7a873d6a762a9d78c1762583d8af63da7ff4676487b19fdd5a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%2279QLAenEuw2TVqN0AtQ4fR59Kt6jKRIk%22%3B%7D; path=/; HttpOnly; SameSite=Lax
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=yEdAB%2FfPslJYF7jpLCPqnn8yz6miPQR16YxZJ7t0tE16A%2BToGZ9ilRm%2BPmiNVkxvjyAq9Kd1IieOCimerro2UlRtcpaTH4wdpus5CPE8j2zIHiAvd6k5H7gdntJpDsFQdw%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9b90551979b4fd16-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · rent-a-car-verona.com
2026-01-05 04:46
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 04:46:30 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Set-Cookie: advanced-frontend=d582fb96e6c905cb15bcc48e19b33cc8; path=/; HttpOnly
Set-Cookie: _csrf-frontend=f401070fa9b8fcbf1ada1df8c84bbf2dc7a778920135e94127707c81563990f3a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22sXjwm11ymscwlzcScsgZ1RDOHCjK4AEW%22%3B%7D; path=/; HttpOnly; SameSite=Lax
expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
pragma: no-cache
vary: Accept-Encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=NBxcmfXeIu3IgnrjCTz%2Fo10kwEH0zjeR%2FwdPerVxyGBxt6oXLZtRNzGOPk%2FtfA7r3lPGCIJ%2B7RUb2nvyzA%2BasP7teYYHm0ulnGTo1xwNCCB%2FZeUByJ47h3hUIXtpKhltaQ%3D%3D"}]}
front-end-https: on
strict-transport-security: max-age=300;
cf-cache-status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 9b90550e9dcebead-LHR
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · rent-a-car-verona.com
2026-01-05 04:46
HTTP/1.1 521 <none> Date: Mon, 05 Jan 2026 04:46:29 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b90550bc98c7765-LHR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:443 · vemapostars-pt.com
2026-01-05 01:48
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 01:48:49 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
X-Powered-By: PHP/8.1.31
Link: <https://vemapostars-pt.com/wp-json/>; rel="https://api.w.org/", <https://vemapostars-pt.com/wp-json/wp/v2/pages/1228>; rel="alternate"; title="JSON"; type="application/json", <https://vemapostars-pt.com/>; rel=shortlink
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=5VIvQOpEULbGADbC5yVZIQM6GAICIzZw%2Fk%2F5dVXfz1xnjhOirOfhgczNDo9Hk7UNHnG4wfZIqw0UKox7UNNXRHjr5VQgJj0qqLpNzBfdkhmbY8vZlqVGs%2BppITLShQ%3D%3D"}]}
cf-cache-status: DYNAMIC
vary: accept-encoding
Server-Timing: cfCacheStatus;desc="DYNAMIC"
Server-Timing: cfEdge;dur=7,cfOrigin;dur=1080
CF-RAY: 9b8f50c1cce589b9-SIN
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · vemapostars-pt.com
2026-01-05 01:48
HTTP/1.1 521 <none> Date: Mon, 05 Jan 2026 01:48:47 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=112,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b8f50bb4c0da10a-EWR alt-svc: h3=":8443"; ma=86400 error code: 521
Open service 2606:4700:3036::ac43:b041:80 · goqualifund.co
2026-01-05 00:59
HTTP/1.1 301 Moved Permanently
Date: Mon, 05 Jan 2026 00:59:38 GMT
Content-Length: 0
Connection: close
Location: https://goqualifi.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=uiQcUX1cAd6SDTK%2FDe5vwhFS6oEe9y%2FeEE%2FIZ1lZd1pHpuQ0FVJWRkJBZX4B8RkHqaDsSLjAHHNm%2Be10V13SzdzxE%2F1fE6Ok4SEXS4%2BpFs9YfGfob%2Fp9sbef"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b8f08c01f2a2fc1-AMS
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · goqualifund.co
2026-01-05 00:59
HTTP/1.1 301 Moved Permanently
Date: Mon, 05 Jan 2026 00:59:38 GMT
Content-Length: 0
Connection: close
Location: https://goqualifi.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7T%2BD9o%2BfgSy%2BzF94cGDhqcLiWDsnj5XcySYZH%2FR%2Bd5u5NehBnnkqfwKWNz8Mn7ks3%2FvLIayIgY6WrU7jnZaX%2FY0iO%2FI4FTGIT5wkzUYhUYyM8i4E4s3X3r7S"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b8f08c00a6055ac-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · goqualifund.co
2026-01-05 00:59
HTTP/1.1 301 Moved Permanently
Date: Mon, 05 Jan 2026 00:59:38 GMT
Content-Length: 0
Connection: close
Location: https://goqualifi.com/
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1xaj3HwOjuxCK56EhMHAt8LFj355c30Cj%2BFHDKc2GpJtROBksdlVGzUSPlrE4F1kOKUwXIY5wQw%2Fe%2BaFNT5RyGDMOio2goyUhro2Bk2gopHe8FwDmkwrlk7n"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b8f08bfc9f99fcc-AMS
alt-svc: h3=":8443"; ma=86400
Open service 2606:4700:3036::ac43:b041:8443 · 360peliculas.pt
2026-01-05 00:45
HTTP/1.1 522 <none> Date: Mon, 05 Jan 2026 00:46:00 GMT Content-Type: text/plain; charset=UTF-8 Content-Length: 15 Connection: close Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Expires: Thu, 01 Jan 1970 00:00:01 GMT Referrer-Policy: same-origin Server-Timing: cfEdge;dur=19646,cfOrigin;dur=0 X-Frame-Options: SAMEORIGIN Server: cloudflare CF-RAY: 9b8ef4498d669905-BOM alt-svc: h3=":8443"; ma=86400 error code: 522
Open service 2606:4700:3036::ac43:b041:443 · 360peliculas.pt
2026-01-05 00:45
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 00:45:40 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: no-cache, private
Link: <https://360peliculas.pt/build/assets/app-Bt4oZPD9.css>; rel="preload"; as="style", <https://360peliculas.pt/build/assets/app-B45EMk9I.js>; rel="modulepreload"; as="script"
Vary: X-Inertia
vary: accept-encoding
Set-Cookie: XSRF-TOKEN=eyJpdiI6InlpbmVYdDNVZzRtdzUycndBMDQ3SFE9PSIsInZhbHVlIjoiYzB1aWJTd3hIZG1XNFprTDhidjU2QzNacG9yRTdmQW1nRUpNK0h1d0UrNWVHQWhtOFVpRTYxZUFiR0t1S2I3bjlQNmQ4aXRQNnYrazhtOE1qNHg5VUZmU3NJQVZNT1lsemxxdUxOTTkyRWRMejlrSHRiOGRXOUo2Q293Y2xJbDUiLCJtYWMiOiIzOWFmNWI1ZGMxMWMwYTRlOGUyMjlmNWQxYzU5OWUzYmIwZjRlZjYyNTg3ZDNkNWU4NGQ0ZWNmZjFkNDljNmUwIiwidGFnIjoiIn0%3D; expires=Mon, 05 Jan 2026 02:45:26 GMT; Max-Age=7200; path=/; secure; samesite=lax
Set-Cookie: 360peliculas_session=eyJpdiI6InkyZHdMbzZBMWNiOGZqYmxJbzdiRXc9PSIsInZhbHVlIjoiMlEwcjNLL2NLTFpvRGFaUmF5eGZHTlpSdXVlc1dMRndpVWZaRkd1ZWZYVXl2WXZJYS9KbjhFbEpvQjVnY1AyTTl5eDlhaFFmY2xxbTZPUDdwVkJyMStqUXIwc2JxZlBNb0tlM3lmVWhvN1EwRTZaQmFnNVRxbkphb2JibjdEMDIiLCJtYWMiOiIwNTVhODQ1OGY5MDY5ODZlNTNkYmJkYmNkNjYzNDYzMzBhMmFiMmJlZTVkNDk4MGFiNGI0NGFhZDljOGE5YzM2IiwidGFnIjoiIn0%3D; expires=Mon, 05 Jan 2026 02:45:26 GMT; Max-Age=7200; path=/; secure; httponly; samesite=lax
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2F%2BurEdxHbmdWh%2F%2FhuXMm0rduYrGYT02xblTiqa5LDFuh18KuSPL5m4JKAXL2gohIaKrxqm5kLOcpjumuVMASuqqWTugmEaUeKW6lzBLf8GLfvfm3n9A%2F%2BzQQrQ%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9b8ef44478f84db9-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:80 · 360peliculas.pt
2026-01-05 00:45
HTTP/1.1 200 OK
Date: Mon, 05 Jan 2026 00:45:40 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Server: cloudflare
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Cache-Control: no-cache, private
Link: <http://360peliculas.pt/build/assets/app-Bt4oZPD9.css>; rel="preload"; as="style", <http://360peliculas.pt/build/assets/app-B45EMk9I.js>; rel="modulepreload"; as="script"
Vary: X-Inertia
vary: accept-encoding
Set-Cookie: XSRF-TOKEN=eyJpdiI6InFhSmxCRk9OMnlTSkpRdEp1dHhlVHc9PSIsInZhbHVlIjoicDQ3bHIwTXp2eVN1bHZXbEJmckNBRkw4VXZKR1pReFg3d0g0VnJWRHQzN3dhOHlBbGl2WE9OSHQ0YmRHUFVTbXNIVSsrWW82OE5EaEVDang2YzltWVlSeFVRSnR2cmVXbHJ0VUxncW9hTU9QV05kbVNpL0QyL2RjcE1YKzYyWEEiLCJtYWMiOiI3YmVkYWU3MThjYmE1MWRkN2ZiMTI4MjYwNDAyZTRiMzE1NjZiNmFhNzU3YTBlZjlkNjk5YzljZWM1NzkwZWRkIiwidGFnIjoiIn0%3D; expires=Mon, 05 Jan 2026 02:45:26 GMT; Max-Age=7200; path=/; samesite=lax
Set-Cookie: 360peliculas_session=eyJpdiI6ImE4ZGZtV3Z1bXJHdXVLTFhjdE1RZXc9PSIsInZhbHVlIjoiL3dmakJLZUIzRnh3ZGEvV0F6SW5MMjdKNzlGbmR5dm9PUklhdFcvc0dVamhmcThERlRsZi90dWxUWWZSbmdYR3YyM3hNa3NqYTdLeEVYOWIxdDV4S1BmYU1zWWZENHIxSkV1NjVGTkxhdXh0T0JGbGpnYmY1Rmc1UzROVkdEWisiLCJtYWMiOiJhYmM3NWIzOTA5ZGM5YTVhMWE1MjVjOWQwNDFmOGQ1MWE4YWEzNjZmZDJiYWJhODIzMGZlYzMzYTQxNWJlNWVkIiwidGFnIjoiIn0%3D; expires=Mon, 05 Jan 2026 02:45:26 GMT; Max-Age=7200; path=/; httponly; samesite=lax
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=u42yrOTeL41kcSd52PmvWsA%2BxlBO2e5bGLGqp9wxlz1iaKubY6LKDJ43Nz%2FagminhiZ3r3CrHkk8PTTfzSsnnFej93xf9c5BX42AaDiVU2XWMvHlFnNunAJKlA%3D%3D"}]}
cf-cache-status: DYNAMIC
CF-RAY: 9b8ef4441a217310-FRA
alt-svc: h3=":443"; ma=86400
Open service 2606:4700:3036::ac43:b041:443 · xytlzy.cn
2026-01-05 00:09
HTTP/1.1 403 Forbidden
Date: Mon, 05 Jan 2026 00:09:41 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=1,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dKLFarKdk8JuVAPVlsKMMOprW2aIdhOBVptFNsvIPdm8MVNtCWHTmo0ZpB36B1uQP1Jz3cbAtUf%2FcViRQv%2BGMS8IZ6SBl2txHrGGMjRl3CixGUubvQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b8ebf8f5f69148e-SJC
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> xytlzy.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9b8ebf8f5f69148e</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:4:1d0::3d7:5000</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal
Open service 2606:4700:3036::ac43:b041:80 · xytlzy.cn
2026-01-05 00:09
HTTP/1.1 403 Forbidden
Date: Mon, 05 Jan 2026 00:09:41 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=7,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ZGCgCmL%2F1ewx1IfpFZf5CzI4jSrwFNyaJRoxHoXN0BrTPmxf%2B5d5p%2BpSKp3Y9Ktf%2BfSIa6QS0raB7kQMB4nTz5ZJDTCN49e4IU7yoU8ghwpL9cElVQ%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b8ebf8f4fe5eb22-SJC
alt-svc: h3=":443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> xytlzy.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9b8ebf8f4fe5eb22</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:4:1d0::259:0</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal");
Open service 2606:4700:3036::ac43:b041:8443 · xytlzy.cn
2026-01-05 00:09
HTTP/1.1 403 Forbidden
Date: Mon, 05 Jan 2026 00:09:41 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Referrer-Policy: same-origin
Server-Timing: cfEdge;dur=2,cfOrigin;dur=0
X-Frame-Options: SAMEORIGIN
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=gH64SbudQ6DtqaPR2ecLVOBScgnGdnAS%2FlIOpy8mrtLcBFC12P%2BDoYhjCB6ETeQUj0Ck8AtuXja5cAFGzP9gK2sESGkk%2B1lEkchcS6LQvM0Oj42GyA%3D%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 9b8ebf8f9e84b4c6-EWR
alt-svc: h3=":8443"; ma=86400
Page title: Attention Required! | Cloudflare
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Attention Required! | Cloudflare</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/cf.errors.css" />
<!--[if lt IE 9]><link rel="stylesheet" id='cf_styles-ie-css' href="/cdn-cgi/styles/cf.errors.ie.css" /><![endif]-->
<style>body{margin:0;padding:0}</style>
<!--[if gte IE 10]><!-->
<script>
if (!navigator.cookieEnabled) {
window.addEventListener('DOMContentLoaded', function () {
var cookieEl = document.getElementById('cookie-alert');
cookieEl.style.display = 'block';
})
}
</script>
<!--<![endif]-->
</head>
<body>
<div id="cf-wrapper">
<div class="cf-alert cf-alert-error cf-cookie-error" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
<div id="cf-error-details" class="cf-error-details-wrapper">
<div class="cf-wrapper cf-header cf-error-overview">
<h1 data-translate="block_headline">Sorry, you have been blocked</h1>
<h2 class="cf-subheadline"><span data-translate="unable_to_access">You are unable to access</span> xytlzy.cn</h2>
</div><!-- /.header -->
<div class="cf-section cf-highlight">
<div class="cf-wrapper">
<div class="cf-screenshot-container cf-screenshot-full">
<span class="cf-no-screenshot error"></span>
</div>
</div>
</div><!-- /.captcha-container -->
<div class="cf-section cf-wrapper">
<div class="cf-columns two">
<div class="cf-column">
<h2 data-translate="blocked_why_headline">Why have I been blocked?</h2>
<p data-translate="blocked_why_detail">This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.</p>
</div>
<div class="cf-column">
<h2 data-translate="blocked_resolve_headline">What can I do to resolve this?</h2>
<p data-translate="blocked_resolve_detail">You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.</p>
</div>
</div>
</div><!-- /.section -->
<div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
<p class="text-13">
<span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">9b8ebf8f9e84b4c6</strong></span>
<span class="cf-footer-separator sm:hidden">•</span>
<span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
Your IP:
<button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
<span class="hidden" id="cf-footer-ip">2604:a880:400:d0::24f2:4001</span>
<span class="cf-footer-separator sm:hidden">•</span>
</span>
<span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
</p>
<script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reve
alzc33.dpdns.org 2 magenta-hydration.com 2 jixiantz.com 2 vaticanises.com 2 events.homeschoolfox.com 2 foom.md 2 creativesmixer.com 2 ajlbz.com 2 mail.fatrover.com 1 fatrover.com 4 stbk.com.cn 2 main.ly168.co 2 www.thursdaydesign.com.au 2 yesmysweet.com 2 getrollsudsco.com 2 qservicessmarttech.info 1 www.taibabosnic.com 2 taibabosnic.com 2 nurek.online 2 contactapprendo.com 2 pthumb.polos.world 1 proud-math-fba3.dharan731.workers.dev 1 pvid.polos.world 2 pgcfulfill.com 2 99hhg099.com 2 www.americanlegalteam.com 2 wangdachui.eu.org 5 angkaultraman.com 8 www.angkaultraman.com 2 tzwnyw.info 2 joker369.solutions 5 bjjjjd.com 2 ytmp3-cc.com.im 2 voc.org.uk 5 fastrackenergy.com 2 7003.ly168.co 2 12cocobet.com 2 globaloilmanagementgroup.com 2 bodemillerskiacademy.org 2 gondesen.cloud 5 alljv.com 5 manjiangli.cn 2 choppercommute.com 2 tryentregadordigitalemail.sbs 1 kseftangodown.pl 2 chem-suppliers.com 2 edu-sight.cn 2 holamedleyhome.shop 2 sdmyedu.cn 2 igadigi.top 2 limoberg.com 2 agentbettingx500.site 2 thaiebook.org 2 taiwanruralfront.org 2 lineascan.com 2 ss0591.com 2 americanlegalteam.com 2 www.pressdiary1.com 2 pressdiary1.com 2 mail.pressdiary1.com 2 chatwithdata.ai 2 1001t.me 2 livescores4u.com 2 happydragonchinese.com.au 2 www.huat138-market.autos 2 plinio-kingdom-wars.online 2 home.aiqming.xyz 2 forum.solargames.ca 2 rankhunt.ing 2 stararc.uk 1 christopherboelz.com 2 29373358.com 2 huat138-market.autos 2 hitclub53.win 2 lucky88.fyi 2 beautyhallcomo.it 2 haemata.co.nz 2 cozzco.com 2 surprisevistahavens.xyz 2 prometheus.solargames.ca 2 boschshop.com.br 5 www.srilankandriversguides.com 1 twistedfitnessstudios.com 2 sqyj.com.cn 2 ileqa.info 2 nicealliance.org 2 taodande.vip 1 rokasvetki.lv 1 source.kundera.org 2 carneyassets.com 1 tjstudiohouse.com 2 cgnstore.com 2 keenwp.com 2 www.keenwp.com 2 npowerbusinesssolutions.uk 2 gics.gi 2 gensynfoundation.ai 2 xytlzy.cn 5 7pwin-com.com 2 hahabags.ru 2 99gameslogin.in.net 2 webmail.boschshop.com.br 2 www.boschshop.com.br 2 localsip.info 1 ftp.boschshop.com.br 2 cpanel.boschshop.com.br 2 abcprojekt.com.pl 2 itlwgc.cn 2 alitrain.cn 2 vodka.uk.com 2 wyzmaster.cfd 2 xivu.shop 2 nutokay9.pro 2 chiswickdrains.co.uk 2 kimo-therapy.com 2 yanai.ca 2 shellnet.uk.com 2 cupe3631.ca 2 marriagechat.ai 2 valleypeak.co 2 galileoenterprisesolutions.com 2 fibytwih.quest 2 pgribali.org 2 g088h.fun 1 bishejingxuan162635.buzz 3 fitnesstrustcrew.sbs 2 hotrueckwand24pop.shop 2 manage.bieniek.dev 2 mediax.fun 1 js71.cn 2 www.zendodesign888.com 2 zendodesign888.com 2 coayamk.info 2 gamingbeast.website 2 77pak5c.com 2 incomich.com.mx 2 vaughanlaserclinic.com 2 rashlanutlawyer.co.il 2 hnhaoji.com 2 revendo.li 2 foomoniiosdalraze.cyou 1 ysfwq.top 2 112234.vip 2 iyilikbahcesi.com 2 xzxgtj.top 2 guxucub.store 2 cn-pc-ninegame.com 2 rtp5544bet.com 2 sblive40.com 2 pc28382.com 2 lachlanm05.com 2 ycsports-club.com 2 cpanel.alljv.com 2 autodiscover.alljv.com 2 cpcontacts.alljv.com 2 webdisk.alljv.com 2 webmail.alljv.com 2 cpcalendars.alljv.com 2 whm.alljv.com 2 www.alljv.com 2 budgetpawn.com 2 ggleadersgroup.com 2 shorokhov.pro 2 polyzen.io 2 evsmartlogicdo.ru 0 u8efk.com 0 pathwaytosuccess.shop 0 contohplakat.id 2 forthrightweddings.beauty 2 hazel.ru.com 2 dandelionpaperweightspop.shop 2 adebq.link 2 woldeseinnovate.info 2 cookiedo.ae 1 rent-a-car-verona.com 2 vemapostars-pt.com 1 goqualifund.co 2 360peliculas.pt 2