Merge branch 'master' into nowarning

This commit is contained in:
ash 2022-04-07 22:30:50 +01:00 committed by GitHub
commit 0fb17c5d35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 9050 additions and 6741 deletions

5
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,5 @@
# These are supported funding model platforms
patreon: placeAtlas
ko_fi: placeatlas
custom: ['https://paypal.me/placeAtlas/5']

View file

@ -32,4 +32,4 @@ To contribute to the map, we require a certain format for artwork region and lab
## Cleaning Contributions
If you spot a duplicate, please PR against `/cleanup`. To help find duplicates, run the code locally, changing line 92 of `main.js` to `overlap`.
If you spot a duplicate, please PR against `/cleanup`. To help find duplicates, append `?mode=overlap` to the url: [`https://place-atlas.stefanocoding.me?mode=overlap`](https://place-atlas.stefanocoding.me?mode=overlap).

View file

@ -1,4 +1,13 @@
[![Entry count](https://img.shields.io/badge/dynamic/json?color=blue&label=count&query=%24.length&url=https%3A%2F%2Fgithub.com%2FplaceAtlas%2Fatlas%2Fblob%2Fmaster%2Fweb%2Fatlas.json%3Fraw%3Dtrue)](https://place-atlas.stefanocoding.me/)
![Commit activity](https://img.shields.io/github/commit-activity/w/placeAtlas/atlas)
[![Netlify](https://img.shields.io/netlify/1e7291ce-0680-45ed-9843-47a32a992bbb?logo=netlify&logoColor=white)](https://app.netlify.com/sites/place-atlas/deploys)
[![License](https://img.shields.io/github/license/placeAtlas/atlas)](https://github.com/placeAtlas/atlas/blob/master/LICENSE)
[![Discord](https://img.shields.io/discord/960791635342524496?color=%235865F2&logo=discord&logoColor=white)](https://discord.gg/pJkm23b2nA)
[![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/placeAtlas2?color=%23FF4500&label=r%2FplaceAtlas2&logo=reddit&logoColor=white)](https://www.reddit.com/r/placeAtlas2/)
[![Website](https://img.shields.io/static/v1?label=website&message=place-atlas.stefanocoding.me&color=blue)](https://place-atlas.stefanocoding.me/)
# The 2022 Place Atlas
The /r/place Atlas is a project aiming to catalog all the artworks created during Reddit's 2022 /r/place event.
This project was created by Roland Rytz and is licensed under the GNU Affero General Public License v3.0.
@ -12,7 +21,7 @@ If you don't know GitHub and wanted to submit new entries or request changes to
### Map Contributions
<h4><b>WE ONLY ACCEPT NEW CONTRIBUTIONS ON REDDIT</b></h4>
**WE ONLY ACCEPT NEW CONTRIBUTIONS ON REDDIT!**
To contribute to the map, we require a certain format for artwork region and labels. This can be generated on the [contributing page](https://place-atlas.stefanocoding.me/index.html?mode=draw) on the website.
@ -36,8 +45,8 @@ To contribute to the map, we require a certain format for artwork region and lab
1. Create a fork of our repo.
2. Enter your data into the `web/atlas.json` file, with the correct format and ID number.
3. Create a Pull Request against the `/cleanup` branch.
3. Create a Pull Request against the `cleanup` branch.
### Cleaning Contributions
If you spot a duplicate, please PR against `/cleanup`. To help find duplicates, run the code locally, changing line 92 of `main.js` to `overlap`.
If you spot a duplicate, please PR against the `cleanup` branch. To help find duplicates, append `?mode=overlap` to the url: [`https://place-atlas.stefanocoding.me?mode=overlap`](https://place-atlas.stefanocoding.me?mode=overlap).

View file

@ -5,19 +5,21 @@
def go(path):
print(f"Fixing {path}...")
with open(path, "r+", encoding='UTF-8') as f1:
contents = f1.read()
for match in pattern.finditer(contents):
if match.group(1) == match.group(2):
contents = contents.replace(match.group(0), match.group(2), 1)
for match in pattern.finditer(contents):
if match.group(1) == match.group(2):
contents = contents.replace(match.group(0), match.group(2), 1)
for i in range(2):
for match in pattern.finditer(contents):
if match.group(1) == match.group(2):
contents = contents.replace(match.group(0), match.group(2), 1)
print(f"Stage {i+1} completed.")
with open(path, "w", encoding='UTF-8') as f2:
f2.write(contents)
print("Writing completed. All done.")
go("../web/atlas.json")
go("../web/atlas-before-ids-migration.json")
go("../web/atlas-before-ids-migration.json")

37
tools/misc-formats.py Normal file
View file

@ -0,0 +1,37 @@
#!/usr/bin/python
import re
def go(path):
print(f"Fixing {path}...")
with open(path, "r+", encoding='UTF-8') as f1:
contents = f1.read()
contents = re.sub(r'": "(\s+)', r'": "', contents)
contents = re.sub(r'(\s+)"(, |,|\})', r'"\2', contents)
print("Leading and trailing spaces removed.")
contents = re.sub(r' {2,}', r' ', contents)
print("Double spaces removed.")
contents = re.sub(r',{2,}', r',', contents)
print("Double commas removed.")
contents = re.sub(r'"n/a"', '""', contents)
contents = re.sub(r'"N/A"', '""', contents)
contents = re.sub(r'"-"', '""', contents)
contents = re.sub(r'"none"', '""', contents)
contents = re.sub(r'"null"', '""', contents)
print("Psuedo-empty strings converted into empty strings.")
contents = re.sub(r'R\/', 'r/', contents)
print("Capitalization of r/ has been fixed.")
with open(path, "w", encoding='UTF-8') as f2:
f2.write(contents)
print("Writing completed. All done.")
go("../web/atlas.json")
go("../web/atlas-before-ids-migration.json")

View file

@ -3,6 +3,7 @@
import json
import time
import re
import os
outfile = open('temp_atlas.json', 'w', encoding='utf-8')
failfile = open('manual_atlas.json', 'w', encoding='utf-8')
@ -15,6 +16,7 @@
failcount = 0
successcount = 0
totalcount = 0
jsonfile = open("../web/atlas.json", "r", encoding='utf-8')
existing = json.load(jsonfile)
@ -24,7 +26,9 @@
for item in existing:
existing_ids.append(item['id'])
total_all_flairs = 0
duplicate_count = 0
outfile.write("[\n")
for submission in reddit.subreddit('placeAtlas2').new(limit=2000):
"""
Auth setup
@ -46,10 +50,14 @@
4. Pull Request
"""
#print(dir(submission))
total_all_flairs += 1
if (submission.id in existing_ids):
print("Found first duplicate!")
break
duplicate_count += 1
if (duplicate_count > 10):
break
else:
continue
if(submission.link_flair_text == "New Entry"):
text = submission.selftext
#Old backslash filter:
@ -58,7 +66,7 @@
# Two escape it again in the regex parser, so \\\\ is \
# Then anything but " or n is replaced with the first capture group (anything but " or n)
# Test in repl: re.sub("\\\\([^\"n])", "\\1", "\\t < removed slash, t stays and > stays \\n \\\"")
re.sub("\\\\([^\"n])", "\\1", text)
text = re.sub("\\\\([^\"n])", "\\1", text)
try:
text = text.replace("\"id\": 0,", "\"id\": 0,\n\t\t\"submitted_by\": \""+submission.author.name+"\",")
except AttributeError:
@ -72,11 +80,18 @@
lines[i] = line.replace("\"id\": 0", "\"id\": "+"\""+str(submission.id)+"\"")
text = "\n".join(lines)
try:
outfile.write(json.dumps(json.loads(text))+",\n")
outfile.write(json.dumps(json.loads(text))+" ,\n")
successcount += 1
except json.JSONDecodeError:
failfile.write(text+",\n")
failcount += 1
print("written "+submission.id+" submitted "+str(round(time.time()-submission.created_utc))+" seconds ago")
successcount += 1
totalcount += 1
print(f"\n\nSuccess: {successcount}\nFail: {failcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.")
# Remove ,\n
outfile.seek(outfile.tell()-4, os.SEEK_SET)
outfile.truncate()
outfile.write("\n]")
print(f"\n\nTotal all flairs:{total_all_flairs}\nSuccess: {successcount}/{totalcount}\nFail: {failcount}/{totalcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.")

View file

@ -1,38 +1,65 @@
#!/usr/bin/python
import re
pattern1 = re.compile(r'"subreddit": "\/r\/(.+?)/?"')
pattern2 = re.compile(r'"subreddit": "r\/(.+?)/?"')
pattern3 = re.compile(r'"subreddit": "\/?r(?!\/)(.+?)/?"')
pattern4 = re.compile(r'"subreddit": "(?:(?:https:\/\/)?www.)?reddit.com\/r\/(.+?)(/[^"]*)*"')
pattern5 = re.compile(r'"subreddit": "\[(?:(?:https:\/\/)?www.)?reddit.com\/r\/(.+?)(/[^"]*)*\]\((?:(?:https:\/\/)?www.)?reddit.com\/r\/(.+?)(/[^"]*)*\)"')
patternParent = re.compile(r'"subreddit": ?"(?!")(.+?)"')
patternCommatization = re.compile(r',* +')
pattern1 = re.compile(r'\/?[rR]\/([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/$)?')
pattern2 = re.compile(r'^\/?[rR](?!\/)([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/$)?')
pattern3 = re.compile(r'(?:(?:https?:\/\/)?(?:(?:www|old|new|np)\.)?)?reddit\.com\/r\/([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/[^" ]*)*')
pattern4 = re.compile(r'\[[A-Za-z0-9][A-Za-z0-9_]{1,20}\]\((?:(?:https:\/\/)?(?:(?:www|old|new|np)\.)?)?reddit\.com\/r\/([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/[^" ]*)*\)')
# pattern5 = re.compile(r'(?:https?:\/\/)?(?!^www\.)(.+)\.reddit\.com(?:\/[^"]*)*')
# pattern6 = re.compile(r'\[(?:https?:\/\/)?(?!^www\.)(.+)\.reddit\.com(?:\/[^"]*)*\]\((?:https:\/\/)?(?!^www\.)(.+)\.reddit\.com(?:\/[^"]*)*\)"')
"""
Examples:
1. - /r/place
- r/place
2. /rplace
3. - https://www.reddit.com/r/place
- www.reddit.com/r/place
- reddit.com/r/place
4. - [https://www.reddit.com/r/place](https://www.reddit.com/r/place)
- [www.reddit.com/r/place](www.reddit.com/r/place)
- [reddit.com/r/place](reddit.com/r/place)
UNUSED AND FAULTY
5. - https://place.reddit.com
- place.reddit.com
6. - [https://place.reddit.com](https://place.reddit.com)
- [place.reddit.com](https://place.reddit.com)
"""
def replaceStage1(contents: str):
contents = re.sub(patternCommatization, ', ', contents)
# r/... to /r/.. (change if not needed)
template = r"/r/\1"
contents = re.sub(pattern4, template, contents)
contents = re.sub(pattern3, template, contents)
contents = re.sub(pattern1, template, contents)
contents = re.sub(pattern2, template, contents)
return contents
def go(path):
print(f"Fixing {path}...")
with open(path, "r+", encoding='UTF-8') as f1:
contents = f1.read()
for match in pattern5.finditer(contents):
contents = contents.replace(match.group(0), '"subreddit": "r/' + match.group(2) + '"', 1)
for match in pattern4.finditer(contents):
contents = contents.replace(match.group(0), '"subreddit": "r/' + match.group(1) + '"', 1)
for match in pattern1.finditer(contents):
contents = contents.replace(match.group(0), '"subreddit": "r/' + match.group(1) + '"', 1)
for match in pattern2.finditer(contents):
contents = contents.replace(match.group(0), '"subreddit": "r/' + match.group(1) + '"', 1)
for match in pattern3.finditer(contents):
contents = contents.replace(match.group(0), '"subreddit": "r/' + match.group(1) + '"', 1)
# # r/... to /r/.. (comment if not needed)
for match in pattern2.finditer(contents):
contents = contents.replace(match.group(0), '"subreddit": "/r/' + match.group(1) + '"', 1)
# Convert to r/... format first.
for matchParent in patternParent.finditer(contents):
subredditLink = matchParent.group(1)
subredditLink = replaceStage1(subredditLink)
if not subredditLink:
continue
if path == "../web/atlas-before-ids-migration.json":
contents = contents.replace(matchParent.group(0), '"subreddit":"' + subredditLink + '"', 1)
else:
contents = contents.replace(matchParent.group(0), '"subreddit": "' + subredditLink + '"', 1)
with open(path, "w", encoding='UTF-8') as f2:
f2.write(contents)
print("Writing completed. All done.")
go("../web/atlas.json")
go("../web/atlas-before-ids-migration.json")

View file

@ -9,6 +9,6 @@
if (len(sys.argv) > 1):
path = sys.argv[1]
json.load(open(path))
json.load(open(path, "r", encoding='utf-8'))
print("JSON is valid")

View file

@ -78,6 +78,7 @@ a:hover {
}
button,
#exportDirectPost,
#aboutBackButton,
#drawBackButton {
background-image: linear-gradient(to bottom, #888, #666);
@ -103,6 +104,7 @@ button:disabled:hover {
}
button:hover,
#exportDirectPost:hover,
#aboutBackButton:hover,
#drawBackButton:hover {
background-image: linear-gradient(to bottom, #999, #777);

Binary file not shown.

After

Width:  |  Height:  |  Size: 953 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 MiB

After

Width:  |  Height:  |  Size: 1 MiB

View file

@ -29,86 +29,39 @@ window.addEventListener("error", function (e) {
document.getElementById("loadingContent").innerHTML = errorMessage;
});
function pointIsInPolygon (point, polygon) {
// ray-casting algorithm based on
// http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html
function getPositionOfEntry(entry){
let startX = 2000, startY = 2000;
for(let [x, y] of entry.path){
startX = Math.min(x, startX);
startY = Math.min(y, startY)
}
if(startX === 2000 || startY === 2000) return null;
return [parseInt(startX), parseInt(startY)];
}
const areaMap = new Map();
// Modified from https://stackoverflow.com/a/33670691
function calcPolygonArea(vertices) {
var hit = areaMap.get(vertices);
if (hit != null) {
return hit;
}
var total = 0;
for (var i = 0, l = vertices.length; i < l; i++) {
var addX = vertices[i][0];
var addY = vertices[i == vertices.length - 1 ? 0 : i + 1][1];
var subX = vertices[i == vertices.length - 1 ? 0 : i + 1][0];
var subY = vertices[i][1];
total += (addX * addY * 0.5);
total -= (subX * subY * 0.5);
}
var area = Math.floor(Math.abs(total));
areaMap.set(vertices, area);
var x = point[0], y = point[1];
var inside = false;
for (var i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
var xi = polygon[i][0], yi = polygon[i][1];
var xj = polygon[j][0], yj = polygon[j][1];
var intersect = ((yi > y) != (yj > y))
&& (x < (xj - xi) * (y - yi) / (yj - yi) + xi);
if (intersect) inside = !inside;
}
return inside;
};
//console.log("There are "+atlas.length+" entries in the Atlas.");
/*
atlas.sort(function(a, b) {
if (a.id < b.id) {
return -1;
}
if (a.id > b.id) {
return 1;
}
// a must be equal to b
return 0;
});
for(var i = 0; i < atlas.length; i++) {
if(atlas[i-1]){
if(atlas[i-1].id == atlas[i].id) {
console.log(atlas[i-1].id + ": "+ atlas[i-1].name);
console.log(atlas[i ].id + ": "+ atlas[i ].name);
}
}
}
console.log("biggest id: "+atlas[atlas.length-1].id + ", " + atlas[atlas.length-1].name);
*/
/*
for(var i = 0; i < atlas.length; i++) {
if(typeof atlas[i].website == "undefined") {
console.log(atlas[i].name);
} else if(atlas[i].website.trim() != "") {
if(atlas[i].website.trim().substring(0, 4) != "http") {
console.log(atlas[i].name + ": " + atlas[i].website);
}
}
}
*/
// sort by center.y, so that lines will overlap less
/*
// Populate with test data
for(var i = 0; i < 10000; i++) {
var x = ~~(Math.random() * 1000)+0.5;
var y = ~~(Math.random() * 1000)+0.5;
var w = ~~(Math.random()*100);
var h = ~~(Math.random()*100);
atlas.push( {
"id": 5,
"name": "test"+(i+3),
"website": "",
"subreddit": "",
"center": [0, 0],
"path":[
[x, y],
[x+w, y],
[x+w, y+h],
[x, y+h]
]
});
}
*/
return area;
}

View file

@ -1,4 +1,16 @@
function createInfoBlock(entry) {
function createInfoParagraph(name, value){
let entryParagraphPositionElement = document.createElement("p");
let nameElement = document.createElement("span");
nameElement.style.fontWeight = "bold";
nameElement.innerText = name;
let valueElement = document.createElement("span");
valueElement.innerText = value;
entryParagraphPositionElement.appendChild(nameElement);
entryParagraphPositionElement.appendChild(valueElement);
return entryParagraphPositionElement;
}
var element = document.createElement("div");
element.className = "object";
@ -15,6 +27,15 @@ function createInfoBlock(entry) {
descElement.innerText = entry.description;
element.appendChild(descElement);
}
let [x, y] = entry.center;
element.appendChild(createInfoParagraph("Position: ", `${Math.floor(x)}x${Math.floor(y)}`));
if(entry.path){
let area = calcPolygonArea(entry.path);
element.appendChild(createInfoParagraph("Area: ", `${area} pixels`));
}
if (entry.website) {
let websiteLinkElement = document.createElement("a");
websiteLinkElement.target = "_blank";
@ -39,9 +60,8 @@ function createInfoBlock(entry) {
element.appendChild(subredditLinkElement);
}
}
let idElement = document.createElement("p");
let idElement = createInfoParagraph("ID: ", entry.id);
idElement.style.fontFamily = "Dejavu Sans Mono, sans, Sans-Serif;";
idElement.innerText = "id: " + entry.id;
element.appendChild(idElement);
return element;

View file

@ -47,7 +47,7 @@ var lastPosition = [0, 0];
var viewportSize = [0, 0];
document.getElementById("donateButton").addEventListener("click", function(e){
document.getElementById("bitcoinQR").src = "./_img/bitcoinQR.png?from=index";
// document.getElementById("bitcoinQR").src = "./_img/bitcoinQR.png?from=index";
document.getElementById("donateOverlay").style.display = "flex";
});
@ -78,7 +78,8 @@ var atlas = null;
init();
async function init(){
// For Reviewing Reddit Changes
//let resp = await fetch("../tools/temp_atlas.json");
let resp = await fetch("./atlas.json");
atlas = await resp.json();
atlas.sort(function (a, b) {
@ -135,6 +136,33 @@ async function init(){
initOverlap();
}
}
function changeOverlapMode(){
console.log(mode)
switch(mode){
case "overlap":
window.location.href = "?mode=explore"
break;
case "explore":
window.location.href = "?"
break;
default:
window.location.href = "?mode=overlap"
break;
}
return false;
}
const modeMap = {
"view": "Overlap",
"overlap": "Explore",
"explore": "Atlas"
}
const toggleMode = document.getElementById("toggleMode");
toggleMode.onclick = changeOverlapMode;
toggleMode.innerHTML = modeMap[mode];
document.getElementById("loading").style.display = "none";
@ -243,14 +271,23 @@ async function init(){
initialPinchZoom = zoom;
lastPosition = [x, y];
if(e.deltaY > 0){
zoom = zoom / 2;
} else if(e.deltaY < 0){
zoom = zoom * 2;
// Check if we are zooming by pixels
// https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaMode
if (e.deltaMode === 0) {
// Scale the pixel delta by the current zoom factor
// We want to zoom faster when closer, and slower when further
// This creates a smoother experience
zoom -= e.deltaY * (0.001 * zoom);
} else {
if(e.deltaY > 0){
zoom = zoom / 2;
} else if(e.deltaY < 0){
zoom = zoom * 2;
}
}
zoom = Math.max(minZoom, Math.min(maxZoom, zoom));

View file

@ -21,13 +21,6 @@ for(var q = 0; q < atlas.length; q++){
area = Math.abs(area/2);
if(atlas[q].name == "Companion Cube"){
var w = atlas[q].path[1][0] - atlas[q].path[0][0];
var h = atlas[q].path[2][1] - atlas[q].path[1][1];
console.log(w, h, w*h);
console.log(area, Math.sqrt(area));
}
areasSum += area;
areas.push(area);

View file

@ -273,12 +273,12 @@ function initView(){
//var id = parseInt(window.location.hash.substring(3));
var entry = atlas.filter(function(e){
var entries = atlas.filter(function(e){
return e.id === id;
});
if (entry.length === 1){
entry = entry[0];
if (entries.length === 1){
let entry = entries[0];
document.title = entry.name + " on the 2022 /r/place Atlas";
@ -345,7 +345,9 @@ function initView(){
}
if(changed){
hovered = newHovered;
hovered = newHovered.sort(function(a, b){
return calcPolygonArea(a.path) - calcPolygonArea(b.path);
});
objectsContainer.innerHTML = "";
@ -449,6 +451,11 @@ function initView(){
return 0;
}
break;
case "area":
sortFunction = function(a, b){
return calcPolygonArea(b.path) - calcPolygonArea(a.path);
}
break;
case "relevant":
sortFunction = function(a, b){
if(a.name.toLowerCase().indexOf(filter) !== -1 && b.name.toLowerCase().indexOf(filter) !== -1){
@ -532,7 +539,6 @@ function initView(){
applyView();
}
if(document.documentElement.clientWidth < 500){
objectsContainer.innerHTML = "";
entriesListShown = false;
@ -591,7 +597,7 @@ function initView(){
}
}
function render(){
async function render(){
context.clearRect(0, 0, canvas.width, canvas.height);
@ -636,6 +642,29 @@ function initView(){
context.globalCompositeOperation = "source-out";
context.drawImage(backgroundCanvas, 0, 0);
if(hovered.length === 1 && hovered[0].path.length && hovered[0].overrideImage){
let undisputableHovered = hovered[0];
// Find the left-topmost point of all the paths
let entryPosition = getPositionOfEntry(undisputableHovered);
if(entryPosition){
const [startX, startY] = entryPosition;
let overrideImage = new Image();
const loadingPromise = new Promise((res, rej) => {
overrideImage.onerror = rej;
overrideImage.onload = res;
});
overrideImage.src = "imageOverrides/" + undisputableHovered.overrideImage;
try{
await loadingPromise;
context.globalCompositeOperation = "source-over";
context.drawImage(overrideImage, startX, startY);
}catch(ex){
console.log("Cannot override image.");
console.log(ex);
}
}
}
for(var i = 0; i < hovered.length; i++){
var path = hovered[i].path;

View file

@ -34,7 +34,7 @@
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<link href="./_css/style.css?version=1.0.32" rel="stylesheet" type="text/css" media="all">
<link href="./_css/style.css?version=1.0.33" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<div id="wrapper">
@ -54,15 +54,6 @@ <h1>The 2022 /r/place Atlas</h1>
Code by <a href="https://draemm.li/various/place-atlas/" target="_blank" rel="author">Roland Rytz</a>. Source on <a target="_blank" href="https://github.com/RolandR/place-atlas">GitHub</a> (<a target="_blank" href="https://github.com/Codixer/place-atlas">2022 Version Github</a>).
</div>
<div class="overlay" id="bitcoinOverlay">
<div id="bitcoinWindow">
<h2>My Bitcoin Address</h2>
<img src="./_img/bitcoinQR.png" height="300" width="300">
<input type="text" onclick="this.select();" readonly value="1DnBGYpH6HZYHvpCq3QqqtH1HxwwVe2QxN">
<br>
<button id="closeBitcoinButton">Close</button>
</div>
</div>
<div id="aboutContainer">
<a id="aboutBackButton" href="./">&lt; Back to the Atlas</a>
@ -76,19 +67,18 @@ <h2 id="abouth2">The 2022 /r/place Atlas</h2>
<p>This is an Atlas aiming to chart all the artworks created during the <a href="https://www.reddit.com/r/place/">/r/place</a> April's fools event on <a href="https://www.reddit.com/" target="_blank">Reddit</a> in 2022.</p>
<p>The original code was developed by <a href="/" target="_blank" rel="author">Roland Rytz</a> (<a href="mailto:roland.rytz@gmail.com" target="_blank">mail</a>, <a href="https://reddit.com/user/draemmli/" target="_blank">reddit</a>) and is available under the free <a href="https://www.gnu.org/licenses/agpl-3.0.en.html" target="_blank">AGPL license</a> on <a target="_blank" href="https://github.com/RolandR/place-atlas">GitHub</a>.</p>
<br>
<p>The currently maintained version of the website is managed by <a href="/" target="_blank" rel="author">Stefano Haagmans</a> and is obtainable under the same license within a <a target="_blank" href="https://github.com/Codixer/place-atlas">Github Fork</a>.</p>
<p>Image's provided by <a target="_blank" href="https://place.thatguyalex.com/">Alex Tsernoh</a></p>.
<p>The currently maintained version of the website is managed by <a href="/" target="_blank" rel="author">Stefano Haagmans</a> and is obtainable under the same license within a <a target="_blank" href="https://github.com/placeAtlas/atlas">Github Fork</a>.</p>. Image's provided by <a target="_blank" href="https://place.thatguyalex.com/">Alex Tsernoh</a></p>.
<p>Maintaining and updating the website takes work, but I enjoy doing it for free and giving this to people. But if you would like to support me, or the people who helped me with contributions to this project. You're free to support us though <a target="_blank" href="https://paypal.me/codixer">Paypal</a>. (I don't have bitcoin)</p>
<p>To maintain the same tradition, I will also be offering stickers to anyone donating more then 20$ (Due to the size increase). But, you're not forced to do anything! This only shows appreciation to us and the people who've worked on this project</p>
<br>
<p>Roland Rytz worked on the Atlas full-time (and more!) for over two weeks during the 2017 r/place event.</p>
<p>If you'd like to support Roland, you can do so by <a target="_blank" href="https://paypal.me/draemmli">PayPal</a> or via <a title="Click to see his address." id="bitcoinButton" role="button">Bitcoin</a>.</p>
<p>If you'd like to support Roland, you can do so by <a target="_blank" href="https://paypal.me/draemmli">PayPal</a>.</p>
<p>If you donate more than 10(€/$/CHF/mBTC), He'll (hopefully) send you a nice sticker of the Place canvas! (2017 one)</p>
<p id="bitcoinNotice">If you donate by Bitcoin and want a 2017 sticker, please send him a<br>message with your Bitcoin address <i>before</i> you make the transaction!</a>
<h2>How to contribute</h2>
<p>The /r/Place Atlas project relies on user contributions.</p>
<p>To contribute a label for an artwork, please read <a href="https://www.reddit.com/r/placeAtlas2/comments/tu203o/how_to_contribute/" target="_blank">this post on reddit</a> to learn how to submit a new entry.</p>
<p>Alternatively, contributions can be made directly on <a href="https://github.com/Codixer/place-atlas/blob/master/CONTRIBUTING.md">GitHub</a>.</p>
<p>Alternatively, contributions can be made directly on <a href="https://github.com/placeAtlas/atlas/blob/master/CONTRIBUTING.md">GitHub</a>.</p>
<p>The <a href="https://reddit.com/r/placeAtlas2/" target="_blank">/r/placeAtlas2</a> subreddit is also the place to submit all bug reports, feature requests or questions.</p>
@ -103,785 +93,12 @@ <h2>r/placeAtlas2 (Current) Contributors and Maintainers</h2>
<p>The 2022 Atlas would not have been possible without the help of our reddit contributors. This section will be updated with all of the contributor's usernames.</p>
<p>Thank you to everyone who submitted new entries, amended existing ones, reported bugs and just supported the project in general.</p>
<h2>r/placeAtlas Contributors</h2>
<p>The original Atlas project would not have been possible without the help of the following 775 reddit users.</p>
<p>Thank you to everyone who submitted new entries, amended existing ones, reported bugs and just supported the project in general.</p>
<div id="contributors">
<a href="https://reddit.com/user/0011110000110011" target="_blank">0011110000110011</a>
<a href="https://reddit.com/user/10Sly10" target="_blank">10Sly10</a>
<a href="https://reddit.com/user/11tron" target="_blank">11tron</a>
<a href="https://reddit.com/user/12TripleAce12" target="_blank">12TripleAce12</a>
<a href="https://reddit.com/user/13rin" target="_blank">13rin</a>
<a href="https://reddit.com/user/3Dee8" target="_blank">3Dee8</a>
<a href="https://reddit.com/user/3juicypeaches" target="_blank">3juicypeaches</a>
<a href="https://reddit.com/user/7Jayme" target="_blank">7Jayme</a>
<a href="https://reddit.com/user/9kz7" target="_blank">9kz7</a>
<a href="https://reddit.com/user/accountnumb2" target="_blank">accountnumb2</a>
<a href="https://reddit.com/user/acdenh" target="_blank">acdenh</a>
<a href="https://reddit.com/user/adirosa" target="_blank">adirosa</a>
<a href="https://reddit.com/user/A_Dubious_Rat" target="_blank">A_Dubious_Rat</a>
<a href="https://reddit.com/user/Advanderar" target="_blank">Advanderar</a>
<a href="https://reddit.com/user/AdventureFreddy" target="_blank">AdventureFreddy</a>
<a href="https://reddit.com/user/advicefrog" target="_blank">advicefrog</a>
<a href="https://reddit.com/user/ae28" target="_blank">ae28</a>
<a href="https://reddit.com/user/aeqnai" target="_blank">aeqnai</a>
<a href="https://reddit.com/user/aerasalum" target="_blank">aerasalum</a>
<a href="https://reddit.com/user/aer-o" target="_blank">aer-o</a>
<a href="https://reddit.com/user/Against-The-Tide" target="_blank">Against-The-Tide</a>
<a href="https://reddit.com/user/AGeary" target="_blank">AGeary</a>
<a href="https://reddit.com/user/AgenderCaterpie" target="_blank">AgenderCaterpie</a>
<a href="https://reddit.com/user/agow" target="_blank">agow</a>
<a href="https://reddit.com/user/AhnQiraj" target="_blank">AhnQiraj</a>
<a href="https://reddit.com/user/AimHere" target="_blank">AimHere</a>
<a href="https://reddit.com/user/airelivre" target="_blank">airelivre</a>
<a href="https://reddit.com/user/Ajedi32" target="_blank">Ajedi32</a>
<a href="https://reddit.com/user/ak416" target="_blank">ak416</a>
<a href="https://reddit.com/user/AkkiV" target="_blank">AkkiV</a>
<a href="https://reddit.com/user/alb404" target="_blank">alb404</a>
<a href="https://reddit.com/user/alsoandanswer" target="_blank">alsoandanswer</a>
<a href="https://reddit.com/user/altitudinous" target="_blank">altitudinous</a>
<a href="https://reddit.com/user/altyr" target="_blank">altyr</a>
<a href="https://reddit.com/user/amazingpikachu_38" target="_blank">amazingpikachu_38</a>
<a href="https://reddit.com/user/amoliski" target="_blank">amoliski</a>
<a href="https://reddit.com/user/Andr3w246" target="_blank">Andr3w246</a>
<a href="https://reddit.com/user/anige" target="_blank">anige</a>
<a href="https://reddit.com/user/animalzhu" target="_blank">animalzhu</a>
<a href="https://reddit.com/user/anothermau5" target="_blank">anothermau5</a>
<a href="https://reddit.com/user/Aoeui344" target="_blank">Aoeui344</a>
<a href="https://reddit.com/user/AquaWolfGuy" target="_blank">AquaWolfGuy</a>
<a href="https://reddit.com/user/ardaozkal" target="_blank">ardaozkal</a>
<a href="https://reddit.com/user/ARGMonkey" target="_blank">ARGMonkey</a>
<a href="https://reddit.com/user/ArrowDusk" target="_blank">ArrowDusk</a>
<a href="https://reddit.com/user/Arsenalisbest" target="_blank">Arsenalisbest</a>
<a href="https://reddit.com/user/Artemis501" target="_blank">Artemis501</a>
<a href="https://reddit.com/user/AThousandTimesThis" target="_blank">AThousandTimesThis</a>
<a href="https://reddit.com/user/Atomfried" target="_blank">Atomfried</a>
<a href="https://reddit.com/user/AustinAuranymph" target="_blank">AustinAuranymph</a>
<a href="https://reddit.com/user/averhan" target="_blank">averhan</a>
<a href="https://reddit.com/user/aviole" target="_blank">aviole</a>
<a href="https://reddit.com/user/AwayNotAFK" target="_blank">AwayNotAFK</a>
<a href="https://reddit.com/user/Awookie90" target="_blank">Awookie90</a>
<a href="https://reddit.com/user/az04" target="_blank">az04</a>
<a href="https://reddit.com/user/BananaArms" target="_blank">BananaArms</a>
<a href="https://reddit.com/user/bananas_foster_paren" target="_blank">bananas_foster_paren</a>
<a href="https://reddit.com/user/Banggern" target="_blank">Banggern</a>
<a href="https://reddit.com/user/BattleFalcon" target="_blank">BattleFalcon</a>
<a href="https://reddit.com/user/bb010g" target="_blank">bb010g</a>
<a href="https://reddit.com/user/Ben_R_R" target="_blank">Ben_R_R</a>
<a href="https://reddit.com/user/Benutzeraccount" target="_blank">Benutzeraccount</a>
<a href="https://reddit.com/user/Bermanator" target="_blank">Bermanator</a>
<a href="https://reddit.com/user/BiBoetzke" target="_blank">BiBoetzke</a>
<a href="https://reddit.com/user/Bigfoot_727" target="_blank">Bigfoot_727</a>
<a href="https://reddit.com/user/biggiemac42" target="_blank">biggiemac42</a>
<a href="https://reddit.com/user/Bigmatti" target="_blank">Bigmatti</a>
<a href="https://reddit.com/user/bilwis" target="_blank">bilwis</a>
<a href="https://reddit.com/user/Birdenchops" target="_blank">Birdenchops</a>
<a href="https://reddit.com/user/BlackSynder" target="_blank">BlackSynder</a>
<a href="https://reddit.com/user/blaiseisgood" target="_blank">blaiseisgood</a>
<a href="https://reddit.com/user/Blinkle" target="_blank">Blinkle</a>
<a href="https://reddit.com/user/blobfish2000" target="_blank">blobfish2000</a>
<a href="https://reddit.com/user/Bloo-jay" target="_blank">Bloo-jay</a>
<a href="https://reddit.com/user/BobisOnlyBob" target="_blank">BobisOnlyBob</a>
<a href="https://reddit.com/user/BobKellyLikes" target="_blank">BobKellyLikes</a>
<a href="https://reddit.com/user/Bombpants" target="_blank">Bombpants</a>
<a href="https://reddit.com/user/Bonecuss" target="_blank">Bonecuss</a>
<a href="https://reddit.com/user/boomEXPL0SI0N" target="_blank">boomEXPL0SI0N</a>
<a href="https://reddit.com/user/BoredPudding" target="_blank">BoredPudding</a>
<a href="https://reddit.com/user/br61" target="_blank">br61</a>
<a href="https://reddit.com/user/BrennanofOrange" target="_blank">BrennanofOrange</a>
<a href="https://reddit.com/user/BRKcan" target="_blank">BRKcan</a>
<a href="https://reddit.com/user/BroderFelix" target="_blank">BroderFelix</a>
<a href="https://reddit.com/user/bsa86" target="_blank">bsa86</a>
<a href="https://reddit.com/user/Bshow" target="_blank">Bshow</a>
<a href="https://reddit.com/user/BurrritoPrincess" target="_blank">BurrritoPrincess</a>
<a href="https://reddit.com/user/c10701" target="_blank">c10701</a>
<a href="https://reddit.com/user/c499" target="_blank">c499</a>
<a href="https://reddit.com/user/callosciurini" target="_blank">callosciurini</a>
<a href="https://reddit.com/user/Camuu" target="_blank">Camuu</a>
<a href="https://reddit.com/user/Capslock2000" target="_blank">Capslock2000</a>
<a href="https://reddit.com/user/captainmagmas" target="_blank">captainmagmas</a>
<a href="https://reddit.com/user/CaptainMeme" target="_blank">CaptainMeme</a>
<a href="https://reddit.com/user/Cardsfan36" target="_blank">Cardsfan36</a>
<a href="https://reddit.com/user/Carrotzy" target="_blank">Carrotzy</a>
<a href="https://reddit.com/user/Carsmaniac" target="_blank">Carsmaniac</a>
<a href="https://reddit.com/user/CarVac" target="_blank">CarVac</a>
<a href="https://reddit.com/user/cawolf_kreo" target="_blank">cawolf_kreo</a>
<a href="https://reddit.com/user/cboland" target="_blank">cboland</a>
<a href="https://reddit.com/user/ccarlyon" target="_blank">ccarlyon</a>
<a href="https://reddit.com/user/Cdup07" target="_blank">Cdup07</a>
<a href="https://reddit.com/user/cerealley" target="_blank">cerealley</a>
<a href="https://reddit.com/user/CeSium_Shark" target="_blank">CeSium_Shark</a>
<a href="https://reddit.com/user/Ch1mpy" target="_blank">Ch1mpy</a>
<a href="https://reddit.com/user/ChalkCultPen" target="_blank">ChalkCultPen</a>
<a href="https://reddit.com/user/chaosof99" target="_blank">chaosof99</a>
<a href="https://reddit.com/user/Chaoticblue3" target="_blank">Chaoticblue3</a>
<a href="https://reddit.com/user/ChartreuseLotus" target="_blank">ChartreuseLotus</a>
<a href="https://reddit.com/user/chaz905" target="_blank">chaz905</a>
<a href="https://reddit.com/user/Chipbonk" target="_blank">Chipbonk</a>
<a href="https://reddit.com/user/ChopSueyWasTaken" target="_blank">ChopSueyWasTaken</a>
<a href="https://reddit.com/user/Chosenwaffle" target="_blank">Chosenwaffle</a>
<a href="https://reddit.com/user/-Chowder-" target="_blank">-Chowder-</a>
<a href="https://reddit.com/user/Chrnan6710" target="_blank">Chrnan6710</a>
<a href="https://reddit.com/user/clank201" target="_blank">clank201</a>
<a href="https://reddit.com/user/Clivious" target="_blank">Clivious</a>
<a href="https://reddit.com/user/cmrx64" target="_blank">cmrx64</a>
<a href="https://reddit.com/user/Codile" target="_blank">Codile</a>
<a href="https://reddit.com/user/CommunistMountain" target="_blank">CommunistMountain</a>
<a href="https://reddit.com/user/cookiesnshit" target="_blank">cookiesnshit</a>
<a href="https://reddit.com/user/coolguy2829" target="_blank">coolguy2829</a>
<a href="https://reddit.com/user/Corrufiles" target="_blank">Corrufiles</a>
<a href="https://reddit.com/user/CptGato9" target="_blank">CptGato9</a>
<a href="https://reddit.com/user/Creativation" target="_blank">Creativation</a>
<a href="https://reddit.com/user/CrimsonKing790" target="_blank">CrimsonKing790</a>
<a href="https://reddit.com/user/criticalpwnage" target="_blank">criticalpwnage</a>
<a href="https://reddit.com/user/CriusNyx" target="_blank">CriusNyx</a>
<a href="https://reddit.com/user/CuBaN_MiSsIlE_CrISIS" target="_blank">CuBaN_MiSsIlE_CrISIS</a>
<a href="https://reddit.com/user/cubi1oh" target="_blank">cubi1oh</a>
<a href="https://reddit.com/user/Cutiepia" target="_blank">Cutiepia</a>
<a href="https://reddit.com/user/CXNoc" target="_blank">CXNoc</a>
<a href="https://reddit.com/user/Cyander" target="_blank">Cyander</a>
<a href="https://reddit.com/user/D4nkPepes" target="_blank">D4nkPepes</a>
<a href="https://reddit.com/user/D4WNIT" target="_blank">D4WNIT</a>
<a href="https://reddit.com/user/daboswinney123" target="_blank">daboswinney123</a>
<a href="https://reddit.com/user/dalmins" target="_blank">dalmins</a>
<a href="https://reddit.com/user/DamonFibers" target="_blank">DamonFibers</a>
<a href="https://reddit.com/user/danilreddit" target="_blank">danilreddit</a>
<a href="https://reddit.com/user/DankeMcMemes" target="_blank">DankeMcMemes</a>
<a href="https://reddit.com/user/DanniPhoenix" target="_blank">DanniPhoenix</a>
<a href="https://reddit.com/user/darkmushu" target="_blank">darkmushu</a>
<a href="https://reddit.com/user/datividon" target="_blank">datividon</a>
<a href="https://reddit.com/user/davick" target="_blank">davick</a>
<a href="https://reddit.com/user/DavidGoAway" target="_blank">DavidGoAway</a>
<a href="https://reddit.com/user/davidjl123" target="_blank">davidjl123</a>
<a href="https://reddit.com/user/Davuun" target="_blank">Davuun</a>
<a href="https://reddit.com/user/deckard58" target="_blank">deckard58</a>
<a href="https://reddit.com/user/DefinitiveDubs" target="_blank">DefinitiveDubs</a>
<a href="https://reddit.com/user/defog88" target="_blank">defog88</a>
<a href="https://reddit.com/user/Deiviux_eu" target="_blank">Deiviux_eu</a>
<a href="https://reddit.com/user/delicious_truffles" target="_blank">delicious_truffles</a>
<a href="https://reddit.com/user/DeltaCharlieNiner" target="_blank">DeltaCharlieNiner</a>
<a href="https://reddit.com/user/Denmarkdot" target="_blank">Denmarkdot</a>
<a href="https://reddit.com/user/Derek_Goons" target="_blank">Derek_Goons</a>
<a href="https://reddit.com/user/DestinyBolty" target="_blank">DestinyBolty</a>
<a href="https://reddit.com/user/DevilScarlet" target="_blank">DevilScarlet</a>
<a href="https://reddit.com/user/DF44" target="_blank">DF44</a>
<a href="https://reddit.com/user/Diamond_Otter" target="_blank">Diamond_Otter</a>
<a href="https://reddit.com/user/dienamight" target="_blank">dienamight</a>
<a href="https://reddit.com/user/DiplomaticMeatball" target="_blank">DiplomaticMeatball</a>
<a href="https://reddit.com/user/dirtydoughnut" target="_blank">dirtydoughnut</a>
<a href="https://reddit.com/user/disignore" target="_blank">disignore</a>
<a href="https://reddit.com/user/DistraughtStrawberry" target="_blank">DistraughtStrawberry</a>
<a href="https://reddit.com/user/DJMooray" target="_blank">DJMooray</a>
<a href="https://reddit.com/user/dogdogdogdogdogdo" target="_blank">dogdogdogdogdogdo</a>
<a href="https://reddit.com/user/doggoboi" target="_blank">doggoboi</a>
<a href="https://reddit.com/user/Dogmaster707" target="_blank">Dogmaster707</a>
<a href="https://reddit.com/user/dojure" target="_blank">dojure</a>
<a href="https://reddit.com/user/DokomoS" target="_blank">DokomoS</a>
<a href="https://reddit.com/user/dolphinesque" target="_blank">dolphinesque</a>
<a href="https://reddit.com/user/donwilson" target="_blank">donwilson</a>
<a href="https://reddit.com/user/DoomAngelBlade" target="_blank">DoomAngelBlade</a>
<a href="https://reddit.com/user/DorkMage" target="_blank">DorkMage</a>
<a href="https://reddit.com/user/DoubleFried" target="_blank">DoubleFried</a>
<a href="https://reddit.com/user/DoYouEvenNep" target="_blank">DoYouEvenNep</a>
<a href="https://reddit.com/user/draemmli" target="_blank">draemmli</a>
<a href="https://reddit.com/user/DragoniteTamer" target="_blank">DragoniteTamer</a>
<a href="https://reddit.com/user/DragonPlante" target="_blank">DragonPlante</a>
<a href="https://reddit.com/user/dries007" target="_blank">dries007</a>
<a href="https://reddit.com/user/Drilnoth" target="_blank">Drilnoth</a>
<a href="https://reddit.com/user/DrKnockOut99" target="_blank">DrKnockOut99</a>
<a href="https://reddit.com/user/drpepper7557" target="_blank">drpepper7557</a>
<a href="https://reddit.com/user/Dr_Spangle" target="_blank">Dr_Spangle</a>
<a href="https://reddit.com/user/-DuckMuffins-" target="_blank">-DuckMuffins-</a>
<a href="https://reddit.com/user/durron597" target="_blank">durron597</a>
<a href="https://reddit.com/user/duublydoo" target="_blank">duublydoo</a>
<a href="https://reddit.com/user/-DvD-" target="_blank">-DvD-</a>
<a href="https://reddit.com/user/DynamicPotato11885" target="_blank">DynamicPotato11885</a>
<a href="https://reddit.com/user/EasternMouse" target="_blank">EasternMouse</a>
<a href="https://reddit.com/user/echo-flower" target="_blank">echo-flower</a>
<a href="https://reddit.com/user/Ed3IsTheCode" target="_blank">Ed3IsTheCode</a>
<a href="https://reddit.com/user/Edgar_Allan_Pho" target="_blank">Edgar_Allan_Pho</a>
<a href="https://reddit.com/user/EdgelordAllanPoe" target="_blank">EdgelordAllanPoe</a>
<a href="https://reddit.com/user/Edgeofnothing" target="_blank">Edgeofnothing</a>
<a href="https://reddit.com/user/EdulokoX" target="_blank">EdulokoX</a>
<a href="https://reddit.com/user/Eggy216" target="_blank">Eggy216</a>
<a href="https://reddit.com/user/Eiggs" target="_blank">Eiggs</a>
<a href="https://reddit.com/user/eikons" target="_blank">eikons</a>
<a href="https://reddit.com/user/Ekint" target="_blank">Ekint</a>
<a href="https://reddit.com/user/ElectricCrash" target="_blank">ElectricCrash</a>
<a href="https://reddit.com/user/elendiastarman" target="_blank">elendiastarman</a>
<a href="https://reddit.com/user/elfy_grim" target="_blank">elfy_grim</a>
<a href="https://reddit.com/user/Ellardy" target="_blank">Ellardy</a>
<a href="https://reddit.com/user/ElliottB1" target="_blank">ElliottB1</a>
<a href="https://reddit.com/user/Emily006" target="_blank">Emily006</a>
<a href="https://reddit.com/user/Emiwater" target="_blank">Emiwater</a>
<a href="https://reddit.com/user/Empty_Engie" target="_blank">Empty_Engie</a>
<a href="https://reddit.com/user/engelk" target="_blank">engelk</a>
<a href="https://reddit.com/user/ente3000" target="_blank">ente3000</a>
<a href="https://reddit.com/user/epicbualls" target="_blank">epicbualls</a>
<a href="https://reddit.com/user/EpicManiac" target="_blank">EpicManiac</a>
<a href="https://reddit.com/user/EpicRive" target="_blank">EpicRive</a>
<a href="https://reddit.com/user/EQU5VX" target="_blank">EQU5VX</a>
<a href="https://reddit.com/user/ericbthomas86" target="_blank">ericbthomas86</a>
<a href="https://reddit.com/user/escapeepacse" target="_blank">escapeepacse</a>
<a href="https://reddit.com/user/eutral" target="_blank">eutral</a>
<a href="https://reddit.com/user/F33N1X" target="_blank">F33N1X</a>
<a href="https://reddit.com/user/faerfderfe" target="_blank">faerfderfe</a>
<a href="https://reddit.com/user/Faertlocks" target="_blank">Faertlocks</a>
<a href="https://reddit.com/user/FagioliSoup" target="_blank">FagioliSoup</a>
<a href="https://reddit.com/user/famousnovel" target="_blank">famousnovel</a>
<a href="https://reddit.com/user/fantasyMLShelper" target="_blank">fantasyMLShelper</a>
<a href="https://reddit.com/user/fcnm" target="_blank">fcnm</a>
<a href="https://reddit.com/user/FelixLive44" target="_blank">FelixLive44</a>
<a href="https://reddit.com/user/Fennexin" target="_blank">Fennexin</a>
<a href="https://reddit.com/user/ffmad" target="_blank">ffmad</a>
<a href="https://reddit.com/user/finder787" target="_blank">finder787</a>
<a href="https://reddit.com/user/fingertipslip" target="_blank">fingertipslip</a>
<a href="https://reddit.com/user/Firebrass11" target="_blank">Firebrass11</a>
<a href="https://reddit.com/user/FishFruit14" target="_blank">FishFruit14</a>
<a href="https://reddit.com/user/FishInferno" target="_blank">FishInferno</a>
<a href="https://reddit.com/user/Flametris" target="_blank">Flametris</a>
<a href="https://reddit.com/user/Flexo013" target="_blank">Flexo013</a>
<a href="https://reddit.com/user/flops031" target="_blank">flops031</a>
<a href="https://reddit.com/user/Flopster0" target="_blank">Flopster0</a>
<a href="https://reddit.com/user/flotato11" target="_blank">flotato11</a>
<a href="https://reddit.com/user/Forny008" target="_blank">Forny008</a>
<a href="https://reddit.com/user/francineismyname" target="_blank">francineismyname</a>
<a href="https://reddit.com/user/Frederic94500" target="_blank">Frederic94500</a>
<a href="https://reddit.com/user/Frky-" target="_blank">Frky-</a>
<a href="https://reddit.com/user/frthplnt" target="_blank">frthplnt</a>
<a href="https://reddit.com/user/Fruit_Loopita" target="_blank">Fruit_Loopita</a>
<a href="https://reddit.com/user/fuckyou_m8" target="_blank">fuckyou_m8</a>
<a href="https://reddit.com/user/Funcolours" target="_blank">Funcolours</a>
<a href="https://reddit.com/user/FuzzyCatPotato" target="_blank">FuzzyCatPotato</a>
<a href="https://reddit.com/user/Galapagon" target="_blank">Galapagon</a>
<a href="https://reddit.com/user/Galaruss" target="_blank">Galaruss</a>
<a href="https://reddit.com/user/GammaGames" target="_blank">GammaGames</a>
<a href="https://reddit.com/user/gaumut" target="_blank">gaumut</a>
<a href="https://reddit.com/user/GeneralHar" target="_blank">GeneralHar</a>
<a href="https://reddit.com/user/-generic-username-" target="_blank">-generic-username-</a>
<a href="https://reddit.com/user/Geosage" target="_blank">Geosage</a>
<a href="https://reddit.com/user/GigaArchiv" target="_blank">GigaArchiv</a>
<a href="https://reddit.com/user/gigazelle" target="_blank">gigazelle</a>
<a href="https://reddit.com/user/Ginephobie" target="_blank">Ginephobie</a>
<a href="https://reddit.com/user/giraffeking" target="_blank">giraffeking</a>
<a href="https://reddit.com/user/glyblblbl" target="_blank">glyblblbl</a>
<a href="https://reddit.com/user/Gnome_of_Nome" target="_blank">Gnome_of_Nome</a>
<a href="https://reddit.com/user/goldenretrieverz" target="_blank">goldenretrieverz</a>
<a href="https://reddit.com/user/GoldMoat" target="_blank">GoldMoat</a>
<a href="https://reddit.com/user/Gon11" target="_blank">Gon11</a>
<a href="https://reddit.com/user/Goofair" target="_blank">Goofair</a>
<a href="https://reddit.com/user/GRANDMA_FISTER" target="_blank">GRANDMA_FISTER</a>
<a href="https://reddit.com/user/Grapengeter" target="_blank">Grapengeter</a>
<a href="https://reddit.com/user/Greybol3" target="_blank">Greybol3</a>
<a href="https://reddit.com/user/GrygrFlzr" target="_blank">GrygrFlzr</a>
<a href="https://reddit.com/user/GryptpypeThynne" target="_blank">GryptpypeThynne</a>
<a href="https://reddit.com/user/G_sten" target="_blank">G_sten</a>
<a href="https://reddit.com/user/gwennoirs" target="_blank">gwennoirs</a>
<a href="https://reddit.com/user/h313" target="_blank">h313</a>
<a href="https://reddit.com/user/hack_of_ya" target="_blank">hack_of_ya</a>
<a href="https://reddit.com/user/HacksawUnit" target="_blank">HacksawUnit</a>
<a href="https://reddit.com/user/Hacodaro" target="_blank">Hacodaro</a>
<a href="https://reddit.com/user/hairyliberal" target="_blank">hairyliberal</a>
<a href="https://reddit.com/user/Halefall" target="_blank">Halefall</a>
<a href="https://reddit.com/user/Hazzat" target="_blank">Hazzat</a>
<a href="https://reddit.com/user/Helen___Keller" target="_blank">Helen___Keller</a>
<a href="https://reddit.com/user/HellBanana" target="_blank">HellBanana</a>
<a href="https://reddit.com/user/HeyGNC" target="_blank">HeyGNC</a>
<a href="https://reddit.com/user/HitMonChon" target="_blank">HitMonChon</a>
<a href="https://reddit.com/user/Hizaia" target="_blank">Hizaia</a>
<a href="https://reddit.com/user/hoeskioeh" target="_blank">hoeskioeh</a>
<a href="https://reddit.com/user/Hologuardian" target="_blank">Hologuardian</a>
<a href="https://reddit.com/user/Hoodiebashoo" target="_blank">Hoodiebashoo</a>
<a href="https://reddit.com/user/Horsefur" target="_blank">Horsefur</a>
<a href="https://reddit.com/user/Hubzee" target="_blank">Hubzee</a>
<a href="https://reddit.com/user/huezinator" target="_blank">huezinator</a>
<a href="https://reddit.com/user/hum4n4" target="_blank">hum4n4</a>
<a href="https://reddit.com/user/IamLoafMan" target="_blank">IamLoafMan</a>
<a href="https://reddit.com/user/I_am_Maslak" target="_blank">I_am_Maslak</a>
<a href="https://reddit.com/user/i_am_vd40" target="_blank">i_am_vd40</a>
<a href="https://reddit.com/user/IDoNt_CaR3" target="_blank">IDoNt_CaR3</a>
<a href="https://reddit.com/user/IG-64" target="_blank">IG-64</a>
<a href="https://reddit.com/user/Ihopenoonetookmyname" target="_blank">Ihopenoonetookmyname</a>
<a href="https://reddit.com/user/IllJustPutThisIGuess" target="_blank">IllJustPutThisIGuess</a>
<a href="https://reddit.com/user/ILoveMeSomeChocolate" target="_blank">ILoveMeSomeChocolate</a>
<a href="https://reddit.com/user/ImNotHimBut" target="_blank">ImNotHimBut</a>
<a href="https://reddit.com/user/INFEKTEK" target="_blank">INFEKTEK</a>
<a href="https://reddit.com/user/Infernette" target="_blank">Infernette</a>
<a href="https://reddit.com/user/Infinite901" target="_blank">Infinite901</a>
<a href="https://reddit.com/user/insert_funny_here" target="_blank">insert_funny_here</a>
<a href="https://reddit.com/user/insuperabilis" target="_blank">insuperabilis</a>
<a href="https://reddit.com/user/Irockz" target="_blank">Irockz</a>
<a href="https://reddit.com/user/Itonoma" target="_blank">Itonoma</a>
<a href="https://reddit.com/user/iveroi" target="_blank">iveroi</a>
<a href="https://reddit.com/user/i_was_actually_phone" target="_blank">i_was_actually_phone</a>
<a href="https://reddit.com/user/J7ang" target="_blank">J7ang</a>
<a href="https://reddit.com/user/Jackflash01" target="_blank">Jackflash01</a>
<a href="https://reddit.com/user/Jaffixan" target="_blank">Jaffixan</a>
<a href="https://reddit.com/user/jakej1097" target="_blank">jakej1097</a>
<a href="https://reddit.com/user/Jako3334074" target="_blank">Jako3334074</a>
<a href="https://reddit.com/user/Jakobs_Biscuit" target="_blank">Jakobs_Biscuit</a>
<a href="https://reddit.com/user/jankystats" target="_blank">jankystats</a>
<a href="https://reddit.com/user/Jaxooon" target="_blank">Jaxooon</a>
<a href="https://reddit.com/user/jazzacakes" target="_blank">jazzacakes</a>
<a href="https://reddit.com/user/jesrivera95" target="_blank">jesrivera95</a>
<a href="https://reddit.com/user/jlim201" target="_blank">jlim201</a>
<a href="https://reddit.com/user/J-Nastee" target="_blank">J-Nastee</a>
<a href="https://reddit.com/user/_JO3Y" target="_blank">_JO3Y</a>
<a href="https://reddit.com/user/Joe4422" target="_blank">Joe4422</a>
<a href="https://reddit.com/user/JoeWIthTheGlasses" target="_blank">JoeWIthTheGlasses</a>
<a href="https://reddit.com/user/jojo6311" target="_blank">jojo6311</a>
<a href="https://reddit.com/user/jonahc18043" target="_blank">jonahc18043</a>
<a href="https://reddit.com/user/jonnys62" target="_blank">jonnys62</a>
<a href="https://reddit.com/user/jopetiner" target="_blank">jopetiner</a>
<a href="https://reddit.com/user/JorWat" target="_blank">JorWat</a>
<a href="https://reddit.com/user/josersrc" target="_blank">josersrc</a>
<a href="https://reddit.com/user/joshram_" target="_blank">joshram_</a>
<a href="https://reddit.com/user/j_sunrise" target="_blank">j_sunrise</a>
<a href="https://reddit.com/user/JuanAy" target="_blank">JuanAy</a>
<a href="https://reddit.com/user/julezsource" target="_blank">julezsource</a>
<a href="https://reddit.com/user/Jumpyboy" target="_blank">Jumpyboy</a>
<a href="https://reddit.com/user/juririm" target="_blank">juririm</a>
<a href="https://reddit.com/user/Just_A_Mainer" target="_blank">Just_A_Mainer</a>
<a href="https://reddit.com/user/justpeep" target="_blank">justpeep</a>
<a href="https://reddit.com/user/kage_yas" target="_blank">kage_yas</a>
<a href="https://reddit.com/user/Kapostel" target="_blank">Kapostel</a>
<a href="https://reddit.com/user/Karasuni" target="_blank">Karasuni</a>
<a href="https://reddit.com/user/Karpfador" target="_blank">Karpfador</a>
<a href="https://reddit.com/user/k_awah" target="_blank">k_awah</a>
<a href="https://reddit.com/user/Kazoology" target="_blank">Kazoology</a>
<a href="https://reddit.com/user/kDart007" target="_blank">kDart007</a>
<a href="https://reddit.com/user/Kdog0073" target="_blank">Kdog0073</a>
<a href="https://reddit.com/user/kebabtent" target="_blank">kebabtent</a>
<a href="https://reddit.com/user/Kelsew" target="_blank">Kelsew</a>
<a href="https://reddit.com/user/Ketcchup" target="_blank">Ketcchup</a>
<a href="https://reddit.com/user/khbre" target="_blank">khbre</a>
<a href="https://reddit.com/user/Kidney05" target="_blank">Kidney05</a>
<a href="https://reddit.com/user/Killburndeluxe" target="_blank">Killburndeluxe</a>
<a href="https://reddit.com/user/Kiloku" target="_blank">Kiloku</a>
<a href="https://reddit.com/user/kimilil" target="_blank">kimilil</a>
<a href="https://reddit.com/user/kingcole436" target="_blank">kingcole436</a>
<a href="https://reddit.com/user/Kiptus" target="_blank">Kiptus</a>
<a href="https://reddit.com/user/KittensAnStuff" target="_blank">KittensAnStuff</a>
<a href="https://reddit.com/user/klarcola1" target="_blank">klarcola1</a>
<a href="https://reddit.com/user/kodykid168" target="_blank">kodykid168</a>
<a href="https://reddit.com/user/Koftek" target="_blank">Koftek</a>
<a href="https://reddit.com/user/Krysara" target="_blank">Krysara</a>
<a href="https://reddit.com/user/KRZ_759" target="_blank">KRZ_759</a>
<a href="https://reddit.com/user/kspehik" target="_blank">kspehik</a>
<a href="https://reddit.com/user/Kulpas" target="_blank">Kulpas</a>
<a href="https://reddit.com/user/kumochisonan" target="_blank">kumochisonan</a>
<a href="https://reddit.com/user/Kunfuxu" target="_blank">Kunfuxu</a>
<a href="https://reddit.com/user/kyclef" target="_blank">kyclef</a>
<a href="https://reddit.com/user/LacsiraxAriscal" target="_blank">LacsiraxAriscal</a>
<a href="https://reddit.com/user/ladala99" target="_blank">ladala99</a>
<a href="https://reddit.com/user/ladydemoiselle" target="_blank">ladydemoiselle</a>
<a href="https://reddit.com/user/laikamonkey" target="_blank">laikamonkey</a>
<a href="https://reddit.com/user/laserengine67" target="_blank">laserengine67</a>
<a href="https://reddit.com/user/Lateasusual_" target="_blank">Lateasusual_</a>
<a href="https://reddit.com/user/Leash_Me_Blue" target="_blank">Leash_Me_Blue</a>
<a href="https://reddit.com/user/Legendosh" target="_blank">Legendosh</a>
<a href="https://reddit.com/user/legoclone09" target="_blank">legoclone09</a>
<a href="https://reddit.com/user/leofar" target="_blank">leofar</a>
<a href="https://reddit.com/user/Leostereo" target="_blank">Leostereo</a>
<a href="https://reddit.com/user/letransient" target="_blank">letransient</a>
<a href="https://reddit.com/user/letsthrowawayit" target="_blank">letsthrowawayit</a>
<a href="https://reddit.com/user/lifesneverhumdrum" target="_blank">lifesneverhumdrum</a>
<a href="https://reddit.com/user/lightstridr" target="_blank">lightstridr</a>
<a href="https://reddit.com/user/lillod" target="_blank">lillod</a>
<a href="https://reddit.com/user/LilVinny" target="_blank">LilVinny</a>
<a href="https://reddit.com/user/LinesGuy2" target="_blank">LinesGuy2</a>
<a href="https://reddit.com/user/linschn" target="_blank">linschn</a>
<a href="https://reddit.com/user/LoboChefe" target="_blank">LoboChefe</a>
<a href="https://reddit.com/user/LogicalDrinks" target="_blank">LogicalDrinks</a>
<a href="https://reddit.com/user/Lombric" target="_blank">Lombric</a>
<a href="https://reddit.com/user/loomynartylenny" target="_blank">loomynartylenny</a>
<a href="https://reddit.com/user/lorddane" target="_blank">lorddane</a>
<a href="https://reddit.com/user/luis_yt" target="_blank">luis_yt</a>
<a href="https://reddit.com/user/Lukkiebe" target="_blank">Lukkiebe</a>
<a href="https://reddit.com/user/Lunnes" target="_blank">Lunnes</a>
<a href="https://reddit.com/user/Lyricalyrics" target="_blank">Lyricalyrics</a>
<a href="https://reddit.com/user/M4RV1N_" target="_blank">M4RV1N_</a>
<a href="https://reddit.com/user/MachaHack" target="_blank">MachaHack</a>
<a href="https://reddit.com/user/MadMikeStar" target="_blank">MadMikeStar</a>
<a href="https://reddit.com/user/madokamadokamadoka" target="_blank">madokamadokamadoka</a>
<a href="https://reddit.com/user/madoxster" target="_blank">madoxster</a>
<a href="https://reddit.com/user/magaruis" target="_blank">magaruis</a>
<a href="https://reddit.com/user/Magmorphic" target="_blank">Magmorphic</a>
<a href="https://reddit.com/user/MagWhiz" target="_blank">MagWhiz</a>
<a href="https://reddit.com/user/makzk" target="_blank">makzk</a>
<a href="https://reddit.com/user/malicious-monkey" target="_blank">malicious-monkey</a>
<a href="https://reddit.com/user/MalinwaFan94" target="_blank">MalinwaFan94</a>
<a href="https://reddit.com/user/manawesome326" target="_blank">manawesome326</a>
<a href="https://reddit.com/user/MansplainingSweden" target="_blank">MansplainingSweden</a>
<a href="https://reddit.com/user/mardulak" target="_blank">mardulak</a>
<a href="https://reddit.com/user/Marein" target="_blank">Marein</a>
<a href="https://reddit.com/user/mateusmachado" target="_blank">mateusmachado</a>
<a href="https://reddit.com/user/Matlox" target="_blank">Matlox</a>
<a href="https://reddit.com/user/Matt111098" target="_blank">Matt111098</a>
<a href="https://reddit.com/user/Matti-Koopa" target="_blank">Matti-Koopa</a>
<a href="https://reddit.com/user/mattr555" target="_blank">mattr555</a>
<a href="https://reddit.com/user/mattsich" target="_blank">mattsich</a>
<a href="https://reddit.com/user/MauGx3" target="_blank">MauGx3</a>
<a href="https://reddit.com/user/Mdibble" target="_blank">Mdibble</a>
<a href="https://reddit.com/user/Mechanoman1" target="_blank">Mechanoman1</a>
<a href="https://reddit.com/user/MedicInDisquise" target="_blank">MedicInDisquise</a>
<a href="https://reddit.com/user/mediumKl" target="_blank">mediumKl</a>
<a href="https://reddit.com/user/MehKnight" target="_blank">MehKnight</a>
<a href="https://reddit.com/user/meitsionrappari" target="_blank">meitsionrappari</a>
<a href="https://reddit.com/user/MenacingBanjo" target="_blank">MenacingBanjo</a>
<a href="https://reddit.com/user/Metalbird2014" target="_blank">Metalbird2014</a>
<a href="https://reddit.com/user/MetalusVerne" target="_blank">MetalusVerne</a>
<a href="https://reddit.com/user/Meteowritten" target="_blank">Meteowritten</a>
<a href="https://reddit.com/user/_Metro" target="_blank">_Metro</a>
<a href="https://reddit.com/user/MetternichMarck" target="_blank">MetternichMarck</a>
<a href="https://reddit.com/user/MewTheConqueror" target="_blank">MewTheConqueror</a>
<a href="https://reddit.com/user/MichaelS10" target="_blank">MichaelS10</a>
<a href="https://reddit.com/user/Mightymushroom1" target="_blank">Mightymushroom1</a>
<a href="https://reddit.com/user/MigthyPanCake" target="_blank">MigthyPanCake</a>
<a href="https://reddit.com/user/Miitomud" target="_blank">Miitomud</a>
<a href="https://reddit.com/user/mikecraft900" target="_blank">mikecraft900</a>
<a href="https://reddit.com/user/mikusingularity" target="_blank">mikusingularity</a>
<a href="https://reddit.com/user/mimis123" target="_blank">mimis123</a>
<a href="https://reddit.com/user/Minecraft_Redstoning" target="_blank">Minecraft_Redstoning</a>
<a href="https://reddit.com/user/-Mishmisha-" target="_blank">-Mishmisha-</a>
<a href="https://reddit.com/user/MissLauralot" target="_blank">MissLauralot</a>
<a href="https://reddit.com/user/mithhunter55" target="_blank">mithhunter55</a>
<a href="https://reddit.com/user/MizGunner" target="_blank">MizGunner</a>
<a href="https://reddit.com/user/mobiledove" target="_blank">mobiledove</a>
<a href="https://reddit.com/user/ModJon" target="_blank">ModJon</a>
<a href="https://reddit.com/user/MoonShinez" target="_blank">MoonShinez</a>
<a href="https://reddit.com/user/MooperKills" target="_blank">MooperKills</a>
<a href="https://reddit.com/user/mossyymossyy" target="_blank">mossyymossyy</a>
<a href="https://reddit.com/user/mount2010" target="_blank">mount2010</a>
<a href="https://reddit.com/user/mpo9" target="_blank">mpo9</a>
<a href="https://reddit.com/user/mrbirtakim" target="_blank">mrbirtakim</a>
<a href="https://reddit.com/user/MrBrickBreak" target="_blank">MrBrickBreak</a>
<a href="https://reddit.com/user/MrDrWombat" target="_blank">MrDrWombat</a>
<a href="https://reddit.com/user/MrEaters" target="_blank">MrEaters</a>
<a href="https://reddit.com/user/MrPlem" target="_blank">MrPlem</a>
<a href="https://reddit.com/user/MrRandom999" target="_blank">MrRandom999</a>
<a href="https://reddit.com/user/MrRumdum" target="_blank">MrRumdum</a>
<a href="https://reddit.com/user/Murk1e" target="_blank">Murk1e</a>
<a href="https://reddit.com/user/mwr247" target="_blank">mwr247</a>
<a href="https://reddit.com/user/mybham" target="_blank">mybham</a>
<a href="https://reddit.com/user/MyCommentingAcccount" target="_blank">MyCommentingAcccount</a>
<a href="https://reddit.com/user/Myers747" target="_blank">Myers747</a>
<a href="https://reddit.com/user/mylittleplaceholder" target="_blank">mylittleplaceholder</a>
<a href="https://reddit.com/user/n1c4o7a5" target="_blank">n1c4o7a5</a>
<a href="https://reddit.com/user/nasheedsaleensawarim" target="_blank">nasheedsaleensawarim</a>
<a href="https://reddit.com/user/needarb" target="_blank">needarb</a>
<a href="https://reddit.com/user/needefsfolder" target="_blank">needefsfolder</a>
<a href="https://reddit.com/user/_negachin_" target="_blank">_negachin_</a>
<a href="https://reddit.com/user/neomyotragus" target="_blank">neomyotragus</a>
<a href="https://reddit.com/user/NFB42" target="_blank">NFB42</a>
<a href="https://reddit.com/user/Niautanor" target="_blank">Niautanor</a>
<a href="https://reddit.com/user/Nick12506" target="_blank">Nick12506</a>
<a href="https://reddit.com/user/NinjaWarriorFMIA" target="_blank">NinjaWarriorFMIA</a>
<a href="https://reddit.com/user/NIPPLE_POOP" target="_blank">NIPPLE_POOP</a>
<a href="https://reddit.com/user/nluken" target="_blank">nluken</a>
<a href="https://reddit.com/user/Noammac" target="_blank">Noammac</a>
<a href="https://reddit.com/user/No_Eight" target="_blank">No_Eight</a>
<a href="https://reddit.com/user/NomNomNomNation" target="_blank">NomNomNomNation</a>
<a href="https://reddit.com/user/Noobkiller1821" target="_blank">Noobkiller1821</a>
<a href="https://reddit.com/user/Noostale" target="_blank">Noostale</a>
<a href="https://reddit.com/user/nopathfollowed" target="_blank">nopathfollowed</a>
<a href="https://reddit.com/user/Norci" target="_blank">Norci</a>
<a href="https://reddit.com/user/Not-the-batman" target="_blank">Not-the-batman</a>
<a href="https://reddit.com/user/NPH_wouldnt_do_that" target="_blank">NPH_wouldnt_do_that</a>
<a href="https://reddit.com/user/ns_dev" target="_blank">ns_dev</a>
<a href="https://reddit.com/user/Nyrbee" target="_blank">Nyrbee</a>
<a href="https://reddit.com/user/Nytoria" target="_blank">Nytoria</a>
<a href="https://reddit.com/user/Oceanstuck" target="_blank">Oceanstuck</a>
<a href="https://reddit.com/user/ochotonaprinceps" target="_blank">ochotonaprinceps</a>
<a href="https://reddit.com/user/ogkushslayer" target="_blank">ogkushslayer</a>
<a href="https://reddit.com/user/OgreGaben" target="_blank">OgreGaben</a>
<a href="https://reddit.com/user/Omega_Haxors" target="_blank">Omega_Haxors</a>
<a href="https://reddit.com/user/orodruinx" target="_blank">orodruinx</a>
<a href="https://reddit.com/user/orokro" target="_blank">orokro</a>
<a href="https://reddit.com/user/oseday" target="_blank">oseday</a>
<a href="https://reddit.com/user/oxguy3" target="_blank">oxguy3</a>
<a href="https://reddit.com/user/p00bix" target="_blank">p00bix</a>
<a href="https://reddit.com/user/pablohoney102" target="_blank">pablohoney102</a>
<a href="https://reddit.com/user/pagh1" target="_blank">pagh1</a>
<a href="https://reddit.com/user/Pandango-r" target="_blank">Pandango-r</a>
<a href="https://reddit.com/user/PandaPundus" target="_blank">PandaPundus</a>
<a href="https://reddit.com/user/Pantomchap" target="_blank">Pantomchap</a>
<a href="https://reddit.com/user/Pantyer2" target="_blank">Pantyer2</a>
<a href="https://reddit.com/user/panzer33249811" target="_blank">panzer33249811</a>
<a href="https://reddit.com/user/pchaski" target="_blank">pchaski</a>
<a href="https://reddit.com/user/_Peavey" target="_blank">_Peavey</a>
<a href="https://reddit.com/user/PenguinPaladin" target="_blank">PenguinPaladin</a>
<a href="https://reddit.com/user/Pepperyena" target="_blank">Pepperyena</a>
<a href="https://reddit.com/user/pepsisong2" target="_blank">pepsisong2</a>
<a href="https://reddit.com/user/Persona_Alio" target="_blank">Persona_Alio</a>
<a href="https://reddit.com/user/pezkuvi" target="_blank">pezkuvi</a>
<a href="https://reddit.com/user/phantomunboxing" target="_blank">phantomunboxing</a>
<a href="https://reddit.com/user/piergaming" target="_blank">piergaming</a>
<a href="https://reddit.com/user/Pikawil" target="_blank">Pikawil</a>
<a href="https://reddit.com/user/PizzaItch" target="_blank">PizzaItch</a>
<a href="https://reddit.com/user/placemeup2" target="_blank">placemeup2</a>
<a href="https://reddit.com/user/PlanarFreak" target="_blank">PlanarFreak</a>
<a href="https://reddit.com/user/Plink333" target="_blank">Plink333</a>
<a href="https://reddit.com/user/PM_ME_YER_TENTACLES" target="_blank">PM_ME_YER_TENTACLES</a>
<a href="https://reddit.com/user/PM_Your_Writing" target="_blank">PM_Your_Writing</a>
<a href="https://reddit.com/user/Pobblebonke" target="_blank">Pobblebonke</a>
<a href="https://reddit.com/user/pomaranc" target="_blank">pomaranc</a>
<a href="https://reddit.com/user/PootnScoot" target="_blank">PootnScoot</a>
<a href="https://reddit.com/user/popa_nowel" target="_blank">popa_nowel</a>
<a href="https://reddit.com/user/PortalSnivy" target="_blank">PortalSnivy</a>
<a href="https://reddit.com/user/PossessedPuppetArt" target="_blank">PossessedPuppetArt</a>
<a href="https://reddit.com/user/Pragmat1kerN" target="_blank">Pragmat1kerN</a>
<a href="https://reddit.com/user/PreponderateTheSmall" target="_blank">PreponderateTheSmall</a>
<a href="https://reddit.com/user/PresMarkle" target="_blank">PresMarkle</a>
<a href="https://reddit.com/user/PrinceSloth" target="_blank">PrinceSloth</a>
<a href="https://reddit.com/user/profist" target="_blank">profist</a>
<a href="https://reddit.com/user/ProxyNorr" target="_blank">ProxyNorr</a>
<a href="https://reddit.com/user/Psybulon" target="_blank">Psybulon</a>
<a href="https://reddit.com/user/pvt13krebs" target="_blank">pvt13krebs</a>
<a href="https://reddit.com/user/pvtdbjackson" target="_blank">pvtdbjackson</a>
<a href="https://reddit.com/user/PvtMuffin" target="_blank">PvtMuffin</a>
<a href="https://reddit.com/user/qatest2" target="_blank">qatest2</a>
<a href="https://reddit.com/user/Qiqz" target="_blank">Qiqz</a>
<a href="https://reddit.com/user/quajter" target="_blank">quajter</a>
<a href="https://reddit.com/user/quaxay" target="_blank">quaxay</a>
<a href="https://reddit.com/user/quinntan2222" target="_blank">quinntan2222</a>
<a href="https://reddit.com/user/Qweiop_123" target="_blank">Qweiop_123</a>
<a href="https://reddit.com/user/Qwertdd" target="_blank">Qwertdd</a>
<a href="https://reddit.com/user/Ramipro" target="_blank">Ramipro</a>
<a href="https://reddit.com/user/RandomStuffOnline" target="_blank">RandomStuffOnline</a>
<a href="https://reddit.com/user/raseksa" target="_blank">raseksa</a>
<a href="https://reddit.com/user/rctgamer3" target="_blank">rctgamer3</a>
<a href="https://reddit.com/user/reddeadluigi" target="_blank">reddeadluigi</a>
<a href="https://reddit.com/user/Reddit-Mengzy" target="_blank">Reddit-Mengzy</a>
<a href="https://reddit.com/user/RedEarth21" target="_blank">RedEarth21</a>
<a href="https://reddit.com/user/redis213" target="_blank">redis213</a>
<a href="https://reddit.com/user/Red_Khalmer" target="_blank">Red_Khalmer</a>
<a href="https://reddit.com/user/Red-Panda-" target="_blank">Red-Panda-</a>
<a href="https://reddit.com/user/-reid" target="_blank">-reid</a>
<a href="https://reddit.com/user/renzo0903" target="_blank">renzo0903</a>
<a href="https://reddit.com/user/reoll" target="_blank">reoll</a>
<a href="https://reddit.com/user/rex480" target="_blank">rex480</a>
<a href="https://reddit.com/user/Rhamuk" target="_blank">Rhamuk</a>
<a href="https://reddit.com/user/RhoOphiuchi" target="_blank">RhoOphiuchi</a>
<a href="https://reddit.com/user/riajuung" target="_blank">riajuung</a>
<a href="https://reddit.com/user/RichManSCTV" target="_blank">RichManSCTV</a>
<a href="https://reddit.com/user/RimePendragon" target="_blank">RimePendragon</a>
<a href="https://reddit.com/user/Risiki" target="_blank">Risiki</a>
<a href="https://reddit.com/user/RManReeves" target="_blank">RManReeves</a>
<a href="https://reddit.com/user/RobBMSG" target="_blank">RobBMSG</a>
<a href="https://reddit.com/user/Rograden" target="_blank">Rograden</a>
<a href="https://reddit.com/user/Roguay" target="_blank">Roguay</a>
<a href="https://reddit.com/user/rolsebert" target="_blank">rolsebert</a>
<a href="https://reddit.com/user/Ronding" target="_blank">Ronding</a>
<a href="https://reddit.com/user/Rorybot181" target="_blank">Rorybot181</a>
<a href="https://reddit.com/user/Roshe_Nek" target="_blank">Roshe_Nek</a>
<a href="https://reddit.com/user/Rotsuda" target="_blank">Rotsuda</a>
<a href="https://reddit.com/user/Rubikcuit" target="_blank">Rubikcuit</a>
<a href="https://reddit.com/user/Rufnok" target="_blank">Rufnok</a>
<a href="https://reddit.com/user/Ryonne" target="_blank">Ryonne</a>
<a href="https://reddit.com/user/s9meNiNE" target="_blank">s9meNiNE</a>
<a href="https://reddit.com/user/sackboylion" target="_blank">sackboylion</a>
<a href="https://reddit.com/user/Sahasrahla" target="_blank">Sahasrahla</a>
<a href="https://reddit.com/user/saikado" target="_blank">saikado</a>
<a href="https://reddit.com/user/SamsungGalaxyPlayer" target="_blank">SamsungGalaxyPlayer</a>
<a href="https://reddit.com/user/SamT323" target="_blank">SamT323</a>
<a href="https://reddit.com/user/samuelnico" target="_blank">samuelnico</a>
<a href="https://reddit.com/user/sapperdeboere" target="_blank">sapperdeboere</a>
<a href="https://reddit.com/user/Sarculus" target="_blank">Sarculus</a>
<a href="https://reddit.com/user/SassyGary" target="_blank">SassyGary</a>
<a href="https://reddit.com/user/sciencegey" target="_blank">sciencegey</a>
<a href="https://reddit.com/user/scifiguy95" target="_blank">scifiguy95</a>
<a href="https://reddit.com/user/Scinauta" target="_blank">Scinauta</a>
<a href="https://reddit.com/user/Scuzzfest" target="_blank">Scuzzfest</a>
<a href="https://reddit.com/user/seanos1998" target="_blank">seanos1998</a>
<a href="https://reddit.com/user/-seik" target="_blank">-seik</a>
<a href="https://reddit.com/user/Seminal_Sound" target="_blank">Seminal_Sound</a>
<a href="https://reddit.com/user/sentenseifrel" target="_blank">sentenseifrel</a>
<a href="https://reddit.com/user/SertyDK" target="_blank">SertyDK</a>
<a href="https://reddit.com/user/shahbaz_man" target="_blank">shahbaz_man</a>
<a href="https://reddit.com/user/Shovel_Ship" target="_blank">Shovel_Ship</a>
<a href="https://reddit.com/user/Sigma1977" target="_blank">Sigma1977</a>
<a href="https://reddit.com/user/sigmaeni" target="_blank">sigmaeni</a>
<a href="https://reddit.com/user/Silan28" target="_blank">Silan28</a>
<a href="https://reddit.com/user/silkmoth_" target="_blank">silkmoth_</a>
<a href="https://reddit.com/user/sinvis" target="_blank">sinvis</a>
<a href="https://reddit.com/user/Sire_Narffol" target="_blank">Sire_Narffol</a>
<a href="https://reddit.com/user/SkulblakaCH" target="_blank">SkulblakaCH</a>
<a href="https://reddit.com/user/SkyRider123" target="_blank">SkyRider123</a>
<a href="https://reddit.com/user/Slash_DK" target="_blank">Slash_DK</a>
<a href="https://reddit.com/user/slimjourney" target="_blank">slimjourney</a>
<a href="https://reddit.com/user/sneezy103" target="_blank">sneezy103</a>
<a href="https://reddit.com/user/Snitchen" target="_blank">Snitchen</a>
<a href="https://reddit.com/user/snowslip" target="_blank">snowslip</a>
<a href="https://reddit.com/user/soccamaniac147" target="_blank">soccamaniac147</a>
<a href="https://reddit.com/user/soeesenpai" target="_blank">soeesenpai</a>
<a href="https://reddit.com/user/Soggyit" target="_blank">Soggyit</a>
<a href="https://reddit.com/user/SomeGuyWithAProfile" target="_blank">SomeGuyWithAProfile</a>
<a href="https://reddit.com/user/somethinbetter" target="_blank">somethinbetter</a>
<a href="https://reddit.com/user/soonerguy11" target="_blank">soonerguy11</a>
<a href="https://reddit.com/user/souvlaki-station" target="_blank">souvlaki-station</a>
<a href="https://reddit.com/user/SpaceOfAids" target="_blank">SpaceOfAids</a>
<a href="https://reddit.com/user/Spanospy" target="_blank">Spanospy</a>
<a href="https://reddit.com/user/splitframe" target="_blank">splitframe</a>
<a href="https://reddit.com/user/SPOOKYSCARYGHOSTS" target="_blank">SPOOKYSCARYGHOSTS</a>
<a href="https://reddit.com/user/SquidIsAGreatName" target="_blank">SquidIsAGreatName</a>
<a href="https://reddit.com/user/Stanislav_P" target="_blank">Stanislav_P</a>
<a href="https://reddit.com/user/Startle_Stars" target="_blank">Startle_Stars</a>
<a href="https://reddit.com/user/StayClassyAmigo" target="_blank">StayClassyAmigo</a>
<a href="https://reddit.com/user/Steel_Neuron" target="_blank">Steel_Neuron</a>
<a href="https://reddit.com/user/stevego188" target="_blank">stevego188</a>
<a href="https://reddit.com/user/Stibi" target="_blank">Stibi</a>
<a href="https://reddit.com/user/StudentRadical" target="_blank">StudentRadical</a>
<a href="https://reddit.com/user/Stykki" target="_blank">Stykki</a>
<a href="https://reddit.com/user/Subvs" target="_blank">Subvs</a>
<a href="https://reddit.com/user/suihcta" target="_blank">suihcta</a>
<a href="https://reddit.com/user/sunnyotakuu" target="_blank">sunnyotakuu</a>
<a href="https://reddit.com/user/SuperFreakonomics" target="_blank">SuperFreakonomics</a>
<a href="https://reddit.com/user/SuperKickClyde" target="_blank">SuperKickClyde</a>
<a href="https://reddit.com/user/Susto" target="_blank">Susto</a>
<a href="https://reddit.com/user/SwagettiYolognesse" target="_blank">SwagettiYolognesse</a>
<a href="https://reddit.com/user/sweater_slalom" target="_blank">sweater_slalom</a>
<a href="https://reddit.com/user/Swordficsh" target="_blank">Swordficsh</a>
<a href="https://reddit.com/user/synbiostael" target="_blank">synbiostael</a>
<a href="https://reddit.com/user/taintegral" target="_blank">taintegral</a>
<a href="https://reddit.com/user/tbone747" target="_blank">tbone747</a>
<a href="https://reddit.com/user/tbpimp69" target="_blank">tbpimp69</a>
<a href="https://reddit.com/user/tears-of-soy" target="_blank">tears-of-soy</a>
<a href="https://reddit.com/user/TeeMee123" target="_blank">TeeMee123</a>
<a href="https://reddit.com/user/Tegoto" target="_blank">Tegoto</a>
<a href="https://reddit.com/user/TeHokioi" target="_blank">TeHokioi</a>
<a href="https://reddit.com/user/Tekar" target="_blank">Tekar</a>
<a href="https://reddit.com/user/terriblestperson" target="_blank">terriblestperson</a>
<a href="https://reddit.com/user/thanhvd1403" target="_blank">thanhvd1403</a>
<a href="https://reddit.com/user/that_dragon_" target="_blank">that_dragon_</a>
<a href="https://reddit.com/user/that_guy_with_a_duck" target="_blank">that_guy_with_a_duck</a>
<a href="https://reddit.com/user/That_IT-Guy" target="_blank">That_IT-Guy</a>
<a href="https://reddit.com/user/TheAdamena" target="_blank">TheAdamena</a>
<a href="https://reddit.com/user/The_Big_ID" target="_blank">The_Big_ID</a>
<a href="https://reddit.com/user/TheBlackParrot" target="_blank">TheBlackParrot</a>
<a href="https://reddit.com/user/_thebronze" target="_blank">_thebronze</a>
<a href="https://reddit.com/user/TheChosenJohn" target="_blank">TheChosenJohn</a>
<a href="https://reddit.com/user/The_CodedOne" target="_blank">The_CodedOne</a>
<a href="https://reddit.com/user/Thedmatch" target="_blank">Thedmatch</a>
<a href="https://reddit.com/user/TheDoctorCat1" target="_blank">TheDoctorCat1</a>
<a href="https://reddit.com/user/theDumb12" target="_blank">theDumb12</a>
<a href="https://reddit.com/user/TheEnderNerd" target="_blank">TheEnderNerd</a>
<a href="https://reddit.com/user/TheEvilKetchup" target="_blank">TheEvilKetchup</a>
<a href="https://reddit.com/user/The_floating_bacon" target="_blank">The_floating_bacon</a>
<a href="https://reddit.com/user/TheFrozenSlime" target="_blank">TheFrozenSlime</a>
<a href="https://reddit.com/user/The_Great_Mage" target="_blank">The_Great_Mage</a>
<a href="https://reddit.com/user/TheGuywithTehHat" target="_blank">TheGuywithTehHat</a>
<a href="https://reddit.com/user/The_InternetExplorer" target="_blank">The_InternetExplorer</a>
<a href="https://reddit.com/user/The_Kisho" target="_blank">The_Kisho</a>
<a href="https://reddit.com/user/TheLemon_UBC" target="_blank">TheLemon_UBC</a>
<a href="https://reddit.com/user/TheLorenzo" target="_blank">TheLorenzo</a>
<a href="https://reddit.com/user/the_marxman" target="_blank">the_marxman</a>
<a href="https://reddit.com/user/TheMaximusjk" target="_blank">TheMaximusjk</a>
<a href="https://reddit.com/user/TheMysticalBard" target="_blank">TheMysticalBard</a>
<a href="https://reddit.com/user/TheNecrons" target="_blank">TheNecrons</a>
<a href="https://reddit.com/user/The_New_Caretaker" target="_blank">The_New_Caretaker</a>
<a href="https://reddit.com/user/TheOnesReddit" target="_blank">TheOnesReddit</a>
<a href="https://reddit.com/user/theonlytruemathnerd" target="_blank">theonlytruemathnerd</a>
<a href="https://reddit.com/user/ThePizzaDeliveryBoy" target="_blank">ThePizzaDeliveryBoy</a>
<a href="https://reddit.com/user/thepuncess" target="_blank">thepuncess</a>
<a href="https://reddit.com/user/the_real_azags" target="_blank">the_real_azags</a>
<a href="https://reddit.com/user/theshortestyaboi" target="_blank">theshortestyaboi</a>
<a href="https://reddit.com/user/thesteam" target="_blank">thesteam</a>
<a href="https://reddit.com/user/TheSupaScoot" target="_blank">TheSupaScoot</a>
<a href="https://reddit.com/user/TheThrawn" target="_blank">TheThrawn</a>
<a href="https://reddit.com/user/theunstoppable_" target="_blank">theunstoppable_</a>
<a href="https://reddit.com/user/TheWobbuffetKnight" target="_blank">TheWobbuffetKnight</a>
<a href="https://reddit.com/user/theys96" target="_blank">theys96</a>
<a href="https://reddit.com/user/thinlyslicednuts" target="_blank">thinlyslicednuts</a>
<a href="https://reddit.com/user/thisisborin9" target="_blank">thisisborin9</a>
<a href="https://reddit.com/user/ThisIsntTheWay" target="_blank">ThisIsntTheWay</a>
<a href="https://reddit.com/user/ThisUsernamePassword" target="_blank">ThisUsernamePassword</a>
<a href="https://reddit.com/user/ThreeMuskets" target="_blank">ThreeMuskets</a>
<a href="https://reddit.com/user/ThriceNightly" target="_blank">ThriceNightly</a>
<a href="https://reddit.com/user/ThugPepe" target="_blank">ThugPepe</a>
<a href="https://reddit.com/user/ThumbWarVeteran" target="_blank">ThumbWarVeteran</a>
<a href="https://reddit.com/user/TinysocksB" target="_blank">TinysocksB</a>
<a href="https://reddit.com/user/tixieej" target="_blank">tixieej</a>
<a href="https://reddit.com/user/Tobibobi" target="_blank">Tobibobi</a>
<a href="https://reddit.com/user/TommyAllen" target="_blank">TommyAllen</a>
<a href="https://reddit.com/user/tomuk19" target="_blank">tomuk19</a>
<a href="https://reddit.com/user/tonny890" target="_blank">tonny890</a>
<a href="https://reddit.com/user/torcado194" target="_blank">torcado194</a>
<a href="https://reddit.com/user/Toriel420" target="_blank">Toriel420</a>
<a href="https://reddit.com/user/toys5342" target="_blank">toys5342</a>
<a href="https://reddit.com/user/TPsquirrely" target="_blank">TPsquirrely</a>
<a href="https://reddit.com/user/transam617" target="_blank">transam617</a>
<a href="https://reddit.com/user/trenmost" target="_blank">trenmost</a>
<a href="https://reddit.com/user/triftcity" target="_blank">triftcity</a>
<a href="https://reddit.com/user/tritratrulala" target="_blank">tritratrulala</a>
<a href="https://reddit.com/user/TroubleBake" target="_blank">TroubleBake</a>
<a href="https://reddit.com/user/ttaywyatt" target="_blank">ttaywyatt</a>
<a href="https://reddit.com/user/Turil" target="_blank">Turil</a>
<a href="https://reddit.com/user/tusminal" target="_blank">tusminal</a>
<a href="https://reddit.com/user/twenty_characters_su" target="_blank">twenty_characters_su</a>
<a href="https://reddit.com/user/UltraRunningKid" target="_blank">UltraRunningKid</a>
<a href="https://reddit.com/user/up_too_early" target="_blank">up_too_early</a>
<a href="https://reddit.com/user/uziyo" target="_blank">uziyo</a>
<a href="https://reddit.com/user/V900" target="_blank">V900</a>
<a href="https://reddit.com/user/Valandir" target="_blank">Valandir</a>
<a href="https://reddit.com/user/ValErk" target="_blank">ValErk</a>
<a href="https://reddit.com/user/valleyfall" target="_blank">valleyfall</a>
<a href="https://reddit.com/user/VankaBG" target="_blank">VankaBG</a>
<a href="https://reddit.com/user/Vekter" target="_blank">Vekter</a>
<a href="https://reddit.com/user/VelvetCake101" target="_blank">VelvetCake101</a>
<a href="https://reddit.com/user/Verpous" target="_blank">Verpous</a>
<a href="https://reddit.com/user/vgf89" target="_blank">vgf89</a>
<a href="https://reddit.com/user/VIDCAs17" target="_blank">VIDCAs17</a>
<a href="https://reddit.com/user/Vikinggiraffe" target="_blank">Vikinggiraffe</a>
<a href="https://reddit.com/user/ViKomprenas" target="_blank">ViKomprenas</a>
<a href="https://reddit.com/user/vman81" target="_blank">vman81</a>
<a href="https://reddit.com/user/Vocalite" target="_blank">Vocalite</a>
<a href="https://reddit.com/user/voliol" target="_blank">voliol</a>
<a href="https://reddit.com/user/VoltStar" target="_blank">VoltStar</a>
<a href="https://reddit.com/user/vorin" target="_blank">vorin</a>
<a href="https://reddit.com/user/vortexis" target="_blank">vortexis</a>
<a href="https://reddit.com/user/Vupwol" target="_blank">Vupwol</a>
<a href="https://reddit.com/user/WampaCow" target="_blank">WampaCow</a>
<a href="https://reddit.com/user/Waneupe" target="_blank">Waneupe</a>
<a href="https://reddit.com/user/WarmerClimates" target="_blank">WarmerClimates</a>
<a href="https://reddit.com/user/Warthog455" target="_blank">Warthog455</a>
<a href="https://reddit.com/user/WeAreMili" target="_blank">WeAreMili</a>
<a href="https://reddit.com/user/WeeDemBoys" target="_blank">WeeDemBoys</a>
<a href="https://reddit.com/user/wijagain" target="_blank">wijagain</a>
<a href="https://reddit.com/user/WildTurtroll" target="_blank">WildTurtroll</a>
<a href="https://reddit.com/user/William27528" target="_blank">William27528</a>
<a href="https://reddit.com/user/Wind-Watcher" target="_blank">Wind-Watcher</a>
<a href="https://reddit.com/user/writeyourownsong" target="_blank">writeyourownsong</a>
<a href="https://reddit.com/user/WThieves" target="_blank">WThieves</a>
<a href="https://reddit.com/user/Wunderwaffe_" target="_blank">Wunderwaffe_</a>
<a href="https://reddit.com/user/Wuzh" target="_blank">Wuzh</a>
<a href="https://reddit.com/user/xDUDSSx" target="_blank">xDUDSSx</a>
<a href="https://reddit.com/user/XenonFrenzy" target="_blank">XenonFrenzy</a>
<a href="https://reddit.com/user/XHyp3rX" target="_blank">XHyp3rX</a>
<a href="https://reddit.com/user/Xisuthrus" target="_blank">Xisuthrus</a>
<a href="https://reddit.com/user/xiwan" target="_blank">xiwan</a>
<a href="https://reddit.com/user/Xkeeper" target="_blank">Xkeeper</a>
<a href="https://reddit.com/user/xRead" target="_blank">xRead</a>
<a href="https://reddit.com/user/xSty864" target="_blank">xSty864</a>
<a href="https://reddit.com/user/XXLuigiMario" target="_blank">XXLuigiMario</a>
<a href="https://reddit.com/user/YamiGigaPhil" target="_blank">YamiGigaPhil</a>
<a href="https://reddit.com/user/yangok" target="_blank">yangok</a>
<a href="https://reddit.com/user/yellowcat5" target="_blank">yellowcat5</a>
<a href="https://reddit.com/user/yo_99" target="_blank">yo_99</a>
<a href="https://reddit.com/user/yowambo" target="_blank">yowambo</a>
<a href="https://reddit.com/user/Yunuss58" target="_blank">Yunuss58</a>
<a href="https://reddit.com/user/yupswing" target="_blank">yupswing</a>
<a href="https://reddit.com/user/YuzToChihiro" target="_blank">YuzToChihiro</a>
<a href="https://reddit.com/user/Zacoftheaxes" target="_blank">Zacoftheaxes</a>
<a href="https://reddit.com/user/Zamiul" target="_blank">Zamiul</a>
<a href="https://reddit.com/user/zang227" target="_blank">zang227</a>
<a href="https://reddit.com/user/zaptoshicoolpikachu" target="_blank">zaptoshicoolpikachu</a>
<a href="https://reddit.com/user/zenon_0" target="_blank">zenon_0</a>
<a href="https://reddit.com/user/Zequez" target="_blank">Zequez</a>
<a href="https://reddit.com/user/Zindu" target="_blank">Zindu</a>
<a href="https://reddit.com/user/Zirr" target="_blank">Zirr</a>
<a href="https://reddit.com/user/Zonisic" target="_blank">Zonisic</a>
<a href="https://reddit.com/user/zurbayuluk52" target="_blank">zurbayuluk52</a>
<h2 id="contacth2">Contact?</h2>
<p>If you're press, a influencer or anything media connected, or you would like to use the atlas in one. Please contact us beforehand through:</p>
<p> - <a href="mailto:press@stefanocoding.me" target="_blank">press@stefanocoding.me</a></p>
<br>
<p>If you need to contact me regarding anything else, you can reach me through:</p>
<p> - <a href="mailto:stefano@stefanocoding.me" target="_blank">stefano@stefanocoding.me</a></p>
</div>
</div>
</div>
@ -896,4 +113,4 @@ <h2>r/placeAtlas Contributors</h2>
});
</script>
</body>
</html>
</html>

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -36,7 +36,7 @@
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no">
<meta name="mobile-web-app-capable" content="yes">
<link href="./_css/style.css?version=1.0.32" rel="stylesheet" type="text/css" media="all">
<link href="./_css/style.css?version=1.0.33" rel="stylesheet" type="text/css" media="all">
<script type="application/ld+json">
{
@ -79,7 +79,7 @@
by reddit and the like as the thumbnail for the site.
The original is only 5.9kB, which wouldn't get much
smaller by reducing the actualy size. -->
<h1 id="title">The /r/place Atlas</h1>
<h1 id="title">The 2022 /r/place Atlas</h1>
</a>
</header>
@ -92,22 +92,22 @@ <h1 id="title">The /r/place Atlas</h1>
<noscript>
<p>Sorry, you need JavaScript to view the Atlas.</p>
<p>All JavaScript on this site is licensed under either the MIT or AGPL license.</p>
<p><a href="https://github.com/RolandR/place-atlas/">See the source on GitHub</a></p>
<p><a href="https://github.com/placeAtlas/atlas">See the source on GitHub</a></p>
</noscript>
</div>
</div>
<canvas id="linesCanvas"></canvas>
<div id="innerContainer">
<canvas id="highlightCanvas" width="2000" height="2000"></canvas>
<img id="image" src="./_img/place-indexed.png" width="2000" height="2000" alt="Canvas of /r/place in the state of when the experiment was concluded." />
<img id="image" src="./_img/place-indexed-final-place.png" width="2000" height="2000" alt="Canvas of /r/place in the state of when the experiment was concluded." />
</div>
</div>
<div id="entriesListContainer">
<nav>
<a id="aboutLink" href="./about.html">About</a>
<a id="drawLink" href="./index.html?mode=draw">Contribute</a>
<a id="overlapLink" href="./index.html?mode=overlap">Overlap</a>
<a id="drawLink" href="./index.html?mode=draw">Draw</a>
<a id="toggleMode" onclick="return changeOverlapMode()">Overlap</a>
<button title="Discord" onclick="window.location.href='https://discord.gg/pJkm23b2nA'">
<img class="Discord" alt="Discord Logo" src="./_img/discord.svg">
</button>
@ -126,6 +126,7 @@ <h1 id="title">The /r/place Atlas</h1>
<option value="alphaDesc">↑ Alphabetical</option>
<option value="newest">Newest</option>
<option value="oldest">Oldest</option>
<option value="area">Area</option>
</select>
</div>
</div>
@ -185,12 +186,23 @@ <h1 id="title">The /r/place Atlas</h1>
<div id="exportOverlay" class="overlay">
<div id="exportWindow">
<p>Please copy the text below and submit it as a<br>
new text post to <a target="_blank" href="https://www.reddit.com/r/placeAtlas2/">/r/placeAtlas2</a> on Reddit.</p>
<p>I will then check it and add it to the atlas.</p>
<textarea cols="50" rows="5" id="exportString"></textarea>
<div style="display:flex; flex-direction:column;align-items:center">
<a href="_blank" id="exportDirectPost">Post Direct to Reddit</a>
</div>
<hr style="border-bottom: solid black 1px"/>
<i>or...</i>
<p>Please copy the text below and submit it as a
new text post to <a target="_blank" href="https://www.reddit.com/r/placeAtlas2/">/r/placeAtlas2</a> on Reddit.</p>
<p>Don't forget to flair it with the "New Entry" tag.</p>
<p>We will then check it and add it to the atlas.</p>
<textarea cols="20" rows="5" id="exportString"></textarea>
<div style="display:flex; flex-direction:column;align-items:center">
<button id="exportCloseButton">Done</button>
</div>
</div>
@ -198,25 +210,20 @@ <h1 id="title">The /r/place Atlas</h1>
<div id="donateOverlay" class="overlay">
<div id="donateWindow">
<h2>Donations - Original Source Code Creator</h2>
<p>Roland Rytz jas worked on the Atlas full-time (and more!) for over two weeks.</p>
<p>If you'd like to support him, you can do so by <a target="_blank" href="https://paypal.me/draemmli">PayPal</a> or Bitcoin.</p>
<p>If you donate more than 10(€/$/CHF/mBTC), He'll send you a nice sticker of the Place canvas (2017)!</p>
<p id="bitcoinNotice">If you donate by Bitcoin and want a sticker, please send him a<br>message with your Bitcoin address <i>before</i> you make the transaction!</a>
<h2>Donation Links</h2>
<p>Current 2022 Atlas Maintainers:</p>
<p> - <a target="_blank" href="https://paypal.me/placeAtlas/5">PayPal</a></p>
<p> - <a target="_blank" href="https://www.patreon.com/placeAtlas">Patreon</a></p>
<p> - <a target="_blank" href="https://ko-fi.com/placeatlas">Ko-Fi</a></p>
<p>Original 2017 Atlas Developer (draemmli aka Roland Rytz): </p>
<p> - <a target="_blank" href="https://paypal.me/draemmli">PayPal</a></p>
<h2>His Bitcoin Address</h2>
<img id="bitcoinQR" alt="QR Code of Bitcoin Address" height="300" width="300">
<br>
<input type="text" onclick="this.select();" readonly value="1DnBGYpH6HZYHvpCq3QqqtH1HxwwVe2QxN">
<br>
<p>Hi there! The current maintainer of the 2022 version of this website, should I accept donations and make stickers of the 2022 version? Please tell me on our <a href="https://discord.gg/pJkm23b2nA" target="_noblank">Discord Server</a> or on my Reddit (<a href="https://reddit.com/user/TCOOfficiall" target="_noblank">u/TCOOfficiall</a>)</p>
<br>
<button id="closeBitcoinButton">Close</button>
<br>
</div>
</div>
<div id="author">
Code by <a href="https://draemm.li/various/place-atlas/" target="_blank" rel="author">Roland Rytz</a>. Source on <a target="_blank" href="https://github.com/RolandR/place-atlas">GitHub</a> (<a target="_blank" href="https://github.com/Codixer/place-atlas">2022 Version Github</a>). Images provided by <a target="_blank" href="https://place.thatguyalex.com/">Alex Tsernoh</a>.
Code forked by <a href="https://place-atlas.stefanocoding.me/" target="_blank" rel="author">Stefano Haagmans</a>. Source on <a target="_blank" href="https://github.com/placeAtlas/atlas">GitHub</a>, Images provided by <a target="_blank" href="https://place.thatguyalex.com/">Alex Tsernoh</a>. This site is powered by <a href="https://www.netlify.com">Netlify</a>.
</div>
</div>
<script type="text/javascript" src="./_js/infoblock.js?version=1.0"></script>