yyyyyyy
This commit is contained in:
parent
cd314cfe4a
commit
4dc7824f7e
61 changed files with 1795 additions and 0 deletions
96
yyyyyyy/css/index.css
Normal file
96
yyyyyyy/css/index.css
Normal file
|
@ -0,0 +1,96 @@
|
|||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box
|
||||
}
|
||||
|
||||
div.container {
|
||||
perspective: 1px;
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
perspective-origin: 100% initial
|
||||
}
|
||||
|
||||
div.layer {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
transform-origin: 100% initial;
|
||||
word-wrap: break-word
|
||||
}
|
||||
|
||||
div.layer>span,
|
||||
div.layer>img {
|
||||
pointer-events: none
|
||||
}
|
||||
|
||||
div#layer-1 {
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
top: 10px;
|
||||
width: 400px;
|
||||
z-index: 5;
|
||||
pointer-events: none
|
||||
}
|
||||
|
||||
div#layer-2 {
|
||||
z-index: 4;
|
||||
transform: translateZ(0)
|
||||
}
|
||||
|
||||
div#layer-3 {
|
||||
z-index: 3;
|
||||
transform: translateZ(-.1px) scale(1.1)
|
||||
}
|
||||
|
||||
div#layer-4 {
|
||||
z-index: 2;
|
||||
transform: translateZ(-.2px) scale(1.2)
|
||||
}
|
||||
|
||||
div#layer-5 {
|
||||
z-index: 1;
|
||||
transform: translateZ(-.3px) scale(1.3)
|
||||
}
|
||||
|
||||
div#video-container {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: 65px;
|
||||
right: 0;
|
||||
width: 640px;
|
||||
height: 480px;
|
||||
z-index: 3;
|
||||
transform: translateZ(-.2px) scale(1.2)
|
||||
}
|
||||
|
||||
div#video video {
|
||||
width: 100%;
|
||||
height: 100%
|
||||
}
|
||||
|
||||
div.welcome {
|
||||
filter: drop-shadow(15px 15px 3px rgba(0, 0, 0, .75));
|
||||
-webkit-filter: drop-shadow(15px 15px 3px rgba(0, 0, 0, .75))
|
||||
}
|
||||
|
||||
@keyframes backgroundScroll {
|
||||
0% {
|
||||
background-position: 0 0
|
||||
}
|
||||
|
||||
to {
|
||||
background-position: 4000px 0
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: var(--bgimage);
|
||||
-webkit-animation: backgroundScroll 900s linear infinite;
|
||||
animation: backgroundScroll 900s linear infinite
|
||||
}
|
BIN
yyyyyyy/images/favicon.ico
Normal file
BIN
yyyyyyy/images/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
yyyyyyy/images/network.gif
Normal file
BIN
yyyyyyy/images/network.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 360 B |
BIN
yyyyyyy/images/welcome.gif
Normal file
BIN
yyyyyyy/images/welcome.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
33
yyyyyyy/index.html
Normal file
33
yyyyyyy/index.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="icon" href="images/favicon.ico">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>▁▂▃▄▅▆▇ `^^^^^~ ░ ui▀┳╲ ☺ .info ▓</title>
|
||||
<script type="module" crossorigin="" src="js/index.js"></script>
|
||||
<link rel="stylesheet" crossorigin="" href="css/index.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div id="layer-1" class="welcome layer">
|
||||
<img src="images/network.gif" alt="network.gif" width="64" height="54">
|
||||
<img src="images/welcome.gif" alt="welcome.gif" width="559" height="45">
|
||||
</div>
|
||||
<div id="layer-2" class="layer"></div>
|
||||
<div id="layer-3" class="layer"></div>
|
||||
<div id="video-container" class="layer">
|
||||
<video autoplay="" muted="" loop="" disablepictureinpicture="">
|
||||
<source src="" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
<div id="layer-4" class="layer"></div>
|
||||
<div id="layer-5" class="layer"></div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
467
yyyyyyy/js/index.js
Normal file
467
yyyyyyy/js/index.js
Normal file
|
@ -0,0 +1,467 @@
|
|||
(function () {
|
||||
const e = document.createElement("link").relList;
|
||||
if (e && e.supports && e.supports("modulepreload"))
|
||||
return;
|
||||
|
||||
for (const o of document.querySelectorAll('link[rel="modulepreload"]'))
|
||||
s(o);
|
||||
|
||||
new MutationObserver(o => {
|
||||
for (const l of o)
|
||||
if (l.type === "childList")
|
||||
for (const f of l.addedNodes)
|
||||
f.tagName === "LINK" && f.rel === "modulepreload" && s(f)
|
||||
|
||||
|
||||
|
||||
}).observe(document, {
|
||||
childList: !0,
|
||||
subtree: !0
|
||||
});
|
||||
function n(o) {
|
||||
const l = {};
|
||||
return o.integrity && (l.integrity = o.integrity),
|
||||
o.referrerPolicy && (l.referrerPolicy = o.referrerPolicy),
|
||||
o.crossOrigin === "use-credentials" ? l.credentials = "include" : o.crossOrigin === "anonymous" ? l.credentials = "omit" : l.credentials = "same-origin",
|
||||
l
|
||||
}
|
||||
function s(o) {
|
||||
if (o.ep)
|
||||
return;
|
||||
|
||||
o.ep = !0;
|
||||
const l = n(o);
|
||||
fetch(o.href, l)
|
||||
}
|
||||
})();
|
||||
function v() {
|
||||
const t = [
|
||||
"▁▂▃▄▅▆▇ `^^^^^~ ░ ui▀┳╲ ☺ .info ▓",
|
||||
"▂▁▂▃▄▅▆` ^^^^^~ ░ ui▀┳╲ ☺ .info ▓",
|
||||
"▃▂▁▂▃▄▅ `^^^^^~ ░ ui▀┳╲ ☻ .info ▓",
|
||||
"▄▃▂▁▂▃▄` ^^^^^~ ░ ui▀┳╲ ☻ .info ▓",
|
||||
"▅▄▃▂▁▂▃ `^^^^^~ ░ ui▀┳╲ ☺ .info ▓",
|
||||
"▆▅▄▃▂▁▂` ^^^^^~ ░ ui▀┳╲ ☺ .info ▓",
|
||||
"▇▆▅▄▃▂▁ `^^^^^~ ░ ui▀┳╲ ☻ .info ▓",
|
||||
"▆▇▆▅▄▃▂` ^^^^^~ ░ ui▀┳╲ ☻ .info ▓",
|
||||
"▅▆▇▆▅▄▃ `^^^^^~ ░ ui▀┳╲ ☺ .info ▓",
|
||||
"▄▅▆▇▆▅▄` ^^^^^~ ░ ui▀┳╲ ☺ .info ▓",
|
||||
"▃▄▅▆▇▆▅ `^^^^^~ ░ ui▀┳╲ ☻ .info ▓",
|
||||
"▂▃▄▅▆▇▆` ^^^^^~ ░ ui▀┳╲ ☻ .info ▓"
|
||||
];
|
||||
function e() {
|
||||
n >= t.length - 1 ? n = 0 : n++,
|
||||
document.title = t[n],
|
||||
setTimeout(e, 200)
|
||||
}
|
||||
let n = 0;
|
||||
e()
|
||||
}
|
||||
const h = [
|
||||
"left", "right", "none"
|
||||
],
|
||||
u = [
|
||||
"white",
|
||||
"black",
|
||||
"red",
|
||||
"yellow",
|
||||
"lime",
|
||||
"green",
|
||||
"aqua",
|
||||
"teal",
|
||||
"blue",
|
||||
"navy",
|
||||
"fuchsia",
|
||||
"purple"
|
||||
],
|
||||
T = [
|
||||
"serif", "sans-serif", "cursive", "monospace"
|
||||
],
|
||||
D = [
|
||||
"none",
|
||||
"underline",
|
||||
"overline",
|
||||
"line-through",
|
||||
"blink"
|
||||
],
|
||||
L = [
|
||||
"center", "left", "right", "justify"
|
||||
],
|
||||
p = [
|
||||
"txtbg1.png",
|
||||
"animansi.gif",
|
||||
"delicious-icon.gif",
|
||||
"gradi.png",
|
||||
"use-os-x-lion-to-improve-your-ui.gif",
|
||||
"tssqr4.gif"
|
||||
],
|
||||
I = [
|
||||
"baseline",
|
||||
"sub",
|
||||
"super",
|
||||
"top",
|
||||
"text-top",
|
||||
"middle",
|
||||
"bottom",
|
||||
"text-bottom"
|
||||
],
|
||||
P = [
|
||||
"dotted",
|
||||
"dashed",
|
||||
"solid",
|
||||
"double",
|
||||
"groove",
|
||||
"ridge"
|
||||
],
|
||||
d = [
|
||||
"-top",
|
||||
"-bottom",
|
||||
"-left",
|
||||
"-right",
|
||||
""
|
||||
],
|
||||
S = [
|
||||
"none", "left", "right", "both"
|
||||
],
|
||||
O = [
|
||||
"linear", "ease", "ease-in", "ease-out"
|
||||
],
|
||||
B = [
|
||||
"transform", "filter"
|
||||
],
|
||||
j = [
|
||||
"normal", "reverse", "alternate", "alternate-reverse"
|
||||
],
|
||||
b = 25,
|
||||
r = (t, e) => Math.floor(Math.random() * (e - t + 1)) + t,
|
||||
a = t => t[Math.floor(Math.random() * t.length)],
|
||||
i = (t, e) => Math.random() * 100 <= t ? e : "",
|
||||
x = () => `rgba(${
|
||||
r(0, 255)
|
||||
},${
|
||||
r(0, 255)
|
||||
},${
|
||||
r(0, 255)
|
||||
},${
|
||||
r(0, 100) / 100
|
||||
})`,
|
||||
q = () => `${
|
||||
r(1, 30)
|
||||
}px ${
|
||||
r(1, 30)
|
||||
}px ${
|
||||
r(3, 8)
|
||||
}px ${
|
||||
a(u)
|
||||
}`,
|
||||
m = () => `${
|
||||
r(1, 25)
|
||||
}px ${
|
||||
a(P)
|
||||
} ${
|
||||
x()
|
||||
}`,
|
||||
k = () => `anim-${
|
||||
r(0, b)
|
||||
} ${
|
||||
r(0, 200) / 10
|
||||
}s ${
|
||||
a(O)
|
||||
} infinite ${
|
||||
a(j)
|
||||
}`,
|
||||
A = (t, e, n) => {
|
||||
let s = "";
|
||||
for (let o = t; o >= 1; o--)
|
||||
s += `${
|
||||
r(e, n)
|
||||
}px `;
|
||||
|
||||
return s
|
||||
},
|
||||
M = () => {
|
||||
let t = "";
|
||||
return t += i(50, `blur(${
|
||||
r(3, 30)
|
||||
}px) `),
|
||||
t += i(25, `contrast(${
|
||||
r(100, 200)
|
||||
}%) `),
|
||||
t += i(50, `drop-shadow(${
|
||||
A(3, 2, 60)
|
||||
} ${
|
||||
x()
|
||||
}) `),
|
||||
t += i(50, `hue-rotate(${
|
||||
r(0, 360)
|
||||
}deg) `),
|
||||
t += i(
|
||||
50,
|
||||
`invert(${
|
||||
r(0, 100) / 100
|
||||
}) `
|
||||
),
|
||||
t += i(
|
||||
25,
|
||||
`opacity(${
|
||||
r(10, 100) / 100
|
||||
}) `
|
||||
),
|
||||
t += i(25, `saturate(${
|
||||
r(30, 200)
|
||||
}%) `),
|
||||
t
|
||||
},
|
||||
w = () => {
|
||||
let t = r(0, 50) / 10,
|
||||
e = r(0, 50) / 10,
|
||||
n = r(0, 50) / 10,
|
||||
s = r(0, 50) / 10,
|
||||
o = r(0, 50) / 10,
|
||||
l = r(0, 50) / 10;
|
||||
return `matrix(${t},${e},${n},${s},${o},${l})`
|
||||
},
|
||||
$ = t => t == "transform" ? w() : t == "filter" ? M() : null,
|
||||
C = t => {
|
||||
let e = "";
|
||||
for (let n = t; n >= 1; n--) {
|
||||
let s = a(B),
|
||||
o = [
|
||||
10,
|
||||
20,
|
||||
30,
|
||||
40,
|
||||
50,
|
||||
60,
|
||||
70,
|
||||
80,
|
||||
90
|
||||
].sort(() => .5 - Math.random()).slice(1, r(0, 4)).sort();
|
||||
e += `@keyframes anim-${n}{`,
|
||||
e += `0%{${s}:${
|
||||
$(s)
|
||||
};}`;
|
||||
for (let l = 0; l < o.length; l++)
|
||||
e += `${
|
||||
o[l]
|
||||
}%{${s}:${
|
||||
$(s)
|
||||
};}`;
|
||||
|
||||
e += `100%{${s}:${
|
||||
$(s)
|
||||
};}`,
|
||||
e += "}"
|
||||
}
|
||||
return e
|
||||
},
|
||||
E = t => {
|
||||
let e = "";
|
||||
for (let n = t; n >= 1; n--)
|
||||
e += `.img-s${n}{`,
|
||||
e += `float:${
|
||||
a(h)
|
||||
};`,
|
||||
e += i(10, `background-image:url('https://files.yyyyyyy.info/images/${
|
||||
a(p)
|
||||
}');`),
|
||||
e += i(5, `background-color:${
|
||||
a(u)
|
||||
};`),
|
||||
e += i(15, `border${
|
||||
a(d)
|
||||
}:${
|
||||
m()
|
||||
};`),
|
||||
e += i(15, `border${
|
||||
a(d)
|
||||
}:${
|
||||
m()
|
||||
};`),
|
||||
e += i(75, `vertical-align:${
|
||||
a(I)
|
||||
};`),
|
||||
e += i(
|
||||
5,
|
||||
`opacity:${
|
||||
r(10, 100) / 100
|
||||
};`
|
||||
),
|
||||
e += i(10, `filter:${
|
||||
M()
|
||||
};`),
|
||||
e += i(10, `transform:${
|
||||
w()
|
||||
};`),
|
||||
e += i(2, `animation:${
|
||||
k()
|
||||
};`),
|
||||
e += "}";
|
||||
|
||||
return e
|
||||
},
|
||||
H = t => {
|
||||
let e = "";
|
||||
for (let n = t; n >= 1; n--)
|
||||
e += `.txt-s${n}{`,
|
||||
e += `float:${
|
||||
a(h)
|
||||
};`,
|
||||
e += `text-align:${
|
||||
a(L)
|
||||
};`,
|
||||
e += `font-size:${
|
||||
r(6, 32)
|
||||
}px;`,
|
||||
e += `font-family:${
|
||||
a(T)
|
||||
};`,
|
||||
e += `color:${
|
||||
a(u)
|
||||
};`,
|
||||
e += i(5, `background-color:${
|
||||
a(u)
|
||||
};`),
|
||||
e += i(
|
||||
5,
|
||||
`opacity:${
|
||||
r(0, 100) / 100
|
||||
};`
|
||||
),
|
||||
e += i(10, `background-image:url('https://files.yyyyyyy.info/images/${
|
||||
a(p)
|
||||
}');`),
|
||||
e += i(80, `text-decoration:${
|
||||
a(D)
|
||||
};`),
|
||||
e += i(50, `text-shadow:${
|
||||
q()
|
||||
};`),
|
||||
e += i(15, `border${
|
||||
a(d)
|
||||
}:${
|
||||
m()
|
||||
};`),
|
||||
e += i(15, `border${
|
||||
a(d)
|
||||
}:${
|
||||
m()
|
||||
};`),
|
||||
e += `clear:${
|
||||
a(S)
|
||||
};`,
|
||||
e += i(3, `animation:${
|
||||
k()
|
||||
};`),
|
||||
e += "}";
|
||||
|
||||
return e
|
||||
};
|
||||
function F() {
|
||||
let t = "";
|
||||
return t += E(100),
|
||||
t += H(100),
|
||||
t += C(b),
|
||||
t
|
||||
}
|
||||
function N() {
|
||||
const t = F();
|
||||
document.head.insertAdjacentHTML("beforeend", `<style type="text/css">${t}</style>`)
|
||||
}
|
||||
const R = [
|
||||
"data",
|
||||
"drawing",
|
||||
"gv",
|
||||
"iii",
|
||||
"link",
|
||||
"p",
|
||||
"s",
|
||||
"space",
|
||||
"teapot",
|
||||
"twitter",
|
||||
"x"
|
||||
],
|
||||
y = t => t[Math.floor(Math.random() * t.length)],
|
||||
X = t => {
|
||||
const e = Math.floor(Math.random() * 100),
|
||||
n = y(t);
|
||||
return `<img src="https://files.yyyyyyy.info/${
|
||||
n.key
|
||||
}" class="img-s${e}" width="${
|
||||
n.width
|
||||
}" height="${
|
||||
n.height
|
||||
}">`
|
||||
},
|
||||
Y = (t, e) => {
|
||||
const n = Math.floor(Math.random() * 100),
|
||||
s = y(t);
|
||||
return `<span class="txt-s${n}">${
|
||||
s.substring(0, e)
|
||||
}</span>`
|
||||
},
|
||||
g = (t, e) => Math.random() * 100 <= t ? `<a href="l/${
|
||||
y(R)
|
||||
}">${e}</a>` : e;
|
||||
function c(t, e, n) {
|
||||
let s = "";
|
||||
for (let o = e; o >= 1; o--)
|
||||
switch (y(["image", "text"])) {
|
||||
case "image": s += g(10, X(t.images));
|
||||
break;
|
||||
case "text": s += g(1, Y(t.texts, n));
|
||||
break
|
||||
}
|
||||
|
||||
return s
|
||||
}
|
||||
const G = `{
|
||||
background(amount: 1)
|
||||
layer2:
|
||||
layer(amount: 100, minDim: 0, maxDim: 200) { images { key, width, height} texts }
|
||||
layer3:
|
||||
layer(amount: 100, minDim: 50, maxDim: 400) { images { key, width, height} texts }
|
||||
layerVideo:
|
||||
video(amount: 1)
|
||||
layer4:
|
||||
layer(amount: 50, minDim: 200, maxDim: 900) { images { key, width, height} texts }
|
||||
layer5:
|
||||
layer(amount: 25, minDim: 500, maxDim: 9999) { images { key, width, height} texts }
|
||||
}`;
|
||||
async function V() {
|
||||
try {
|
||||
return(await fetch("https://api.yyyyyyy.info/", {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
authToken: "8c33411c58a2d7d0d598e2de2542838c"
|
||||
},
|
||||
body: JSON.stringify(
|
||||
{query: G}
|
||||
)
|
||||
})).json()
|
||||
} catch (t) {
|
||||
console.error(t)
|
||||
}
|
||||
}
|
||||
async function z() {
|
||||
const t = await V(),
|
||||
e = document.getElementById("layer-2"),
|
||||
n = document.getElementById("layer-3"),
|
||||
s = document.getElementById("layer-4"),
|
||||
o = document.getElementById("layer-5"),
|
||||
l = document.querySelector("#video-container video");
|
||||
document.body.style.setProperty("--bgimage", `url(https://files.yyyyyyy.info/${
|
||||
t.data.background
|
||||
}`),
|
||||
e.innerHTML = c(t.data.layer2, 100, 500),
|
||||
n.innerHTML = c(t.data.layer3, 100, 400),
|
||||
s.innerHTML = c(t.data.layer4, 50, 400),
|
||||
o.innerHTML = c(t.data.layer4, 25, 300),
|
||||
l.src = `https://files.yyyyyyy.info/${
|
||||
t.data.layerVideo
|
||||
}`
|
||||
}
|
||||
v();
|
||||
N();
|
||||
z();
|
5
yyyyyyy/l/data/images/data1.gif
Normal file
5
yyyyyyy/l/data/images/data1.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::r48gm-1737991626829-1265743d22ae
|
5
yyyyyyy/l/data/images/data2.gif
Normal file
5
yyyyyyy/l/data/images/data2.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::ktqrm-1737991626850-1cd2f8088e68
|
5
yyyyyyy/l/data/images/data3.gif
Normal file
5
yyyyyyy/l/data/images/data3.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::7fmr9-1737991626873-ef0193f474fe
|
5
yyyyyyy/l/data/images/data4.gif
Normal file
5
yyyyyyy/l/data/images/data4.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::vvrf2-1737991626861-80b222ca35b6
|
5
yyyyyyy/l/data/images/data5.gif
Normal file
5
yyyyyyy/l/data/images/data5.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::ls4bk-1737991626874-684cd4841c5a
|
5
yyyyyyy/l/data/images/data6.gif
Normal file
5
yyyyyyy/l/data/images/data6.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::66qpg-1737991626878-176161520775
|
5
yyyyyyy/l/data/images/data7.gif
Normal file
5
yyyyyyy/l/data/images/data7.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::vvrf2-1737991626792-966ef8d67c47
|
25
yyyyyyy/l/data/index.html
Normal file
25
yyyyyyy/l/data/index.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>▣▣▣▣▣▣▣▣▣▣</title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body {
|
||||
margin-left: 0px;
|
||||
margin-top: 0px;
|
||||
margin-right: 0px;
|
||||
margin-bottom: 0px;
|
||||
background-image: url(images/data7.gif);
|
||||
}
|
||||
-->
|
||||
</style></head>
|
||||
<body>
|
||||
<img src="images/data1.gif" alt="-=" width="1424" height="480"><br>
|
||||
<img src="images/data2.gif" alt="▣ ▣" width="1424" height="480"><br>
|
||||
<img src="images/data3.gif" alt="^^^^" width="1424" height="480"><br>
|
||||
<img src="images/data4.gif" alt="-=" width="1424" height="480"><br>
|
||||
<img src="images/data5.gif" alt="-=" width="1424" height="480"><br>
|
||||
<img src="images/data6.gif" alt="-^"><br>
|
||||
<img src="images/data7.gif" alt="~~~~``~~~~``"><br>
|
||||
|
||||
|
||||
</body></html>
|
7
yyyyyyy/l/drawing/index.html
Normal file
7
yyyyyyy/l/drawing/index.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<html><head>
|
||||
<meta charset="utf-8"></head><body>The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::gqhvg-1737993325953-87edc4c00cbf
|
||||
</body></html>
|
24
yyyyyyy/l/gv/index.html
Normal file
24
yyyyyyy/l/gv/index.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html><html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>GV</title>
|
||||
<style>
|
||||
#gv {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<video autoplay="" muted="" loop="" id="gv">
|
||||
<source src="media/gv.mp4" type="video/mp4">
|
||||
</video>
|
||||
|
||||
|
||||
</body></html>
|
5
yyyyyyy/l/gv/media/gv.mp4
Normal file
5
yyyyyyy/l/gv/media/gv.mp4
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::ghxv4-1737991585048-6c0287191961
|
5
yyyyyyy/l/iii/images/planes.gif
Normal file
5
yyyyyyy/l/iii/images/planes.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::krb99-1737991680167-875ebaeec862
|
5
yyyyyyy/l/iii/images/spce.gif
Normal file
5
yyyyyyy/l/iii/images/spce.gif
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::9xhv4-1737991680120-12194245b993
|
33
yyyyyyy/l/iii/index.html
Normal file
33
yyyyyyy/l/iii/index.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>|____| </title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body,td,th {
|
||||
color: #CCCCCC;
|
||||
}
|
||||
body {
|
||||
background-color: #000000;
|
||||
margin-left: 0px;
|
||||
margin-top: 0px;
|
||||
margin-right: 0px;
|
||||
margin-bottom: 0px;
|
||||
background-image: url('images/spce.gif');
|
||||
}
|
||||
#Layer1 {
|
||||
position:absolute;
|
||||
width:200px;
|
||||
height:115px;
|
||||
z-index:1;
|
||||
left: 68px;
|
||||
top: 174px;
|
||||
}
|
||||
-->
|
||||
</style></head>
|
||||
|
||||
<body>
|
||||
<img src="images/spce.gif" width="100%" height="100%">
|
||||
<div id="Layer1"><img src="images/planes.gif" width="269" height="306"></div>
|
||||
|
||||
|
||||
</body></html>
|
58
yyyyyyy/l/link/index.html
Normal file
58
yyyyyyy/l/link/index.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>░y.l ░░░░}._/'´%‾‾´i ░ Q </title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #000000;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
div.image {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
transition: width 0.5s ease-out, height 0.5s ease-out;
|
||||
}
|
||||
|
||||
div.image img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
left: -50%;
|
||||
}
|
||||
|
||||
div.image.grow {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
<script src="js/howler.core.min.js"></script>
|
||||
<script src="js/link.js" defer=""></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="container"></div>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
2
yyyyyyy/l/link/js/howler.core.min.js
vendored
Normal file
2
yyyyyyy/l/link/js/howler.core.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
82
yyyyyyy/l/link/js/link.js
Normal file
82
yyyyyyy/l/link/js/link.js
Normal file
|
@ -0,0 +1,82 @@
|
|||
const imageAmount = 50
|
||||
const animationSpeed = 250
|
||||
const bg = new Howl({
|
||||
src: ['websdr_recording_2015-06-23T17-09-53Z_433.5kHz.mp3'],
|
||||
autoplay: true,
|
||||
loop: true,
|
||||
volume: 0.5
|
||||
})
|
||||
const magic = new Howl({ src: ['magic-welcome-before.mp3'] })
|
||||
const open = new Howl({ src: ['swing-knock.mp3'], volume: 0.5 })
|
||||
const container = document.getElementById('container')
|
||||
|
||||
async function fetchImages (amount) {
|
||||
let response = await fetch(`/loadimage/${amount}`)
|
||||
if (response.status == 200) {
|
||||
return response.json()
|
||||
} else {
|
||||
throw new HttpError(response)
|
||||
}
|
||||
}
|
||||
|
||||
function createImage (id, data) {
|
||||
let newDiv = document.createElement('div')
|
||||
newDiv.setAttribute('id', id)
|
||||
newDiv.setAttribute('class', 'image')
|
||||
newDiv.innerHTML = `<img src="https://files.yyyyyyy.info/${data.key}">`
|
||||
container.appendChild(newDiv)
|
||||
|
||||
return newDiv
|
||||
}
|
||||
|
||||
function growImage (div) {
|
||||
try {
|
||||
div.classList.add('grow')
|
||||
return div
|
||||
} catch (error) {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
function resetImage (div) {
|
||||
try {
|
||||
div.classList.remove('grow')
|
||||
return div
|
||||
} catch (error) {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
async function cycleImages () {
|
||||
const images = await fetchImages(imageAmount)
|
||||
|
||||
magic.play()
|
||||
|
||||
images.forEach((image, index) => {
|
||||
createImage(index, image)
|
||||
})
|
||||
|
||||
const imageCount = Array.from(Array(images.length).keys())
|
||||
let shiftedImageCount = imageCount.splice(images.length - 20, images.length)
|
||||
shiftedImageCount = shiftedImageCount.concat(imageCount)
|
||||
|
||||
let i = 0
|
||||
let z = 1
|
||||
|
||||
setInterval(() => {
|
||||
i == images.length - 1 ? (i = 0) : i++
|
||||
z++
|
||||
|
||||
let currentDiv = document.getElementById(i)
|
||||
let previousDiv = document.getElementById(shiftedImageCount[i])
|
||||
|
||||
currentDiv.style.zIndex = z
|
||||
|
||||
open.play()
|
||||
growImage(currentDiv)
|
||||
resetImage(previousDiv)
|
||||
}, animationSpeed)
|
||||
}
|
||||
|
||||
bg.play()
|
||||
cycleImages()
|
5
yyyyyyy/l/p/images/normalMapRegular.jpg
Normal file
5
yyyyyyy/l/p/images/normalMapRegular.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::k2tgp-1737992443920-04260ec880fb
|
18
yyyyyyy/l/p/index.html
Normal file
18
yyyyyyy/l/p/index.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>P</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #808080;
|
||||
padding-left: 350px;
|
||||
padding-top: 150px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body><img src="images/normalMapRegular.jpg">
|
||||
</body>
|
||||
|
||||
</html>
|
19
yyyyyyy/l/s/index.html
Normal file
19
yyyyyyy/l/s/index.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html><html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>SS___</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<style>
|
||||
body {
|
||||
background-color:rgb(125, 105, 180)
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<audio controls="" autoplay="" loop="">
|
||||
<source src="media/ss.mp3" type="audio/mpeg">
|
||||
</audio>
|
||||
|
||||
|
||||
</body></html>
|
5
yyyyyyy/l/s/media/ss.mp3
Normal file
5
yyyyyyy/l/s/media/ss.mp3
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::hjtbt-1737991510696-eb44f3e71a7d
|
60
yyyyyyy/l/space/index.html
Normal file
60
yyyyyyy/l/space/index.html
Normal file
|
@ -0,0 +1,60 @@
|
|||
<!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="data:;base64,iVBORw0KGgo=">
|
||||
<title>(━┳━○░░░░░░░░|_・YY</title>
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
#vidbg {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: -10;
|
||||
}
|
||||
|
||||
.image {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
transition: opacity 1000ms ease-in-out;
|
||||
animation: floatingY 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.image img {
|
||||
animation: floatingX 5.5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.image.visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@keyframes floatingY {
|
||||
from { transform: translateY(0px) rotate(-2deg); }
|
||||
50% { transform: translateY(15px) rotate(2deg); }
|
||||
to {transform: translateY(0px) rotate(-2deg); }
|
||||
}
|
||||
|
||||
@keyframes floatingX {
|
||||
from { transform: translateX(0px) rotate(1deg); }
|
||||
50% { transform: translateX(30px) rotate(-1deg); }
|
||||
to { transform: translateX(0px) rotate(1deg); }
|
||||
}
|
||||
</style><script src="js/howler.core.min.js"></script><script src="js/index.js" defer=""></script></head>
|
||||
|
||||
|
||||
|
||||
<body>
|
||||
<video muted="" autoplay="" loop="" id="vidbg">
|
||||
<source src="media/mist.mp4" type="video/mp4">
|
||||
<source src="media/mist.ogg" type="video/ogg">
|
||||
</video>
|
||||
|
||||
|
||||
</body></html>
|
2
yyyyyyy/l/space/js/howler.core.min.js
vendored
Normal file
2
yyyyyyy/l/space/js/howler.core.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
59
yyyyyyy/l/space/js/index.js
Normal file
59
yyyyyyy/l/space/js/index.js
Normal file
|
@ -0,0 +1,59 @@
|
|||
const mist = new Howl({ src: ['mist.mp3'], autoplay: true, loop: true })
|
||||
const swish = new Howl({ src: ['sound1.mp3'] })
|
||||
|
||||
const fadeTime = 1100
|
||||
|
||||
async function getImage() {
|
||||
let response = await fetch('/getimage')
|
||||
|
||||
try {
|
||||
return response.json()
|
||||
} catch (e) {
|
||||
console.error(e)
|
||||
}
|
||||
}
|
||||
|
||||
function createImage(data) {
|
||||
const leftPos = Math.floor(Math.random() * (window.innerWidth - 200 + 1)) + 'px'
|
||||
const topPos = Math.floor(Math.random() * (window.innerHeight - 200 + 1)) + 'px'
|
||||
const newDiv = document.createElement('div')
|
||||
|
||||
newDiv.setAttribute('class', 'image')
|
||||
newDiv.style.top = topPos
|
||||
newDiv.style.left = leftPos
|
||||
newDiv.innerHTML = `<img src="https://files.yyyyyyy.info/images/${data.file}" width="${data.width}" height="${data.height}">`
|
||||
document.body.appendChild(newDiv)
|
||||
|
||||
setTimeout(() => {
|
||||
newDiv.classList.add('visible')
|
||||
swish.play()
|
||||
}, 50)
|
||||
|
||||
return newDiv
|
||||
}
|
||||
|
||||
function removeImage() {
|
||||
const oldDiv = document.getElementsByClassName('image')[0]
|
||||
|
||||
oldDiv.classList.remove('visible')
|
||||
setTimeout(() => {
|
||||
oldDiv.parentNode.removeChild(oldDiv)
|
||||
}, fadeTime)
|
||||
}
|
||||
|
||||
async function cycleImage() {
|
||||
const image = await getImage()
|
||||
|
||||
createImage(image.image[0])
|
||||
swish.play()
|
||||
}
|
||||
|
||||
mist.play()
|
||||
cycleImage()
|
||||
|
||||
setInterval(() => {
|
||||
setTimeout(() => {
|
||||
removeImage()
|
||||
}, 100)
|
||||
cycleImage()
|
||||
}, 6000)
|
5
yyyyyyy/l/space/media/mist.mp4
Normal file
5
yyyyyyy/l/space/media/mist.mp4
Normal file
|
@ -0,0 +1,5 @@
|
|||
A server error has occurred
|
||||
|
||||
FUNCTION_RESPONSE_PAYLOAD_TOO_LARGE
|
||||
|
||||
fra1::66qpg-1737991416123-f9438736e713
|
BIN
yyyyyyy/l/space/media/mist.ogg
Normal file
BIN
yyyyyyy/l/space/media/mist.ogg
Normal file
Binary file not shown.
24
yyyyyyy/l/teapot/index.html
Normal file
24
yyyyyyy/l/teapot/index.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html><html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>T_</title>
|
||||
<style>
|
||||
#vid {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<video autoplay="" muted="" loop="" id="vid">
|
||||
<source src="media/teapot.mp4" type="video/mp4">
|
||||
</video>
|
||||
|
||||
|
||||
</body></html>
|
BIN
yyyyyyy/l/teapot/media/teapot.mp4
Normal file
BIN
yyyyyyy/l/teapot/media/teapot.mp4
Normal file
Binary file not shown.
7
yyyyyyy/l/twitter/index.html
Normal file
7
yyyyyyy/l/twitter/index.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0;URL='https://twitter.com/yyyyyyyinfo/'">
|
||||
</head>
|
||||
<body style="background-color:#000000;">
|
||||
|
||||
</body></html>
|
5
yyyyyyy/l/x/challenge
Normal file
5
yyyyyyy/l/x/challenge
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::46gp6-1737993409845-19a0a3b104d9
|
5
yyyyyyy/l/x/css/yotsublue.9.css
Normal file
5
yyyyyyy/l/x/css/yotsublue.9.css
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::5mxpg-1737993409918-63da46c0384b
|
5
yyyyyyy/l/x/image
Normal file
5
yyyyyyy/l/x/image
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::br2sh-1737993409610-777cd42201b3
|
5
yyyyyyy/l/x/images/1092462372953.jpg
Normal file
5
yyyyyyy/l/x/images/1092462372953.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::8ms6n-1737993409594-a5c694885226
|
5
yyyyyyy/l/x/images/1287157741707s.jpg
Normal file
5
yyyyyyy/l/x/images/1287157741707s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::cs64k-1737993409659-c0d1dac94d18
|
5
yyyyyyy/l/x/images/1287159158141s.jpg
Normal file
5
yyyyyyy/l/x/images/1287159158141s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::725b4-1737993409660-92fe93a0b8fe
|
5
yyyyyyy/l/x/images/1287160696343s.jpg
Normal file
5
yyyyyyy/l/x/images/1287160696343s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::xwkff-1737993409681-9b8ec7c1d9d4
|
5
yyyyyyy/l/x/images/1287161097577s.jpg
Normal file
5
yyyyyyy/l/x/images/1287161097577s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::2tq5n-1737993409703-b7778ad528cc
|
5
yyyyyyy/l/x/images/1287161405946s.jpg
Normal file
5
yyyyyyy/l/x/images/1287161405946s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::4kfj2-1737993409690-3db89d6018b1
|
5
yyyyyyy/l/x/images/1287164655906s.jpg
Normal file
5
yyyyyyy/l/x/images/1287164655906s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::f2c6f-1737993409785-54575f636fd2
|
5
yyyyyyy/l/x/images/1287165021530s.jpg
Normal file
5
yyyyyyy/l/x/images/1287165021530s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::2m4nq-1737993409706-0ed965abe698
|
5
yyyyyyy/l/x/images/1287165632567s.jpg
Normal file
5
yyyyyyy/l/x/images/1287165632567s.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::z5xx2-1737993409706-5b402b118ab8
|
5
yyyyyyy/l/x/images/audio.png
Normal file
5
yyyyyyy/l/x/images/audio.png
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::5q4f9-1737993409613-9714da832521
|
BIN
yyyyyyy/l/x/images/favicon-ws.ico
Normal file
BIN
yyyyyyy/l/x/images/favicon-ws.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
5
yyyyyyy/l/x/images/help.png
Normal file
5
yyyyyyy/l/x/images/help.png
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::ml9jm-1737993409607-8cd0b0259b01
|
5
yyyyyyy/l/x/images/jpn-flag.jpg
Normal file
5
yyyyyyy/l/x/images/jpn-flag.jpg
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::csm6x-1737993409655-5562958cb950
|
5
yyyyyyy/l/x/images/logo.png
Normal file
5
yyyyyyy/l/x/images/logo.png
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::lv7sd-1737993409635-309583d57f89
|
5
yyyyyyy/l/x/images/refresh.png
Normal file
5
yyyyyyy/l/x/images/refresh.png
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::2tq5n-1737993409613-0bdd1afb38c3
|
5
yyyyyyy/l/x/images/tagline.png
Normal file
5
yyyyyyy/l/x/images/tagline.png
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::vkcfh-1737993409657-81967524a18c
|
5
yyyyyyy/l/x/images/text.png
Normal file
5
yyyyyyy/l/x/images/text.png
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::8nf9j-1737993409644-26f4b9faf2ad
|
598
yyyyyyy/l/x/index.html
Normal file
598
yyyyyyy/l/x/index.html
Normal file
File diff suppressed because one or more lines are too long
1
yyyyyyy/l/x/js/email-decode.min.js
vendored
Normal file
1
yyyyyyy/l/x/js/email-decode.min.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!function(){"use strict";function e(e){try{if("undefined"==typeof console)return;"error"in console?console.error(e):console.log(e)}catch(e){}}function t(e){return d.innerHTML='<a href="'+e.replace(/"/g,""")+'"></a>',d.childNodes[0].getAttribute("href")||""}function r(e,t){var r=e.substr(t,2);return parseInt(r,16)}function n(n,c){for(var o="",a=r(n,c),i=c+2;i<n.length;i+=2){var l=r(n,i)^a;o+=String.fromCharCode(l)}try{o=decodeURIComponent(escape(o))}catch(u){e(u)}return t(o)}function c(t){for(var r=t.querySelectorAll("a"),c=0;c<r.length;c++)try{var o=r[c],a=o.href.indexOf(l);a>-1&&(o.href="mailto:"+n(o.href,a+l.length))}catch(i){e(i)}}function o(t){for(var r=t.querySelectorAll(u),c=0;c<r.length;c++)try{var o=r[c],a=o.parentNode,i=o.getAttribute(f);if(i){var l=n(i,0),d=document.createTextNode(l);a.replaceChild(d,o)}}catch(h){e(h)}}function a(t){for(var r=t.querySelectorAll("template"),n=0;n<r.length;n++)try{i(r[n].content)}catch(c){e(c)}}function i(t){try{c(t),o(t),a(t)}catch(r){e(r)}}var l="/cdn-cgi/l/email-protection#",u=".__cf_email__",f="data-cfemail",d=document.createElement("div");i(document),function(){var e=document.currentScript||document.scripts[document.scripts.length-1];e.parentNode.removeChild(e)}()}();
|
5
yyyyyyy/l/x/js/ga.js
Normal file
5
yyyyyyy/l/x/js/ga.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::mkt6h-1737993409848-99da1de776c4
|
5
yyyyyyy/l/x/js/quant.js
Normal file
5
yyyyyyy/l/x/js/quant.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::v6hgd-1737993409842-4c1812b84395
|
5
yyyyyyy/l/x/js/recaptcha.js
Normal file
5
yyyyyyy/l/x/js/recaptcha.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::4p68s-1737993409843-0a07229a5d71
|
5
yyyyyyy/l/x/js/script.js
Normal file
5
yyyyyyy/l/x/js/script.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
The page could not be found
|
||||
|
||||
NOT_FOUND
|
||||
|
||||
fra1::2m4nq-1737993409851-751e3d48cc68
|
Loading…
Add table
Reference in a new issue