initial commit (many code)

This commit is contained in:
elijah 2024-06-09 03:44:03 +02:00
parent 58f16c642b
commit 1c4011359f
15 changed files with 650 additions and 0 deletions

BIN
assets/font.woff2 Normal file

Binary file not shown.

122
assets/retrieve.js Normal file
View File

@ -0,0 +1,122 @@
document.addEventListener('contextmenu', function(event) {
event.preventDefault();
});
async function fetchTemperature() {
const response = await fetch('https://language.apis.zhr1.infra.elia.network/v1/thoughts/temperature');
return response.text();
}
async function fetchAndDisplay() {
const responseDiv = document.querySelector('.response');
const statsDiv = document.querySelector('.stats');
let buffer = "";
let charCount = 0;
let startTime = performance.now();
let initialText = responseDiv.textContent;
const delay = 70;
const statsDelay = 40;
let lastTemperature = "...";
let lastTemperatureUpdateTime = 0;
const response = await fetch('https://language.apis.zhr1.infra.elia.network/v1/thoughts/retrieve');
const reader = response.body.getReader();
const decoder = new TextDecoder('utf-8');
while (initialText.length > 0) {
initialText = initialText.slice(0, -1);
responseDiv.textContent = initialText;
await new Promise(resolve => setTimeout(resolve, delay));
}
async function updateStatsAndTemperature() {
let currentTime = (performance.now() - startTime) / 1000;
let charsPerSecond = charCount / currentTime;
if (currentTime - lastTemperatureUpdateTime >= 1) {
try {
lastTemperature = await fetchTemperature();
lastTemperatureUpdateTime = currentTime;
} catch (error) {
lastTemperature = "None";
}
}
statsDiv.textContent = `${charsPerSecond.toFixed(1)} chars/s, ${charCount} chars, ${currentTime.toFixed(1)}s, Temp: ${lastTemperature}°C`;
}
async function appendTextSmoothly(textPart) {
buffer += textPart;
while (buffer.length > 0) {
let pos = buffer.indexOf('**');
if (pos === 0) {
let endPos = buffer.indexOf('**', 2);
if (endPos !== -1) {
responseDiv.innerHTML += '<b>' + buffer.substring(2, endPos) + '</b>';
buffer = buffer.slice(endPos + 2);
} else {
break;
}
} else {
let nextPos = pos !== -1 ? pos : buffer.length;
for (let i = 0; i < nextPos; i++) {
responseDiv.innerHTML += buffer[i];
await new Promise(resolve => setTimeout(resolve, delay));
charCount++;
updateStatsAndTemperature();
}
buffer = buffer.slice(nextPos);
}
}
}
while (true) {
const { value, done } = await reader.read();
if (done) {
if (buffer) {
responseDiv.innerHTML += buffer;
}
break;
}
const text = decoder.decode(value, { stream: true });
await appendTextSmoothly(text);
}
let statsText = statsDiv.textContent;
while (statsText.length > 0) {
statsText = statsText.slice(0, -1);
statsDiv.textContent = statsText;
await new Promise(resolve => setTimeout(resolve, statsDelay));
}
await new Promise(resolve => setTimeout(resolve, 200));
const message = '// bg video from hartnett media \\\\';
let messageIndex = 0;
while (messageIndex < message.length) {
statsDiv.textContent += message[messageIndex];
messageIndex++;
await new Promise(resolve => setTimeout(resolve, statsDelay));
}
}
document.addEventListener('DOMContentLoaded', fetchAndDisplay);
console.log(`      ___
    
    | _ _|
    / __x
  /     |
   /    
  | | |    
|  | | |  
| (_ヽ_)_) 
二つ`);
console.log("hello");

119
assets/style.css Normal file
View File

@ -0,0 +1,119 @@
@font-face {
font-family: 'workbench';
src: url('../assets/font.woff2') format('woff2');
}
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'workbench', sans-serif;
overflow: hidden;
}
#background-video {
position: fixed;
top: 50%;
left: 50%;
width: auto;
height: auto;
min-width: 100%;
min-height: 101%;
transform: translate(-50%, -50%);
z-index: -1;
object-fit: cover;
object-position: center;
}
.navbar {
background: none;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
pointer-events: none;
}
.logo {
font-size: 1.5rem;
color: #D68FD6;
text-shadow: 0 0 10px #D68FD6;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
}
.nav-links li {
margin-right: 20px;
}
.nav-links a {
font-size: 1.2rem;
color: #D68FD6;
text-decoration: none;
transition: color 0.2s ease;
text-shadow: 0 0 3px #D68FD6;
pointer-events: initial;
letter-spacing: 1px;
}
.nav-links a:hover {
color: #d6afd6;
}
.response {
text-align: center;
font-size: 2.0rem;
color: #783F8E;
text-shadow: 0 0 10px #783F8E;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
pointer-events: none;
}
.response b {
text-shadow: 1 1 30px #783F8E;
color: #7e4a92;
}
.stats {
bottom: 0.5%;
font-size: 0.8rem;
color: rgba(128, 128, 128, 0.404);
position: absolute;
left: 50%;
transform: translateX(-50%);
pointer-events: none;
white-space: nowrap;
display: block;
}
@media (max-width: 600px) {
.navbar {
flex-direction: column;
justify-content: center;
align-items: center;
}
.nav-links {
margin-top: 1rem;
display: flex;
justify-content: center;
padding: 0;
width: 100%;
}
.logo {
display: none;
}
.nav-links li {
margin: 0 10px;
text-align: center;
}
.response {
font-size: 1.5rem !important;
}
}

BIN
assets/video.mp4 Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 KiB

BIN
icons/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

9
icons/browserconfig.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="icons/mstile-150x150.png"/>
<TileColor>#d68fd6</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
icons/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
icons/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
icons/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
icons/mstile-150x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

322
icons/safari-pinned-tab.svg Normal file
View File

@ -0,0 +1,322 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="2000.000000pt" height="2000.000000pt" viewBox="0 0 2000.000000 2000.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,2000.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M10388 18045 c-3 -3 -21 -8 -39 -10 -19 -2 -59 -11 -89 -20 -30 -9
-64 -17 -75 -19 -11 -2 -31 -7 -45 -13 -14 -6 -52 -18 -85 -28 -33 -9 -80 -25
-105 -35 -25 -10 -65 -21 -90 -25 -73 -12 -89 -15 -156 -31 -44 -10 -89 -13
-142 -9 -86 7 -256 13 -379 14 -70 1 -82 4 -87 19 -9 28 -80 56 -136 54 -8 0
-24 -1 -35 -1 -11 0 -60 1 -110 3 -55 2 -113 -2 -148 -10 -32 -8 -72 -14 -87
-14 -16 0 -40 -5 -54 -11 -20 -10 -34 -8 -71 5 -25 10 -69 21 -98 26 -28 4
-65 12 -82 16 -44 11 -145 8 -158 -5 -6 -6 -20 -11 -31 -11 -27 0 -88 -22
-104 -38 -8 -7 -17 -10 -22 -7 -4 3 -13 -2 -20 -10 -7 -8 -23 -15 -37 -15 -14
0 -21 -4 -18 -10 3 -5 1 -11 -4 -11 -6 -1 -15 -2 -21 -3 -22 -3 -70 -52 -75
-78 -7 -32 -16 -39 -53 -43 -14 -1 -36 -14 -48 -28 -12 -14 -41 -31 -65 -37
-24 -6 -62 -24 -85 -40 -22 -16 -63 -34 -90 -41 -27 -6 -82 -27 -123 -45 -50
-23 -87 -34 -115 -32 -23 0 -55 -6 -71 -14 -36 -18 -123 -29 -127 -16 -2 5
-12 8 -23 8 -67 -3 -85 -6 -85 -15 0 -6 -11 -12 -25 -13 -14 -1 -25 2 -25 7 0
8 -70 -5 -165 -32 -23 -7 -55 -28 -76 -49 -20 -21 -43 -38 -51 -38 -22 0 -79
-26 -104 -48 -30 -25 -54 -75 -54 -112 0 -23 -4 -30 -20 -30 -27 0 -90 -65
-90 -94 0 -14 -6 -26 -12 -28 -8 -3 -13 -24 -13 -54 -1 -54 -11 -84 -29 -84
-18 0 -33 -33 -26 -60 4 -14 3 -32 0 -40 -4 -8 -14 -36 -23 -61 -14 -43 -14
-49 1 -70 9 -13 21 -27 26 -31 7 -4 0 -18 -17 -36 -18 -19 -27 -38 -26 -58 0
-16 -4 -44 -10 -63 -9 -30 -8 -36 18 -62 33 -33 32 -72 -3 -102 -15 -14 -18
-20 -8 -24 19 -7 82 -72 82 -83 0 -6 6 -10 13 -10 6 0 -10 -13 -38 -28 -61
-33 -70 -61 -25 -81 l31 -13 -23 -25 c-18 -20 -23 -35 -22 -80 0 -30 4 -57 10
-61 5 -4 15 -15 23 -24 11 -15 11 -21 0 -35 -9 -11 -10 -14 -2 -9 9 5 11 2 7
-8 -3 -9 -10 -13 -15 -10 -5 3 -9 -2 -9 -10 0 -9 -4 -16 -10 -16 -5 0 -10 -7
-10 -15 0 -8 -5 -15 -11 -15 -8 0 -7 -6 2 -17 13 -15 12 -15 -11 -3 -22 12
-23 11 -13 -1 10 -12 7 -15 -16 -14 -18 0 -38 12 -58 35 -26 28 -34 33 -44 23
-19 -19 -47 -16 -52 5 -4 14 -5 14 -6 -3 -1 -17 -3 -18 -11 -5 -8 13 -11 13
-19 1 -7 -11 -15 -8 -37 15 -25 24 -26 29 -11 32 21 4 23 38 3 45 -8 3 -25 -5
-38 -18 -27 -29 -70 -34 -67 -7 4 44 -2 61 -29 74 -31 16 -52 13 -52 -7 0 -16
-33 -30 -38 -16 -2 6 -8 9 -13 5 -5 -3 -9 2 -9 10 0 8 -8 21 -19 28 -10 7 -19
18 -20 23 0 6 -6 10 -12 10 -6 0 -17 8 -24 18 -11 16 -18 17 -60 6 -39 -10
-49 -9 -56 2 -5 8 -9 10 -9 4 0 -5 -8 0 -18 11 -24 30 -56 38 -75 19 -20 -20
-30 -19 -79 6 l-42 21 -17 -20 c-16 -21 -59 -21 -59 0 0 6 -23 7 -57 2 -85
-10 -94 -12 -112 -27 -24 -21 -79 -47 -147 -68 -75 -23 -150 -91 -185 -167
-13 -28 -31 -53 -41 -55 -9 -3 -24 -20 -32 -38 -9 -19 -27 -53 -41 -75 -13
-23 -26 -54 -29 -69 -3 -16 -10 -33 -16 -39 -5 -5 -10 -21 -10 -34 0 -13 -4
-31 -10 -41 -5 -10 -11 -33 -14 -52 -9 -73 -18 -98 -35 -97 -9 0 -28 -3 -44
-7 -17 -5 -27 -3 -27 4 0 11 -27 10 -47 -2 -6 -4 -15 -20 -21 -35 -9 -26 -8
-28 12 -27 11 1 24 -3 28 -9 14 -21 8 -25 -19 -15 -16 6 -43 13 -62 16 -41 5
-77 22 -48 23 10 0 17 6 14 13 -4 13 -89 18 -108 6 -6 -4 -11 -28 -11 -53 1
-25 -3 -46 -7 -46 -5 0 -11 -6 -14 -14 -4 -10 0 -12 13 -9 16 4 19 0 17 -31
-1 -20 -5 -36 -9 -36 -5 0 -8 5 -8 11 0 5 -3 8 -7 6 -5 -3 -14 1 -21 9 -7 8
-9 14 -5 15 4 0 -2 4 -15 10 -13 5 -20 13 -17 19 3 5 1 10 -4 10 -6 0 -11 7
-11 15 0 22 -53 19 -73 -3 -19 -21 -21 -49 -7 -88 6 -15 8 -35 5 -45 -5 -16
-10 -17 -43 -5 -20 7 -43 11 -49 9 -24 -9 -46 -71 -41 -118 5 -36 2 -47 -14
-57 -14 -10 -19 -26 -20 -61 0 -26 2 -51 6 -54 3 -3 1 -11 -4 -18 -6 -8 -3
-28 9 -62 18 -49 18 -106 -1 -130 -6 -7 -4 -13 4 -16 7 -2 -20 -5 -59 -6 -104
-2 -155 -26 -195 -93 -11 -16 -22 -28 -25 -24 -3 3 -15 1 -26 -5 -12 -7 -17
-7 -13 -1 3 5 -1 13 -10 16 -8 3 -12 2 -9 -4 3 -6 2 -10 -4 -10 -5 0 -9 9 -8
20 1 11 7 18 13 16 18 -7 25 5 11 19 -28 27 -57 27 -128 -1 -38 -15 -73 -32
-76 -37 -3 -6 -1 -7 5 -3 8 5 12 0 12 -13 0 -12 5 -21 10 -21 18 0 11 -29 -9
-40 -28 -15 -29 -14 -36 34 l-7 44 -30 -15 c-30 -16 -32 -18 -43 -67 -5 -26
-9 -28 -39 -22 -41 8 -84 -13 -115 -55 -24 -32 -23 -49 5 -116 3 -7 -4 -10
-21 -8 -40 4 -106 -19 -127 -44 -25 -32 -23 -65 9 -122 14 -27 23 -52 20 -56
-4 -3 -21 -8 -39 -10 -18 -2 -43 -13 -56 -26 -21 -20 -23 -28 -19 -77 5 -45
11 -59 35 -79 l30 -25 -39 -28 c-40 -29 -49 -54 -27 -76 7 -7 11 -31 9 -55 -2
-46 27 -97 56 -97 14 0 13 -3 -1 -25 -9 -13 -16 -32 -16 -42 1 -31 38 -103 55
-103 9 0 15 -10 16 -25 2 -44 5 -50 17 -48 6 2 9 -3 6 -11 -3 -8 7 -18 26 -26
29 -12 30 -14 14 -32 -14 -14 -15 -21 -6 -30 9 -9 12 -9 12 1 0 7 4 10 9 6 6
-3 14 3 20 12 6 10 11 13 11 6 0 -6 -4 -14 -9 -17 -13 -8 -5 -86 11 -102 7 -8
26 -15 41 -16 20 -2 29 -10 37 -34 12 -34 57 -56 70 -33 4 6 7 -6 5 -27 -3
-53 29 -113 66 -127 16 -6 29 -17 29 -25 0 -23 29 -71 51 -82 15 -9 24 -8 35
1 10 8 14 8 14 0 0 -18 46 -13 84 10 20 12 36 18 36 14 0 -4 6 -2 14 4 9 8 16
8 20 2 4 -6 13 -8 21 -4 8 3 15 0 15 -6 0 -6 6 -8 14 -5 7 3 16 -2 19 -10 4
-9 11 -16 17 -16 6 0 22 -12 36 -27 14 -16 23 -21 19 -13 -4 8 1 6 9 -4 9 -11
16 -23 16 -28 0 -4 7 -8 16 -8 8 0 12 -4 9 -10 -3 -5 -1 -10 5 -10 6 0 9 -4 6
-9 -3 -5 1 -11 9 -15 8 -3 15 -14 15 -25 0 -11 9 -25 20 -31 27 -15 21 -36
-28 -101 -51 -68 -103 -179 -96 -206 3 -12 1 -24 -5 -27 -6 -4 -11 -28 -11
-54 0 -63 -9 -74 -53 -69 -20 2 -39 6 -43 9 -14 15 -60 -10 -74 -40 -11 -23
-22 -32 -39 -32 -31 0 -93 -41 -87 -57 3 -7 -1 -10 -10 -6 -7 3 -14 9 -14 15
0 5 -4 6 -10 3 -5 -3 -10 3 -10 14 0 36 -31 33 -36 -4 0 -5 -2 -15 -2 -22 -2
-9 -10 -9 -32 -2 -31 11 -40 34 -17 42 6 2 10 7 7 10 -9 10 -55 -19 -52 -32 1
-7 -2 -10 -8 -6 -6 4 -18 1 -27 -7 -12 -9 -15 -9 -9 0 4 7 2 12 -6 12 -8 0
-15 13 -16 30 -1 17 2 30 8 30 5 0 10 6 10 14 0 8 4 17 9 20 4 3 8 -11 7 -32
-1 -28 3 -37 18 -40 13 -3 17 0 13 11 -3 8 0 20 6 26 8 8 8 11 -2 11 -7 0 -9
5 -5 11 4 7 9 29 10 50 l4 37 -36 -4 c-20 -2 -52 -18 -72 -34 -24 -20 -48 -30
-69 -30 -17 0 -35 -4 -38 -10 -3 -5 -1 -10 5 -10 8 0 8 -6 0 -20 -6 -11 -15
-18 -20 -15 -5 3 -11 1 -15 -5 -4 -6 -10 -8 -15 -5 -5 3 -11 1 -15 -5 -3 -5
-12 -10 -18 -10 -7 0 0 11 16 24 29 25 37 52 12 42 -8 -3 -15 -1 -15 4 0 18
-49 11 -70 -10 -11 -11 -22 -15 -25 -10 -10 16 -51 11 -69 -9 -22 -24 -4 -39
42 -36 17 2 32 -1 32 -5 0 -15 -18 -21 -23 -8 -3 8 -6 5 -6 -6 -1 -12 -6 -16
-17 -12 -8 3 -12 2 -9 -4 3 -6 0 -10 -8 -10 -11 0 -13 7 -9 22 4 16 2 19 -8
13 -8 -5 -11 -4 -7 2 4 6 -5 19 -19 28 -21 13 -28 14 -34 4 -5 -6 -6 -18 -3
-24 3 -9 -4 -11 -21 -8 -21 4 -26 1 -26 -16 0 -24 -15 -28 -24 -6 -3 8 -10 15
-16 15 -13 0 -13 -35 -1 -59 13 -24 2 -37 -41 -49 -33 -9 -36 -8 -35 9 1 10 5
19 9 19 4 0 7 11 6 25 -1 14 -4 25 -6 25 -15 0 -62 -45 -62 -59 0 -10 -7 -24
-15 -31 -11 -9 -15 -10 -15 -1 0 17 -41 3 -63 -22 -9 -11 -17 -24 -17 -28 0
-4 -9 -11 -20 -14 -28 -9 -25 -44 5 -85 30 -40 30 -41 8 -33 -10 4 -14 2 -10
-4 3 -5 0 -10 -7 -10 -8 0 -12 7 -8 15 4 12 0 14 -19 8 -13 -4 -30 -8 -38 -8
-7 -1 -21 -15 -31 -31 -22 -35 -12 -69 26 -86 39 -17 31 -48 -17 -62 -46 -14
-63 -38 -54 -77 5 -24 44 -65 64 -68 47 -7 53 -43 11 -67 -17 -11 -30 -27 -30
-38 0 -23 49 -104 57 -95 7 7 53 -58 53 -74 0 -23 33 -60 49 -55 9 2 23 0 31
-5 10 -6 11 -10 3 -10 -7 0 -13 -7 -13 -15 0 -11 7 -14 24 -9 13 3 27 1 30 -5
4 -6 -1 -11 -11 -11 -17 -1 -17 -2 1 -15 11 -8 16 -15 11 -15 -4 0 0 -9 10
-20 10 -11 24 -20 32 -20 8 0 21 -7 29 -15 17 -17 54 -20 54 -5 0 21 59 -44
65 -71 7 -30 42 -63 78 -75 12 -4 47 -24 78 -44 40 -28 59 -36 71 -29 12 7 21
3 32 -13 9 -13 33 -27 54 -33 20 -6 38 -17 38 -25 1 -8 2 -19 3 -24 0 -5 7 -4
14 1 23 19 45 11 51 -18 3 -17 16 -34 33 -43 15 -8 37 -28 48 -45 12 -19 46
-44 85 -64 36 -17 67 -34 70 -37 3 -3 22 -16 42 -30 50 -34 56 -76 27 -220
-11 -60 -17 -69 -73 -122 -33 -32 -65 -58 -72 -58 -6 0 -17 -13 -24 -29 -6
-16 -17 -28 -24 -25 -6 2 -16 -6 -21 -18 -15 -34 -71 -59 -103 -47 -15 6 -30
16 -34 22 -6 9 -8 8 -8 -2 0 -10 -6 -10 -26 4 -18 11 -24 13 -19 4 5 -9 1 -8
-11 2 -24 21 -57 21 -49 1 4 -12 3 -13 -10 -2 -8 7 -12 16 -9 21 3 5 1 9 -5 9
-5 0 -17 7 -25 16 -15 14 -16 14 -17 -3 0 -10 -3 -13 -6 -5 -2 6 -9 12 -15 12
-5 0 -17 7 -25 16 -28 28 -98 -2 -122 -52 -7 -16 -17 -36 -21 -44 -4 -8 -32
-27 -63 -42 -58 -28 -75 -55 -64 -97 3 -11 0 -18 -7 -16 -38 10 -56 18 -56 27
0 5 -4 7 -9 3 -5 -3 -12 -1 -16 4 -8 15 -55 -9 -57 -28 0 -9 -2 -20 -3 -26 -2
-5 -3 -14 -4 -19 0 -6 -8 -1 -16 10 -11 14 -14 15 -15 4 0 -8 -13 -21 -28 -28
-16 -7 -35 -23 -42 -37 -7 -14 -19 -25 -26 -25 -20 0 -64 -60 -65 -88 -1 -45
-14 -65 -49 -77 -19 -6 -38 -20 -44 -31 -6 -10 -19 -31 -28 -46 -24 -35 -23
-84 2 -115 l20 -26 -47 -31 c-92 -61 -107 -149 -33 -195 29 -18 39 -31 38 -47
-1 -12 -5 -21 -9 -18 -9 5 -60 -21 -69 -37 -4 -6 -5 -30 -3 -53 4 -31 14 -49
42 -73 32 -28 35 -34 23 -52 -21 -35 15 -129 71 -184 15 -15 33 -40 38 -56 6
-16 19 -31 30 -34 10 -3 19 -12 19 -20 0 -10 7 -15 18 -12 12 2 22 -7 31 -26
11 -24 19 -29 48 -29 33 0 35 -2 29 -25 -5 -19 -2 -27 11 -32 10 -4 24 -15 31
-25 14 -20 43 -23 71 -8 14 7 21 4 31 -15 7 -14 19 -25 25 -25 7 0 17 -11 23
-25 14 -30 48 -45 101 -45 47 0 71 -22 54 -50 -7 -10 -9 -27 -6 -39 4 -17 0
-24 -15 -28 -11 -3 -21 -12 -21 -21 -3 -47 -6 -60 -16 -59 -5 1 -10 -5 -10
-14 0 -9 -5 -23 -12 -30 -6 -8 -9 -32 -7 -54 2 -22 -1 -52 -7 -68 -9 -20 -8
-31 0 -41 6 -7 8 -26 5 -43 -5 -24 -2 -31 18 -40 15 -7 30 -7 40 -2 28 16 30
-7 4 -46 -22 -31 -23 -40 -14 -63 18 -42 35 -52 71 -41 18 5 37 9 43 9 19 0
24 -27 13 -60 -25 -70 23 -115 109 -105 26 4 62 10 80 15 19 5 32 5 32 -1 0
-5 -4 -9 -8 -9 -10 0 -14 -38 -7 -67 3 -14 19 -26 51 -37 26 -9 50 -13 55 -10
4 2 15 -9 24 -26 15 -30 15 -31 -20 -66 -35 -35 -36 -37 -20 -60 15 -23 15
-26 -5 -51 -24 -31 -25 -41 -5 -63 14 -16 13 -19 -10 -34 -25 -17 -26 -19 -11
-41 19 -30 20 -45 3 -78 -18 -35 -12 -96 14 -131 18 -24 20 -34 12 -61 -6 -19
-7 -39 -1 -48 4 -9 21 -52 37 -96 30 -85 89 -166 126 -175 13 -3 25 -16 29
-30 3 -13 22 -40 42 -60 37 -37 148 -96 180 -96 22 0 163 -47 178 -59 16 -12
56 -20 56 -11 0 4 19 2 43 -4 23 -7 65 -11 92 -9 113 9 131 9 158 2 15 -4 27
-4 27 0 0 9 18 12 85 15 28 1 56 6 63 10 7 4 12 2 12 -4 0 -6 9 -5 23 4 12 9
37 16 55 18 19 1 36 6 38 10 3 5 10 6 15 2 5 -3 15 -1 22 4 7 5 19 8 27 7 82
-15 99 -15 113 0 9 8 25 15 37 15 20 0 21 -4 15 -40 -4 -22 -8 -47 -9 -55 -1
-8 -6 -18 -11 -22 -4 -4 -5 -1 -1 7 4 8 1 6 -8 -4 -8 -10 -13 -23 -10 -27 3
-5 0 -9 -5 -9 -6 0 -11 -6 -11 -12 0 -7 -16 -26 -35 -43 -30 -26 -34 -37 -36
-81 -2 -27 1 -57 6 -65 8 -12 6 -12 -8 0 -9 7 -14 17 -11 22 7 13 -19 7 -28
-6 -4 -5 0 -20 8 -33 15 -23 14 -26 -18 -57 -25 -23 -35 -41 -36 -64 0 -22 -9
-39 -26 -52 -15 -11 -23 -25 -20 -30 3 -6 1 -22 -4 -37 -6 -15 -13 -56 -16
-91 -4 -51 -11 -70 -31 -91 -38 -40 -51 -179 -21 -225 16 -25 16 -28 -3 -68
-42 -90 -32 -178 27 -227 32 -27 35 -32 24 -50 -6 -11 -12 -26 -12 -34 0 -28
40 -106 54 -106 8 0 17 -9 21 -20 3 -11 17 -28 31 -39 13 -10 24 -28 24 -38 0
-12 13 -27 34 -38 19 -11 37 -27 39 -36 3 -10 18 -21 33 -25 16 -4 42 -20 58
-36 16 -16 32 -25 35 -20 9 14 51 -5 51 -23 0 -12 6 -15 19 -10 14 4 21 0 26
-14 6 -19 32 -34 51 -30 28 5 71 -16 87 -43 15 -26 22 -30 46 -25 26 5 35 0
76 -49 46 -54 93 -85 147 -98 21 -5 30 -15 38 -45 10 -39 35 -74 103 -146 21
-22 46 -49 56 -60 10 -11 19 -31 19 -45 0 -36 40 -99 67 -106 15 -4 22 -11 18
-20 -5 -14 19 -44 36 -44 10 0 36 -40 33 -50 -1 -3 6 -5 16 -5 10 0 18 -9 20
-22 2 -13 8 -23 14 -23 5 0 21 -9 35 -20 14 -11 29 -17 34 -14 5 3 9 -2 9 -10
0 -15 4 -17 37 -20 7 -1 22 -9 34 -19 11 -10 27 -16 35 -13 9 3 12 1 9 -4 -3
-6 -2 -10 4 -10 5 0 13 5 16 11 5 7 15 5 31 -5 27 -18 51 -21 56 -6 2 6 15 4
32 -5 15 -8 34 -15 41 -15 7 0 15 -7 19 -15 3 -8 21 -22 40 -31 19 -9 39 -27
45 -40 7 -15 19 -24 33 -24 13 0 29 -9 36 -20 7 -11 19 -20 27 -20 8 0 15 -5
15 -11 0 -5 4 -8 9 -5 5 4 11 0 14 -6 3 -10 9 -10 25 -1 17 10 24 10 37 -3 8
-8 15 -20 15 -25 0 -6 5 -7 10 -4 6 4 17 2 24 -4 7 -6 22 -9 33 -7 15 3 23 -2
27 -17 5 -20 6 -20 25 -3 20 18 21 18 38 -3 20 -24 136 -54 163 -42 32 14 118
2 195 -27 102 -39 195 -67 267 -82 40 -8 66 -20 92 -44 19 -19 67 -47 106 -63
52 -22 77 -39 91 -62 10 -17 26 -34 34 -36 8 -3 23 -8 33 -12 9 -3 21 -5 25
-4 5 1 6 -3 3 -8 -8 -12 13 -28 48 -37 19 -4 33 -17 42 -40 9 -22 21 -34 33
-34 10 0 21 -6 24 -14 3 -8 18 -16 33 -18 15 -2 32 -12 38 -23 15 -28 28 -35
42 -24 8 6 17 1 28 -16 13 -19 22 -24 40 -19 18 4 25 1 29 -15 5 -21 27 -30
27 -11 0 17 18 11 39 -11 12 -14 26 -19 37 -15 9 3 23 1 31 -6 11 -9 16 -9 24
3 5 8 9 10 9 4 0 -5 5 -3 10 5 5 8 10 10 10 4 0 -15 49 -33 75 -30 11 2 32 8
47 14 19 8 36 8 58 1 26 -9 38 -7 79 15 37 19 56 23 78 18 40 -11 48 -10 77
15 22 19 37 23 100 22 50 -1 82 4 96 14 18 12 30 12 103 -3 45 -10 100 -20
122 -24 22 -3 51 -8 65 -10 14 -2 48 -7 75 -11 28 -4 56 -12 63 -18 8 -6 28
-11 46 -12 21 0 42 -10 60 -28 15 -15 32 -27 39 -27 7 0 24 -6 38 -14 14 -7
41 -12 60 -12 19 1 39 -5 45 -12 8 -11 15 -12 32 -3 29 16 39 14 63 -10 12
-12 24 -17 28 -12 5 7 26 10 34 3 1 -1 11 -3 22 -5 11 -1 27 -5 36 -9 10 -5
19 0 25 14 l9 21 24 -20 c20 -17 33 -20 77 -16 30 3 64 9 77 14 12 4 28 6 34
4 7 -3 25 4 40 15 21 14 35 17 56 11 16 -4 40 -4 54 2 45 17 137 10 208 -16
38 -13 71 -28 74 -32 12 -16 71 -53 84 -53 7 0 32 -14 56 -32 32 -23 53 -31
80 -30 26 1 45 -5 60 -19 17 -16 30 -20 54 -15 22 4 40 1 56 -10 18 -13 25
-14 31 -4 4 6 9 11 11 9 2 -1 14 1 26 5 12 4 32 2 45 -5 16 -9 23 -9 26 0 2 6
7 9 12 6 4 -3 13 2 20 10 9 11 17 12 31 4 14 -7 21 -6 25 4 3 9 14 12 30 9 13
-2 24 0 24 7 0 5 7 8 15 5 8 -4 17 1 21 10 4 10 18 16 37 16 18 0 52 15 85 37
30 20 67 37 81 38 45 3 47 4 60 29 11 20 23 24 77 29 63 6 96 18 122 44 7 7
19 13 25 14 7 0 20 2 29 4 9 2 43 6 75 9 32 3 83 10 113 16 30 5 64 11 75 13
11 1 25 5 30 9 13 8 92 4 101 -5 4 -4 13 -2 21 4 7 6 13 9 13 5 0 -4 19 3 42
15 36 18 43 19 52 7 22 -30 76 -50 116 -43 23 4 41 2 45 -4 8 -14 35 10 27 24
-3 6 2 4 11 -4 9 -7 23 -11 31 -8 7 3 19 0 25 -6 8 -8 14 -9 19 -1 11 16 41
24 48 13 6 -10 78 -3 99 9 6 4 20 5 32 3 13 -1 29 4 37 12 8 8 33 17 56 21 30
5 43 12 47 26 3 11 13 20 22 20 9 0 33 11 53 25 20 14 41 25 46 25 5 0 22 17
38 38 15 20 32 40 36 43 5 3 10 16 13 28 2 13 24 42 48 64 43 41 95 132 83
144 -3 4 0 13 8 22 12 13 23 79 25 153 1 10 13 19 32 23 17 4 28 9 26 12 -8 7
31 43 46 43 7 0 23 9 35 21 16 14 29 18 44 13 15 -4 26 0 37 14 12 16 30 22
70 25 30 3 57 10 62 18 4 7 27 14 50 15 22 1 45 7 49 14 5 8 18 15 30 17 29 4
60 22 60 33 0 6 6 10 13 10 6 0 25 13 40 30 15 16 34 27 41 24 7 -3 30 11 52
31 34 32 39 42 40 83 1 46 2 47 37 53 44 7 60 20 81 63 20 42 20 81 2 134
l-15 42 40 12 c42 12 54 26 64 71 3 15 7 39 10 53 3 14 2 31 -3 38 -5 6 -9 24
-10 41 -1 16 -7 34 -12 39 -17 17 -11 35 21 63 28 25 30 32 25 73 -4 25 -6 59
-5 75 4 92 0 127 -17 146 -15 17 -16 25 -7 52 11 29 17 75 14 104 -1 6 -19 30
-41 52 -22 22 -40 43 -40 47 0 3 10 20 22 37 13 18 22 37 20 44 -5 23 38 98
86 150 l48 51 47 -9 c26 -4 60 -15 77 -24 16 -9 30 -13 30 -10 0 4 7 -1 16 -9
8 -9 22 -16 30 -16 8 0 14 -4 14 -9 0 -11 60 -33 60 -23 0 4 5 0 10 -8 7 -12
27 -14 88 -12 75 2 86 -1 182 -43 98 -42 169 -93 170 -122 0 -7 12 -19 27 -27
23 -12 33 -12 65 0 l38 13 0 -34 c0 -41 19 -46 44 -12 9 12 15 17 12 11 -3 -6
6 -16 20 -22 13 -7 28 -22 33 -36 8 -18 15 -22 34 -19 14 3 36 -3 50 -12 16
-10 34 -14 48 -10 21 7 59 -7 91 -33 32 -27 219 -38 255 -16 19 12 30 12 80
-1 78 -21 138 -11 175 27 15 16 28 34 28 41 0 8 16 13 43 13 52 1 91 10 95 24
2 6 11 18 20 27 9 8 18 25 19 37 4 24 29 46 53 46 14 0 49 59 54 92 1 3 4 10
9 14 4 4 7 16 7 27 0 10 9 30 19 43 14 17 18 36 16 66 -2 24 0 47 5 54 5 6 8
21 5 34 -2 12 -1 28 3 34 11 18 11 36 0 36 -6 0 -3 10 5 23 14 21 13 25 -1 36
-10 6 -11 9 -4 6 25 -13 11 11 -18 28 -36 22 -38 49 -6 84 31 33 28 81 -8 124
-14 17 -24 34 -22 38 13 20 17 103 6 116 -16 19 12 81 40 90 11 4 17 11 14 17
-5 7 -2 8 6 3 7 -4 16 -2 20 5 10 16 2 64 -11 68 -16 6 38 42 64 42 25 0 62
32 50 43 -3 4 0 7 7 7 7 0 10 3 7 6 -3 4 2 18 13 31 16 21 17 29 8 47 -15 28
-49 57 -59 50 -5 -3 -9 -2 -9 1 0 10 52 55 63 55 21 0 99 45 109 63 8 16 17
18 63 12 43 -5 54 -3 59 10 3 9 4 21 1 25 -12 19 15 19 33 0 l19 -21 17 26
c13 20 22 24 42 19 17 -4 29 -2 34 6 5 8 16 15 26 16 10 2 21 10 26 19 5 8 14
13 19 9 8 -5 33 11 94 64 37 31 64 73 60 92 -3 14 6 24 34 36 61 27 88 104 51
149 -14 17 -2 45 19 45 27 0 71 48 71 78 0 28 -44 102 -60 102 -21 0 -8 41 18
57 44 29 50 42 39 87 -5 23 -17 50 -27 61 -9 11 -24 33 -34 48 -17 27 -17 30
-1 47 20 22 14 63 -12 93 -9 9 -13 17 -9 17 11 0 -31 74 -54 93 -11 10 -18 22
-15 27 15 24 -38 72 -81 75 -25 1 -62 28 -79 58 -14 23 -18 48 -17 89 2 39 -2
61 -12 71 -8 8 -13 17 -10 20 5 4 -47 38 -66 42 -3 1 -13 5 -22 9 -9 4 -22 5
-28 1 -5 -3 -10 -1 -10 4 0 6 -21 10 -50 10 -27 -1 -50 -5 -50 -10 0 -4 -11
-6 -24 -3 -14 2 -27 0 -31 -5 -3 -6 -11 -8 -18 -5 -7 2 -23 -5 -35 -16 -14
-13 -22 -16 -22 -8 0 9 -3 9 -10 -2 -8 -13 -10 -13 -10 -1 0 11 -3 12 -12 3
-8 -8 -18 -5 -39 12 -18 15 -37 22 -56 20 -15 -1 -31 2 -34 8 -9 15 -2 113 10
136 5 10 12 37 16 61 8 56 46 141 90 202 19 27 35 54 35 59 0 6 6 10 13 10 7
0 18 9 25 20 7 11 20 20 29 20 9 0 14 3 11 6 -3 3 4 15 16 28 18 19 30 22 81
20 33 -1 75 -5 92 -8 18 -2 36 0 39 6 4 6 9 6 15 -3 6 -10 15 -10 45 -1 44 13
53 9 33 -14 -10 -13 -11 -18 -2 -21 7 -2 10 -10 7 -17 -3 -7 1 -26 7 -42 7
-16 13 -35 15 -41 1 -7 9 -20 18 -29 9 -8 16 -19 16 -22 0 -13 64 -42 95 -44
17 -1 46 6 65 15 19 9 75 28 124 41 90 25 116 41 143 87 17 28 43 29 43 1 0
-8 3 -13 6 -10 3 3 16 -5 29 -18 13 -13 36 -24 50 -24 27 0 65 16 75 31 4 5
26 11 50 14 25 3 47 10 48 15 2 6 10 10 18 10 8 0 14 4 14 9 0 4 20 14 45 21
52 14 58 22 57 61 0 19 7 33 25 44 14 10 22 12 18 6 -7 -12 24 -8 73 10 24 9
72 56 72 71 0 5 -9 22 -21 37 -33 45 -15 79 39 72 30 -4 83 22 96 47 15 31 11
50 -18 74 -12 10 -26 22 -33 27 -6 6 -10 18 -8 28 2 10 4 21 4 24 1 5 48 18
66 19 30 0 41 74 14 91 -8 5 -10 9 -5 9 9 0 -16 23 -52 49 -20 14 -19 14 9 38
31 26 39 67 15 76 -8 3 -17 1 -19 -6 -3 -7 -4 2 -3 18 3 39 -26 95 -49 95 -17
0 -32 27 -23 43 5 10 5 23 -1 34 -10 20 -65 55 -73 48 -2 -3 -15 17 -27 45
-23 51 -42 64 -97 63 -25 0 -30 4 -29 20 2 25 -23 77 -44 95 -9 6 -38 12 -66
11 -68 -2 -77 -1 -70 11 3 6 0 10 -8 10 -8 0 -18 7 -21 15 -7 19 -57 41 -111
49 -22 3 -40 5 -40 6 0 0 -2 12 -3 27 -1 15 -7 30 -13 34 -6 3 -10 10 -8 14 6
19 -42 60 -81 70 -3 0 -14 6 -26 12 -49 28 -127 20 -166 -17 -17 -16 -36 -30
-41 -30 -6 0 -7 -3 -4 -7 4 -3 2 -12 -4 -20 -6 -7 -8 -13 -4 -13 5 0 -3 -9
-16 -21 -24 -21 -64 -22 -136 -5 -14 3 -23 0 -23 -7 0 -9 -2 -9 -8 0 -4 7 -24
14 -45 16 -20 2 -43 10 -52 17 -8 7 -15 9 -15 5 0 -4 -6 -2 -13 4 -8 6 -17 8
-20 4 -4 -3 -7 -1 -7 6 0 7 -4 10 -9 6 -5 -3 -13 0 -17 6 -5 8 -3 9 6 4 10 -6
12 -3 7 11 -7 18 -6 18 6 2 8 -10 17 -15 20 -11 4 3 7 0 7 -7 0 -10 3 -11 11
-3 11 11 -12 61 -46 100 -29 34 -34 42 -36 54 -2 8 1 29 5 47 4 18 9 57 11 85
1 29 13 75 26 102 12 28 23 53 23 56 1 6 38 55 74 97 13 15 30 44 38 64 9 20
23 38 32 40 19 4 82 -52 82 -71 0 -7 5 -9 10 -6 6 3 10 2 10 -4 0 -10 47 -27
95 -34 33 -5 105 19 105 34 0 5 12 14 26 19 19 8 29 6 40 -5 9 -8 22 -15 30
-16 33 -3 50 -2 67 5 9 3 24 8 32 11 20 6 45 65 45 105 0 27 2 30 19 20 30
-15 84 -12 111 7 14 10 27 15 29 13 4 -5 13 10 30 53 8 21 16 26 34 23 23 -4
67 24 67 42 0 6 9 14 20 17 11 3 20 13 20 21 0 8 4 13 9 10 12 -8 61 51 61 74
0 17 45 63 70 72 5 1 11 16 12 32 2 17 12 35 25 43 27 18 29 37 9 76 -14 26
-14 28 24 58 56 45 59 101 8 137 -27 20 -22 46 17 85 28 28 35 42 31 62 -7 37
-31 72 -56 80 -11 3 -21 11 -21 16 -1 5 -2 15 -3 22 -1 6 4 21 11 32 23 37 -1
97 -67 165 -22 23 -40 47 -40 54 0 14 -36 48 -69 66 -12 6 -19 15 -16 21 4 5
1 9 -5 9 -6 0 -29 18 -53 39 -23 22 -65 61 -93 88 -34 31 -54 60 -59 81 -5 27
-20 42 -75 79 -67 44 -86 75 -52 88 8 3 10 0 6 -8 -4 -6 5 -1 19 12 15 14 25
27 22 29 -3 3 0 10 5 17 15 18 -46 125 -63 109 -2 -3 -24 13 -48 36 -24 22
-37 40 -30 40 10 0 11 3 2 13 -6 8 -7 17 -3 21 7 7 8 11 11 37 0 5 6 7 13 3 8
-5 9 -2 5 10 -4 9 -3 14 2 11 5 -3 12 -1 16 5 4 6 11 8 16 5 5 -4 9 -1 9 5 0
6 15 8 41 5 56 -7 80 7 130 75 19 25 26 46 25 73 -1 28 5 47 21 65 13 15 23
30 23 35 0 17 4 23 29 44 14 13 26 26 26 30 1 5 6 18 13 29 6 12 8 24 5 28 -3
3 -2 6 4 6 6 0 9 10 9 23 -1 12 2 31 7 41 5 11 11 45 13 75 2 31 7 80 10 109
8 71 0 97 -35 112 -25 10 -28 16 -22 33 13 33 6 101 -13 129 -18 28 -54 46
-101 50 -28 3 -30 5 -27 42 3 34 0 42 -35 72 -23 21 -49 34 -66 34 -34 0 -97
25 -97 39 0 5 -10 13 -22 17 -13 3 -30 12 -38 19 -16 13 -86 30 -108 26 -8 -1
-29 5 -47 13 -23 11 -40 13 -57 7 -16 -6 -32 -4 -51 6 -21 11 -36 12 -57 4
-22 -7 -32 -6 -41 5 -16 19 -46 18 -58 -3 -14 -25 -89 -26 -97 -1 -9 30 -30
20 -49 -22 -17 -38 -19 -39 -37 -24 -18 17 -39 30 -85 55 -18 10 -27 9 -49 -6
-15 -9 -47 -19 -72 -20 -40 -3 -51 -9 -83 -45 l-38 -43 -38 30 c-44 35 -76 53
-104 58 -31 6 -100 -29 -146 -73 -69 -67 -95 -76 -205 -73 -30 1 -39 5 -43 24
-5 19 -21 31 -83 63 -1 0 -4 20 -7 42 -3 23 -7 61 -10 84 -3 22 -7 43 -10 46
-3 3 0 11 6 19 6 7 7 13 3 13 -5 0 -9 41 -9 91 l0 91 41 20 c33 15 44 27 55
61 7 23 19 51 26 63 8 13 11 42 9 81 l-4 60 37 17 c43 18 63 53 66 112 1 26
10 50 23 65 43 48 50 57 58 81 4 12 6 41 5 63 -1 27 6 52 21 75 12 19 23 49
24 65 0 17 4 44 8 60 16 62 16 72 -4 90 -25 23 -25 50 0 82 13 17 20 41 20 71
0 39 -5 49 -41 83 -35 33 -39 41 -29 59 18 34 20 81 3 114 -15 31 -47 66 -58
66 -15 0 -39 35 -42 61 -1 16 -12 39 -23 51 -46 50 -85 88 -92 88 -4 0 -28 18
-53 40 -25 22 -50 40 -54 40 -7 0 -78 68 -146 141 -24 25 -49 92 -49 134 -1
22 -5 46 -9 53 -5 6 -4 12 1 12 11 0 8 61 -6 97 -12 32 -24 80 -27 106 -2 9
-4 20 -5 25 -1 4 -1 19 0 34 2 38 -42 117 -89 160 -22 20 -43 49 -47 65 -4 15
-15 35 -24 43 -41 35 -82 64 -97 66 -8 2 -25 12 -37 23 -12 12 -27 21 -33 21
-6 0 -16 6 -23 14 -6 8 -18 12 -25 10 -7 -3 -22 3 -32 13 -10 10 -26 17 -34
15 -9 -2 -23 3 -31 11 -26 26 -86 42 -116 31 -21 -8 -31 -7 -40 3 -7 7 -31 13
-53 13 -38 0 -95 23 -110 44 -7 9 -84 51 -222 121 -49 24 -113 67 -143 94 -30
28 -71 59 -92 71 -21 12 -48 36 -61 55 -12 19 -38 46 -57 60 -45 34 -84 74
-84 84 0 5 -27 31 -60 58 -33 26 -63 56 -66 66 -3 9 -11 17 -17 17 -7 0 -28
14 -47 30 -19 17 -45 33 -57 36 -13 4 -23 10 -23 15 0 5 -17 16 -37 25 -151
65 -363 66 -560 3 -34 -11 -75 -21 -90 -22 -40 -2 -217 60 -238 83 -10 11 -27
20 -37 20 -27 0 -76 27 -87 49 -13 24 -92 61 -130 61 -16 0 -34 6 -40 14 -6 7
-22 12 -36 11 -14 -2 -27 1 -31 6 -3 5 -22 9 -43 9 -20 0 -42 5 -47 10 -15 15
-144 21 -174 8 -46 -19 -84 -17 -231 13 -80 16 -158 31 -175 33 -61 7 -121 29
-184 65 -36 21 -82 46 -102 56 -21 9 -57 34 -80 55 -24 20 -52 40 -64 44 -11
3 -29 14 -40 24 -23 21 -130 92 -139 92 -3 0 -32 12 -63 26 -31 15 -88 33
-127 40 -68 14 -236 19 -247 9z m-4263 -2335 c3 -5 1 -10 -4 -10 -6 0 -11 5
-11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z m-2788 -1326 c-3 -3 -12 -4 -19 -1 -8
3 -5 6 6 6 11 1 17 -2 13 -5z m-293 -2439 c-7 -16 -24 -21 -24 -6 0 8 7 13 27
20 1 1 0 -6 -3 -14z m-23 -22 c7 -10 9 -15 5 -11 -5 4 -15 0 -22 -10 -9 -11
-13 -13 -14 -4 0 7 -4 10 -10 7 -5 -3 -10 -2 -10 4 0 8 24 28 36 31 1 0 8 -8
15 -17z m-366 -43 c3 -5 -1 -10 -10 -10 -9 0 -13 5 -10 10 3 6 8 10 10 10 2 0
7 -4 10 -10z m13680 -3660 c-10 -11 -21 -17 -24 -14 -3 3 3 12 13 20 28 20 32
17 11 -6z m49 -11 c-13 -5 -14 -8 -4 -9 9 0 6 -6 -10 -15 -14 -7 -26 -12 -28
-10 -8 7 42 54 51 48 6 -4 2 -10 -9 -14z m-13994 -49 c0 -5 -9 -6 -20 -3 -11
3 -17 9 -15 14 7 10 35 1 35 -11z m13855 -600 c5 8 13 5 27 -9 10 -12 23 -19
28 -16 6 4 7 -2 3 -11 -4 -11 -8 -13 -11 -6 -2 7 -8 12 -13 12 -6 0 -7 -5 -3
-11 4 -7 -7 -1 -25 12 -17 12 -31 28 -31 33 0 6 4 5 9 -3 6 -10 10 -10 16 -1z
m480 -538 c-3 -3 -11 0 -18 7 -9 10 -8 11 6 5 10 -3 15 -9 12 -12z m-12378
-937 c0 -8 -4 -15 -9 -15 -10 0 -11 14 -1 23 9 10 10 9 10 -8z m-53 -26 c-8
-14 -24 -10 -24 6 0 9 6 12 15 9 8 -4 12 -10 9 -15z m11710 -198 c3 -5 -3 -11
-15 -14 -16 -4 -18 -3 -8 9 13 16 16 17 23 5z m26 -81 c0 -5 -2 -10 -4 -10 -3
0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11 -4 11 -10z m-2042 -827 c8 -7 18 -11 23
-8 5 4 6 -1 3 -9 -6 -16 -30 -11 -52 11 -8 7 -18 10 -24 7 -6 -4 -8 -3 -5 3 9
14 39 12 55 -4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

19
icons/site.webmanifest Normal file
View File

@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

59
index.html Normal file
View File

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="elia's website">
<meta name="description" content="swiss hosted services">
<meta name="keywords" content="ich, hasse, mein, leben">
<meta name="author" content="elia">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<link rel="manifest" href="icons/site.webmanifest">
<link rel="mask-icon" href="icons/safari-pinned-tab.svg" color="#33ccffaf">
<link rel="shortcut icon" href="icons/favicon.ico">
<meta name="msapplication-TileColor" content="#33ccff">
<meta name="msapplication-config" content="icons/browserconfig.xml">
<meta name="theme-color" content="#33ccff">
<meta property="og:title" content="elia's website">
<meta property="og:description" content="swiss hosted services">
<meta property="og:url" content="https://elia's website">
<meta property="og:site_name" content="elia's website">
<meta property="og:image" content="https://elia.li/icons/android-chrome-256x256.png">
<meta property="twitter:title" content="elia's website">
<meta property="twitter:description" content="swiss hosted services">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="https://elia.li/icons/android-chrome-256x256.png">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="assets/style.css">
<title>elia's website</title>
</head>
<body>
<video autoplay muted loop id="background-video">
<source src="assets/video.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<nav class="navbar">
<div class="logo">
<span>elia.li</span>
</div>
<ul class="nav-links">
<li><a href="https://elia.li">network</a></li>
<li><a href="https://github.com/schizoposter">github</a></li>
<li><a href="mailto:me@elia.li">mail</a></li>
<li><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">imprint</a></li>
</ul>
</nav>
<div id="response" class="response">
<span>hello</span>
</div>
<div id="stats" class="stats">
<span id="charsPerSecond">0 chars/s</span>
<span id="totalChars">0 chars</span>
<span id="totalTime">0.0s</span>
<span id="temperature">Temp: ...</span>
</div>
</body>
<script src="assets/retrieve.js"></script>
</html>