Compare commits
78 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
640b0c53bd | ||
![]() |
b5d8f58861 | ||
![]() |
6b06e7ef3d | ||
![]() |
8e084b5e1c | ||
![]() |
74074e91ff | ||
![]() |
fa158c25a3 | ||
![]() |
9de2d66b9d | ||
![]() |
2df3fbbf82 | ||
![]() |
6d2656e9c6 | ||
![]() |
af00e56609 | ||
![]() |
d9aed86cf4 | ||
![]() |
38da13af5e | ||
![]() |
d307ac3229 | ||
![]() |
5ad486a526 | ||
![]() |
57da20d223 | ||
![]() |
cd2da708c6 | ||
![]() |
6cdf0238a8 | ||
![]() |
15cde9a429 | ||
![]() |
611818a198 | ||
![]() |
5508b83cc9 | ||
![]() |
faeac3ed6d | ||
![]() |
b418f79507 | ||
![]() |
6e7bb4533c | ||
![]() |
d711acc5e7 | ||
![]() |
b9bf7e8ab5 | ||
![]() |
9d0ca36b81 | ||
![]() |
147fc36acc | ||
![]() |
8eab5c9d75 | ||
![]() |
10b1a56df5 | ||
![]() |
435e60e77d | ||
![]() |
af12ffaba4 | ||
![]() |
c5fe0a8f9d | ||
![]() |
8f57128ba2 | ||
![]() |
8c26178900 | ||
![]() |
95b91c125b | ||
![]() |
8be5054913 | ||
![]() |
8cbc2f1ecb | ||
![]() |
f09163f521 | ||
![]() |
a27d4f50a2 | ||
![]() |
0a69d7ea77 | ||
![]() |
927c0cca4d | ||
![]() |
132657d003 | ||
![]() |
a684bd6c58 | ||
![]() |
99345b6997 | ||
![]() |
b791002171 | ||
![]() |
149304d94c | ||
![]() |
c133f6bed7 | ||
![]() |
ec72aeb1b4 | ||
![]() |
e66e83c5c1 | ||
![]() |
6d8f80627c | ||
![]() |
28a11ff346 | ||
![]() |
b5f1467a5b | ||
![]() |
45ba38df00 | ||
![]() |
9f49a99d05 | ||
![]() |
c243c473d7 | ||
![]() |
3375618fdc | ||
![]() |
60abcbb787 | ||
![]() |
09c34a395d | ||
![]() |
8e4f0d4c5f | ||
![]() |
75a2e70a01 | ||
![]() |
4ff8668f99 | ||
![]() |
0b262f3aa1 | ||
![]() |
f43566d1d7 | ||
![]() |
7c8f854d35 | ||
![]() |
53dd360a38 | ||
![]() |
7560066cdd | ||
![]() |
d336ba6550 | ||
![]() |
5c275bcefa | ||
![]() |
072a81fe34 | ||
![]() |
eb61ced480 | ||
![]() |
90ecff291c | ||
![]() |
c25be4a52f | ||
![]() |
1d10b66c5e | ||
![]() |
c8c36a6df2 | ||
![]() |
6e910c7641 | ||
![]() |
22687aa350 | ||
![]() |
b4c846af66 | ||
![]() |
9c1ceff633 |
0
.ipfsignore
Normal file
|
@ -1,6 +1,6 @@
|
|||
# Cookie-Clicker-Source-Code-Beta
|
||||
2.019 source code for... educational purposes... BETA edition! <br>
|
||||
Download and Extract to delete free time.. BETA EDITION! Or just use the website. <br> <br>
|
||||
# Cookie-Clicker-Source-Code
|
||||
2.052 source code for... educational purposes... <br>
|
||||
Download and Extract to delete free time. Or just use the website. <br> <br>
|
||||
Do not worry, I will be updating this to be up to date with the current Cookie Clicker version. <br>
|
||||
<!-- You may be saying in confusion to yourself, "2.019 beta isn't out!" Well guess what, I made it beta, Deal with it. -->
|
||||
<!-- Well guess what, 2.021 came out... what happened to 2.020?? -->
|
||||
Credits obviously go Orteil, visit the official website here: http://orteil.dashnet.org/cookieclicker/
|
||||
|
|
10
ajax.js
|
@ -1,6 +1,6 @@
|
|||
function ajax(url,callback){
|
||||
var ajaxRequest;
|
||||
try{ajaxRequest = new XMLHttpRequest();} catch (e){try{ajaxRequest=new ActiveXObject('Msxml2.XMLHTTP');} catch (e) {try{ajaxRequest=new ActiveXObject('Microsoft.XMLHTTP');} catch (e){alert("Something broke!");return false;}}}
|
||||
if (callback){ajaxRequest.onreadystatechange=function(){if(ajaxRequest.readyState==4){callback(ajaxRequest.responseText);}}}
|
||||
ajaxRequest.open('GET',url+'&nocache='+(new Date().getTime()),true);ajaxRequest.send(null);
|
||||
function ajax(url,callback){
|
||||
var ajaxRequest;
|
||||
try{ajaxRequest = new XMLHttpRequest();} catch (e){try{ajaxRequest=new ActiveXObject('Msxml2.XMLHTTP');} catch (e) {try{ajaxRequest=new ActiveXObject('Microsoft.XMLHTTP');} catch (e){alert("Something broke!");return false;}}}
|
||||
if (callback){ajaxRequest.onreadystatechange=function(){if(ajaxRequest.readyState==4){callback(ajaxRequest.responseText);}}}
|
||||
ajaxRequest.open('GET',url+'&nocache='+(new Date().getTime()),true);ajaxRequest.send(null);
|
||||
}
|
284
base64.js
|
@ -1,142 +1,142 @@
|
|||
/**
|
||||
*
|
||||
* Base64 encode / decode
|
||||
* http://www.webtoolkit.info/
|
||||
*
|
||||
**/
|
||||
|
||||
var Base64 = {
|
||||
|
||||
// private property
|
||||
_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
|
||||
|
||||
// public method for encoding
|
||||
encode : function (input) {
|
||||
var output = "";
|
||||
var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
|
||||
var i = 0;
|
||||
|
||||
input = Base64._utf8_encode(input);
|
||||
|
||||
while (i < input.length) {
|
||||
|
||||
chr1 = input.charCodeAt(i++);
|
||||
chr2 = input.charCodeAt(i++);
|
||||
chr3 = input.charCodeAt(i++);
|
||||
|
||||
enc1 = chr1 >> 2;
|
||||
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
|
||||
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
|
||||
enc4 = chr3 & 63;
|
||||
|
||||
if (isNaN(chr2)) {
|
||||
enc3 = enc4 = 64;
|
||||
} else if (isNaN(chr3)) {
|
||||
enc4 = 64;
|
||||
}
|
||||
|
||||
output = output +
|
||||
this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
|
||||
this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
|
||||
|
||||
}
|
||||
|
||||
return output;
|
||||
},
|
||||
|
||||
// public method for decoding
|
||||
decode : function (input) {
|
||||
var output = "";
|
||||
var chr1, chr2, chr3;
|
||||
var enc1, enc2, enc3, enc4;
|
||||
var i = 0;
|
||||
|
||||
input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
|
||||
|
||||
while (i < input.length) {
|
||||
|
||||
enc1 = this._keyStr.indexOf(input.charAt(i++));
|
||||
enc2 = this._keyStr.indexOf(input.charAt(i++));
|
||||
enc3 = this._keyStr.indexOf(input.charAt(i++));
|
||||
enc4 = this._keyStr.indexOf(input.charAt(i++));
|
||||
|
||||
chr1 = (enc1 << 2) | (enc2 >> 4);
|
||||
chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
|
||||
chr3 = ((enc3 & 3) << 6) | enc4;
|
||||
|
||||
output = output + String.fromCharCode(chr1);
|
||||
|
||||
if (enc3 != 64) {
|
||||
output = output + String.fromCharCode(chr2);
|
||||
}
|
||||
if (enc4 != 64) {
|
||||
output = output + String.fromCharCode(chr3);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
output = Base64._utf8_decode(output);
|
||||
|
||||
return output;
|
||||
|
||||
},
|
||||
|
||||
// private method for UTF-8 encoding
|
||||
_utf8_encode : function (string) {
|
||||
string = string.replace(/\r\n/g,"\n");
|
||||
var utftext = "";
|
||||
|
||||
for (var n = 0; n < string.length; n++) {
|
||||
|
||||
var c = string.charCodeAt(n);
|
||||
|
||||
if (c < 128) {
|
||||
utftext += String.fromCharCode(c);
|
||||
}
|
||||
else if((c > 127) && (c < 2048)) {
|
||||
utftext += String.fromCharCode((c >> 6) | 192);
|
||||
utftext += String.fromCharCode((c & 63) | 128);
|
||||
}
|
||||
else {
|
||||
utftext += String.fromCharCode((c >> 12) | 224);
|
||||
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
|
||||
utftext += String.fromCharCode((c & 63) | 128);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return utftext;
|
||||
},
|
||||
|
||||
// private method for UTF-8 decoding
|
||||
_utf8_decode : function (utftext) {
|
||||
var string = "";
|
||||
var i = 0;
|
||||
var c = c1 = c2 = 0;
|
||||
|
||||
while ( i < utftext.length ) {
|
||||
|
||||
c = utftext.charCodeAt(i);
|
||||
|
||||
if (c < 128) {
|
||||
string += String.fromCharCode(c);
|
||||
i++;
|
||||
}
|
||||
else if((c > 191) && (c < 224)) {
|
||||
c2 = utftext.charCodeAt(i+1);
|
||||
string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
|
||||
i += 2;
|
||||
}
|
||||
else {
|
||||
c2 = utftext.charCodeAt(i+1);
|
||||
c3 = utftext.charCodeAt(i+2);
|
||||
string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
|
||||
i += 3;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return string;
|
||||
}
|
||||
|
||||
}
|
||||
/**
|
||||
*
|
||||
* Base64 encode / decode
|
||||
* http://www.webtoolkit.info/
|
||||
*
|
||||
**/
|
||||
|
||||
var Base64 = {
|
||||
|
||||
// private property
|
||||
_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
|
||||
|
||||
// public method for encoding
|
||||
encode : function (input) {
|
||||
var output = "";
|
||||
var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
|
||||
var i = 0;
|
||||
|
||||
input = Base64._utf8_encode(input);
|
||||
|
||||
while (i < input.length) {
|
||||
|
||||
chr1 = input.charCodeAt(i++);
|
||||
chr2 = input.charCodeAt(i++);
|
||||
chr3 = input.charCodeAt(i++);
|
||||
|
||||
enc1 = chr1 >> 2;
|
||||
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
|
||||
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
|
||||
enc4 = chr3 & 63;
|
||||
|
||||
if (isNaN(chr2)) {
|
||||
enc3 = enc4 = 64;
|
||||
} else if (isNaN(chr3)) {
|
||||
enc4 = 64;
|
||||
}
|
||||
|
||||
output = output +
|
||||
this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
|
||||
this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
|
||||
|
||||
}
|
||||
|
||||
return output;
|
||||
},
|
||||
|
||||
// public method for decoding
|
||||
decode : function (input) {
|
||||
var output = "";
|
||||
var chr1, chr2, chr3;
|
||||
var enc1, enc2, enc3, enc4;
|
||||
var i = 0;
|
||||
|
||||
input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
|
||||
|
||||
while (i < input.length) {
|
||||
|
||||
enc1 = this._keyStr.indexOf(input.charAt(i++));
|
||||
enc2 = this._keyStr.indexOf(input.charAt(i++));
|
||||
enc3 = this._keyStr.indexOf(input.charAt(i++));
|
||||
enc4 = this._keyStr.indexOf(input.charAt(i++));
|
||||
|
||||
chr1 = (enc1 << 2) | (enc2 >> 4);
|
||||
chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
|
||||
chr3 = ((enc3 & 3) << 6) | enc4;
|
||||
|
||||
output = output + String.fromCharCode(chr1);
|
||||
|
||||
if (enc3 != 64) {
|
||||
output = output + String.fromCharCode(chr2);
|
||||
}
|
||||
if (enc4 != 64) {
|
||||
output = output + String.fromCharCode(chr3);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
output = Base64._utf8_decode(output);
|
||||
|
||||
return output;
|
||||
|
||||
},
|
||||
|
||||
// private method for UTF-8 encoding
|
||||
_utf8_encode : function (string) {
|
||||
string = string.replace(/\r\n/g,"\n");
|
||||
var utftext = "";
|
||||
|
||||
for (var n = 0; n < string.length; n++) {
|
||||
|
||||
var c = string.charCodeAt(n);
|
||||
|
||||
if (c < 128) {
|
||||
utftext += String.fromCharCode(c);
|
||||
}
|
||||
else if((c > 127) && (c < 2048)) {
|
||||
utftext += String.fromCharCode((c >> 6) | 192);
|
||||
utftext += String.fromCharCode((c & 63) | 128);
|
||||
}
|
||||
else {
|
||||
utftext += String.fromCharCode((c >> 12) | 224);
|
||||
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
|
||||
utftext += String.fromCharCode((c & 63) | 128);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return utftext;
|
||||
},
|
||||
|
||||
// private method for UTF-8 decoding
|
||||
_utf8_decode : function (utftext) {
|
||||
var string = "";
|
||||
var i = 0;
|
||||
var c = c1 = c2 = 0;
|
||||
|
||||
while ( i < utftext.length ) {
|
||||
|
||||
c = utftext.charCodeAt(i);
|
||||
|
||||
if (c < 128) {
|
||||
string += String.fromCharCode(c);
|
||||
i++;
|
||||
}
|
||||
else if((c > 191) && (c < 224)) {
|
||||
c2 = utftext.charCodeAt(i+1);
|
||||
string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
|
||||
i += 2;
|
||||
}
|
||||
else {
|
||||
c2 = utftext.charCodeAt(i+1);
|
||||
c3 = utftext.charCodeAt(i+2);
|
||||
string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
|
||||
i += 3;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return string;
|
||||
}
|
||||
|
||||
}
|
BIN
img/AQWorlds_CookieClicker_300x40.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
img/BGgarden.jpg
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 20 KiB |
BIN
img/BGgrimoire.jpg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
img/BGmarket.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
img/BGpantheon.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 820 B After Width: | Height: | Size: 779 B |
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 428 B |
BIN
img/alternateGrandma.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 526 B After Width: | Height: | Size: 482 B |
Before Width: | Height: | Size: 666 B After Width: | Height: | Size: 634 B |
BIN
img/aqworldsbanner.jpg
Normal file
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 39 KiB |
BIN
img/bank.png
Before Width: | Height: | Size: 501 B After Width: | Height: | Size: 430 B |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.3 KiB |
BIN
img/bgBW.jpg
Normal file
After Width: | Height: | Size: 69 KiB |
BIN
img/bgBlack.jpg
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 57 KiB |
BIN
img/bgBlue.jpg
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 80 KiB |
BIN
img/bgCandy.jpg
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
img/bgChoco.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
img/bgChocoDark.jpg
Normal file
After Width: | Height: | Size: 66 KiB |
BIN
img/bgCoarse.jpg
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
img/bgFoil.jpg
Normal file
After Width: | Height: | Size: 189 KiB |
BIN
img/bgGold.jpg
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 92 KiB |
BIN
img/bgMint.jpg
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
img/bgMoney.jpg
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 64 KiB |
BIN
img/bgPaint.jpg
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
img/bgPink.jpg
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
img/bgPurple.jpg
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
img/bgRed.jpg
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 86 KiB |
BIN
img/bgSilver.jpg
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
img/bgSky.jpg
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
img/bgSnowy.jpg
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
img/bgSpectrum.jpg
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
img/bgStars.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
img/bgWhite.jpg
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 40 KiB |
BIN
img/bgYellowBlue.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 157 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 293 B |
Before Width: | Height: | Size: 971 B After Width: | Height: | Size: 106 B |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.4 KiB |
BIN
img/brainyGrandma.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 21 KiB |
BIN
img/brownStripes.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
img/brownStripesLeftEdge.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 44 KiB |
BIN
img/bunnies.png
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 713 B After Width: | Height: | Size: 593 B |
BIN
img/cloneGrandma.png
Normal file
After Width: | Height: | Size: 774 B |
BIN
img/contract.png
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.0 KiB |
BIN
img/cookieShadow.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 28 KiB |
BIN
img/cortex.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
img/cortexBackground.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 588 B |
BIN
img/cursor.png
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 829 B |
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 7.2 KiB |
BIN
img/dashnetLogo.png
Normal file
After Width: | Height: | Size: 97 KiB |
BIN
img/discord.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
img/dragon.png
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 6.1 KiB |
BIN
img/dragonBG.png
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 20 KiB |
BIN
img/dungeonDot.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
img/dungeonFoes.png
Normal file
After Width: | Height: | Size: 1010 B |
BIN
img/dungeonHeroes.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.2 KiB |
BIN
img/dungeonItems.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
img/dungeonMapFactory.jpg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
img/dungeonPictos.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
img/factory.png
Before Width: | Height: | Size: 477 B After Width: | Height: | Size: 450 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.2 KiB |
BIN
img/farm.png
Before Width: | Height: | Size: 765 B After Width: | Height: | Size: 744 B |
BIN
img/farmIcon.png
Before Width: | Height: | Size: 944 B After Width: | Height: | Size: 0 B |
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 570 B |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.0 KiB |
BIN
img/filler.png
Before Width: | Height: | Size: 953 B After Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 1002 B After Width: | Height: | Size: 143 B |
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 682 B |
Before Width: | Height: | Size: 762 B After Width: | Height: | Size: 688 B |
BIN
img/glint.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 3.8 KiB |
BIN
img/grandma.png
Before Width: | Height: | Size: 571 B After Width: | Height: | Size: 547 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 0 B |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 16 KiB |