Merge branch 'master' into cleanup

This commit is contained in:
ash 2022-04-07 20:18:08 +01:00 committed by GitHub
commit 8abb24a705
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 199 additions and 796 deletions

View file

@ -1,6 +1,6 @@
[![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/) [![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) ![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) [![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) [![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) [![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/) [![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/)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 MiB

After

Width:  |  Height:  |  Size: 953 KiB

View file

@ -39,9 +39,15 @@ function getPositionOfEntry(entry){
return [parseInt(startX), parseInt(startY)]; return [parseInt(startX), parseInt(startY)];
} }
const areaMap = new Map();
// Modified from https://stackoverflow.com/a/33670691 // Modified from https://stackoverflow.com/a/33670691
function calcPolygonArea(vertices) { function calcPolygonArea(vertices) {
var hit = areaMap.get(vertices);
if (hit != null) {
return hit;
}
var total = 0; var total = 0;
for (var i = 0, l = vertices.length; i < l; i++) { for (var i = 0, l = vertices.length; i < l; i++) {
@ -54,5 +60,8 @@ function calcPolygonArea(vertices) {
total -= (subX * subY * 0.5); total -= (subX * subY * 0.5);
} }
return Math.floor(Math.abs(total)); var area = Math.floor(Math.abs(total));
areaMap.set(vertices, area);
return area;
} }

View file

@ -449,6 +449,11 @@ function initView(){
return 0; return 0;
} }
break; break;
case "area":
sortFunction = function(a, b){
return calcPolygonArea(b.path) - calcPolygonArea(a.path);
}
break;
case "relevant": case "relevant":
sortFunction = function(a, b){ sortFunction = function(a, b){
if(a.name.toLowerCase().indexOf(filter) !== -1 && b.name.toLowerCase().indexOf(filter) !== -1){ if(a.name.toLowerCase().indexOf(filter) !== -1 && b.name.toLowerCase().indexOf(filter) !== -1){

View file

@ -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>). 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>
<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"> <div id="aboutContainer">
<a id="aboutBackButton" href="./">&lt; Back to the Atlas</a> <a id="aboutBackButton" href="./">&lt; Back to the Atlas</a>
@ -76,15 +67,14 @@ <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>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> <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> <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/placeAtlas/atlas">Github Fork</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>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>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> <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> <br>
<p>Roland Rytz worked on the Atlas full-time (and more!) for over two weeks during the 2017 r/place event.</p> <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>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> <h2>How to contribute</h2>
<p>The /r/Place Atlas project relies on user contributions.</p> <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>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>
@ -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>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> <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> <h2 id="contacth2">Contact?</h2>
<p>The original Atlas project would not have been possible without the help of the following 775 reddit users.</p> <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>Thank you to everyone who submitted new entries, amended existing ones, reported bugs and just supported the project in general.</p> <p> - <a href="mailto:press@stefanocoding.me" target="_blank">press@stefanocoding.me</a></p>
<div id="contributors"> <br>
<a href="https://reddit.com/user/0011110000110011" target="_blank">0011110000110011</a> <p>If you need to contact me regarding anything else, you can reach me through:</p>
<a href="https://reddit.com/user/10Sly10" target="_blank">10Sly10</a> <p> - <a href="mailto:stefano@stefanocoding.me" target="_blank">stefano@stefanocoding.me</a></p>
<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>
</div> </div>
</div> </div>
</div> </div>
@ -896,4 +113,4 @@ <h2>r/placeAtlas Contributors</h2>
}); });
</script> </script>
</body> </body>
</html> </html>

View file

@ -7310,6 +7310,177 @@
{"id": "ty3ftt", "submitted_by": "serillymc", "name": "TinaKitten", "description": "Minecraft head of the streamer TinaKitten.", "website": "https://twitch.tv/TinaKitten", "subreddit": "", "center": [142.5, 940.5], "path": [[138.5, 936.5], [145.5, 936.5], [145.5, 943.5], [138.5, 943.5], [138.5, 936.5]]}, {"id": "ty3ftt", "submitted_by": "serillymc", "name": "TinaKitten", "description": "Minecraft head of the streamer TinaKitten.", "website": "https://twitch.tv/TinaKitten", "subreddit": "", "center": [142.5, 940.5], "path": [[138.5, 936.5], [145.5, 936.5], [145.5, 943.5], [138.5, 943.5], [138.5, 936.5]]},
{"id": "ty3fl9", "submitted_by": "serillymc", "name": "Karl Jacobs", "description": "Minecraft head of the streamer Karl Jacobs.", "website": "https://twitch.tv/karljacobs", "subreddit": "", "center": [142.5, 931.5], "path": [[138.5, 927.5], [145.5, 927.5], [145.5, 934.5], [138.5, 934.5], [138.5, 927.5]]}, {"id": "ty3fl9", "submitted_by": "serillymc", "name": "Karl Jacobs", "description": "Minecraft head of the streamer Karl Jacobs.", "website": "https://twitch.tv/karljacobs", "subreddit": "", "center": [142.5, 931.5], "path": [[138.5, 927.5], [145.5, 927.5], [145.5, 934.5], [138.5, 934.5], [138.5, 927.5]]},
{"id": "ty3cla", "submitted_by": "serillymc", "name": "Sapnap", "description": "Minecraft head of the streamer Sapnap.", "website": "https://twitch.tv/sapnap", "subreddit": "", "center": [187.5, 931.5], "path": [[183.5, 934.5], [190.5, 934.5], [190.5, 927.5], [183.5, 927.5], [183.5, 934.5]]}, {"id": "ty3cla", "submitted_by": "serillymc", "name": "Sapnap", "description": "Minecraft head of the streamer Sapnap.", "website": "https://twitch.tv/sapnap", "subreddit": "", "center": [187.5, 931.5], "path": [[183.5, 934.5], [190.5, 934.5], [190.5, 927.5], [183.5, 927.5], [183.5, 934.5]]},
{"id": "ty3bka", "submitted_by": "genieus", "name": "Sulfur-crested cockatoo", "description": "An iconic Australian bird", "website": "", "subreddit": "/r/australia", "center": [674.5, 735.5], "path": [[678.5, 741.5], [671.5, 741.5], [671.5, 731.5], [672.5, 730.5], [674.5, 729.5], [675.5, 728.5], [676.5, 728.5], [676.5, 734.5], [677.5, 735.5], [677.5, 740.5]]} {"id": "ty3bka", "submitted_by": "genieus", "name": "Sulfur-crested cockatoo", "description": "An iconic Australian bird", "website": "", "subreddit": "/r/australia", "center": [674.5, 735.5], "path": [[678.5, 741.5], [671.5, 741.5], [671.5, 731.5], [672.5, 730.5], [674.5, 729.5], [675.5, 728.5], [676.5, 728.5], [676.5, 734.5], [677.5, 735.5], [677.5, 740.5]]},
{"id": "tygqmx", "submitted_by": "alexgangji", "name": "Swiss / Valais flag", "description": "Originally intended to be the flag of the Swiss canton \"Valais\" (in the Southern area of the country), it was quickly converted into a Swiss flag by other competing cantons.", "website": "www.valais.ch", "subreddit": "", "center": [1188.5, 887.5], "path": [[1186.5, 885.5], [1186.5, 889.5], [1190.5, 889.5], [1190.5, 885.5], [1186.5, 885.5]]},
{"id": "tygpkh", "submitted_by": "ZhokoVT", "name": "Ktiux", "description": "Ktiux from Ktiux channel is a famous streamer vtuber from chile, twitch people know her for being \"la mas funada\".", "website": "https://www.twitch.tv/ktiux", "subreddit": "", "center": [1623.5, 850.5], "path": [[1619.5, 847.5], [1619.5, 853.5], [1627.5, 853.5], [1627.5, 847.5]]},
{"id": "tygoy6", "submitted_by": "AnonymousRandPerson", "name": "Costa Rica hearts", "description": "Seven hearts depicting the flag of Costa Rica, one for each Costa Rican province.", "website": "https://en.wikipedia.org/wiki/Costa_Rica", "subreddit": "/r/Ticos, /r/costarica", "center": [1341.5, 436.5], "path": [[1308.5, 432.5], [1306.5, 434.5], [1306.5, 436.5], [1311.5, 441.5], [1371.5, 441.5], [1376.5, 436.5], [1376.5, 434.5], [1374.5, 432.5], [1308.5, 432.5]]},
{"id": "tygo29", "submitted_by": "AnonymousRandPerson", "name": "Whitetail deer", "description": "The national symbol of Costa Rica.", "website": "https://en.wikipedia.org/wiki/White-tailed_deer", "subreddit": "/r/Ticos, /r/costarica", "center": [1387.5, 436.5], "path": [[1377.5, 428.5], [1377.5, 434.5], [1376.5, 434.5], [1376.5, 440.5], [1377.5, 440.5], [1377.5, 446.5], [1383.5, 446.5], [1383.5, 441.5], [1384.5, 440.5], [1385.5, 440.5], [1385.5, 446.5], [1393.5, 446.5], [1393.5, 436.5], [1394.5, 436.5], [1396.5, 434.5], [1396.5, 433.5], [1397.5, 432.5], [1397.5, 430.5], [1398.5, 429.5], [1398.5, 425.5], [1389.5, 425.5], [1389.5, 427.5], [1387.5, 429.5], [1387.5, 431.5], [1386.5, 432.5], [1381.5, 432.5], [1381.5, 430.5], [1379.5, 428.5]]},
{"id": "tygmbi", "submitted_by": "Turbo-Shell", "name": "Celeste Bird", "description": "The tutorial bird from the game Celeste who appears throughout the game", "website": "http://www.celestegame.com", "subreddit": "https://www.reddit.com/r/celestegame/", "center": [1377.5, 65.5], "path": [[1371.5, 70.5], [1382.5, 69.5], [1382.5, 60.5], [1376.5, 60.5], [1375.5, 61.5]]},
{"id": "tygkaw", "submitted_by": "ZhokoVT", "name": "FanoDoro", "description": "Fano is an artist of twitter.", "website": "https://twitter.com/FanoDoro", "subreddit": "", "center": [1604.5, 863.5], "path": [[1601.5, 868.5], [1601.5, 857.5], [1607.5, 857.5], [1607.5, 868.5], [1604.5, 868.5]]},
{"id": "tyginc", "submitted_by": "Fragrant-Scratch7695", "name": "F\u00edsico Gamer", "description": "Mexican streamer that teaches physics while playing games. His community is called (\u00e1tomos de la creaci\u00f3n) and they created this on the last hours of the event.", "website": "www.facebook.com/elfisicogamer", "subreddit": "", "center": [1740.5, 1814.5], "path": [[1751.5, 1810.5], [1727.5, 1810.5], [1727.5, 1818.5], [1752.5, 1818.5], [1752.5, 1810.5]]},
{"id": "tyggsu", "submitted_by": "Drexan8", "name": "Amnesty International ", "description": "Amnesty International is an international non-governmental organization focused on human rights.\n\nThey were the supported during the Zevent 2020 where the french twitch community raised 5 724 377\u20ac in 55hours.", "website": "", "subreddit": "", "center": [1271.5, 1435.5], "path": [[1272.5, 1446.5], [1262.5, 1442.5], [1262.5, 1433.5], [1266.5, 1432.5], [1268.5, 1430.5], [1266.5, 1427.5], [1273.5, 1421.5], [1276.5, 1425.5], [1274.5, 1429.5], [1280.5, 1435.5], [1275.5, 1439.5], [1280.5, 1441.5], [1272.5, 1446.5]]},
{"id": "tygg2d", "submitted_by": "ZhokoVT", "name": "Gusel_12", "description": "Is a small twitch streamer vtuber from chile.", "website": "https://www.twitch.tv/gusel_12", "subreddit": "", "center": [1611.5, 862.5], "path": [[1608.5, 856.5], [1608.5, 868.5], [1613.5, 868.5], [1614.5, 856.5], [1611.5, 856.5]]},
{"id": "tygfo9", "submitted_by": "Felixfex", "name": "GameMind", "description": "A Clan created in 2010 for LoL and various multiplayer games. Sadly, it almost disbanded and only two members are left. We wanted to add it as a memory of the past. This logo was our 7th attempt on the canvas, the 6th was destroyed by Rec7", "website": "", "subreddit": "", "center": [1620.5, 1662.5], "path": [[1623.5, 1659.5], [1616.5, 1659.5], [1616.5, 1664.5], [1618.5, 1664.5], [1618.5, 1665.5], [1620.5, 1665.5], [1620.5, 1666.5], [1622.5, 1666.5], [1622.5, 1667.5], [1624.5, 1667.5], [1624.5, 1660.5]]},
{"id": "tygfo3", "submitted_by": "AthenaInPlace", "name": "Athena's Line", "description": "Symbolic of a 426 HP goddess, this 20 pixel line held true to the final moments. Proud ally of VT, Azil, and Cambodia. Grateful to be one of the last pieces tarnished by the great erasing. ", "website": "[https://en.wikipedia.org/wiki/Chevrolet_Camaro_(fifth_generation)](https://en.wikipedia.org/wiki/Chevrolet_Camaro_(fifth_generation))", "subreddit": "", "center": [999.5, 380.5], "path": [[988.5, 379.5], [1009.5, 379.5], [1009.5, 381.5], [988.5, 381.5], [988.5, 379.5]]},
{"id": "tygf32", "submitted_by": "Tabor_", "name": "Guscord", "description": "This is a sign made by GUSCORD in honor of their mascot Gustavo \"Gus\" Fring", "website": "[https://discord.gg/gus](https://discord.gg/gus)", "subreddit": "", "center": [1969.5, 1478.5], "path": [[1961.5, 1475.5], [1961.5, 1481.5], [1976.5, 1481.5], [1976.5, 1475.5]]},
{"id": "tyg8hy", "submitted_by": "hexadcml", "name": "S3K", "description": "S3K (short for \"Soldier Soldier Soldier King\") is a fictional Anime series created by Twitch streamer Atrioc. He created the series in order to prank \"toph\"", "website": "https://www.youtube.com/watch?v=cgUCPqw9STg", "subreddit": "/r/Atrioc", "center": [1831.5, 166.5], "path": [[1822.5, 172.5], [1840.5, 172.5], [1840.5, 160.5], [1821.5, 160.5], [1821.5, 172.5]]},
{"id": "tyg6hi", "submitted_by": "Paras0L", "name": "Octania", "description": "Some french people, that made an alliance with the small bottle over them", "website": "https://www.youtube.com/channel/UCjhCirCU-G6WssxaU1F4TiQ", "subreddit": "", "center": [1976.5, 1261.5], "path": [[1980.5, 1257.5], [1980.5, 1265.5], [1972.5, 1265.5], [1972.5, 1257.5], [1980.5, 1257.5]]},
{"id": "tyg4tz", "submitted_by": "hexadcml", "name": "Burgzy", "description": "Burgzy is a fictional character created by the Twitch streamer Atrioc. Burgzy explained food marketing strategies.", "website": "https://www.youtube.com/watch?v=OCkhBCEglzk", "subreddit": "/r/Atrioc", "center": [1814.5, 199.5], "path": [[1807.5, 193.5], [1807.5, 205.5], [1820.5, 205.5], [1820.5, 193.5], [1814.5, 193.5], [1814.5, 193.5]]},
{"id": "tyg31r", "submitted_by": "Miceteas", "name": "Chiencookie's heart", "description": "The proud heart of the Chiencookie's empire. It is a small french and swagy community (~20person) of people on discord (See website for invite).\nIt made an alliance with the loving amogus nearby.\n\n\n\n", "website": "https://discord.gg/aMF2jt3dfd", "subreddit": "", "center": [1836.5, 1684.5], "path": [[1836.5, 1686.5], [1838.5, 1683.5], [1837.5, 1682.5], [1836.5, 1683.5], [1835.5, 1682.5], [1834.5, 1683.5], [1834.5, 1684.5], [1836.5, 1686.5]]},
{"id": "tyg2yx", "submitted_by": "stankypotatonerd101", "name": "Pride Flags", "description": "The asexual, pansexual and bisexual pride flags put together in the shape of a gun (may not be intentional).", "website": "", "subreddit": "r/lgbt", "center": [1849.5, 47.5], "path": [[1845.5, 46.5], [1845.5, 46.5], [1846.5, 46.5], [1853.5, 46.5], [1853.5, 48.5], [1847.5, 48.5], [1847.5, 49.5], [1845.5, 49.5], [1845.5, 48.5], [1845.5, 47.5]]},
{"id": "tyg0ig", "submitted_by": "findeva", "name": "Despite Everything heart", "description": "A heart with a hole in it. Created by mostly one person, and existing in the space of the No Man's Sky community, it had no chance of persevering. But words were traded, and peace was made, and despite everything, it stayed.", "website": "", "subreddit": "", "center": [1624.5, 1613.5], "path": [[1619.5, 1609.5], [1628.5, 1609.5], [1628.5, 1616.5], [1619.5, 1616.5]]},
{"id": "tyfz0p", "submitted_by": "Miceteas", "name": "Non-binary flag", "description": "There was a hard fought war on this circle between the chiencookie's empire and the non-binary community that insisted it was theirs to be taken although it used to be a red circle free of property", "website": "", "subreddit": "/r/NonBinary/", "center": [36.5, 424.5], "path": [[35.5, 427.5], [36.5, 427.5], [37.5, 427.5], [39.5, 425.5], [39.5, 423.5], [37.5, 421.5], [35.5, 421.5], [33.5, 423.5], [33.5, 425.5], [35.5, 427.5]]},
{"id": "tyfvt9", "submitted_by": "place___de", "name": "Ernie und Bert", "description": "Bert and Ernie are two Muppet characters who appear together in numerous skits on Sesame Street.", "website": "https://en.wikipedia.org/wiki/Bert_and_Ernie", "subreddit": "/r/placede", "center": [1370.5, 1161.5], "path": [[1356.5, 1151.5], [1356.5, 1167.5], [1358.5, 1167.5], [1358.5, 1172.5], [1382.5, 1172.5], [1382.5, 1168.5], [1384.5, 1168.5], [1384.5, 1150.5], [1356.5, 1150.5]]},
{"id": "tyftc1", "submitted_by": "Ordinary-Feed2461", "name": "Intitut catholique de rennes's logo", "description": "The logo of a French school", "website": "https://www.icrennes.org/", "subreddit": "", "center": [1009.5, 1857.5], "path": [[1003.5, 1848.5], [1003.5, 1866.5], [1015.5, 1866.5], [1015.5, 1848.5]]},
{"id": "tyfsw2", "submitted_by": "EL_JUA", "name": "Flag of Sabadell", "description": "The flag of the spanish city Sabadell.", "website": "https://www.sabadell.cat/es/directori-inici/", "subreddit": "/r/sabadell", "center": [710.5, 1704.5], "path": [[704.5, 1701.5], [704.5, 1706.5], [715.5, 1706.5], [715.5, 1701.5]]},
{"id": "tyflqr", "submitted_by": "gmalatete", "name": "Twinks & Twunks", "description": "The community of the hottest twinks in twunks on the internet.\n\nThe pansexual flag background represents our members that are gay, bi and everything in between.", "website": "", "subreddit": "r/twinks", "center": [266.5, 1041.5], "path": [[255.5, 1040.5], [276.5, 1040.5], [276.5, 1042.5], [255.5, 1042.5]]},
{"id": "tyfllf", "submitted_by": "The_Master_Puppet", "name": "The FNaF Images made by GG Games", "description": "In the left pixel art there is 'Feddy' an FNaF meme where Freddy Fazbear is poorly drawn. And on top of Feddy there's the '6AM' pixel art that shows up when you beat a night in FNaF 1.\n\n\n\nIn the right painting, there is (Starting from top left, clockwise) Glossy Puppet (The OC of the FNaF Youtuber 'GG Games')\n\n, Rogelio head (The head of the Spring Bonnie Cosplay that made GG Games)\n\n, Purple Guy/William Afton sprite (from the SAVETHEM minigame from FNaF 2)\n\n, the logo of the creator of FNaF, Scott Cawthon (animdude is the name of the logo)\n\n, GG Games text (The creator of all this FNaF Images and a FNaF Spanish Streamer and Youtuber)\n\n, a Crown on top of GG Games text (refers to the fact that GG Games usually wears a crown in his videos and streams)\n\n, 'LEMINE' text, a fictional brand of soda, which is a meme in the GG Games community\n\n, a pixel art of the 'LEMINE' vending machine\n\n\n\nOn the top of the Pixel Art there's the head of a Pug Dog Breed referring to BersGamer's Dog. GG Games made that pixel art for Bers.\nAnd on the right side of the Pug there's a text that says 'FNAF ARMY', a pixel art that GG Games made referring to one of the biggest FNaF Spanish YouTubers Groups where he's a part of", "website": "https://www.youtube.com/channel/UCFgPgD20NBkt27gRrqaIKvg", "subreddit": "", "center": [1875.5, 312.5], "path": [[1868.5, 270.5], [1918.5, 270.5], [1918.5, 319.5], [1866.5, 319.5], [1866.5, 370.5], [1839.5, 370.5], [1839.5, 299.5], [1868.5, 299.5], [1868.5, 270.5]]},
{"id": "tyfbqo", "submitted_by": "lilihahattl", "name": "Susika", "description": "Suika Ibuki is a touhou character also famous for We Are Japanese Goblin video. Here she was drawn in the style of an Amogus. She was drawn before the withering. ", "website": "https://en.touhouwiki.net/wiki/Suika_Ibuki", "subreddit": "r/touhou", "center": [1782.5, 829.5], "path": [[1779.5, 826.5], [1785.5, 826.5], [1785.5, 832.5], [1779.5, 832.5]]},
{"id": "tyf8tr", "submitted_by": "azlhiacneg", "name": "Cornell University", "description": "A red C for Cornell and a small image of the (unofficial but highly recognized) Cornell mascot Touchdown, or the Big Red Bear.", "website": "https://www.cornell.edu/", "subreddit": "/r/Cornell", "center": [386.5, 1559.5], "path": [[379.5, 1553.5], [379.5, 1564.5], [392.5, 1564.5], [392.5, 1553.5]]},
{"id": "tyf41s", "submitted_by": "MrRedjo", "name": "Studio Nimai", "description": "This green rabbit is a character named Nico and represents r/StudioNimai, the community of an indie animation studio from Spain.", "website": "https://www.youtube.com/c/StudionimaiBlogspotPLUS", "subreddit": "r/StudioNimai", "center": [1386.5, 245.5], "path": [[1384.5, 249.5], [1384.5, 241.5], [1389.5, 242.5], [1389.5, 249.5]]},
{"id": "tyew21", "submitted_by": "KingDededeThe3rd", "name": "Stone Mask", "description": "Near the end of the event, the JoJo community began working on the Stone Mask and Red Stone of Aja, symbols representing parts of the anime/manga, Phantom Blood and Battle Tendency respectively. While there was not enough time to finish the full Red Stone of Aja pixel art, some fans managed to place red pixels in the forehead of the mask in time as a reference to how the stone was used in the final battle.", "website": "", "subreddit": "/r/StardustCrusaders", "center": [129.5, 927.5], "path": [[126.5, 932.5], [124.5, 928.5], [124.5, 924.5], [127.5, 921.5], [132.5, 921.5], [135.5, 925.5], [135.5, 929.5], [133.5, 932.5]]},
{"id": "tyes7l", "submitted_by": "CharmingFawn", "name": "Treemongus", "description": "A tree built around an among us figurine in a cooperation between random reddit users. Lost it's defense in the final battle against the void", "website": "", "subreddit": "", "center": [1117.5, 1194.5], "path": [[1122.5, 1185.5], [1111.5, 1185.5], [1112.5, 1203.5], [1121.5, 1203.5]]},
{"id": "tyeqpa", "submitted_by": "Gullible-Cicada-5318", "name": "Reset", "description": "Reset is from the Rance game series, she is the daughter of Rance and the kalar queen making her the kalar princess. Kalars are a female only race with light blue hair and a crystal on their forehead. Reset inherits Rance's ability to have no level cap making her have infinite potential for power rivaling the gods but it doesn't matter once she changes when she doesn't b r ee d with a human male, and an uncontested adorableness, probably why she is the one that Rance cared the most about out of all his children. Reset's body may age faster, I can confirm that, but her mind is still very childish, I like that, I meant her, I like her, I won't let you lose your infinite level cap -OSleepy", "website": "https://alicesoft.fandom.com/wiki/Kalar#The_Time_of_Change", "subreddit": "r/Alicesoftgames", "center": [1063.5, 453.5], "path": [[1056.5, 443.5], [1068.5, 443.5], [1068.5, 445.5], [1073.5, 453.5], [1073.5, 458.5], [1072.5, 459.5], [1071.5, 460.5], [1068.5, 460.5], [1068.5, 461.5], [1067.5, 462.5], [1065.5, 464.5], [1059.5, 464.5], [1058.5, 463.5], [1056.5, 462.5], [1054.5, 460.5], [1054.5, 459.5], [1055.5, 458.5], [1055.5, 452.5], [1054.5, 451.5], [1055.5, 446.5], [1057.5, 443.5]]},
{"id": "tyeop7", "submitted_by": "Sweet-Ad-2629", "name": "Alankui", "description": "Dibujo hecho en conjunto con el streamer Alankui y su comunidad con mucho amor.", "website": "https://www.twitch.tv/alankui", "subreddit": "", "center": [1845.5, 1267.5], "path": [[1835.5, 1275.5], [1855.5, 1275.5], [1855.5, 1258.5], [1835.5, 1258.5], [1835.5, 1275.5]]},
{"id": "tyedmd", "submitted_by": "Dulstr", "name": "Ecuadorian Flag", "description": "", "website": "", "subreddit": "", "center": [1018.5, 1573.5], "path": [[934.5, 1557.5], [1093.5, 1560.5], [1090.5, 1589.5], [948.5, 1588.5], [942.5, 1589.5], [952.5, 1589.5], [946.5, 1588.5], [945.5, 1557.5]]},
{"id": "tye8aq", "submitted_by": "yonggor", "name": "Giorno Giovanna", "description": "Protagonist of Part 5 and the fifth JoJo of the JoJo's Bizarre Adventure series\n\n\"I, Giorno Giovanna, have a dream...\"", "website": "", "subreddit": "", "center": [497.5, 1825.5], "path": [[492.5, 1828.5], [492.5, 1826.5], [493.5, 1826.5], [493.5, 1823.5], [494.5, 1823.5], [494.5, 1821.5], [500.5, 1821.5], [500.5, 1826.5], [502.5, 1826.5], [502.5, 1828.5]]},
{"id": "tye45b", "submitted_by": "frightenedbabiespoo", "name": "Aurateur", "description": "AURA references Twitch streamer Aurateur uses an emote similar to the adjacent Saitama artwork.", "website": "[https://www.twitch.tv/aurateur](https://www.twitch.tv/aurateur)", "subreddit": "r/aurateur", "center": [1962.5, 1558.5], "path": [[1960.5, 1549.5], [1960.5, 1567.5], [1964.5, 1567.5], [1964.5, 1548.5], [1960.5, 1548.5], [1960.5, 1549.5]]},
{"id": "tydwp3", "submitted_by": "Beautiful-Guidance-7", "name": "PanchitoLV", "description": "Algun d\u00eda ser\u00e9 alguien a quien conozcan en todas partes :)", "website": "https://www.youtube.com/channel/UCCoDtp8SthP0qs4cDQyP4Lw", "subreddit": "https://www.reddit.com/r/anime/", "center": [1324.5, 1590.5], "path": [[1315.5, 1575.5], [1332.5, 1575.5], [1332.5, 1604.5], [1316.5, 1604.5], [1316.5, 1604.5], [1315.5, 1604.5], [1315.5, 1603.5]]},
{"id": "tydrbc", "submitted_by": "AvatarDeino", "name": "Small group of Neon Genesis Evangelion references", "description": "A small group of references to the hit Japanese anime Neon Genesis Evangelion, consisting of the fifth angel Ramiel, the Spear of Longinus, the character Asuka Langley Soryu, the Spear of Cassius, EVA Unit-01, the character Pen-Pen, the logo of the organisation SEELE, the face of the third angel Sachiel, and Stu, a small celebrity on the NGE discord server. ", "website": "", "subreddit": "r/evangelion", "center": [667.5, 1406.5], "path": [[640.5, 1384.5], [641.5, 1384.5], [642.5, 1382.5], [647.5, 1382.5], [648.5, 1385.5], [652.5, 1385.5], [653.5, 1383.5], [658.5, 1383.5], [678.5, 1383.5], [678.5, 1400.5], [680.5, 1396.5], [697.5, 1395.5], [697.5, 1413.5], [699.5, 1414.5], [699.5, 1422.5], [678.5, 1422.5], [678.5, 1419.5], [679.5, 1418.5], [679.5, 1413.5], [673.5, 1413.5], [673.5, 1422.5], [677.5, 1423.5], [676.5, 1429.5], [655.5, 1429.5], [655.5, 1423.5], [652.5, 1423.5], [649.5, 1428.5], [640.5, 1429.5], [640.5, 1413.5], [654.5, 1413.5], [650.5, 1403.5], [639.5, 1402.5], [639.5, 1386.5]]},
{"id": "tydq8m", "submitted_by": "Ech0Beast", "name": "dggL", "description": "A popular emote in Destiny's community (DGG) representing the community's love for their streamer and ALL people. Also not a cult.", "website": "destiny.gg", "subreddit": "/r/Destiny", "center": [350.5, 99.5], "path": [[341.5, 110.5], [341.5, 106.5], [342.5, 105.5], [342.5, 104.5], [343.5, 104.5], [343.5, 101.5], [342.5, 101.5], [341.5, 100.5], [340.5, 99.5], [340.5, 97.5], [339.5, 97.5], [339.5, 91.5], [338.5, 91.5], [337.5, 90.5], [337.5, 88.5], [336.5, 88.5], [336.5, 85.5], [337.5, 85.5], [338.5, 86.5], [339.5, 86.5], [340.5, 85.5], [341.5, 85.5], [341.5, 87.5], [344.5, 87.5], [344.5, 88.5], [347.5, 88.5], [347.5, 89.5], [351.5, 89.5], [351.5, 90.5], [356.5, 90.5], [357.5, 91.5], [359.5, 91.5], [359.5, 92.5], [363.5, 92.5], [363.5, 93.5], [365.5, 93.5], [364.5, 94.5], [363.5, 95.5], [363.5, 98.5], [362.5, 99.5], [361.5, 100.5], [360.5, 101.5], [360.5, 102.5], [361.5, 103.5], [361.5, 108.5], [362.5, 109.5], [362.5, 110.5], [341.5, 110.5]]},
{"id": "tydp41", "submitted_by": "AnonymousRandPerson", "name": "White king", "description": "A type of chess piece. Kings can move one space in any direction. If a player's king is about to be captured and cannot move out of danger, that player loses the game.", "website": "https://en.wikipedia.org/wiki/King_(chess)", "subreddit": "/r/AnarchyChess", "center": [128.5, 641.5], "path": [[128.5, 634.5], [126.5, 636.5], [126.5, 637.5], [124.5, 637.5], [122.5, 639.5], [122.5, 641.5], [123.5, 642.5], [123.5, 643.5], [126.5, 646.5], [130.5, 646.5], [133.5, 643.5], [133.5, 642.5], [134.5, 641.5], [134.5, 639.5], [132.5, 637.5], [130.5, 637.5], [130.5, 636.5], [128.5, 634.5]]},
{"id": "tydlfz", "submitted_by": "Ech0Beast", "name": "Viking helmet", "description": "A Viking helmet on top of the head of dggL. Symbolizes the union between the Daliban (DGG) and the nordic union.", "website": "", "subreddit": "", "center": [355.5, 84.5], "path": [[342.5, 86.5], [342.5, 84.5], [343.5, 84.5], [343.5, 78.5], [344.5, 78.5], [344.5, 77.5], [345.5, 76.5], [346.5, 75.5], [348.5, 75.5], [348.5, 78.5], [347.5, 79.5], [348.5, 80.5], [357.5, 80.5], [358.5, 81.5], [361.5, 81.5], [362.5, 82.5], [363.5, 83.5], [366.5, 83.5], [367.5, 82.5], [368.5, 81.5], [369.5, 80.5], [370.5, 80.5], [370.5, 83.5], [369.5, 84.5], [369.5, 86.5], [368.5, 86.5], [366.5, 87.5], [365.5, 88.5], [365.5, 92.5], [364.5, 92.5], [363.5, 91.5], [360.5, 91.5], [359.5, 90.5], [357.5, 90.5], [356.5, 89.5], [352.5, 89.5], [351.5, 88.5], [348.5, 88.5], [347.5, 87.5], [345.5, 87.5], [344.5, 86.5], [342.5, 86.5]]},
{"id": "tydbzs", "submitted_by": "ImGlaze_", "name": "The Four Colored Fish", "description": "These are the four colored fish, from the books \"Dreams of Mermaid\" and \"The Four Colored Fishes\" written by Aaron Abarca. \n\nThe red one is Rocky, then there's Boris the gold fish, Peter the green fish, and Michael the blue fish.", "website": "https://www.amazon.com/Four-Colored-Fishes-Aaron-Abarca/dp/B08TQG371L?asin=B08TQG371L&revisionId=&format=4&depth=1", "subreddit": "", "center": [925.5, 1005.5], "path": [[913.5, 1000.5], [937.5, 999.5], [935.5, 1010.5], [914.5, 1010.5], [913.5, 1000.5]]},
{"id": "tyd6g8", "submitted_by": "SiSu1214", "name": "among us", "description": "among us, they are every where!", "website": "", "subreddit": "/r/AmongUsPlace", "center": [1251.5, 1391.5], "path": [[1244.5, 1373.5], [1236.5, 1368.5], [1227.5, 1378.5], [1265.5, 1414.5], [1276.5, 1403.5], [1236.5, 1368.5]]},
{"id": "tyd3of", "submitted_by": "Potential-Act-7543", "name": "Ruhnu/Ro\u0146u sala", "description": "Officialy a part of Estonia, but here in r/place a very contested plot of land between r/latvia and r/eesti, having changed places hundreds of times throughout the timeline of the canvas.", "website": "", "subreddit": "/r/latvia /r/eesti /r/balticstates", "center": [1918.5, 125.5], "path": [[1917.5, 125.5], [1918.5, 124.5], [1919.5, 125.5], [1918.5, 126.5]]},
{"id": "tyczdv", "submitted_by": "Dr_Straing_Strange", "name": "Attempt at Vaush", "description": "This is a failed attempt at drawing Voosh, a successful attempt can be found further down, below Anakin's arm", "website": "", "subreddit": "r/VaushV", "center": [675.5, 1602.5], "path": [[672.5, 1598.5], [673.5, 1597.5], [680.5, 1598.5], [680.5, 1605.5], [673.5, 1606.5], [670.5, 1605.5], [671.5, 1600.5]]},
{"id": "tycuoc", "submitted_by": "Starwort", "name": "Fuck Ears", "description": "There was a fight during /r/place to turn the subreddit name 'r/FUCKCARS' into the more amusing 'r/FUCKEARS'", "website": "", "subreddit": "", "center": [1059.5, 757.5], "path": [[1052.5, 742.5], [1052.5, 771.5], [1066.5, 771.5], [1066.5, 742.5]]},
{"id": "tycpwe", "submitted_by": "Pikagiuppy", "name": "JoJo logo", "description": "The logo of the popular manga/anime JoJo's Bizzarre Adventure", "website": "", "subreddit": "", "center": [77.5, 935.5], "path": [[68.5, 933.5], [67.5, 934.5], [66.5, 934.5], [66.5, 935.5], [65.5, 935.5], [64.5, 934.5], [64.5, 933.5], [65.5, 932.5], [66.5, 931.5], [67.5, 931.5], [68.5, 930.5], [74.5, 930.5], [74.5, 932.5], [75.5, 932.5], [76.5, 932.5], [76.5, 931.5], [76.5, 932.5], [78.5, 932.5], [79.5, 932.5], [79.5, 931.5], [80.5, 931.5], [80.5, 930.5], [81.5, 930.5], [82.5, 930.5], [82.5, 929.5], [87.5, 929.5], [87.5, 932.5], [88.5, 932.5], [89.5, 932.5], [89.5, 931.5], [89.5, 932.5], [90.5, 932.5], [90.5, 933.5], [91.5, 933.5], [91.5, 936.5], [90.5, 936.5], [89.5, 937.5], [89.5, 937.5], [89.5, 938.5], [88.5, 938.5], [88.5, 939.5], [87.5, 939.5], [87.5, 938.5], [86.5, 938.5], [86.5, 937.5], [84.5, 937.5], [84.5, 938.5], [83.5, 938.5], [83.5, 939.5], [82.5, 939.5], [82.5, 940.5], [79.5, 940.5], [79.5, 938.5], [80.5, 938.5], [80.5, 937.5], [81.5, 937.5], [81.5, 936.5], [82.5, 936.5], [82.5, 936.5], [82.5, 933.5], [79.5, 933.5], [79.5, 934.5], [78.5, 934.5], [78.5, 937.5], [77.5, 937.5], [76.5, 937.5], [76.5, 938.5], [76.5, 939.5], [75.5, 939.5], [75.5, 940.5], [74.5, 940.5], [74.5, 939.5], [73.5, 939.5], [73.5, 938.5], [72.5, 938.5], [71.5, 938.5], [71.5, 939.5], [70.5, 939.5], [70.5, 940.5], [69.5, 940.5], [69.5, 941.5], [66.5, 941.5], [66.5, 940.5], [65.5, 940.5], [65.5, 939.5], [66.5, 939.5], [66.5, 938.5], [68.5, 938.5], [68.5, 936.5], [69.5, 936.5]]},
{"id": "tyco0x", "submitted_by": "DumbHotdog", "name": "Kakiniit / Tunniit", "description": "Traditional Inuit tattoo", "website": "https://en.wikipedia.org/wiki/Kakiniit", "subreddit": "", "center": [515.5, 164.5], "path": [[496.5, 178.5], [527.5, 178.5], [527.5, 149.5], [497.5, 149.5], [496.5, 150.5], [501.5, 150.5], [501.5, 152.5], [502.5, 152.5], [502.5, 153.5], [503.5, 153.5], [503.5, 155.5], [504.5, 155.5], [504.5, 156.5], [505.5, 156.5], [505.5, 158.5], [506.5, 158.5], [506.5, 168.5], [505.5, 168.5], [505.5, 170.5], [504.5, 170.5], [504.5, 171.5], [503.5, 171.5], [503.5, 172.5], [502.5, 172.5], [502.5, 173.5], [501.5, 173.5], [501.5, 174.5], [496.5, 174.5], [496.5, 178.5]]},
{"id": "tycla1", "submitted_by": "DumbHotdog", "name": "Burger", "description": "Just a burger. No deeper philosophical meaning about life. A bun, meat patty, lettuce and ketchup.", "website": "", "subreddit": "", "center": [869.5, 1838.5], "path": [[867.5, 1836.5], [871.5, 1836.5], [871.5, 1840.5], [867.5, 1840.5]]},
{"id": "tycfz3", "submitted_by": "Lokitxd58", "name": "Gymzl", "description": "Grammar school in the Czech Republic in Zl\u00edn", "website": "https://www.gymzl.cz/", "subreddit": "", "center": [1151.5, 1606.5], "path": [[1146.5, 1602.5], [1155.5, 1602.5], [1155.5, 1610.5], [1146.5, 1610.5], [1146.5, 1602.5]]},
{"id": "tycehc", "submitted_by": "oreo_kin", "name": "Loserfruit ", "description": "Here once lied starwberry that Loserfruit and her community made and protected while her friend Brodie and his community would make the strawberry mouldy. It once turned into a eggplant that looked objectivly better. :)", "website": "", "subreddit": "r/loserfruitofficial ", "center": [1990.5, 1714.5], "path": [[1981.5, 1704.5], [1999.5, 1705.5], [1999.5, 1724.5], [1981.5, 1724.5]]},
{"id": "tyccx9", "submitted_by": "OmebakTV", "name": "Omekeur", "description": "This emote is by Omebak's community to spray the love around the world", "website": "twitch.tv/omebaktv", "subreddit": "", "center": [417.5, 1460.5], "path": [[412.5, 1455.5], [422.5, 1455.5], [421.5, 1466.5], [412.5, 1466.5], [412.5, 1455.5], [422.5, 1455.5]]},
{"id": "tyc657", "submitted_by": "AjnoVerdulo", "name": "Green Star", "description": "The most popular Esperanto symbol, green five-pointed star, can be found on the flag of Esperanto, where it's put on a white square in the top left corner. The green colour symbolizes hope (The word esperanto lit. translates as one who hopes) and the five points show the union of the five continents people normally live in.", "website": "https://en.wikipedia.org/wiki/Esperanto_symbols", "subreddit": "", "center": [1442.5, 494.5], "path": [[1434.5, 487.5], [1434.5, 500.5], [1450.5, 500.5], [1450.5, 487.5]]},
{"id": "tyc5z2", "submitted_by": "Marawantareq23", "name": "The Great Sphinx of Giza", "description": "The\u00a0Great Sphinx of Giza, commonly referred to as the\u00a0Sphinx, is a\u00a0limestone\u00a0statue of a reclining\u00a0sphinx, a\u00a0mythical creature\u00a0with the head of a human, and the body of a lion. The Sphinx is the oldest known monumental sculpture in Egypt and one of the most recognisable statues in the world.", "website": "", "subreddit": "r/Egypt", "center": [55.5, 145.5], "path": [[60.5, 151.5], [48.5, 151.5], [47.5, 151.5], [47.5, 150.5], [46.5, 150.5], [44.5, 150.5], [43.5, 149.5], [45.5, 149.5], [45.5, 148.5], [48.5, 145.5], [50.5, 145.5], [50.5, 141.5], [53.5, 138.5], [60.5, 138.5], [62.5, 140.5], [62.5, 147.5], [60.5, 147.5], [61.5, 148.5], [60.5, 148.5], [60.5, 149.5], [61.5, 150.5]]},
{"id": "tyc2i6", "submitted_by": "AjnoVerdulo", "name": "Zamenhof", "description": "Zamenhof was the creator of Esperanto, he published his first work in 1887. He is well known by the members of the Esperanto community. After the expansion of the Romanian flag had been ceased by the Polish flag, the Esperanto shield got an opportunity to expand several pixels further to the left. After some discussion it was decided to put a small picture of Zamenhof's face with Deal With It sunglasses in honor of his work.", "website": "https://en.wikipedia.org/wiki/L._L._Zamenhof", "subreddit": "", "center": [1503.5, 494.5], "path": [[1497.5, 487.5], [1497.5, 500.5], [1508.5, 500.5], [1508.5, 487.5]]},
{"id": "tybu7x", "submitted_by": "hoainam150399", "name": "Kizuna AI's Headband", "description": "The headband of Kizuna AI, the spearhead of the current Virtual YouTuber (VTuber) trend and the first to coin the term 'Virtual YouTuber' itself.", "website": "https://www.youtube.com/channel/UC4YaOt1yT-ZeyB0OmxHgolA", "subreddit": "/r/VirtualYoutubers", "center": [1386.5, 910.5], "path": [[1382.5, 903.5], [1379.5, 903.5], [1379.5, 904.5], [1378.5, 904.5], [1378.5, 908.5], [1379.5, 908.5], [1379.5, 909.5], [1381.5, 909.5], [1381.5, 910.5], [1383.5, 910.5], [1383.5, 911.5], [1385.5, 911.5], [1385.5, 912.5], [1382.5, 912.5], [1382.5, 913.5], [1379.5, 913.5], [1379.5, 914.5], [1377.5, 914.5], [1377.5, 915.5], [1375.5, 915.5], [1375.5, 916.5], [1374.5, 916.5], [1374.5, 917.5], [1373.5, 917.5], [1373.5, 920.5], [1375.5, 920.5], [1375.5, 918.5], [1378.5, 918.5], [1378.5, 917.5], [1380.5, 917.5], [1380.5, 916.5], [1382.5, 916.5], [1382.5, 915.5], [1389.5, 915.5], [1389.5, 916.5], [1391.5, 916.5], [1391.5, 918.5], [1392.5, 918.5], [1392.5, 921.5], [1394.5, 921.5], [1394.5, 917.5], [1393.5, 917.5], [1393.5, 915.5], [1393.5, 914.5], [1392.5, 914.5], [1392.5, 913.5], [1391.5, 913.5], [1391.5, 912.5], [1390.5, 912.5], [1391.5, 911.5], [1392.5, 911.5], [1392.5, 910.5], [1393.5, 910.5], [1393.5, 908.5], [1393.5, 906.5], [1394.5, 902.5], [1394.5, 900.5], [1388.5, 900.5], [1388.5, 906.5], [1387.5, 905.5], [1387.5, 904.5], [1386.5, 904.5], [1386.5, 903.5], [1379.5, 903.5]]},
{"id": "tybs9h", "submitted_by": "PM_ME_UR_DESKTOP_PLS", "name": "Necati", "description": "A Turkish cartoon character that blew up in popularity after a video was released where a plushie of the character gets penetrated.", "website": "", "subreddit": "", "center": [1643.5, 359.5], "path": [[1629.5, 339.5], [1650.5, 339.5], [1664.5, 339.5], [1666.5, 342.5], [1667.5, 346.5], [1670.5, 348.5], [1673.5, 356.5], [1672.5, 359.5], [1666.5, 361.5], [1657.5, 365.5], [1656.5, 374.5], [1652.5, 373.5], [1649.5, 375.5], [1648.5, 378.5], [1648.5, 381.5], [1646.5, 381.5], [1644.5, 397.5], [1636.5, 397.5], [1636.5, 384.5], [1634.5, 378.5], [1635.5, 369.5], [1635.5, 369.5], [1629.5, 369.5], [1626.5, 370.5], [1622.5, 360.5], [1620.5, 360.5], [1610.5, 357.5], [1615.5, 351.5], [1618.5, 349.5], [1624.5, 342.5], [1628.5, 339.5]]},
{"id": "tybntm", "submitted_by": "Legitimate-Cattle308", "name": "tomiii 11 memorial", "description": "Memorial made to tomiii 11, a Chilean child YouTuber who wished to become a YouTuber, but sadly he left this world due to brain cancer in 2021. As of April 2021, his channel gathers 10.5 million subscribers. Mural created with the efforts of Late, Caprimint, Rodny, MitroxFear, and Panchaalel communities.", "website": "https://www.youtube.com/c/tomiii11_oficial", "subreddit": "", "center": [1274.5, 1917.5], "path": [[1245.5, 1889.5], [1299.5, 1889.5], [1299.5, 1953.5], [1243.5, 1953.5], [1243.5, 1888.5], [1300.5, 1888.5], [1300.5, 1953.5]]},
{"id": "tybnah", "submitted_by": "Ricrios", "name": "Ensemble Maplestory Guild", "description": "This white music note on a light blue background is the emblem used by the Ensemble guild in Maplestory.", "website": "", "subreddit": "", "center": [531.5, 1428.5], "path": [[528.5, 1425.5], [533.5, 1425.5], [533.5, 1430.5], [528.5, 1430.5]]},
{"id": "tybkat", "submitted_by": "Da3viD55", "name": "Tiamat Comet", "description": "The comet from the 2016 anime movie Kimi No Na Wa (english: Your Name). It is one of the many metaphors for the connection between the 2 main protagonists Taki and Mitsuha", "website": "", "subreddit": "r/KimiNoNaWa", "center": [1261.5, 1956.5], "path": [[1257.5, 1959.5], [1257.5, 1953.5], [1264.5, 1953.5], [1264.5, 1959.5]]},
{"id": "tybjrh", "submitted_by": "MrOrvilleman", "name": "Map of Belgium", "description": "A map of the small West-European country, drawn in different shades of the Belgian flag", "website": "", "subreddit": "r/belgiumplace", "center": [281.5, 676.5], "path": [[267.5, 666.5], [269.5, 666.5], [269.5, 667.5], [272.5, 667.5], [272.5, 668.5], [274.5, 668.5], [274.5, 667.5], [277.5, 667.5], [277.5, 666.5], [279.5, 666.5], [279.5, 665.5], [281.5, 665.5], [281.5, 664.5], [282.5, 664.5], [282.5, 665.5], [284.5, 665.5], [284.5, 664.5], [284.5, 665.5], [286.5, 665.5], [286.5, 664.5], [286.5, 665.5], [287.5, 665.5], [287.5, 666.5], [288.5, 666.5], [287.5, 667.5], [290.5, 667.5], [290.5, 669.5], [291.5, 669.5], [291.5, 673.5], [292.5, 673.5], [292.5, 674.5], [293.5, 674.5], [293.5, 675.5], [294.5, 675.5], [294.5, 676.5], [295.5, 676.5], [295.5, 678.5], [296.5, 678.5], [296.5, 679.5], [297.5, 679.5], [297.5, 680.5], [296.5, 680.5], [296.5, 682.5], [295.5, 682.5], [295.5, 683.5], [293.5, 683.5], [294.5, 684.5], [293.5, 684.5], [293.5, 685.5], [292.5, 685.5], [292.5, 689.5], [293.5, 689.5], [293.5, 690.5], [294.5, 690.5], [294.5, 691.5], [292.5, 691.5], [292.5, 692.5], [291.5, 692.5], [291.5, 693.5], [289.5, 693.5], [289.5, 692.5], [289.5, 691.5], [288.5, 691.5], [288.5, 690.5], [286.5, 690.5], [286.5, 689.5], [285.5, 689.5], [285.5, 688.5], [285.5, 687.5], [284.5, 687.5], [284.5, 686.5], [280.5, 686.5], [280.5, 687.5], [279.5, 687.5], [279.5, 688.5], [279.5, 687.5], [278.5, 687.5], [278.5, 686.5], [277.5, 686.5], [277.5, 683.5], [276.5, 683.5], [276.5, 681.5], [275.5, 681.5], [275.5, 680.5], [274.5, 680.5], [274.5, 678.5], [272.5, 678.5], [272.5, 679.5], [270.5, 679.5], [270.5, 678.5], [268.5, 678.5], [268.5, 676.5], [267.5, 676.5], [267.5, 675.5], [264.5, 675.5], [264.5, 674.5], [263.5, 674.5], [263.5, 673.5], [262.5, 673.5], [262.5, 671.5], [261.5, 671.5], [261.5, 670.5], [262.5, 670.5], [262.5, 669.5], [263.5, 669.5], [263.5, 668.5], [265.5, 668.5], [265.5, 667.5], [267.5, 667.5], [267.5, 666.5]]},
{"id": "tybg1m", "submitted_by": "CrazyPenks", "name": "Vasile Alecsandri National College", "description": "a public day high school in Gala\u021bi, Romania", "website": "", "subreddit": "", "center": [371.5, 1690.5], "path": [[369.5, 1691.5], [369.5, 1696.5], [379.5, 1695.5], [379.5, 1685.5], [361.5, 1686.5], [362.5, 1692.5]]},
{"id": "tyb73l", "submitted_by": "FalendalLaDalle", "name": "Gus", "description": "This is GUS typed in dark green, with a purple/indigo background. It represents the famous gustavo fring from Breaking Bad but most importantly, the community from the discord.gg/gus discord server. The users falendalle and tabor contributed the most to this masterpiece. We can also see a small heart on the right, made with the community around gus and the gus community itself", "website": "discord.gg/gus", "subreddit": "", "center": [1968.5, 1478.5], "path": [[1961.5, 1475.5], [1976.5, 1475.5], [1976.5, 1480.5], [1974.5, 1480.5], [1974.5, 1481.5], [1961.5, 1481.5], [1961.5, 1475.5]]},
{"id": "tyb5iy", "submitted_by": "susloginattempt", "name": "glowing star & sparkle", "description": "something for a friendship to be remembered by. ty green lettuce", "website": "", "subreddit": "", "center": [1169.5, 437.5], "path": [[1167.5, 444.5], [1167.5, 432.5], [1172.5, 432.5], [1172.5, 440.5], [1168.5, 444.5], [1167.5, 444.5]]},
{"id": "tyawuo", "submitted_by": "Nipeno28", "name": "L <3", "description": "I wanted to leave a permanent mark on the internet, so I just decided I'd put my girlfriends' names first letter and a heart.", "website": "https://twitter.com/nipeno", "subreddit": "", "center": [1070.5, 1126.5], "path": [[1067.5, 1123.5], [1067.5, 1123.5], [1067.5, 1130.5], [1073.5, 1130.5], [1073.5, 1129.5], [1072.5, 1128.5], [1073.5, 1127.5], [1074.5, 1126.5], [1075.5, 1125.5], [1075.5, 1124.5], [1074.5, 1123.5], [1073.5, 1123.5], [1072.5, 1124.5], [1071.5, 1123.5], [1070.5, 1123.5], [1069.5, 1124.5], [1068.5, 1123.5]]},
{"id": "tyawdj", "submitted_by": "e_schimdt", "name": "2nd Shogi Settlement", "description": "After the invasion by the Omega, r/shogi was forced to wander the Canvas for some time. In 43:20s, with the hope to form a new settlement, r/shogi commenced a relocation just in the vicinity of their former stead. They persisted enough to make a significant development but were not enough to resist the 44:30 Rapid Expansion of the Hungarian flag.\nThis settlement was unsuccessful. If completed, the settlement could have featured the community\u2019s mark shaped in a shogi piece (18px long, 17px wide) with the \u2018\u738b\u2019 inscription. (This location marks the supposed center of the inscription).\n", "website": "https://youtu.be/2L1Q_QRwCAM", "subreddit": "", "center": [1403.5, 266.5], "path": [[1402.5, 266.5], [1402.5, 265.5], [1404.5, 265.5], [1404.5, 266.5]]},
{"id": "tyaulo", "submitted_by": "KassXWolfXTigerXFox", "name": "Raysfire", "description": "The logo of Twitch streamer and YouTuber, RaysFire, known for playing Mario Maker 2 and other Mario games, speedrunning Mario 64, reintroducing the world to the Grindel and being bald", "website": "", "subreddit": "", "center": [1581.5, 1681.5], "path": [[1580.5, 1663.5], [1581.5, 1662.5], [1586.5, 1662.5], [1587.5, 1663.5], [1588.5, 1663.5], [1588.5, 1664.5], [1587.5, 1665.5], [1587.5, 1668.5], [1586.5, 1669.5], [1586.5, 1673.5], [1585.5, 1674.5], [1585.5, 1676.5], [1584.5, 1677.5], [1584.5, 1681.5], [1583.5, 1682.5], [1583.5, 1683.5], [1582.5, 1684.5], [1582.5, 1685.5], [1581.5, 1685.5], [1580.5, 1686.5], [1580.5, 1697.5], [1587.5, 1697.5], [1587.5, 1703.5], [1577.5, 1703.5], [1577.5, 1677.5], [1577.5, 1676.5], [1576.5, 1675.5], [1575.5, 1674.5], [1575.5, 1670.5], [1576.5, 1669.5], [1576.5, 1668.5], [1578.5, 1667.5], [1579.5, 1666.5], [1578.5, 1666.5], [1579.5, 1665.5], [1580.5, 1664.5], [1580.5, 1663.5]]},
{"id": "tyanh5", "submitted_by": "Wegwerf189900", "name": "Paragraph 11", "description": "The paragraph 11 is the best known and most widely used paragraph of the German Bier-Comment. It is mostly used by German Student fraternities and roughly translates to: Drinking must continue!", "website": "[https://de.wikipedia.org/wiki/Paragraph_11](https://de.wikipedia.org/wiki/Paragraph_11)", "subreddit": "/r/Korpo", "center": [252.5, 1138.5], "path": [[247.5, 1132.5], [247.5, 1143.5], [256.5, 1143.5], [256.5, 1132.5]]},
{"id": "tyamor", "submitted_by": "Tactical_Peperoni", "name": "The Valiant Heart", "description": "After multiple futile attempts at establishing a semi-small heart we settled here in the last hours of r/place and allied with the Dustforce and u/Sausagetalks to defend our love. Thanks to u/Real-Palpitation8032 for helping & happy wedding anniversary.\n\n", "website": "https://www.instagram.com/o.clrs/", "subreddit": "", "center": [1480.5, 1273.5], "path": [[1478.5, 1271.5], [1477.5, 1272.5], [1477.5, 1273.5], [1478.5, 1274.5], [1479.5, 1275.5], [1480.5, 1276.5], [1481.5, 1275.5], [1482.5, 1274.5], [1483.5, 1273.5], [1483.5, 1272.5], [1482.5, 1271.5], [1481.5, 1270.5], [1480.5, 1271.5], [1479.5, 1270.5], [1479.5, 1270.5]]},
{"id": "tyajlk", "submitted_by": "dsamd326", "name": "RvB/RWBY Heart", "description": "An alliance between RWBY and RVB, 2 shows both produced by RoosterTeeth, gave us this heart filled the main colors from both shows.", "website": "", "subreddit": "", "center": [467.5, 712.5], "path": [[467.5, 711.5], [468.5, 710.5], [469.5, 709.5], [470.5, 709.5], [471.5, 710.5], [472.5, 711.5], [472.5, 712.5], [471.5, 713.5], [470.5, 714.5], [469.5, 715.5], [468.5, 716.5], [467.5, 717.5], [466.5, 716.5], [465.5, 715.5], [464.5, 714.5], [463.5, 713.5], [462.5, 712.5], [462.5, 711.5], [463.5, 710.5], [464.5, 709.5], [465.5, 709.5], [466.5, 710.5], [467.5, 711.5], [468.5, 710.5]]},
{"id": "tyadca", "submitted_by": "UvaCbW", "name": "UvaCBW's Avatar", "description": "The fifth attempt to recreate my avatar.\n\nLeft unfinished.", "website": "", "subreddit": "", "center": [1447.5, 1998.5], "path": [[1446.5, 1997.5], [1448.5, 1997.5], [1448.5, 1999.5], [1446.5, 1999.5]]},
{"id": "tyacyz", "submitted_by": "RealMan_Gelo", "name": "KEKW Emote", "description": "A twitch emote of El Risitas laughing", "website": "", "subreddit": "", "center": [1453.5, 1418.5], "path": [[1437.5, 1401.5], [1468.5, 1401.5], [1468.5, 1435.5], [1437.5, 1435.5]]},
{"id": "tyaayz", "submitted_by": "MrWideO", "name": "Alliance Between India and Germany", "description": "An Alliance of Hearts between Germany and India after they searched for something they could make together. At first they wanted to make an Elephant, but India already had made one, they settled with hearts", "website": "", "subreddit": "r/placede r/india", "center": [251.5, 1172.5], "path": [[193.5, 1168.5], [312.5, 1168.5], [311.5, 1175.5], [194.5, 1176.5]]},
{"id": "tya5re", "submitted_by": "JaxxDRanger", "name": "Mineclub Logo And Beta Hat", "description": "The logo for the Minecraft server known as Mineclub and one of the cosmetics you can get in game.", "website": "", "subreddit": "r/Mineclub", "center": [734.5, 1757.5], "path": [[729.5, 1763.5], [729.5, 1751.5], [738.5, 1751.5], [738.5, 1763.5], [729.5, 1763.5]]},
{"id": "tya4pd", "submitted_by": "WitherStar123", "name": "Isgar", "description": "Top Minecraft speedrunner and current world record holder in the Any% Glitchless 1.9-1.15 category, first to achieve a time below 16 minutes in said category", "website": "https://www.youtube.com/channel/UCY3d_-rSCGMXhMpxn8H96OA", "subreddit": "", "center": [1468.5, 1441.5], "path": [[1464.5, 1437.5], [1471.5, 1437.5], [1471.5, 1444.5], [1464.5, 1444.5]]},
{"id": "tya4j1", "submitted_by": "e_schimdt", "name": "1st Shogi Settlement", "description": "In the early times of the r/Place, a small community of shogi(Japanese chess) enthusiasts aspired to establish a humble settlement in the vast four-sided world. This ambition was truly a challenge due to the \u2018hostile environment\u2019 especially by the big communities that clearly outnumbers them. Out of desperation, at some point, the r/shogi nomads attempted to infiltrate a few of the established territories but failed. Finally, around 29:00, the r/shogi nomads were able to find the spot for their first settlement in the wastelands left by the Voids. They contested against myriad of other groups in the area and endured series of incursions before completely establishing the 1st Shogi Settlement in around 36:00. It was defended with the community\u2019s full capacity until the 36:20s when the growing force of the Omega breached the Western defenses and gradually subdued the entire settlement.\nThis settlement could have been harder to establish without the alliance (in the form of peace treaty) with some of its neighbors. This is r/shogi\u2019s largest settlement.\n", "website": "https://youtu.be/2L1Q_QRwCAM", "subreddit": "", "center": [1439.5, 255.5], "path": [[1426.5, 248.5], [1438.5, 248.5], [1438.5, 246.5], [1439.5, 245.5], [1440.5, 244.5], [1441.5, 243.5], [1446.5, 243.5], [1446.5, 244.5], [1447.5, 244.5], [1447.5, 245.5], [1448.5, 245.5], [1448.5, 246.5], [1449.5, 246.5], [1449.5, 247.5], [1449.5, 251.5], [1451.5, 252.5], [1451.5, 263.5], [1426.5, 263.5]]},
{"id": "tya00e", "submitted_by": "Mayyones", "name": "Half Hidden Kris", "description": "A half hidden Kris with the red soul in the top. Kris is one of the main characters in DELTARUNE, a game created by Toby Fox. Seeing the main character's face half hidden in the corner while Spamton get a large space for his whole body and his extremely long nose is really saying something about Deltarune fan's priority.", "website": "", "subreddit": "/r/deltarune", "center": [695.5, 422.5], "path": [[697.5, 415.5], [696.5, 414.5], [694.5, 414.5], [693.5, 417.5], [692.5, 417.5], [692.5, 419.5], [691.5, 419.5], [691.5, 423.5], [692.5, 424.5], [692.5, 423.5], [694.5, 424.5], [694.5, 427.5], [694.5, 428.5], [690.5, 428.5], [690.5, 429.5], [697.5, 429.5], [697.5, 416.5]]},
{"id": "ty9w6w", "submitted_by": "VOIZCRACK", "name": "Sidemen SDMN Logo", "description": "The Sidemen is a British YouTube group consisting of Internet personalities KSI, Miniminter, Zerkaa, TBJZL, Behzinga, Vikkstar123, and W2S. The group produce videos of various challenges, sketches, and video game commentaries across their YouTube channels.", "website": "https://www.youtube.com/c/Sidemen", "subreddit": "/r/Sidemen", "center": [0.5, 0.5], "path": []},
{"id": "ty9umw", "submitted_by": "SamiSha_", "name": "One Step from Eden", "description": "A nearly finished One Step from Eden emoji, a deckbuilding roguelike with real-time grid combat.", "website": "https://www.onestepfromeden.com/", "subreddit": "/r/onestepfromeden", "center": [385.5, 1873.5], "path": [[378.5, 1880.5], [378.5, 1878.5], [379.5, 1867.5], [391.5, 1866.5], [391.5, 1880.5], [384.5, 1880.5]]},
{"id": "ty9rgi", "submitted_by": "kettlesandpots", "name": "Enhyphen", "description": "Enhypen (Hangul: \uc5d4\ud558\uc774\ud508) is a South Korean boy band under CJ ENM and Hybe Corporation. The group is composed of seven members: Jungwon, Heeseung, Jay, Jake, Sunghoon, Sunoo, and Ni-ki.", "website": "", "subreddit": "/r/enhyphen", "center": [1905.5, 66.5], "path": [[1894.5, 60.5], [1916.5, 60.5], [1916.5, 72.5], [1894.5, 72.5], [1894.5, 60.5]]},
{"id": "ty9nrq", "submitted_by": "lmabanana", "name": "JUL Hands", "description": "This drawing of these two hands is the distinctive sign of the French rapper JUL. It was added a few hours before the Geat Erasure.", "website": "[https://en.wikipedia.org/wiki/Jul_(rapper)](https://en.wikipedia.org/wiki/Jul_(rapper))", "subreddit": "", "center": [191.5, 1522.5], "path": [[179.5, 1509.5], [184.5, 1509.5], [184.5, 1509.5], [184.5, 1510.5], [185.5, 1510.5], [185.5, 1517.5], [186.5, 1517.5], [186.5, 1518.5], [187.5, 1518.5], [187.5, 1519.5], [194.5, 1519.5], [194.5, 1518.5], [195.5, 1518.5], [196.5, 1517.5], [196.5, 1511.5], [197.5, 1511.5], [197.5, 1509.5], [201.5, 1509.5], [201.5, 1510.5], [202.5, 1510.5], [202.5, 1517.5], [205.5, 1517.5], [205.5, 1518.5], [206.5, 1518.5], [206.5, 1519.5], [205.5, 1519.5], [205.5, 1522.5], [204.5, 1522.5], [204.5, 1523.5], [203.5, 1523.5], [203.5, 1524.5], [203.5, 1526.5], [202.5, 1526.5], [202.5, 1527.5], [201.5, 1527.5], [201.5, 1528.5], [200.5, 1528.5], [200.5, 1533.5], [194.5, 1533.5], [193.5, 1533.5], [193.5, 1532.5], [192.5, 1532.5], [192.5, 1526.5], [192.5, 1525.5], [189.5, 1525.5], [189.5, 1533.5], [181.5, 1533.5], [181.5, 1528.5], [181.5, 1527.5], [180.5, 1527.5], [180.5, 1526.5], [179.5, 1526.5], [179.5, 1525.5], [178.5, 1525.5], [178.5, 1523.5], [177.5, 1523.5], [177.5, 1521.5], [177.5, 1520.5], [176.5, 1520.5], [176.5, 1519.5], [175.5, 1519.5], [175.5, 1518.5], [176.5, 1518.5], [176.5, 1517.5], [178.5, 1517.5], [179.5, 1517.5], [179.5, 1509.5]]},
{"id": "ty9l8h", "submitted_by": "TheHawaiianKoala", "name": "pakistani flag", "description": "the final pakistani flag that got made just before the end saving the 4th massacre", "website": "", "subreddit": "", "center": [776.5, 328.5], "path": [[771.5, 325.5], [771.5, 330.5], [781.5, 330.5], [781.5, 326.5], [781.5, 325.5]]},
{"id": "ty9j8b", "submitted_by": "ouzz90", "name": "Mert", "description": "A german rapper with turkish roots. He also streams on twitch (/mertabimula). He organized his community to get his name on /place 22. His favorite Slogan is Bize her yer Trabzon.", "website": "[https://www.twitch.tv/mertabimula](https://www.twitch.tv/mertabimula)", "subreddit": "", "center": [1546.5, 1993.5], "path": [[1568.5, 1986.5], [1524.5, 1987.5], [1524.5, 1999.5], [1567.5, 1999.5], [1569.5, 2000.5], [1567.5, 1998.5], [1567.5, 1998.5], [1568.5, 1994.5], [1568.5, 1994.5], [1568.5, 1995.5]]},
{"id": "ty9i72", "submitted_by": "Skieblu", "name": "Robin", "description": "Robin is one of the protagonists from Fire Emblem Awakening and a playable character in Super Smash Bros for the 3DS and Wii U. Etika loved playing as the female red alternate color of Robin in Super Smash Bros for 3DS and Wii U (this color option does not exist in smash ultimate). This promoted him to play the Fire Emblem Awakening\u2019s demo, then the full game on stream. For his fans, Etika collaborated with the artist AkaiRiot to sell custom T-shirts featuring Red Robin in a one piece bathing suit with Etika\u2019s name written on the front (linked below).", "website": "https://www.customink.com/fundraising/akaiewn", "subreddit": "", "center": [1553.5, 1267.5], "path": [[1558.5, 1251.5], [1557.5, 1250.5], [1556.5, 1250.5], [1555.5, 1251.5], [1551.5, 1251.5], [1551.5, 1250.5], [1549.5, 1250.5], [1548.5, 1251.5], [1547.5, 1256.5], [1546.5, 1257.5], [1544.5, 1258.5], [1544.5, 1260.5], [1543.5, 1261.5], [1543.5, 1263.5], [1542.5, 1264.5], [1542.5, 1270.5], [1543.5, 1271.5], [1543.5, 1273.5], [1545.5, 1273.5], [1546.5, 1274.5], [1547.5, 1275.5], [1547.5, 1276.5], [1549.5, 1278.5], [1550.5, 1279.5], [1550.5, 1282.5], [1562.5, 1282.5], [1562.5, 1281.5], [1561.5, 1280.5], [1564.5, 1274.5], [1564.5, 1268.5]]},
{"id": "ty9hzy", "submitted_by": "N8dawgggg", "name": "Justin Jefferson", "description": "Professional American Football player Justin Jefferson is depicted by his teams logo, the Minnesota Vikings.", "website": "", "subreddit": "r/minnesotavikings", "center": [1296.5, 628.5], "path": [[1293.5, 640.5], [1300.5, 640.5], [1300.5, 639.5], [1302.5, 639.5], [1302.5, 631.5], [1299.5, 631.5], [1299.5, 629.5], [1300.5, 629.5], [1300.5, 627.5], [1301.5, 627.5], [1301.5, 624.5], [1303.5, 624.5], [1303.5, 619.5], [1302.5, 619.5], [1302.5, 617.5], [1301.5, 617.5], [1301.5, 616.5], [1294.5, 616.5], [1293.5, 616.5], [1293.5, 617.5], [1292.5, 617.5], [1292.5, 618.5], [1291.5, 618.5], [1291.5, 620.5], [1290.5, 620.5], [1290.5, 625.5], [1292.5, 625.5], [1292.5, 628.5], [1293.5, 628.5], [1293.5, 629.5], [1294.5, 629.5], [1294.5, 631.5], [1290.5, 631.5], [1290.5, 640.5], [1293.5, 640.5]]},
{"id": "ty9gzv", "submitted_by": "WackyPinion", "name": "Forocoches Spanish flag", "description": "A Spanish flag representing Forocoches, a popular Spanish forum well known for its memes and organized trolling attempts. The goofy emote in the middle is roto2, considered the site's mascot.", "website": "https://forocoches.com/", "subreddit": "/r/ForoCoches", "center": [1704.5, 293.5], "path": [[1694.5, 281.5], [1709.5, 281.5], [1709.5, 284.5], [1710.5, 284.5], [1711.5, 283.5], [1712.5, 284.5], [1712.5, 287.5], [1718.5, 287.5], [1716.5, 288.5], [1715.5, 292.5], [1714.5, 293.5], [1713.5, 301.5], [1714.5, 301.5], [1715.5, 302.5], [1711.5, 302.5], [1711.5, 303.5], [1709.5, 304.5], [1703.5, 304.5], [1698.5, 303.5], [1697.5, 304.5], [1696.5, 305.5], [1695.5, 306.5], [1694.5, 306.5], [1694.5, 282.5]]},
{"id": "ty9eva", "submitted_by": "CrazyPenks", "name": "N1SHI", "description": "N1SHI is a russian twitch streamer, he told his viewers to make a pixelart of his twitch username.", "website": "", "subreddit": "", "center": [1055.5, 1944.5], "path": [[1070.5, 1939.5], [1040.5, 1939.5], [1042.5, 1949.5], [1070.5, 1949.5]]},
{"id": "ty9e1y", "submitted_by": "Striladen", "name": "MP2I", "description": "MP2I is a 2-year high-intensity faculty to prepare for entrance-exams to the best engineering schools in France\nMP2I means Math\u00e9matiques, Physique, Informatique", "website": "https://prepas-mp2i.fr/", "subreddit": "", "center": [994.5, 1831.5], "path": [[985.5, 1829.5], [1002.5, 1827.5], [1002.5, 1831.5], [1000.5, 1832.5], [996.5, 1833.5], [996.5, 1834.5], [991.5, 1834.5], [991.5, 1835.5], [990.5, 1835.5]]},
{"id": "ty9de5", "submitted_by": "DmitryJS", "name": "\u81ea\u7531\u3092 - Freedom", "description": "Refers to Wings Of Freedom symbol from the anime and manga Attack on Titan (Shingeki no Kyojin).", "website": "", "subreddit": "", "center": [332.5, 187.5], "path": [[328.5, 172.5], [328.5, 202.5], [337.5, 202.5], [336.5, 172.5], [332.5, 172.5]]},
{"id": "ty9b8q", "submitted_by": "PatZas", "name": "Among Us", "description": "Another Among Us in the Arkadia logo.", "website": "https://linktr.ee/PatZas", "subreddit": "", "center": [1870.5, 1185.5], "path": [[1867.5, 1182.5], [1867.5, 1188.5], [1872.5, 1188.5], [1872.5, 1182.5]]},
{"id": "ty98bq", "submitted_by": "Sheepolution", "name": "L\u00d6VE", "description": "L\u00d6VE (Also known as Love2D) is an *awesome* framework you can use to make 2D games in Lua.", "website": "https://love2d.org/", "subreddit": "/r/love2d", "center": [759.5, 1925.5], "path": [[748.5, 1923.5], [748.5, 1932.5], [772.5, 1931.5], [770.5, 1924.5], [766.5, 1924.5], [765.5, 1920.5], [763.5, 1914.5], [759.5, 1914.5], [755.5, 1915.5], [753.5, 1919.5], [753.5, 1923.5], [748.5, 1923.5]]},
{"id": "ty976y", "submitted_by": "jjarg24", "name": "Boca Juniors ", "description": "A flag with the colors of the Boca Juniors and the number 12 in roman numerals which represents the 12th player on a football/soccer team (the fans)", "website": "", "subreddit": "r/BocaJuniors", "center": [1162.5, 1400.5], "path": [[1156.5, 1403.5], [1156.5, 1395.5], [1163.5, 1395.5], [1167.5, 1395.5], [1169.5, 1401.5], [1170.5, 1402.5], [1170.5, 1404.5], [1170.5, 1406.5], [1171.5, 1397.5], [1169.5, 1394.5], [1169.5, 1401.5], [1170.5, 1407.5]]},
{"id": "ty8uih", "submitted_by": "Sagittarius_meowmeow", "name": "Minty", "description": "Minty is a pony from MPL G3. Bronydom is built on G4, but some bronies have fond memories of watching A Very Minty Christmas as a child. She is depicted here in her beloved socks. ", "website": "", "subreddit": "", "center": [591.5, 239.5], "path": [[588.5, 237.5], [588.5, 241.5], [594.5, 241.5], [594.5, 237.5], [594.5, 237.5], [594.5, 237.5], [588.5, 237.5]]},
{"id": "ty8op6", "submitted_by": "boiIedforsafety", "name": "One Punch Man", "description": "Logo for the popular manga and anime series created by ONE. Completed with Saitama\u2019s fist", "website": "", "subreddit": "/r/OnePunchMan", "center": [1505.5, 115.5], "path": [[1492.5, 112.5], [1492.5, 112.5], [1491.5, 112.5], [1492.5, 118.5], [1517.5, 118.5], [1518.5, 111.5], [1509.5, 112.5]]},
{"id": "ty8mno", "submitted_by": "El-Liano", "name": "Fruitberries", "description": "The ingame avatar of Minecraft youtuber Fruitberries, who participated in MCC.", "website": "https://www.youtube.com/c/fruitberries", "subreddit": "", "center": [882.5, 547.5], "path": [[876.5, 551.5], [887.5, 551.5], [887.5, 543.5], [877.5, 543.5], [876.5, 543.5], [876.5, 550.5]]},
{"id": "ty8ksf", "submitted_by": "SocomLMR", "name": "Tiny Pony (OC)", "description": "A tiny MLP:FiM pony character, this one is an original character created by a fan.", "website": "", "subreddit": "r/myLittlePony", "center": [591.5, 235.5], "path": [[590.5, 233.5], [592.5, 233.5], [592.5, 234.5], [593.5, 234.5], [594.5, 234.5], [594.5, 237.5], [589.5, 237.5], [589.5, 233.5], [590.5, 233.5]]},
{"id": "ty8k2d", "submitted_by": "Vigitant_01", "name": "Good Mythical Morning", "description": "Good Mythical Morning (abbreviated as GMM) is an American comedy, talk and variety YouTube series created by Rhett McLaughlin and Link Neal that has been running since 2012.", "website": "https://mythical.com/", "subreddit": "/r/goodmythicalmorning", "center": [1233.5, 366.5], "path": [[1205.5, 344.5], [1205.5, 382.5], [1222.5, 382.5], [1222.5, 391.5], [1259.5, 391.5], [1259.5, 344.5]]},
{"id": "ty8irm", "submitted_by": "Dasher09009", "name": "Second AEsir Logo", "description": "This is the AEsir logo from Cytus 2.", "website": "https://www.rayark.com/g/cytus2/", "subreddit": "https://www.reddit.com/r/Cytus/", "center": [1504.5, 527.5], "path": [[1499.5, 521.5], [1502.5, 521.5], [1502.5, 522.5], [1503.5, 522.5], [1503.5, 523.5], [1505.5, 523.5], [1505.5, 522.5], [1506.5, 522.5], [1506.5, 521.5], [1507.5, 521.5], [1507.5, 520.5], [1509.5, 520.5], [1509.5, 530.5], [1508.5, 530.5], [1508.5, 531.5], [1507.5, 531.5], [1507.5, 534.5], [1506.5, 534.5], [1506.5, 535.5], [1502.5, 535.5], [1502.5, 534.5], [1501.5, 534.5], [1501.5, 533.5], [1501.5, 531.5], [1500.5, 531.5], [1500.5, 530.5], [1499.5, 530.5]]},
{"id": "ty8hlh", "submitted_by": "smpl_deb", "name": "Emerald Dofus", "description": "One of the many items from the MMORPG Dofus.", "website": "https://dofus.com/", "subreddit": "/r/dofus", "center": [72.5, 1765.5], "path": [[58.5, 1750.5], [62.5, 1780.5], [85.5, 1779.5], [84.5, 1754.5], [58.5, 1750.5]]},
{"id": "ty8fo7", "submitted_by": "MiddleTelephone7579", "name": "The Patriote flag ", "description": "This flag was used by the Patriote movement in Lower Canada (present-day Quebec) between 1832 and 1838.", "website": "https://en.wikipedia.org/wiki/Patriote_flag#:~:text=The%20Patriote%20flag%20(also%20known,Quebec)%20between%201832%20and%201838.", "subreddit": "", "center": [1151.5, 1898.5], "path": [[1146.5, 1894.5], [1155.5, 1894.5], [1155.5, 1902.5], [1146.5, 1902.5]]},
{"id": "ty8dgs", "submitted_by": "hugodroid", "name": "14", "description": "A meme from the spanish streamer Alexcapo.", "website": "", "subreddit": "", "center": [1482.5, 1006.5], "path": [[1487.5, 1001.5], [1476.5, 1001.5], [1476.5, 1010.5], [1487.5, 1010.5], [1487.5, 1001.5]]},
{"id": "ty8cej", "submitted_by": "Cruxifix", "name": "FELLAS", "description": "a small passion project by a few local gamers", "website": "", "subreddit": "", "center": [449.5, 1536.5], "path": [[440.5, 1533.5], [457.5, 1533.5], [457.5, 1539.5], [440.5, 1539.5], [440.5, 1533.5]]},
{"id": "ty8a4x", "submitted_by": "Biggamer4200", "name": "T\u00e9l\u00e9com Saint Etienne", "description": "TSE is an engineering school located at Saint-Etienne, France.\n\n", "website": "https://www.telecom-st-etienne.fr/en/", "subreddit": "", "center": [1586.5, 1106.5], "path": [[1580.5, 1100.5], [1591.5, 1100.5], [1591.5, 1112.5], [1580.5, 1112.5], [1580.5, 1100.5]]},
{"id": "ty88st", "submitted_by": "blafurznarg", "name": "Mercury Djinni", "description": "A water entity from the Golden Sun series that enhances the water abilities of its holder.", "website": "https://goldensun.fandom.com/wiki/Djinn", "subreddit": "/r/GoldenSun", "center": [842.5, 1655.5], "path": [[837.5, 1657.5], [838.5, 1658.5], [839.5, 1658.5], [840.5, 1659.5], [846.5, 1659.5], [847.5, 1658.5], [847.5, 1652.5], [846.5, 1651.5], [844.5, 1651.5], [842.5, 1649.5], [840.5, 1651.5], [839.5, 1651.5], [838.5, 1652.5], [838.5, 1653.5], [837.5, 1654.5], [837.5, 1657.5]]},
{"id": "ty886b", "submitted_by": "KingNexu", "name": "Meinzelm\u00e4nnchen", "description": "The Mainzelm\u00e4nnchen are six comedic cartoon characters used as mascots for German public service television broadcaster ZDF. They first aired on television in 1963 as a way to accommodate a government regulation disallowing confusion between advertising and commercials. The cartoon characters served as a transition between the two.\nThe name is a combination Mainz, headquarters for ZDF, and Heinzelm\u00e4nnchen, a type of gnome common in folklore surrounding the city of Cologne. Wolf Gerlach created the characters.\nThe Mainzelm\u00e4nnchen have become quite popular across Germany. Radio dramas have been created surrounding them, as well as children's books, and numerous other kinds of merchandise.\nThe series also aired in the United Kingdom on BBC TWO in 1964 until 1999. ", "website": "[https://en.wikipedia.org/wiki/Mainzelm%C3%A4nnchen](https://en.wikipedia.org/wiki/Mainzelm%C3%A4nnchen)", "subreddit": "/r/placeDE", "center": [1452.5, 1155.5], "path": [[1443.5, 1172.5], [1456.5, 1172.5], [1456.5, 1169.5], [1457.5, 1169.5], [1457.5, 1168.5], [1462.5, 1168.5], [1461.5, 1167.5], [1461.5, 1166.5], [1463.5, 1166.5], [1463.5, 1165.5], [1466.5, 1165.5], [1466.5, 1164.5], [1467.5, 1164.5], [1467.5, 1158.5], [1466.5, 1158.5], [1466.5, 1157.5], [1465.5, 1157.5], [1465.5, 1156.5], [1464.5, 1156.5], [1464.5, 1155.5], [1463.5, 1155.5], [1463.5, 1155.5], [1463.5, 1154.5], [1462.5, 1154.5], [1462.5, 1153.5], [1462.5, 1151.5], [1463.5, 1151.5], [1463.5, 1150.5], [1464.5, 1150.5], [1464.5, 1146.5], [1463.5, 1146.5], [1463.5, 1145.5], [1462.5, 1145.5], [1462.5, 1142.5], [1461.5, 1142.5], [1461.5, 1140.5], [1460.5, 1140.5], [1460.5, 1139.5], [1459.5, 1139.5], [1459.5, 1138.5], [1457.5, 1138.5], [1457.5, 1137.5], [1454.5, 1137.5], [1454.5, 1136.5], [1453.5, 1136.5], [1453.5, 1135.5], [1449.5, 1135.5], [1449.5, 1136.5], [1448.5, 1136.5], [1448.5, 1137.5], [1446.5, 1137.5], [1446.5, 1138.5], [1445.5, 1138.5], [1445.5, 1139.5], [1444.5, 1139.5], [1444.5, 1142.5], [1444.5, 1142.5], [1443.5, 1140.5], [1442.5, 1142.5], [1442.5, 1147.5], [1441.5, 1147.5], [1441.5, 1151.5], [1442.5, 1152.5], [1442.5, 1152.5], [1443.5, 1153.5], [1443.5, 1154.5], [1442.5, 1154.5], [1442.5, 1155.5], [1441.5, 1155.5], [1441.5, 1156.5], [1440.5, 1156.5], [1440.5, 1157.5], [1438.5, 1157.5], [1437.5, 1158.5], [1437.5, 1164.5], [1439.5, 1164.5], [1438.5, 1165.5], [1441.5, 1165.5], [1441.5, 1166.5], [1443.5, 1166.5], [1443.5, 1168.5], [1442.5, 1168.5], [1442.5, 1169.5]]},
{"id": "ty8863", "submitted_by": "rapacides", "name": "Brugge Cheese", "description": "A piece of belgian 'Brugge' Cheese. Made by the community of streamer Ravs_ in exchange for the belgians allowing Miltank on their flag.", "website": "twitch.com/ravs_", "subreddit": "", "center": [1296.5, 1761.5], "path": [[1288.5, 1772.5], [1287.5, 1748.5], [1308.5, 1755.5], [1308.5, 1766.5], [1291.5, 1774.5]]},
{"id": "ty87y9", "submitted_by": "Muyanfm", "name": "Sin Cebolla", "description": "Sin Cebolla. A group of friends who have been together for almost 10 years and who decide to create this space with the sole purpose of reclaiming the 20 pixels they occupied and defended to the death on the canvas of r/place.", "website": "https://linktr.ee/sincebolla", "subreddit": "/r/sincebolla", "center": [1747.5, 390.5], "path": [[1744.5, 387.5], [1744.5, 393.5], [1750.5, 392.5], [1750.5, 387.5]]},
{"id": "ty87c5", "submitted_by": "QuarterTarget", "name": "Former Swiss Flag", "description": "This small sliver of r/place was at first, a swiss flag, a drawing of famous cartoon character pingu, initials of several prominent swiss universities such as ETH and a small dedication to one of the users grandfather. It was invaded by the Mexican flag and Quackity", "website": "", "subreddit": "r/swissneutralityzone", "center": [812.5, 1293.5], "path": [[785.5, 1300.5], [785.5, 1286.5], [838.5, 1286.5], [838.5, 1300.5], [838.5, 1301.5]]},
{"id": "ty86mh", "submitted_by": "Mazetron", "name": "Serbian-Silksong Heart", "description": "Although it doesn't represent a country, the Silksong square formed an alliance heart with Serbia and previously had an alliance heart with Turkey.", "website": "", "subreddit": "", "center": [225.5, 362.5], "path": [[221.5, 360.5], [221.5, 363.5], [224.5, 366.5], [226.5, 366.5], [229.5, 363.5], [229.5, 360.5], [228.5, 359.5], [222.5, 359.5]]},
{"id": "ty85xx", "submitted_by": "theultrasheeplord", "name": "Noxite face", "description": "Noxite is the CEO of noxcrew the team behind MC Championship", "website": "", "subreddit": "", "center": [1785.5, 135.5], "path": [[1780.5, 130.5], [1789.5, 130.5], [1789.5, 140.5], [1780.5, 140.5]]},
{"id": "ty8598", "submitted_by": "theultrasheeplord", "name": "CPK sign", "description": "Seapeekay is a Participant in MCC who is featured in text in the sign \nHe was also the main feature of an april fools joke on the mcc subreddit", "website": "", "subreddit": "", "center": [889.5, 555.5], "path": [[882.5, 552.5], [895.5, 552.5], [895.5, 557.5], [882.5, 557.5]]},
{"id": "ty84w4", "submitted_by": "theultrasheeplord", "name": "Noxcrew logo", "description": "Noxcrew is the creators of MC Championships", "website": "", "subreddit": "", "center": [868.5, 583.5], "path": [[864.5, 579.5], [872.5, 579.5], [872.5, 587.5], [864.5, 587.5]]},
{"id": "ty84f0", "submitted_by": "theultrasheeplord", "name": "Violet face", "description": "Vi is an artist for MCC", "website": "", "subreddit": "", "center": [1765.5, 124.5], "path": [[1761.5, 119.5], [1769.5, 119.5], [1769.5, 128.5], [1760.5, 128.5], [1760.5, 119.5]]},
{"id": "ty83px", "submitted_by": "Hydalcraft", "name": "Hydalcraft", "description": "head of youtuber/streamer Hydalcraft (IHydal)", "website": "https://www.youtube.com/channel/UCLb4mR9TY6zHQIjI958_KkA", "subreddit": "", "center": [1281.5, 1394.5], "path": [[1277.5, 1391.5], [1285.5, 1391.5], [1285.5, 1397.5], [1277.5, 1397.5]]},
{"id": "ty83mq", "submitted_by": "5h4d", "name": "Rayman", "description": "Rayman, a video game character createed in France was here before being wiped during the streamers war.", "website": "", "subreddit": "/r/rayman", "center": [238.5, 1870.5], "path": [[230.5, 1854.5], [246.5, 1854.5], [245.5, 1886.5], [230.5, 1887.5], [230.5, 1887.5], [230.5, 1887.5]]},
{"id": "ty83k4", "submitted_by": "Many-Past-7571", "name": "University of Rochester", "description": "The logo for The University Of Rochester. It was covered up, alongside the other New York Institution logos, in the final hours of r/place by Unicornio.", "website": "https://www.rochester.edu/", "subreddit": "https://www.reddit.com/r/URochester/", "center": [1056.5, 237.5], "path": [[1066.5, 227.5], [1046.5, 227.5], [1046.5, 246.5], [1065.5, 247.5]]},
{"id": "ty83bn", "submitted_by": "Ezik125", "name": "David The Budgie", "description": "A small budgerigar in memory of a pet budgie named David, the oh so wonderful bird. His visage will forever last in the form of internet culture.", "website": "", "subreddit": "", "center": [1076.5, 544.5], "path": [[1076.5, 539.5], [1078.5, 539.5], [1079.5, 539.5], [1079.5, 540.5], [1080.5, 540.5], [1080.5, 541.5], [1080.5, 542.5], [1079.5, 542.5], [1079.5, 547.5], [1078.5, 548.5], [1076.5, 548.5], [1076.5, 549.5], [1074.5, 549.5], [1073.5, 550.5], [1072.5, 549.5], [1073.5, 548.5], [1074.5, 547.5], [1074.5, 541.5], [1075.5, 540.5], [1075.5, 539.5]]},
{"id": "ty826y", "submitted_by": "Ranch-0", "name": "Romanian Heart", "description": "A Heart made by Bulgarian / Polish alience as the original Romanian flag was invaded by Polish streamer", "website": "", "subreddit": "r/Bulgaria, r/Poland, r/Polska", "center": [655.5, 376.5], "path": [[653.5, 373.5], [654.5, 373.5], [656.5, 374.5], [657.5, 374.5], [657.5, 373.5], [658.5, 373.5], [659.5, 374.5], [659.5, 376.5], [658.5, 377.5], [657.5, 378.5], [656.5, 379.5], [655.5, 379.5], [654.5, 378.5], [653.5, 377.5], [652.5, 376.5], [652.5, 375.5], [652.5, 374.5], [653.5, 373.5], [653.5, 373.5]]},
{"id": "ty7ybg", "submitted_by": "420_CannedCoochie_69", "name": "NF Logo", "description": "The logo for American rapper, singer, and songwriter Nathan Feuerstein.", "website": "https://www.nfrealmusic.com/", "subreddit": "r/nfrealmusic/", "center": [1981.5, 1008.5], "path": [[1963.5, 992.5], [1964.5, 1023.5], [1999.5, 1023.5], [1999.5, 993.5]]},
{"id": "ty7xzy", "submitted_by": "uBombs", "name": "HUT HUT HUT (Hx3)", "description": "HUT HUT HUT, abbreviated Hx3, is a tight-knit Discord community of 20 friends, created for more specific interactions related to the EA SPORTS NHL game mode, Hockey Ultimate Team. First started as members as /r/NHLHUT. The art here, being only kept up by a few members, is unfinished. Previously held a spot that was taken by the French eSports team, Solary. It's not American Football, but it's close.", "website": "https://twitter.com/HUT_HUT_HUT_Hx3", "subreddit": "/r/NHLHUT", "center": [308.5, 1837.5], "path": [[299.5, 1831.5], [317.5, 1831.5], [317.5, 1844.5], [300.5, 1844.5]]},
{"id": "ty7x21", "submitted_by": "Lokitxd58", "name": "Gymzl ", "description": "Grammar school in the Czech Republic in Zl\u00edn", "website": "https://rplace.space/combined/", "subreddit": "", "center": [1151.5, 1606.5], "path": [[1146.5, 1602.5], [1155.5, 1602.5], [1155.5, 1610.5], [1146.5, 1610.5]]},
{"id": "ty7w80", "submitted_by": "SocomLMR", "name": "A Hat in Time hat", "description": "A tiny hat from the video game A Hat in Time", "website": "", "subreddit": "r/AHatInTime", "center": [1088.5, 1524.5], "path": [[1091.5, 1526.5], [1085.5, 1526.5], [1085.5, 1524.5], [1086.5, 1524.5], [1086.5, 1521.5], [1090.5, 1521.5], [1090.5, 1524.5], [1091.5, 1524.5], [1091.5, 1526.5]]},
{"id": "ty7v38", "submitted_by": "KCB_III", "name": "Lost Pause & Lily", "description": "A space dedicated to the youtuber and streamer Noble, aka Lost Pause. Included are his mascot Lily the Fox Mechanic, the LP logo, and an infamous jelly filled donut in the bottom right corner.", "website": "https://www.youtube.com/c/LostPause", "subreddit": "/r/lostpause", "center": [1878.5, 643.5], "path": [[1866.5, 638.5], [1866.5, 647.5], [1889.5, 647.5], [1889.5, 638.5], [1866.5, 638.5]]},
{"id": "ty7ub3", "submitted_by": "ThePools", "name": "Kanata's Halo", "description": "Hololive Vtuber Aname Katana's signature halo, often referred to as a shuriken by her fans. It's typically either yellow or blue depending on her outfits. ", "website": "", "subreddit": "/r/hololive", "center": [1401.5, 967.5], "path": [[1398.5, 967.5], [1399.5, 965.5], [1401.5, 964.5], [1402.5, 964.5], [1402.5, 971.5], [1398.5, 967.5]]},
{"id": "ty7s3n", "submitted_by": "Frosted-cookie32", "name": "Imposter", "description": "one of the many imposters on the canvas", "website": "", "subreddit": "r/amongus", "center": [905.5, 1327.5], "path": [[901.5, 1325.5], [910.5, 1325.5], [909.5, 1326.5], [910.5, 1329.5], [901.5, 1329.5]]},
{"id": "ty7qul", "submitted_by": "E02Y", "name": "Amane Kanata", "description": "A chibi portrait of Vtuber Amane Kanata from Hololive. Has a grip strength of over 50kg and voices every single vtuber from Hololive.", "website": "https://www.youtube.com/c/AmaneKanataCh", "subreddit": "r/hololive", "center": [1374.5, 1118.5], "path": [[1369.5, 1114.5], [1373.5, 1112.5], [1379.5, 1112.5], [1379.5, 1124.5], [1369.5, 1124.5]]},
{"id": "ty7py6", "submitted_by": "Rock_Single", "name": "Stuffy", "description": "The location of the Stuffy face. An inside joke between the Hypixel contributor teams.", "website": "https://docs.google.com/document/d/1xhLlQHG5dMlJlcn5aoDa3Oh17Bbf1unZ6P7IXJiAACw/edit", "subreddit": "r/stuffy", "center": [85.5, 812.5], "path": [[80.5, 798.5], [81.5, 826.5], [89.5, 826.5], [89.5, 798.5], [88.5, 798.5]]},
{"id": "ty7ndp", "submitted_by": "KCB_III", "name": "Azur Lane & KanColle", "description": "Two characters from the mobile gacha game Azur Lane, and one from the F2P game Kantai Collection, KanColle for short. Admiral Graf Spee (Left) and New Jersey (Right) are both from Azur Lane, and Kongou (Middle) is from KanColle. The middle character was originally Akagi, another Azur Lane character, but was changed to KanColle\u2019s Kongou in the final image (note the differences in pixelart style).", "website": "https://www.azurlane.jp/", "subreddit": "/r/AzureLane", "center": [163.5, 1112.5], "path": [[189.5, 1121.5], [189.5, 1103.5], [136.5, 1103.5], [136.5, 1121.5], [189.5, 1121.5]]},
{"id": "ty7mar", "submitted_by": "ConversationOk5255", "name": "Magenta Flower", "description": "A small magenta flower created in the spur of the moment and defended ruthlessly until the end. ", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[99.5, 417.5], [101.5, 419.5]]},
{"id": "ty7ln5", "submitted_by": "Orava", "name": "Moominhouse", "description": "A fictional house, where the Moomins live, in the tales by Finnish author Tove Jansson.", "website": "https://www.moomin.com/", "subreddit": "/r/Moomins", "center": [562.5, 191.5], "path": [[548.5, 176.5], [537.5, 179.5], [537.5, 202.5], [544.5, 204.5], [557.5, 204.5], [564.5, 202.5], [591.5, 201.5], [594.5, 195.5], [592.5, 184.5], [576.5, 183.5], [569.5, 185.5], [564.5, 175.5], [557.5, 173.5]]},
{"id": "ty7l72", "submitted_by": "Natzeuh", "name": "UTC Logo", "description": "UTC (Universit\u00e9 de Technologie de Compi\u00e8gne) is a french engineering school based in Compi\u00e8gne, France. The UTC letters were made thanks to Starkid community, reason why there's a heart ", "website": "utc.fr", "subreddit": "", "center": [363.5, 1498.5], "path": [[355.5, 1490.5], [369.5, 1490.5], [369.5, 1509.5], [362.5, 1509.5], [361.5, 1500.5], [355.5, 1499.5], [355.5, 1490.5], [355.5, 1490.5], [369.5, 1490.5], [355.5, 1490.5], [355.5, 1490.5]]},
{"id": "ty7hxq", "submitted_by": "PruneBerry", "name": "Artia", "description": "A former Chinese vtuber who was a member of the now defunct Hololive China.\nShe's known in the fanbase as one of the first members to engage with the English-speaking community by being the first one to visit the Hololive subreddit and by streaming on Twitch.", "website": "", "subreddit": "", "center": [1315.5, 560.5], "path": [[1307.5, 552.5], [1307.5, 567.5], [1322.5, 567.5], [1322.5, 552.5]]},
{"id": "ty7gsa", "submitted_by": "NICO_THE_PRO", "name": "NICO_THE_PRO's Minecraft head", "description": "The Minecraft head of the Italian Youtuber and mapmaker NICO_THE_PRO", "website": "https://www.youtube.com/NICOTHEPROO", "subreddit": "https://www.reddit.com/r/NICO_THE_PRO/", "center": [1003.5, 1755.5], "path": [[999.5, 1749.5], [999.5, 1749.5], [999.5, 1749.5], [999.5, 1749.5], [999.5, 1749.5], [999.5, 1749.5], [999.5, 1749.5], [1007.5, 1749.5], [1007.5, 1760.5], [999.5, 1760.5], [999.5, 1749.5]]},
{"id": "ty7ekl", "submitted_by": "1__Raven__1", "name": "Touhou 12.3 - Hisoutensoku", "description": "The program icon for Touhou 12.3 Hisoutensoku, the third fighting game in the Touhou Project series. To the right of the icon is the last four letters of Hisouten[soku].", "website": "https://en.touhouwiki.net/wiki/Touhou_Hisoutensoku", "subreddit": "/r/touhou", "center": [1670.5, 1554.5], "path": [[1657.5, 1550.5], [1657.5, 1557.5], [1682.5, 1557.5], [1682.5, 1550.5]]},
{"id": "ty79f1", "submitted_by": "Unknown0ne7", "name": "Acid Jar", "description": "An Acid Jar, from The Wandering Inn", "website": "", "subreddit": "/r/WanderingInn", "center": [1682.5, 1363.5], "path": [[1681.5, 1361.5], [1683.5, 1361.5], [1683.5, 1364.5], [1681.5, 1364.5]]},
{"id": "ty7840", "submitted_by": "Anthagonas", "name": "Louloup", "description": "A wolf face made by a small french twitch community. We don't bite, we are cute.", "website": "twitch.tv/anthagonas", "subreddit": "", "center": [1873.5, 1377.5], "path": [[1871.5, 1378.5], [1872.5, 1379.5], [1875.5, 1379.5], [1875.5, 1378.5], [1876.5, 1377.5], [1875.5, 1376.5], [1874.5, 1375.5], [1873.5, 1375.5], [1872.5, 1375.5], [1871.5, 1376.5], [1871.5, 1377.5], [1871.5, 1378.5]]},
{"id": "ty76wz", "submitted_by": "Artissi", "name": "Gummy Karl and Fianc\u00e9trio Hearts", "description": "Another small tribute to Karl Jacob's original Minecraft skin in the DSMP and purple, orange and blue hearts and name initials representing the fianc\u00e9s, referring to Sapnap, Quackity and Karl Jacobs' characters and their polyamorous relationship in the Dream SMP lore. Created by fiancetwt.", "website": "[https://www.reddit.com/r/dreamsmp/](https://www.reddit.com/r/dreamsmp/)", "subreddit": "[r/dreamsmp](https://www.reddit.com/r/dreamsmp/)", "center": [1280.5, 1119.5], "path": [[1273.5, 1114.5], [1273.5, 1125.5], [1286.5, 1125.5], [1286.5, 1113.5], [1273.5, 1113.5]]},
{"id": "ty71s1", "submitted_by": "MinxterYT", "name": "Perry the Platypus", "description": "He even wears a hat.", "website": "https://www.youtube.com/channel/UCH6Xtt4GpcQXjOq0_PTDhAw", "subreddit": "/r/phineasandferb/", "center": [1894.5, 981.5], "path": [[1889.5, 972.5], [1898.5, 972.5], [1898.5, 990.5], [1889.5, 990.5], [1889.5, 972.5]]},
{"id": "ty70qx", "submitted_by": "BusyExperience9766", "name": "Ghost Trick: Phantom Detective", "description": "Pixelart of Sissel, the main character from 2010 DS/iOS Capcom game Ghost Trick ", "website": "", "subreddit": "/r/ghosttrick", "center": [1319.5, 460.5], "path": [[1319.5, 449.5], [1314.5, 466.5], [1324.5, 466.5], [1322.5, 454.5]]},
{"id": "ty70c9", "submitted_by": "marius851000", "name": "[destroyed] Popplio", "description": "The head of a Popplio was present here, before being Destroyed by the Spanish flag (it was previously located over the Miura memorial while it was controlled by ManeChat, and was then moved aside of the DogeCoin section. It was then eaten by user with the unwilled extension of the DogeCoin area. Soon before the end, it was added to the rainbow road template.", "website": "", "subreddit": "", "center": [1590.5, 304.5], "path": [[1585.5, 307.5], [1584.5, 304.5], [1594.5, 298.5], [1594.5, 307.5]]},
{"id": "ty6zbk", "submitted_by": "Eremeir", "name": "Mini Colt Logo (Destroyed)", "description": "A minimalist version of the AR Team logo, COLT from the mobile game Girls Frontline.", "website": "", "subreddit": "r/girlsfrontline", "center": [778, 244], "path": [[793, 240], [793, 248], [764, 248], [764, 240]]},
{"id": "ty6y1v", "submitted_by": "Raffeltitis", "name": "Zeche Zollverein", "description": "Former coal mine located in Essen in memory of the coal industry in the Ruhrgebiet area. Since 2001 it has been inscribed into the UNESCO list of World Heritage Sites.", "website": "", "subreddit": "", "center": [1476.5, 1154.5], "path": [[1476.5, 1132.5], [1466.5, 1132.5], [1465.5, 1136.5], [1468.5, 1137.5], [1468.5, 1141.5], [1466.5, 1145.5], [1465.5, 1148.5], [1464.5, 1152.5], [1467.5, 1157.5], [1467.5, 1164.5], [1462.5, 1166.5], [1462.5, 1170.5], [1493.5, 1171.5], [1479.5, 1140.5], [1479.5, 1136.5], [1482.5, 1135.5], [1482.5, 1132.5], [1477.5, 1132.5], [1470.5, 1132.5], [1466.5, 1132.5]]},
{"id": "ty6ut6", "submitted_by": "smoothiebrain", "name": "Machine Girl", "description": "Machine Girl is the moniker for producer and DJ, Matthew Stephenson, and for their band Machine Girl, with drummer Sean Kelly. They make high energy yet surreal dance music meshing together breakcore, digital hardcore, and footwork - a soundtrack for our modern apocalypse.", "website": "https://machinegirl.bandcamp.com/", "subreddit": "/r/machinegirl", "center": [1578.5, 1065.5], "path": [[1588.5, 1080.5], [1567.5, 1080.5], [1567.5, 1049.5], [1588.5, 1049.5], [1588.5, 1080.5]]},
{"id": "ty6u7s", "submitted_by": "Alius4156", "name": "Kuro - Nani No Anime", "description": "A fox mascot of the Nani No Anime Podcast", "website": "https://naninoanime.com/", "subreddit": "", "center": [308.5, 1328.5], "path": [[318.5, 1316.5], [296.5, 1316.5], [293.5, 1331.5], [293.5, 1338.5], [325.5, 1338.5], [330.5, 1332.5], [329.5, 1330.5], [321.5, 1337.5], [320.5, 1318.5], [319.5, 1317.5]]},
{"id": "ty6u33", "submitted_by": "G00seWars", "name": "Rabbit", "description": "A bunny holding a carrot lightsaber made in collaboration between the Canadians and r/Rabbits.", "website": "", "subreddit": "r/Rabbits", "center": [735.5, 1557.5], "path": [[731.5, 1553.5], [740.5, 1555.5], [735.5, 1563.5], [730.5, 1556.5]]},
{"id": "ty6spt", "submitted_by": "DeadRecord", "name": "University of Waterloo", "description": "The r/Place logo of UWaterloo depicting the anime waifu's that represent each individual university faculty, as well as the honorary school mascot, Mr. Goose. o7", "website": "https://uwaterloo.ca", "subreddit": "https://www.reddit.com/r/uwaterloo/", "center": [1624.5, 186.5], "path": [[1588.5, 196.5], [1660.5, 196.5], [1660.5, 176.5], [1588.5, 176.5]]},
{"id": "ty6so2", "submitted_by": "Kithrian", "name": "Flag of Byzantium (Under Construction)", "description": "The Danes mutated the second Byzantine flag attempt into the flag of Sk\u00e5ne forcing Byzantium into exile down by Futurama. \n\nNear the end, the Byzantines returned to try and reconstruct a full sized flag here where Holger Danske lived.", "website": "", "subreddit": "/r/ByzantineMemes", "center": [353.5, 139.5], "path": [[344.5, 131.5], [344.5, 147.5], [361.5, 147.5], [361.5, 131.5]]},
{"id": "ty6q35", "submitted_by": "G00seWars", "name": "Bi flag", "description": "Pride flag for bi people made by a member of the Kamen Rider subreddit, whose territory is directly above.", "website": "", "subreddit": "", "center": [749.5, 1531.5], "path": [[745.5, 1529.5], [753.5, 1529.5], [751.5, 1533.5], [745.5, 1533.5]]},
{"id": "ty6k7k", "submitted_by": "qwerty_in_your_vodka", "name": "Sesame Street Characters", "description": "(From left to right) Ernie, Bert, Oscar, the Cookie Monster, and Elmo are all characters from the popular children's show Sesame Street. ", "website": "", "subreddit": "", "center": [1396.5, 1161.5], "path": [[1356.5, 1171.5], [1356.5, 1150.5], [1437.5, 1152.5], [1436.5, 1171.5], [1421.5, 1171.5], [1420.5, 1171.5], [1420.5, 1171.5], [1420.5, 1171.5], [1420.5, 1171.5], [1418.5, 1171.5], [1410.5, 1171.5], [1399.5, 1171.5], [1399.5, 1171.5], [1390.5, 1171.5], [1385.5, 1171.5], [1381.5, 1171.5]]},
{"id": "ty6k6u", "submitted_by": "RockingFish", "name": "Ame-chan ", "description": "The main character of Needy Girl Overdose/Needy Streamer Overload while not acting as KAngel.", "website": "https://twitter.com/infowss", "subreddit": "/r/NeedyStreamerOverload/", "center": [1890.5, 1261.5], "path": [[1883.5, 1250.5], [1901.5, 1250.5], [1902.5, 1254.5], [1898.5, 1254.5], [1896.5, 1255.5], [1896.5, 1263.5], [1896.5, 1273.5], [1895.5, 1273.5], [1894.5, 1274.5], [1892.5, 1275.5], [1891.5, 1274.5], [1883.5, 1274.5], [1883.5, 1250.5]]},
{"id": "ty6jdv", "submitted_by": "OJO--", "name": "BTS Moon", "description": "The waxing crescent phase of the moon on June 13th, 2013, the music group BTS' debut date and member Jimin's tattoo ", "website": "https://twitter.com/bts_twt", "subreddit": "r/Bangtan", "center": [1929.5, 1182.5], "path": [[1925.5, 1174.5], [1925.5, 1175.5], [1927.5, 1175.5], [1927.5, 1176.5], [1929.5, 1176.5], [1929.5, 1177.5], [1930.5, 1177.5], [1930.5, 1178.5], [1930.5, 1179.5], [1931.5, 1179.5], [1931.5, 1183.5], [1930.5, 1183.5], [1930.5, 1184.5], [1929.5, 1184.5], [1928.5, 1184.5], [1928.5, 1185.5], [1926.5, 1185.5], [1926.5, 1184.5], [1925.5, 1184.5], [1924.5, 1184.5], [1924.5, 1183.5], [1923.5, 1183.5], [1923.5, 1182.5], [1922.5, 1182.5], [1922.5, 1181.5], [1921.5, 1181.5], [1920.5, 1181.5], [1920.5, 1183.5], [1920.5, 1184.5], [1921.5, 1184.5], [1921.5, 1185.5], [1922.5, 1185.5], [1922.5, 1186.5], [1922.5, 1187.5], [1924.5, 1187.5], [1924.5, 1188.5], [1930.5, 1188.5], [1931.5, 1188.5], [1931.5, 1187.5], [1932.5, 1187.5], [1933.5, 1187.5], [1933.5, 1186.5], [1934.5, 1186.5], [1934.5, 1185.5], [1935.5, 1185.5], [1935.5, 1178.5], [1935.5, 1177.5], [1934.5, 1177.5], [1934.5, 1176.5], [1933.5, 1176.5], [1933.5, 1175.5], [1932.5, 1175.5], [1932.5, 1174.5], [1931.5, 1174.5], [1930.5, 1174.5], [1930.5, 1173.5], [1926.5, 1173.5], [1925.5, 1173.5], [1925.5, 1175.5], [1927.5, 1175.5], [1927.5, 1175.5], [1927.5, 1176.5], [1927.5, 1175.5]]},
{"id": "ty6hdy", "submitted_by": "WildBeastPT", "name": "Wartotle", "description": "The evolution of Squirtle, famously present in the Portuguese space in the 2017 r/place.", "website": "", "subreddit": "r/Portugal", "center": [1472.5, 1853.5], "path": [[1475.5, 1845.5], [1473.5, 1845.5], [1472.5, 1845.5], [1472.5, 1846.5], [1471.5, 1846.5], [1471.5, 1847.5], [1471.5, 1846.5], [1470.5, 1846.5], [1469.5, 1846.5], [1469.5, 1845.5], [1469.5, 1844.5], [1469.5, 1843.5], [1468.5, 1843.5], [1467.5, 1843.5], [1466.5, 1843.5], [1465.5, 1843.5], [1464.5, 1843.5], [1464.5, 1844.5], [1463.5, 1844.5], [1463.5, 1849.5], [1462.5, 1849.5], [1462.5, 1850.5], [1461.5, 1850.5], [1461.5, 1853.5], [1461.5, 1854.5], [1462.5, 1854.5], [1462.5, 1855.5], [1463.5, 1855.5], [1463.5, 1856.5], [1463.5, 1857.5], [1464.5, 1857.5], [1463.5, 1857.5], [1463.5, 1858.5], [1463.5, 1859.5], [1463.5, 1860.5], [1463.5, 1861.5], [1470.5, 1861.5], [1470.5, 1862.5], [1471.5, 1862.5], [1471.5, 1863.5], [1472.5, 1863.5], [1472.5, 1864.5], [1475.5, 1864.5], [1475.5, 1863.5], [1476.5, 1863.5], [1477.5, 1863.5], [1477.5, 1861.5], [1478.5, 1861.5], [1478.5, 1859.5], [1479.5, 1859.5], [1479.5, 1858.5], [1480.5, 1858.5], [1480.5, 1857.5], [1482.5, 1857.5], [1482.5, 1856.5], [1483.5, 1856.5], [1483.5, 1855.5], [1484.5, 1855.5], [1484.5, 1852.5], [1483.5, 1852.5], [1484.5, 1852.5], [1484.5, 1851.5], [1485.5, 1851.5], [1485.5, 1850.5], [1485.5, 1849.5], [1484.5, 1849.5], [1485.5, 1849.5], [1485.5, 1848.5], [1485.5, 1847.5], [1485.5, 1846.5], [1479.5, 1846.5], [1479.5, 1848.5], [1479.5, 1849.5], [1478.5, 1849.5], [1477.5, 1849.5], [1477.5, 1850.5], [1477.5, 1851.5], [1476.5, 1850.5], [1476.5, 1848.5], [1477.5, 1847.5], [1476.5, 1846.5], [1475.5, 1845.5]]},
{"id": "ty6gjg", "submitted_by": "LivingLinguini", "name": "Amongus", "description": "", "website": "https://en.wikipedia.org/wiki/Among_Us", "subreddit": "", "center": [1786.5, 847.5], "path": [[1784.5, 846.5], [1785.5, 846.5], [1785.5, 845.5], [1787.5, 845.5], [1787.5, 849.5], [1787.5, 848.5], [1785.5, 848.5], [1785.5, 849.5], [1785.5, 847.5], [1784.5, 847.5]]},
{"id": "ty6eu0", "submitted_by": "sarinei", "name": "AB6IX", "description": "K-pop group AB6IX's logo. AB6IX (pronounced as A-B-Six; in Hangul: \uc5d0\uc774\ube44\uc2dd\uc2a4) is a four member South Korean boy group formed by Brand New Music. The group debuted on May 22, 2019, with their first EP \u201cB:Complete\u201d and title song \u201cBreathe\u201d.", "website": "", "subreddit": "/r/ab6ix", "center": [1511.5, 1048.5], "path": [[1510.5, 1045.5], [1510.5, 1051.5], [1512.5, 1051.5], [1512.5, 1045.5]]},
{"id": "ty6en9", "submitted_by": "yellhoe-skies", "name": "Pak's Flag", "description": "First and foremost, we apologise for taking over the Esperanto flag.\n\nThe Pakistani flag represents many things with the use of its colours and shapes. The green in the flag is usually a symbol associated with Islam which represents the majority of the Muslim population of Pakistan. The white stripe represents the minorities of Pakistan of different religious backgrounds. The moon and the star, another commonly used symbol in Islam, represents light and progress. Overall, the intentions of the founders as they created this flag was to represent Islam as well as respect the rights of other religious minorities.\n\nThis took us a lot of effort for a small flag, as others didn't want us to be on the map. Their efforts were unsuccessful at the end of the day with the help of our members. This event resulted in unity and new friends by the end :)!", "website": "", "subreddit": "/r/pakistan", "center": [776.5, 328.5], "path": [[772.5, 326.5], [780.5, 326.5], [780.5, 329.5], [772.5, 329.5]]},
{"id": "ty6a65", "submitted_by": "Fishes_Glubs", "name": "Origin", "description": "Center of the Canvas", "website": "", "subreddit": "/r/place", "center": [999.5, 1000.5], "path": [[999.5, 1000.5], [999.5, 999.5], [998.5, 999.5], [998.5, 1001.5], [1000.5, 1001.5], [1000.5, 999.5]]},
{"id": "ty692t", "submitted_by": "OJO--", "name": "Danny Gonzalez's Greg ", "description": "Greg, what Youtuber Danny Gonzalez's fans are called, added in by BTS army in honor of Greg's alliance in defense during r/place ", "website": "https://www.youtube.com/c/Danny100/videos", "subreddit": "/r/DannyGonzalez/", "center": [1893.5, 1176.5], "path": [[1886.5, 1174.5], [1900.5, 1174.5], [1900.5, 1177.5], [1886.5, 1177.5], [1886.5, 1174.5]]},
{"id": "ty65a1", "submitted_by": "Krayt002", "name": "The Rat", "description": "White rat created by TheBoys discord server.", "website": "", "subreddit": "", "center": [1956.5, 1358.5], "path": [[1952.5, 1353.5], [1952.5, 1353.5], [1952.5, 1363.5], [1960.5, 1363.5], [1960.5, 1353.5], [1960.5, 1353.5]]},
{"id": "ty64qj", "submitted_by": "rjbaes", "name": "Knights Of Midgard", "description": "A friend-group originating out of Iowa and spreading out across the US, dedicated to playing video games for over a decade.", "website": "", "subreddit": "", "center": [1118.5, 1745.5], "path": [[1109.5, 1741.5], [1127.5, 1741.5], [1127.5, 1749.5], [1109.5, 1749.5], [1109.5, 1741.5]]},
{"id": "ty63sp", "submitted_by": "K_39wastaken", "name": "Gekota", "description": "A frog mascot appearing in the index / railgun franchise, wearing a traditional german hat and holding a beer pint.", "website": "", "subreddit": "/r/toarumajutsunoindex", "center": [1818.5, 1167.5], "path": [[1809.5, 1161.5], [1809.5, 1161.5], [1809.5, 1172.5], [1827.5, 1172.5], [1826.5, 1161.5], [1809.5, 1161.5]]},
{"id": "ty60v6", "submitted_by": "SocomLMR", "name": "Tiny Ponies (Unknown)", "description": "A pair of tiny MLP:FiM pony characters, exactly which pony they are supposed to be is not currently known.", "website": "", "subreddit": "r/MyLittlePony", "center": [938.5, 1812.5], "path": [[932.5, 1808.5], [936.5, 1809.5], [942.5, 1809.5], [945.5, 1812.5], [945.5, 1815.5], [939.5, 1815.5], [936.5, 1813.5], [931.5, 1813.5], [931.5, 1809.5], [932.5, 1808.5]]},
{"id": "ty5ygk", "submitted_by": "SocomLMR", "name": "Tiny Pony (Fluttershy)", "description": "A tiny MLP:FiM pony character, this one is of the Pegasus and Mane Six member; Fluttershy.", "website": "", "subreddit": "r/MyLittlePony", "center": [1091.5, 1540.5], "path": [[1087.5, 1536.5], [1094.5, 1536.5], [1094.5, 1543.5], [1087.5, 1543.5], [1087.5, 1536.5]]},
{"id": "ty5y0o", "submitted_by": "chiribei", "name": "Shoujo\u2606Kageki Revue Starlight", "description": "Icon featuring a star-covered giraffe against a crescent moon from the 2018 anime series Shoujo\u2606Kageki Revue Starlight.", "website": "https://revuestarlight.com/", "subreddit": "/r/RevueStarlight/", "center": [1954.5, 1059.5], "path": [[1939.5, 1044.5], [1969.5, 1044.5], [1969.5, 1073.5], [1940.5, 1074.5], [1939.5, 1074.5], [1939.5, 1074.5], [1939.5, 1074.5]]},
{"id": "ty5umw", "submitted_by": "Logan_Grimnar_SW", "name": "Ottawa Senators section", "description": "Formerly the Ottawa Senators section taken over by Polish bots. Hockey team from Ottawa, Ontario Canada. Founded in 1883, 11 time Stanley Cup Champions, playing in the NHL from 1917-1934 before going bankrupt. Revived in 1990s and currently playing in the Atlantic Division of the NHL.", "website": "https://www.nhl.com/senators/", "subreddit": "/r/OttawaSenators", "center": [1478.5, 568.5], "path": [[1449.5, 536.5], [1506.5, 537.5], [1507.5, 599.5], [1449.5, 598.5], [1449.5, 536.5]]},
{"id": "ty5tan", "submitted_by": "SocomLMR", "name": "Sneaky Starlight Glimmer", "description": "A hidden Starlight Glimmer, a female unicorn from the show My Little Pony Friendship is Magic", "website": "", "subreddit": "r/MyLittlePony", "center": [380.5, 1822.5], "path": [[374.5, 1827.5], [372.5, 1823.5], [371.5, 1822.5], [374.5, 1817.5], [385.5, 1817.5], [390.5, 1822.5], [385.5, 1826.5], [385.5, 1827.5], [385.5, 1828.5], [374.5, 1828.5], [374.5, 1827.5]]},
{"id": "ty5syk", "submitted_by": "WawansWorldR", "name": "Spider-Man Logo", "description": "From the Comics of Marvel, Spider-man's logo from the comics", "website": "https://www.reddit.com/r/Spiderman/", "subreddit": "r/spiderman", "center": [0.5, 0.5], "path": []},
{"id": "ty5s4z", "submitted_by": "UHavinAGiggleTherM8", "name": "\u00c5land turns 100", "description": "\u00c5land's autonomy will celebrate its 100th anniversary on June 9th, 2022.", "website": "https://en.wikipedia.org/wiki/%C3%85land", "subreddit": "/r/place_nordicunion", "center": [573.5, 120.5], "path": [[563.5, 114.5], [563.5, 126.5], [582.5, 126.5], [582.5, 114.5], [563.5, 114.5]]},
{"id": "ty5rp9", "submitted_by": "rdp8172", "name": "UMass Amherst", "description": "Stylized pixel text \"UMass A\", to represent the UMass Amherst. ", "website": "", "subreddit": "/r/umass", "center": [363.5, 1576.5], "path": [[381.5, 1579.5], [381.5, 1573.5], [345.5, 1573.5], [345.5, 1579.5]]},
{"id": "ty5r8p", "submitted_by": "SocomLMR", "name": "Tiny Pony (Twilight Sparkle)", "description": "A tiny MLP:FiM pony character, this one is of the Unicorn and Mane Six member; Twilight Sparkle.", "website": "", "subreddit": "r/MyLittlePony", "center": [992.5, 1118.5], "path": [[990.5, 1115.5], [996.5, 1115.5], [994.5, 1120.5], [987.5, 1120.5], [990.5, 1116.5], [990.5, 1115.5]]},
{"id": "ty5mtw", "submitted_by": "AnonymousRandPerson", "name": "United States-Argentina hearts", "description": "Hearts depicting the flags of the United States and Argentina.", "website": "", "subreddit": "/r/AmericanFlagInPlace, /r/argentina", "center": [1774.5, 1844.5], "path": [[1771.5, 1819.5], [1769.5, 1821.5], [1769.5, 1867.5], [1773.5, 1870.5], [1775.5, 1870.5], [1779.5, 1866.5], [1779.5, 1821.5], [1777.5, 1819.5]]},
{"id": "ty5la5", "submitted_by": "nelabyrinth", "name": "LordKebun Logo", "description": "Logo of the GTARP streamer LordKebun who plays the character Mr. K, leader of Chang Gang, in GTARP server NoPixel.", "website": "", "subreddit": "r/Chang_Gang", "center": [418.5, 1057.5], "path": [[406.5, 1045.5], [429.5, 1045.5], [429.5, 1069.5], [406.5, 1069.5], [406.5, 1045.5]]},
{"id": "ty5l8q", "submitted_by": "HonestPollution623", "name": "Grass Minecraft", "description": "Grass is a non-solid plant block that has wheat seeds as a drop. Its color is biome-dependent, and matches the color of grass blocks. Tall grass [a] is a two-block high variety of grass. Ferns are variants of grass found only in certain biomes and have the same characteristics as grass.", "website": "", "subreddit": "/r/Minecraft", "center": [445.5, 1490.5], "path": [[442.5, 1487.5], [448.5, 1487.5], [448.5, 1492.5], [442.5, 1493.5], [442.5, 1487.5]]},
{"id": "ty5hb7", "submitted_by": "HonestPollution623", "name": "Pokeball", "description": "This type of Pok\u00e9 Ball is the weakest and the only type that is typically available at the beginning of the Pok\u00e9mon games. It has a catch rate modifier of \u00d71 in the catch formula.", "website": "", "subreddit": "/r/pokemon", "center": [0.5, 0.5], "path": []}
] ]

View file

@ -126,6 +126,7 @@ <h1 id="title">The 2022 /r/place Atlas</h1>
<option value="alphaDesc">↑ Alphabetical</option> <option value="alphaDesc">↑ Alphabetical</option>
<option value="newest">Newest</option> <option value="newest">Newest</option>
<option value="oldest">Oldest</option> <option value="oldest">Oldest</option>
<option value="area">Area</option>
</select> </select>
</div> </div>
</div> </div>