diff --git a/web/_js/draw.js b/web/_js/draw.js index a7baea86..f7447591 100644 --- a/web/_js/draw.js +++ b/web/_js/draw.js @@ -16,14 +16,12 @@ const finishButton = document.getElementById("finishButton"); const resetButton = document.getElementById("resetButton"); const undoButton = document.getElementById("undoButton"); const redoButton = document.getElementById("redoButton"); +const previewButton = document.getElementById("previewButton"); const highlightUnchartedLabel = document.getElementById("highlightUnchartedLabel"); -let entryId = 0 -const objectInfoBox = document.getElementById("objectInfo"); - -var drawControlsBody = document.getElementById("offcanvasDraw-drawControls"); -var objectInfoBody = document.getElementById("offcanvasDraw-objectInfo"); -var objectInfoForm = document.getElementById("objectInfo"); +const drawControlsBody = document.getElementById("offcanvasDraw-drawControls"); +const objectInfoBody = document.getElementById("offcanvasDraw-objectInfo"); +const objectInfoForm = document.getElementById("objectInfo"); const hintText = document.getElementById("hint"); @@ -50,6 +48,7 @@ const discordGroup = document.getElementById("discordGroup"); const wikiGroup = document.getElementById("wikiGroup"); const exportArea = document.getElementById("exportString"); +let entryId = 0; let path = []; let center = [1000, 1000]; @@ -219,6 +218,10 @@ function initDraw() { back(); }); + previewButton.addEventListener("click", function (e) { + preview(); + }); + // refocus on button when modal is closed exportModalElement.addEventListener('hidden.bs.modal', function() { document.getElementById("exportButton").focus(); @@ -238,7 +241,7 @@ function initDraw() { render(path); }); - function exportJson() { + function generateExportObject() { const exportObject = { id: entryId, name: nameField.value, @@ -253,28 +256,34 @@ function initDraw() { for (let i = pathWithPeriodsTemp.length - 1; i > 0; i--) { for (let j = 0; j < i; j++) { if (JSON.stringify(pathWithPeriodsTemp[i][1]) === JSON.stringify(pathWithPeriodsTemp[j][1])) { - pathWithPeriodsTemp[j][0] = pathWithPeriodsTemp[i][0] + ', ' + pathWithPeriodsTemp[j][0] - pathWithPeriodsTemp.splice(i, 1) - break + pathWithPeriodsTemp[j][0] = pathWithPeriodsTemp[i][0] + ', ' + pathWithPeriodsTemp[j][0]; + pathWithPeriodsTemp.splice(i, 1); + break; } } } pathWithPeriodsTemp.forEach(([key, value]) => { // TODO: Compress periods on something like 0-13, 14. - exportObject.path[key] = value - exportObject.center[key] = calculateCenter(value) + exportObject.path[key] = value; + exportObject.center[key] = calculateCenter(value); }) const inputWebsite = websiteGroupElements.map(element => element.value.trim()).filter(element => element); - const inputSubreddit = subredditGroupElements.map(element => element.value.trim().replace(/(?:(?:(?:(?:https?:\/\/)?(?:(?:www|old|new|np)\.)?)?reddit\.com)?\/)?[rR]\/([A-Za-z0-9][A-Za-z0-9_]{2,20})(?:\/[^" ]*)*/, '$1')).filter(element => element); + const inputSubreddit = subredditGroupElements.map(element => element.value.trim().replace(/(?:(?:(?:(?:https?:\/\/)?(?:(?:www|old|new|np)\.)?)?reddit\.com)?\/)?[rR]\/([A-Za-z0-9][A-Za-z0-9_]{0,20})(?:\/[^" ]*)*/, '$1')).filter(element => element); const inputDiscord = discordGroupElements.map(element => element.value.trim().replace(/(?:https?:\/\/)?(?:www\.)?(?:(?:discord)?\.?gg|discord(?:app?)\.com\/invite)\/([^\s/]+?)(?=\b)/, '$1')).filter(element => element); const inputWiki = wikiGroupElements.map(element => element.value.trim().replace(/ /g, '_')).filter(element => element); - if (inputWebsite.length) exportObject.links.website = inputWebsite - if (inputSubreddit.length) exportObject.links.subreddit = inputSubreddit - if (inputDiscord.length) exportObject.links.discord = inputDiscord - if (inputWiki.length) exportObject.links.wiki = inputWiki + if (inputWebsite.length) exportObject.links.website = inputWebsite; + if (inputSubreddit.length) exportObject.links.subreddit = inputSubreddit; + if (inputDiscord.length) exportObject.links.discord = inputDiscord; + if (inputWiki.length) exportObject.links.wiki = inputWiki; + + return exportObject; + } + + function exportJson() { + const exportObject = generateExportObject() let jsonString = JSON.stringify(exportObject, null, "\t"); jsonString = jsonString.split("\n"); @@ -293,6 +302,13 @@ function initDraw() { exportModal.show(); } + function preview() { + let infoElement = createInfoBlock(generateExportObject(), true); + objectsContainer.replaceChildren(); + objectsContainer.appendChild(infoElement); + closeObjectsListButton.classList.remove("d-none"); + } + function undo() { if (path.length > 0 && drawing) { undoHistory.push(path.pop()); @@ -310,7 +326,7 @@ function initDraw() { } function finish() { - if (objectInfoBox.style.display === "block") return + if (objectInfoForm.style.display === "block") return updatePath() drawing = false; disableDrawingOverride = true; diff --git a/web/_js/infoblock.js b/web/_js/infoblock.js index 217ccafd..477af888 100644 --- a/web/_js/infoblock.js +++ b/web/_js/infoblock.js @@ -13,7 +13,7 @@ ======================================================================== */ -function createInfoBlock(entry) { +function createInfoBlock(entry, isPreview) { function createLabel(name, value, parent) { const nameElement = document.createElement("span"); nameElement.className = "fw-bold"; @@ -38,7 +38,8 @@ function createInfoBlock(entry) { headerElement.className = "card-header"; const linkElement = document.createElement("a"); linkElement.className = "text-decoration-none d-flex justify-content-between text-body"; - linkElement.href = "#" + entry.id; + if (isPreview) linkElement.href = "#"; + else linkElement.href = "#" + entry.id; const linkNameElement = document.createElement("span"); linkNameElement.className = "flex-grow-1 text-break"; linkNameElement.textContent = entry.name; @@ -80,15 +81,17 @@ function createInfoBlock(entry) { listElement.appendChild(diffElement); } - const [x, y] = entry.center; - listElement.appendChild(createInfoListItem("Position: ", `${Math.floor(x)}, ${Math.floor(y)}`)); - - if(entry.path){ - const area = calcPolygonArea(entry.path); - listElement.appendChild(createInfoListItem("Area: ", `${area} pixels`)); + if (!isPreview) { + const [x, y] = entry.center; + listElement.appendChild(createInfoListItem("Position: ", `${Math.floor(x)}, ${Math.floor(y)}`)); + + if(entry.path){ + const area = calcPolygonArea(entry.path); + listElement.appendChild(createInfoListItem("Area: ", `${area} pixels`)); + } } - if (entry.links.subreddit.length) { + if (entry.links.subreddit) { const subredditGroupElement = document.createElement("div"); subredditGroupElement.className = "btn-group-vertical"; linkListElement.appendChild(subredditGroupElement); @@ -107,7 +110,7 @@ function createInfoBlock(entry) { }); }; - if (entry.links.website.length) { + if (entry.links.website) { const websiteGroupElement = document.createElement("div"); websiteGroupElement.className = "btn-group-vertical"; linkListElement.appendChild(websiteGroupElement); @@ -130,7 +133,7 @@ function createInfoBlock(entry) { }); } - if (entry.links.discord.length) { + if (entry.links.discord) { const discordGroupElement = document.createElement("div"); discordGroupElement.className = "btn-group-vertical"; linkListElement.appendChild(discordGroupElement); @@ -148,7 +151,7 @@ function createInfoBlock(entry) { }); } - if (entry.links.wiki.length) { + if (entry.links.wiki) { const wikiGroupElement = document.createElement("div"); wikiGroupElement.className = "btn-group-vertical"; linkListElement.appendChild(wikiGroupElement); @@ -175,7 +178,7 @@ function createInfoBlock(entry) { idElementContainer.appendChild(idElement); element.appendChild(idElementContainer); - if (!entry.diff || entry.diff !== "delete") { + if (!isPreview && (!entry.diff || entry.diff !== "delete")) { const editElement = document.createElement("a"); editElement.textContent = "Edit"; editElement.className = "btn btn-sm btn-outline-primary"; @@ -184,13 +187,9 @@ function createInfoBlock(entry) { idElementContainer.appendChild(editElement); } - if (!linkListElement.hasChildNodes()) { - linkListElement.remove(); - } - - if (!bodyElement.hasChildNodes()) { - bodyElement.remove(); - } + if (!bodyElement.hasChildNodes()) bodyElement.remove(); + if (!linkListElement.hasChildNodes()) linkListElement.remove(); + if (!listElement.hasChildNodes()) listElement.remove(); return element; } \ No newline at end of file diff --git a/web/_js/view.js b/web/_js/view.js index 5e51cf2a..3faaa36b 100644 --- a/web/_js/view.js +++ b/web/_js/view.js @@ -734,8 +734,6 @@ window.addEventListener("hashchange", highlightEntryFromUrl); function highlightEntryFromUrl() { - const objectsContainer = document.getElementById("objectsList"); - const id = window.location.hash.substring(1); //Remove hash prefix const entries = atlas.filter(function (e) { diff --git a/web/atlas.json b/web/atlas.json index 55e14e79..a7853a15 100644 --- a/web/atlas.json +++ b/web/atlas.json @@ -1,7709 +1,7709 @@ -[ -{"id": "000001", "name": "ccKufi Robin", "description": "The icon of ccKufi, the subreddit of users who made it to the highest tier in Reddit's 2016 April Fools' event, Robin.", "website": "", "subreddit": "/r/ccKufiPrFaShleWoli0", "center": [783.5, 669.5], "path": [[771.5, 661.5], [771.5, 680.5], [789.5, 680.5], [789.5, 664.5], [806.5, 664.5], [806.5, 660.5], [771.5, 660.5]]}, -{"id": "000002", "name": "Narrator Nexus", "description": "The icon of Narrator Nexus, the group of users who coordinated the storyline in Reddit's 2019 April Fools Event, Sequence.", "website": "", "subreddit": "/r/NarraNexus", "center": [763.5, 673.5], "path": [[755.5, 667.5], [755.5, 680.5], [771.5, 680.5], [771.5, 674.5], [772.5, 673.5], [772.5, 670.5], [767.5, 664.5], [762.5, 664.5], [759.5, 669.5], [755.5, 667.5]]}, -{"id": "000003", "name": "April Knights", "description": "The Logo of the April Knights, a subreddit formed for Reddit's 2015 April Fools event 'The Button'.", "website": "", "subreddit": "/r/AprilKnights", "center": [788.5, 677.5], "path": [[789.5, 664.5], [789.5, 679.5], [789.5, 680.5], [755.5, 680.5], [755.5, 684.5], [803.5, 684.5], [801.5, 679.5], [803.5, 676.5], [803.5, 664.5], [789.5, 664.5]]}, -{"id": "000004", "name": "Triforce", "description": "The iconic symbol of the Legend of Zelda franchise.", "website": "", "subreddit": "/r/Zelda", "center": [788.5, 640.5], "path": [[788.5, 598.5], [756.5, 661.5], [819.5, 661.5], [819.5, 660.5], [788.5, 598.5]]}, -{"id": "000005", "name": "She-Ra Corner", "description": "A miniature pixel art of the Sword of Protection, the signature weapon of Adora aka She-Ra, protagonist of the 2018 Netflix series She-Ra and the Princesses of Power.\n\nThe text underneath the sword spells out \"She-Ra\".", "website": "https://www.netflix.com/title/80179762", "subreddit": "/r/PrincessesOfPower", "center": [1347.5, 416.5], "path": [[1334.5, 409.5], [1360.5, 409.5], [1360.5, 422.5], [1334.5, 422.5]]}, -{"id": "000006", "name": "2b2t", "description": "The logo of 2b2t.org (2builders2tools), the oldest anarchy server in Minecraft.", "website": "", "subreddit": "/r/2b2tplace, /r/2b2t", "center": [936.5, 451.5], "path": [[912.5, 421.5], [912.5, 481.5], [960.5, 481.5], [960.5, 421.5]]}, -{"id": "000007", "name": "Fancade", "description": "The Fancade logo, a mobile game with a built in-game engine.", "website": "https://www.fancade.com", "subreddit": "/r/fancade", "center": [90.5, 696.5], "path": [[72.5, 690.5], [108.5, 690.5], [108.5, 701.5], [79.5, 702.5], [75.5, 702.5], [72.5, 703.5], [73.5, 690.5]]}, -{"id": "000008", "name": "NotITG", "description": "Stepmania fork for modcharts", "website": "https://noti.tg/", "subreddit": "", "center": [1198.5, 58.5], "path": [[1179.5, 60.5], [1183.5, 56.5], [1180.5, 53.5], [1183.5, 50.5], [1184.5, 49.5], [1213.5, 49.5], [1213.5, 63.5], [1215.5, 63.5], [1215.5, 68.5], [1212.5, 68.5], [1212.5, 67.5], [1195.5, 67.5], [1195.5, 64.5], [1183.5, 64.5]]}, -{"id": "000010", "name": "r/DeepRockGalactic", "description": "Deep Rock Galactic is a 1-4 player co-op FPS featuring badass space Dwarves, 100% destructible environments, procedurally-generated caves, and endless hordes of alien monsters.", "website": "https://www.deeprockgalactic.com/", "subreddit": "/r/DeepRockGalactic", "center": [208.5, 285.5], "path": [[175.5, 262.5], [241.5, 262.5], [241.5, 308.5], [175.5, 308.5], [175.5, 262.5]]}, -{"id": "000012", "name": "Star Wars", "description": "Poster art for 'Star Wars: Episode IV - A New Hope', done by the Redditors at r/starwars_place. Heavy battles were fought against Among Us, and the poster once briefly disappeared to xQc before being reinstated.", "website": "https://en.wikipedia.org/wiki/Star_Wars_(film)", "subreddit": "/r/starwars_place", "center": [621.5, 771.5], "path": [[571.5, 698.5], [671.5, 698.5], [671.5, 844.5], [570.5, 843.5]]}, -{"id": "000013", "name": "Cang", "description": "It's quite literally just cang.", "website": "", "subreddit": "", "center": [1960.5, 328.5], "path": [[1954.5, 322.5], [1954.5, 333.5], [1966.5, 333.5], [1966.5, 322.5], [1954.5, 322.5]]}, -{"id": "000014", "name": "Avicii tribute", "description": "The logo of the Swedish DJ and electronic dance music artist Avicii, who was born on 8 September 1989 and died on 20 April 2018. The creation was part of a collaboration with r/Avicii and r/Place_Nordicunion.", "website": "https://discord.gg/9zTbdMSUea", "subreddit": "/r/Avicii, /r/place_nordicunion, /r/Sweden", "center": [757.5, 81.5], "path": [[740.5, 91.5], [773.5, 91.5], [773.5, 71.5], [740.5, 71.5], [740.5, 91.5]]}, -{"id": "000016", "name": "Trackmania", "description": "Original/previous logo of the arcade racing game series Trackmania.", "website": "https://www.trackmania.com", "subreddit": "/r/trackmania", "center": [411.5, 749.5], "path": [[373.5, 740.5], [448.5, 740.5], [448.5, 757.5], [373.5, 757.5], [373.5, 740.5]]}, -{"id": "000017", "name": "Czech flag with pixelarts", "description": "Czech flag made by the community of r/czech.\nWith pixelarts from Czech culture.", "website": "", "subreddit": "/r/czech", "center": [1261.5, 205.5], "path": [[1197.5, 161.5], [1325.5, 161.5], [1325.5, 249.5], [1197.5, 249.5]]}, -{"id": "000018", "name": "Duck Game duck wearing a Jetpack", "description": "A lovely character from a multiplayer action-platformer game made by Landon Podbielski.", "website": "http://store.steampowered.com/app/312530", "subreddit": "/r/duckgame", "center": [1723.5, 139.5], "path": [[1730.5, 128.5], [1730.5, 150.5], [1716.5, 150.5], [1716.5, 128.5]]}, -{"id": "000020", "name": "Statue of Saint Wenceslas", "description": "A Statue of Saint Wenceslas, patron of the Czech state, located at Wenceslas Square in Prague, Czech Republic.", "website": "", "subreddit": "/r/czech", "center": [1234.5, 225.5], "path": [[1246.5, 249.5], [1246.5, 247.5], [1247.5, 246.5], [1238.5, 246.5], [1238.5, 245.5], [1237.5, 244.5], [1237.5, 239.5], [1238.5, 238.5], [1238.5, 236.5], [1239.5, 235.5], [1240.5, 234.5], [1241.5, 234.5], [1242.5, 235.5], [1244.5, 235.5], [1245.5, 236.5], [1246.5, 236.5], [1247.5, 237.5], [1248.5, 238.5], [1247.5, 239.5], [1247.5, 240.5], [1246.5, 241.5], [1245.5, 241.5], [1244.5, 242.5], [1244.5, 244.5], [1245.5, 243.5], [1246.5, 243.5], [1247.5, 242.5], [1248.5, 241.5], [1248.5, 240.5], [1249.5, 239.5], [1249.5, 236.5], [1248.5, 235.5], [1247.5, 235.5], [1246.5, 234.5], [1245.5, 234.5], [1243.5, 232.5], [1244.5, 231.5], [1245.5, 230.5], [1245.5, 227.5], [1246.5, 226.5], [1246.5, 224.5], [1247.5, 223.5], [1248.5, 224.5], [1248.5, 227.5], [1251.5, 227.5], [1251.5, 226.5], [1257.5, 220.5], [1258.5, 220.5], [1259.5, 219.5], [1259.5, 218.5], [1260.5, 217.5], [1261.5, 217.5], [1261.5, 215.5], [1259.5, 217.5], [1257.5, 215.5], [1257.5, 214.5], [1256.5, 213.5], [1258.5, 211.5], [1258.5, 210.5], [1257.5, 210.5], [1255.5, 212.5], [1254.5, 211.5], [1252.5, 211.5], [1251.5, 210.5], [1251.5, 209.5], [1253.5, 207.5], [1251.5, 207.5], [1251.5, 208.5], [1250.5, 209.5], [1249.5, 209.5], [1248.5, 210.5], [1248.5, 211.5], [1246.5, 213.5], [1245.5, 213.5], [1244.5, 214.5], [1243.5, 214.5], [1242.5, 215.5], [1241.5, 215.5], [1238.5, 218.5], [1237.5, 217.5], [1236.5, 217.5], [1235.5, 216.5], [1235.5, 213.5], [1234.5, 212.5], [1233.5, 212.5], [1232.5, 211.5], [1232.5, 205.5], [1232.5, 202.5], [1233.5, 202.5], [1233.5, 197.5], [1234.5, 197.5], [1234.5, 190.5], [1233.5, 191.5], [1228.5, 191.5], [1227.5, 192.5], [1226.5, 192.5], [1225.5, 193.5], [1223.5, 193.5], [1222.5, 192.5], [1220.5, 192.5], [1220.5, 193.5], [1221.5, 194.5], [1222.5, 195.5], [1223.5, 195.5], [1224.5, 196.5], [1225.5, 196.5], [1226.5, 195.5], [1227.5, 195.5], [1228.5, 194.5], [1232.5, 194.5], [1234.5, 196.5], [1233.5, 197.5], [1233.5, 202.5], [1232.5, 202.5], [1232.5, 205.5], [1231.5, 205.5], [1230.5, 204.5], [1230.5, 202.5], [1229.5, 202.5], [1228.5, 201.5], [1227.5, 202.5], [1227.5, 205.5], [1226.5, 206.5], [1226.5, 207.5], [1227.5, 208.5], [1227.5, 213.5], [1228.5, 214.5], [1228.5, 217.5], [1227.5, 218.5], [1227.5, 220.5], [1226.5, 221.5], [1224.5, 221.5], [1223.5, 220.5], [1221.5, 220.5], [1220.5, 221.5], [1218.5, 221.5], [1217.5, 222.5], [1212.5, 222.5], [1210.5, 224.5], [1210.5, 230.5], [1212.5, 232.5], [1211.5, 231.5], [1211.5, 230.5], [1212.5, 229.5], [1211.5, 228.5], [1211.5, 227.5], [1213.5, 225.5], [1215.5, 225.5], [1216.5, 226.5], [1215.5, 227.5], [1215.5, 231.5], [1216.5, 232.5], [1216.5, 233.5], [1215.5, 234.5], [1213.5, 236.5], [1213.5, 239.5], [1212.5, 240.5], [1212.5, 244.5], [1208.5, 249.5], [1213.5, 249.5], [1213.5, 240.5], [1214.5, 240.5], [1214.5, 239.5], [1220.5, 233.5], [1221.5, 234.5], [1221.5, 237.5], [1223.5, 239.5], [1224.5, 239.5], [1226.5, 241.5], [1226.5, 243.5], [1227.5, 244.5], [1228.5, 244.5], [1228.5, 243.5], [1227.5, 242.5], [1227.5, 240.5], [1226.5, 239.5], [1225.5, 238.5], [1224.5, 237.5], [1224.5, 236.5], [1223.5, 235.5], [1224.5, 234.5], [1225.5, 233.5], [1233.5, 233.5], [1234.5, 234.5], [1234.5, 235.5], [1236.5, 235.5], [1237.5, 236.5], [1237.5, 237.5], [1236.5, 238.5], [1236.5, 244.5], [1237.5, 245.5], [1236.5, 246.5], [1214.5, 245.5], [1212.5, 249.5]]}, -{"id": "000021", "name": "Jerma985", "description": "Jerma is long time streamer and a retired YouTuber. Most of the time he's streaming games from various eras, but he's most famous for these special, semi-scripted streams, like playing archeologist on real excavation site, holiday streams or creating Jerma Dollhouse.", "website": "https://jerma-lore.fandom.com/wiki/Jerma985", "subreddit": "", "center": [114.5, 977.5], "path": [[92.5, 955.5], [135.5, 955.5], [135.5, 999.5], [92.5, 999.5]]}, -{"id": "000022", "name": "United Kingdom", "description": "The Union Jack, featuring pixel art of (right to left) the Palace of Westminster and Big Ben (often defaced with a phallus), a teapot and mug, Saint Piran's Flag (Cornwall), The Cross of Saint Patrick (Ireland), the Welsh Flag, the Scottish Saltire, and the logo of the National Health Service", "website": "", "subreddit": "/r/ukplace", "center": [635.5, 516.5], "path": [[569.5, 476.5], [571.5, 557.5], [701.5, 557.5], [701.5, 476.5], [701.5, 476.5], [701.5, 476.5], [701.5, 476.5], [700.5, 476.5]]}, -{"id": "000023", "name": "BFDI Bubble and Leafy", "description": "Leafy and Bubble from \"Battle For Dream Island\" standing on Yoyleland.", "website": "https://www.youtube.com/watch?v=YQa2-DY7Y_Q&list=PL24C8378F296DB656&ab_channel=jacknjellify", "subreddit": "/r/BattleForDreamIsland", "center": [1575.5, 54.5], "path": [[1561.5, 42.5], [1562.5, 67.5], [1588.5, 67.5], [1588.5, 42.5]]}, -{"id": "000025", "name": "Northeastern University", "description": "Northeastern University Husky and Initials. Coordinated using discord : https://www.reddit.com/r/NEU/comments/tt7dhj/rplace_northeastern_discord/", "website": "", "subreddit": "/r/NEU", "center": [221.5, 707.5], "path": [[185.5, 699.5], [258.5, 699.5], [258.5, 714.5], [183.5, 714.5], [184.5, 698.5]]}, -{"id": "000027", "name": "Club Penguin", "description": "A blue penguin from the MMO videogame Club Penguin, which officially closed in March 2017.", "website": "", "subreddit": "/r/clubpenguin", "center": [1884.5, 159.5], "path": [[1887.5, 141.5], [1881.5, 141.5], [1880.5, 142.5], [1879.5, 142.5], [1879.5, 144.5], [1878.5, 145.5], [1877.5, 145.5], [1877.5, 151.5], [1876.5, 151.5], [1876.5, 152.5], [1876.5, 152.5], [1875.5, 153.5], [1875.5, 154.5], [1874.5, 155.5], [1874.5, 156.5], [1873.5, 157.5], [1872.5, 158.5], [1872.5, 159.5], [1871.5, 160.5], [1871.5, 161.5], [1871.5, 162.5], [1871.5, 165.5], [1871.5, 166.5], [1872.5, 167.5], [1873.5, 166.5], [1874.5, 165.5], [1875.5, 164.5], [1875.5, 165.5], [1875.5, 167.5], [1876.5, 168.5], [1877.5, 169.5], [1875.5, 169.5], [1875.5, 170.5], [1875.5, 171.5], [1874.5, 171.5], [1874.5, 174.5], [1879.5, 174.5], [1880.5, 173.5], [1881.5, 172.5], [1882.5, 173.5], [1883.5, 174.5], [1884.5, 173.5], [1885.5, 172.5], [1886.5, 172.5], [1886.5, 173.5], [1887.5, 173.5], [1887.5, 174.5], [1893.5, 174.5], [1893.5, 173.5], [1892.5, 172.5], [1892.5, 171.5], [1891.5, 170.5], [1891.5, 169.5], [1890.5, 169.5], [1891.5, 168.5], [1892.5, 168.5], [1892.5, 164.5], [1893.5, 165.5], [1893.5, 166.5], [1894.5, 166.5], [1894.5, 167.5], [1896.5, 167.5], [1896.5, 160.5], [1895.5, 159.5], [1895.5, 156.5], [1894.5, 155.5], [1893.5, 154.5], [1893.5, 153.5], [1892.5, 152.5], [1891.5, 151.5], [1891.5, 149.5], [1890.5, 148.5], [1890.5, 145.5], [1889.5, 144.5], [1889.5, 143.5], [1888.5, 142.5]]}, -{"id": "000030", "name": "Flag of East Turkestan", "description": "The historical flag of the Turkic Islamic Republic of East Turkestan, currently used by Uyghur activists", "website": "", "subreddit": "", "center": [978.5, 454.5], "path": [[965.5, 442.5], [991.5, 442.5], [991.5, 464.5], [991.5, 465.5], [965.5, 465.5]]}, -{"id": "000031", "name": "Flag of Turkey", "description": "Flag of Turkey with the silhouette of Istanbul", "website": "", "subreddit": "/r/turkey", "center": [390.5, 396.5], "path": [[300.5, 344.5], [479.5, 344.5], [479.5, 448.5], [300.5, 448.5], [300.5, 344.5]]}, -{"id": "000032", "name": "Atatürk's Portrait", "description": "Mustafa Kemal Atatürk, founder of Turkey", "website": "", "subreddit": "/r/turkey", "center": [1052.5, 60.5], "path": [[1001.5, 1.5], [1103.5, 1.5], [1103.5, 119.5], [1001.5, 119.5]]}, -{"id": "000033", "name": "Moka pot", "description": "An traditional Italian coffee maker.", "website": "/r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "subreddit": "Italy-Toki Pona heart", "center": [834.5, 395.5], "path": [[846.5, 404.5], [846.5, 400.5], [845.5, 400.5], [844.5, 399.5], [844.5, 396.5], [843.5, 395.5], [843.5, 393.5], [847.5, 389.5], [848.5, 390.5], [848.5, 391.5], [847.5, 392.5], [847.5, 393.5], [848.5, 394.5], [848.5, 395.5], [849.5, 394.5], [849.5, 387.5], [848.5, 386.5], [848.5, 385.5], [847.5, 385.5], [846.5, 384.5], [845.5, 384.5], [843.5, 382.5], [839.5, 382.5], [837.5, 380.5], [836.5, 380.5], [834.5, 382.5], [828.5, 382.5], [828.5, 383.5], [825.5, 386.5], [825.5, 387.5], [822.5, 390.5], [822.5, 391.5], [820.5, 393.5], [820.5, 395.5], [819.5, 396.5], [819.5, 397.5], [817.5, 399.5], [816.5, 399.5], [816.5, 403.5], [817.5, 404.5], [817.5, 405.5], [818.5, 405.5], [819.5, 406.5], [824.5, 406.5], [826.5, 404.5], [826.5, 398.5], [825.5, 397.5], [824.5, 396.5], [824.5, 392.5], [825.5, 391.5], [825.5, 390.5], [826.5, 389.5], [827.5, 389.5], [830.5, 392.5], [830.5, 393.5], [831.5, 394.5], [831.5, 395.5], [829.5, 397.5], [829.5, 399.5], [828.5, 400.5], [828.5, 406.5], [830.5, 406.5], [831.5, 407.5], [843.5, 407.5], [844.5, 406.5], [845.5, 406.5], [846.5, 405.5]]}, -{"id": "000034", "name": "Toki Pona (ma nanpa wan)", "description": "The first site decorated by the Toki Pona community. Toki Pona is a minimalist constructed language by Sonja Lang (jan Sonja).", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [763.5, 345.5], "path": [[740.5, 330.5], [786.5, 330.5], [786.5, 360.5], [740.5, 360.5]]}, -{"id": "000035", "name": ":happysperm:/:squirtyay:", "description": "This blue squirt originally appeared as an enemy in Bastion (video game), but has since become an icon in several communities (often unrelated to Bastion), most notably as a series of Discord server emotes. Its current form on the canvas represents the :happysperm:/:squirtyay: variant. It was built together by r/civbattleroyale, r/CivHybridGames, r/civAIgames, r/CivModdingCentral, The Legacy, the nerd hive, and other individuals who recognised the art from Bastion.", "website": "https://bastion.fandom.com/wiki/Squirt", "subreddit": "/r/civbattleroyale", "center": [718.5, 369.5], "path": [[707.5, 360.5], [724.5, 360.5], [730.5, 366.5], [730.5, 374.5], [725.5, 380.5], [718.5, 380.5], [714.5, 377.5], [707.5, 376.5], [707.5, 376.5], [707.5, 360.5]]}, -{"id": "000036", "name": "Java", "description": "The Java Logo. Built and maintained by the Java Discord server. discord.gg/java", "website": "", "subreddit": "", "center": [1220.5, 875.5], "path": [[1215.5, 870.5], [1224.5, 870.5], [1224.5, 879.5], [1215.5, 879.5]]}, -{"id": "000037", "name": "Tally Hall Logo", "description": "This is the logo of the band \"tally hall\". Above it, in the trans pride flag, is the character \"ally hall\", a joint project between the two groups.", "website": "https://www.tallyhall.com", "subreddit": "/r/tallyhall", "center": [769.5, 495.5], "path": [[754.5, 477.5], [754.5, 521.5], [763.5, 521.5], [763.5, 507.5], [786.5, 507.5], [786.5, 477.5], [773.5, 477.5]]}, -{"id": "000039", "name": "Encanto butterfly", "description": "A depiction of the miracle butterfly from Disney's Encanto. A piece created by r/Encanto, its place granted in a deal with Oyasumi Punpun in exchange for guarding their piece. It saw minimal griefing, as both parties defended it.", "website": "https://en.wikipedia.org/wiki/Encanto_(film)", "subreddit": "r/Encanto", "center": [1925.5, 275.5], "path": [[1919.5, 270.5], [1919.5, 281.5], [1928.5, 281.5], [1933.5, 270.5]]}, -{"id": "000041", "name": "Amulet of Yendor", "description": "A powerful artifact representing the Pixel Dungeon community.", "website": "https://pixeldungeon.fandom.com/wiki/Amulet_of_Yendor", "subreddit": "/r/PixelDungeon", "center": [698.5, 368.5], "path": [[689.5, 361.5], [689.5, 361.5], [689.5, 361.5], [707.5, 361.5], [707.5, 375.5], [689.5, 375.5], [689.5, 368.5]]}, -{"id": "000042", "name": "Hatchling and scout", "description": "Main character of the game Outer Wilds", "website": "https://outerwilds.fandom.com/wiki/The_Protagonist", "subreddit": "/r/outerwilds, /r/place_CentralAlliance", "center": [389.5, 934.5], "path": [[384.5, 944.5], [391.5, 944.5], [391.5, 942.5], [390.5, 942.5], [390.5, 938.5], [392.5, 938.5], [393.5, 939.5], [395.5, 940.5], [395.5, 941.5], [396.5, 942.5], [395.5, 943.5], [395.5, 944.5], [397.5, 944.5], [397.5, 943.5], [398.5, 942.5], [399.5, 942.5], [400.5, 943.5], [400.5, 944.5], [402.5, 944.5], [402.5, 943.5], [401.5, 942.5], [402.5, 941.5], [402.5, 939.5], [400.5, 937.5], [399.5, 937.5], [399.5, 935.5], [400.5, 935.5], [399.5, 934.5], [398.5, 935.5], [399.5, 936.5], [399.5, 937.5], [397.5, 937.5], [395.5, 939.5], [394.5, 938.5], [394.5, 935.5], [391.5, 930.5], [391.5, 923.5], [388.5, 921.5], [385.5, 921.5], [384.5, 923.5], [383.5, 923.5], [382.5, 922.5], [381.5, 923.5], [382.5, 925.5], [383.5, 928.5], [383.5, 930.5], [380.5, 935.5], [380.5, 938.5], [381.5, 939.5], [384.5, 938.5], [384.5, 944.5]]}, -{"id": "000043", "name": "Corridor Crew Logo", "description": "Logo from the Corridor youtube channel, a group of vfx artist.", "website": "https://www.youtube.com/c/corridorcrew", "subreddit": "/r/Corridor", "center": [121.5, 91.5], "path": [[109.5, 90.5], [120.5, 79.5], [122.5, 79.5], [133.5, 90.5], [133.5, 92.5], [122.5, 103.5], [122.5, 104.5], [121.5, 104.5], [109.5, 92.5]]}, -{"id": "000045", "name": "Baltic states", "description": "A map of the three Baltic states: Estonia, Latvia, and Lithuania.", "website": "", "subreddit": "", "center": [1925.5, 139.5], "path": [[1954.5, 100.5], [1955.5, 162.5], [1949.5, 161.5], [1949.5, 176.5], [1937.5, 176.5], [1937.5, 182.5], [1902.5, 181.5], [1902.5, 174.5], [1897.5, 174.5], [1897.5, 100.5]]}, -{"id": "000046", "name": "The Elder Scrolls V: Skyrim", "description": "The logo for the fifth Elder Scrolls game, Skyrim.", "website": "", "subreddit": "/r/skyrim", "center": [1984.5, 257.5], "path": [[1969.5, 238.5], [1999.5, 238.5], [1999.5, 276.5], [1969.5, 276.5]]}, -{"id": "000047", "name": "Moon Lord (Terraria)", "description": "Pixel art of the Moon Lord, the final boss from the game Terraria.", "website": "", "subreddit": "/r/Terraria", "center": [1773.5, 359.5], "path": [[1793.5, 402.5], [1785.5, 404.5], [1780.5, 409.5], [1781.5, 411.5], [1777.5, 415.5], [1772.5, 415.5], [1768.5, 412.5], [1765.5, 404.5], [1757.5, 402.5], [1754.5, 379.5], [1738.5, 402.5], [1731.5, 402.5], [1722.5, 387.5], [1720.5, 357.5], [1708.5, 336.5], [1713.5, 328.5], [1723.5, 322.5], [1733.5, 325.5], [1741.5, 340.5], [1731.5, 355.5], [1732.5, 368.5], [1737.5, 363.5], [1739.5, 354.5], [1749.5, 346.5], [1757.5, 345.5], [1754.5, 319.5], [1758.5, 306.5], [1770.5, 301.5], [1788.5, 304.5], [1795.5, 319.5], [1792.5, 333.5], [1791.5, 344.5], [1810.5, 352.5], [1812.5, 365.5], [1817.5, 368.5], [1819.5, 356.5], [1809.5, 338.5], [1813.5, 336.5], [1820.5, 327.5], [1828.5, 325.5], [1835.5, 331.5], [1839.5, 337.5], [1837.5, 344.5], [1829.5, 358.5], [1825.5, 392.5], [1817.5, 402.5], [1807.5, 396.5], [1795.5, 378.5]]}, -{"id": "000050", "name": "Mass Effect", "description": "Mass Effect is a series of third-person science fiction role-playing games developed by BioWare.", "website": "", "subreddit": "/r/masseffect", "center": [822.5, 992.5], "path": [[842.5, 999.5], [801.5, 999.5], [801.5, 984.5], [842.5, 984.5]]}, -{"id": "000051", "name": "Mass relay", "description": "A mass relay, a form of FTL travel, from Mass Effect.", "website": "", "subreddit": "/r/masseffect", "center": [835.5, 981.5], "path": [[841.5, 978.5], [830.5, 978.5], [827.5, 981.5], [830.5, 984.5], [842.5, 984.5], [842.5, 978.5]]}, -{"id": "000052", "name": "Tali'Zorah", "description": "A popular NPC from the Mass Effect series.", "website": "", "subreddit": "/r/masseffect", "center": [823.5, 973.5], "path": [[819.5, 964.5], [828.5, 964.5], [828.5, 978.5], [826.5, 983.5], [818.5, 983.5], [818.5, 964.5]]}, -{"id": "000053", "name": "Rec Room", "description": "Rec Room is a virtual reality, online video game with an integrated game creation system developed and published by Rec Room Inc.", "website": "https://recroom.com", "subreddit": "/r/recroom, /r/place_CentralAlliance", "center": [398.5, 991.5], "path": [[393.5, 1000.5], [403.5, 999.5], [403.5, 982.5], [394.5, 982.5], [394.5, 987.5], [393.5, 987.5], [393.5, 989.5]]}, -{"id": "000054", "name": "Smiling Friends", "description": "Smiling Friends is an animated television series created by Zach Hadel and Michael Cusack for Cartoon Network's night-time programming block Adult Swim.", "website": "https://en.wikipedia.org/wiki/Smiling_Friends", "subreddit": "/r/SmilingFriends, /r/place_CentralAlliance", "center": [531.5, 927.5], "path": [[513.5, 900.5], [548.5, 900.5], [548.5, 954.5], [514.5, 953.5]]}, -{"id": "000055", "name": "Mikio Fujioka Tribute", "description": "A star in tribute to Mikio Fujioka, a guitarist of BABYMETAL's backing band the KAMI band - who sadly passed away in 2018", "website": "https://www.babymetal.com/en/", "subreddit": "/r/BABYMETAL", "center": [1124.5, 482.5], "path": [[1120.5, 478.5], [1120.5, 486.5], [1128.5, 486.5], [1128.5, 481.5], [1125.5, 481.5], [1125.5, 478.5]]}, -{"id": "000056", "name": "Tintin and Snowy", "description": "The Adventures of Tintin is a Belgian comic series by cartoonist Georges Remi, following the exploits of the titular reporter and adventurer Tintin, who travels the world with his dog Snowy.", "website": "", "subreddit": "", "center": [306.5, 597.5], "path": [[295.5, 607.5], [295.5, 599.5], [296.5, 598.5], [297.5, 597.5], [296.5, 596.5], [295.5, 595.5], [294.5, 594.5], [294.5, 591.5], [295.5, 591.5], [295.5, 588.5], [296.5, 587.5], [300.5, 583.5], [300.5, 582.5], [301.5, 581.5], [302.5, 580.5], [304.5, 580.5], [305.5, 581.5], [306.5, 582.5], [306.5, 585.5], [307.5, 586.5], [308.5, 587.5], [308.5, 588.5], [309.5, 589.5], [310.5, 588.5], [311.5, 587.5], [312.5, 588.5], [313.5, 589.5], [314.5, 588.5], [315.5, 587.5], [316.5, 588.5], [317.5, 589.5], [317.5, 592.5], [318.5, 593.5], [318.5, 596.5], [319.5, 597.5], [321.5, 597.5], [322.5, 598.5], [322.5, 602.5], [321.5, 603.5], [319.5, 603.5], [318.5, 602.5], [317.5, 603.5], [317.5, 604.5], [315.5, 606.5], [313.5, 606.5], [310.5, 603.5], [310.5, 607.5], [309.5, 608.5], [309.5, 609.5], [308.5, 610.5], [307.5, 611.5], [299.5, 611.5]]}, -{"id": "000057", "name": "Queen Margrethe the 2nd", "description": "A picture of Her Majesty Queen Margrethe II smoking.", "website": "https://en.wikipedia.org/wiki/Margrethe_II_of_Denmark", "subreddit": "/r/place_nordicunion, /r/Denmark", "center": [472.5, 259.5], "path": [[478.5, 215.5], [484.5, 215.5], [484.5, 216.5], [486.5, 216.5], [486.5, 217.5], [488.5, 217.5], [488.5, 218.5], [490.5, 218.5], [490.5, 219.5], [491.5, 219.5], [491.5, 220.5], [493.5, 220.5], [493.5, 221.5], [494.5, 221.5], [494.5, 222.5], [495.5, 222.5], [495.5, 293.5], [437.5, 294.5], [437.5, 287.5], [448.5, 277.5], [449.5, 275.5], [449.5, 272.5], [448.5, 271.5], [448.5, 269.5], [448.5, 266.5], [448.5, 265.5], [447.5, 262.5], [448.5, 262.5], [450.5, 260.5], [449.5, 258.5], [449.5, 256.5], [447.5, 255.5], [450.5, 253.5], [453.5, 249.5], [448.5, 248.5], [452.5, 245.5], [457.5, 249.5], [458.5, 247.5], [456.5, 245.5], [456.5, 243.5], [458.5, 241.5], [459.5, 240.5], [459.5, 237.5], [459.5, 235.5], [461.5, 237.5], [463.5, 235.5], [463.5, 234.5], [464.5, 231.5], [458.5, 228.5], [459.5, 225.5], [458.5, 224.5], [458.5, 221.5], [458.5, 220.5], [463.5, 220.5], [466.5, 220.5], [467.5, 222.5], [473.5, 219.5], [474.5, 219.5]]}, -{"id": "000058", "name": "Kaj & Andrea", "description": "Popular children cartoon in Denmark containing two puppets named Kaj (the frog) and Andrea (the parrot).", "website": "https://en.wikipedia.org/wiki/Kaj_%26_Andrea", "subreddit": "/r/place_nordicunion, /r/Denmark", "center": [445.5, 232.5], "path": [[437.5, 215.5], [454.5, 218.5], [457.5, 222.5], [457.5, 226.5], [459.5, 226.5], [457.5, 226.5], [457.5, 228.5], [459.5, 230.5], [456.5, 232.5], [452.5, 232.5], [453.5, 234.5], [453.5, 243.5], [446.5, 250.5], [442.5, 250.5], [441.5, 248.5], [439.5, 248.5], [437.5, 251.5], [434.5, 249.5], [435.5, 245.5], [436.5, 242.5], [437.5, 234.5], [435.5, 233.5], [435.5, 226.5], [436.5, 224.5], [437.5, 224.5], [437.5, 222.5], [434.5, 221.5], [437.5, 216.5]]}, -{"id": "000059", "name": "Art Heaven", "description": "Art Heaven is an art community started on discord. This is an image of our mascot, Abby!", "website": "", "subreddit": "/r/artheaven", "center": [652.5, 640.5], "path": [[661.5, 632.5], [661.5, 647.5], [642.5, 647.5], [642.5, 632.5]]}, -{"id": "000061", "name": "Hermitcraft", "description": "Hermitcraft is a popular Minecraft SMP (Survival Multiplayer), featuring many of the most popular creators in Minecraft YouTube.", "website": "https://hermitcraft.com", "subreddit": "/r/hermitcraft", "center": [881.5, 607.5], "path": [[924.5, 583.5], [879.5, 583.5], [879.5, 590.5], [851.5, 590.5], [850.5, 632.5], [902.5, 632.5], [902.5, 616.5], [906.5, 616.5], [906.5, 592.5], [925.5, 592.5], [925.5, 583.5], [924.5, 583.5]]}, -{"id": "000062", "name": "Notte Boom Sticker", "description": "The in-game emote used for Dragalia Lost mobile game featuring the character Notte.", "website": "https://dragalialost.com/", "subreddit": "/r/DragaliaLost", "center": [197.5, 49.5], "path": [[178.5, 34.5], [215.5, 34.5], [215.5, 64.5], [178.5, 64.5]]}, -{"id": "000063", "name": "Patriotic Dragonite", "description": "A Dragonite from the video game series Pokémon with its palm on its chest. It has become a symbol of Spanish patriotism on many memes featuring him behind a Spanish flag.", "website": "https://bulbapedia.bulbagarden.net/wiki/Dragonite_(Pok%C3%A9mon)", "subreddit": "/r/esPlace, /r/pokemon", "center": [983.5, 300.5], "path": [[973.5, 308.5], [973.5, 306.5], [974.5, 305.5], [974.5, 303.5], [973.5, 302.5], [972.5, 301.5], [972.5, 300.5], [972.5, 299.5], [973.5, 298.5], [974.5, 297.5], [973.5, 296.5], [973.5, 295.5], [972.5, 294.5], [970.5, 294.5], [968.5, 296.5], [967.5, 295.5], [967.5, 291.5], [969.5, 289.5], [970.5, 288.5], [970.5, 286.5], [971.5, 287.5], [972.5, 288.5], [974.5, 288.5], [975.5, 287.5], [976.5, 286.5], [977.5, 285.5], [980.5, 285.5], [981.5, 286.5], [985.5, 285.5], [986.5, 286.5], [987.5, 286.5], [988.5, 285.5], [989.5, 286.5], [987.5, 288.5], [986.5, 288.5], [985.5, 287.5], [984.5, 288.5], [984.5, 293.5], [985.5, 293.5], [987.5, 293.5], [989.5, 291.5], [989.5, 290.5], [990.5, 288.5], [991.5, 287.5], [992.5, 286.5], [993.5, 287.5], [994.5, 288.5], [995.5, 289.5], [995.5, 296.5], [996.5, 296.5], [996.5, 297.5], [995.5, 297.5], [993.5, 297.5], [993.5, 295.5], [990.5, 295.5], [989.5, 296.5], [988.5, 296.5], [988.5, 298.5], [989.5, 300.5], [989.5, 301.5], [988.5, 302.5], [989.5, 303.5], [992.5, 303.5], [992.5, 302.5], [991.5, 301.5], [991.5, 301.5], [991.5, 298.5], [994.5, 298.5], [995.5, 299.5], [995.5, 300.5], [997.5, 300.5], [997.5, 301.5], [998.5, 301.5], [998.5, 305.5], [997.5, 306.5], [996.5, 306.5], [995.5, 307.5], [990.5, 311.5], [990.5, 312.5], [989.5, 313.5], [989.5, 314.5], [985.5, 318.5], [983.5, 318.5], [982.5, 317.5], [982.5, 316.5], [983.5, 315.5], [983.5, 313.5], [982.5, 312.5], [981.5, 311.5], [980.5, 312.5], [980.5, 313.5], [977.5, 313.5], [977.5, 314.5], [975.5, 316.5], [973.5, 316.5], [972.5, 315.5], [972.5, 314.5], [973.5, 313.5], [974.5, 312.5], [974.5, 311.5], [973.5, 310.5], [973.5, 308.5]]}, -{"id": "000064", "name": "Shane Keith Warne (1969-2022)", "description": "Shane Warne was an Australian cricketer. A right-arm leg spinner, he is widely regarded as one of the greatest bowlers in cricket history. Lovingly known as 'Warnie', he would forever stay immortal in the hearts of cricket fans all around the world.", "website": "https://www.instagram.com/shanewarne23/?hl=en", "subreddit": "", "center": [311.5, 267.5], "path": [[296.5, 254.5], [319.5, 260.5], [294.5, 281.5], [294.5, 273.5], [293.5, 268.5], [293.5, 263.5], [293.5, 259.5], [293.5, 256.5], [293.5, 253.5], [294.5, 252.5], [302.5, 252.5], [306.5, 252.5], [311.5, 252.5], [318.5, 252.5], [323.5, 252.5], [330.5, 252.5], [333.5, 253.5], [335.5, 256.5], [334.5, 260.5], [334.5, 264.5], [334.5, 267.5], [334.5, 265.5], [334.5, 269.5], [334.5, 271.5], [334.5, 273.5], [334.5, 282.5], [331.5, 282.5], [328.5, 282.5], [294.5, 282.5], [294.5, 282.5]]}, -{"id": "000065", "name": "Mayreel (Forma de Alpaca)", "description": "Mayreel from the gacha mobile game Guardian Tales in its alpaca form. She's is the god of harvest Kamael's divine beast, an alpaca with the power of grass and flowers. Usually, she tags along with Bari in her alpaca form, but she can change into human form.", "website": "", "subreddit": "/r/guardiantales", "center": [689.5, 208.5], "path": [[688.5, 194.5], [692.5, 194.5], [692.5, 195.5], [693.5, 196.5], [693.5, 199.5], [696.5, 199.5], [696.5, 200.5], [697.5, 200.5], [697.5, 203.5], [698.5, 204.5], [700.5, 204.5], [700.5, 205.5], [701.5, 205.5], [701.5, 207.5], [702.5, 207.5], [702.5, 211.5], [701.5, 211.5], [701.5, 214.5], [700.5, 214.5], [696.5, 218.5], [695.5, 219.5], [694.5, 219.5], [693.5, 218.5], [691.5, 218.5], [690.5, 219.5], [689.5, 219.5], [688.5, 218.5], [685.5, 218.5], [684.5, 219.5], [683.5, 219.5], [677.5, 213.5], [677.5, 205.5], [682.5, 199.5], [682.5, 196.5], [684.5, 194.5], [686.5, 194.5], [686.5, 195.5], [687.5, 196.5], [688.5, 196.5], [689.5, 195.5]]}, -{"id": "000066", "name": "Babymetal", "description": "Yui Metal, Su Metal and Moa Metal of the Japanese Metal band BABYMETAL", "website": "https://www.babymetal.com/en/", "subreddit": "/r/BABYMETAL", "center": [675.5, 611.5], "path": [[649.5, 591.5], [701.5, 591.5], [701.5, 631.5], [649.5, 631.5], [649.5, 591.5]]}, -{"id": "000067", "name": "Babymetal Resistance Logo", "description": "Babymetal Resistance album logo/art", "website": "https://www.babymetal.com/en/", "subreddit": "/r/BABYMETAL", "center": [1141.5, 470.5], "path": [[1115.5, 465.5], [1125.5, 465.5], [1125.5, 461.5], [1161.5, 461.5], [1161.5, 465.5], [1167.5, 465.5], [1161.5, 474.5], [1157.5, 474.5], [1157.5, 481.5], [1149.5, 481.5], [1146.5, 479.5], [1142.5, 478.5], [1137.5, 479.5], [1133.5, 481.5], [1125.5, 481.5], [1125.5, 476.5], [1122.5, 474.5], [1118.5, 470.5]]}, -{"id": "000068", "name": "Outer Wilds: Nomai Mask", "description": "Outer Wilds is an action-adventure game developed by Mobius Digital, featuring a solar system stuck in a 22-minute time loop, which ends as the sun goes supernova. This is the mask of an old, dead civilization in the solar system.", "website": "https://www.mobiusdigitalgames.com/outer-wilds.html", "subreddit": "/r/outerwilds", "center": [1686.5, 664.5], "path": [[1662.5, 637.5], [1662.5, 690.5], [1709.5, 690.5], [1709.5, 637.5]]}, -{"id": "000070", "name": "R.I.P. Michigun", "description": "A memorial for famous and skilled Geometry Dash player Michigun.", "website": "https://discord.gg/BcXxhV4mYn", "subreddit": "/r/geometrydashplace", "center": [942.5, 393.5], "path": [[923.5, 367.5], [960.5, 367.5], [960.5, 418.5], [923.5, 418.5]]}, -{"id": "000071", "name": "Georgia Institute of Technology", "description": "Icons and mascots of Georgia Tech.", "website": "https://gatech.edu", "subreddit": "/r/gatecg", "center": [402.5, 569.5], "path": [[421.5, 528.5], [378.5, 528.5], [378.5, 549.5], [412.5, 549.5], [412.5, 583.5], [378.5, 583.5], [378.5, 608.5], [421.5, 608.5]]}, -{"id": "000072", "name": "Formula 1", "description": "Logos of all 2022 teams. The Williams-W with the addition of \"FW\" is in honour of the late founder Frank Williams.\n\n\"Keep fighting Michael\" honours Michael Schumacher who is still fighting for his life after a devastating skiing accident many years ago.\n\"JB17\" is a testiment to Jules Bianchi, who suffered a fatal accident during the 2014 Japanese Grand Prix.\n\"AH19\" is a testiment to the late Anthoine Hubert who lost his life during the 2019 Belgian Grand Prix in the Saturday race in Formula 2.", "website": "https://en.wikipedia.org/wiki/Formula_One", "subreddit": "/r/formula1", "center": [510.5, 796.5], "path": [[448.5, 762.5], [571.5, 762.5], [571.5, 829.5], [448.5, 829.5], [448.5, 762.5]]}, -{"id": "000073", "name": "TUHH", "description": "The Name and Logo of the Hamburg University of Technology.\n\"Technische Universität Hansestadt Hamburg\"", "website": "https://www.tuhh.de", "subreddit": "/r/TU_HH", "center": [233.5, 168.5], "path": [[221.5, 165.5], [245.5, 165.5], [245.5, 171.5], [221.5, 171.5], [221.5, 165.5]]}, -{"id": "000074", "name": "Ethereum", "description": "Ethereum is a block chain powering smart contracts and cryptocurrencies, including ETH itself. \nThis logo was built by a small team of only about 50 people after a smaller version south of the current location was taken over.\nIt has been rebuilt after an attack by the trees below in conjunction with the German flag, and has recently added a prism effect with a laser coming from the Loopring logo, through the ETH crystal, and splitting into a rainbow on the Immutable side.", "website": "https://discord.gg/BMCdDHvNm6", "subreddit": "", "center": [841.5, 876.5], "path": [[841.5, 856.5], [854.5, 877.5], [840.5, 896.5], [828.5, 878.5]]}, -{"id": "000075", "name": "Destiny", "description": "Gaming and politics live streamer Steven Kenneth \"Destiny\" Bonnell II.", "website": "https://destiny.gg", "subreddit": "/r/Destiny", "center": [367.5, 105.5], "path": [[334.5, 78.5], [399.5, 78.5], [399.5, 131.5], [334.5, 131.5]]}, -{"id": "000076", "name": "LTTSTORE.COM", "description": "A reference to shoutouts in Linus Tech Tips videos for their own merchandise line available on LTTSTORE.COM.\nSpammers have made repeated attempts to replace two pixels of the O in .COM with orange in order to alter the text to .CUM.", "website": "https://www.lttstore.com/", "subreddit": "/r/LinusTechTips", "center": [83.5, 771.5], "path": [[49.5, 766.5], [115.5, 765.5], [115.5, 777.5], [49.5, 776.5]]}, -{"id": "000077", "name": "Löwenzahn", "description": "A dandelion, representing the popular German children's TV show \"Löwenzahn\".", "website": "https://en.wikipedia.org/wiki/L%C3%B6wenzahn", "subreddit": "/r/placeDE", "center": [517.5, 850.5], "path": [[519.5, 865.5], [523.5, 865.5], [522.5, 864.5], [522.5, 863.5], [524.5, 863.5], [524.5, 864.5], [530.5, 863.5], [528.5, 861.5], [528.5, 858.5], [530.5, 858.5], [530.5, 859.5], [531.5, 859.5], [530.5, 859.5], [530.5, 858.5], [529.5, 858.5], [529.5, 856.5], [532.5, 856.5], [531.5, 856.5], [531.5, 855.5], [531.5, 854.5], [532.5, 854.5], [533.5, 853.5], [531.5, 853.5], [531.5, 851.5], [532.5, 851.5], [532.5, 850.5], [534.5, 850.5], [535.5, 849.5], [535.5, 848.5], [537.5, 846.5], [537.5, 845.5], [537.5, 846.5], [535.5, 848.5], [534.5, 848.5], [533.5, 849.5], [532.5, 849.5], [532.5, 847.5], [533.5, 847.5], [533.5, 846.5], [534.5, 846.5], [534.5, 845.5], [533.5, 844.5], [531.5, 844.5], [530.5, 845.5], [530.5, 846.5], [531.5, 847.5], [532.5, 847.5], [532.5, 849.5], [531.5, 849.5], [529.5, 851.5], [528.5, 853.5], [528.5, 854.5], [528.5, 855.5], [526.5, 855.5], [526.5, 856.5], [524.5, 856.5], [524.5, 851.5], [525.5, 851.5], [525.5, 850.5], [526.5, 850.5], [526.5, 849.5], [527.5, 849.5], [527.5, 844.5], [529.5, 844.5], [529.5, 845.5], [529.5, 844.5], [529.5, 843.5], [530.5, 843.5], [530.5, 842.5], [531.5, 842.5], [531.5, 841.5], [532.5, 841.5], [532.5, 840.5], [532.5, 839.5], [532.5, 841.5], [530.5, 841.5], [530.5, 843.5], [528.5, 843.5], [528.5, 839.5], [529.5, 839.5], [529.5, 838.5], [530.5, 838.5], [530.5, 837.5], [531.5, 837.5], [531.5, 835.5], [529.5, 834.5], [528.5, 833.5], [528.5, 834.5], [527.5, 834.5], [527.5, 835.5], [526.5, 835.5], [526.5, 836.5], [525.5, 836.5], [525.5, 837.5], [526.5, 837.5], [526.5, 838.5], [527.5, 838.5], [527.5, 840.5], [526.5, 840.5], [526.5, 843.5], [525.5, 843.5], [527.5, 843.5], [527.5, 847.5], [526.5, 847.5], [526.5, 849.5], [525.5, 849.5], [525.5, 851.5], [523.5, 851.5], [523.5, 850.5], [522.5, 850.5], [522.5, 848.5], [523.5, 848.5], [523.5, 845.5], [524.5, 845.5], [524.5, 844.5], [525.5, 844.5], [523.5, 844.5], [523.5, 843.5], [519.5, 843.5], [519.5, 841.5], [521.5, 841.5], [521.5, 840.5], [522.5, 840.5], [522.5, 839.5], [523.5, 839.5], [523.5, 836.5], [522.5, 836.5], [522.5, 834.5], [521.5, 834.5], [521.5, 833.5], [520.5, 832.5], [518.5, 832.5], [516.5, 834.5], [516.5, 836.5], [513.5, 836.5], [513.5, 834.5], [514.5, 834.5], [514.5, 833.5], [513.5, 832.5], [511.5, 832.5], [510.5, 833.5], [510.5, 834.5], [511.5, 835.5], [512.5, 836.5], [513.5, 837.5], [513.5, 839.5], [511.5, 839.5], [511.5, 838.5], [510.5, 837.5], [507.5, 837.5], [505.5, 839.5], [505.5, 841.5], [504.5, 841.5], [504.5, 844.5], [507.5, 847.5], [509.5, 847.5], [509.5, 851.5], [507.5, 851.5], [506.5, 852.5], [508.5, 852.5], [508.5, 854.5], [505.5, 857.5], [505.5, 859.5], [503.5, 859.5], [503.5, 860.5], [505.5, 860.5], [505.5, 861.5], [507.5, 861.5], [507.5, 862.5], [509.5, 862.5], [509.5, 863.5], [508.5, 864.5], [509.5, 863.5], [512.5, 863.5], [512.5, 865.5]]}, -{"id": "000078", "name": "Colosseum", "description": "A Roman gladiator arena, built in Rome, Italy.", "website": "https://en.wikipedia.org/wiki/Colosseum", "subreddit": "/r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "center": [822.5, 427.5], "path": [[790.5, 404.5], [809.5, 404.5], [855.5, 404.5], [855.5, 451.5], [789.5, 450.5], [789.5, 404.5]]}, -{"id": "000079", "name": "Dante Alighieri", "description": "An Italian poet, known for writing \"The Divine Comedy\".", "website": "https://en.wikipedia.org/wiki/Dante_Alighieri", "subreddit": "/r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "center": [852.5, 346.5], "path": [[856.5, 372.5], [842.5, 372.5], [842.5, 324.5], [863.5, 324.5], [863.5, 360.5], [856.5, 360.5], [856.5, 371.5]]}, -{"id": "000080", "name": "Flag of Poland", "description": "Polish flag with dumplings, a bottle of vodka, Pope John Paul II, and the dog from the old Polish cartoon \"Reksio\" drawn on top of it.", "website": "https://en.wikipedia.org/wiki/Poland", "subreddit": "/r/polska, /r/poland", "center": [585.5, 359.5], "path": [[481.5, 344.5], [689.5, 342.5], [688.5, 375.5], [480.5, 376.5]]}, -{"id": "000083", "name": "Karlsruhe Institute of Technology", "description": "The Karlsruhe Institute of Technology (Karlsruher Institut für Technologie, KIT) is the biggest university in the city of Karlsruhe, Germany and a national research center.", "website": "https://kit.edu", "subreddit": "/r/KaIT", "center": [796.5, 534.5], "path": [[760.5, 521.5], [760.5, 547.5], [832.5, 547.5], [832.5, 521.5]]}, -{"id": "000085", "name": "Cave Story", "description": "Cave Story, originally released as Dōkutsu Monogatari, is a 2004 Metroidvania platform-adventure game for Microsoft Windows. It was developed over five years by Japanese developer Daisuke \"Pixel\" Amaya in his free time.", "website": "https://en.wikipedia.org/wiki/Cave_Story", "subreddit": "/r/cavestory, /r/place_CentralAlliance", "center": [585.5, 883.5], "path": [[563.5, 866.5], [608.5, 866.5], [607.5, 901.5], [562.5, 900.5]]}, -{"id": "000086", "name": "Blender", "description": "Blender Logo. Blender is a free and open-source 3D computer graphics software.", "website": "https://www.blender.org/", "subreddit": "/r/blender", "center": [127.5, 105.5], "path": [[121.5, 103.5], [122.5, 102.5], [123.5, 102.5], [124.5, 100.5], [127.5, 99.5], [130.5, 102.5], [133.5, 105.5], [133.5, 107.5], [132.5, 108.5], [131.5, 109.5], [131.5, 110.5], [130.5, 111.5], [128.5, 111.5], [127.5, 110.5], [125.5, 109.5], [123.5, 108.5], [121.5, 107.5], [122.5, 105.5], [121.5, 104.5], [121.5, 102.5]]}, -{"id": "000087", "name": "Catalonia", "description": "The flag of Catalonia", "website": "", "subreddit": "/r/Catalunya", "center": [715.5, 346.5], "path": [[689.5, 360.5], [740.5, 360.5], [740.5, 332.5], [689.5, 332.5]]}, -{"id": "000089", "name": "Indonesian Flag", "description": "Indonesian flag with indonesian archipelago and pinguin pixelart", "website": "", "subreddit": "/r/indonesia", "center": [116.5, 793.5], "path": [[89.5, 781.5], [143.5, 781.5], [143.5, 804.5], [89.5, 804.5]]}, -{"id": "000090", "name": "League of Legends Logo", "description": "A logo for League of Legends, with a red filter for its background.", "website": "https://www.leagueoflegends.com/en-us/", "subreddit": "/r/leagueoflegends", "center": [731.5, 228.5], "path": [[709.5, 203.5], [709.5, 249.5], [759.5, 250.5], [747.5, 205.5]]}, -{"id": "000091", "name": "Flag of Mexico", "description": "Flag of Mexico with a Mayan pyramid.\n\nThis flag was the first Mexican flag, made during the first day of r/place.\nAt first it was a very small flag, but it expanded to the north when the LGBT flag was attacked by the Mexican and Italian alliance, dividing the won territories in half. This territory lived in peace from the first to the last day and was never invaded.", "website": "", "subreddit": "/r/Mexico", "center": [826.5, 486.5], "path": [[787.5, 521.5], [865.5, 521.5], [865.5, 451.5], [787.5, 451.5]]}, -{"id": "000092", "name": "Lego", "description": "Lego logo, next to the flag of Denmark, its country of origin.", "website": "https://en.wikipedia.org/wiki/Lego", "subreddit": "/r/lego, /r/Denmark", "center": [664.5, 331.5], "path": [[689.5, 342.5], [689.5, 320.5], [638.5, 320.5], [638.5, 342.5]]}, -{"id": "000093", "name": "Northern Cyprus", "description": "Flag of Northern Cyprus, officially the Turkish Republic of Northern Cyprus", "website": "", "subreddit": "", "center": [1970.5, 54.5], "path": [[1941.5, 35.5], [1999.5, 35.5], [1999.5, 73.5], [1941.5, 73.5]]}, -{"id": "000094", "name": "The Great Wave off Kanagawa", "description": "The Great Wave off Kanagawa, also known as The Great Wave or The Wave, is a woodblock print by the Japanese ukiyo-e artist Hokusai. It was created in 1831", "website": "", "subreddit": "", "center": [1960.5, 802.5], "path": [[1921.5, 829.5], [1999.5, 829.5], [1999.5, 775.5], [1920.5, 775.5]]}, -{"id": "000095", "name": "ƎNA", "description": "ƎNA is a animated series created by Peruvian animator Joel Guerra. It takes place in a surreal, digital world and stars the eponymous character ƎNA.", "website": "https://joelgc.com/", "subreddit": "/r/ENA", "center": [1986.5, 752.5], "path": [[1972.5, 730.5], [1999.5, 730.5], [1999.5, 775.5], [1973.5, 775.5]]}, -{"id":"000096","name":"Big Ten West","description":"The original claims of the Big Ten Conference of college universities. Started by Purdue, and joined by Rutgers, Nebraska, Illinois, Iowa, and Penn State. Kirby is there because it was there from the start and, not wanting to destroy it, they allied together.","website":"","subreddit":"/r/TheB1G","center":[211.5,605.5],"path":[[151.5,609.5],[174.5,609.5],[174.5,629.5],[257.5,629.5],[257.5,582.5],[175.5,582.5],[163.5,582.5],[163.5,583.5],[160.5,589.5],[160.5,590.5],[165.5,590.5],[165.5,592.5],[163.5,596.5],[163.5,597.5],[161.5,601.5],[154.5,601.5],[154.5,602.5],[153.5,602.5],[153.5,605.5],[152.5,605.5],[152.5,607.5],[151.5,607.5]]}, -{"id": "000097", "name": "Niko from OneShot", "description": "The main character \"Niko\" from the indie video game OneShot. Here they are depicted riding a roomba and holding a lightbulb - The Sun. This artwork was originally located slightly higher up. However, it couldn't survive the massive ukrainian flag, so it was relocated here - where it stayed for the rest of the event.", "website": "http://www.oneshot-game.com/", "subreddit": "/r/oneshot", "center": [921.5, 265.5], "path": [[925.5, 283.5], [928.5, 280.5], [928.5, 276.5], [930.5, 276.5], [932.5, 274.5], [932.5, 272.5], [928.5, 272.5], [928.5, 270.5], [929.5, 270.5], [929.5, 269.5], [931.5, 269.5], [931.5, 266.5], [932.5, 266.5], [932.5, 260.5], [931.5, 260.5], [931.5, 253.5], [933.5, 253.5], [933.5, 249.5], [911.5, 249.5], [911.5, 253.5], [912.5, 253.5], [912.5, 260.5], [911.5, 260.5], [911.5, 266.5], [912.5, 266.5], [912.5, 269.5], [914.5, 269.5], [914.5, 272.5], [911.5, 272.5], [911.5, 274.5], [914.5, 277.5], [914.5, 280.5], [917.5, 283.5]]}, -{"id": "000098", "name": "/r/196 Mural", "description": "The mural created by the shitposting subreddit /r/196", "website": "", "subreddit": "/r/196", "center": [208.5, 664.5], "path": [[174.5, 629.5], [241.5, 629.5], [241.5, 698.5], [174.5, 698.5]]}, -{"id": "000099", "name": "Lemon Demon", "description": "The Lemon Demon logo was designed by u/iforgotmypasswordss, and was part of a joint project between r/lemondemon and r/tallyhall", "website": "", "subreddit": "/r/lemondemon", "center": [770.5, 414.5], "path": [[754.5, 399.5], [754.5, 428.5], [786.5, 428.5], [786.5, 399.5]]}, -{"id": "000100", "name": "The Inkunzi Logo", "description": "The Logo for the nation rp Inkunzi, a geopolitical Nation RP on a fantasy planet. Made by CalmDownLevelUp", "website": "https://www.youtube.com/watch?v=gLXxk7ZsrDM", "subreddit": "/r/CalmDownLevelUp", "center": [1840.5, 811.5], "path": [[1845.5, 806.5], [1845.5, 815.5], [1835.5, 815.5], [1835.5, 806.5]]}, -{"id": "000101", "name": "A Practical Guide To Evil by ErraticErrata - Do Wrong Right", "description": "A Practical Guide to Evil is a YA fantasy novel about a young girl named Catherine Foundling making her way through the world – though, in a departure from the norm, not on the side of the heroes. Is there such a thing as doing bad things for good reasons, or is she just rationalizing her desire for control? Good and Evil are tricky concepts, and the more power you get the blurrier the lines between them become.", "website": "http://practicalguidetoevil.wordpress.com/", "subreddit": "/r/practicalguidetoevil", "center": [947.5, 531.5], "path": [[959.5, 520.5], [959.5, 541.5], [935.5, 541.5], [935.5, 520.5], [959.5, 520.5]]}, -{"id": "000102", "name": "HasanAbi logo", "description": "Twitch streamer Hasan Piker's logo/icon.", "website": "https://twitch.tv/HasanAbi", "subreddit": "/r/Hasan_Piker", "center": [1802.5, 518.5], "path": [[1782.5, 496.5], [1783.5, 539.5], [1821.5, 539.5], [1821.5, 497.5]]}, -{"id": "000103", "name": "The Ohio State University", "description": "The Ohio State University (OSU) is located in Columbus, Ohio, USA. OSU's school colors are scarlet and gray which can be seen around their famous Block O - located towards the bottom left of the artwork. The Block \"O\" together with the Buckeye nut is the logo for The Ohio State University. OSU (not to be confused with the rhythm game \"osu!\") is famous for it's rivalry with the University of Michigan with the 15-2 representing the current streak of 15 wins against UofM's 2. The Ohio flag is on the top right, representing the state of Ohio, USA. The bottom right has the famous \"Script Ohio\" - a long-time Ohio State tradition from the school's Marching Band where members of the band will form the word \"Ohio\" in script during football games. A second block \"O\" is situated next to Purdue University & Rutgers University elsewhere on r/place.", "website": "https://www.osu.edu", "subreddit": "/r/osu", "center": [1347.5, 813.5], "path": [[1331.5, 795.5], [1331.5, 830.5], [1363.5, 831.5], [1363.5, 795.5], [1363.5, 795.5], [1363.5, 795.5]]}, -{"id": "000105", "name": "PotatoMcWhiskey", "description": "The logo of Civ VI streamer PotatoMcWhiskey", "website": "https://www.youtube.com/user/PotatoMcWhiskey/", "subreddit": "/r/PotatoMcWhiskey", "center": [1516.5, 81.5], "path": [[1494.5, 96.5], [1518.5, 98.5], [1521.5, 107.5], [1535.5, 89.5], [1534.5, 60.5], [1507.5, 61.5], [1508.5, 71.5], [1500.5, 72.5], [1494.5, 62.5]]}, -{"id": "000106", "name": "Operation Gooseflight", "description": "Splinter from r/canada to escape the meme of messing with the flag.", "website": "", "subreddit": "/r/canada", "center": [1816.5, 908.5], "path": [[1829.5, 880.5], [1829.5, 934.5], [1794.5, 934.5], [1793.5, 931.5], [1808.5, 916.5], [1808.5, 912.5], [1806.5, 912.5], [1806.5, 879.5], [1829.5, 879.5]]}, -{"id": "000107", "name": "Critical Role", "description": "Emblem of the actual-play Dungeons and Dragons series.", "website": "https://critrole.com/", "subreddit": "/r/CriticalRole, /r/place_CentralAlliance", "center": [526.5, 977.5], "path": [[513.5, 963.5], [538.5, 963.5], [538.5, 991.5], [513.5, 991.5]]}, -{"id": "000108", "name": "Palico", "description": "An iconic character from the popular game series, Monster Hunter.", "website": "https://monsterhunterworld.wiki.fextralife.com/Palicoes", "subreddit": "/r/MonsterHunter", "center": [761.5, 621.5], "path": [[748.5, 608.5], [748.5, 635.5], [769.5, 635.5], [776.5, 620.5], [776.5, 608.5]]}, -{"id": "000109", "name": "Flag of Portugal", "description": "The flag of Portugal and depictions of Portuguese poet Luís de Camões, Pena National Palace, celebrity Fernando Mendes, statue of Afonso Henriques (first king of Portugal), Bridge 25th of April, and finally, a caravel.", "website": "", "subreddit": "/r/portugal", "center": [984.5, 336.5], "path": [[865.5, 308.5], [865.5, 360.5], [856.5, 360.5], [856.5, 371.5], [922.5, 370.5], [923.5, 367.5], [960.5, 367.5], [960.5, 360.5], [1099.5, 360.5], [1109.5, 352.5], [1121.5, 347.5], [1121.5, 325.5], [1113.5, 325.5], [1113.5, 313.5], [1113.5, 308.5], [865.5, 308.5]]}, -{"id": "000110", "submitted_by": "electric-blue", "name": "Trans pride flag", "description": "The Trans pride flag, emblazoned with a variety of pixel arts.", "website": "https://en.wikipedia.org/wiki/Transgender", "subreddit": "/r/TransPlace", "center": [634.5, 453.5], "path": [[481.5, 430.5], [786.5, 430.5], [786.5, 476.5], [481.5, 475.5]]}, -{"id": "000111", "submitted_by": "electric-blue", "name": "Connection lost", "description": "The \"Connection lost... Please wait - attempting to reestablish.\" message originates from RuneScape, the popular free MMORPG.", "website": "https://oldschool.runescape.com/", "subreddit": "/r/2007scape", "center": [116.5, 17.5], "path": [[0.5, 0.5], [231.5, 0.5], [231.5, 33.5], [0.5, 33.5]]}, -{"id": "000112", "submitted_by": "electric-blue", "name": "Froggy Chair", "description": "The Froggy Chair, from the Nintendo game Animal Crossing.", "website": "", "subreddit": "", "center": [61.5, 125.5], "path": [[54.5, 115.5], [66.5, 113.5], [67.5, 121.5], [70.5, 125.5], [71.5, 133.5], [70.5, 134.5], [67.5, 134.5], [66.5, 131.5], [62.5, 131.5], [62.5, 136.5], [57.5, 136.5], [57.5, 133.5], [53.5, 133.5], [53.5, 126.5], [54.5, 125.5], [54.5, 115.5]]}, -{"id": "000113", "submitted_by": "electric-blue", "name": "The Welsh Flag", "description": "The Welsh Flag, featuring the Dragon of Cadwaladr", "website": "", "subreddit": "", "center": [100.5, 132.5], "path": [[128.5, 147.5], [128.5, 118.5], [67.5, 118.5], [68.5, 120.5], [71.5, 124.5], [72.5, 133.5], [71.5, 134.5], [70.5, 135.5], [66.5, 135.5], [65.5, 132.5], [63.5, 132.5], [62.5, 136.5], [75.5, 136.5], [75.5, 146.5], [128.5, 147.5]]}, -{"id": "000114", "submitted_by": "electric-blue", "name": "Radiohead Crying Minotaur", "description": "The Crying Minotaur, from the cover of Radiohead's 2001 album \"Amnesiac\"", "website": "", "subreddit": "/r/radiohead", "center": [102.5, 554.5], "path": [[79.5, 530.5], [124.5, 530.5], [124.5, 578.5], [79.5, 578.5], [79.5, 530.5]]}, -{"id": "000116", "submitted_by": "electric-blue", "name": "Pizza John", "description": "Pizza John, the logo/meme surrounding Pizzamas, an annual celebration by the Green Brothers (Vlogbrothers)", "website": "https://pizzamas.com/pages/what-is-this", "subreddit": "/r/nerdfighters", "center": [1378.5, 804.5], "path": [[1364.5, 779.5], [1391.5, 779.5], [1391.5, 829.5], [1364.5, 829.5], [1364.5, 779.5]]}, -{"id": "003621", "submitted_by": "electric-blue", "name": "e621 logo", "description": "The logo of the mature imageboard e621.net. Warning: website contains NSFW images.", "website": "", "subreddit": "", "center": [1620.5, 620.5], "path": [[1603.5, 610.5], [1629.5, 610.5], [1629.5, 620.5], [1628.5, 620.5], [1628.5, 621.5], [1627.5, 621.5], [1627.5, 635.5], [1603.5, 635.5]]}, -{"id": "000118", "submitted_by": "electric-blue", "name": "Bad Dragon Logo", "description": "The logo of Bad Dragon, a manufacturer of fantasy adult toys. WARNING: WEBSITE CONTAINS NSFW CONTENT.", "website": "", "subreddit": "", "center": [1595.5, 628.5], "path": [[1587.5, 620.5], [1602.5, 620.5], [1602.5, 635.5], [1587.5, 635.5], [1587.5, 620.5]]}, -{"id": "000119", "submitted_by": "electric-blue", "name": "r/Furry_IRL", "description": "The logo of the r/Furry_IRL subreddit, dedicated to furry memes.", "website": "", "subreddit": "/r/furry_irl", "center": [912.5, 92.5], "path": [[894.5, 70.5], [929.5, 70.5], [929.5, 114.5], [894.5, 114.5], [894.5, 70.5]]}, -{"id": "000120", "submitted_by": "electric-blue", "name": "Greggs", "description": "The logo of Greggs, the British fast-food bakery chain.", "website": "", "subreddit": "", "center": [727.5, 479.5], "path": [[702.5, 477.5], [752.5, 477.5], [752.5, 481.5], [702.5, 481.5], [702.5, 477.5]]}, -{"id": "000121", "submitted_by": "electric-blue", "name": "Peppy", "description": "A pixel art image of Peppy, the creator of osu!", "website": "https://osu.ppy.sh/", "subreddit": "/r/osuplace", "center": [1726.5, 736.5], "path": [[1726.5, 672.5], [1751.5, 693.5], [1751.5, 707.5], [1743.5, 718.5], [1755.5, 726.5], [1756.5, 731.5], [1760.5, 738.5], [1760.5, 747.5], [1763.5, 753.5], [1762.5, 766.5], [1762.5, 773.5], [1756.5, 779.5], [1748.5, 779.5], [1747.5, 780.5], [1702.5, 780.5], [1701.5, 781.5], [1700.5, 781.5], [1700.5, 776.5], [1699.5, 774.5], [1697.5, 773.5], [1693.5, 773.5], [1693.5, 771.5], [1692.5, 769.5], [1691.5, 766.5], [1690.5, 763.5], [1690.5, 756.5], [1689.5, 755.5], [1689.5, 745.5], [1690.5, 744.5], [1690.5, 739.5], [1691.5, 738.5], [1691.5, 734.5], [1692.5, 730.5], [1694.5, 729.5], [1694.5, 727.5], [1695.5, 725.5], [1699.5, 721.5], [1701.5, 721.5], [1703.5, 720.5], [1706.5, 719.5], [1707.5, 718.5], [1708.5, 717.5], [1708.5, 716.5], [1707.5, 715.5], [1707.5, 712.5], [1706.5, 711.5], [1706.5, 709.5], [1705.5, 708.5], [1704.5, 707.5], [1703.5, 707.5], [1703.5, 700.5], [1704.5, 698.5], [1704.5, 695.5], [1707.5, 695.5], [1708.5, 694.5], [1708.5, 691.5], [1710.5, 691.5], [1710.5, 689.5], [1710.5, 685.5], [1726.5, 672.5]]}, -{"id": "000122", "submitted_by": "electric-blue", "name": "Girl with a Pearl Earring", "description": "Pixel art of the Girl with a Pearl Earring, by Johannes Vermeer", "website": "https://en.wikipedia.org/wiki/Girl_with_a_Pearl_Earring", "subreddit": "", "center": [907.5, 34.5], "path": [[928.5, 0.5], [928.5, 68.5], [886.5, 68.5], [886.5, 0.5], [928.5, 0.5]]}, -{"id": "000123", "submitted_by": "Kenjidono_", "name": "Palestanian Flag", "description": "This is the current Flag of Palestine.", "website": "", "subreddit": "/r/Palestine", "center": [44.5, 660.5], "path": [[20.5, 643.5], [20.5, 678.5], [68.5, 678.5], [69.5, 643.5], [20.5, 643.5], [20.5, 678.5]]}, -{"id": "000124", "submitted_by": "Inzaniity", "name": "German fast train (ICE)", "description": "The German fast train ICE (Intercity Express). It is known for having really bad network reception while travelling with Deutsche Bahn.", "website": "https://en.wikipedia.org/wiki/Intercity_Express", "subreddit": "/r/placeDE", "center": [349.5, 858.5], "path": [[373.5, 849.5], [373.5, 867.5], [325.5, 867.5], [325.5, 863.5], [326.5, 859.5], [331.5, 854.5], [324.5, 853.5], [324.5, 851.5], [323.5, 850.5], [323.5, 844.5], [327.5, 844.5], [327.5, 846.5], [328.5, 847.5], [329.5, 846.5], [331.5, 846.5], [331.5, 854.5], [333.5, 854.5], [335.5, 852.5], [337.5, 852.5], [344.5, 849.5], [373.5, 849.5]]}, -{"id": "000125", "submitted_by": "MaulPaul", "name": "End of speed limit", "description": "German road sign used on the Autobahn (German highway) to indicate the end of all speed and passing limits", "website": "https://en.wikipedia.org/wiki/Autobahn", "subreddit": "/r/placeDE", "center": [572.5, 854.5], "path": [[568.5, 866.5], [575.5, 866.5], [575.5, 863.5], [573.5, 863.5], [573.5, 859.5], [574.5, 859.5], [579.5, 854.5], [579.5, 850.5], [574.5, 845.5], [570.5, 845.5], [565.5, 850.5], [565.5, 854.5], [570.5, 859.5], [570.5, 863.5], [568.5, 863.5], [568.5, 866.5]]}, -{"id": "000126", "submitted_by": "Inzaniity", "name": "arte", "description": "arte is a European public service channel that promotes cultural programming. It's a coorporation between French and German broadcasting companies.", "website": "https://www.arte.tv/en/", "subreddit": "/r/PlaceFrance, /r/placeDE", "center": [1163.5, 849.5], "path": [[1200.5, 830.5], [1200.5, 868.5], [1126.5, 868.5], [1126.5, 829.5], [1200.5, 830.5]]}, -{"id": "000127", "submitted_by": "Woocami", "name": "Die Sendung mit der Maus", "description": "Die Sendung mit der Maus (The Show with the Mouse) is a German children's television series, popular nation-wide for its educational content.", "website": "https://www.wdrmaus.de/", "subreddit": "/r/placeDE", "center": [82.5, 853.5], "path": [[61.5, 865.5], [56.5, 865.5], [53.5, 862.5], [51.5, 862.5], [48.5, 859.5], [48.5, 858.5], [49.5, 858.5], [49.5, 857.5], [50.5, 857.5], [50.5, 858.5], [52.5, 858.5], [52.5, 857.5], [53.5, 857.5], [54.5, 858.5], [54.5, 860.5], [53.5, 861.5], [55.5, 863.5], [56.5, 864.5], [61.5, 864.5], [62.5, 864.5], [62.5, 863.5], [63.5, 863.5], [63.5, 861.5], [64.5, 861.5], [64.5, 859.5], [63.5, 860.5], [60.5, 856.5], [60.5, 853.5], [61.5, 852.5], [61.5, 851.5], [62.5, 850.5], [65.5, 850.5], [65.5, 849.5], [66.5, 848.5], [68.5, 848.5], [69.5, 847.5], [70.5, 847.5], [71.5, 848.5], [71.5, 849.5], [73.5, 849.5], [74.5, 850.5], [76.5, 848.5], [76.5, 847.5], [77.5, 846.5], [77.5, 843.5], [76.5, 843.5], [76.5, 839.5], [77.5, 839.5], [77.5, 838.5], [76.5, 838.5], [74.5, 836.5], [76.5, 834.5], [78.5, 834.5], [78.5, 832.5], [82.5, 832.5], [82.5, 835.5], [85.5, 835.5], [85.5, 836.5], [87.5, 836.5], [87.5, 837.5], [88.5, 838.5], [89.5, 838.5], [90.5, 839.5], [91.5, 839.5], [92.5, 840.5], [92.5, 841.5], [91.5, 842.5], [94.5, 842.5], [94.5, 840.5], [96.5, 840.5], [97.5, 841.5], [97.5, 839.5], [98.5, 839.5], [100.5, 841.5], [100.5, 842.5], [102.5, 844.5], [102.5, 848.5], [101.5, 849.5], [101.5, 850.5], [100.5, 851.5], [99.5, 851.5], [99.5, 854.5], [102.5, 854.5], [103.5, 853.5], [104.5, 853.5], [105.5, 852.5], [106.5, 853.5], [107.5, 854.5], [104.5, 857.5], [104.5, 858.5], [105.5, 859.5], [105.5, 862.5], [101.5, 862.5], [101.5, 864.5], [103.5, 866.5], [103.5, 867.5], [99.5, 867.5], [98.5, 866.5], [99.5, 865.5], [99.5, 862.5], [97.5, 862.5], [97.5, 865.5], [95.5, 867.5], [94.5, 867.5], [93.5, 866.5], [92.5, 866.5], [92.5, 865.5], [93.5, 864.5], [95.5, 864.5], [95.5, 863.5], [94.5, 862.5], [94.5, 861.5], [92.5, 859.5], [92.5, 856.5], [91.5, 856.5], [89.5, 858.5], [89.5, 861.5], [88.5, 862.5], [88.5, 863.5], [89.5, 864.5], [89.5, 866.5], [86.5, 866.5], [86.5, 859.5], [83.5, 859.5], [83.5, 866.5], [74.5, 866.5], [73.5, 867.5], [69.5, 867.5], [68.5, 866.5], [67.5, 866.5], [66.5, 867.5], [64.5, 867.5], [63.5, 866.5], [62.5, 865.5]]}, -{"id": "000128", "submitted_by": "red__flag_", "name": "Flag of the European Union", "description": "The flag of the European Union with a peace dove. The same flag was also in r/place 2017.", "website": "https://discord.gg/uxm3wbrHke", "subreddit": "/r/PlaceEU, /r/PlaceFrance, /r/placeDE", "center": [403.5, 848.5], "path": [[373.5, 829.5], [433.5, 829.5], [433.5, 867.5], [373.5, 867.5], [373.5, 867.5]]}, -{"id": "000129", "submitted_by": "Yuzumi_", "name": "Bernd das Brot", "description": "Bernd das Brot is a puppet character, star mascot and cult figure of the German children's television channel KI.KA. He is holding a beer and saying his catchphrase 'Mist', meaning 'Damn'.", "website": "https://en.wikipedia.org/wiki/Bernd_das_Brot", "subreddit": "/r/placeDE", "center": [210.5, 853.5], "path": [[189.5, 829.5], [185.5, 833.5], [185.5, 850.5], [183.5, 850.5], [181.5, 848.5], [179.5, 848.5], [176.5, 851.5], [176.5, 854.5], [174.5, 854.5], [173.5, 855.5], [171.5, 855.5], [169.5, 857.5], [169.5, 860.5], [171.5, 862.5], [169.5, 864.5], [169.5, 865.5], [172.5, 868.5], [175.5, 868.5], [177.5, 870.5], [181.5, 870.5], [181.5, 868.5], [183.5, 865.5], [184.5, 864.5], [185.5, 864.5], [185.5, 874.5], [214.5, 874.5], [214.5, 863.5], [217.5, 863.5], [219.5, 865.5], [221.5, 865.5], [222.5, 866.5], [223.5, 866.5], [227.5, 870.5], [228.5, 870.5], [229.5, 871.5], [238.5, 871.5], [239.5, 872.5], [241.5, 872.5], [243.5, 869.5], [247.5, 871.5], [254.5, 866.5], [254.5, 864.5], [251.5, 864.5], [250.5, 865.5], [248.5, 865.5], [246.5, 863.5], [245.5, 863.5], [245.5, 855.5], [244.5, 854.5], [244.5, 850.5], [241.5, 847.5], [241.5, 835.5], [239.5, 832.5], [219.5, 832.5], [217.5, 835.5], [216.5, 835.5], [216.5, 832.5]]}, -{"id": "000130", "submitted_by": "Jm8alt3", "name": "Pochita", "description": "Pochita is a character from the manga Chansaw Man.", "website": "", "subreddit": "/r/ChainsawMan", "center": [212.5, 791.5], "path": [[198.5, 779.5], [204.5, 779.5], [207.5, 782.5], [207.5, 783.5], [215.5, 783.5], [215.5, 782.5], [216.5, 782.5], [216.5, 781.5], [219.5, 781.5], [223.5, 785.5], [224.5, 786.5], [224.5, 789.5], [222.5, 791.5], [223.5, 792.5], [223.5, 793.5], [225.5, 793.5], [225.5, 799.5], [224.5, 799.5], [224.5, 800.5], [222.5, 800.5], [222.5, 802.5], [219.5, 802.5], [219.5, 803.5], [215.5, 803.5], [215.5, 801.5], [212.5, 801.5], [212.5, 802.5], [206.5, 802.5], [206.5, 800.5], [208.5, 798.5], [205.5, 798.5], [202.5, 795.5], [202.5, 789.5], [201.5, 789.5], [199.5, 787.5], [198.5, 786.5], [198.5, 784.5], [197.5, 784.5], [197.5, 780.5], [198.5, 779.5]]}, -{"id":"000131","submitted_by":"linwji","name":"Neopets","description":"A virtual pet game that peaked in popularity in the 1990s","website":"https://www.neopets.com/","subreddit":"/r/neopets","center":[331.5,723.5],"path":[[310.5,702.5],[352.5,702.5],[352.5,743.5],[310.5,743.5]]}, -{"id": "000133", "submitted_by": "neinwhal", "name": "Flag of Singapore", "description": "Singapore is a city-state in Southeast Asia with a population of 5.9M. The flag is overlaid by a silhouette of the country and its prominent landmarks - the Merlion, Marina Bay Sands, Changi Airport control tower, and the Mass Rapid Transit system. The greenery showcases Singapore as a City in Nature, while the purple flower on the Merlion represents our national flower, Vanda Ms. Joaquim.", "website": "https://en.wikipedia.org/wiki/Singapore", "subreddit": "/r/singapore, /r/place_CentralAlliance", "center": [306.5, 972.5], "path": [[286.5, 961.5], [286.5, 977.5], [299.5, 977.5], [299.5, 984.5], [316.5, 984.5], [318.5, 986.5], [319.5, 986.5], [322.5, 983.5], [322.5, 961.5]]}, -{"id":"000134","submitted_by":"linwji","name":"Google Chrome Dino","description":"This dino game appears when the Chrome browser is offline","website":"","subreddit":"/r/DinoPlace","center":[322.5,793.5],"path":[[302.5,777.5],[321.5,777.5],[321.5,780.5],[343.5,780.5],[343.5,808.5],[302.5,808.5]]}, -{"id": "000135", "submitted_by": "linwji", "name": "Flag of Malaysia", "description": "Jalur Gemilang (the national flag of Malaysia) with the Petronas Twin Towers, Mount Kinabalu and the rhinoceros hornbill", "website": "https://en.wikipedia.org/wiki/Malaysia", "subreddit": "/r/malaysia, /r/place_CentralAlliance", "center": [358.5, 977.5], "path": [[323.5, 961.5], [393.5, 961.5], [393.5, 992.5], [323.5, 992.5], [323.5, 961.5]]}, -{"id": "000136", "submitted_by": "linwji", "name": "Gear in Factorio Video Game", "description": "One of the most important component pieces in Factorio game to craft machines to grow the factory", "website": "https://factorio.com/", "subreddit": "/r/factorio", "center": [1598.5, 563.5], "path": [[1574.5, 548.5], [1621.5, 548.5], [1622.5, 578.5], [1573.5, 578.5]]}, -{"id": "000137", "submitted_by": "linwji", "name": "BTS Young Forever Album Cover", "description": "Korea's hottest boyband's album cover featured a colourful hot-air balloon", "website": "https://www.youtube.com/watch?v=7m-4u4GONsA&ab_channel=BangtanSubs", "subreddit": "/r/bangtan", "center": [1971.5, 217.5], "path": [[1999.5, 195.5], [1944.5, 196.5], [1942.5, 239.5], [1998.5, 238.5]]}, -{"id": "000138", "submitted_by": "linwji", "name": "Aang, the last Avatar", "description": "Portrait of Avatar Aang, main character of the hit animated series Avatar the Last Airbender.\n\nThe world is divided into four nations - the Water Tribe, the Earth Kingdom, the Fire Nation and the Air Nomads - each represented by a natural element for which the nation is named. Benders have the ability to control and manipulate the element from their nation. Only the Avatar is the master of all four elements and Aang conquers them all!", "website": "http://www.nick.co.uk/shows/avatar/q03fvj", "subreddit": "/r/ATLA, /r/place_CentralAlliance", "center": [289.5, 947.5], "path": [[281.5, 938.5], [296.5, 938.5], [297.5, 957.5], [282.5, 956.5]]}, -{"id": "000139", "submitted_by": "linwji", "name": "Sailor Moon", "description": "A popular Japanese anime in the 1990s where a group of girls with superpowers triumph over evil.", "website": "https://en.wikipedia.org/wiki/Sailor_Moon", "subreddit": "/r/sailormoon, /r/place_CentralAlliance", "center": [379.5, 974.5], "path": [[364.5, 961.5], [366.5, 986.5], [395.5, 986.5], [391.5, 962.5]]}, -{"id": "000140", "submitted_by": "bafimet", "name": "Ghost", "description": "'Grucifix' symbol for the Swedish metal band Ghost.", "website": "https://en.wikipedia.org/wiki/Ghost_(Swedish_band)", "subreddit": "/r/GhostBC", "center": [1308.5, 60.5], "path": [[1300.5, 49.5], [1318.5, 49.5], [1316.5, 72.5], [1299.5, 72.5], [1299.5, 71.5], [1299.5, 49.5]]}, -{"id": "000141", "submitted_by": "linwji", "name": "Factorio (video game)", "description": "One of the most popular factory simulation games. This artwork includes seven types of science and fish on the belt along with the three types circuits produced in the game.", "website": "https://factorio.com", "subreddit": "/r/factorio", "center": [291.5, 557.5], "path": [[329.5, 568.5], [329.5, 547.5], [314.5, 547.5], [314.5, 543.5], [298.5, 543.5], [295.5, 548.5], [293.5, 549.5], [263.5, 549.5], [263.5, 547.5], [255.5, 547.5], [249.5, 553.5], [249.5, 563.5], [250.5, 565.5], [252.5, 567.5], [254.5, 568.5]]}, -{"id": "000142", "submitted_by": "JCx64", "name": "Giralda Tower", "description": "A Moorish & Christian tower from Seville, one of the most iconic monuments from Spain.", "website": "https://en.wikipedia.org/wiki/Giralda", "subreddit": "/r/Spain", "center": [1335.5, 300.5], "path": [[1335.5, 287.5], [1335.5, 289.5], [1336.5, 289.5], [1336.5, 296.5], [1338.5, 296.5], [1338.5, 295.5], [1338.5, 304.5], [1339.5, 304.5], [1339.5, 307.5], [1332.5, 307.5], [1332.5, 295.5], [1332.5, 296.5], [1333.5, 296.5], [1334.5, 296.5], [1334.5, 289.5], [1335.5, 289.5], [1335.5, 287.5]]}, -{"id": "000143", "submitted_by": "morganisboring", "name": "Taylor Swift tribute", "description": "A tribute to singer-songerwriter Taylor Swift. The 13 represents her lucky number, which is particularly referenced in the art she creates. Her initials are below, and the whole is surrounded by a border of colours representing her 9 studio albums (as of r/place 2). A special thank you to our alliances with Lego, WEiTI, Shovel Knight, and FNAF.", "website": "https://taylorswift.com", "subreddit": "/r/TaylorSwift", "center": [650.5, 307.5], "path": [[638.5, 294.5], [659.5, 294.5], [660.5, 295.5], [663.5, 295.5], [663.5, 320.5], [638.5, 320.5], [638.5, 294.5]]}, -{"id": "000144", "submitted_by": "greese1", "name": "Fish Cult tank 2", "description": "a team of people dedicated to making fish on r/place", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1435.5, 920.5], "path": [[1431.5, 935.5], [1429.5, 935.5], [1429.5, 934.5], [1428.5, 934.5], [1427.5, 933.5], [1426.5, 932.5], [1426.5, 931.5], [1426.5, 931.5], [1425.5, 931.5], [1425.5, 930.5], [1423.5, 930.5], [1421.5, 930.5], [1421.5, 907.5], [1421.5, 906.5], [1450.5, 906.5], [1449.5, 930.5], [1446.5, 930.5], [1446.5, 931.5], [1445.5, 932.5], [1445.5, 931.5], [1444.5, 933.5], [1443.5, 934.5], [1442.5, 934.5], [1442.5, 935.5]]}, -{"id": "000145", "submitted_by": "greese1", "name": "Fish Cult tank", "description": "A team of people dedicated to making fish on r/place.", "website": "", "subreddit": "/r/PlaceFishCult, /r/place_CentralAlliance", "center": [473.5, 898.5], "path": [[448.5, 890.5], [448.5, 914.5], [453.5, 914.5], [453.5, 906.5], [454.5, 906.5], [454.5, 905.5], [499.5, 905.5], [499.5, 904.5], [500.5, 904.5], [500.5, 890.5], [448.5, 890.5]]}, -{"id": "000146", "submitted_by": "sciencecw2020", "name": "Free Hong Kong", "description": "A white Bauhinia flower over black background and a yellow umbrella symbolize Hong Kong's continuing struggle for democracy, first prominantly featured in 2014 Umbrella revolution, and later in 2019 Anti-Extradition Protest", "website": "", "subreddit": "/r/HongKong", "center": [634.5, 674.5], "path": [[600.5, 650.5], [600.5, 698.5], [668.5, 699.5], [668.5, 650.5]]}, -{"id": "000147", "submitted_by": "morganisboring", "name": "Lover - Taylor Swift Album", "description": "The Lover logo inspired by Taylor Swift's 2019 studio album. Special thanks to our allies r/TenseiSlime, r/madeon, and r/YTTD.", "website": "https://en.wikipedia.org/wiki/Lover_(album)", "subreddit": "/r/TaylorSwift", "center": [1824.5, 106.5], "path": [[1809.5, 98.5], [1837.5, 98.5], [1837.5, 129.5], [1832.5, 129.5], [1835.5, 126.5], [1835.5, 124.5], [1836.5, 123.5], [1836.5, 116.5], [1830.5, 110.5], [1829.5, 110.5], [1828.5, 109.5], [1820.5, 109.5], [1819.5, 110.5], [1817.5, 110.5], [1815.5, 112.5], [1814.5, 112.5], [1810.5, 116.5], [1810.5, 117.5], [1809.5, 117.5], [1809.5, 98.5]]}, -{"id": "000150", "submitted_by": "ljcool2006", "name": "Hawaii: Part II", "description": "An album by Miracle Musical, a music project made by members of Tally Hall", "website": "https://www.hawaiipartii.com/", "subreddit": "/r/tallyhall", "center": [1507.5, 191.5], "path": [[1495.5, 180.5], [1518.5, 180.5], [1518.5, 201.5], [1495.5, 201.5]]}, -{"id": "000152", "submitted_by": "Powaza", "name": "Chick (Powi)", "description": "The Chick from the MEA (Middle Eastern Alliance). Idea from 'Powi Club's Discord server and other helpers.", "website": "https://discord.gg/EyNsdbU", "subreddit": "/r/PowiTeam", "center": [1777.5, 949.5], "path": [[1784.5, 940.5], [1773.5, 940.5], [1773.5, 946.5], [1768.5, 947.5], [1768.5, 957.5], [1784.5, 957.5], [1784.5, 952.5]]}, -{"id": "000153", "submitted_by": "horsewhips", "name": "The Ohio State University", "description": "The Ohio State University (OSU) is located in Columbus, Ohio, USA. OSU's school colors are scarlet and gray which can be seen around their famous Block O - located towards the bottom left of the artwork. The Block 'O' together with the Buckeye nut is the logo for The Ohio State University. OSU (not to be confused with the rhythm game 'osu!') is famous for it's rivalry with the University of Michigan with the 15-2 representing the current streak of 15 wins against UofM's 2. The Ohio flag is on the top right, representing the state of Ohio, USA. The bottom right has the famous 'Script Ohio' - a long-time Ohio State tradition from the school's Marching Band where members of the band will form the word 'Ohio' in script during football games. A second block 'O' is situated next to Purdue University & Rutgers University elsewhere on r/place.", "website": "https://www.osu.edu", "subreddit": "/r/osu", "center": [1347.5, 813.5], "path": [[1331.5, 795.5], [1331.5, 830.5], [1363.5, 831.5], [1363.5, 795.5], [1363.5, 795.5], [1363.5, 795.5]]}, -{"id": "000154", "name": "EVE Online", "description": "The logo for Eve Online, an economy-based space MMORPG.", "website": "https://eveonline.com", "subreddit": "/r/Eve", "center": [38.5, 44.5], "path": [[13.5, 34.5], [62.5, 34.5], [62.5, 53.5], [13.5, 53.5]]}, -{"id": "000155", "name": "o7", "description": "An emoticon depicting a person saluting.", "website": "", "subreddit": "", "center": [7.5, 46.5], "path": [[12.5, 35.5], [12.5, 53.5], [0.5, 53.5], [0.5, 46.5], [12.5, 35.5]]}, -{"id": "000156", "name": "SS13 clown", "description": "The clown, a playable character in the game Space Station 13.", "website": "https://spacestation13.com", "subreddit": "/r/SS13", "center": [70.5, 103.5], "path": [[61.5, 91.5], [79.5, 91.5], [79.5, 116.5], [68.5, 116.5], [68.5, 111.5], [61.5, 111.5]]}, -{"id": "000157", "name": "Dota 2", "description": "The logo for Dota 2, a MOBA developed by Valve.", "website": "https://dota2.com", "subreddit": "/r/DotA2", "center": [14.5, 160.5], "path": [[0.5, 143.5], [27.5, 143.5], [27.5, 177.5], [0.5, 177.5]]}, -{"id": "000158", "name": "Flag of Egypt", "description": "", "website": "", "subreddit": "/r/egypt", "center": [64.5, 155.5], "path": [[27.5, 137.5], [27.5, 169.5], [108.5, 169.5], [108.5, 147.5], [72.5, 147.5], [72.5, 137.5], [27.5, 137.5], [27.5, 139.5]]}, -{"id": "000159", "name": "Pyramids of Giza", "description": "", "website": "", "subreddit": "", "center": [66.5, 157.5], "path": [[52.5, 160.5], [80.5, 160.5], [74.5, 154.5], [72.5, 155.5], [68.5, 152.5], [66.5, 154.5], [62.5, 150.5]]}, -{"id": "000160", "name": "Homestuck", "description": "A webcomic by Andrew Hussie that ran from 2009 to 2016.", "website": "https://homestuck.com", "subreddit": "/r/homestuck", "center": [248.5, 145.5], "path": [[221.5, 126.5], [266.5, 126.5], [275.5, 135.5], [275.5, 164.5], [221.5, 164.5]]}, -{"id": "000161", "name": "Hiveswap", "description": "An adventure game set in the same multiverse as Homestuck.", "website": "https://hiveswap.com", "subreddit": "/r/homestuck", "center": [262.5, 168.5], "path": [[247.5, 165.5], [247.5, 171.5], [276.5, 171.5], [276.5, 165.5]]}, -{"id": "000163", "name": "Flag of South Korea", "description": "", "website": "", "subreddit": "", "center": [306.5, 165.5], "path": [[295.5, 158.5], [316.5, 158.5], [316.5, 172.5], [295.5, 172.5]]}, -{"id": "000164", "name": "Flag of Japan", "description": "", "website": "", "subreddit": "", "center": [327.5, 165.5], "path": [[316.5, 158.5], [337.5, 158.5], [337.5, 172.5], [316.5, 172.5]]}, -{"id": "000166", "name": "Nepeta Leijon", "description": "A character from Homestuck.", "website": "https://mspaintadventures.fandom.com/wiki/Nepeta_Leijon", "subreddit": "/r/homestuck", "center": [180.5, 153.5], "path": [[171.5, 141.5], [188.5, 141.5], [188.5, 165.5], [171.5, 165.5]]}, -{"id": "000167", "name": "Flag of the Faroe Islands", "description": "", "website": "https://en.wikipedia.org/wiki/Faroe_Islands", "subreddit": "/r/place_nordicunion, /r/FaroeIslands", "center": [437.5, 120.5], "path": [[412.5, 103.5], [461.5, 103.5], [461.5, 136.5], [412.5, 136.5]]}, -{"id": "000168", "name": "Flag of Norway", "description": "", "website": "https://en.wikipedia.org/wiki/Norway", "subreddit": "/r/place_nordicunion, /r/Norge", "center": [352.5, 72.5], "path": [[493.5, 36.5], [215.5, 36.5], [215.5, 95.5], [231.5, 95.5], [231.5, 100.5], [259.5, 100.5], [259.5, 124.5], [268.5, 125.5], [334.5, 124.5], [334.5, 78.5], [400.5, 78.5], [400.5, 124.5], [412.5, 124.5], [412.5, 103.5], [461.5, 103.5], [461.5, 119.5], [475.5, 119.5], [475.5, 103.5], [495.5, 102.5], [494.5, 79.5]]}, -{"id": "000169", "name": "The Scream", "description": "A painting by Norwegian artist Edvard Munch.", "website": "https://en.wikipedia.org/wiki/The_Scream", "subreddit": "/r/place_nordicunion, /r/Norge", "center": [277.5, 65.5], "path": [[248.5, 41.5], [249.5, 39.5], [269.5, 41.5], [275.5, 39.5], [283.5, 39.5], [286.5, 37.5], [289.5, 37.5], [292.5, 39.5], [294.5, 37.5], [310.5, 37.5], [311.5, 38.5], [305.5, 43.5], [304.5, 46.5], [301.5, 50.5], [301.5, 54.5], [301.5, 58.5], [300.5, 60.5], [298.5, 62.5], [299.5, 66.5], [302.5, 70.5], [305.5, 70.5], [307.5, 74.5], [309.5, 75.5], [309.5, 79.5], [310.5, 80.5], [309.5, 82.5], [308.5, 82.5], [306.5, 83.5], [300.5, 91.5], [255.5, 91.5], [253.5, 87.5], [251.5, 91.5], [245.5, 91.5], [245.5, 87.5], [247.5, 87.5], [247.5, 83.5], [247.5, 74.5], [246.5, 72.5], [247.5, 67.5], [251.5, 61.5], [253.5, 56.5], [253.5, 53.5], [250.5, 47.5], [248.5, 44.5], [248.5, 40.5]]}, -{"id": "000171", "name": "Gnome child", "description": "An NPC from the MMORPG RuneScape who became a meme for its weird, philosophical quotes.", "website": "https://knowyourmeme.com/memes/gnome-child", "subreddit": "/r/dankmemes, /r/2007scape", "center": [152.5, 63.5], "path": [[146.5, 34.5], [137.5, 57.5], [146.5, 71.5], [135.5, 83.5], [138.5, 86.5], [144.5, 82.5], [168.5, 84.5], [168.5, 77.5], [161.5, 71.5], [164.5, 65.5], [164.5, 54.5], [155.5, 43.5], [151.5, 43.5], [150.5, 34.5]]}, -{"id": "000172", "name": "Big Floppa", "description": "The one and only.", "website": "", "subreddit": "/r/bigfloppa", "center": [1937.5, 465.5], "path": [[1954.5, 491.5], [1918.5, 490.5], [1925.5, 465.5], [1924.5, 448.5], [1923.5, 436.5], [1928.5, 440.5], [1934.5, 436.5], [1939.5, 435.5], [1947.5, 440.5], [1954.5, 434.5], [1954.5, 442.5], [1950.5, 450.5], [1951.5, 465.5]]}, -{"id":"000173","name":"Hytale","description":"Hytale is an upcoming sandbox game by Hypixel Studios. Production began in 2015 by developers from the Minecraft multiplayer server Hypixel with funding and assistance from Riot Games, who later acquired the studio in 2020.","website":"https://hytale.com/","subreddit":"/r/hytaleinfo","center":[342.5,629.5],"path":[[361.5,613.5],[323.5,613.5],[323.5,645.5],[361.5,645.5]]}, -{"id": "000174", "name": "Truttle1", "description": "An animated Youtube channel dedicated to showcasing esoteric programming languages, old game engines, and other miscellaneous cartoons.", "website": "http://truttle1.xyz/", "subreddit": "/r/Truttle1", "center": [1854.5, 496.5], "path": [[1849.5, 495.5], [1849.5, 497.5], [1852.5, 497.5], [1854.5, 499.5], [1856.5, 497.5], [1858.5, 499.5], [1859.5, 498.5], [1859.5, 497.5], [1858.5, 495.5], [1857.5, 495.5], [1856.5, 494.5], [1855.5, 494.5], [1853.5, 496.5], [1853.5, 496.5], [1851.5, 495.5], [1851.5, 494.5], [1852.5, 494.5], [1851.5, 493.5], [1851.5, 492.5], [1850.5, 492.5], [1850.5, 493.5], [1849.5, 494.5], [1850.5, 495.5]]}, -{"id": "000175", "name": "Indomie Logo", "description": "Logo of an instant noodle brand from Indonesia.", "website": "https://www.indomie.com/", "subreddit": "/r/indonesia", "center": [900.5, 1714.5], "path": [[873.5, 1703.5], [929.5, 1703.5], [929.5, 1724.5], [888.5, 1724.5], [888.5, 1728.5], [873.5, 1728.5], [873.5, 1703.5]]}, -{"id": "000178", "name": "TUM Logo", "description": "Logo of the Technical University of Munich", "website": "https://tum.de", "subreddit": "/r/tumunich", "center": [1250.5, 1184.5], "path": [[1239.5, 1178.5], [1260.5, 1178.5], [1260.5, 1189.5], [1239.5, 1189.5], [1239.5, 1178.5]]}, -{"id": "000179", "name": "SiIvaGunner", "description": "SiIvaGunner is a collaborative YouTube channel uploading remixes, jokes and memes masquerading as video game music uploads.\nOnly the highest quality video game rips around!", "website": "https://www.youtube.com/c/SiIvaGunner", "subreddit": "/r/giivasunner", "center": [77.5, 962.5], "path": [[62.5, 942.5], [62.5, 982.5], [92.5, 982.5], [92.5, 942.5]]}, -{"id": "000180", "name": "TeosGame", "description": "Mural made by the TeosGame community.", "website": "https://www.youtube.com/teosgame", "subreddit": "/r/TeosGame", "center": [1121.5, 998.5], "path": [[1083.5, 962.5], [1083.5, 1038.5], [1116.5, 1038.5], [1116.5, 1003.5], [1118.5, 1001.5], [1127.5, 1001.5], [1129.5, 1003.5], [1129.5, 1038.5], [1160.5, 1038.5], [1160.5, 962.5]]}, -{"id": "000181", "name": "Rhythm Doctor - Otto", "description": "The auto-play robot Otto, from the rhythm game Rhythm Doctor. RDL is the acronym for the community discord, Rhythm Doctor Lounge", "website": "https://rhythmdr.com/", "subreddit": "", "center": [77.5, 710.5], "path": [[72.5, 704.5], [82.5, 704.5], [82.5, 715.5], [72.5, 715.5]]}, -{"id": "000182", "name": "Hello Internet", "description": "A podcast by CGP Grey and Dr. Brady Haran.", "website": "https://www.hellointernet.fm/", "subreddit": "/r/HelloInternet", "center": [69.5, 805.5], "path": [[48.5, 777.5], [48.5, 787.5], [58.5, 787.5], [58.5, 798.5], [48.5, 798.5], [48.5, 830.5], [94.5, 830.5], [94.5, 820.5], [89.5, 820.5], [89.5, 801.5], [80.5, 801.5], [80.5, 792.5], [89.5, 792.5], [89.5, 777.5]]}, -{"id": "000183", "name": "Coldplay", "description": "The \"Viva\" sign from the album Viva la Vida. 4 album covers of A Rush Of Blood To The Head, X&Y, Mylo Xyloto and Parachutes, and the A Head Full Of Dreams colour spectrum.", "website": "", "subreddit": "/r/coldplay", "center": [1722.5, 43.5], "path": [[1695.5, 35.5], [1745.5, 35.5], [1745.5, 45.5], [1744.5, 45.5], [1744.5, 52.5], [1717.5, 52.5], [1717.5, 47.5], [1695.5, 47.5], [1695.5, 35.5]]}, -{"id": "000184", "name": "Hololive logo", "description": "Hololive is a VTuber agency from Japan. The agency has a Japanese, English, and Indonesian branch.", "website": "https://www.hololive.tv/", "subreddit": "/r/Hololive", "center": [239.5, 745.5], "path": [[201.5, 722.5], [201.5, 771.5], [239.5, 752.5], [301.5, 752.5], [301.5, 737.5], [240.5, 738.5], [204.5, 720.5]]}, -{"id": "000185", "name": "Nijisanji Logo", "description": "Nijisanji is a VTuber agency from Japan with over 200 streamers in the agency.", "website": "https://www.nijisanji.jp/", "subreddit": "/r/Nijisanji", "center": [183.5, 736.5], "path": [[184.5, 720.5], [192.5, 723.5], [197.5, 729.5], [198.5, 735.5], [195.5, 736.5], [194.5, 744.5], [189.5, 749.5], [184.5, 751.5], [177.5, 750.5], [174.5, 748.5], [171.5, 749.5], [170.5, 751.5], [168.5, 751.5], [168.5, 749.5], [169.5, 747.5], [170.5, 746.5], [170.5, 744.5], [169.5, 742.5], [168.5, 739.5], [168.5, 736.5], [169.5, 733.5], [171.5, 730.5], [173.5, 727.5], [180.5, 724.5], [182.5, 724.5], [183.5, 720.5]]}, -{"id": "000188", "name": "VShojo Logo", "description": "VShojo is a US-based VTuber organization based in San Francisco.\n\nUnlike Japan-based VTuber organizations, VShojo primarily uses Twitch for livestreaming, with YouTube reserved primarily for highlight clips and edited content.", "website": "https://www.vshojo.com/", "subreddit": "/r/VShojo", "center": [173.5, 757.5], "path": [[170.5, 750.5], [165.5, 755.5], [165.5, 759.5], [167.5, 764.5], [170.5, 765.5], [177.5, 764.5], [180.5, 764.5], [182.5, 759.5], [182.5, 756.5], [181.5, 753.5], [175.5, 749.5]]}, -{"id": "000189", "name": "Shuba Duck", "description": "Shuba/Dancing Duck Oozora Subaru, also known as Subaru Duck, refers to an animation of a duck in a backwards baseball cap dancing alongside virtual Hololive influencer Oozora Subaru. The duck is a representation of Subaru, who is often likened to a duck for her raspy ASMR voice, among other reasons. The duck took on the nickname \"Shuba Duck\" or \"Shubaduck\" based on Subaru's habit of regularly saying \"shuba\" when excited.", "website": "https://knowyourmeme.com/memes/shuba-duck-dancing-duck-oozora-subaru", "subreddit": "/r/oozorasubaru, /r/Hololive", "center": [242.5, 799.5], "path": [[238.5, 782.5], [235.5, 787.5], [235.5, 790.5], [233.5, 791.5], [238.5, 793.5], [237.5, 796.5], [232.5, 801.5], [232.5, 805.5], [238.5, 809.5], [235.5, 813.5], [246.5, 813.5], [246.5, 810.5], [252.5, 806.5], [253.5, 802.5], [250.5, 798.5], [248.5, 797.5], [246.5, 799.5], [243.5, 797.5], [243.5, 792.5], [247.5, 790.5], [247.5, 789.5], [245.5, 787.5], [244.5, 782.5]]}, -{"id": "000190", "name": "Udin", "description": "Udin is the mascot of Kureiji Ollie, a VTuber from Hololive Indonesia.", "website": "https://www.youtube.com/channel/UCYz_5n-uDuChHtLo7My1HnQ", "subreddit": "/r/Hololive", "center": [290.5, 763.5], "path": [[279.5, 753.5], [279.5, 773.5], [300.5, 773.5], [300.5, 753.5]]}, -{"id": "000191", "name": "PEKO!!!", "description": "\"Peko\" is the catchphrase used by Usada Pekora, a VTuber from Hololive 3rd Gen. Japan branch.", "website": "https://www.youtube.com/channel/UC1DCedRgGHBdm81E1llLhOQ", "subreddit": "/r/pekora, /r/Hololive", "center": [228.5, 793.5], "path": [[225.5, 781.5], [225.5, 804.5], [231.5, 804.5], [231.5, 781.5]]}, -{"id": "000192", "name": "Mini YAGOO", "description": "Motoaki Tanigo is the CEO of COVER Corporation, the company behind Hololive Production. His nickname is \"YAGOO\", which originated from a misreading of his name \"Tanigo\" as \"YAGOO\" by Oozora Subaru, one of Hololive's talents.\n\nMini YAGOO is a figure that has been a running gag as his profile pictures mostly used his portrait without his body, so limbs were drawn for him during one stream.", "website": "https://twitter.com/tanigox", "subreddit": "/r/oozorasubaru, /r/Hololive", "center": [240.5, 821.5], "path": [[234.5, 813.5], [230.5, 813.5], [230.5, 828.5], [249.5, 828.5], [249.5, 813.5]]}, -{"id": "000193", "name": "Haaton", "description": "Akai Haato is a VTuber from Hololive's 1st Generation from Japan. She also has a nickname \"Haachama\". Her fanbase is officially called \"Haaton\" (はあとん), which is a combination of \"Haato\" and \"ton\" 豚 (pig). They are represented by a yellow plush pig that also works as her mascot.", "website": "https://www.youtube.com/channel/UC1CfXB_kRs3C-zaeTG3oGyg", "subreddit": "/r/Hololive", "center": [1362.5, 898.5], "path": [[1354.5, 894.5], [1370.5, 894.5], [1370.5, 901.5], [1354.5, 901.5]]}, -{"id": "000196", "name": "Oaklands", "description": "A pixel art version of the game Oaklands on Roblox, made by Typical Developers.", "website": "https://twitter.com/TypicalDevelops", "subreddit": "/r/Oaklands", "center": [19.5, 1118.5], "path": [[0.5, 1114.5], [40.5, 1115.5], [40.5, 1121.5], [0.5, 1121.5]]}, -{"id": "000199", "name": "McMaster University Crest", "description": "The school crest of McMaster University, located in Hamilton, Ontario, Canada.", "website": "https://www.mcmaster.ca/", "subreddit": "/r/McMaster", "center": [1255.5, 45.5], "path": [[1261.5, 36.5], [1263.5, 36.5], [1263.5, 51.5], [1255.5, 58.5], [1247.5, 51.5], [1247.5, 36.5]]}, -{"id": "000200", "name": "ImmutableX", "description": "ImmutableX is a Layer 2 scaling solution for NFTs built on Ethereum.", "website": "https://www.immutable.com/", "subreddit": "", "center": [873.5, 876.5], "path": [[841.5, 856.5], [905.5, 856.5], [905.5, 896.5], [841.5, 896.5]]}, -{"id": "000201", "name": "Loopring", "description": "Loopring is a zero-knowledge exchange and payment protocol built on Ethereum.", "website": "https://loopring.org/", "subreddit": "", "center": [807.5, 876.5], "path": [[775.5, 856.5], [775.5, 896.5], [839.5, 896.5], [840.5, 857.5], [775.5, 856.5]]}, -{"id": "000202", "name": "Flag of Morocco", "description": "The flag of Morocco, consisting of a green pentagram over a red background", "website": "", "subreddit": "/r/morocco", "center": [1661.5, 815.5], "path": [[1624.5, 798.5], [1624.5, 831.5], [1698.5, 832.5], [1698.5, 799.5], [1624.5, 798.5]]}, -{"id": "000203", "name": "Paimon", "description": "The character Paimon from Genshin Impact. Genshin Impact is an action role-playing game developed by Chinese developer miHoYo and first published in 2020. The game features an anime-style open-world environment and an action-based battle system using elemental magic and character-switching.", "website": "https://genshin.hoyoverse.com/", "subreddit": "/r/Genshin_Impact, /r/GenshinPlace", "center": [1750.5, 1786.5], "path": [[1736.5, 1773.5], [1736.5, 1761.5], [1772.5, 1761.5], [1772.5, 1809.5], [1723.5, 1809.5], [1723.5, 1803.5], [1727.5, 1803.5], [1727.5, 1802.5], [1728.5, 1802.5], [1728.5, 1801.5], [1729.5, 1801.5], [1729.5, 1800.5], [1730.5, 1800.5], [1730.5, 1798.5], [1731.5, 1798.5], [1731.5, 1792.5], [1730.5, 1792.5], [1730.5, 1791.5], [1729.5, 1791.5], [1729.5, 1790.5], [1728.5, 1790.5], [1728.5, 1789.5], [1727.5, 1789.5], [1727.5, 1788.5], [1723.5, 1788.5], [1723.5, 1773.5], [1736.5, 1773.5]]}, -{"id": "000204", "name": "The Sun", "description": "The Sun is the name of the lightbulb held by Niko in the indie video game OneShot. Breaking the sun will end the world (which actually happened on r/place).", "website": "https://www.oneshot-game.com", "subreddit": "/r/OneShot", "center": [1681.5, 555.5], "path": [[1668.5, 564.5], [1671.5, 561.5], [1669.5, 558.5], [1669.5, 552.5], [1672.5, 547.5], [1678.5, 543.5], [1684.5, 543.5], [1690.5, 547.5], [1693.5, 552.5], [1693.5, 558.5], [1690.5, 563.5], [1684.5, 567.5], [1678.5, 567.5], [1674.5, 565.5], [1672.5, 568.5], [1670.5, 567.5]]}, -{"id": "000205", "name": "Divergence Meter", "description": "A recreation of the Divergence Meter from the popular anime & visual novel Steins;Gate. The meter reads the \"Steins Gate\" Wordline of 1.048596.", "website": "", "subreddit": "/r/steinsgate", "center": [1204.5, 29.5], "path": [[1182.5, 34.5], [1226.5, 34.5], [1226.5, 23.5], [1182.5, 23.5], [1182.5, 34.5]]}, -{"id": "000206", "name": "forsenE", "description": "The face of Twitch. An emote by the popular streamer of the decade forsen (aka. Sebastian Forsen Fors).", "website": "https://twitch.tv/forsen", "subreddit": "/r/forsen", "center": [727.5, 925.5], "path": [[706.5, 906.5], [748.5, 906.5], [748.5, 943.5], [706.5, 943.5], [706.5, 906.5]]}, -{"id": "000207", "name": "Interlingue", "description": "Flag of Interlingue, an IAL to communicate between Western European languages.", "website": "https://occidental-lang.com", "subreddit": "/r/interlingue", "center": [768.5, 328.5], "path": [[765.5, 326.5], [770.5, 326.5], [770.5, 329.5], [765.5, 329.5]]}, -{"id": "000208", "name": "Viossa", "description": "Flag of the conpidgin Viossa.", "website": "", "subreddit": "/r/viossa", "center": [775.5, 296.5], "path": [[769.5, 290.5], [780.5, 290.5], [780.5, 301.5], [769.5, 301.5]]}, -{"id": "000209", "name": "Lojban", "description": "Flag of Lojban", "website": "https://lojban.org", "subreddit": "/r/lojban", "center": [760.5, 328.5], "path": [[763.5, 326.5], [757.5, 326.5], [757.5, 330.5], [763.5, 330.5]]}, -{"id": "000210", "name": "DMU", "description": "De Montfort University", "website": "", "subreddit": "", "center": [919.5, 1425.5], "path": [[909.5, 1420.5], [929.5, 1420.5], [929.5, 1430.5], [909.5, 1430.5], [909.5, 1420.5]]}, -{"id": "000211", "name": "The University of Texas at Austin", "description": "The \"Hook 'em Horns\" hand sign and signature Longhorn logo of the University of Texas at Austin. Hook 'em!\n\nThe UT Austin tower used to be located next to this art.", "website": "https://utexas.edu", "subreddit": "/r/UTAustin, /r/place_CentralAlliance", "center": [586.5, 961.5], "path": [[581.5, 948.5], [581.5, 974.5], [592.5, 973.5], [592.5, 948.5], [581.5, 948.5], [581.5, 948.5]]}, -{"id": "000212", "name": "The Vineshroom", "description": "The mascot of the Vinesauce Twitch channel.", "website": "https://twitch.tv/Vinesauce", "subreddit": "/r/Vinesauce", "center": [76.5, 675.5], "path": [[73.5, 676.5], [73.5, 683.5], [74.5, 684.5], [78.5, 684.5], [79.5, 683.5], [79.5, 676.5], [81.5, 676.5], [82.5, 675.5], [82.5, 672.5], [81.5, 671.5], [81.5, 670.5], [80.5, 669.5], [79.5, 668.5], [73.5, 668.5], [72.5, 669.5], [71.5, 670.5], [71.5, 671.5], [70.5, 672.5], [70.5, 676.5], [73.5, 676.5]]}, -{"id": "000213", "submitted_by": "L33Tech", "name": "SMP Online", "description": "The SMP (survival multiplayer) Online Minecraft server community!", "website": "https://callmecarson.live", "subreddit": "/r/CallMeCarson", "center": [516.5, 1686.5], "path": [[499.5, 1673.5], [499.5, 1673.5], [537.5, 1673.5], [536.5, 1685.5], [530.5, 1685.5], [530.5, 1699.5], [500.5, 1700.5], [500.5, 1688.5], [499.5, 1688.5], [499.5, 1680.5]]}, -{"id": "000214", "name": "Loky Ronin", "description": "a piece of art drawn by Videoyun Community", "website": "https://twitch.tv/videoyun", "subreddit": "/r/videoyun", "center": [772.5, 1421.5], "path": [[735.5, 1403.5], [735.5, 1439.5], [809.5, 1439.5], [809.5, 1403.5]]}, -{"id": "000215", "submitted_by": "L33Tech", "name": "Windows XP taskbar", "description": "A Start menu for r/place, styled after Windows XP.", "website": "https://en.wikipedia.org/wiki/Windows_XP", "subreddit": "/r/PlaceStart", "center": [761.5, 1984.5], "path": [[0.5, 1969.5], [0.5, 1999.5], [1522.5, 1999.5], [1522.5, 1969.5], [0.5, 1969.5]]}, -{"id": "000216", "submitted_by": "L33Tech", "name": "r/TheBlueCorner", "description": "Exactly what it sounds like. One of the founding factions from the original Place.", "website": "", "subreddit": "/r/TheBlueCorner", "center": [1962.5, 1934.5], "path": [[1924.5, 1868.5], [1999.5, 1868.5], [1999.5, 1999.5], [1924.5, 1999.5]]}, -{"id": "000217", "name": "The Rust programming language", "description": "This little square belongs to the community of the Rust programming language", "website": "https://rust-lang.org", "subreddit": "/r/rust", "center": [735.5, 622.5], "path": [[722.5, 608.5], [722.5, 635.5], [748.5, 635.5], [748.5, 608.5]]}, -{"id": "000218", "name": "Realm of the Mad God (Partially Covered)", "description": "Realm of The Mad God is a permadeath MMORPG developed by Deca Games. The image showed all eighteen of the playable classes in the game, only 10 are still visible. A White Bag (Rarest loot container) is also still visible. A Ring of Greater Speed was added on top of one of the classes in the final moments of r/place. The head of Oryx the Mad God (An endgame boss) and Craig the Intern (A friendly NPC) are completely covered. Archbishop Leucoryx (Another endgame boss) is partially covered and was pictured holding the German autobahn sign, it was made in collaboration with r/placeDE.", "website": "https://www.realmofthemadgod.com/", "subreddit": "/r/rotmg", "center": [510.5, 877.5], "path": [[470.5, 866.5], [470.5, 890.5], [562.5, 890.5], [562.5, 885.5], [536.5, 885.5], [536.5, 871.5], [549.5, 871.5], [549.5, 868.5], [550.5, 868.5], [550.5, 865.5], [549.5, 865.5], [549.5, 864.5], [548.5, 864.5], [548.5, 862.5], [547.5, 862.5], [548.5, 862.5], [548.5, 856.5], [545.5, 856.5], [545.5, 857.5], [544.5, 857.5], [544.5, 856.5], [543.5, 856.5], [543.5, 855.5], [541.5, 855.5], [541.5, 856.5], [540.5, 856.5], [540.5, 857.5], [539.5, 857.5], [539.5, 856.5], [536.5, 856.5], [536.5, 862.5], [537.5, 862.5], [536.5, 862.5], [536.5, 864.5], [535.5, 864.5], [535.5, 866.5], [470.5, 866.5]]}, -{"id": "000219", "name": "Forgotten King and Shattered Queen", "description": "Endgame Bosses from the video game Realm of the Mad God. The Forgotten King on the left shown holding a tri-force to symbolize the alliance between r/Zelda and r/RoTMG, while the Shattered Queen is shown on the right. In the bottom right corner is the iconic level 20 grave representing the permadeath nature of the game.", "website": "", "subreddit": "/r/Rotmg", "center": [1346.5, 1888.5], "path": [[1326.5, 1876.5], [1326.5, 1900.5], [1366.5, 1900.5], [1366.5, 1876.5], [1326.5, 1876.5]]}, -{"id": "000220", "name": "The Shotbow Network", "description": "The original Minecraft server network! Home to old classics like MineZ, Annihilation and Smash!", "website": "https://shotbow.net/", "subreddit": "/r/Shotbow", "center": [1009.5, 478.5], "path": [[999.5, 495.5], [1008.5, 495.5], [1008.5, 492.5], [1010.5, 492.5], [1010.5, 488.5], [1012.5, 487.5], [1014.5, 486.5], [1020.5, 486.5], [1020.5, 465.5], [999.5, 465.5]]}, -{"id": "000221", "name": "MineZ", "description": "Shotbow's original Minecraft game mode! Based on the popular DayZ mod.", "website": "https://shotbow.net/", "subreddit": "/r/MineZ", "center": [1012.5, 460.5], "path": [[1004.5, 465.5], [1020.5, 465.5], [1020.5, 455.5], [1004.5, 455.5]]}, -{"id": "000222", "name": "Blasphemous", "description": "Blasphemous is a Spanish indie metroidvania created by TheGameKitchen and released in 2019.", "website": "https://store.steampowered.com/app/774361/Blasphemous/", "subreddit": "/r/Blasphemous", "center": [1192.5, 335.5], "path": [[1191.5, 320.5], [1184.5, 320.5], [1184.5, 323.5], [1183.5, 323.5], [1183.5, 324.5], [1182.5, 324.5], [1182.5, 345.5], [1204.5, 345.5], [1204.5, 333.5], [1199.5, 333.5], [1199.5, 331.5], [1200.5, 330.5], [1199.5, 329.5], [1196.5, 329.5], [1194.5, 327.5], [1195.5, 326.5], [1195.5, 325.5], [1191.5, 321.5], [1191.5, 320.5]]}, -{"id": "000223", "name": "Kaf", "description": "Kaf is a Japanese female virtual singer on YouTube. She is a performer signed to Kamitsubaki Studio.", "website": "https://discord.gg/NwCy89U", "subreddit": "/r/Kamitsubaki_Fans", "center": [1434.5, 1114.5], "path": [[1452.5, 1103.5], [1423.5, 1103.5], [1423.5, 1095.5], [1421.5, 1095.5], [1421.5, 1098.5], [1420.5, 1098.5], [1420.5, 1099.5], [1419.5, 1099.5], [1419.5, 1101.5], [1421.5, 1101.5], [1421.5, 1102.5], [1416.5, 1102.5], [1416.5, 1107.5], [1417.5, 1107.5], [1417.5, 1108.5], [1418.5, 1108.5], [1418.5, 1115.5], [1419.5, 1115.5], [1419.5, 1119.5], [1418.5, 1119.5], [1418.5, 1120.5], [1412.5, 1120.5], [1412.5, 1123.5], [1413.5, 1123.5], [1413.5, 1125.5], [1414.5, 1125.5], [1414.5, 1126.5], [1451.5, 1126.5], [1451.5, 1121.5], [1452.5, 1121.5]]}, -{"id": "000224", "name": "Big Ten East", "description": "The eastern claim of the Big Ten. Pioneered by Indiana, this claim also includes Northwestern, Michigan State, Minnesota, and PAC-12 member Stanford.", "website": "", "subreddit": "/r/TheB1G", "center": [1529.5, 764.5], "path": [[1508.5, 780.5], [1552.5, 780.5], [1552.5, 768.5], [1550.5, 768.5], [1550.5, 747.5], [1508.5, 747.5], [1508.5, 780.5]]}, -{"id": "000225", "name": "Shelly (Small)", "description": "Shelly is the player character in the indie platformer Will You Snail?", "website": "https://store.steampowered.com/app/1115050/Will_You_Snail/", "subreddit": "/r/WillYouSnail", "center": [853.5, 973.5], "path": [[849.5, 971.5], [849.5, 971.5], [850.5, 971.5], [851.5, 971.5], [851.5, 970.5], [857.5, 970.5], [857.5, 976.5], [849.5, 976.5], [849.5, 973.5]]}, -{"id": "000226", "name": "Hu Tao Poland", "description": "Poland from r/polandball dressed up as Hu Tao from Genshin Impact, our allies!", "website": "https://en.wikipedia.org/wiki/Countryballs", "subreddit": "/r/polandball, /r/GenshinPlace, /r/Genshin_Impact", "center": [1598.5, 1781.5], "path": [[1577.5, 1762.5], [1576.5, 1761.5], [1625.5, 1761.5], [1625.5, 1781.5], [1620.5, 1784.5], [1620.5, 1786.5], [1619.5, 1788.5], [1615.5, 1798.5], [1615.5, 1801.5], [1612.5, 1803.5], [1610.5, 1801.5], [1607.5, 1798.5], [1604.5, 1797.5], [1603.5, 1799.5], [1603.5, 1800.5], [1604.5, 1801.5], [1605.5, 1802.5], [1604.5, 1803.5], [1597.5, 1803.5], [1595.5, 1804.5], [1591.5, 1804.5], [1594.5, 1801.5], [1596.5, 1798.5], [1593.5, 1795.5], [1588.5, 1798.5], [1587.5, 1799.5], [1586.5, 1802.5], [1588.5, 1806.5], [1591.5, 1806.5], [1587.5, 1806.5], [1586.5, 1810.5], [1576.5, 1810.5], [1577.5, 1761.5], [1577.5, 1761.5]]}, -{"id": "000227", "name": "Tiny! Hu Tao Poland - Polandball", "description": "The tiny version of Poland from r/polandball dressed up as Hu Tao, with Boo Tao as well!", "website": "", "subreddit": "/r/polandball", "center": [1152.5, 78.5], "path": [[1133.5, 84.5], [1133.5, 84.5], [1136.5, 86.5], [1133.5, 78.5], [1131.5, 72.5], [1138.5, 66.5], [1144.5, 65.5], [1148.5, 69.5], [1151.5, 73.5], [1159.5, 67.5], [1165.5, 68.5], [1170.5, 73.5], [1171.5, 79.5], [1170.5, 82.5], [1173.5, 81.5], [1173.5, 86.5], [1171.5, 87.5], [1166.5, 88.5], [1162.5, 88.5], [1158.5, 87.5], [1136.5, 87.5], [1135.5, 86.5]]}, -{"id": "000229", "name": "Scott (Nelward)", "description": "Scott, the symbol for Atlanta-based independent music artist Nelward.", "website": "https://www.nelward.com", "subreddit": "/r/Nelward", "center": [7.5, 69.5], "path": [[1.5, 65.5], [12.5, 65.5], [12.5, 72.5], [1.5, 72.5]]}, -{"id": "000230", "submitted_by": "howardt12345", "name": "Taiwan's First Claim", "description": "r/Taiwan's first claims on r/Place, starting from the big ROC (Taiwan) flag. Other symbols on it by the end of r/place include the Taipei 101, Boba/Pearl Milk Tea, and the bear mascot for the city of Taipei, named Bravo.", "website": "https://en.wikipedia.org/wiki/Taiwan", "subreddit": "/r/Taiwan", "center": [938.5, 546.5], "path": [[978.5, 567.5], [910.5, 567.5], [910.5, 515.5], [958.5, 515.5], [959.5, 519.5], [934.5, 519.5], [934.5, 542.5], [978.5, 542.5], [978.5, 567.5]]}, -{"id": "000231", "submitted_by": "howardt12345", "name": "Taiwan Independence Flag", "description": "Flag of the World Taiwanese Congress, commonly used to represent the Taiwanese Independence movement, featuring Táiwān (台灣) written on it in traditional Chinese (simplified 弓 design). The \"Taiwan\" part of the \"r/Taiwan\" was converted to be \"Taiwan #1\", for the popular \"Taiwan number one\" saying.\n\n This flag was made during the first canvas expansion by /r/Taiwan, leading to an alliance with Ireland and strengthening the Czech alliance. The Chinese writing was added on the last day of r/place.\n\n This flag came under heavy attack by an agressive expansion of a nearly Turkish flag (led by streamers, not r/Turkey), which it resiliently defended against with the help of its allies.", "website": "https://en.wikipedia.org/wiki/Taiwan_independence_movement", "subreddit": "/r/Taiwan", "center": [1223.5, 148.5], "path": [[1197.5, 134.5], [1248.5, 134.5], [1248.5, 161.5], [1197.5, 161.5], [1197.5, 134.5]]}, -{"id": "000232", "name": "Taipei 101 attempt", "description": "r/Taiwan tried to make a 101 pixel high Taipei 101 at this location, in coordination with many other allies.", "website": "", "subreddit": "/r/Taiwan", "center": [1200.5, 1266.5], "path": [[1178.5, 1275.5], [1219.5, 1275.5], [1219.5, 1265.5], [1217.5, 1265.5], [1217.5, 1264.5], [1216.5, 1264.5], [1216.5, 1262.5], [1214.5, 1262.5], [1214.5, 1261.5], [1213.5, 1261.5], [1213.5, 1260.5], [1212.5, 1260.5], [1212.5, 1259.5], [1211.5, 1259.5], [1211.5, 1258.5], [1210.5, 1258.5], [1210.5, 1257.5], [1209.5, 1257.5], [1209.5, 1256.5], [1207.5, 1256.5], [1207.5, 1254.5], [1206.5, 1254.5], [1206.5, 1251.5], [1205.5, 1251.5], [1205.5, 1247.5], [1204.5, 1247.5], [1204.5, 1241.5], [1202.5, 1241.5], [1202.5, 1250.5], [1199.5, 1250.5], [1199.5, 1257.5], [1199.5, 1257.5], [1199.5, 1258.5], [1198.5, 1258.5], [1198.5, 1263.5], [1179.5, 1263.5], [1178.5, 1263.5], [1178.5, 1275.5]]}, -{"id": "000233", "name": "Super Smash Bros Melee", "description": "Super Smash Bros Melee, a fighting game community dedicated to their game, which they have not abandoned after 20 years and 3 sequels. They also never abandoned their main slippi.gg logo, which stood for effectively the whole duration of r/place. They also collaborated with place trees to construct Dream Land, one of the 6 legal stages in competitive Melee, featuring Whispy woods, and added Fox and Falco Stock icons.", "website": "https://slippi.gg", "subreddit": "/r/ssbm", "center": [789.5, 943.5], "path": [[776.5, 927.5], [775.5, 961.5], [781.5, 962.5], [781.5, 978.5], [800.5, 982.5], [817.5, 979.5], [818.5, 962.5], [824.5, 962.5], [823.5, 926.5], [800.5, 915.5], [777.5, 926.5], [771.5, 907.5], [750.5, 905.5], [749.5, 927.5], [748.5, 945.5], [776.5, 947.5]]}, -{"id": "000234", "name": "VRChat Logo", "description": "Logo of VRChat, the online virtual reality social platform. The platform allows users to interact with others with user-created 3D avatars and worlds.", "website": "https://vrchat.com/", "subreddit": "/r/vrchat", "center": [963.5, 97.5], "path": [[929.5, 88.5], [929.5, 105.5], [983.5, 105.5], [990.5, 113.5], [991.5, 113.5], [991.5, 105.5], [995.5, 105.5], [995.5, 88.5]]}, -{"id": "000235", "name": "UW Madison Motion W", "description": "The \"Motion W\", University of Wisconsin-Madison's athletics logo.", "website": "https://wisc.edu", "subreddit": "/r/UWMadison", "center": [112.5, 593.5], "path": [[100.5, 580.5], [124.5, 580.5], [124.5, 606.5], [100.5, 606.5]]}, -{"id": "000236", "name": "Bucky Badger", "description": "University of Wisconsin-Madison's mascot Bucky U Badger, in the middle of being consumed.", "website": "https://wisc.edu", "subreddit": "/r/UWMadison", "center": [280.5, 1565.5], "path": [[250.5, 1552.5], [300.5, 1552.5], [300.5, 1585.5], [280.5, 1585.5], [280.5, 1569.5], [250.5, 1567.5], [250.5, 1552.5]]}, -{"id": "000238", "name": "Shisheyu_Mayamoto's Logo", "description": "Shisheyu Mayamoto's Twitch channel's logo", "website": "https://www.twitch.tv/shisheyu_mayamoto", "subreddit": "", "center": [1915.5, 1568.5], "path": [[1909.5, 1562.5], [1909.5, 1573.5], [1921.5, 1573.5], [1921.5, 1562.5], [1909.5, 1562.5]]}, -{"id": "000239", "name": "Esperanto and Zamenhof", "description": "A proposed international language designed to be as simple to learn as possible. To the left is a green star (a symbol of esperanto) and to the right is Zamenhof (the creator of Esperanto) wearing sunglasses", "website": "https://esperanto.net/en/", "subreddit": "/r/Esperanto", "center": [1471.5, 494.5], "path": [[1433.5, 487.5], [1508.5, 487.5], [1508.5, 500.5], [1433.5, 500.5]]}, -{"id": "000240", "name": "VRChat Modding Group", "description": "Logo of the VRChat Modding Group, a community dedicated to creating and maintaining mods for the VR social platform VRChat.", "website": "https://discord.gg/vrcmg", "subreddit": "/r/PlaceStart", "center": [1296.5, 1985.5], "path": [[1303.5, 1975.5], [1290.5, 1975.5], [1290.5, 1994.5], [1291.5, 1994.5], [1291.5, 1996.5], [1294.5, 1996.5], [1294.5, 1995.5], [1294.5, 1996.5], [1297.5, 1996.5], [1297.5, 1995.5], [1297.5, 1996.5], [1300.5, 1996.5], [1300.5, 1994.5], [1303.5, 1994.5]]}, -{"id": "000241", "name": "Disco Elysium", "description": "Main characters of the game, Harrier \"Harry\" Du Bois and Kim Kitsuragi.", "website": "https://discoelysium.com/", "subreddit": "/r/DiscoElysium", "center": [1383.5, 1900.5], "path": [[1362.5, 1884.5], [1403.5, 1884.5], [1403.5, 1917.5], [1364.5, 1917.5]]}, -{"id": "000242", "submitted_by": "StrikerX3", "name": "Pokémon Mystery Dungeon: Rescue Team DX badge", "description": "A depiction of the rescue team badge in Pokémon Mystery Dungeon: Rescue Team DX. The background has the pattern of the Harmony Scarf from Pokémon Super Mystery Dungeon, and the picture also contains a Seed and an Orb, two usable items in the game.", "website": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_Mystery_Dungeon:_Rescue_Team_DX", "subreddit": "/r/MysteryDungeon", "center": [722.5, 791.5], "path": [[709.5, 778.5], [709.5, 803.5], [734.5, 803.5], [734.5, 778.5]]}, -{"id": "000243", "submitted_by": "StrikerX3", "name": "Time Gear", "description": "A depiction of a Time Gear from Pokémon Mystery Dungeon: Explorers of Time/Darkness/Sky. Time Gears are artifacts that regulate time and are key plot items in the games.", "website": "https://bulbapedia.bulbagarden.net/wiki/Time_Gear", "subreddit": "/r/MysteryDungeon", "center": [1090.5, 477.5], "path": [[1078.5, 465.5], [1078.5, 488.5], [1101.5, 488.5], [1101.5, 465.5]]}, -{"id": "000244", "submitted_by": "StrikerX3", "name": "Sleeping Shiny Celebi", "description": "A sleeping Shiny Celebi. The sprite was based on in-game art from the Pokémon Mystery Dungeon: Explorers of Time/Darkness/Sky games for the Nintendo DS, which feature Shiny Celebi as a supporting character.", "website": "https://bulbapedia.bulbagarden.net/wiki/Celebi_(Explorers_of_Time,_Darkness,_and_Sky)", "subreddit": "/r/MysteryDungeon", "center": [1325.5, 61.5], "path": [[1323.5, 50.5], [1321.5, 54.5], [1321.5, 61.5], [1318.5, 61.5], [1318.5, 63.5], [1320.5, 66.5], [1320.5, 68.5], [1326.5, 69.5], [1328.5, 68.5], [1328.5, 65.5], [1331.5, 63.5], [1331.5, 55.5], [1330.5, 54.5], [1327.5, 55.5], [1325.5, 54.5], [1325.5, 53.5]]}, -{"id": "000245", "submitted_by": "StrikerX3", "name": "V-Wheel", "description": "A depiction of Mythical Pokémon Victini and his V-Wheel from Pokémon Mystery Dungeon: Gates to Infinity. The art is a collaboration between r/MysteryDungeon and r/Victini.", "website": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_Paradise#V-Wheel", "subreddit": "/r/MysteryDungeon", "center": [1752.5, 1485.5], "path": [[1734.5, 1473.5], [1734.5, 1496.5], [1770.5, 1496.5], [1770.5, 1473.5]]}, -{"id": "000246", "name": "Green Greens", "description": "A collaboration between /r/PlaceTrees and the Super Smash Bros. Melee community. Based on the Smash 64 stage Dream Land, with Pikachu, Fox, Falco, and Kirby fighting.", "website": "https://www.ssbwiki.com/Dream_Land_(SSB)", "subreddit": "/r/PlaceTrees, /r/ssbm", "center": [762.5, 918.5], "path": [[753.5, 931.5], [771.5, 931.5], [774.5, 928.5], [774.5, 908.5], [772.5, 906.5], [753.5, 906.5], [750.5, 910.5], [750.5, 928.5]]}, -{"id": "000247", "name": "Veloren", "description": "Veloren is an open source multiplayer voxel RPG written in Rust.", "website": "https://veloren.net/", "subreddit": "/r/veloren", "center": [741.5, 642.5], "path": [[735.5, 636.5], [735.5, 647.5], [746.5, 647.5], [746.5, 636.5], [735.5, 636.5]]}, -{"id": "000249", "submitted_by": "ostensacken", "name": "Protea", "description": "Proteas are a species of plant mostly found in South Africa. The King Protea is the national flower of South Africa", "website": "", "subreddit": "/r/southafrica", "center": [771.5, 1054.5], "path": [[765.5, 1053.5], [764.5, 1051.5], [765.5, 1050.5], [767.5, 1050.5], [768.5, 1050.5], [767.5, 1049.5], [767.5, 1048.5], [768.5, 1048.5], [769.5, 1049.5], [770.5, 1048.5], [770.5, 1047.5], [771.5, 1046.5], [772.5, 1048.5], [773.5, 1048.5], [773.5, 1049.5], [774.5, 1048.5], [775.5, 1048.5], [775.5, 1047.5], [775.5, 1049.5], [774.5, 1050.5], [775.5, 1051.5], [776.5, 1050.5], [777.5, 1049.5], [778.5, 1048.5], [778.5, 1049.5], [778.5, 1051.5], [778.5, 1051.5], [777.5, 1052.5], [777.5, 1053.5], [777.5, 1054.5], [777.5, 1056.5], [776.5, 1057.5], [775.5, 1058.5], [775.5, 1060.5], [774.5, 1061.5], [773.5, 1060.5], [772.5, 1059.5], [771.5, 1061.5], [773.5, 1063.5], [772.5, 1064.5], [770.5, 1064.5], [770.5, 1063.5], [771.5, 1060.5], [769.5, 1060.5], [769.5, 1060.5], [768.5, 1061.5], [767.5, 1060.5], [767.5, 1058.5], [767.5, 1057.5], [766.5, 1057.5], [766.5, 1056.5], [766.5, 1055.5], [765.5, 1055.5]]}, -{"id": "000250", "submitted_by": "Glitchious404", "name": "Small Alula", "description": "A smaller version of the character Alula from Oneshot. Original sprite by Glitchious404.", "website": "https://www.oneshot-game.com", "subreddit": "/r/oneshot", "center": [1086.5, 1695.5], "path": [[1084.5, 1705.5], [1083.5, 1705.5], [1083.5, 1704.5], [1082.5, 1704.5], [1079.5, 1704.5], [1079.5, 1703.5], [1079.5, 1702.5], [1079.5, 1701.5], [1079.5, 1698.5], [1078.5, 1698.5], [1078.5, 1697.5], [1078.5, 1693.5], [1077.5, 1697.5], [1077.5, 1696.5], [1079.5, 1693.5], [1079.5, 1691.5], [1080.5, 1691.5], [1080.5, 1690.5], [1081.5, 1690.5], [1081.5, 1689.5], [1081.5, 1688.5], [1081.5, 1686.5], [1081.5, 1683.5], [1083.5, 1683.5], [1083.5, 1684.5], [1084.5, 1684.5], [1084.5, 1685.5], [1085.5, 1685.5], [1085.5, 1686.5], [1085.5, 1687.5], [1086.5, 1688.5], [1086.5, 1687.5], [1087.5, 1688.5], [1088.5, 1688.5], [1088.5, 1687.5], [1088.5, 1686.5], [1089.5, 1686.5], [1089.5, 1685.5], [1090.5, 1685.5], [1090.5, 1684.5], [1091.5, 1684.5], [1092.5, 1684.5], [1092.5, 1689.5], [1091.5, 1690.5], [1092.5, 1690.5], [1092.5, 1692.5], [1093.5, 1692.5], [1093.5, 1697.5], [1092.5, 1697.5], [1092.5, 1700.5], [1093.5, 1700.5], [1093.5, 1701.5], [1093.5, 1702.5], [1093.5, 1704.5], [1090.5, 1704.5], [1090.5, 1705.5], [1087.5, 1705.5]]}, -{"id": "000251", "submitted_by": "Evo_Kaer", "name": "No Man's Sky Atlas", "description": "The Atlas is an iconic symbol of the game No Man's Sky", "website": "https://nomanssky.fandom.com/de/wiki/No_Man%27s_Sky", "subreddit": "/r/NoMansSkyTheGame", "center": [1631.5, 1631.5], "path": [[1615.5, 1610.5], [1615.5, 1636.5], [1631.5, 1657.5], [1635.5, 1657.5], [1653.5, 1628.5], [1635.5, 1610.5]]}, -{"id": "000252", "submitted_by": "MrEduxator", "name": "Holostars", "description": "An icon that represents Holostars, which is a male branch of Hololive.", "website": "https://holostars.hololivepro.com/en/", "subreddit": "/r/holostars, /r/Hololive", "center": [312.5, 767.5], "path": [[302.5, 758.5], [321.5, 758.5], [321.5, 777.5], [303.5, 777.5]]}, -{"id": "000253", "submitted_by": "Lambocoon", "name": "r/baduk", "description": "the subreddit for the ancient board game Go/Baduk/Weiqi", "website": "", "subreddit": "/r/baduk", "center": [1522.5, 1284.5], "path": [[1494.5, 1279.5], [1550.5, 1279.5], [1550.5, 1289.5], [1494.5, 1289.5]]}, -{"id": "000258", "submitted_by": "Tylersfoot", "name": "Green Lattice", "description": "Green Lattice was a peaceful faction, determined to fill the canvas with a beautiful orderly light and dark green lattice, that would serve as a safe home for art to live", "website": "", "subreddit": "/r/greenlattice", "center": [1547.5, 1542.5], "path": [[1499.5, 1499.5], [1569.5, 1499.5], [1570.5, 1518.5], [1620.5, 1520.5], [1620.5, 1539.5], [1595.5, 1539.5], [1594.5, 1580.5], [1535.5, 1579.5], [1534.5, 1585.5], [1499.5, 1586.5], [1498.5, 1499.5]]}, -{"id": "000259", "submitted_by": "zpjester", "name": "Scott Munley", "description": "Scott Manley's head nightmarishly projected onto the Mun. Fly nś̟̬a̗̪͓̬f̟͓̮̕e̴̙͇̞.", "website": "https://www.youtube.com/channel/UCxzC4EngIsMrPmbm6Nxvb-A", "subreddit": "/r/SpaceXPlace", "center": [946.5, 1521.5], "path": [[938.5, 1519.5], [940.5, 1516.5], [943.5, 1513.5], [948.5, 1513.5], [952.5, 1515.5], [953.5, 1518.5], [953.5, 1523.5], [951.5, 1527.5], [949.5, 1528.5], [944.5, 1529.5], [940.5, 1526.5], [938.5, 1523.5]]}, -{"id": "000261", "submitted_by": "shekevje", "name": "University of Washiington", "description": "The logo of the University of Washington in Seattle, featuring some of the school's characteristic cherry blossoms. The school's mascot is a husky.", "website": "http://uw.edu/", "subreddit": "/r/udub", "center": [897.5, 527.5], "path": [[889.5, 520.5], [889.5, 534.5], [905.5, 534.5], [905.5, 520.5], [889.5, 520.5], [889.5, 520.5]]}, -{"id": "000262", "submitted_by": "Scotty98745", "name": "Green Bay Packers", "description": "The Green Bay Packers are a historic American football team based in Green Bay, Wisconsin that competes in the National Football League (NFL).\n\nIt is the third-oldest franchise in the NFL, dating back to 1919, and is the only non-profit, community-owned major league professional sports team based in the United States.\n\nThe Packers have won 13 league championships, the most in NFL history, with nine pre-Super Bowl NFL titles and four Super Bowl victories.\n\nGO PACK GO!", "website": "https://www.packers.com/", "subreddit": "/r/GreenBayPackers, /r/place_CentralAlliance", "center": [418.5, 922.5], "path": [[407.5, 913.5], [428.5, 913.5], [428.5, 931.5], [407.5, 931.5], [407.5, 913.5]]}, -{"id": "000263", "submitted_by": "jonathan6405", "name": "Roskilde Cathedral", "description": "A cathedral from the Danish city of Roskilde.", "website": "https://roskildedomkirke.dk/english/", "subreddit": "/r/place_nordicunion, /r/Denmark", "center": [290.5, 144.5], "path": [[277.5, 139.5], [277.5, 157.5], [302.5, 157.5], [302.5, 139.5], [301.5, 139.5], [301.5, 138.5], [300.5, 138.5], [300.5, 131.5], [299.5, 131.5], [299.5, 130.5], [298.5, 130.5], [298.5, 128.5], [297.5, 128.5], [297.5, 119.5], [296.5, 119.5], [296.5, 128.5], [295.5, 128.5], [295.5, 129.5], [295.5, 130.5], [294.5, 130.5], [294.5, 131.5], [293.5, 131.5], [293.5, 132.5], [293.5, 135.5], [287.5, 135.5], [286.5, 135.5], [286.5, 131.5], [285.5, 131.5], [285.5, 130.5], [284.5, 130.5], [284.5, 128.5], [283.5, 128.5], [283.5, 119.5], [282.5, 119.5], [282.5, 128.5], [281.5, 129.5], [281.5, 129.5], [281.5, 130.5], [280.5, 130.5], [280.5, 131.5], [279.5, 131.5], [279.5, 137.5], [279.5, 138.5], [278.5, 138.5], [278.5, 139.5], [277.5, 139.5]]}, -{"id": "000264", "submitted_by": "carpinx", "name": "River Plate", "description": "Colors of River Plate, one of the most popular football teams in Argentina.", "website": "https://en.wikipedia.org/wiki/Club_Atl%C3%A9tico_River_Plate", "subreddit": "/r/argentina", "center": [1132.5, 654.5], "path": [[1129.5, 645.5], [1127.5, 647.5], [1127.5, 651.5], [1128.5, 652.5], [1128.5, 661.5], [1138.5, 661.5], [1138.5, 652.5], [1132.5, 646.5], [1131.5, 646.5], [1130.5, 645.5], [1129.5, 645.5]]}, -{"id": "000266", "submitted_by": "Turwaith", "name": "Switzerland and Liechtenstein", "description": "Swiss and Liechtenstein Flag, accompanied by some classics. The mountain Matterhorn, an Edelweiss flower, a chocolate bar which Switzerland is very famous for, a cow and an SBB train.", "website": "https://discord.gg/JS9eFKty", "subreddit": "", "center": [550.5, 697.5], "path": [[514.5, 682.5], [514.5, 716.5], [571.5, 716.5], [571.5, 698.5], [599.5, 698.5], [599.5, 682.5]]}, -{"id": "000267", "submitted_by": "madebymvx", "name": "Yandhi", "description": "Unreleased Kanye West album because Jesus Christ did the laundry.", "website": "", "subreddit": "/r/westsubever", "center": [31.5, 814.5], "path": [[14.5, 799.5], [47.5, 799.5], [47.5, 829.5], [14.5, 829.5], [14.5, 799.5]]}, -{"id": "000268", "submitted_by": "HarbaughsKhakis", "name": "University of Michigan", "description": "Tile for the Michigan Wolverines, commemorating their 2021 football victory over Ohio State University", "website": "", "subreddit": "/r/michiganwolverines", "center": [413.5, 275.5], "path": [[392.5, 252.5], [392.5, 298.5], [433.5, 298.5], [433.5, 252.5], [392.5, 252.5]]}, -{"id": "000269", "submitted_by": "A_Fine_Potato", "name": "Average Greek vs. Turk Debate", "description": "The thumbnail of the video with the same name, Which has stayed a popular meme in Greece and Turkey", "website": "https://www.youtube.com/watch?v=HfFx5UvzSxc", "subreddit": "", "center": [1265.5, 737.5], "path": [[1200.5, 700.5], [1200.5, 773.5], [1329.5, 773.5], [1329.5, 700.5]]}, -{"id": "000270", "submitted_by": "xAqult", "name": "Terraria Calamity Mod Logo (1.5 Update)", "description": "The Terraria Calamity Mod Logo, for the largest ever Terraria Mod.", "website": "https://discord.gg/calamity", "subreddit": "/r/CalamityMod", "center": [867.5, 1467.5], "path": [[853.5, 1453.5], [880.5, 1453.5], [880.5, 1480.5], [853.5, 1480.5], [853.5, 1453.5]]}, -{"id": "000271", "submitted_by": "drc7777777", "name": "Gondola", "description": "A mutation of the Spurdo Spärde meme. He peacefully observes.", "website": "", "subreddit": "", "center": [742.5, 1708.5], "path": [[736.5, 1692.5], [743.5, 1694.5], [750.5, 1699.5], [755.5, 1705.5], [756.5, 1708.5], [757.5, 1713.5], [754.5, 1723.5], [749.5, 1729.5], [745.5, 1732.5], [737.5, 1733.5], [737.5, 1736.5], [742.5, 1735.5], [750.5, 1731.5], [758.5, 1724.5], [760.5, 1715.5], [760.5, 1707.5], [758.5, 1701.5], [753.5, 1695.5], [744.5, 1691.5], [740.5, 1691.5], [739.5, 1685.5], [732.5, 1685.5], [730.5, 1692.5], [725.5, 1695.5], [719.5, 1701.5], [716.5, 1704.5], [716.5, 1710.5], [716.5, 1721.5], [719.5, 1727.5], [729.5, 1734.5], [736.5, 1735.5], [736.5, 1733.5], [731.5, 1733.5], [723.5, 1728.5], [718.5, 1721.5], [716.5, 1715.5], [717.5, 1707.5], [721.5, 1700.5], [728.5, 1695.5], [737.5, 1693.5]]}, -{"id": "000272", "submitted_by": "N0ZTRA", "name": "lgwMlem", "description": "A Twitch emote from streamer DumbDog. Mlem.", "website": "https://www.twitch.tv/dumbdog", "subreddit": "", "center": [1856.5, 1403.5], "path": [[1838.5, 1383.5], [1838.5, 1423.5], [1873.5, 1423.5], [1873.5, 1383.5], [1838.5, 1383.5]]}, -{"id": "000274", "submitted_by": "zpjester", "name": "Starship / Super Heavy stack", "description": "SpaceX's upcoming (as of 4/2022) Starship / Super Heavy launch vehicle, under development for crewed missions to the Moon and Mars (also pictured)", "website": "", "subreddit": "/r/SpaceXPlace", "center": [817.5, 634.5], "path": [[811.5, 684.5], [816.5, 678.5], [816.5, 662.5], [820.5, 662.5], [819.5, 659.5], [816.5, 651.5], [792.5, 605.5], [834.5, 605.5], [834.5, 609.5], [826.5, 620.5], [826.5, 637.5], [827.5, 684.5]]}, -{"id": "000277", "submitted_by": "madebymvx", "name": "Nah Nah Nah", "description": "Cover of one of Kanye West's greatest songs.", "website": "", "subreddit": "/r/westsubever", "center": [31.5, 782.5], "path": [[14.5, 766.5], [47.5, 766.5], [47.5, 798.5], [14.5, 798.5], [14.5, 766.5]]}, -{"id": "000279", "submitted_by": "N0ZTRA", "name": "lgwWoof", "description": "Twitch emote from streamer DumbDog. A barking dog, woof.", "website": "https://www.twitch.tv/dumbdog", "subreddit": "", "center": [1821.5, 1403.5], "path": [[1803.5, 1383.5], [1803.5, 1418.5], [1805.5, 1416.5], [1806.5, 1416.5], [1808.5, 1418.5], [1808.5, 1421.5], [1806.5, 1423.5], [1838.5, 1423.5], [1838.5, 1383.5], [1803.5, 1383.5]]}, -{"id": "000280", "submitted_by": "ostensacken", "name": "Madagascan flag", "description": "The flag of Madagascar, an island nation famous for its endemic Lemurs.", "website": "", "subreddit": "", "center": [777.5, 1071.5], "path": [[774.5, 1069.5], [774.5, 1072.5], [780.5, 1072.5], [780.5, 1069.5]]}, -{"id": "000285", "submitted_by": "ostensacken", "name": "Zimbabwean flag", "description": "The flag of Zimbabwe, a Southern African nation. This is one of two Zimbabwean flags on r/place, the other being to the north in what remains of the Green Latice.", "website": "", "subreddit": "", "center": [769.5, 1070.5], "path": [[766.5, 1068.5], [772.5, 1068.5], [772.5, 1072.5], [766.5, 1072.5]]}, -{"id": "000286", "submitted_by": "zpjester", "name": "NASA / SpaceX / Rocket Lab Logos", "description": "Logos of 3 leading space agencies, along with Earth.", "website": "", "subreddit": "/r/SpaceXPlace", "center": [804.5, 588.5], "path": [[755.5, 581.5], [851.5, 581.5], [850.5, 596.5], [756.5, 595.5]]}, -{"id": "000288", "submitted_by": "Virtual_Cheek_7633", "name": "Gensokyo Radio", "description": "Gensokyo Radio's icon, featuring a torii gate. They stream Touhou music.", "website": "https://gensokyoradio.net/", "subreddit": "/r/touhou", "center": [1654.5, 1517.5], "path": [[1649.5, 1513.5], [1650.5, 1513.5], [1650.5, 1512.5], [1658.5, 1512.5], [1658.5, 1513.5], [1659.5, 1513.5], [1659.5, 1521.5], [1658.5, 1521.5], [1658.5, 1522.5], [1650.5, 1522.5], [1650.5, 1521.5], [1649.5, 1521.5]]}, -{"id": "000290", "submitted_by": "LetteredSymbol", "name": "Sertle Chicken", "description": "the one chicken that survived. Originally, there were also ones on Quebec's flag.", "website": "https://twitch.tv/sertle", "subreddit": "", "center": [1095.5, 965.5], "path": [[1097.5, 966.5], [1097.5, 963.5], [1094.5, 963.5], [1093.5, 967.5], [1096.5, 967.5], [1096.5, 965.5], [1097.5, 964.5], [1097.5, 965.5], [1097.5, 965.5], [1095.5, 965.5], [1096.5, 965.5], [1096.5, 965.5], [1098.5, 965.5], [1092.5, 966.5], [1092.5, 965.5], [1092.5, 967.5], [1094.5, 966.5], [1092.5, 966.5], [1093.5, 966.5], [1091.5, 966.5], [1094.5, 965.5], [1094.5, 965.5], [1094.5, 965.5], [1095.5, 965.5], [1095.5, 964.5], [1097.5, 964.5], [1097.5, 963.5], [1095.5, 964.5], [1095.5, 964.5], [1096.5, 966.5], [1096.5, 965.5], [1096.5, 966.5], [1093.5, 964.5]]}, -{"id": "000291", "submitted_by": "Tonda98", "name": "Girls' Last Tour", "description": "Chito and Yuuri are the main protagonist of Girls' Last Tour. They travel through a post-apocalyptic world in their Kettenkrad. At some point they find Nuko, an animal that resembles a cat. This artwork shows Yuuri, Nuko and Chito on their Kettenkrad.", "website": "https://en.wikipedia.org/wiki/Girls%27_Last_Tour", "subreddit": "/r/GirlsLastTour", "center": [1343.5, 1162.5], "path": [[1334.5, 1170.5], [1353.5, 1170.5], [1352.5, 1169.5], [1353.5, 1169.5], [1353.5, 1168.5], [1354.5, 1168.5], [1354.5, 1167.5], [1354.5, 1166.5], [1353.5, 1166.5], [1353.5, 1165.5], [1353.5, 1164.5], [1353.5, 1163.5], [1352.5, 1163.5], [1352.5, 1162.5], [1351.5, 1162.5], [1351.5, 1161.5], [1352.5, 1161.5], [1352.5, 1160.5], [1353.5, 1160.5], [1353.5, 1159.5], [1353.5, 1156.5], [1353.5, 1157.5], [1353.5, 1158.5], [1353.5, 1159.5], [1353.5, 1156.5], [1353.5, 1155.5], [1352.5, 1155.5], [1352.5, 1154.5], [1351.5, 1154.5], [1350.5, 1154.5], [1350.5, 1153.5], [1349.5, 1153.5], [1348.5, 1153.5], [1347.5, 1153.5], [1346.5, 1153.5], [1345.5, 1153.5], [1344.5, 1153.5], [1344.5, 1154.5], [1343.5, 1153.5], [1342.5, 1153.5], [1340.5, 1153.5], [1339.5, 1153.5], [1338.5, 1153.5], [1337.5, 1153.5], [1336.5, 1153.5], [1335.5, 1153.5], [1335.5, 1154.5], [1334.5, 1154.5], [1334.5, 1155.5], [1334.5, 1156.5], [1333.5, 1156.5], [1333.5, 1157.5], [1332.5, 1157.5], [1332.5, 1158.5], [1332.5, 1159.5], [1332.5, 1159.5], [1332.5, 1160.5], [1332.5, 1161.5], [1333.5, 1161.5], [1333.5, 1162.5], [1333.5, 1163.5], [1333.5, 1164.5], [1332.5, 1164.5], [1332.5, 1165.5], [1332.5, 1166.5], [1333.5, 1166.5], [1332.5, 1167.5], [1332.5, 1168.5], [1332.5, 1169.5], [1333.5, 1169.5], [1333.5, 1170.5]]}, -{"id": "000292", "submitted_by": "carpinx", "name": "Juggernaut", "description": "A melee-classed hero from the MOBA game DotA2.", "website": "", "subreddit": "/r/DotA2", "center": [14.5, 188.5], "path": [[6.5, 177.5], [22.5, 177.5], [22.5, 183.5], [23.5, 183.5], [27.5, 187.5], [27.5, 188.5], [28.5, 189.5], [28.5, 190.5], [25.5, 193.5], [23.5, 191.5], [22.5, 192.5], [22.5, 196.5], [16.5, 202.5], [12.5, 202.5], [6.5, 196.5], [6.5, 192.5], [5.5, 191.5], [3.5, 193.5], [0.5, 190.5], [0.5, 189.5], [1.5, 188.5], [1.5, 187.5], [2.5, 186.5], [3.5, 185.5], [3.5, 184.5], [4.5, 183.5]]}, -{"id": "000293", "submitted_by": "ostensacken", "name": "Ghanaian flag", "description": "The flag of Ghana, a West African nation with a population of 31 million.nPreviously on the Nigerian flag to the south, it was moved here after being removed due to their inability to find a space for a larger flag.", "website": "", "subreddit": "", "center": [762.5, 1070.5], "path": [[759.5, 1068.5], [759.5, 1072.5], [764.5, 1072.5], [764.5, 1068.5]]}, -{"id": "000294", "submitted_by": "Flamberge3000", "name": "Doki Doki Literature Club!", "description": "Doki Doki Literature Club! is a 2017 freeware visual novel developed by American independent game studio Team Salvato for Microsoft Windows, macOS, and Linux. You play as a highschool student who must woo the girls of the literature club... through poetry!", "website": "https://ddlc.moe/", "subreddit": "/r/DDLC", "center": [1575.5, 1192.5], "path": [[1550.5, 1184.5], [1550.5, 1200.5], [1600.5, 1200.5], [1600.5, 1184.5]]}, -{"id": "000295", "submitted_by": "zpjester", "name": "r/spaceXPlace and affiliates mural", "description": "SpaceX and related interests. Features Starship S20, Starman / Roadster, the Hubble Space Telescope, Starhopper, and the logos for Tesla and LabPadre. Also features shoutouts to RGV Aerial Photography, Tim Dodd (The Everyday Astronaut), NasaSpaceflightLive, and Kerbal Space Program", "website": "", "subreddit": "/r/SpaceXPlace", "center": [906.5, 1576.5], "path": [[941.5, 1638.5], [941.5, 1631.5], [900.5, 1631.5], [905.5, 1620.5], [930.5, 1620.5], [930.5, 1610.5], [916.5, 1610.5], [916.5, 1606.5], [933.5, 1599.5], [934.5, 1592.5], [943.5, 1591.5], [949.5, 1585.5], [949.5, 1556.5], [954.5, 1551.5], [955.5, 1543.5], [952.5, 1535.5], [936.5, 1528.5], [935.5, 1524.5], [931.5, 1524.5], [930.5, 1528.5], [926.5, 1529.5], [919.5, 1522.5], [915.5, 1519.5], [901.5, 1519.5], [902.5, 1524.5], [894.5, 1522.5], [882.5, 1539.5], [881.5, 1546.5], [887.5, 1547.5], [887.5, 1580.5], [845.5, 1580.5], [846.5, 1612.5], [890.5, 1611.5], [894.5, 1637.5]]}, -{"id": "000297", "submitted_by": "MarUlberg", "name": "Kirby", "description": "YouTube streamer Ludwig used his chat to overtake the Kirby built by russian streamer bratishkinoff. The art was overall loved by all communities (including bratishkinoff) and saw minimal sabotage throughout the remaining time.", "website": "https://www.youtube.com/c/Ludwigahgren", "subreddit": "/r/LudwigAhgren", "center": [1845.5, 581.5], "path": [[1800.5, 539.5], [1890.5, 539.5], [1890.5, 623.5], [1800.5, 623.5]]}, -{"id": "000299", "submitted_by": "SadChiruno", "name": "Marisad", "description": "Marisa Kirisame is a character from Touhou Project. In the fan-made anime \"Memories of Phantasm\", she is seen crying during one scene. Her funny expression quickly became a popular meme inside the Touhou fandom, who dubbed her \"Marisad\" (Marisa + sad). Additionally the emote of Marisa crying spreaded across many Touhou-related Discord servers, further adding to its popularity.", "website": "https://en.touhouwiki.net/wiki/Marisa_Kirisame", "subreddit": "/r/marisad, /r/touhou", "center": [1797.5, 881.5], "path": [[1785.5, 870.5], [1786.5, 870.5], [1809.5, 870.5], [1809.5, 893.5], [1791.5, 893.5], [1785.5, 887.5]]}, -{"id": "000300", "submitted_by": "ObliviousFail", "name": "New Zealand", "description": "r/NewZealand's place featuring the Laser Kiwi, Kakapo, Tino Rangatiratanga, Kiwi fruit, ANZAC Poppies, and a map of New Zealand", "website": "", "subreddit": "/r/newzealand", "center": [1546.5, 726.5], "path": [[1515.5, 689.5], [1515.5, 711.5], [1539.5, 711.5], [1539.5, 727.5], [1515.5, 727.5], [1515.5, 746.5], [1550.5, 747.5], [1551.5, 767.5], [1577.5, 767.5], [1576.5, 730.5], [1554.5, 729.5], [1554.5, 714.5], [1558.5, 711.5], [1562.5, 711.5], [1561.5, 689.5], [1515.5, 689.5]]}, -{"id": "000301", "submitted_by": "MrEduxator", "name": "Sakamata Chloe's Mask", "description": "A mask worn by Sakamata Chloe, a member of holoX, or hololive 6th Gen.", "website": "https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw", "subreddit": "/r/Hololive", "center": [1393.5, 1067.5], "path": [[1387.5, 1064.5], [1388.5, 1063.5], [1398.5, 1063.5], [1399.5, 1064.5], [1399.5, 1067.5], [1398.5, 1068.5], [1397.5, 1069.5], [1397.5, 1070.5], [1397.5, 1071.5], [1391.5, 1071.5], [1391.5, 1070.5], [1389.5, 1070.5], [1388.5, 1070.5], [1388.5, 1069.5], [1387.5, 1069.5], [1387.5, 1068.5], [1386.5, 1068.5], [1386.5, 1064.5], [1387.5, 1064.5], [1388.5, 1064.5]]}, -{"id": "000305", "submitted_by": "_ScrapLord_", "name": "Zero", "description": "Art of the protagonist of indie action game Katana:ZERO", "website": "https://katanazero.com/", "subreddit": "/r/KatanaZero", "center": [1150.5, 1874.5], "path": [[1136.5, 1857.5], [1164.5, 1857.5], [1164.5, 1871.5], [1166.5, 1871.5], [1166.5, 1885.5], [1166.5, 1883.5], [1165.5, 1883.5], [1165.5, 1883.5], [1163.5, 1881.5], [1159.5, 1885.5], [1159.5, 1890.5], [1159.5, 1893.5], [1136.5, 1893.5], [1136.5, 1857.5]]}, -{"id": "000306", "submitted_by": "Smirkydevil52", "name": "The Stormlight Archvive/Malazan", "description": "The Stormlight Archive and Malazan are both fantasy book series. The two communities worked together, becoming what is now the Science Fiction-Fantasy Alliance. Features characters from both series. n", "website": "", "subreddit": "/r/Stormlight_Archive, /r/Malazan, /r/SFFA", "center": [1849.5, 910.5], "path": [[1830.5, 870.5], [1868.5, 870.5], [1868.5, 949.5], [1830.5, 949.5], [1830.5, 913.5]]}, -{"id": "000308", "submitted_by": "Virtual_Cheek_7633", "name": "Koishi Komeiji", "description": "She is a satori, a mind reading yokai from Touhou Project. She also loves her hat.", "website": "https://en.touhouwiki.net/wiki/Koishi_Komeiji", "subreddit": "/r/touhou", "center": [1638.5, 1501.5], "path": [[1621.5, 1484.5], [1621.5, 1517.5], [1654.5, 1517.5], [1654.5, 1484.5]]}, -{"id": "000310", "submitted_by": "carpinx", "name": "Lionel Messi and Cristiano Ronaldo", "description": "A picture of Messi and Ronaldo in representation of the brotherhood between Portuguese and Argentinian communities.", "website": "https://en.wikipedia.org/wiki/Messi%E2%80%93Ronaldo_rivalry", "subreddit": "/r/portugal, /r/PortugalCaralho, /r/argentina, /r/ArgPixelArt", "center": [1531.5, 1868.5], "path": [[1532.5, 1831.5], [1536.5, 1831.5], [1534.5, 1824.5], [1537.5, 1821.5], [1543.5, 1823.5], [1542.5, 1831.5], [1548.5, 1835.5], [1555.5, 1845.5], [1559.5, 1857.5], [1558.5, 1869.5], [1554.5, 1871.5], [1551.5, 1868.5], [1552.5, 1860.5], [1551.5, 1854.5], [1549.5, 1857.5], [1550.5, 1874.5], [1550.5, 1884.5], [1548.5, 1891.5], [1547.5, 1904.5], [1546.5, 1909.5], [1541.5, 1911.5], [1533.5, 1910.5], [1520.5, 1912.5], [1514.5, 1912.5], [1512.5, 1901.5], [1510.5, 1884.5], [1511.5, 1871.5], [1511.5, 1868.5], [1505.5, 1863.5], [1503.5, 1856.5], [1504.5, 1850.5], [1510.5, 1839.5], [1515.5, 1836.5], [1520.5, 1830.5], [1522.5, 1827.5], [1528.5, 1825.5], [1531.5, 1830.5]]}, -{"id": "000311", "submitted_by": "mariogeorge59", "name": "Flag Of Lebanon (Covered)", "description": "This is the current flag of Lebanon", "website": "", "subreddit": "/r/lebanon", "center": [15.5, 446.5], "path": [[0.5, 429.5], [35.5, 429.5], [35.5, 463.5], [0.5, 463.5], [-10.5, 447.5], [0.5, 429.5], [0.5, 429.5]]}, -{"id": "000312", "submitted_by": "ostensacken", "name": "Namibian flag", "description": "The flag of Namibia, a largely desert nation to South Africa's North.", "website": "", "subreddit": "", "center": [754.5, 1070.5], "path": [[751.5, 1068.5], [751.5, 1072.5], [757.5, 1072.5], [757.5, 1068.5]]}, -{"id": "000315", "submitted_by": "ostensacken", "name": "Botswanan Flag", "description": "The flag of the Southern African nation, Botswana. Bordered by Namibia, Zambia, Zimbabwe, and South Africa.", "website": "", "subreddit": "", "center": [747.5, 1070.5], "path": [[744.5, 1068.5], [744.5, 1072.5], [749.5, 1072.5], [749.5, 1068.5]]}, -{"id": "000317", "submitted_by": "ohshitwrongaccount", "name": "Avali", "description": "A fictional species of feathered raptors created by RyuujinZERO and popularized by a mod for the game Starbound. The art is a sprite from the mod.", "website": "https://community.playstarbound.com/resources/avali-triage.2852/triage.2852/", "subreddit": "/r/avali", "center": [1462.5, 1281.5], "path": [[1477.5, 1260.5], [1477.5, 1302.5], [1446.5, 1302.5], [1446.5, 1260.5]]}, -{"id": "000318", "submitted_by": "carpinx", "name": "2014 FIFA World Cup", "description": "A representation of the trophy from the 2014 FIFA World Cup hosted in Brazil. It was built by Brazil in collaboration with Argentina, respectively the 4th and 2th placed countries in the event. Later an alliance was made, ironically and poetically, with Germany to give the trophy a better design and help protect it from griefing, as people constantly tried to write '7-1' in it (explained below) or turn it into a phallic object.\n\nThe most infamous game was the semifinal between Brazil and Germany. The Brazil vs. Germany football match that took place on 8 July 2014 at the Estádio Mineirão in Belo Horizonte was the first of two semifinal matches of the 2014 FIFA World Cup.\n\nBoth Brazil and Germany reached the semifinals with an undefeated record in the competition, with the Brazilians' quarterfinal with Colombia causing them to lose forward Neymar to injury, and defender and captain Thiago Silva to accumulation of yellow cards. Despite the absence of these players, a close match was expected, given both teams were traditional FIFA World Cup forces, sharing eight tournaments won and having previously met in the 2002 FIFA World Cup Final, where Brazil won 2-0 and earned their fifth title. This match, however, ended in a shocking loss for Brazil; Germany led 5-0 at half time, with four goals scored within six minutes, and subsequently brought the score up to 7-0 in the second half. Brazil scored a consolation goal in the last minute, ending the match 7-1. Germany's Toni Kroos was selected as the man of the match.\n\nThe game marked several tournament records. Germany's win marked the largest margin of victory in a FIFA World Cup semifinal. The game saw Germany overtake Brazil as the highest scoring team in World Cup tournament history and become the first team to reach eight World Cup Finals. Miroslav Klose scored his 16th career World Cup goal and surpassed Brazil's own Ronaldo as the tournament's all-time record goalscorer. Brazil's loss broke their 62-match unbeaten streak at home in competitive matches, going back to the 1975 Copa América (where they lost 3-1 to Peru in the same stadium), and equalled their biggest margin of defeat in a match alongside a 6-0 loss to Uruguay in 1920. Ultimately, the match was described as a national humiliation.\n\nThe game has subsequently been dubbed the Mineirazo (Mineiraço [minejˈɾasu], Agony of Mineirão), evoking a previous 'spirit of national shame' known as the Maracanazo (Maracanaço) in which Brazil unexpectedly lost the 1950 FIFA World Cup on home soil to Uruguay. Brazil subsequently lost 3-0 to the Netherlands in the third-place play-off. Germany went on to win the World Cup for the fourth time, defeating Argentina in the final.", "website": "https://en.wikipedia.org/wiki/2014_FIFA_World_Cup", "subreddit": "/r/brasil, /r/argentina, /r/germany", "center": [1033.5, 613.5], "path": [[1023.5, 634.5], [1029.5, 639.5], [1039.5, 638.5], [1043.5, 633.5], [1040.5, 628.5], [1039.5, 619.5], [1040.5, 612.5], [1043.5, 606.5], [1041.5, 597.5], [1036.5, 590.5], [1030.5, 589.5], [1024.5, 593.5], [1022.5, 600.5], [1022.5, 607.5], [1024.5, 610.5], [1025.5, 614.5], [1028.5, 617.5], [1028.5, 624.5], [1025.5, 628.5], [1024.5, 634.5]]}, -{"id": "000319", "submitted_by": "ostensacken", "name": "Lesotho flag", "description": "A small flag of Lesotho, a land-locked enclave nation of South Africa.", "website": "", "subreddit": "", "center": [739.5, 1070.5], "path": [[736.5, 1068.5], [736.5, 1072.5], [742.5, 1072.5], [742.5, 1068.5]]}, -{"id": "000320", "submitted_by": "HyBerTop_1", "name": "osu!hungary", "description": "The Hungarian osu! community. An insanely dedicated osu! group. With the help from the osu! Storyboarder Banquet community, and after the negotiations with the Star Wars community, our logo and our community efforts will live forever and ever.", "website": "https://discordapp.com/invite/rFYD6Pq", "subreddit": "/r/osugame", "center": [719.5, 1660.5], "path": [[713.5, 1657.5], [719.5, 1654.5], [726.5, 1658.5], [726.5, 1664.5], [713.5, 1664.5]]}, -{"id": "000321", "submitted_by": "flippin_egg", "name": "Serball", "description": "A parody of the character 'Serval' from the anime 'Kemono Friends'. She is a playable character in the Roblox game 'Become Fumo'", "website": "", "subreddit": "", "center": [612.5, 1576.5], "path": [[607.5, 1569.5], [603.5, 1574.5], [604.5, 1581.5], [608.5, 1583.5], [617.5, 1583.5], [620.5, 1580.5], [620.5, 1578.5], [620.5, 1574.5], [620.5, 1572.5], [617.5, 1571.5], [611.5, 1569.5]]}, -{"id": "000322", "submitted_by": "Gourmet_Salad", "name": "Saudi Arabia", "description": "featuring the saudi emblem and some Arabic coffee", "website": "", "subreddit": "/r/saudiarabia", "center": [1618.5, 1059.5], "path": [[1591.5, 1044.5], [1645.5, 1044.5], [1645.5, 1074.5], [1591.5, 1074.5], [1591.5, 1044.5]]}, -{"id": "000323", "submitted_by": "MrEduxator", "name": "hat mouse", "description": "\"Hi. Me sell hats. Okay, poke? Come to old old old haus, poke. Bring coines. -hat mouse\"", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1738.5, 1025.5], "path": [[1708.5, 1008.5], [1767.5, 1008.5], [1767.5, 1043.5], [1709.5, 1042.5]]}, -{"id": "000325", "submitted_by": "zpjester", "name": "Starman / Tesla Roadster", "description": "Elon Musk's Tesla Roaster and its sole passenger, Starman (not to scale). Currently orbiting the sun near the orbits of Earth and Mars.", "website": "https://spacein3d.com/where-is-starman-live-tracker/", "subreddit": "/r/spacexplace", "center": [918.5, 1580.5], "path": [[908.5, 1608.5], [911.5, 1609.5], [932.5, 1599.5], [933.5, 1589.5], [930.5, 1587.5], [931.5, 1572.5], [929.5, 1560.5], [921.5, 1554.5], [912.5, 1554.5], [903.5, 1561.5], [904.5, 1584.5], [910.5, 1594.5], [910.5, 1604.5], [908.5, 1605.5], [905.5, 1605.5]]}, -{"id": "000328", "submitted_by": "carpinx", "name": "Capybara", "description": "The capybara (in Argentina called 'carpincho') is a symbolic animal in the region.", "website": "", "subreddit": "/r/argentina", "center": [926.5, 670.5], "path": [[923.5, 662.5], [923.5, 665.5], [922.5, 666.5], [919.5, 666.5], [917.5, 668.5], [917.5, 669.5], [916.5, 669.5], [916.5, 674.5], [919.5, 677.5], [924.5, 677.5], [925.5, 676.5], [927.5, 676.5], [928.5, 677.5], [932.5, 677.5], [932.5, 671.5], [934.5, 671.5], [936.5, 669.5], [936.5, 665.5], [934.5, 663.5], [928.5, 663.5], [927.5, 662.5]]}, -{"id": "000330", "submitted_by": "zpjester", "name": "Hubble Space Telescope", "description": "NASA's HST, launched in 1990 aboard the Space Shuttle Discovery.", "website": "https://www.nasa.gov/mission_pages/hubble/main/index.html", "subreddit": "/r/spaceXPlace", "center": [935.5, 1540.5], "path": [[919.5, 1535.5], [918.5, 1534.5], [913.5, 1528.5], [913.5, 1526.5], [916.5, 1522.5], [919.5, 1522.5], [924.5, 1527.5], [925.5, 1529.5], [933.5, 1533.5], [931.5, 1528.5], [931.5, 1526.5], [934.5, 1525.5], [935.5, 1526.5], [935.5, 1533.5], [938.5, 1530.5], [953.5, 1537.5], [950.5, 1540.5], [954.5, 1543.5], [955.5, 1548.5], [952.5, 1552.5], [949.5, 1554.5], [946.5, 1554.5], [941.5, 1551.5], [936.5, 1555.5], [921.5, 1548.5], [926.5, 1543.5], [921.5, 1539.5], [920.5, 1534.5]]}, -{"id": "000333", "submitted_by": "Virtual_Cheek_7633", "name": "Sakuya Izayoi", "description": "The perfect and elegant maid from Touhou Project.", "website": "https://en.touhouwiki.net/wiki/Sakuya_Izayoi", "subreddit": "/r/touhou", "center": [1671.5, 1468.5], "path": [[1654.5, 1451.5], [1654.5, 1484.5], [1687.5, 1484.5], [1687.5, 1451.5]]}, -{"id": "000334", "submitted_by": "theguywith1025milk", "name": "Battle for Dream Island", "description": "The BFDI section made by Battle for Dream Island r/place, with the characters Firey, Donut, Four, X, Cloudy, and the announcers.", "website": "https://bfdi.tv/", "subreddit": "/r/BattleForDreamIsland, /r/place_CentralAlliance", "center": [494.5, 1077.5], "path": [[477.5, 1062.5], [477.5, 1062.5], [511.5, 1063.5], [510.5, 1092.5], [477.5, 1091.5], [477.5, 1089.5], [477.5, 1089.5], [477.5, 1089.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1084.5], [477.5, 1084.5], [477.5, 1084.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1077.5], [477.5, 1074.5], [477.5, 1074.5], [478.5, 1072.5], [477.5, 1072.5], [477.5, 1072.5], [477.5, 1072.5]]}, -{"id": "000336", "submitted_by": "babyhuehnchen", "name": "Duck chain", "description": "A chain of ducks holding hands, originally created by r/duck_place. The following communities helped out by adding hats and a marshmallow on a stick to sit on: r/croatia, r/serbia, r/outerwilds.", "website": "", "subreddit": "/r/duck_place, /r/serbia, /r/croatia, /r/outerwilds, /r/place_CentralAlliance", "center": [339.5, 909.5], "path": [[293.5, 901.5], [293.5, 907.5], [291.5, 907.5], [292.5, 907.5], [292.5, 912.5], [293.5, 912.5], [293.5, 916.5], [294.5, 916.5], [294.5, 917.5], [295.5, 917.5], [295.5, 918.5], [296.5, 918.5], [297.5, 918.5], [297.5, 917.5], [297.5, 917.5], [368.5, 917.5], [368.5, 918.5], [368.5, 919.5], [389.5, 919.5], [389.5, 920.5], [394.5, 920.5], [394.5, 919.5], [395.5, 919.5], [395.5, 918.5], [396.5, 918.5], [396.5, 917.5], [404.5, 917.5], [404.5, 909.5], [400.5, 909.5], [400.5, 906.5], [393.5, 906.5], [393.5, 909.5], [389.5, 909.5], [389.5, 906.5], [382.5, 906.5], [382.5, 909.5], [378.5, 909.5], [378.5, 906.5], [371.5, 906.5], [371.5, 909.5], [367.5, 909.5], [367.5, 906.5], [361.5, 906.5], [360.5, 906.5], [360.5, 909.5], [357.5, 909.5], [357.5, 905.5], [353.5, 905.5], [353.5, 906.5], [353.5, 906.5], [352.5, 906.5], [352.5, 905.5], [348.5, 905.5], [348.5, 909.5], [346.5, 909.5], [346.5, 905.5], [343.5, 905.5], [342.5, 905.5], [342.5, 906.5], [341.5, 906.5], [341.5, 905.5], [338.5, 905.5], [337.5, 905.5], [337.5, 909.5], [335.5, 909.5], [335.5, 905.5], [331.5, 905.5], [331.5, 906.5], [330.5, 906.5], [330.5, 905.5], [327.5, 905.5], [326.5, 905.5], [326.5, 909.5], [324.5, 909.5], [324.5, 905.5], [321.5, 905.5], [320.5, 905.5], [320.5, 906.5], [319.5, 906.5], [319.5, 905.5], [315.5, 905.5], [315.5, 909.5], [313.5, 909.5], [313.5, 902.5], [309.5, 902.5], [309.5, 903.5], [308.5, 903.5], [308.5, 902.5], [304.5, 902.5], [304.5, 909.5], [302.5, 909.5], [302.5, 900.5], [299.5, 899.5], [298.5, 899.5], [298.5, 898.5], [297.5, 898.5], [297.5, 896.5], [295.5, 896.5], [295.5, 895.5], [294.5, 895.5], [294.5, 894.5], [293.5, 894.5], [293.5, 893.5], [291.5, 893.5], [291.5, 892.5], [289.5, 892.5], [289.5, 891.5], [284.5, 891.5], [284.5, 889.5], [271.5, 889.5], [271.5, 896.5], [290.5, 896.5], [290.5, 897.5], [291.5, 897.5], [291.5, 898.5], [293.5, 898.5], [293.5, 899.5], [294.5, 899.5], [294.5, 900.5], [293.5, 900.5], [293.5, 901.5]]}, -{"id": "000337", "submitted_by": "carpinx", "name": "Flag of Argentina", "description": "Argentinian flag with tango dancers, fernet con coca, mate, Obelisco, Mafalda and San Martín crossing the Andes.", "website": "https://en.wikipedia.org/wiki/Argentina", "subreddit": "/r/argentina", "center": [1097.5, 642.5], "path": [[905.5, 619.5], [1290.5, 620.5], [1290.5, 665.5], [905.5, 665.5], [905.5, 620.5]]}, -{"id": "000340", "submitted_by": "MrEduxator", "name": "Etika Memorial", "description": "A Memorial dedicated to iconic YouTube streamer Desmond Daniel Amofah, or more commonly known as Etika. JoyCon Boyz for life! The following website will lead you to a library of his content.", "website": "https://www.youtube.com/c/LibraryofEtika", "subreddit": "", "center": [1625.5, 164.5], "path": [[1578.5, 165.5], [1616.5, 165.5], [1616.5, 148.5], [1617.5, 147.5], [1659.5, 147.5], [1659.5, 176.5], [1588.5, 174.5], [1578.5, 174.5], [1569.5, 177.5], [1568.5, 165.5]]}, -{"id": "000342", "submitted_by": "ziemnakiscool", "name": "The Azerbaijan flag", "description": "The azerbaijan flag formed here. It was originally a little bit more left, but its moon and star have been moved to the middle.", "website": "", "subreddit": "/r/placeazerbaijan", "center": [948.5, 182.5], "path": [[1071.5, 198.5], [1071.5, 197.5], [1071.5, 198.5], [1072.5, 198.5], [1071.5, 166.5], [825.5, 166.5], [821.5, 166.5], [822.5, 168.5], [823.5, 170.5], [821.5, 171.5], [822.5, 173.5], [821.5, 174.5], [825.5, 176.5], [821.5, 176.5], [825.5, 179.5], [824.5, 181.5], [823.5, 181.5], [821.5, 179.5], [822.5, 181.5], [824.5, 183.5], [823.5, 184.5], [824.5, 185.5], [825.5, 186.5], [823.5, 187.5], [822.5, 187.5], [826.5, 189.5], [826.5, 196.5], [825.5, 198.5], [825.5, 191.5], [825.5, 191.5], [826.5, 189.5], [825.5, 197.5]]}, -{"id": "000345", "submitted_by": "carpinx", "name": "Obelisco de Buenos Aires", "description": "The Obelisco de Buenos Aires (Obelisk of Buenos Aires) is a national historic monument and icon of Buenos Aires.", "website": "https://en.wikipedia.org/wiki/Obelisco_de_Buenos_Aires", "subreddit": "/r/argentina", "center": [1126.5, 641.5], "path": [[1124.5, 655.5], [1129.5, 655.5], [1127.5, 624.5], [1124.5, 624.5], [1124.5, 655.5]]}, -{"id": "000347", "submitted_by": "carpinx", "name": "San Martín crossing the Andes", "description": "The Crossing of the Andes (Spanish: Cruce de los Andes) was one of the most important feats in the Argentine and Chilean wars of independence, in which a combined army of Argentine soldiers and Chilean exiles invaded Chile leading to Chile's liberation from Spanish rule. The crossing of the Andes was a major step in the strategy devised by José de San Martín to defeat the royalist forces at their stronghold of Lima, Viceroyalty of Perú, and secure the Spanish-American independence movements.", "website": "", "subreddit": "/r/argentina", "center": [1250.5, 652.5], "path": [[1200.5, 664.5], [1199.5, 658.5], [1196.5, 656.5], [1199.5, 650.5], [1207.5, 645.5], [1213.5, 648.5], [1212.5, 654.5], [1216.5, 657.5], [1225.5, 648.5], [1225.5, 646.5], [1229.5, 645.5], [1230.5, 653.5], [1232.5, 650.5], [1233.5, 644.5], [1238.5, 644.5], [1238.5, 651.5], [1242.5, 646.5], [1242.5, 642.5], [1247.5, 642.5], [1246.5, 647.5], [1252.5, 640.5], [1252.5, 635.5], [1258.5, 636.5], [1257.5, 641.5], [1265.5, 634.5], [1266.5, 630.5], [1271.5, 632.5], [1269.5, 636.5], [1274.5, 641.5], [1280.5, 636.5], [1280.5, 632.5], [1286.5, 632.5], [1283.5, 636.5], [1288.5, 641.5], [1290.5, 663.5], [1202.5, 664.5]]}, -{"id": "000352", "submitted_by": "touhou r/place members", "name": "Kawashiro Nitori", "description": "Kawashiro Nitori is a character from the Touhou Project. She is one of the kappas, who in Touhou are a tech-savvy group. She was the first of the three Touhou artworks in this region to be constructed in this area, becoming established on the first day of the event. She was later attacked by a streamers. Later she was redesign into a leaning position to further avoid streamer attacks. Originally designed by BoopyLoops, redesigned by Roger 22 and Sakuya Izaoyi.", "website": "https://en.touhouwiki.net/wiki/Nitori_Kawashiro", "subreddit": "/r/touhou", "center": [485.5, 535.5], "path": [[469.5, 528.5], [501.5, 529.5], [501.5, 541.5], [469.5, 541.5], [469.5, 528.5]]}, -{"id": "000354", "submitted_by": "Youtube_Games123", "name": "The Nordic Union", "description": "A collection of countries in northern Europe.", "website": "", "subreddit": "/r/place_nordicunion, /r/AlandIslands, /r/Denmark, /r/FaroeIslands, /r/Greenland, /r/Iceland, /r/Norge, /r/SaamiPeople, /r/Suomi, /r/Sweden", "center": [501.5, 128.5], "path": [[187.5, 93.5], [187.5, 97.5], [207.5, 97.5], [207.5, 100.5], [235.5, 100.5], [235.5, 125.5], [267.5, 125.5], [267.5, 128.5], [270.5, 128.5], [270.5, 131.5], [273.5, 131.5], [273.5, 134.5], [276.5, 134.5], [276.5, 158.5], [340.5, 158.5], [340.5, 171.5], [433.5, 171.5], [433.5, 298.5], [540.5, 298.5], [541.5, 297.5], [541.5, 290.5], [542.5, 289.5], [554.5, 289.5], [555.5, 288.5], [555.5, 285.5], [594.5, 285.5], [594.5, 202.5], [634.5, 202.5], [634.5, 189.5], [635.5, 189.5], [635.5, 186.5], [634.5, 186.5], [634.5, 185.5], [636.5, 182.5], [636.5, 179.5], [634.5, 179.5], [634.5, 138.5], [799.5, 138.5], [799.5, 89.5], [893.5, 89.5], [893.5, 69.5], [886.5, 69.5], [886.5, 67.5], [840.5, 67.5], [840.5, 70.5], [707.5, 70.5], [707.5, 35.5], [538.5, 35.5], [538.5, 33.5], [536.5, 31.5], [534.5, 31.5], [532.5, 33.5], [530.5, 31.5], [528.5, 31.5], [526.5, 33.5], [526.5, 35.5], [501.5, 35.5], [501.5, 33.5], [499.5, 31.5], [497.5, 31.5], [496.5, 32.5], [495.5, 32.5], [494.5, 31.5], [492.5, 31.5], [490.5, 33.5], [490.5, 35.5], [363.5, 35.5], [359.5, 39.5], [355.5, 35.5], [296.5, 35.5], [294.5, 33.5], [254.5, 33.5], [252.5, 35.5], [215.5, 35.5], [215.5, 93.5], [187.5, 93.5]]}, -{"id": "000359", "submitted_by": "carpinx", "name": "Mafalda", "description": "Mafalda is an Argentinian comic strip written and drawn by cartoonist Quino.", "website": "https://en.wikipedia.org/wiki/Mafalda", "subreddit": "/r/argentina", "center": [1179.5, 648.5], "path": [[1174.5, 664.5], [1174.5, 658.5], [1170.5, 657.5], [1168.5, 653.5], [1170.5, 650.5], [1173.5, 650.5], [1168.5, 648.5], [1167.5, 644.5], [1169.5, 638.5], [1172.5, 636.5], [1172.5, 632.5], [1186.5, 632.5], [1186.5, 637.5], [1188.5, 638.5], [1191.5, 643.5], [1191.5, 648.5], [1186.5, 650.5], [1190.5, 651.5], [1191.5, 656.5], [1188.5, 658.5], [1187.5, 660.5], [1187.5, 663.5], [1186.5, 665.5], [1174.5, 664.5]]}, -{"id": "000361", "submitted_by": "Flamberge3000", "name": "Overly Sarcastic Productions", "description": "An edutainment YouTube channel based around discussing literature, mythology, and history with sarcasm and attitude.", "website": "https://www.youtube.com/c/OverlySarcasticProductionsChannel/featured", "subreddit": "/r/osp", "center": [1704.5, 1635.5], "path": [[1706.5, 1626.5], [1706.5, 1624.5], [1704.5, 1622.5], [1700.5, 1622.5], [1697.5, 1624.5], [1693.5, 1626.5], [1692.5, 1627.5], [1691.5, 1632.5], [1695.5, 1638.5], [1699.5, 1636.5], [1699.5, 1642.5], [1702.5, 1643.5], [1702.5, 1648.5], [1714.5, 1648.5], [1714.5, 1626.5]]}, -{"id": "000362", "submitted_by": "DarknDeepNut", "name": "Dofus", "description": "Dofus is a famous massively-multiplayer online role-playing game in France. It was created in 2004 by French studio Ankama.\n\nThe sprite, the Emerald Dofus item in the game, was made by Haykira, a pixel artist during the Dofus Retro Temporis server's start.", "website": "https://www.dofus.com/", "subreddit": "/r/PlaceFrance, /r/dofus", "center": [73.5, 1766.5], "path": [[58.5, 1749.5], [59.5, 1780.5], [94.5, 1781.5], [78.5, 1749.5]]}, -{"id": "000365", "submitted_by": "ScarfKat", "name": "Teddy and Ben", "description": "Characters from a web series by Wavetro. It was cut short after it's first episode by the creator leaving his YouTube career to pursue new interests.", "website": "https://wavetro.net/", "subreddit": "", "center": [1056.5, 407.5], "path": [[1050.5, 401.5], [1062.5, 401.5], [1062.5, 413.5], [1050.5, 413.5]]}, -{"id": "000366", "submitted_by": "zL2noob-", "name": "The Longing", "description": "Shade, the main character from The Longing, is hiding behind Cookie Clicker, a game that the devs of The Longing were inspired by. THE LONGING is an unusual mix of an adventure and an idle-game. The player controls a Shade, who is told to keep watch of a sleeping King for 400 days until he awakens. The catch: These 400 days start to count down in real-time.", "website": "http://www.399d-23h-59m-59s.com/", "subreddit": "/r/TheLonging", "center": [1563.5, 185.5], "path": [[1559.5, 179.5], [1569.5, 179.5], [1568.5, 181.5], [1568.5, 182.5], [1566.5, 183.5], [1567.5, 185.5], [1566.5, 185.5], [1566.5, 189.5], [1567.5, 189.5], [1567.5, 192.5], [1559.5, 192.5]]}, -{"id": "000367", "submitted_by": "Oofio128", "name": "Rainbow Dash", "description": "An image of the My Little Pony character Rainbow Dash saluting to the future and the world.\n\nThis artwork was part of the first piece of art that the MLP fandom worked on at the start of r/place. However, after getting decapitated by the Ukraine flag numerous times and being raided by various Twitch streamers early on, the MLP fandom was forced to move and rework this artwork multiple times until it reached its final iteration as shown. This depiction of the element of loyalty and the caption below it now stand as a representation of the fandom's will to persevere despite the end of Friendship is Magic in 2019.", "website": "https://mlp.fandom.com/wiki/Rainbow_Dash", "subreddit": "/r/MyLittlePony", "center": [927.5, 1858.5], "path": [[925.5, 1830.5], [892.5, 1830.5], [892.5, 1885.5], [961.5, 1886.5], [961.5, 1830.5], [925.5, 1830.5]]}, -{"id": "000368", "submitted_by": "Virtual_Cheek_7633", "name": "Touhou Project", "description": "Touhou is a bullet hell game. These three pixel arts are Nitori, Bad Apple, and Touhou's kanji logo 東方, and represent the Touhou r/place group’s first major expansion. Nitori was built first on top of the Rainbow Road, and eventually supplanted the latter with a black background to defend against the void that formed above this art piece. Then Bad Apple was built, and then the Touhou logo. The three art pieces faced multiple menaces as they were placed near the American flag, which was prone to being invaded, and the purple void created by xQc grazed their position once. They were later raided by a Peruvian streamer multiple times, and were forced to cede a large chunk of area in the end with a redesign.", "website": "https://en.wikipedia.org/wiki/Touhou_Project", "subreddit": "r/Touhou", "center": [497.5, 527.5], "path": [[468.5, 528.5], [468.5, 541.5], [511.5, 541.5], [511.5, 528.5], [527.5, 528.5], [527.5, 513.5], [480.5, 513.5], [480.5, 527.5]]}, -{"id": "000371", "submitted_by": "SkytAsul", "name": "INSA","description": "INSA is a network of French public engineering schools.\n \nThe letters on the right represent the location of its schools (with its associated color): L for Lyon, T for Toulouse, H for Hauts-de-France, C for Centre Val de Loire, orange R for Rennes, blue R for Rouen and S for Strasbourg.", "website": "https://www.groupe-insa.fr/", "subreddit": "/r/insa/", "center": [20.5, 1074.5], "path": [[0.5, 1068.5],[40.5, 1068.5], [40.5, 1079.5], [0.5, 1079.5]]}, -{"id": "000376", "submitted_by": "GeoJayman", "name": "Fluttershy", "description": "Fluttershy is one of the main characters in My Little Pony: Friendship is Magic, and is known for representing the element of kindness. This art was added along the way while maintaining the larger Derpy Hooves art.", "website": "https://mlp.fandom.com/wiki/Fluttershy", "subreddit": "/r/MyLittlePony, /r/MLP_Pixel", "center": [1991.5, 364.5], "path": [[1986.5, 357.5], [1983.5, 360.5], [1983.5, 362.5], [1984.5, 363.5], [1984.5, 364.5], [1986.5, 366.5], [1986.5, 367.5], [1987.5, 368.5], [1988.5, 368.5], [1989.5, 369.5], [1999.5, 369.5], [1999.5, 363.5], [1997.5, 361.5], [1994.5, 361.5], [1994.5, 363.5], [1992.5, 363.5], [1992.5, 357.5], [1986.5, 357.5]]}, -{"id": "000377", "submitted_by": "sk1pzy", "name": "Bow from Inanimate Insanity", "description": "Bow from Inanimate Insanity holding up the earth (r/BuildTheEarth)", "website": "https://www.inanimateinsanity.com/", "subreddit": "/r/inanimateinsanity", "center": [68.5, 638.5], "path": [[60.5, 632.5], [60.5, 642.5], [76.5, 642.5], [76.5, 632.5], [74.5, 632.5], [74.5, 633.5], [73.5, 633.5], [73.5, 634.5], [72.5, 634.5], [72.5, 635.5], [69.5, 635.5], [69.5, 633.5], [70.5, 633.5], [70.5, 632.5], [69.5, 632.5], [69.5, 635.5], [67.5, 635.5], [67.5, 632.5], [66.5, 632.5], [66.5, 633.5], [67.5, 633.5], [67.5, 635.5], [64.5, 635.5], [63.5, 635.5], [63.5, 634.5], [63.5, 633.5], [62.5, 633.5], [61.5, 633.5], [61.5, 632.5]]}, -{"id": "000378", "submitted_by": "Virtual_Cheek_7633", "name": "Touhou 6: Embodiment of Scarlet Devil", "description": "Logo from Touhou 6: Embodiment of Scarlet Devil, depicting the character Kirisame Marisa.", "website": "https://en.wikipedia.org/wiki/Embodiment_of_Scarlet_Devil", "subreddit": "/r/touhou, /r/PlaceStart", "center": [1122.5, 1985.5], "path": [[1109.5, 1973.5], [1109.5, 1997.5], [1135.5, 1996.5], [1135.5, 1973.5]]}, -{"id": "000381", "submitted_by": "Narnall", "name": "Starscape", "description": "A small artwork relating to the Roblox game Starscape", "website": "https://www.roblox.com/games/679715583/Starscape-Beta", "subreddit": "/r/starscaperoblox", "center": [1663.5, 837.5], "path": [[1693.5, 832.5], [1632.5, 833.5], [1631.5, 842.5], [1693.5, 842.5]]}, -{"id": "000383", "submitted_by": "Koton_Bads", "name": "r/unixporn", "description": "r/unixporn - the home for *NIX customization! Submit screenshots of all your *NIX desktops, themes, and nifty configurations, or submit anything else that will make ricers happy. Maybe a server running on an Amiga, or a thinkpad signed by Bjarne Stroustrup? Show the world how sexy your computer can be!", "website": "https://unixporn.github.io/", "subreddit": "/r/unixporn", "center": [10.5, 761.5], "path": [[0.5, 765.5], [20.5, 765.5], [20.5, 756.5], [0.5, 756.5], [0.5, 765.5]]}, -{"id": "000398", "submitted_by": "migueloni_", "name": "Flag of Costa Rica", "description": "National flag that includes 7 hearts (one per province), whitetail deer (national symbol), Arenal volcano eruption (1968), red-eyed frog, Lizano sauce, Pura Vida popular greeting and slogan, sloth (national symbol), hummingbird and country purple girl (national symbol)", "website": "https://en.wikipedia.org/wiki/Costa_Rica", "subreddit": "/r/Ticos, /r/costarica", "center": [1432.5, 436.5], "path": [[1246.5, 426.5], [1621.5, 427.5], [1621.5, 446.5], [1246.5, 446.5], [1246.5, 426.5]]}, -{"id": "000399", "submitted_by": "Flamberge3000", "name": "Tumindig artwork", "description": "The original Tumindig artwork was created by Filipino satirist and cartoonist Kevin Eric Raymundo. It is a Filipino symbol of standing up against tyranny especially when the threat of dictatorship looms near the country.", "website": "https://en.wikipedia.org/wiki/Tumindig", "subreddit": "/r/Philippines", "center": [1354.5, 624.5], "path": [[1374.5, 599.5], [1333.5, 599.5], [1333.5, 648.5], [1374.5, 648.5]]}, -{"id": "000400", "submitted_by": "RealJordanTRS", "name": "Chicago Bears logo", "description": "The logo for the American Football team known as the Chicago Bears, whom are one of the oldest teams currently in the NFL (National Football League)", "website": "https://www.chicagobears.com/", "subreddit": "", "center": [793.5, 565.5], "path": [[773.5, 548.5], [813.5, 548.5], [813.5, 581.5], [773.5, 581.5]]}, -{"id": "000407", "submitted_by": "flippin_egg", "name": "Olive", "description": "The protagonist of the Purrfect Apawcalypse series", "website": "https://purrfectapawcalypse.fandom.com/wiki/Olive_Higgins", "subreddit": "", "center": [492.5, 483.5], "path": [[486.5, 478.5], [486.5, 478.5], [486.5, 488.5], [486.5, 488.5], [497.5, 488.5], [497.5, 478.5]]}, -{"id": "000422", "submitted_by": "Killer_The_Cat", "name": "Flag of Nunavut", "description": "", "website": "", "subreddit": "/r/nunavut", "center": [201.5, 457.5], "path": [[193.5, 462.5], [209.5, 462.5], [209.5, 452.5], [193.5, 452.5]]}, -{"id": "000429", "submitted_by": "TL_H", "name": "Ninji", "description": "Ninji is an enemy from the Super Mario Bros. series, appearing in Super Mario Bros. 2 (USA), Super Mario World, Super Mario Run, Super Mario Maker 2, and more games. Super Mario Maker 2's v2.0.0 update added a Ninji Speedruns mode, where players complete to beat levels designed by Nintendo in the fastest time possible. In that mode, you can race against other players' times, with their ghosts appearing as Ninjis.", "website": "https://discord.gg/5ECWF94", "subreddit": "/r/MarioMaker2", "center": [1767.5, 145.5], "path": [[1762.5, 139.5], [1762.5, 151.5], [1772.5, 151.5], [1772.5, 139.5]]}, -{"id": "000430", "submitted_by": "Killer_The_Cat", "name": "Flag of Colorado", "description": "The flag of the US State of Colorado.", "website": "", "subreddit": "/r/colorado", "center": [10.5, 738.5], "path": [[19.5, 731.5], [0.5, 731.5], [0.5, 744.5], [19.5, 744.5]]}, -{"id": "000433", "submitted_by": "Killer_The_Cat", "name": "Flag of Denver", "description": "The flag of Denver, Colorado, United States.", "website": "", "subreddit": "/r/denver", "center": [10.5, 750.5], "path": [[19.5, 745.5], [0.5, 745.5], [0.5, 755.5], [19.5, 755.5]]}, -{"id": "000448", "submitted_by": "CornMayor", "name": "Cuca from XTale (Undertale AU)", "description": "Cuca is a butterfly. Became a local character on Discord Server. XTale is a YT animation series by Jael Peñaloza", "website": "https://www.youtube.com/c/JakeiHazen", "subreddit": "/r/XTale", "center": [1850.5, 1706.5], "path": [[1851.5, 1699.5], [1855.5, 1708.5], [1852.5, 1709.5], [1850.5, 1711.5], [1844.5, 1706.5], [1844.5, 1704.5], [1849.5, 1706.5], [1849.5, 1703.5], [1850.5, 1703.5], [1850.5, 1700.5]]}, -{"id": "000450", "submitted_by": "bermuda__", "name": "Newgrounds", "description": "A site for online animations and games", "website": "https://www.newgrounds.com", "subreddit": "/r/newgrounds", "center": [903.5, 1921.5], "path": [[878.5, 1947.5], [878.5, 1895.5], [929.5, 1896.5], [929.5, 1947.5]]}, -{"id": "000457", "submitted_by": "SA_AVOCADO", "name": "Zyzz tribute", "description": "A tribute to the late Aziz (Zyzz) Shavershian, a Russian-born Australian bodybuilder, who gained a cult following after posting on YouTube.", "website": "https://en.wikipedia.org/wiki/Aziz_Shavershian", "subreddit": "/r/Zyzz", "center": [1381.5, 1689.5], "path": [[1332.5, 1612.5], [1332.5, 1682.5], [1332.5, 1753.5], [1439.5, 1754.5], [1439.5, 1658.5], [1417.5, 1658.5], [1413.5, 1654.5], [1413.5, 1638.5], [1394.5, 1637.5], [1394.5, 1612.5]]}, -{"id": "000255", "submitted_by": "Constant_Disillusion", "name": "Red vs. Blue Poster", "description": "Red vs. Blue or RvB is a Halo-based machinima and animated web series created by Rooster Teeth. The 19 on the helmet signifies the 19th anniversary of the series on April 1, 2022, and the heart on the border with RWBY shows the friendship between the communities as Rooster Teeth creations.", "website": "", "subreddit": "/r/RedvsBlue", "center": [461.5, 698.5], "path": [[449.5, 713.5], [472.5, 713.5], [472.5, 682.5], [449.5, 682.5]]}, -{"id": "000256", "submitted_by": "Git_Good", "name": "Half-life 3 Lambda", "description": "Half-life is a first-person shooter series developed by Valve. Half-Life 2: Episode two was released alongside Team Fortress 2 as part of the Orange Box Collection, and also runs on the Source engine.nnFans of the series have been waiting for a third instalment to the main series since 2007, and jokes about the wait time and nonexistent release date of 'Half-Life 3' has become one of the most iconic memes within the gaming community.", "website": "https://www.half-life.com", "subreddit": "/r/HalfLife", "center": [1566.5, 1926.5], "path": [[1559.5, 1919.5], [1573.5, 1919.5], [1573.5, 1933.5], [1562.5, 1933.5], [1562.5, 1932.5], [1562.5, 1931.5], [1559.5, 1931.5]]}, -{"id": "000257", "submitted_by": "iTzHard", "name": "Saudi Arabia", "description": "The Saudi flag drawn by the r/SaudiArabia Discord displaying the traditional palm trees and swords, a mabkhara, a dallah, and a peepo wearing a thobe.", "website": "", "subreddit": "/r/SaudiArabia", "center": [1618.5, 1059.5], "path": [[1645.5, 1044.5], [1645.5, 1074.5], [1591.5, 1074.5], [1591.5, 1044.5]]}, -{"id": "000260", "submitted_by": "lEternalDarkness", "name": "Okami", "description": "Features Amaterasu, the lupine protagonist of the video game 'Okami' (2006). Placement organized mainly by the Okami speedrunning community, and contributed to by all loving fans.", "website": "https://okami.speedruns.wiki/Main_Page", "subreddit": "/r/okami", "center": [999.5, 398.5], "path": [[989.5, 389.5], [989.5, 389.5], [989.5, 407.5], [1007.5, 407.5], [1010.5, 405.5], [1010.5, 389.5], [1010.5, 389.5], [1010.5, 389.5]]}, -{"id": "000275", "submitted_by": "Viktor_Denmark", "name": "Flag of Denmark", "description": "The Danish flag containing a swan (the national bird of Denmark), a Lego brick and the famous Lego astronaut, since Lego is a Danish company. The three shadowy figures are Egon Olsen, Benny Frandsen and Kjeld Jensen. They make up the group called 'Olsen-banden', which is a series of Danish crime comedies.", "website": "https://en.wikipedia.org/wiki/Denmark", "subreddit": "/r/Denmark", "center": [602.5, 317.5], "path": [[555.5, 285.5], [555.5, 289.5], [541.5, 289.5], [541.5, 298.5], [536.5, 298.5], [536.5, 343.5], [689.5, 343.5], [689.5, 320.5], [638.5, 320.5], [638.5, 294.5], [658.5, 294.5], [658.5, 285.5], [555.5, 285.5]]}, -{"id": "000281", "submitted_by": "Smirkydevil52", "name": "Cosmere R.A.F.O.", "description": "The Cosmere is the greater universe in which The Stormlight Archive - and many of Brandon Sanderson's other adult fiction books - take place. RAFO is a term Brandon Sanderson uses at signings as a non-answer for prying fans. It means 'Read and Find Out.' When Brandon uses this, it is neutral, and neither means one is right or one is wrong. Many things are RAFO'd because they would spoil future books.", "website": "", "subreddit": "/r/Cosmere", "center": [881.5, 949.5], "path": [[861.5, 924.5], [901.5, 924.5], [901.5, 974.5], [861.5, 974.5]]}, -{"id": "000284", "submitted_by": "jessneedsgeesuslol", "name": "Gir from Invader Zim", "description": "Gir from the show 'Invader Zim'", "website": "", "subreddit": "/r/invaderzim", "center": [1340.5, 1330.5], "path": [[1332.5, 1344.5], [1331.5, 1344.5], [1347.5, 1317.5], [1332.5, 1317.5], [1332.5, 1344.5], [1347.5, 1344.5], [1348.5, 1318.5], [1347.5, 1318.5], [1348.5, 1318.5], [1347.5, 1318.5], [1348.5, 1318.5], [1347.5, 1318.5], [1347.5, 1318.5], [1348.5, 1317.5], [1348.5, 1318.5], [1349.5, 1318.5], [1347.5, 1317.5], [1331.5, 1344.5]]}, -{"id": "000287", "submitted_by": "nostalgicsobbing", "name": "Arctic Monkeys discography and references", "description": "This space contains six (6) studio albums and (1) solo EP by the British rock band Arctic monkeys. These albums are named Tranquility Base Hotel & Casino, Suck It And See (although in this screenshot it is still unfinished), Humbug, Whatever People Say I Am; That's What I'm Not, Favourite Worst Nightmare, AM, and the solo EP by the band's lead singer Alex Turner: Submarine. There is also a reference to the Monkeys' fandom favorite meme: 'bric[c]' and a song of theirs called 505 from the Favourite Worst Nightmare album.", "website": "", "subreddit": "/r/arcticmonkeys", "center": [1338.5, 363.5], "path": [[1315.5, 345.5], [1316.5, 381.5], [1361.5, 382.5], [1360.5, 344.5], [1315.5, 344.5], [1361.5, 344.5], [1360.5, 344.5]]}, -{"id": "000298", "submitted_by": "SimpleAmbassador", "name": "Futurama", "description": "The Futurama section, created by r/futurama users (with help from several allied communities). It depicts many characters from the show, as well as their spaceship The Planet Express Ship, seen flying against a starry background. Underneath that is the subreddit's handle. Allied communities featured in this space include:\nr/IASIP - The main cast of 'It's Always Sunny in Philadelphia' can be seen in the taskbar section.\nHolly HQ - the 'H' trans flag behind the spaceship.\nr/byzantium - The Byzantium flag to the right.\nr/panama - The Panamanian flag was flying from the ship's turret for much of r/place.\nMushrooms - placed by a lone redditor in memoriam of a loved one.\nPurple Dragon - Another small community sharing space with r/futurama.\nr/kiminonawa - Towards the very end of r/place, a mini version of the Comet Tiamat from the anime film 'Your Name' was also added to the canvas above the Planet Express.", "website": "", "subreddit": "/r/futurama, /r/IASIP, /r/panama, /r/kiminonawa, /r/byzantium, /r/PlaceStart", "center": [1252.5, 1975.5], "path": [[1201.5, 1954.5], [1299.5, 1954.5], [1300.5, 1970.5], [1286.5, 1972.5], [1288.5, 2000.5], [1219.5, 1999.5], [1219.5, 1971.5], [1201.5, 1971.5]]}, -{"id": "000303", "submitted_by": "PrincesStarfire1234", "name": "Five Nights at Freddy's", "description": "Banner for the popular indie horror franchise Five Nights at Freddy's (FNAF). To the left sits the iconic Purple Guy, and to the right is a version of Michael Afton from a fan comic called Children Rekindled. The banner was originally going to be bigger and would sit underneath My Little Pony, but was made limited due to complications with the early Ukraine flag, several bot raids and streamer raids, multiple fights with the Denmark flag, and trolls attempting to change the words 'Nights' and 'Freddy's' into offensive words. It had been wiped out and messed with at least 3 times, but was eventually restored thanks to allies from MLP, Deltarune, Asexual Flag gang, the Swifties, and Berserk.", "website": "https://en.wikipedia.org/wiki/Five_Nights_at_Freddy%27s", "subreddit": "/r/fivenightsatfreddys", "center": [641.5, 281.5], "path": [[595.5, 277.5], [595.5, 285.5], [688.5, 284.5], [688.5, 281.5], [689.5, 281.5], [689.5, 277.5], [595.5, 277.5]]}, -{"id": "000307", "submitted_by": "ryanlllwolf", "name": "Ryan the Bun (ITBERYAN)", "description": "A small icon representing 'Ryan the Bun' a content creator known for being a bunny with a bowtie, closely linked with the VRChat community.", "website": "https://twitter.com/ITBERYAN2", "subreddit": "/r/VRChat", "center": [983.5, 110.5], "path": [[979.5, 106.5], [979.5, 113.5], [987.5, 113.5], [987.5, 106.5], [979.5, 106.5]]}, -{"id": "000313", "submitted_by": "Dibblepistols", "name": "Foxhole Map", "description": "The first of three artworks made by a group of gamers who play the cooperative sandbox massively-multiplayer action-strategy video game 'Foxhole'. The piece depicts a map from the game colored in green and blue to represent the 'Colonial' and 'Warden' (logos at the bottom of the map) battle for control over the fictional land of Caoiva.", "website": "https://www.foxholegame.com", "subreddit": "/r/foxholegame", "center": [727.5, 573.5], "path": [[701.5, 533.5], [755.5, 547.5], [755.5, 601.5], [755.5, 602.5], [754.5, 603.5], [753.5, 603.5], [753.5, 606.5], [753.5, 607.5], [701.5, 607.5], [701.5, 557.5], [701.5, 556.5], [704.5, 556.5], [705.5, 556.5], [705.5, 550.5], [701.5, 550.5], [701.5, 533.5], [753.5, 533.5]]}, -{"id": "000314", "submitted_by": "Future_Breakfast_647", "name": "Will Wood - Love Me, Normally + Mr boy", "description": "A pixel rendition of the cover art for Will Woods single 'Love Me, Normally' + Will's pet rat Mr nBoy. This was constructed with the help of r/ena and the green lattice after our previous location on the left wall (above the wave) was destroyed.", "website": "https://www.youtube.com/watch?v=yZf7EoV76Po&ab_channel=WillWood-OFFICIAL", "subreddit": "/r/willwood", "center": [1084.5, 400.5], "path": [[1099.5, 407.5], [1063.5, 407.5], [1063.5, 400.5], [1077.5, 400.5], [1077.5, 390.5], [1099.5, 390.5]]}, -{"id": "000316", "submitted_by": "Eclipsed_Luna", "name": "Say Gay Florida", "description": "A depiction of the state of Florida with the words 'Say Gay' on it. A collaboration by r/placepride and r/transplace, it's created to combat the 'Don't Say Gay' bill in Florida.", "website": "https://en.wikipedia.org/wiki/Disney_and_Florida%27s_%22Don%27t_Say_Gay%22_bill", "subreddit": "/r/PlacePride, /r/TransPlace", "center": [555.5, 492.5], "path": [[553.5, 493.5], [553.5, 492.5], [553.5, 491.5], [552.5, 491.5], [552.5, 489.5], [548.5, 489.5], [548.5, 490.5], [547.5, 490.5], [547.5, 489.5], [546.5, 489.5], [546.5, 488.5], [545.5, 488.5], [545.5, 487.5], [541.5, 487.5], [541.5, 486.5], [540.5, 486.5], [540.5, 483.5], [551.5, 483.5], [551.5, 484.5], [557.5, 484.5], [557.5, 483.5], [558.5, 483.5], [558.5, 484.5], [559.5, 484.5], [559.5, 488.5], [560.5, 488.5], [560.5, 490.5], [562.5, 490.5], [562.5, 491.5], [564.5, 491.5], [564.5, 490.5], [564.5, 491.5], [565.5, 491.5], [565.5, 492.5], [564.5, 492.5], [564.5, 494.5], [563.5, 494.5], [563.5, 496.5], [564.5, 496.5], [564.5, 501.5], [563.5, 501.5], [563.5, 503.5], [562.5, 503.5], [562.5, 504.5], [558.5, 504.5], [558.5, 503.5], [557.5, 503.5], [557.5, 501.5], [556.5, 501.5], [556.5, 500.5], [555.5, 500.5], [555.5, 498.5], [554.5, 498.5], [554.5, 495.5], [553.5, 495.5], [553.5, 491.5], [552.5, 491.5]]}, -{"id": "000326", "submitted_by": "Possible-Cress-5453", "name": "Kaaba", "description": "Kaaba is a building at the center of Islam's most important mosque, the Masjid al-Haram in Mecca, Saudi Arabia. Made by norwegian community 'Kanelbollens hjemland'.", "website": "https://discord.gg/Gc8Y2xs7W7", "subreddit": "", "center": [789.5, 129.5], "path": [[779.5, 120.5], [779.5, 120.5], [779.5, 120.5], [799.5, 120.5], [799.5, 138.5], [779.5, 138.5], [779.5, 120.5]]}, -{"id": "000335", "submitted_by": "jessneedsgeesuslol", "name": "MCR Demolition Lovers", "description": "From the 'Three Cheers For Sweet Revenge' album cover by My Chemical Romance", "website": "", "subreddit": "/r/MyChemicalRomance", "center": [1738.5, 1341.5], "path": [[1727.5, 1334.5], [1724.5, 1332.5], [1726.5, 1331.5], [1724.5, 1357.5], [1754.5, 1331.5], [1753.5, 1333.5], [1730.5, 1329.5], [1725.5, 1328.5], [1721.5, 1331.5], [1721.5, 1354.5], [1748.5, 1357.5], [1750.5, 1353.5], [1754.5, 1342.5], [1754.5, 1336.5], [1755.5, 1330.5], [1747.5, 1329.5], [1751.5, 1352.5], [1754.5, 1356.5], [1755.5, 1350.5], [1754.5, 1342.5], [1756.5, 1331.5], [1759.5, 1330.5], [1753.5, 1328.5]]}, -{"id": "000341", "submitted_by": "Thalros", "name": "EsfandTV's sfandL", "description": "Popular Twitch streamer Esfand 'the #1 ret. paladin' TV's artwork of his emote 'esfandL'.", "website": "https://www.twitch.tv/esfandtv", "subreddit": "/r/EsfandTV", "center": [645.5, 1019.5], "path": [[625.5, 1000.5], [665.5, 1000.5], [665.5, 1037.5], [625.5, 1037.5]]}, -{"id": "000395", "submitted_by": "ThatMJGuy", "name": "Imagine Dragons Evolve Logo", "description": "A logo that represents Imagine Dragons' 3rd studio album 'Evolve'. It includes the signature E's that are associated with the Evolve name, as well as a backdrop of colors that represents their song 'Believer' from the same album.", "website": "https://www.imaginedragonsmusic.com", "subreddit": "/r/imaginedragons", "center": [44.5, 445.5], "path": [[37.5, 440.5], [51.5, 440.5], [51.5, 450.5], [37.5, 450.5]]}, -{"id": "000402", "submitted_by": "FilmsxKalypsx0", "name": "SCP:F logo", "description": "The SCP:F (Special Containment Procedures Foundation) is a fictional organization whose main goal is to contain anomalies.", "website": "https://en.wikipedia.org/wiki/SCP_Foundation", "subreddit": "/r/SCP, /r/PlaceSCP, /r/DankMemesFromSite19", "center": [628.5, 402.5], "path": [[633.5, 393.5], [634.5, 392.5], [622.5, 392.5], [622.5, 411.5], [634.5, 411.5]]}, -{"id": "000403", "submitted_by": "FilmsxKalypsx0", "name": "GOC logo", "description": "The GOC (Global Occult Coalition) is another protagonist in the SCP universe. They are the opposite of the Foundation; they destroy all anomalies. They are nicknamed the Bookburners.", "website": "https://en.wikipedia.org/wiki/SCP_Foundation", "subreddit": "/r/SCP, /r/PlaceSCP, /r/DankMemesFromSite19", "center": [628.5, 421.5], "path": [[634.5, 413.5], [622.5, 413.5], [622.5, 429.5], [634.5, 429.5]]}, -{"id": "000404", "submitted_by": "Slight-Department866", "name": "Z event flag", "description": "the Z event is a french charity event organised by the french streamer Zerator and it raised over 10m€ in the 2021 edition for 'Action against Hunger' with the help of 50 streamers.", "website": "https://zevent.fr/", "subreddit": "/r/ZEvent", "center": [1221.5, 1454.5], "path": [[1166.5, 1419.5], [1166.5, 1489.5], [1276.5, 1489.5], [1276.5, 1418.5], [1166.5, 1419.5]]}, -{"id": "000409", "submitted_by": "USSMunkfish", "name": "Stargate", "description": "A military science fiction movie and television franchise involving travel to other planets through a ring-shaped 'Stargate'.", "website": "", "subreddit": "/r/stargate, /r/place_CentralAlliance", "center": [530.5, 1116.5], "path": [[512.5, 1101.5], [509.5, 1108.5], [510.5, 1130.5], [550.5, 1130.5], [551.5, 1118.5], [551.5, 1108.5], [547.5, 1101.5]]}, -{"id": "000413", "submitted_by": "ElsaFrozen2013", "name": "NASCAR - Dale Earnhardt, Sr. Tribute", "description": "Dale Earnhardt, Sr. aka 'The Intimidator,'' most known for piloting the #3 Chevrolet in the NASCAR Cup Series, is a legendary seven-time champion of the series. This artwork was created by the r/NASCAR subreddit to honor him.", "website": "https://en.wikipedia.org/wiki/Dale_Earnhardt", "subreddit": "/r/NASCAR", "center": [780.5, 1536.5], "path": [[754.5, 1511.5], [797.5, 1511.5], [797.5, 1542.5], [811.5, 1542.5], [811.5, 1555.5], [805.5, 1561.5], [777.5, 1561.5], [777.5, 1560.5], [769.5, 1560.5], [769.5, 1544.5], [753.5, 1544.5], [753.5, 1511.5]]}, -{"id": "000447", "submitted_by": "MortySmiiiith", "name": "Manneken Pis", "description": "'The little boy that pees' is one of the most known belgian statue, it's located in Bruxelles.", "website": "https://fr.wikipedia.org/wiki/Manneken-Pis", "subreddit": "/r/belgium", "center": [1307.5, 956.5], "path": [[1307.5, 902.5], [1313.5, 904.5], [1318.5, 907.5], [1319.5, 923.5], [1327.5, 929.5], [1330.5, 934.5], [1328.5, 940.5], [1318.5, 947.5], [1316.5, 954.5], [1316.5, 963.5], [1309.5, 972.5], [1313.5, 977.5], [1317.5, 982.5], [1319.5, 990.5], [1319.5, 995.5], [1323.5, 993.5], [1321.5, 990.5], [1328.5, 990.5], [1329.5, 994.5], [1330.5, 997.5], [1330.5, 1000.5], [1292.5, 1000.5], [1290.5, 996.5], [1293.5, 994.5], [1292.5, 991.5], [1288.5, 988.5], [1288.5, 973.5], [1290.5, 963.5], [1286.5, 959.5], [1286.5, 955.5], [1292.5, 952.5], [1294.5, 945.5], [1300.5, 937.5], [1305.5, 930.5], [1301.5, 926.5], [1299.5, 926.5], [1296.5, 913.5], [1297.5, 907.5], [1302.5, 904.5]]}, -{"id": "000454", "submitted_by": "HurrikateOsu", "name": "NikoPog", "description": "Niko, the cat-person, from the video game 'Oneshot' looking in a state of awe.", "website": "", "subreddit": "/r/oneshot", "center": [1092.5, 1652.5], "path": [[1080.5, 1633.5], [1081.5, 1633.5], [1081.5, 1634.5], [1082.5, 1634.5], [1083.5, 1634.5], [1083.5, 1635.5], [1084.5, 1635.5], [1084.5, 1636.5], [1085.5, 1636.5], [1085.5, 1637.5], [1086.5, 1637.5], [1087.5, 1637.5], [1089.5, 1637.5], [1089.5, 1637.5], [1090.5, 1637.5], [1091.5, 1637.5], [1092.5, 1637.5], [1092.5, 1638.5], [1095.5, 1638.5], [1096.5, 1638.5], [1097.5, 1639.5], [1100.5, 1639.5], [1100.5, 1640.5], [1102.5, 1640.5], [1102.5, 1640.5], [1102.5, 1639.5], [1103.5, 1639.5], [1105.5, 1639.5], [1105.5, 1638.5], [1112.5, 1638.5], [1112.5, 1645.5], [1111.5, 1645.5], [1111.5, 1648.5], [1110.5, 1649.5], [1110.5, 1650.5], [1120.5, 1658.5], [1120.5, 1662.5], [1119.5, 1663.5], [1117.5, 1663.5], [1117.5, 1664.5], [1112.5, 1664.5], [1112.5, 1663.5], [1111.5, 1663.5], [1108.5, 1663.5], [1108.5, 1662.5], [1107.5, 1662.5], [1105.5, 1662.5], [1105.5, 1663.5], [1105.5, 1664.5], [1106.5, 1664.5], [1106.5, 1667.5], [1105.5, 1666.5], [1103.5, 1662.5], [1102.5, 1662.5], [1102.5, 1664.5], [1099.5, 1664.5], [1099.5, 1666.5], [1094.5, 1666.5], [1094.5, 1667.5], [1092.5, 1667.5], [1092.5, 1668.5], [1091.5, 1668.5], [1091.5, 1669.5], [1091.5, 1668.5], [1090.5, 1668.5], [1088.5, 1668.5], [1088.5, 1669.5], [1087.5, 1669.5], [1087.5, 1670.5], [1086.5, 1669.5], [1085.5, 1669.5], [1085.5, 1670.5], [1084.5, 1669.5], [1083.5, 1669.5], [1083.5, 1670.5], [1082.5, 1670.5], [1079.5, 1667.5], [1079.5, 1664.5], [1080.5, 1663.5], [1080.5, 1661.5], [1079.5, 1661.5], [1078.5, 1661.5], [1078.5, 1662.5], [1077.5, 1662.5], [1077.5, 1664.5], [1076.5, 1664.5], [1076.5, 1665.5], [1075.5, 1666.5], [1075.5, 1664.5], [1075.5, 1664.5], [1076.5, 1664.5], [1076.5, 1661.5], [1076.5, 1660.5], [1074.5, 1660.5], [1073.5, 1660.5], [1073.5, 1661.5], [1072.5, 1661.5], [1072.5, 1662.5], [1071.5, 1662.5], [1072.5, 1660.5], [1073.5, 1659.5], [1074.5, 1658.5], [1074.5, 1657.5], [1072.5, 1657.5], [1072.5, 1656.5], [1070.5, 1656.5], [1070.5, 1655.5], [1068.5, 1655.5], [1068.5, 1654.5], [1067.5, 1654.5], [1067.5, 1653.5], [1065.5, 1653.5], [1065.5, 1652.5], [1064.5, 1652.5], [1064.5, 1651.5], [1063.5, 1651.5], [1063.5, 1650.5], [1062.5, 1650.5], [1062.5, 1649.5], [1063.5, 1649.5], [1063.5, 1647.5], [1064.5, 1647.5], [1065.5, 1647.5], [1066.5, 1647.5], [1066.5, 1646.5], [1069.5, 1646.5], [1069.5, 1645.5], [1073.5, 1645.5], [1073.5, 1644.5], [1077.5, 1644.5], [1077.5, 1637.5], [1078.5, 1635.5], [1079.5, 1634.5], [1080.5, 1633.5], [1086.5, 1637.5], [1092.5, 1637.5], [1092.5, 1638.5], [1097.5, 1638.5]]}, -{"id": "000462", "submitted_by": "Oofio128", "name": "Octavia", "description": "Octavia is a minor character from My Little Pony: Friendship is Magic. She is often seen playing her prized cello. The '2SET' in her mane refers to TwoSetViolin, a comedy duo.\n \nAfter seeing the similarities between their arts, the My Little Pony and the TwoSet fandoms decided to combine their arts together as part of the r/place Windows XP taskbar.", "website": "https://mlp.fandom.com/wiki/Octavia_Melody", "subreddit": "/r/mylittlepony, /r/PlaceStart", "center": [1343.5, 1985.5], "path": [[1316.5, 1973.5], [1370.5, 1973.5], [1370.5, 1997.5], [1316.5, 1997.5], [1316.5, 1973.5]]}, -{"id": "twpfdq", "submitted_by": "sad_lagoon", "name": "Fuck NFTs", "description": "enough said", "website": "", "subreddit": "/r/fuckNFTs", "center": [1641.5, 1670.5], "path": [[1625.5, 1659.5], [1657.5, 1659.5], [1657.5, 1681.5], [1625.5, 1681.5], [1625.5, 1659.5]]}, -{"id": "twpfd9", "submitted_by": "gamrin", "name": "Rijksoverheidslogo", "description": "The logo of the Dutch Government. All communication with civilians features this crest.", "website": "https://en.wikipedia.org/wiki/Politics_of_the_Netherlands#Cabinet", "subreddit": "/r/PlaceNL", "center": [747.5, 12.5], "path": [[736.5, 0.5], [757.5, 0.5], [757.5, 23.5], [736.5, 23.5]]}, -{"id": "twpfaj", "submitted_by": "radostin04", "name": "r/furry snoo", "description": "The snoo of r/furry, reddit's largest furry subreddit. Despite symbolying r/furry, it was actually built by r/furry_irl, due to their more coordinated team. A similar logo was also present in the original r/place.", "website": "", "subreddit": "/r/furry", "center": [1762.5, 916.5], "path": [[1750.5, 901.5], [1773.5, 901.5], [1774.5, 902.5], [1775.5, 911.5], [1773.5, 912.5], [1774.5, 916.5], [1777.5, 920.5], [1777.5, 926.5], [1775.5, 927.5], [1775.5, 937.5], [1774.5, 937.5], [1772.5, 935.5], [1771.5, 935.5], [1771.5, 929.5], [1768.5, 929.5], [1766.5, 927.5], [1759.5, 927.5], [1756.5, 930.5], [1749.5, 930.5], [1749.5, 901.5]]}, -{"id": "twpf4h", "submitted_by": "jetfantastic", "name": "Project+", "description": "The shortened logo of Project+, an overhaul mod for Super Smash Bros. Brawl that adds characters, stages, and revamps both characters and general gameplay. Project+ is a continuation of the Brawl mod Project M, which originally disbanded in 2015.", "website": "https://projectplusgame.com", "subreddit": "/r/ssbpm", "center": [810.5, 1981.5], "path": [[803.5, 1975.5], [803.5, 1976.5], [802.5, 1977.5], [802.5, 1979.5], [801.5, 1980.5], [801.5, 1982.5], [800.5, 1983.5], [800.5, 1985.5], [799.5, 1986.5], [799.5, 1988.5], [800.5, 1988.5], [802.5, 1988.5], [803.5, 1987.5], [803.5, 1986.5], [804.5, 1985.5], [804.5, 1983.5], [804.5, 1983.5], [805.5, 1983.5], [806.5, 1983.5], [807.5, 1983.5], [808.5, 1983.5], [809.5, 1983.5], [810.5, 1982.5], [814.5, 1982.5], [814.5, 1983.5], [813.5, 1984.5], [812.5, 1984.5], [812.5, 1987.5], [813.5, 1987.5], [814.5, 1985.5], [817.5, 1985.5], [817.5, 1984.5], [818.5, 1983.5], [818.5, 1982.5], [821.5, 1982.5], [823.5, 1979.5], [819.5, 1979.5], [819.5, 1976.5], [820.5, 1975.5], [820.5, 1974.5], [816.5, 1974.5], [816.5, 1975.5], [815.5, 1976.5], [815.5, 1978.5], [814.5, 1979.5], [811.5, 1979.5], [811.5, 1978.5], [810.5, 1977.5], [810.5, 1976.5], [806.5, 1976.5], [805.5, 1975.5], [804.5, 1975.5]]}, -{"id": "twpelt", "submitted_by": "sad_lagoon", "name": "Fuck NFTs", "description": "enough said", "website": "", "subreddit": "/r/fuckNFTs", "center": [420.5, 1345.5], "path": [[400.5, 1339.5], [441.5, 1339.5], [441.5, 1350.5], [399.5, 1350.5], [399.5, 1339.5]]}, -{"id": "twpee3", "submitted_by": "themistik", "name": "Flag of France", "description": "First French flag and art made by the French Reddit community", "website": "https://en.wikipedia.org/wiki/France", "subreddit": "/r/PlaceFrance", "center": [152.5, 397.5], "path": [[125.5, 497.5], [175.5, 497.5], [175.5, 288.5], [171.5, 284.5], [171.5, 275.5], [148.5, 275.5], [148.5, 300.5], [141.5, 307.5], [141.5, 320.5], [152.5, 320.5], [152.5, 328.5], [125.5, 328.5], [125.5, 345.5], [132.5, 345.5], [132.5, 386.5], [125.5, 386.5]]}, -{"id": "twpee2", "submitted_by": "EmberBaban", "name": "The Tortoise Trainer", "description": "The Tortoise Trainer is a painting by Osman Hamdi Bey, with a first version created in 1906 and a second in 1907. Hamdi's painting of an anachronistic historical character attempting to train tortoises is usually interpreted as a satire on the slow and ineffective attempts at reforming the Ottoman Empire.", "website": "", "subreddit": "", "center": [1133.5, 187.5], "path": [[1071.5, 248.5], [1072.5, 121.5], [1162.5, 121.5], [1163.5, 132.5], [1195.5, 129.5], [1195.5, 251.5]]}, -{"id": "twpeak", "submitted_by": "th3_fish_", "name": "watchdominion.org", "description": "Link to a documentary about the animal exploitation industry. Created by animal rights activists.", "website": "", "subreddit": "/r/vegan_place", "center": [1969.5, 902.5], "path": [[1939.5, 887.5], [1939.5, 916.5], [1999.5, 916.5], [1999.5, 887.5]]}, -{"id": "twpdws", "submitted_by": "Leinon", "name": "Wowaka", "description": "A symbol for Wowaka. Wowaka was a Japanese musician best known for his Vocaloid music and his vocalist role in the band hitorie.", "website": "https://www.hitorie.jp/", "subreddit": "/r/hatsune", "center": [1829.5, 732.5], "path": [[1829.5, 728.5], [1828.5, 727.5], [1827.5, 726.5], [1825.5, 726.5], [1823.5, 728.5], [1822.5, 729.5], [1821.5, 730.5], [1821.5, 732.5], [1822.5, 733.5], [1822.5, 734.5], [1823.5, 735.5], [1824.5, 736.5], [1825.5, 737.5], [1826.5, 738.5], [1827.5, 739.5], [1828.5, 740.5], [1829.5, 741.5], [1830.5, 740.5], [1831.5, 739.5], [1832.5, 738.5], [1833.5, 737.5], [1834.5, 736.5], [1835.5, 735.5], [1836.5, 734.5], [1837.5, 733.5], [1837.5, 730.5], [1836.5, 729.5], [1835.5, 728.5], [1834.5, 727.5], [1831.5, 726.5]]}, -{"id": "twpd15", "submitted_by": "Hygrowhomie", "name": "Ficsit.app", "description": "FICSIT.app is the logo of the mod manager for the game Satisfactory. FICSIT itself is the employer in Satisfactory for which the pioneer works.", "website": "https://ficsit.app", "subreddit": "/r/satisfactory", "center": [1498.5, 44.5], "path": [[1467.5, 35.5], [1528.5, 35.5], [1528.5, 52.5], [1467.5, 52.5], [1467.5, 35.5]]}, -{"id": "twpcyp", "submitted_by": "cosiestraptor", "name": "Badgercraft", "description": "The logo for the Minecraft server Badgercraft. It was adopted and protected by r/shibbysays as by chance her cat is called Badger.", "website": "https://www.instagram.com/badgercraftserver/?hl=en-gb", "subreddit": "/r/shibbysays", "center": [1266.5, 450.5], "path": [[1259.5, 445.5], [1259.5, 454.5], [1272.5, 454.5], [1272.5, 445.5]]}, -{"id": "twpcxq", "submitted_by": "Ok_Acanthisitta_4102", "name": "Watch Dominion", "description": "Watch the life changing movie dominion", "website": "https://watchdominion.org/", "subreddit": "", "center": [1830.5, 1583.5], "path": [[1786.5, 1553.5], [1786.5, 1612.5], [1873.5, 1612.5], [1875.5, 1556.5], [1787.5, 1553.5]]}, -{"id": "twpctl", "submitted_by": "SinisterMJ", "name": "LMU", "description": "Ludwig-Maximilians-Universität - University in Munich", "website": "https://www.lmu.de/de/index.html", "subreddit": "/r/LMUMunich", "center": [1251.5, 1194.5], "path": [[1242.5, 1191.5], [1242.5, 1197.5], [1260.5, 1197.5], [1260.5, 1191.5]]}, -{"id": "twpck8", "submitted_by": "Plshelpmeokay", "name": "Rijksmuseum", "description": "Rijksmuseum Amsterdam is home to Dutch masters paintings such as The Nachtwacht and many more", "website": "https://www.rijksmuseum.nl/en", "subreddit": "", "center": [1765.5, 24.5], "path": [[1807.5, 33.5], [1807.5, 33.5], [1807.5, 33.5], [1723.5, 34.5], [1723.5, 18.5], [1729.5, 12.5], [1734.5, 19.5], [1750.5, 19.5], [1750.5, 12.5], [1751.5, 9.5], [1752.5, 6.5], [1755.5, 5.5], [1756.5, 8.5], [1757.5, 11.5], [1758.5, 15.5], [1772.5, 15.5], [1772.5, 12.5], [1773.5, 9.5], [1774.5, 6.5], [1775.5, 5.5], [1777.5, 5.5], [1778.5, 7.5], [1778.5, 8.5], [1779.5, 9.5], [1779.5, 11.5], [1780.5, 12.5], [1780.5, 19.5], [1796.5, 19.5], [1796.5, 18.5], [1797.5, 16.5], [1798.5, 15.5], [1799.5, 14.5], [1800.5, 13.5], [1801.5, 12.5], [1802.5, 12.5], [1803.5, 13.5], [1804.5, 14.5], [1805.5, 15.5], [1806.5, 16.5], [1807.5, 18.5], [1807.5, 34.5]]}, -{"id": "twpce2", "submitted_by": "gamrin", "name": "Jip en Janneke", "description": "Jip and Janneke (Dutch: Jip en Janneke) is a series of children's books in the Netherlands, written by Annie M. G. Schmidt and illustrated by Fiep Westendorp. The series is known for its simplicity and wit.", "website": "https://nl.wikipedia.org/wiki/Jip_en_Janneke", "subreddit": "/r/PlaceNL", "center": [659.5, 16.5], "path": [[666.5, 3.5], [668.5, 3.5], [668.5, 4.5], [670.5, 4.5], [670.5, 6.5], [671.5, 6.5], [671.5, 9.5], [670.5, 9.5], [670.5, 11.5], [669.5, 11.5], [668.5, 11.5], [668.5, 12.5], [667.5, 12.5], [667.5, 14.5], [668.5, 14.5], [668.5, 16.5], [669.5, 16.5], [669.5, 21.5], [668.5, 21.5], [668.5, 31.5], [662.5, 31.5], [663.5, 30.5], [663.5, 23.5], [662.5, 22.5], [662.5, 19.5], [663.5, 18.5], [663.5, 17.5], [659.5, 17.5], [659.5, 18.5], [658.5, 18.5], [658.5, 17.5], [655.5, 17.5], [655.5, 20.5], [656.5, 20.5], [656.5, 21.5], [655.5, 21.5], [655.5, 22.5], [654.5, 22.5], [654.5, 31.5], [655.5, 31.5], [650.5, 31.5], [650.5, 22.5], [648.5, 22.5], [648.5, 19.5], [646.5, 19.5], [647.5, 18.5], [647.5, 17.5], [646.5, 16.5], [647.5, 16.5], [648.5, 17.5], [650.5, 16.5], [649.5, 14.5], [650.5, 13.5], [649.5, 12.5], [648.5, 11.5], [647.5, 12.5], [646.5, 12.5], [646.5, 11.5], [647.5, 10.5], [647.5, 6.5], [648.5, 5.5], [649.5, 5.5], [650.5, 4.5], [652.5, 4.5], [653.5, 5.5], [654.5, 5.5], [656.5, 7.5], [655.5, 8.5], [655.5, 10.5], [654.5, 11.5], [654.5, 15.5], [657.5, 17.5], [661.5, 17.5], [661.5, 15.5], [658.5, 13.5], [659.5, 12.5], [659.5, 10.5], [658.5, 9.5], [659.5, 8.5], [660.5, 9.5], [659.5, 10.5], [659.5, 13.5], [660.5, 13.5], [661.5, 14.5], [663.5, 14.5], [664.5, 12.5], [664.5, 11.5], [663.5, 11.5], [663.5, 9.5], [662.5, 9.5], [662.5, 8.5], [663.5, 8.5], [663.5, 6.5], [662.5, 6.5]]}, -{"id":"twpccx","submitted_by":"Teldramet","name":"Cara pils","description":"Cara pils is Belgium's cheapest beer. It's best drunk at room temperature in a public space, lke a playground or the parking of your local Delhaize.","website":"","subreddit":"/r/BELGICA","center":[257.5,646.5],"path":[[248.5,632.5],[248.5,662.5],[250.5,662.5],[250.5,663.5],[259.5,663.5],[259.5,662.5],[261.5,662.5],[261.5,648.5],[273.5,648.5],[273.5,643.5],[264.5,643.5],[264.5,632.5]]}, -{"id": "twpcbx", "submitted_by": "One_Fortune_1446", "name": "Spirit Phone", "description": "The cover of the Album Spirit Phone by Neil Cicierega", "website": "", "subreddit": "/r/lemondemon", "center": [316.5, 1948.5], "path": [[292.5, 1926.5], [292.5, 1970.5], [339.5, 1970.5], [339.5, 1926.5], [339.5, 1926.5], [339.5, 1926.5], [339.5, 1926.5], [339.5, 1926.5], [292.5, 1926.5]]}, -{"id": "twpc9q", "submitted_by": "TheWaslijn", "name": "NOS", "description": "NOS is a Dutch broadcasting foundation that began on May 29th, 1969.", "website": "https://nos.nl/", "subreddit": "", "center": [586.5, 1961.5], "path": [[571.5, 1955.5], [600.5, 1955.5], [600.5, 1966.5], [571.5, 1966.5], [571.5, 1955.5]]}, -{"id": "twpc34", "submitted_by": "Master_LitFam", "name": "Rivals of Aether - Orcane Head", "description": "Rivals of Aether is an indie fighting game set in a world where civilizations wage war by summoning the power of Fire, Water, Air, and Earth.nnThis is the head of Orcane, a playful whale-dog trickster who can transform into water and confuse enemies with a spray of bubbles.", "website": "https://rivalsofaether.com", "subreddit": "/r/RivalsOfAether", "center": [921.5, 1956.5], "path": [[920.5, 1947.5], [919.5, 1948.5], [918.5, 1949.5], [918.5, 1950.5], [917.5, 1951.5], [914.5, 1954.5], [914.5, 1955.5], [913.5, 1956.5], [913.5, 1958.5], [917.5, 1962.5], [918.5, 1962.5], [919.5, 1963.5], [923.5, 1963.5], [924.5, 1962.5], [925.5, 1962.5], [928.5, 1959.5], [929.5, 1958.5], [929.5, 1956.5], [928.5, 1955.5], [928.5, 1954.5], [927.5, 1953.5], [926.5, 1952.5], [924.5, 1950.5], [924.5, 1949.5], [923.5, 1948.5], [922.5, 1947.5], [921.5, 1947.5]]}, -{"id": "twpbuo", "submitted_by": "Own-Intern6889", "name": "Portugal", "description": "Reference to the glorious era of the Portuguese discoveries with the fictional creature Adamastor.", "website": "https://en.wikipedia.org/wiki/Portugal", "subreddit": "/r/portugal", "center": [1126.5, 342.5], "path": [[1052.5, 367.5], [1179.5, 368.5], [1181.5, 313.5], [1102.5, 312.5], [1085.5, 329.5], [1047.5, 367.5]]}, -{"id": "twpboo", "submitted_by": "TeslaPenguin1", "name": "Razorback (The Expanse)", "description": "The Razorback, a spaceship from the book series and TV show The Expanse. Above it is one of the Ring Gates, a wormhole created by a highly advanced alien species.", "website": "", "subreddit": "/r/TheExpanse", "center": [416.5, 1575.5], "path": [[426.5, 1600.5], [426.5, 1555.5], [427.5, 1554.5], [427.5, 1552.5], [425.5, 1551.5], [422.5, 1550.5], [416.5, 1549.5], [410.5, 1549.5], [404.5, 1552.5], [405.5, 1555.5], [406.5, 1570.5], [406.5, 1580.5], [404.5, 1583.5], [404.5, 1591.5], [406.5, 1593.5], [405.5, 1600.5], [426.5, 1600.5]]}, -{"id": "twpbmq", "submitted_by": "sad_lagoon", "name": "Asexuality Spectrum Pride", "description": "Asexuality, Aromantic, and Aromantic Asexuality pride flags, complete with dragons!", "website": "", "subreddit": "/r/asexuality", "center": [523.5, 664.5], "path": [[449.5, 647.5], [449.5, 681.5], [597.5, 681.5], [597.5, 647.5], [449.5, 647.5]]}, -{"id": "twpbdl", "submitted_by": "Rj_Rajat", "name": "Flag of India", "description": "Indian flag with art coordinated on Discord, r/IndiaPlace, and r/ndianPlace, including:\n1) India's national animal, the royal Bengal tiger\n2) India Gate, memorial to fallen Indian soldiers\n3) Ashoka chakra, part of the Indian flag\n4) India's national flower, the lotus.\n5) Namaste, the Indian greeting gesture\n6) The mighty Himalayas, tallest mountains in the world\n7) Flag of independent Tibet and the Free Tibet movement, opposing Tibet's occupation by China", "website": "https://en.wikipedia.org/wiki/India", "subreddit": "/r/IndiaPlace, /r/IndianPlace", "center": [171.5, 1199.5], "path": [[0.5, 1225.5], [342.5, 1225.5], [342.5, 1172.5], [0.5, 1172.5]]}, -{"id": "twpbdi", "submitted_by": "tc_vfx", "name": "The MCDM logo", "description": "The logo of tabletop role-playing game company MCDM.", "website": "https://www.mcdmproductions.com/", "subreddit": "/r/mattcoleville, /r/place_CentralAlliance", "center": [418.5, 948.5], "path": [[407.5, 935.5], [428.5, 935.5], [428.5, 960.5], [407.5, 960.5], [407.5, 949.5]]}, -{"id": "twpao7", "submitted_by": "SinisterMJ", "name": "Haribo Goldbear", "description": "German candy.", "website": "https://www.haribo.com/en/products/goldbears", "subreddit": "/r/placeDE", "center": [716.5, 1156.5], "path": [[702.5, 1172.5], [703.5, 1167.5], [705.5, 1161.5], [702.5, 1160.5], [702.5, 1157.5], [703.5, 1153.5], [702.5, 1149.5], [699.5, 1145.5], [700.5, 1141.5], [703.5, 1138.5], [705.5, 1140.5], [708.5, 1137.5], [713.5, 1139.5], [716.5, 1142.5], [716.5, 1144.5], [722.5, 1149.5], [726.5, 1147.5], [731.5, 1148.5], [731.5, 1151.5], [735.5, 1153.5], [738.5, 1154.5], [738.5, 1157.5], [734.5, 1160.5], [731.5, 1160.5], [727.5, 1167.5], [725.5, 1167.5], [725.5, 1172.5]]}, -{"id": "twpam4", "submitted_by": "sayakamiki649", "name": "Madoka Kaname and Homura Akemi", "description": "Protagonists from the Madoka Magica series. The hearts at the right side represents the rest of the main cast (Madoka=Pink, Homura=Purple, Sayaka Miki Blue, Kyouko Sakura=Red, Mami Tomoe=Yellow)", "website": "", "subreddit": "/r/madokamagica", "center": [652.5, 402.5], "path": [[635.5, 393.5], [634.5, 411.5], [669.5, 410.5], [670.5, 393.5]]}, -{"id": "twpa86", "submitted_by": "Teldramet", "name": "Atomium", "description": "The Atomium is a monument in Belgium built for the 58 world fair. It represents the lattice of an iron atom", "website": "https://atomium.be/home/Index", "subreddit": "", "center": [289.5, 818.5], "path": [[280.5, 829.5], [280.5, 826.5], [280.5, 824.5], [278.5, 822.5], [278.5, 820.5], [280.5, 818.5], [281.5, 818.5], [281.5, 815.5], [280.5, 815.5], [278.5, 813.5], [278.5, 811.5], [280.5, 809.5], [282.5, 809.5], [283.5, 810.5], [284.5, 810.5], [284.5, 809.5], [289.5, 805.5], [289.5, 798.5], [293.5, 798.5], [293.5, 802.5], [289.5, 802.5], [289.5, 805.5], [290.5, 805.5], [292.5, 808.5], [293.5, 808.5], [295.5, 810.5], [296.5, 809.5], [298.5, 809.5], [300.5, 811.5], [300.5, 813.5], [297.5, 815.5], [297.5, 818.5], [298.5, 818.5], [300.5, 820.5], [300.5, 822.5], [297.5, 824.5], [297.5, 825.5], [298.5, 826.5], [298.5, 829.5]]}, -{"id": "twpa7h", "submitted_by": "Joeywp", "name": "Craftventure", "description": "A virtual Minecraft Themepark opening first in April 2012", "website": "https://discord.craftventure.net", "subreddit": "", "center": [1610.5, 200.5], "path": [[1606.5, 197.5], [1613.5, 197.5], [1613.5, 203.5], [1606.5, 203.5], [1606.5, 197.5]]}, -{"id": "twpa0p", "submitted_by": "I-Like-Hydrangeas", "name": "Robin from Iconoclasts", "description": "The protagonist from the indie game Iconoclasts by Joakim Sandberg", "website": "http://www.playiconoclasts.com/", "subreddit": "/r/Iconoclasts", "center": [1119.5, 544.5], "path": [[1128.5, 546.5], [1128.5, 545.5], [1129.5, 544.5], [1129.5, 541.5], [1126.5, 538.5], [1112.5, 538.5], [1112.5, 541.5], [1110.5, 544.5], [1106.5, 544.5], [1108.5, 547.5], [1106.5, 549.5], [1111.5, 548.5], [1112.5, 548.5], [1113.5, 550.5], [1116.5, 550.5], [1119.5, 551.5], [1119.5, 552.5], [1120.5, 551.5], [1123.5, 551.5], [1123.5, 552.5], [1124.5, 552.5], [1127.5, 550.5], [1127.5, 548.5], [1127.5, 547.5]]}, -{"id": "twp9sf", "submitted_by": "SinisterMJ", "name": "One Piece - Farewell", "description": "The crew says goodbye to Arabasta's princess Vivi", "website": "https://onepiece.fandom.com/wiki/Nefertari_Vivi?so=search#Arabasta_Arc", "subreddit": "/r/onepiece", "center": [122.5, 1408.5], "path": [[242.5, 1348.5], [243.5, 1447.5], [247.5, 1447.5], [246.5, 1468.5], [2.5, 1469.5], [2.5, 1348.5]]}, -{"id": "twp9ek", "submitted_by": "Sp3ctraZ", "name": "Terraria Art (Moments before Destruction)", "description": "A small depiction of Terraria Art which included the Player and the r/Terraria logo.", "website": "", "subreddit": "/r/Terraria", "center": [398.5, 1903.5], "path": [[418.5, 1889.5], [418.5, 1917.5], [379.5, 1916.5], [378.5, 1889.5]]}, -{"id": "twp96z", "submitted_by": "Teldramet", "name": "Duvel", "description": "Duvel is a strong Belgian beer, seen here being poured down the gullet of the German adler.", "website": "https://en.wikipedia.org/wiki/Duvel_Moortgat_Brewery#Duvel", "subreddit": "/r/belgium", "center": [268.5, 822.5], "path": [[264.5, 811.5], [263.5, 812.5], [263.5, 814.5], [262.5, 815.5], [261.5, 816.5], [261.5, 818.5], [259.5, 818.5], [259.5, 819.5], [258.5, 820.5], [258.5, 821.5], [259.5, 821.5], [259.5, 823.5], [260.5, 824.5], [260.5, 825.5], [261.5, 825.5], [261.5, 826.5], [258.5, 829.5], [261.5, 829.5], [262.5, 827.5], [265.5, 827.5], [266.5, 828.5], [269.5, 825.5], [269.5, 823.5], [270.5, 823.5], [272.5, 821.5], [273.5, 822.5], [273.5, 823.5], [274.5, 823.5], [273.5, 825.5], [274.5, 828.5], [272.5, 830.5], [273.5, 832.5], [279.5, 837.5], [280.5, 836.5], [276.5, 830.5], [276.5, 825.5], [275.5, 824.5], [275.5, 820.5], [270.5, 815.5], [268.5, 815.5], [268.5, 814.5], [267.5, 813.5], [265.5, 811.5]]}, -{"id": "twp8vh", "submitted_by": "Rj_Rajat", "name": "Flag of India", "description": "Indian flag with art designs includes ISRO (Indian Space Research Organization), a rocket launch, India's national bird (peacock), Meenakshi Temple, Taj Mahal and an Indian Elephant.", "website": "https://en.wikipedia.org/wiki/India", "subreddit": "/r/IndiaPlace", "center": [372.5, 315.5], "path": [[250.5, 298.5], [237.5, 298.5], [237.5, 343.5], [536.5, 343.5], [536.5, 298.5], [293.5, 298.5], [293.5, 252.5], [250.5, 252.5]]}, -{"id": "twp8lz", "submitted_by": "Ryan_diaz1", "name": "TGV POS high-speed train", "description": "Piece showing the front of a French TGV POS high-speed train, depicted as having good cell service unlike its neighbor.", "website": "https://en.wikipedia.org/wiki/TGV", "subreddit": "/r/PlaceFrance", "center": [453.5, 854.5], "path": [[434.5, 865.5], [434.5, 843.5], [471.5, 843.5], [471.5, 855.5], [477.5, 865.5], [477.5, 865.5]]}, -{"id": "twp81l", "submitted_by": "SinisterMJ", "name": "Gol D. Roger", "description": "A depiction of a panel in chapter 967 of popular anime/manga One Piece, in which Pirate King Gol D. Roger and his crew laughed when they saw Joy Boy's Treasure at Laugh Tale. Though the art was highly protected, the text at the bottom was a grief point where trolls tried to change the text into many other words. They ultimately ended up making the word \"He Caughed\" instead of \"He Laughed\". The skull on Gol D. Rogers's hat has blue eyes as a reference to \"Sans\" from the popular game \"Undertale\". Despite the One Piece community's efforts to remove it, it was ultimately kept as it was impossible to get rid off. The top of the Sci-Fi-Fantasy Alliance art was also grayscaled as a compromise to the community after territorial disputes. The art was made by the r/OnePiece Community.", "website": "https://onepiece.fandom.com/wiki/Gol_D._Roger", "subreddit": "/r/onepiece", "center": [1662.5, 1271.5], "path": [[1600.5, 1200.5], [1724.5, 1200.5], [1722.5, 1357.5], [1686.5, 1357.5], [1685.5, 1326.5], [1663.5, 1321.5], [1625.5, 1335.5], [1607.5, 1359.5], [1600.5, 1359.5], [1600.5, 1200.5]]}, -{"id": "twp7x2", "submitted_by": "jahdhjksasthmor", "name": "The Batter", "description": "The Batter is the protagonist from the 2008 video game OFF, by Mortis Ghost.", "website": "https://www.zchr.org/off.html", "subreddit": "/r/offthegame", "center": [1912.5, 776.5], "path": [[1905.5, 761.5], [1905.5, 791.5], [1919.5, 792.5], [1919.5, 761.5]]}, -{"id": "twp7pm", "submitted_by": "Kaneki_KonnoY", "name": "Tarik", "description": "Ex-CSGO pro (now Twitch star) who's a W Friend that plays valorant", "website": "http://SaveTheTarik.com", "subreddit": "/r/tarik", "center": [1751.5, 1656.5], "path": [[1719.5, 1612.5], [1782.5, 1612.5], [1782.5, 1699.5], [1719.5, 1699.5]]}, -{"id": "twp7es", "submitted_by": "MilkyTough", "name": "Warrior Cat Clan Symbols", "description": "The clan symbols of RiverClan [blue], WindClan [green], and ShadowClan [red]. These clans belond to a somewhat famous book series called Warrior Cats made by Erin Hunter. The logos were made by the WCUE community, which is an experience on Roblox where you play as one of these cats and role-play as a clan, rogue or loner. ThunderClan was here [yellow] and was built back on the left minutes after the creator of the art on the left of the symbols said we could rebuild.", "website": "", "subreddit": "/r/wcueroblox", "center": [1463.5, 1485.5], "path": [[1436.5, 1472.5], [1489.5, 1472.5], [1489.5, 1497.5], [1436.5, 1497.5], [1436.5, 1472.5]]}, -{"id": "twp78r", "submitted_by": "22cheez", "name": "Path of Exile", "description": "A dark fantasy online action role-playing game by Grinding Gear Games. The Mirror of Kalandra (center), Nervyr's logo (bottom left), a map (right), and NeverSink's FilterBlade styling for an exalted and chaos orb (bottom).", "website": "", "subreddit": "/r/pathofexile", "center": [1403.5, 467.5], "path": [[1364.5, 446.5], [1364.5, 446.5], [1424.5, 446.5], [1424.5, 446.5], [1424.5, 459.5], [1424.5, 459.5], [1429.5, 459.5], [1429.5, 459.5], [1432.5, 462.5], [1432.5, 462.5], [1432.5, 490.5], [1432.5, 490.5], [1384.5, 490.5], [1384.5, 490.5], [1384.5, 473.5], [1384.5, 473.5], [1380.5, 473.5], [1380.5, 473.5], [1380.5, 456.5], [1380.5, 456.5], [1364.5, 456.5], [1364.5, 446.5]]}, -{"id": "twp6v0", "submitted_by": "Uniquenessisuseless", "name": "Saab JAS 39 Gripen", "description": "Iconic Swedish warplane.", "website": "https://en.wikipedia.org/wiki/Saab_JAS_39_Gripen", "subreddit": "/r/place_nordicunion, /r/Sweden", "center": [623.5, 56.5], "path": [[611.5, 55.5], [606.5, 62.5], [602.5, 61.5], [603.5, 65.5], [614.5, 70.5], [614.5, 68.5], [618.5, 67.5], [618.5, 69.5], [621.5, 69.5], [621.5, 66.5], [624.5, 65.5], [626.5, 67.5], [630.5, 66.5], [643.5, 66.5], [645.5, 68.5], [652.5, 70.5], [655.5, 69.5], [653.5, 66.5], [643.5, 59.5], [640.5, 57.5], [639.5, 51.5], [637.5, 52.5], [636.5, 53.5], [636.5, 55.5], [635.5, 55.5], [635.5, 51.5], [635.5, 48.5], [633.5, 48.5], [633.5, 45.5], [636.5, 45.5], [635.5, 43.5], [621.5, 36.5], [621.5, 38.5], [626.5, 42.5], [618.5, 50.5], [609.5, 43.5], [607.5, 44.5], [608.5, 47.5], [587.5, 35.5], [585.5, 36.5], [608.5, 51.5], [612.5, 56.5]]}, -{"id": "twp61m", "submitted_by": "Sp3ctraZ", "name": "Vargfren (Vargskelethor/Vinesauce Joel)", "description": "A popular character in the streams of Streamer/YouTuber Vargskelethor, otherwise known as Vinesauce Joel.", "website": "https://fecalfunny.com", "subreddit": "", "center": [95.5, 679.5], "path": [[110.5, 687.5], [110.5, 682.5], [109.5, 680.5], [104.5, 675.5], [102.5, 676.5], [102.5, 674.5], [101.5, 673.5], [97.5, 673.5], [95.5, 672.5], [95.5, 673.5], [96.5, 674.5], [94.5, 676.5], [92.5, 674.5], [91.5, 671.5], [92.5, 669.5], [85.5, 669.5], [86.5, 674.5], [84.5, 675.5], [84.5, 677.5], [84.5, 679.5], [80.5, 682.5], [80.5, 684.5], [82.5, 686.5], [84.5, 686.5], [86.5, 684.5], [88.5, 683.5], [89.5, 683.5], [90.5, 684.5], [92.5, 682.5], [92.5, 680.5], [95.5, 677.5], [96.5, 678.5], [97.5, 679.5], [99.5, 682.5], [106.5, 687.5], [110.5, 687.5]]}, -{"id": "twp603", "submitted_by": "mosredna101", "name": "MNOT", "description": "Weekly podcast full of humor and tech in which nerds Floris, Jurian and Randal discuss fascinating topics with a guest nerd, while enjoying a Nerd beer.", "website": "https://www.metnerdsomtafel.nl/", "subreddit": "/r/MetNerdsomTafel", "center": [848.5, 1959.5], "path": [[841.5, 1955.5], [843.5, 1955.5], [843.5, 1954.5], [844.5, 1954.5], [844.5, 1952.5], [851.5, 1952.5], [851.5, 1954.5], [852.5, 1954.5], [852.5, 1955.5], [854.5, 1955.5], [854.5, 1959.5], [853.5, 1959.5], [853.5, 1960.5], [852.5, 1960.5], [852.5, 1966.5], [851.5, 1966.5], [851.5, 1967.5], [844.5, 1967.5], [844.5, 1966.5], [843.5, 1966.5], [843.5, 1960.5], [842.5, 1960.5], [842.5, 1959.5], [841.5, 1959.5]]}, -{"id": "twp5xn", "submitted_by": "Petoexe", "name": "Ale čau (read ah-leh chau)", "description": "The slogan of a slovak YouTuber/streamer known as Duklock", "website": "https://youtube.com/c/Duklock", "subreddit": "/r/Duklock", "center": [1356.5, 150.5], "path": [[1348.5, 140.5], [1363.5, 140.5], [1363.5, 161.5], [1349.5, 160.5]]}, -{"id": "twp5vg", "submitted_by": "lewinsideofficial", "name": "Das Sandmännchen", "description": "Das Sandmännchen is a German children's bedtime television programme using stop-motion animation.", "website": "https://en.wikipedia.org/wiki/Sandm%C3%A4nnchen", "subreddit": "/r/placeDE", "center": [488.5, 849.5], "path": [[482.5, 865.5], [477.5, 862.5], [481.5, 856.5], [473.5, 851.5], [472.5, 846.5], [482.5, 834.5], [490.5, 830.5], [494.5, 830.5], [490.5, 832.5], [492.5, 835.5], [495.5, 836.5], [500.5, 840.5], [502.5, 846.5], [499.5, 850.5], [491.5, 856.5], [498.5, 856.5], [502.5, 850.5], [507.5, 853.5], [504.5, 858.5], [499.5, 862.5], [496.5, 863.5], [495.5, 865.5]]}, -{"id": "twp5i8", "submitted_by": "ostensacken", "name": "Springbok", "description": "The national animal of South Africa, seen here perched on the head of Nelson Mandela. Once extremely common, its population has been reduced by hunting and poaching.", "website": "", "subreddit": "/r/southafrica", "center": [739.5, 994.5], "path": [[737.5, 1007.5], [736.5, 1006.5], [736.5, 1005.5], [735.5, 1003.5], [734.5, 1003.5], [734.5, 1001.5], [731.5, 1001.5], [730.5, 1000.5], [729.5, 999.5], [728.5, 998.5], [729.5, 997.5], [731.5, 997.5], [733.5, 998.5], [734.5, 1000.5], [735.5, 998.5], [734.5, 997.5], [734.5, 996.5], [734.5, 996.5], [733.5, 995.5], [731.5, 995.5], [730.5, 994.5], [729.5, 994.5], [729.5, 993.5], [730.5, 992.5], [731.5, 992.5], [732.5, 991.5], [731.5, 990.5], [730.5, 989.5], [729.5, 988.5], [729.5, 987.5], [728.5, 986.5], [728.5, 985.5], [729.5, 984.5], [730.5, 983.5], [731.5, 983.5], [732.5, 983.5], [731.5, 985.5], [731.5, 984.5], [731.5, 984.5], [731.5, 985.5], [731.5, 986.5], [732.5, 986.5], [733.5, 987.5], [734.5, 987.5], [735.5, 988.5], [735.5, 989.5], [736.5, 989.5], [736.5, 989.5], [737.5, 989.5], [738.5, 988.5], [738.5, 987.5], [737.5, 987.5], [737.5, 985.5], [736.5, 985.5], [736.5, 984.5], [736.5, 983.5], [735.5, 983.5], [738.5, 983.5], [739.5, 984.5], [738.5, 984.5], [740.5, 985.5], [739.5, 985.5], [740.5, 986.5], [741.5, 987.5], [742.5, 988.5], [744.5, 988.5], [745.5, 988.5], [745.5, 989.5], [747.5, 989.5], [748.5, 989.5], [747.5, 990.5], [749.5, 990.5], [750.5, 991.5], [750.5, 994.5], [749.5, 994.5], [749.5, 995.5], [748.5, 995.5], [748.5, 995.5], [747.5, 995.5], [747.5, 996.5], [746.5, 996.5], [746.5, 997.5], [747.5, 999.5], [747.5, 1000.5], [747.5, 1001.5], [748.5, 1001.5], [748.5, 1002.5], [747.5, 1002.5], [746.5, 1001.5], [746.5, 1000.5], [745.5, 1001.5], [745.5, 1002.5], [744.5, 1001.5], [743.5, 1002.5], [742.5, 1002.5], [743.5, 1003.5], [744.5, 1003.5], [741.5, 1003.5], [740.5, 1003.5], [740.5, 1004.5], [738.5, 1004.5], [738.5, 1005.5], [738.5, 1006.5], [737.5, 1006.5], [737.5, 1004.5]]}, -{"id": "twp5ad", "submitted_by": "Pitiful-Research9572", "name": "Billy", "description": "OH YOU DON'T KNOW WHAT KARLSON IS? KARLSON IS JUST A LITTLE GAME I'M WORKING ON AND ITS CURRENTLY THE NUMBER 12TH MOST WISHLISTED GAME ON STEAM. SMASH WISHLIST NOW GAMERS SO WE CAN GET THE NUMBER ONE SPOT BABY!!!!!", "website": "https://store.steampowered.com/app/1228610/KARLSON/", "subreddit": "/r/DaniDev", "center": [836.5, 1755.5], "path": [[830.5, 1748.5], [830.5, 1761.5], [841.5, 1761.5], [841.5, 1748.5], [830.5, 1748.5]]}, -{"id": "twp52y", "submitted_by": "raleigh_72", "name": "Worth the Candle", "description": "Worth the Candle is a serial web novel by Alexander Wales. Its protagonist is a teenager struggling with the death of his best friend, who finds himself trapped in another world - one which seems to be an amalgamation of every Dungeons and Dragons campaign they ever played together.", "website": "https://royalroad.com/fiction/25137/worth-the-candle", "subreddit": "/r/alexanderwales", "center": [229.5, 113.5], "path": [[223.5, 101.5], [235.5, 101.5], [235.5, 124.5], [223.5, 124.5]]}, -{"id": "twp4zu", "submitted_by": "GTFOFLAGCUNTS", "name": "GeoGuessr Pin", "description": "A red pin representing GeoGuessr and its community.", "website": "https://www.geoguessr.com/", "subreddit": "/r/GeoGuessr", "center": [117.5, 475.5], "path": [[125.5, 466.5], [109.5, 466.5], [109.5, 484.5], [125.5, 484.5]]}, -{"id": "twp4zs", "submitted_by": "sayakamiki649", "name": "Snaa", "description": "A derpy-looking plush of Sana Futaba from Magia Record, that has become popular in the community, getting fanart and being a common reaction image.", "website": "", "subreddit": "/r/magiarecord", "center": [1270.5, 874.5], "path": [[1266.5, 869.5], [1266.5, 878.5], [1275.5, 878.5], [1275.5, 870.5]]}, -{"id": "twp4fs", "submitted_by": "gundolfson", "name": "Eintracht Spandau", "description": "Fan art of German e-sports team crest", "website": "", "subreddit": "/r/EintrachtSpandau, /r/PlaceStart", "center": [526.5, 1985.5], "path": [[513.5, 1973.5], [513.5, 1996.5], [539.5, 1996.5], [539.5, 1973.5]]}, -{"id": "twp47n", "submitted_by": "Sp3ctraZ", "name": "ASTRONEER", "description": "The Logo of Space Exploration & Base/Factory Building game ASTRONEER, developed by System Era Softworks.", "website": "https://en.wikipedia.org/wiki/Astroneer", "subreddit": "", "center": [1124.5, 495.5], "path": [[1118.5, 497.5], [1118.5, 500.5], [1119.5, 501.5], [1129.5, 501.5], [1130.5, 500.5], [1130.5, 497.5], [1129.5, 494.5], [1128.5, 491.5], [1127.5, 489.5], [1126.5, 488.5], [1125.5, 487.5], [1123.5, 487.5], [1122.5, 488.5], [1121.5, 489.5], [1120.5, 491.5], [1119.5, 494.5], [1118.5, 497.5]]}, -{"id": "twp3sj", "submitted_by": "Darknamed", "name": "Index", "description": "The mascot of the manga reading website Mangadex", "website": "https://mangadex.org", "subreddit": "/r/mangadex", "center": [731.5, 1936.5], "path": [[716.5, 1924.5], [747.5, 1924.5], [747.5, 1948.5], [715.5, 1948.5], [715.5, 1924.5]]}, -{"id": "twp3pf", "submitted_by": "UnstoppablePhoenix", "name": "Tokino Sora", "description": "Tokino Sora is a member of Hololive's 0th Generation of Japanese VTubers, and was the first VTuber to debut within the company.", "website": "https://www.youtube.com/channel/UCp6993wxpyDPHUpavwDFqgg", "subreddit": "/r/Hololive", "center": [1347.5, 1121.5], "path": [[1342.5, 1125.5], [1342.5, 1121.5], [1345.5, 1116.5], [1350.5, 1116.5], [1352.5, 1120.5], [1352.5, 1125.5], [1342.5, 1125.5]]}, -{"id": "twp3jj", "submitted_by": "Lucian41", "name": "Rat King (Pixel Dungeon)", "description": "The Rat King NPC from the game Pixel Dungeon", "website": "https://pixeldungeon.fandom.com/wiki/Rat_king", "subreddit": "/r/pixeldungeon", "center": [1739.5, 238.5], "path": [[1732.5, 229.5], [1746.5, 229.5], [1746.5, 247.5], [1732.5, 247.5], [1732.5, 230.5], [1736.5, 237.5]]}, -{"id": "twp3ek", "submitted_by": "GoJoeyGo123", "name": "Spirit phone album cover", "description": "The album cover for the popular artist Neil Cicierega (lemondemon)", "website": "http://www.lemondemon.com/spiritphone/", "subreddit": "/r/lemondemon", "center": [316.5, 1948.5], "path": [[292.5, 1926.5], [339.5, 1925.5], [339.5, 1970.5], [292.5, 1970.5]]}, -{"id": "twp3at", "submitted_by": "yamsoup7", "name": "Human United Logo", "description": "A small logo of the gaming community Human United.", "website": "", "subreddit": "", "center": [1747.5, 385.5], "path": [[1743.5, 384.5], [1743.5, 387.5], [1750.5, 387.5], [1750.5, 383.5], [1743.5, 383.5]]}, -{"id": "twp374", "submitted_by": "polychromatick", "name": "Greendale Flag (Community)", "description": "The flag of a fictional community college, Greendale, from the show Community. #SixSeasonsAndAMovie", "website": "", "subreddit": "/r/community", "center": [1866.5, 1492.5], "path": [[1856.5, 1485.5], [1875.5, 1485.5], [1875.5, 1499.5], [1856.5, 1499.5], [1856.5, 1485.5]]}, -{"id": "twp354", "submitted_by": "N0ZTRA", "name": "Northernlion", "description": "Canadian Twitch Streamer, YouTuber and indie Game enthusiast. Host of the venerable Northernlion Live Super Show", "website": "https://www.twitch.tv/northernlion", "subreddit": "/r/northernlion", "center": [64.5, 354.5], "path": [[61.5, 336.5], [61.5, 360.5], [60.5, 360.5], [59.5, 361.5], [51.5, 361.5], [51.5, 368.5], [71.5, 368.5], [71.5, 338.5], [69.5, 336.5], [61.5, 336.5]]}, -{"id": "twp337", "submitted_by": "ostensacken", "name": "Sonichu", "description": "Sonichu is the protagonist of Christine Weston Chandler's comic series of the same name.", "website": "", "subreddit": "/r/chrischansonichu", "center": [1914.5, 525.5], "path": [[1912.5, 538.5], [1925.5, 538.5], [1924.5, 538.5], [1924.5, 536.5], [1922.5, 535.5], [1921.5, 534.5], [1919.5, 534.5], [1922.5, 532.5], [1922.5, 528.5], [1921.5, 527.5], [1922.5, 526.5], [1922.5, 524.5], [1923.5, 524.5], [1923.5, 523.5], [1922.5, 511.5], [1920.5, 512.5], [1920.5, 513.5], [1918.5, 514.5], [1918.5, 513.5], [1908.5, 513.5], [1907.5, 515.5], [1907.5, 516.5], [1908.5, 517.5], [1909.5, 517.5], [1908.5, 518.5], [1907.5, 519.5], [1907.5, 522.5], [1905.5, 523.5], [1903.5, 523.5], [1903.5, 531.5], [1905.5, 531.5], [1905.5, 530.5], [1906.5, 529.5], [1907.5, 528.5], [1907.5, 530.5], [1908.5, 531.5], [1908.5, 533.5], [1909.5, 534.5], [1912.5, 534.5]]}, -{"id": "twp2zn", "submitted_by": "lewinsideofficial", "name": "Coat of arms of Germany", "description": "The federal coat of arms is the national coat of arms of the Federal Republic of Germany. The beer it drinks is a collaborative artwork between Belgium and Germany, representing the beer culture in both countries.", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Germany", "subreddit": "/r/placeDE, /r/belgium", "center": [275.5, 855.5], "path": [[296.5, 830.5], [296.5, 830.5], [254.5, 830.5], [254.5, 874.5], [264.5, 880.5], [275.5, 883.5], [286.5, 880.5], [296.5, 874.5]]}, -{"id": "twp2xb", "submitted_by": "NagisaStreams", "name": "Wynncraft", "description": "A full-resolution icon of Wynncraft, a Minecraft MMORPG (massively multiplayer online role-playing game). Created by the Wynncraft community.", "website": "https://Wynncraft.com", "subreddit": "/r/wynncraft", "center": [1394.5, 355.5], "path": [[1386.5, 344.5], [1393.5, 344.5], [1393.5, 344.5], [1396.5, 344.5], [1401.5, 344.5], [1401.5, 346.5], [1401.5, 347.5], [1402.5, 347.5], [1402.5, 367.5], [1395.5, 367.5], [1395.5, 365.5], [1386.5, 365.5], [1386.5, 344.5]]}, -{"id": "twp2sw", "submitted_by": "Lattikhya", "name": "May from Guilty Gear", "description": "A spunky girl who doesn't sweat the small stuff. She believes in acting before thinking too deeply. Her friends often get dragged along with her impulsive behavior. Despite this, May's positive attitude is contagious to those around her, even if they sometimes find themselves a tad exhausted.", "website": "", "subreddit": "/r/guiltygear", "center": [488.5, 1947.5], "path": [[476.5, 1925.5], [476.5, 1969.5], [499.5, 1969.5], [499.5, 1925.5], [476.5, 1925.5]]}, -{"id": "twp2mc", "submitted_by": "Teldramet", "name": "The Chain of Acheron", "description": "Dungeons & Dragons stream on a band of mercenaries from hell. See also MCDM.", "website": "https://www.youtube.com/watch?v=iRhnx4lI6TA", "subreddit": "/r/mattcolville, /r/place_CentralAlliance", "center": [418.5, 1084.5], "path": [[407.5, 1072.5], [428.5, 1072.5], [428.5, 1096.5], [407.5, 1096.5]]}, -{"id": "twp2iu", "submitted_by": "iceman78772", "name": "Hifumi & Peroro", "description": "A supporting character from the mobile game Blue Archive with her beloved Peroro in tow, whom she has an obsession of collecting merchandise for.", "website": "https://bluearchive.nexon.com/home", "subreddit": "/r/BlueArchive", "center": [164.5, 988.5], "path": [[136.5, 963.5], [189.5, 963.5], [189.5, 995.5], [188.5, 995.5], [188.5, 999.5], [189.5, 999.5], [189.5, 1014.5], [136.5, 1014.5], [136.5, 999.5], [141.5, 999.5], [142.5, 999.5], [142.5, 997.5], [142.5, 994.5], [144.5, 994.5], [144.5, 981.5], [143.5, 981.5], [142.5, 981.5], [142.5, 979.5], [136.5, 979.5]]}, -{"id": "twp2iq", "submitted_by": "Ni3vS", "name": "Ace of Spades", "description": "An exotic hand cannon that was once wielded by Hunter Vanguard, Cayde-6.", "website": "https://destiny.fandom.com/wiki/Ace_of_Spades_(Destiny_2)", "subreddit": "/r/DestinyTheGame, /r/place_CentralAlliance", "center": [489.5, 1009.5], "path": [[471.5, 1003.5], [472.5, 1003.5], [472.5, 1004.5], [473.5, 1004.5], [473.5, 1008.5], [473.5, 1009.5], [472.5, 1009.5], [472.5, 1011.5], [471.5, 1011.5], [471.5, 1014.5], [470.5, 1014.5], [470.5, 1019.5], [469.5, 1019.5], [469.5, 1020.5], [470.5, 1021.5], [470.5, 1022.5], [471.5, 1023.5], [476.5, 1023.5], [476.5, 1020.5], [475.5, 1020.5], [475.5, 1017.5], [476.5, 1017.5], [476.5, 1014.5], [479.5, 1014.5], [479.5, 1015.5], [482.5, 1015.5], [482.5, 1014.5], [484.5, 1014.5], [484.5, 1013.5], [493.5, 1013.5], [493.5, 1012.5], [494.5, 1012.5], [494.5, 1011.5], [514.5, 1011.5], [514.5, 1007.5], [513.5, 1007.5], [513.5, 1006.5], [512.5, 1006.5], [512.5, 1004.5], [513.5, 1004.5], [513.5, 1003.5], [489.5, 1003.5], [489.5, 1002.5], [479.5, 1002.5], [478.5, 1002.5], [478.5, 1001.5], [478.5, 1003.5], [478.5, 1004.5], [477.5, 1004.5], [475.5, 1004.5], [475.5, 1005.5], [473.5, 1005.5]]}, -{"id": "twp1z8", "submitted_by": "Sp3ctraZ", "name": "ICM Train & Tulips", "description": "A standard ICM (Intercity Material).", "website": "https://en.wikipedia.org/wiki/NS_Intercity_Materieel", "subreddit": "", "center": [516.5, 7.5], "path": [[442.5, 0.5], [438.5, 3.5], [438.5, 11.5], [439.5, 12.5], [442.5, 13.5], [593.5, 13.5], [593.5, 0.5], [442.5, 0.5]]}, -{"id": "twp1qc", "submitted_by": "arkinsis", "name": "Terrene Protectorate", "description": "Icon of the Terrene Protectorate, a multi-species coalition from the indie game Starbound to train graduates to protect and lend aid across the known universe.\nr/starbound allied with r/ena leading to the creation of the ENA Alliance, later joining efforts with the Green Lattice and the United Factions of r/Place.", "website": "https://playstarbound.com/", "subreddit": "/r/starbound", "center": [1123.5, 390.5], "path": [[1116.5, 392.5], [1116.5, 389.5], [1119.5, 389.5], [1119.5, 385.5], [1128.5, 386.5], [1128.5, 389.5], [1129.5, 389.5], [1129.5, 393.5], [1116.5, 393.5]]}, -{"id": "twp1n7", "submitted_by": "Asmuni", "name": "Logo BTS", "description": "Logo of group BTS plus an Army Bomb lightstick.", "website": "", "subreddit": "/r/Bangtan", "center": [250.5, 686.5], "path": [[241.5, 698.5], [259.5, 698.5], [259.5, 672.5], [250.5, 676.5], [241.5, 672.5]]}, -{"id": "twp17x", "submitted_by": "ostensacken", "name": "Sneed's Feed and Seed (Formerly Chuck's)", "description": "This piece represents a joke and popular meme from Season 11 episode 5 of The Simpsons. Mostly organized by the /b/ board on 4chan.", "website": "https://4chan.org/b/", "subreddit": "/r/sneedposting", "center": [1749.5, 885.5], "path": [[1717.5, 870.5], [1719.5, 902.5], [1748.5, 902.5], [1749.5, 901.5], [1771.5, 900.5], [1772.5, 899.5], [1772.5, 894.5], [1772.5, 892.5], [1772.5, 891.5], [1773.5, 890.5], [1775.5, 889.5], [1778.5, 889.5], [1779.5, 890.5], [1780.5, 891.5], [1781.5, 890.5], [1782.5, 889.5], [1783.5, 888.5], [1784.5, 888.5], [1784.5, 885.5], [1784.5, 873.5], [1784.5, 869.5], [1718.5, 870.5]]}, -{"id": "twp0k2", "submitted_by": "Chinese__T", "name": "Octavarium", "description": "Album art from the progressive metal band Dream Theater's 2005 album, Octavarium, depicting a newton's cradle. This art was unfinished before it was consumed by bratishkinoff's My Little Pony artwork raid.", "website": "https://en.wikipedia.org/wiki/Octavarium", "subreddit": "/r/dreamtheater", "center": [896.5, 1669.5], "path": [[890.5, 1662.5], [902.5, 1662.5], [902.5, 1675.5], [890.5, 1675.5]]}, -{"id": "twozx7", "submitted_by": "_MicrosoftExcel_", "name": "Flairwars Logo", "description": "Flairwars is an online reddit-based game where users are split into 6 teams, and then compete by raiding and defending one another.", "website": "https://www.flairwars.com/", "subreddit": "/r/flairwars", "center": [502.5, 1819.5], "path": [[492.5, 1814.5], [509.5, 1814.5], [509.5, 1817.5], [511.5, 1817.5], [511.5, 1815.5], [512.5, 1815.5], [512.5, 1814.5], [515.5, 1814.5], [515.5, 1816.5], [514.5, 1816.5], [514.5, 1818.5], [513.5, 1818.5], [513.5, 1820.5], [512.5, 1820.5], [512.5, 1822.5], [511.5, 1822.5], [511.5, 1823.5], [510.5, 1823.5], [510.5, 1825.5], [509.5, 1825.5], [509.5, 1826.5], [506.5, 1826.5], [506.5, 1823.5], [504.5, 1823.5], [504.5, 1825.5], [503.5, 1825.5], [503.5, 1826.5], [500.5, 1826.5], [500.5, 1821.5], [494.5, 1821.5], [494.5, 1823.5], [493.5, 1823.5], [493.5, 1826.5], [490.5, 1826.5], [490.5, 1822.5], [491.5, 1822.5], [491.5, 1817.5], [492.5, 1817.5], [492.5, 1814.5]]}, -{"id": "twoztm", "submitted_by": "MarUlberg", "name": "Leaves From The Vine", "description": "YouTube streamer Ludwig opened dialog with the French streamers in an attempt to acquire some real estate. The French agreed to let him have the spot they were trying to take from the Spanish and helped him black it out.nLudwig then used his chat to build a very nice art of One Piece's Nami in a Bikini, but the people quickly decided to remove the bikini and make her lactate. After a penis was drawn in between her boobs Ludwig decided to again black out the square and rebuild this scene from Tales Of Ba Sing Se episode of Avatar: The Last Airbender. The art continued to evolve after Ludwig moved on with support from the r/ATLA community and saw minimal sabotage throughout the remaining time.", "website": "https://www.youtube.com/c/Ludwigahgren", "subreddit": "/r/ATLA", "center": [1415.5, 1555.5], "path": [[1332.5, 1498.5], [1498.5, 1498.5], [1498.5, 1611.5], [1332.5, 1611.5]]}, -{"id": "twozo9", "submitted_by": "Firewolf_XP", "name": "Jaegermeister", "description": "A popular German alcoholic drink. It was developed in 1934 and contains 56 herbs and spices.", "website": "https://www.jagermeister.com/en-US", "subreddit": "/r/placeDE", "center": [181.5, 1151.5], "path": [[173.5, 1138.5], [172.5, 1138.5], [172.5, 1139.5], [172.5, 1140.5], [171.5, 1141.5], [171.5, 1173.5], [191.5, 1173.5], [191.5, 1139.5], [190.5, 1139.5], [190.5, 1138.5], [189.5, 1138.5], [189.5, 1137.5], [188.5, 1137.5], [188.5, 1136.5], [187.5, 1136.5], [187.5, 1135.5], [186.5, 1135.5], [186.5, 1134.5], [185.5, 1134.5], [185.5, 1121.5], [177.5, 1121.5], [177.5, 1134.5], [175.5, 1136.5], [173.5, 1138.5]]}, -{"id": "twozni", "submitted_by": "GoJoeyGo123", "name": "Sydney Harbour Bridge", "description": "Sydney Harbour Bridge is a 1149m long bridge open in 1932.", "website": "https://en.wikipedia.org/wiki/Sydney_Harbour_Bridge", "subreddit": "/r/aus_place", "center": [686.5, 666.5], "path": [[673.5, 665.5], [673.5, 664.5], [674.5, 664.5], [674.5, 663.5], [675.5, 663.5], [676.5, 663.5], [676.5, 664.5], [678.5, 664.5], [678.5, 663.5], [680.5, 663.5], [680.5, 662.5], [682.5, 662.5], [682.5, 661.5], [690.5, 661.5], [690.5, 662.5], [692.5, 662.5], [692.5, 663.5], [694.5, 663.5], [694.5, 664.5], [696.5, 664.5], [696.5, 663.5], [697.5, 663.5], [698.5, 663.5], [698.5, 664.5], [699.5, 664.5], [699.5, 669.5], [673.5, 669.5]]}, -{"id": "twoyzp", "submitted_by": "ExpressEducator15", "name": "Indian artwork", "description": "Indian artwork created by the Ram Mandir Discord and r/IndiaPlace. Includes the following:\n1) Lord Hanuman lifting Sanjeevani parvat\n2) Ram mandir\n3) 'Ram mandir' in Devanagari script\n4) Logo of UPI (United Payments Interface) gateway\n5) Hindu religious swastika (not the Nazi hakenkreuz; they stole this from us.)\n6) Rupee symbol", "website": "https://en.wikipedia.org/wiki/India", "subreddit": "/r/IndiaPlace", "center": [1334.5, 328.5], "path": [[1402.5, 344.5], [1206.5, 344.5], [1205.5, 332.5], [1211.5, 337.5], [1212.5, 337.5], [1212.5, 330.5], [1215.5, 330.5], [1214.5, 329.5], [1230.5, 329.5], [1227.5, 326.5], [1227.5, 325.5], [1229.5, 323.5], [1222.5, 314.5], [1489.5, 313.5], [1488.5, 314.5], [1488.5, 317.5], [1491.5, 321.5], [1497.5, 321.5], [1500.5, 324.5], [1500.5, 326.5], [1402.5, 326.5], [1402.5, 344.5]]}, -{"id": "twoylb", "submitted_by": "jetfantastic", "name": "Super Smash Bros. logo", "description": "The primary logo for the Super Smash Bros. franchise, a crossover fighting games series by Nintendo.", "website": "https://en.wikipedia.org/wiki/Super_Smash_Bros.", "subreddit": "/r/smashbros, /r/PlaceStart", "center": [787.5, 1986.5], "path": [[775.5, 1974.5], [775.5, 1997.5], [798.5, 1997.5], [798.5, 1974.5], [775.5, 1974.5]]}, -{"id": "twoyke", "submitted_by": "Maxiscoolerthanyou", "name": "Mizzlebip", "description": "Mizzlebip from the game Psycholonials by Andrew Hussie made by the Mizzlebip Nation discord and help from Just Bringer BACK! and L'Manburg", "website": "https://www.psycholonials.com/", "subreddit": "/r/Psycholonials", "center": [152.5, 155.5], "path": [[148.5, 147.5], [154.5, 147.5], [154.5, 148.5], [155.5, 148.5], [155.5, 149.5], [156.5, 149.5], [157.5, 150.5], [157.5, 151.5], [157.5, 152.5], [156.5, 152.5], [156.5, 154.5], [155.5, 154.5], [155.5, 164.5], [148.5, 164.5]]}, -{"id": "twoyjb", "submitted_by": "ostensacken", "name": "Cincinnati Bearcats", "description": "The Cincinnati Bearcats are the football team of the University of Cincinnati. This logo was originally located on the southern border of r/place until being attacked by The Void.", "website": "", "subreddit": "/r/uCinci", "center": [317.5, 1622.5], "path": [[311.5, 1610.5], [323.5, 1610.5], [323.5, 1634.5], [315.5, 1634.5], [313.5, 1633.5], [312.5, 1634.5], [312.5, 1632.5], [312.5, 1631.5], [311.5, 1631.5]]}, -{"id": "twoyf1", "submitted_by": "Asmuni", "name": "Whale", "description": "Purple whale representing the group BTS.", "website": "", "subreddit": "/r/bangtan", "center": [1913.5, 1200.5], "path": [[1885.5, 1175.5], [1884.5, 1171.5], [1885.5, 1227.5], [1941.5, 1225.5], [1941.5, 1172.5]]}, -{"id": "twoy9m", "submitted_by": "TimvandenOever", "name": "Compositie met groot rood vlak, geel, zwart, grijs en blauw by Piet Mondrian", "description": "A painting by Piet Mondrian known for his world-famous 'de stijl' art movement. This abstract painting can be viewed in real life in Kunstmuseum Den Haag\n\nPieter Cornelis Mondriaan (7 March 1872 – 1 February 1944), was a Dutch painter and art theoretician who is regarded as one of the greatest artists of the 20th century. He is known for being one of the pioneers of 20th-century abstract art, as he changed his artistic direction from figurative painting to an increasingly abstract style, until he reached a point where his artistic vocabulary was reduced to simple geometric elements.", "website": "https://en.wikipedia.org/wiki/Piet_Mondrian", "subreddit": "/r/PlaceNL", "center": [1434.5, 17.5], "path": [[1420.5, 3.5], [1448.5, 3.5], [1448.5, 30.5], [1420.5, 30.5], [1420.5, 3.5]]}, -{"id": "twoy1k", "submitted_by": "N0ZTRA", "name": "Bedge", "description": "Twitch third party emote of Pepe getting a good nights rest. 2022 shading included.", "website": "", "subreddit": "", "center": [1366.5, 1023.5], "path": [[1353.5, 999.5], [1352.5, 1000.5], [1352.5, 1001.5], [1351.5, 1001.5], [1349.5, 1003.5], [1349.5, 1004.5], [1348.5, 1005.5], [1347.5, 1006.5], [1347.5, 1007.5], [1346.5, 1007.5], [1346.5, 1009.5], [1344.5, 1011.5], [1344.5, 1020.5], [1345.5, 1020.5], [1345.5, 1029.5], [1343.5, 1029.5], [1343.5, 1030.5], [1342.5, 1031.5], [1342.5, 1032.5], [1344.5, 1035.5], [1344.5, 1036.5], [1345.5, 1037.5], [1346.5, 1038.5], [1346.5, 1041.5], [1345.5, 1043.5], [1390.5, 1043.5], [1390.5, 1027.5], [1389.5, 1027.5], [1389.5, 1025.5], [1388.5, 1025.5], [1388.5, 1021.5], [1384.5, 1021.5], [1384.5, 1018.5], [1385.5, 1018.5], [1385.5, 1008.5], [1382.5, 1005.5], [1381.5, 1005.5], [1380.5, 1004.5], [1379.5, 1003.5], [1379.5, 1002.5], [1377.5, 1000.5], [1376.5, 999.5]]}, -{"id": "twoxlf", "submitted_by": "richguy777", "name": "John Dillermand", "description": "John Dillermand is a Danish stop-motion animated children's television series about a man and his very long penis. It was part of the independent Denmark project created with permission by r/place_nordicunion.\n \nAfter abstaining from invading other communities and maintaing their territory, r/Denmark decided to begin working on this penis as a passion project. However, after it was destroyed by the void early on during the event, r/Denmark decided that the penis would become a force of destruction. They extended the penis toward the penis toward the western border of the canvas where it surrounded and took over the iconic Genshit logo.\n \nWhen the void took over John Dillermand's penis later on, it took any chance of Genshit returning with it.", "website": "https://en.wikipedia.org/wiki/John_Dillermand", "subreddit": "/r/place_nordicunion, /r/Denmark", "center": [439.5, 224.5], "path": [[543.5, 254.5], [541.5, 256.5], [541.5, 267.5], [544.5, 267.5], [546.5, 269.5], [546.5, 275.5], [545.5, 276.5], [545.5, 281.5], [544.5, 281.5], [542.5, 283.5], [542.5, 284.5], [536.5, 284.5], [536.5, 293.5], [438.5, 293.5], [438.5, 168.5], [435.5, 166.5], [345.5, 166.5], [345.5, 130.5], [278.5, 130.5], [278.5, 117.5], [272.5, 117.5], [272.5, 135.5], [339.5, 136.5], [339.5, 172.5], [432.5, 172.5], [432.5, 299.5], [542.5, 299.5], [542.5, 290.5], [554.5, 290.5], [556.5, 288.5], [556.5, 286.5], [564.5, 286.5], [564.5, 281.5], [561.5, 281.5], [561.5, 276.5], [560.5, 275.5], [560.5, 269.5], [561.5, 268.5], [562.5, 268.5], [565.5, 265.5], [565.5, 256.5], [562.5, 253.5], [560.5, 255.5], [558.5, 255.5], [554.5, 251.5], [552.5, 251.5], [549.5, 254.5], [547.5, 256.5], [545.5, 254.5]]}, -{"id": "twox10", "submitted_by": "Spinomantus", "name": "South African Flag", "description": "The flag of South Africa including many of cultural symbols of the country", "website": "", "subreddit": "", "center": [751.5, 1015.5], "path": [[720.5, 963.5], [721.5, 962.5], [721.5, 1067.5], [780.5, 1067.5], [780.5, 963.5], [780.5, 962.5], [722.5, 962.5]]}, -{"id": "twox0x", "submitted_by": "ostensacken", "name": "Flag of Barbados", "description": "The flag of Barbados, in close proximity to the flag of Guyana. Barbados is a small island nation in the Caribbean.", "website": "", "subreddit": "/r/barbados", "center": [959.5, 1382.5], "path": [[952.5, 1377.5], [966.5, 1377.5], [966.5, 1387.5], [952.5, 1387.5]]}, -{"id": "twowpf", "submitted_by": "celesteaI", "name": "Poly Bridge 2", "description": "Sequel to the simulation-puzzle game, Poly Bridge, developed and published by Dry Cactus.", "website": "https://www.polybridge2.com/", "subreddit": "/r/polybridge", "center": [832.5, 1777.5], "path": [[823.5, 1769.5], [836.5, 1769.5], [841.5, 1774.5], [841.5, 1784.5], [823.5, 1784.5]]}, -{"id": "twowfm", "submitted_by": "Ni3vS", "name": "Ghosts", "description": "Small, sapient machines created by the Traveler shortly after the Collapse.", "website": "https://www.destinypedia.com/Ghost", "subreddit": "/r/DestinyTheGame, /r/place_CentralAlliance", "center": [465.5, 977.5], "path": [[449.5, 962.5], [449.5, 992.5], [480.5, 992.5], [480.5, 962.5]]}, -{"id": "twow70", "submitted_by": "ostensacken", "name": "Guyanese flag", "description": "The flag of Guyana, a northern South American nation.", "website": "", "subreddit": "/r/guyana", "center": [959.5, 1370.5], "path": [[952.5, 1376.5], [952.5, 1365.5], [966.5, 1365.5], [966.5, 1375.5], [952.5, 1375.5]]}, -{"id": "twovtm", "submitted_by": "Iamtrollmaster", "name": "Lost Ark", "description": "Lost Ark is an MMORPG developed by Smilegate RPG and published by Amazon Games. First released in KR in November 2018. Now available in NA and EU.", "website": "https://www.playlostark.com/", "subreddit": "/r/lostarkgame", "center": [1175.5, 1909.5], "path": [[1167.5, 1889.5], [1173.5, 1889.5], [1175.5, 1891.5], [1177.5, 1889.5], [1185.5, 1889.5], [1184.5, 1896.5], [1184.5, 1901.5], [1187.5, 1906.5], [1200.5, 1907.5], [1200.5, 1924.5], [1156.5, 1924.5], [1156.5, 1893.5], [1159.5, 1893.5], [1159.5, 1889.5], [1167.5, 1889.5]]}, -{"id": "twovs8", "submitted_by": "EmberBaban", "name": "Potrait of Barış Manço", "description": "Barış Manço was a popular singer/songwriter in Turkey.", "website": "", "subreddit": "", "center": [797.5, 1885.5], "path": [[765.5, 1933.5], [805.5, 1936.5], [808.5, 1933.5], [816.5, 1933.5], [814.5, 1915.5], [839.5, 1914.5], [832.5, 1889.5], [831.5, 1867.5], [827.5, 1852.5], [823.5, 1844.5], [812.5, 1835.5], [797.5, 1834.5], [786.5, 1834.5], [774.5, 1842.5], [766.5, 1851.5], [762.5, 1873.5], [761.5, 1889.5], [768.5, 1903.5], [762.5, 1916.5]]}, -{"id": "twovld", "submitted_by": "zippee100", "name": "Dancing H mural", "description": "ARG's dancing H gif with a H tessellation background.", "website": "", "subreddit": "/r/TheLetterH", "center": [1587.5, 1377.5], "path": [[1576.5, 1369.5], [1578.5, 1368.5], [1585.5, 1368.5], [1586.5, 1369.5], [1593.5, 1369.5], [1594.5, 1371.5], [1596.5, 1373.5], [1601.5, 1373.5], [1600.5, 1375.5], [1599.5, 1385.5], [1597.5, 1385.5], [1595.5, 1386.5], [1591.5, 1386.5], [1588.5, 1385.5], [1587.5, 1386.5], [1581.5, 1386.5], [1580.5, 1385.5], [1577.5, 1385.5]]}, -{"id": "twovg9", "submitted_by": "Less_Cardiologist952", "name": "RU3", "description": "RU3 is a roleplay community in roblox focused on conquest RP", "website": "", "subreddit": "/r/RiskUniversalis", "center": [459.5, 878.5], "path": [[449.5, 866.5], [469.5, 866.5], [469.5, 889.5], [449.5, 889.5]]}, -{"id": "twov9h", "submitted_by": "Unique_Maybe_4545", "name": "pi = 3", "description": "A meme which makes fun of approximations frequently used by engineers via hyperbole", "website": "", "subreddit": "", "center": [773.5, 306.5], "path": [[765.5, 302.5], [781.5, 302.5], [781.5, 309.5], [765.5, 309.5]]}, -{"id": "twov44", "submitted_by": "ostensacken", "name": "Yellow Submarine", "description": "A small Yellow Submarine, in reference to the song by The Beatles, and to the 1968 film.", "website": "", "subreddit": "", "center": [131.5, 196.5], "path": [[122.5, 194.5], [122.5, 200.5], [124.5, 200.5], [125.5, 199.5], [126.5, 200.5], [127.5, 200.5], [129.5, 201.5], [136.5, 201.5], [137.5, 200.5], [138.5, 200.5], [139.5, 199.5], [140.5, 199.5], [141.5, 198.5], [141.5, 197.5], [140.5, 196.5], [138.5, 196.5], [137.5, 195.5], [136.5, 195.5], [135.5, 195.5], [134.5, 194.5], [134.5, 193.5], [133.5, 192.5], [133.5, 191.5], [134.5, 190.5], [134.5, 189.5], [131.5, 188.5], [130.5, 189.5], [129.5, 189.5], [128.5, 190.5], [129.5, 192.5], [129.5, 193.5], [129.5, 191.5], [129.5, 193.5], [129.5, 191.5], [129.5, 191.5], [129.5, 191.5], [129.5, 191.5], [129.5, 193.5], [128.5, 194.5], [128.5, 195.5], [126.5, 195.5], [125.5, 195.5], [125.5, 194.5], [123.5, 194.5], [122.5, 193.5], [122.5, 193.5], [122.5, 193.5], [122.5, 193.5], [123.5, 193.5], [123.5, 194.5]]}, -{"id": "twouw6", "submitted_by": "Joki7991", "name": "DB Class 423 EMU", "description": "The Class 423 EMU is the backbone of most German S-Bahn commuter rail services.", "website": "https://en.wikipedia.org/wiki/DBAG_Class_423", "subreddit": "/r/placeDE", "center": [46.5, 1148.5], "path": [[16.5, 1129.5], [64.5, 1128.5], [70.5, 1130.5], [75.5, 1134.5], [78.5, 1138.5], [79.5, 1142.5], [80.5, 1146.5], [81.5, 1155.5], [80.5, 1156.5], [80.5, 1157.5], [79.5, 1158.5], [78.5, 1159.5], [75.5, 1160.5], [72.5, 1161.5], [88.5, 1161.5], [88.5, 1167.5], [17.5, 1167.5], [17.5, 1164.5], [16.5, 1164.5], [15.5, 1162.5], [14.5, 1162.5], [14.5, 1159.5], [13.5, 1159.5], [13.5, 1154.5], [12.5, 1154.5], [12.5, 1136.5], [14.5, 1135.5], [14.5, 1128.5], [15.5, 1128.5], [21.5, 1128.5]]}, -{"id": "twouox", "submitted_by": "Chinese__T", "name": "Virus Bacteriophage", "description": "Album art from the progressive metal band Haken's 2020 release, Virus.", "website": "https://hakenmusic.com/", "subreddit": "/r/haken", "center": [896.5, 1656.5], "path": [[890.5, 1650.5], [902.5, 1650.5], [902.5, 1662.5], [890.5, 1662.5]]}, -{"id": "twounw", "submitted_by": "arkinsis", "name": "Autism Pride Flag", "description": "The Autistic Pride flag, made with the infinity symbol commonly used as a Neurodivergent pride symbol.", "website": "", "subreddit": "/r/AutisticLiberation", "center": [293.5, 1868.5], "path": [[282.5, 1861.5], [282.5, 1875.5], [304.5, 1875.5], [304.5, 1861.5]]}, -{"id": "twoud6", "submitted_by": "Alternanthera", "name": "Arizona Flag", "description": "The flag of Arizona, USA.", "website": "", "subreddit": "/r/arizona", "center": [529.5, 1873.5], "path": [[522.5, 1868.5], [536.5, 1868.5], [536.5, 1878.5], [522.5, 1878.5]]}, -{"id": "twou88", "submitted_by": "Chinese__T", "name": "Vector Rorschach", "description": "Album art from the progressive metal band Haken's 2018 release, Vector.", "website": "https://hakenmusic.com/", "subreddit": "/r/haken", "center": [884.5, 1656.5], "path": [[878.5, 1650.5], [890.5, 1650.5], [890.5, 1662.5], [878.5, 1662.5]]}, -{"id": "twotv9", "submitted_by": "GoJoeyGo123", "name": "Union Jack", "description": "Flag of the united kingdom", "website": "https://www.royal.uk/union-jack", "subreddit": "", "center": [679.5, 655.5], "path": [[671.5, 650.5], [686.5, 650.5], [686.5, 660.5], [671.5, 660.5], [671.5, 650.5]]}, -{"id": "twotv6", "submitted_by": "ostensacken", "name": "Maldivian heart", "description": "A small heart for the flag of the island nation of The Maldives.", "website": "", "subreddit": "/r/maldives", "center": [294.5, 199.5], "path": [[292.5, 197.5], [294.5, 198.5], [295.5, 197.5], [296.5, 197.5], [297.5, 198.5], [297.5, 199.5], [296.5, 200.5], [295.5, 201.5], [294.5, 202.5], [293.5, 201.5], [292.5, 200.5], [291.5, 199.5], [291.5, 198.5]]}, -{"id": "twotej", "submitted_by": "Eclipsed_Luna", "name": "r/PlacePride-Chile heart (destroyed)", "description": "A heart between r/chile and r/placepride at this coordinate was planned multiple times on the r/PlacePride Discord, but it always got cleared right after placing it down.", "website": "https://imgur.com/a/cgsVLML", "subreddit": "/r/PlacePride, /r/chile", "center": [421.5, 522.5], "path": [[420.5, 526.5], [422.5, 526.5], [422.5, 525.5], [423.5, 525.5], [423.5, 524.5], [424.5, 524.5], [424.5, 523.5], [425.5, 523.5], [425.5, 522.5], [426.5, 522.5], [426.5, 520.5], [425.5, 520.5], [425.5, 519.5], [424.5, 519.5], [424.5, 518.5], [423.5, 518.5], [423.5, 519.5], [419.5, 519.5], [419.5, 518.5], [418.5, 518.5], [418.5, 519.5], [417.5, 519.5], [417.5, 520.5], [416.5, 520.5], [416.5, 522.5], [417.5, 522.5], [417.5, 523.5], [418.5, 523.5], [418.5, 524.5], [419.5, 524.5], [419.5, 525.5], [420.5, 525.5], [420.5, 526.5]]}, -{"id": "twot7j", "submitted_by": "squall_boy25", "name": "Epic Seven", "description": "Epic Seven game by Smilegate", "website": "https://epic7.smilegatemegaport.com/", "subreddit": "/r/epicseven", "center": [1841.5, 1243.5], "path": [[1826.5, 1228.5], [1856.5, 1228.5], [1856.5, 1258.5], [1825.5, 1258.5], [1825.5, 1249.5], [1825.5, 1229.5]]}, -{"id": "twot7a", "submitted_by": "Chinese__T", "name": "r/haken logo", "description": "The logo for the progressive metal band Haken, along with art from their 2016 album Affinity.", "website": "https://hakenmusic.com/", "subreddit": "/r/haken", "center": [900.5, 1644.5], "path": [[881.5, 1638.5], [918.5, 1638.5], [918.5, 1650.5], [881.5, 1650.5]]}, -{"id": "twot75", "submitted_by": "PLA_Throwaway", "name": "A Fricklet (Road To Gramby's)", "description": "The comedically designed main character from the Roblox game Road To Gramby's. nhttps://www.roblox.com/games/5796917097/Road-to-Grambys", "website": "https://www.roblox.com/games/5796917097/Road-to-Grambys", "subreddit": "", "center": [1945.5, 328.5], "path": [[1936.5, 323.5], [1936.5, 333.5], [1953.5, 333.5], [1953.5, 323.5]]}, -{"id": "twot0t", "submitted_by": "GoJoeyGo123", "name": "Vegemite", "description": "Popular Australian breakfast spread", "website": "https://vegemite.com.au/", "subreddit": "", "center": [676.5, 640.5], "path": [[671.5, 633.5], [680.5, 633.5], [680.5, 647.5], [671.5, 647.5], [671.5, 633.5], [671.5, 633.5]]}, -{"id": "twosvo", "submitted_by": "BigPortal", "name": "Mazda Miata", "description": "A mural by fans of the sports car, the Mazda Miata/MX5.", "website": "https://www.mazdausa.com/vehicles/mx-5-miata", "subreddit": "/r/miata", "center": [1120.5, 1960.5], "path": [[1138.5, 1971.5], [1138.5, 1948.5], [1102.5, 1948.5], [1102.5, 1972.5], [1138.5, 1972.5]]}, -{"id": "twosrh", "submitted_by": "ostensacken", "name": "Breton flag", "description": "The Bretons are a Celtic ethnic group native to the Brittany region of France. Their flag was designed in 1923 by Morvan Marchal.", "website": "", "subreddit": "", "center": [140.5, 717.5], "path": [[135.5, 713.5], [144.5, 713.5], [145.5, 720.5], [135.5, 720.5]]}, -{"id": "twosqh", "submitted_by": "Cargo_Commando", "name": "King Crimson - Three of a Perfect Pair", "description": "A miniature illustration of the cover of King Crimson's 1984 album, Three of a Perfect Pair. It was built as an exclave of King Crimson's main drawing, located just below it.", "website": "https://www.dgmlive.com/king-crimson", "subreddit": "/r/KingCrimson", "center": [1741.5, 1164.5], "path": [[1738.5, 1167.5], [1743.5, 1167.5], [1743.5, 1161.5], [1738.5, 1161.5], [1738.5, 1167.5]]}, -{"id": "twosjz", "submitted_by": "Shirokaneso", "name": "Mashiro Kurata (BanG Dream!)", "description": "Pixel art of Mashiro Kurata. a character from BanG Dream!. a collective effort between kurataposting(a group of Mashiro fans) and the BanG Dream! discord.", "website": "https://twitter.com/kurataposting", "subreddit": "/r/bangdream", "center": [1686.5, 959.5], "path": [[1688.5, 939.5], [1698.5, 955.5], [1688.5, 955.5], [1688.5, 941.5], [1698.5, 939.5], [1692.5, 939.5], [1698.5, 952.5], [1697.5, 947.5], [1697.5, 944.5], [1698.5, 941.5], [1697.5, 940.5], [1693.5, 940.5], [1690.5, 939.5], [1689.5, 939.5], [1697.5, 944.5], [1697.5, 943.5], [1696.5, 942.5], [1689.5, 944.5], [1688.5, 940.5], [1695.5, 947.5], [1697.5, 943.5]]}, -{"id": "twosfb", "submitted_by": "CaringPhoenix", "name": "Ram Mandir", "description": "Ram Mandir (Lord Ram Temple) is a Hindu temple that is being built in Ayodhya, Uttar Pradesh, India, at the site of Ram Janmabhoomi, according to the Ramayana the birthplace of Rama, a principal deity of Hinduism.", "website": "https://en.wikipedia.org/wiki/Ram_Mandir", "subreddit": "", "center": [1308.5, 331.5], "path": [[1293.5, 316.5], [1290.5, 316.5], [1283.5, 319.5], [1283.5, 322.5], [1281.5, 322.5], [1281.5, 324.5], [1280.5, 324.5], [1279.5, 325.5], [1274.5, 325.5], [1274.5, 327.5], [1284.5, 327.5], [1284.5, 330.5], [1283.5, 331.5], [1281.5, 331.5], [1281.5, 342.5], [1340.5, 342.5], [1340.5, 333.5], [1339.5, 332.5], [1339.5, 330.5], [1334.5, 330.5], [1334.5, 320.5], [1332.5, 320.5], [1327.5, 324.5], [1321.5, 324.5], [1321.5, 317.5], [1318.5, 317.5], [1309.5, 321.5], [1307.5, 321.5], [1307.5, 317.5], [1305.5, 317.5], [1299.5, 320.5], [1294.5, 320.5], [1294.5, 316.5]]}, -{"id": "tworh3", "submitted_by": "ostensacken", "name": "Ljud & Bildskolan", "description": "Ljud & Bildskolan (Audio and Visual School) is a Swedish high school founded in 1993.", "website": "", "subreddit": "", "center": [789.5, 1118.5], "path": [[782.5, 1115.5], [795.5, 1115.5], [795.5, 1120.5], [795.5, 1121.5], [782.5, 1121.5]]}, -{"id": "twoqvg", "submitted_by": "Ok-Distribution-1336", "name": "Technoblade", "description": "A Minecraft YouTuber that is known for his competitiveness and funny humor. Part of the Dream SMP (survival multiplayer).", "website": "https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "subreddit": "/r/technoblade, /r/dreamsmp", "center": [222.5, 1080.5], "path": [[189.5, 1039.5], [254.5, 1039.5], [254.5, 1122.5], [190.5, 1122.5]]}, -{"id": "twoqne", "submitted_by": "Cargo_Commando", "name": "King Crimson - Beat", "description": "A miniature illustration of the cover of King Crimson's 1982 album, Beat. It was agreed Between King Crimson and the Anime Alliance that a music note could be built between Gon and BU, in exchange for King Crimson moving their 'Schizoid Man' illustration 50 pixels right of it's original position. After one day and 2 failed attempts, the music note was finally built at 1:20 PM PST April 4th and stood there until the end", "website": "https://www.dgmlive.com/king-crimson", "subreddit": "/r/KingCrimson", "center": [1707.5, 1196.5], "path": [[1709.5, 1199.5], [1709.5, 1192.5], [1705.5, 1192.5], [1705.5, 1194.5], [1706.5, 1195.5], [1706.5, 1196.5], [1705.5, 1197.5], [1705.5, 1199.5]]}, -{"id": "twoczd", "submitted_by": "Virtual_Cheek_7633", "name": "Flandre Scarlet", "description": "A character from Touhou 6: Embodiment of Scarlet Devil.", "website": "https://en.touhouwiki.net/wiki/Flandre_Scarlet", "subreddit": "/r/touhou", "center": [1638.5, 1468.5], "path": [[1621.5, 1451.5], [1654.5, 1451.5], [1654.5, 1484.5], [1621.5, 1484.5]]}, -{"id": "twoce3", "submitted_by": "zpjester", "name": "Starship S20", "description": "SpaceX's Starship S20, created by members of various SpaceX subs.", "website": "", "subreddit": "/r/spacexplace", "center": [895.5, 1568.5], "path": [[881.5, 1539.5], [894.5, 1521.5], [897.5, 1521.5], [909.5, 1540.5], [909.5, 1546.5], [904.5, 1546.5], [904.5, 1585.5], [910.5, 1594.5], [910.5, 1606.5], [881.5, 1606.5], [881.5, 1593.5], [887.5, 1583.5], [887.5, 1548.5], [881.5, 1547.5]]}, -{"id": "twocc3", "submitted_by": "SoakingBearInTheMoss", "name": "Daimyo", "description": "Beloved dog of fabled paladin and game designer Artix von Krieger. Created by fans of Artix Entertainment games such as; /r/AQW, /r/AQ3D, /r/AdventureQuest and /r/DragonFable", "website": "https://twitter.com/Daimyo_AE", "subreddit": "/r/AQW", "center": [734.5, 1662.5], "path": [[727.5, 1656.5], [729.5, 1658.5], [730.5, 1658.5], [731.5, 1657.5], [732.5, 1656.5], [733.5, 1656.5], [733.5, 1658.5], [734.5, 1658.5], [735.5, 1657.5], [736.5, 1657.5], [737.5, 1656.5], [740.5, 1656.5], [742.5, 1658.5], [742.5, 1661.5], [741.5, 1661.5], [739.5, 1663.5], [739.5, 1666.5], [738.5, 1668.5], [737.5, 1667.5], [736.5, 1667.5], [735.5, 1668.5], [734.5, 1667.5], [733.5, 1667.5], [732.5, 1668.5], [731.5, 1667.5], [730.5, 1668.5], [729.5, 1667.5], [729.5, 1666.5], [728.5, 1665.5], [727.5, 1665.5], [727.5, 1656.5]]}, -{"id": "twocbz", "submitted_by": "Y_Martinaise", "name": "/r/SouthAfrica", "description": "Mural of the South African national flag displayed horizontally, featuring a mural of Nelson Mandela, the country's first democratically-elected president following the end of apartheid, and a springbok, a species of antelope which is the national animal of South Africa", "website": "", "subreddit": "/r/SouthAfrica", "center": [751.5, 1011.5], "path": [[720.5, 955.5], [720.5, 1066.5], [781.5, 1067.5], [781.5, 955.5], [781.5, 954.5], [781.5, 954.5]]}, -{"id": "twobr1", "submitted_by": "Nincadalop", "name": "Update TF2", "description": "A collaborative effort by the two communities of two games that share initials, game engine, and bot crisis. TF2 stands for Team Fortress 2 and Titanfall 2, two games which desperately need a security update. Subreddits: r/tf2 and r/titanfalln", "website": "", "subreddit": "", "center": [815.5, 53.5], "path": [[790.5, 35.5], [840.5, 35.5], [840.5, 70.5], [790.5, 70.5]]}, -{"id": "twobh1", "submitted_by": "fruselight", "name": "Honkai Impact 3rd", "description": "Honkai Impact 3rd is an free-to-play action hack 'n' slash game inspired by Evangelion, developed and published by miHoYo/HoYoverse, first in China in 2016, then globally on March 28th, 2018.", "website": "https://honkaiimpact3.hoyoverse.com", "subreddit": "/r/houkai3rd", "center": [1695.5, 1786.5], "path": [[1674.5, 1809.5], [1674.5, 1762.5], [1709.5, 1762.5], [1709.5, 1773.5], [1720.5, 1774.5], [1721.5, 1787.5], [1715.5, 1789.5], [1716.5, 1790.5], [1717.5, 1790.5], [1713.5, 1792.5], [1713.5, 1793.5], [1714.5, 1793.5], [1715.5, 1793.5], [1713.5, 1795.5], [1714.5, 1797.5], [1722.5, 1810.5], [1722.5, 1802.5], [1721.5, 1808.5], [1722.5, 1810.5]]}, -{"id": "twob1y", "submitted_by": "Spenske-", "name": "TGForever", "description": "An advertisement for the TGForever Discord server, a Minecraft and Terraria community with dedicated servers for each.", "website": "https://discord.gg/tgf", "subreddit": "/r/TGF", "center": [1602.5, 985.5], "path": [[1592.5, 969.5], [1612.5, 969.5], [1612.5, 1000.5], [1591.5, 1000.5], [1591.5, 969.5]]}, -{"id": "two8y1", "submitted_by": "hakyeons-army", "name": "BC Logo", "description": "Logo of a C inside a B. Created and maintained by BC logo guy in alliance with r/dinoplace", "website": "", "subreddit": "/r/dinoplace", "center": [340.5, 784.5], "path": [[342.5, 781.5], [342.5, 786.5], [338.5, 786.5], [338.5, 781.5]]}, -{"id": "two8xr", "submitted_by": "lemonaid4", "name": "Suncracker0", "description": "the simplified logo of a small twitch streamer named Suncracker0", "website": "https://www.twitch.tv/suncracker0", "subreddit": "/r/Suncracker", "center": [736.5, 950.5], "path": [[734.5, 946.5], [734.5, 954.5], [738.5, 954.5], [738.5, 946.5], [738.5, 946.5]]}, -{"id": "two8s7", "submitted_by": "ziemnakiscool", "name": "Kurzgesagt Painting", "description": "The r/kurzgesagt community made this picture.", "website": "", "subreddit": "/r/kurzgesagt", "center": [749.5, 52.5], "path": [[788.5, 70.5], [790.5, 68.5], [790.5, 36.5], [788.5, 35.5], [707.5, 35.5], [708.5, 69.5], [707.5, 70.5], [707.5, 36.5], [707.5, 70.5]]}, -{"id": "two8df", "submitted_by": "MagicBraden1", "name": "r/Cubers", "description": "r/cubers is a place for speedcubers (people who speedsolve different twisty-puzzles, such as the Rubik's cube) discuss different cubes, solving styles, records, and more.", "website": "", "subreddit": "/r/cubers", "center": [1388.5, 497.5], "path": [[1350.5, 485.5], [1364.5, 485.5], [1363.5, 486.5], [1364.5, 487.5], [1365.5, 487.5], [1365.5, 488.5], [1366.5, 488.5], [1366.5, 489.5], [1366.5, 489.5], [1367.5, 490.5], [1368.5, 490.5], [1368.5, 491.5], [1425.5, 491.5], [1425.5, 509.5], [1412.5, 509.5], [1412.5, 503.5], [1355.5, 503.5], [1355.5, 502.5], [1354.5, 502.5], [1354.5, 501.5], [1353.5, 501.5], [1353.5, 500.5], [1352.5, 500.5], [1352.5, 499.5], [1351.5, 499.5], [1351.5, 498.5], [1350.5, 498.5], [1350.5, 485.5]]}, -{"id": "two7fm", "submitted_by": "Boring_Disaster_21", "name": "Luna crown", "description": "Crown representing Himemori Luna, a VTuber from Hololive Japan 4th Generation.", "website": "https://hololive.hololivepro.com/en/talents/himemori-luna/", "subreddit": "/r/Hololive", "center": [1360.5, 1119.5], "path": [[1357.5, 1110.5], [1357.5, 1115.5], [1355.5, 1115.5], [1352.5, 1118.5], [1352.5, 1120.5], [1353.5, 1121.5], [1353.5, 1123.5], [1355.5, 1125.5], [1365.5, 1125.5], [1366.5, 1124.5], [1366.5, 1123.5], [1367.5, 1122.5], [1367.5, 1121.5], [1368.5, 1120.5], [1368.5, 1118.5], [1360.5, 1110.5]]}, -{"id": "two6n0", "submitted_by": "-ChronicClub", "name": "Classic Guy, Spelunky Series", "description": "The protagonist of Spelunky Classic, and returns as the final unlockable character in Spelunky 2, both games being tough, 2D roguelike platformers.", "website": "https://www.mossmouth.com/spelunky2/", "subreddit": "/r/Spelunky", "center": [871.5, 513.5], "path": [[867.5, 518.5], [877.5, 518.5], [876.5, 516.5], [874.5, 516.5], [874.5, 514.5], [877.5, 510.5], [875.5, 510.5], [874.5, 507.5], [869.5, 507.5], [867.5, 510.5], [867.5, 517.5]]}, -{"id": "two6gx", "submitted_by": "Oofio128", "name": "My Little Pony crystal mural", "description": "Combines the main characters of Generations 4 and 5 of the My Little Pony series as well the combined tripony (Unicorn, Pegasus, and Earth Pony) gems from the MLP Gen. 5 movie A New Generation (2021). It was made with the help of the the r/MyLittlePony subreddit and the Manechat Discord server.\n\nThis art was created here after the Twitch streamer Asmongold took over MLP's original spot on r/place to create the Guts portrait. Over the course of the event, this art became an important rallying point for the MLP fandom in combating numerous Twitch raids on themselves and their surrounding allies, being removed several times. It was first voided, then replaced by a lemon, then a bird, then was hit by the Meteor. Despite all that, it stayed strong up until the end.", "website": "https://discord.gg/manechat", "subreddit": "/r/MyLittlePony", "center": [1651.5, 247.5], "path": [[1656.5, 211.5], [1645.5, 211.5], [1633.5, 212.5], [1627.5, 217.5], [1616.5, 229.5], [1613.5, 240.5], [1614.5, 258.5], [1619.5, 278.5], [1637.5, 279.5], [1640.5, 281.5], [1652.5, 281.5], [1669.5, 281.5], [1671.5, 279.5], [1684.5, 279.5], [1686.5, 261.5], [1689.5, 257.5], [1688.5, 228.5], [1677.5, 221.5], [1676.5, 213.5], [1662.5, 211.5], [1652.5, 211.5]]}, -{"id": "two5oy", "submitted_by": "j123s", "name": "Overcast Community", "description": "Overcast Community (oc.tc), formerly Overcast Network, is a Minecraft server that focuses on large team-based minigames like Capture the Wool.", "website": "https://oc.tc", "subreddit": "", "center": [1990.5, 1517.5], "path": [[1982.5, 1511.5], [1990.5, 1509.5], [1998.5, 1511.5], [1997.5, 1522.5], [1990.5, 1527.5], [1983.5, 1522.5]]}, -{"id": "two4yq", "submitted_by": "MrEduxator", "name": "Uruha Rushia's Butterfly", "description": "A short and sweet tribute to Uruha Rushia, a hololive member who was a part of holoive until Feburary 24th, 2022. The butterfly was used to represent her, as she had a strong association with them.", "website": "https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ", "subreddit": "/r/Hololive", "center": [253.5, 790.5], "path": [[250.5, 785.5], [259.5, 785.5], [259.5, 791.5], [256.5, 793.5], [255.5, 794.5], [254.5, 795.5], [253.5, 795.5], [253.5, 796.5], [252.5, 796.5], [251.5, 795.5], [250.5, 794.5], [249.5, 794.5], [248.5, 793.5], [247.5, 793.5], [247.5, 789.5], [248.5, 789.5], [248.5, 787.5], [249.5, 786.5]]}, -{"id": "two4ji", "submitted_by": "Narnall", "name": "Space Station 13", "description": "Space station 13 clown", "website": "", "subreddit": "/r/ss13", "center": [1699.5, 591.5], "path": [[1678.5, 570.5], [1727.5, 569.5], [1726.5, 590.5], [1722.5, 596.5], [1715.5, 592.5], [1710.5, 593.5], [1707.5, 598.5], [1707.5, 600.5], [1710.5, 605.5], [1711.5, 606.5], [1705.5, 611.5], [1706.5, 618.5], [1678.5, 618.5]]}, -{"id": "two4an", "submitted_by": "Y_Martinaise", "name": "Russian anti-war flag", "description": "Variant of the Russian national flag (without the red stripe) currently being used by Russians protesting the invasion of Ukraine", "website": "https://en.wikipedia.org/wiki/White-blue-white_flag", "subreddit": "", "center": [726.5, 266.5], "path": [[695.5, 263.5], [753.5, 262.5], [753.5, 269.5], [695.5, 268.5]]}, -{"id": "two3qz", "submitted_by": "hakyeons-army", "name": "Mini LOONA Logo", "description": "A small logo of K-Pop girl group LOONA", "website": "", "subreddit": "/r/loona", "center": [515.5, 535.5], "path": [[511.5, 529.5], [511.5, 540.5], [519.5, 540.5], [519.5, 529.5]]}, -{"id": "two2oz", "submitted_by": "NinjamanAway", "name": "Australia", "description": "The Australian community (/r/Australia & /r/Straya)nVB - local beernVegemite Jar - local spreadnAustralian Aboriginal FlagnBunnings Warehouse Logo - Australian hardware storenAustralian flag with Sydney Opera House, and an ANZAC poppynKangaroo with Koala ridingnNed Kelly's armournFreddo frog - popular local chocolatenBubble o' Bill Ice Cream - Local ice creamnCockatoo", "website": "", "subreddit": "/r/straya, /r/australia", "center": [692.5, 661.5], "path": [[721.5, 608.5], [702.5, 608.5], [702.5, 632.5], [669.5, 632.5], [669.5, 698.5], [671.5, 698.5], [671.5, 745.5], [680.5, 745.5], [679.5, 744.5], [678.5, 744.5], [678.5, 740.5], [677.5, 740.5], [677.5, 734.5], [676.5, 734.5], [676.5, 720.5], [677.5, 720.5], [677.5, 715.5], [678.5, 715.5], [678.5, 710.5], [679.5, 710.5], [680.5, 709.5], [680.5, 705.5], [681.5, 705.5], [681.5, 704.5], [682.5, 704.5], [682.5, 702.5], [683.5, 702.5], [683.5, 700.5], [702.5, 685.5], [704.5, 686.5], [712.5, 681.5], [712.5, 649.5], [720.5, 649.5], [722.5, 647.5], [722.5, 633.5], [721.5, 633.5], [721.5, 608.5]]}, -{"id": "two1zz", "submitted_by": "silverwolv", "name": "WolvHaven", "description": "WolvHaven is a creative Minecraft server that started out as a city role-play and survival server established in 2011. It is mainly known for its railway Metro Systems constructed using the TrainCarts Bukkit plugin. The server has since transitioned into more of a creative city-building server for architecture, urban, and transit enthusiasts, centered around a showcase city. Depicted here is the server's official flag.", "website": "https://wolvhaven.net", "subreddit": "/r/wolvhaven", "center": [1350.5, 463.5], "path": [[1346.5, 461.5], [1354.5, 461.5], [1354.5, 465.5], [1346.5, 465.5]]}, -{"id": "two0ph", "submitted_by": "SenatusSPQR", "name": "Nano currency symbol", "description": "The currency symbol of Nano, a green, instant & feeless cryptocurrency", "website": "https://www.nano.org", "subreddit": "/r/nanocurrency", "center": [841.5, 649.5], "path": [[826.5, 634.5], [856.5, 634.5], [856.5, 663.5], [826.5, 663.5]]}, -{"id": "two0lb", "submitted_by": "hakyeons-army", "name": "Pink Fantasy", "description": "Logo of K-Pop group Pink Fantasy. Left is a logo consisting of two keys crossing over each other, and to the right is a bunny representing member Daewang.", "website": "", "subreddit": "", "center": [1689.5, 894.5], "path": [[1684.5, 896.5], [1681.5, 897.5], [1681.5, 891.5], [1696.5, 891.5], [1696.5, 897.5]]}, -{"id": "two0em", "submitted_by": "betterert", "name": "Juke's Towers of Hell", "description": "Juke's Towers of Hell is a platforming game on the ROBLOX platform where players are tasked with climbing very tall and difficult towers. It is notorious for its high difficulty. The three large towers (from left to right) are the Tower of Hecc (sic), the Tower of Screen Punching, and the Tower of Impossible Expectations. These are the first three towers ever added to the game, respectively. The small structures in the middle are other beloved towers in the community.", "website": "https://jtoh.fandom.com/wiki/Juke%27s_Towers_of_Hell_Wiki", "subreddit": "/r/JToH2", "center": [1520.5, 1628.5], "path": [[1507.5, 1605.5], [1532.5, 1605.5], [1532.5, 1651.5], [1507.5, 1651.5]]}, -{"id": "twnzxf", "submitted_by": "Killer_The_Cat", "name": "Métis Flag", "description": "The flag of the Métis people of Canada", "website": "", "subreddit": "", "center": [218.5, 467.5], "path": [[226.5, 462.5], [210.5, 462.5], [210.5, 472.5], [226.5, 472.5]]}, -{"id": "twnzwk", "submitted_by": "vizce", "name": "Rainbow Six Siege", "description": "Two of the four German playable characters from the game Rainbow Six Siege. Cooperation with /r/Rainbow6/", "website": "https://en.wikipedia.org/wiki/Tom_Clancy's_Rainbow_Six_Siege", "subreddit": "/r/Rainbow6, /r/placeDE", "center": [255.5, 1160.5], "path": [[236.5, 1148.5], [274.5, 1148.5], [274.5, 1171.5], [235.5, 1171.5], [236.5, 1148.5]]}, -{"id": "twnz2v", "submitted_by": "Vampire_Artyom", "name": "Stardew Valley Art #1", "description": "Created by the Stardew Valley Community, depicting some recognizable art from the game: Brown Chicken, Blue Chicken, a Stardrop and a Green Junimo, alongside a heavily pixelated part of the world's landscape", "website": "https://www.stardewvalley.net", "subreddit": "/r/StardewValley", "center": [102.5, 365.5], "path": [[71.5, 345.5], [132.5, 345.5], [132.5, 386.5], [77.5, 386.5], [77.5, 385.5], [76.5, 385.5], [76.5, 383.5], [75.5, 383.5], [74.5, 382.5], [71.5, 382.5]]}, -{"id": "twnyry", "submitted_by": "AsrielDashie", "name": "Taiwan/R.O.C Flag", "description": "National flag of Republic of China (Taiwan).", "website": "", "subreddit": "/r/taiwan", "center": [959.5, 555.5], "path": [[941.5, 543.5], [941.5, 566.5], [977.5, 566.5], [977.5, 543.5]]}, -{"id": "twnymj", "submitted_by": "Asteralium", "name": "Animal Jam Ladybug", "description": "A ladybug from the logo of Animal Jam, a virtual world that opened in 2010.", "website": "https://discord.com/invite/animaljamcommunity", "subreddit": "/r/AnimalJam", "center": [1761.5, 1090.5], "path": [[1755.5, 1083.5], [1767.5, 1083.5], [1767.5, 1097.5], [1755.5, 1097.5]]}, -{"id": "twnyli", "submitted_by": "Drakzia", "name": "ENS Rennes Logo", "description": "The logo of the French school École normale supérieure de Rennes (ENS Rennes).", "website": "http://www.ens-rennes.fr/", "subreddit": "", "center": [288.5, 1590.5], "path": [[282.5, 1586.5], [282.5, 1594.5], [293.5, 1594.5], [293.5, 1586.5]]}, -{"id": "twnyao", "submitted_by": "Glum218", "name": "M 152.0 (810) motor coach", "description": "Small railway passenger vehicle manufactured in Czechoslovakia 1975-82. In total, 885 of them were made (including the export version for Hungary) and some are still in use, mostly on rural railways in Czechia, Slovakia, and Hungary.", "website": "https://en.wikipedia.org/wiki/%C4%8CSD_Class_M_152.0", "subreddit": "/r/czech", "center": [1286.5, 237.5], "path": [[1269.5, 248.5], [1269.5, 224.5], [1293.5, 223.5], [1304.5, 227.5], [1301.5, 245.5], [1294.5, 252.5]]}, -{"id": "twny3q", "submitted_by": "the_pain_train_town", "name": "Brick Hill Logo and Chicken Hat", "description": "Two small icons of the Brick Hill Logo and the Chicken Hat item.", "website": "https://www.brick-hill.com/", "subreddit": "/r/BrickHill", "center": [1925.5, 86.5], "path": [[1921.5, 74.5], [1921.5, 74.5], [1921.5, 74.5], [1921.5, 98.5], [1928.5, 98.5], [1928.5, 74.5], [1921.5, 74.5]]}, -{"id": "twny3k", "submitted_by": "GoJoeyGo123", "name": "Rickroll QR code", "description": "Rick Astley - Never Gonna Give You Up", "website": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "subreddit": "", "center": [1886.5, 933.5], "path": [[1870.5, 917.5], [1902.5, 917.5], [1902.5, 949.5], [1870.5, 949.5]]}, -{"id": "twny35", "submitted_by": "TehEpicDuckeh", "name": "Stimlo", "description": "The short-lived logo of the musician Stimlo. They create music in varying styles and genres, but all are EDM.", "website": "https://open.spotify.com/artist/4hF7yJOF52q2pczg70fdl2", "subreddit": "/r/stimlo", "center": [875.5, 1850.5], "path": [[872.5, 1847.5], [872.5, 1852.5], [877.5, 1852.5], [877.5, 1847.5]]}, -{"id": "twnxkl", "submitted_by": "MrEduxator", "name": "Risu nut", "description": "Hololive Indonesia's 1st Generation VTuber Ayunda Risu as a walnut! How nutty! She's also the creator of Nonstop Nut November, a fun spin on the average No Nut November.", "website": "https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw", "subreddit": "/r/Hololive", "center": [1342.5, 1070.5], "path": [[1336.5, 1082.5], [1349.5, 1082.5], [1349.5, 1081.5], [1350.5, 1081.5], [1350.5, 1079.5], [1351.5, 1079.5], [1351.5, 1076.5], [1352.5, 1076.5], [1352.5, 1070.5], [1352.5, 1069.5], [1353.5, 1069.5], [1354.5, 1069.5], [1354.5, 1068.5], [1355.5, 1067.5], [1354.5, 1066.5], [1353.5, 1065.5], [1353.5, 1061.5], [1351.5, 1061.5], [1351.5, 1060.5], [1349.5, 1060.5], [1349.5, 1059.5], [1347.5, 1059.5], [1347.5, 1058.5], [1345.5, 1058.5], [1345.5, 1057.5], [1338.5, 1057.5], [1338.5, 1058.5], [1336.5, 1058.5], [1336.5, 1059.5], [1336.5, 1059.5], [1334.5, 1059.5], [1334.5, 1060.5], [1333.5, 1060.5], [1333.5, 1061.5], [1332.5, 1061.5], [1332.5, 1079.5], [1333.5, 1079.5], [1333.5, 1079.5], [1333.5, 1081.5], [1335.5, 1081.5], [1335.5, 1082.5], [1341.5, 1082.5]]}, -{"id": "twnx3u", "submitted_by": "micarot", "name": "Aromat", "description": "A swiss spice, famous in swizerland only", "website": "", "subreddit": "", "center": [1180.5, 885.5], "path": [[1177.5, 879.5], [1183.5, 879.5], [1183.5, 890.5], [1177.5, 890.5]]}, -{"id": "twnvko", "submitted_by": "CyborgRyno603", "name": "The iFunny watermark", "description": "Uh oh, you forgot to crop your stolen meme, now you deal with the consequences. Brought to you by r/Place_iFunny.", "website": "https://www.ifunny.co", "subreddit": "/r/iFunny", "center": [338.5, 1893.5], "path": [[311.5, 1888.5], [365.5, 1888.5], [365.5, 1897.5], [311.5, 1897.5], [311.5, 1888.5]]}, -{"id": "twnvep", "submitted_by": "MrEduxator", "name": "Snuffy", "description": "An emote of Twitch VTuber Snuffy. Lead by her community, and Snuffy herself.", "website": "https://www.twitch.tv/snuffy", "subreddit": "", "center": [694.5, 1074.5], "path": [[667.5, 1050.5], [719.5, 1050.5], [720.5, 1098.5], [668.5, 1098.5]]}, -{"id": "twnv32", "submitted_by": "ibm2431", "name": "DDLC Micro Yuri", "description": "A miniature representation of Yuri, a character from Doki Doki Literature Club. DDLC is a psychological horror visual novel about writing your way into a girl's heart. Yuri's hobbies include aromatherapy, reading horror novels, and knife collecting. Will you take a stab at her route and make the cut?", "website": "https://ddlc.moe/", "subreddit": "/r/ddlc", "center": [1862.5, 1443.5], "path": [[1859.5, 1439.5], [1864.5, 1439.5], [1864.5, 1447.5], [1859.5, 1447.5]]}, -{"id": "twnutc", "submitted_by": "eevee1714", "name": "Belkan Flag", "description": "The flag of Belka from the video game Ace Combat, infamous for dropping 7 nukes on itself to prevent the advance of allied forces", "website": "", "subreddit": "/r/acecombat", "center": [1699.5, 319.5], "path": [[1706.5, 329.5], [1697.5, 329.5], [1697.5, 328.5], [1692.5, 328.5], [1692.5, 309.5], [1705.5, 309.5], [1705.5, 329.5]]}, -{"id": "twnut5", "submitted_by": "Beegrene", "name": "Metroid", "description": "One of the titular alien parasites from the Metroid video game series.", "website": "https://metroid.fandom.com/wiki/Metroid_(species)", "subreddit": "/r/Metroid", "center": [1357.5, 60.5], "path": [[1352.5, 68.5], [1362.5, 68.5], [1365.5, 62.5], [1365.5, 57.5], [1360.5, 52.5], [1353.5, 52.5], [1348.5, 58.5], [1349.5, 63.5], [1352.5, 68.5]]}, -{"id": "twnuop", "submitted_by": "Narnall", "name": "Chestnut Puck (Berserk)", "description": "This is Puck from Berserk in his iconic and emotional chestnut form.", "website": "", "subreddit": "/r/berserklejerk", "center": [730.5, 283.5], "path": [[715.5, 296.5], [715.5, 269.5], [745.5, 269.5], [745.5, 296.5]]}, -{"id": "twntyf", "submitted_by": "MrEduxator", "name": "Ankimo", "description": "The mascot of Tokino Sora, a Hololive VTuber.", "website": "https://www.youtube.com/channel/UCp6993wxpyDPHUpavwDFqgg", "subreddit": "/r/Hololive", "center": [1337.5, 1120.5], "path": [[1332.5, 1115.5], [1332.5, 1125.5], [1342.5, 1125.5], [1342.5, 1115.5], [1332.5, 1115.5]]}, -{"id": "twntnk", "submitted_by": "MrDaveCole98", "name": "Guinness Rei", "description": "Pixel art of Rei Ayanami, a character from the anime Neon Genesis Evangelion, holding a mug of Guinness beer in honor of the subreddit's alliance with Ireland.", "website": "https://www.evangelion.co.jp/index.html", "subreddit": "/r/evangelion", "center": [1261.5, 143.5], "path": [[1250.5, 157.5], [1272.5, 157.5], [1272.5, 128.5], [1250.5, 128.5], [1250.5, 157.5]]}, -{"id": "twntm5", "submitted_by": "CanicheFumando", "name": "Flag of Uruguay", "description": "Uruguayan flag with some typical stuff of the country", "website": "", "subreddit": "/r/Uruguay", "center": [1083.5, 675.5], "path": [[966.5, 665.5], [966.5, 684.5], [1172.5, 684.5], [1200.5, 684.5], [1200.5, 665.5], [966.5, 665.5]]}, -{"id": "twns45", "submitted_by": "UrbanTea362", "name": "Inscryption", "description": "From the creator of Pony Island and The Hex comes the latest mind melting, self-destructing love letter to video games. Inscryption is a narrative focused, card-based odyssey that blends the deckbuilding roguelike, escape-room style puzzles, and psychological horror into a blood-laced smoothie. Darker still are the secrets inscrybed upon the cards", "website": "", "subreddit": "/r/inscryption", "center": [127.5, 298.5], "path": [[106.5, 267.5], [160.5, 267.5], [160.5, 275.5], [144.5, 274.5], [146.5, 277.5], [146.5, 288.5], [148.5, 288.5], [148.5, 300.5], [141.5, 306.5], [141.5, 318.5], [143.5, 318.5], [144.5, 319.5], [144.5, 320.5], [152.5, 320.5], [152.5, 328.5], [104.5, 328.5], [101.5, 327.5], [101.5, 319.5], [99.5, 319.5], [98.5, 318.5], [96.5, 318.5], [96.5, 316.5], [95.5, 316.5], [95.5, 314.5], [94.5, 314.5], [94.5, 312.5], [95.5, 312.5], [95.5, 311.5], [98.5, 311.5], [98.5, 310.5], [99.5, 309.5], [100.5, 308.5], [101.5, 308.5], [105.5, 304.5], [110.5, 304.5], [111.5, 305.5], [110.5, 304.5], [111.5, 305.5], [112.5, 304.5], [114.5, 302.5], [114.5, 300.5], [113.5, 299.5], [112.5, 298.5], [112.5, 292.5], [111.5, 292.5], [111.5, 286.5], [110.5, 286.5], [110.5, 275.5], [106.5, 275.5]]}, -{"id": "twnrj8", "submitted_by": "Yolo1212123", "name": "AKL", "description": "Alternative Keyboard Layouts", "website": "", "subreddit": "", "center": [642.5, 1344.5], "path": [[639.5, 1343.5], [645.5, 1343.5], [644.5, 1346.5], [639.5, 1346.5], [639.5, 1343.5]]}, -{"id": "twnrbk", "submitted_by": "LandLovingFish", "name": "MCC (Minecraft Championship)", "description": "Minecraft Championship, also known as MCC, is a monthly Minecraft minigame event streamed by multiple creators. Several logos and creators who have participated are shown here.", "website": "https://noxcrew.com/mcc", "subreddit": "/r/MinecraftChampionship", "center": [889.5, 561.5], "path": [[864.5, 579.5], [864.5, 587.5], [873.5, 587.5], [873.5, 590.5], [879.5, 590.5], [879.5, 583.5], [904.5, 584.5], [904.5, 534.5], [885.5, 534.5], [885.5, 535.5], [878.5, 535.5], [877.5, 535.5], [877.5, 566.5], [880.5, 566.5], [881.5, 566.5], [881.5, 579.5], [877.5, 566.5], [881.5, 579.5], [864.5, 579.5], [864.5, 587.5], [864.5, 587.5]]}, -{"id": "twnr8m", "submitted_by": "ThatDudeIsShort", "name": "Lucifer", "description": "Lucifer is one of the characters of the game Helltaker", "website": "", "subreddit": "/r/Helltaker", "center": [1990.5, 1255.5], "path": [[1981.5, 1237.5], [1999.5, 1237.5], [1999.5, 1272.5], [1981.5, 1272.5]]}, -{"id": "twnqia", "submitted_by": "bermuda__", "name": "A2B2", "description": "The logo for A2B2.org, an online forum with a radio station, music festival, and magazine", "website": "https://a2b2.org", "subreddit": "/r/a2b2", "center": [10.5, 665.5], "path": [[19.5, 643.5], [9.5, 643.5], [9.5, 642.5], [0.5, 642.5], [0.5, 687.5], [20.5, 687.5], [20.5, 643.5]]}, -{"id": "twnpxw", "submitted_by": "GoJoeyGo123", "name": "Manjaro", "description": "Manjaro is an open source linux operating system", "website": "https://manjaro.org/", "subreddit": "/r/ManjaroLinux", "center": [66.5, 685.5], "path": [[62.5, 681.5], [69.5, 681.5], [69.5, 688.5], [62.5, 688.5], [62.5, 681.5]]}, -{"id": "twnpks", "submitted_by": "MiguJib", "name": "Fuck AfD", "description": "AfD is a German right-wing political party that many Germans hate.", "website": "https://en.wikipedia.org/wiki/Alternative_for_Germany", "subreddit": "/r/placeDE", "center": [335.5, 836.5], "path": [[297.5, 831.5], [372.5, 831.5], [372.5, 841.5], [297.5, 841.5], [297.5, 841.5]]}, -{"id": "twnpie", "submitted_by": "ThatDudeIsShort", "name": "Flag of Puerto Rico", "description": "The flag of Puerto Rico, a Caribbean island and a territory of the United States.", "website": "https://en.wikipedia.org/wiki/Puerto_Rico", "subreddit": "/r/PuertoRico", "center": [1373.5, 1769.5], "path": [[1345.5, 1784.5], [1400.5, 1784.5], [1400.5, 1753.5], [1345.5, 1753.5]]}, -{"id": "twnp7v", "submitted_by": "TorebeCP", "name": "TheTook", "description": "TheTook logo from TorebeCP's YouTube channel", "website": "https://www.youtube.com/channel/UCtXRBHMVCUEFi0UcVI1V-zA", "subreddit": "", "center": [248.5, 296.5], "path": [[246.5, 294.5], [250.5, 294.5], [250.5, 298.5], [246.5, 298.5], [246.5, 294.5]]}, -{"id": "twnp51", "submitted_by": "ToCatchACreditor", "name": "Xenoblade Chronicles", "description": "Artwork representing each game in the Xenoblade franchise. nnClockwise from left:n(1,X,3,2)", "website": "", "subreddit": "/r/Xenoblade_Chronicles", "center": [1186.5, 716.5], "path": [[1175.5, 743.5], [1175.5, 716.5], [1174.5, 715.5], [1174.5, 709.5], [1172.5, 707.5], [1172.5, 704.5], [1171.5, 703.5], [1171.5, 701.5], [1172.5, 698.5], [1173.5, 680.5], [1176.5, 678.5], [1179.5, 680.5], [1178.5, 683.5], [1177.5, 684.5], [1177.5, 690.5], [1178.5, 691.5], [1178.5, 693.5], [1183.5, 693.5], [1186.5, 695.5], [1200.5, 695.5], [1200.5, 743.5], [1175.5, 743.5]]}, -{"id": "twnp12", "submitted_by": "Mikepick492", "name": "Dale Earnhardt's Number 3", "description": "The number of famous nascar driver Dale Earnhardt", "website": "", "subreddit": "/r/nascar", "center": [775.5, 1527.5], "path": [[754.5, 1512.5], [754.5, 1543.5], [796.5, 1542.5], [797.5, 1511.5], [796.5, 1511.5], [772.5, 1512.5]]}, -{"id": "twno9a", "submitted_by": "NoodleSushi", "name": "Godot Engine", "description": "The logo of Godot designed by Andrea Calabró. Godot is a free and open-source game engine released under the MIT license, initially developed by Juan Linietsky (logo designer's husband) and Ariel Manzur and maintained by a community of voluntary contributors.", "website": "https://godotengine.org", "subreddit": "/r/godot", "center": [1222.5, 438.5], "path": [[1196.5, 433.5], [1196.5, 445.5], [1246.5, 445.5], [1246.5, 430.5], [1222.5, 430.5], [1222.5, 433.5]]}, -{"id": "twno94", "submitted_by": "Norpaz", "name": "Flag of Finland", "description": "Finland flag made by r/place_nordicunion and r/Suomi", "website": "https://en.wikipedia.org/wiki/Finland", "subreddit": "/r/place_nordicunion, /r/Suomi", "center": [559.5, 204.5], "path": [[497.5, 294.5], [537.5, 293.5], [537.5, 285.5], [594.5, 285.5], [594.5, 203.5], [634.5, 203.5], [634.5, 189.5], [635.5, 188.5], [635.5, 188.5], [635.5, 186.5], [634.5, 185.5], [635.5, 183.5], [636.5, 182.5], [636.5, 181.5], [636.5, 180.5], [635.5, 179.5], [634.5, 179.5], [634.5, 159.5], [634.5, 120.5], [635.5, 122.5], [591.5, 120.5], [591.5, 136.5], [539.5, 136.5], [539.5, 120.5], [525.5, 120.5], [525.5, 136.5], [496.5, 136.5], [496.5, 149.5], [527.5, 149.5], [527.5, 180.5], [496.5, 180.5], [497.5, 293.5]]}, -{"id": "twnnbb", "submitted_by": "BreakDownSphere", "name": "Starfleet insignia", "description": "The Star Trek Delta insignia, a direct descendant of the vector component of the old NASA (and later United Earth Space Probe Agency) logos. The logo is synonymous with Star Trek in today's pop culture.", "website": "https://www.startrek.com/article/starfleet-insignia-explained", "subreddit": "/r/startrek, /r/place_CentralAlliance", "center": [616.5, 960.5], "path": [[608.5, 975.5], [613.5, 973.5], [623.5, 973.5], [623.5, 947.5], [609.5, 947.5], [609.5, 961.5], [608.5, 965.5], [608.5, 975.5]]}, -{"id": "twnn3g", "submitted_by": "Zerustu", "name": "ISAE SUPAERO/ENSMA", "description": "two major engineering schools in France specializing in aeronautics", "website": "http://groupe-isae.fr", "subreddit": "", "center": [1157.5, 879.5], "path": [[1130.5, 869.5], [1175.5, 869.5], [1175.5, 890.5], [1172.5, 890.5], [1172.5, 896.5], [1175.5, 896.5], [1169.5, 902.5], [1169.5, 899.5], [1167.5, 897.5], [1163.5, 897.5], [1161.5, 899.5], [1161.5, 880.5], [1130.5, 880.5]]}, -{"id": "twnn1g", "submitted_by": "CharlieNmyT", "name": "Sakamata Chloe mask", "description": "Mask worn by Hololive Japan Generation 6 (Secret Society HoloX) Vtuber Sakamata Chloe. During her debut, she took off her eye mask and showed her red eyes to the audience. After her debut, her YouTube and Twitter profile pictures were updated to no longer feature the eye mask. A new version of the HoloX PV was released on the official Hololive channel after her debut to reflect the mask change.", "website": "https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw/featured", "subreddit": "/r/Hololive", "center": [1392.5, 1067.5], "path": [[1386.5, 1065.5], [1386.5, 1068.5], [1389.5, 1070.5], [1397.5, 1070.5], [1399.5, 1067.5], [1399.5, 1064.5], [1386.5, 1064.5]]}, -{"id": "twnmmh", "submitted_by": "MrDaveCole98", "name": "NERV Logo (Evangelion)", "description": "The logo representing NERV, a fictional paramilitary agency from the Neon Genesis Evangelion anime, stylized in the color of Ireland's flag.", "website": "https://www.evangelion.co.jp/index.html", "subreddit": "/r/evangelion", "center": [135.5, 751.5], "path": [[122.5, 763.5], [149.5, 763.5], [148.5, 738.5], [122.5, 738.5], [122.5, 763.5]]}, -{"id": "twnmb9", "submitted_by": "TorebeCP", "name": "Piston", "description": "A Minecraft's piston, capable of pushing blocks, players, and mobs when given a redstone pulse", "website": "https://minecraft.fandom.com/wiki/Piston", "subreddit": "/r/Minecraft", "center": [244.5, 296.5], "path": [[241.5, 294.5], [246.5, 294.5], [246.5, 298.5], [241.5, 298.5], [241.5, 294.5]]}, -{"id": "twnlr1", "submitted_by": "AJCisanacronym", "name": "TUYU", "description": "TUYU (ツユ) is a Japanese pop group consisting of Pusu on (ぷす) on guitar, Reikoromo (礼衣) as vocals, and Miro on piano. Omutatsu (おむたつ) and AzyuN is in charge of the illustration and video design. \"やっぱり雨は降るんだね\" (It's Raining After All) was released as a full album on March 2020.", "website": "https://www.youtube.com/channel/UCB2tP2QfRG7hTra0KTOtTBg?feature=gws_kp_artist&feature=gws_kp_artist", "subreddit": "/r/TUYU_official", "center": [1153.5, 1355.5], "path": [[1144.5, 1340.5], [1162.5, 1370.5], [1162.5, 1340.5], [1144.5, 1340.5], [1144.5, 1370.5], [1162.5, 1370.5]]}, -{"id": "twnlo2", "submitted_by": "Yolo1212123", "name": "Issaquah High School emblem", "description": "Issaquah High School's emblem in purple and gold. Located in Issaquah, WA, USA.", "website": "https://issaquahhigh.isd411.org/", "subreddit": "", "center": [1311.5, 79.5], "path": [[1307.5, 76.5], [1315.5, 76.5], [1315.5, 81.5], [1307.5, 81.5]]}, -{"id": "twnkbf", "submitted_by": "Fuizaidomineer", "name": "XJPooh and LIHKG pig", "description": "Originally a meme circulating in the Chinese Internet comparing the Chinese President and Communist Party Chair Xi Jinping to the Disney character Winnie the Pooh, it saw wider recognition in the West after the cartoon character was blacklisted by the Chinese censorship authorities in July 2017. The pig emote mascot used in Hong Kong online forum LIHKG is also depicted wearing a gas mask and helmet, a common attire for Hong Kong protesters during the 2019 Anti-Extradition Bill Protests", "website": "https://lihkg.com", "subreddit": "", "center": [987.5, 143.5], "path": [[949.5, 120.5], [949.5, 165.5], [1025.5, 166.5], [1025.5, 120.5], [949.5, 120.5]]}, -{"id": "twnjmz", "submitted_by": "_8o_", "name": "Machu Picchu", "description": "One of the seven wonders of the world, located in Peru. There was some conflict over the top and right side of this place. Even when Twitch streamer 'JackManifoldTV' coordinated an unsuccessful attack on this section, r/UKPlace, r/Bluey, r/Touhou, and r/LibraryOfRuina were unable to reclaim the sections that had been overtaken.", "website": "https://machupicchu.gob.pe", "subreddit": "/r/PERU", "center": [517.5, 572.5], "path": [[469.5, 541.5], [571.5, 541.5], [571.5, 557.5], [575.5, 557.5], [575.5, 587.5], [535.5, 587.5], [535.5, 609.5], [535.5, 610.5], [469.5, 610.5], [469.5, 541.5]]}, -{"id": "twnjl4", "submitted_by": "Kvothealar", "name": "GFG/Sky/AB Alliance", "description": "This group established a white boundary around not only their own art, but all the art in the neighbourhood to stop them from being griefed. Over 200 confirmed users contributed to defending the artwork of all these users until the very last moments of /r/Place. Depicted here are:nnNot within blue boundaryn- AwardBonanza Logon- GoForGold Logon- Mamadon- Green Seedn- 6-Pixel Rainbown- Efrei OwlnnWithin blue boundary (non-Sky)n- Pansexual Flagn- Lemonn- A TV named Screenien- FlowernnWithin blue boundary (Sky)n- Sky Logon- Butterfliesn- Mantas (3)n- Crabn- Moth with Candlesn- Krilln- Jellyfish n", "website": "", "subreddit": "/r/GoForGold", "center": [1189.5, 381.5], "path": [[1181.5, 346.5], [1205.5, 346.5], [1205.5, 382.5], [1222.5, 382.5], [1222.5, 391.5], [1245.5, 391.5], [1245.5, 398.5], [1205.5, 398.5], [1204.5, 398.5], [1204.5, 401.5], [1191.5, 401.5], [1191.5, 402.5], [1183.5, 402.5], [1183.5, 403.5], [1165.5, 403.5], [1165.5, 407.5], [1155.5, 407.5], [1155.5, 385.5], [1158.5, 385.5], [1158.5, 377.5], [1159.5, 377.5], [1159.5, 376.5], [1161.5, 376.5], [1161.5, 367.5], [1181.5, 367.5]]}, -{"id": "twnj64", "submitted_by": "ICastTidalWave", "name": "Wings of Fire Logo", "description": "Wings of Fire is a series of children's fantasy novels written by author Tui T. Sutherland.", "website": "", "subreddit": "/r/WingsOfFire", "center": [1066.5, 482.5], "path": [[1053.5, 465.5], [1078.5, 465.5], [1078.5, 498.5], [1053.5, 498.5], [1053.5, 480.5], [1053.5, 472.5]]}, -{"id": "twnj5b", "submitted_by": "Trainzack", "name": "3D Benchy", "description": "A mural of the 3D Benchy, one of the most popular 3D printer benchmark tests among 3D printer enthusiasts.", "website": "https://www.3dbenchy.com/about/", "subreddit": "/r/3Dprinting", "center": [281.5, 537.5], "path": [[289.5, 535.5], [290.5, 535.5], [293.5, 533.5], [300.5, 533.5], [300.5, 539.5], [294.5, 548.5], [292.5, 549.5], [263.5, 549.5], [263.5, 547.5], [260.5, 547.5], [258.5, 545.5], [258.5, 541.5], [261.5, 538.5], [261.5, 538.5], [265.5, 542.5], [267.5, 542.5], [267.5, 538.5], [273.5, 538.5], [273.5, 528.5], [272.5, 528.5], [272.5, 523.5], [274.5, 523.5], [274.5, 517.5], [279.5, 517.5], [279.5, 522.5], [281.5, 522.5], [281.5, 521.5], [290.5, 521.5], [290.5, 526.5], [289.5, 526.5]]}, -{"id": "twnil1", "submitted_by": "paketiket", "name": "Brams the Cat", "description": "A little ginger cat that was built by a group of his fans", "website": "", "subreddit": "/r/kotbrams", "center": [1536.5, 1505.5], "path": [[1529.5, 1512.5], [1529.5, 1508.5], [1526.5, 1505.5], [1528.5, 1503.5], [1530.5, 1499.5], [1531.5, 1498.5], [1531.5, 1497.5], [1535.5, 1500.5], [1540.5, 1500.5], [1542.5, 1497.5], [1543.5, 1500.5], [1544.5, 1503.5], [1545.5, 1504.5], [1547.5, 1505.5], [1542.5, 1509.5], [1543.5, 1512.5]]}, -{"id": "twnihw", "submitted_by": "RedditRodditRaddit", "name": "Geocaching", "description": "A traditional geocache overlaid on the Geocaching logo. It is the third generation of geocaches placed on the r/Place canvas.", "website": "https://geocaching.com", "subreddit": "/r/geocaching", "center": [1562.5, 199.5], "path": [[1556.5, 193.5], [1556.5, 204.5], [1568.5, 204.5], [1568.5, 193.5], [1556.5, 193.5]]}, -{"id": "twni8x", "submitted_by": "wfa19", "name": "CLG", "description": "The logo of esports organization Counter Logic Gaming", "website": "https://clg.gg", "subreddit": "/r/CLG", "center": [1207.5, 891.5], "path": [[1192.5, 892.5], [1198.5, 886.5], [1205.5, 886.5], [1214.5, 888.5], [1221.5, 888.5], [1221.5, 894.5], [1221.5, 896.5], [1208.5, 895.5], [1206.5, 894.5], [1203.5, 894.5], [1201.5, 897.5], [1198.5, 897.5], [1195.5, 895.5], [1192.5, 893.5]]}, -{"id": "twnhlv", "submitted_by": "Narnall", "name": "Astroneer Logo", "description": "The logo of the game Astroneer", "website": "", "subreddit": "/r/astroneer", "center": [1124.5, 495.5], "path": [[1118.5, 500.5], [1118.5, 497.5], [1119.5, 494.5], [1121.5, 491.5], [1120.5, 491.5], [1121.5, 489.5], [1125.5, 487.5], [1127.5, 490.5], [1128.5, 493.5], [1129.5, 496.5], [1130.5, 500.5], [1129.5, 501.5], [1119.5, 501.5]]}, -{"id": "twngew", "submitted_by": "TheWingedevil", "name": "Noita", "description": "Noita is a magical action roguelite set in a world where every pixel is physically simulated. Fight, explore, melt, burn, freeze and evaporate your way through the procedurally generated world using spells you've crafted yourself.", "website": "https://noitagame.com/", "subreddit": "/r/noita, /r/place_CentralAlliance", "center": [590.5, 911.5], "path": [[549.5, 934.5], [549.5, 900.5], [556.5, 900.5], [556.5, 890.5], [562.5, 890.5], [562.5, 900.5], [638.5, 900.5], [638.5, 888.5], [655.5, 888.5], [655.5, 909.5], [579.5, 909.5], [580.5, 948.5], [572.5, 948.5], [572.5, 934.5], [549.5, 934.5]]}, -{"id": "twng3y", "submitted_by": "Penguiner1888", "name": "evermore - Taylor Swift Album", "description": "Taylor Swift's 9th studio album. The ivy border represents her song 'Ivy', which is track 10 on the album and one of many fan-favourites. The piece was defended for a short period of time before being taken over by pufferfish bots.", "website": "https://en.wikipedia.org/wiki/Evermore_(Taylor_Swift_album)", "subreddit": "/r/TaylorSwift", "center": [1964.5, 923.5], "path": [[1927.5, 917.5], [1927.5, 929.5], [2001.5, 929.5], [2001.5, 917.5]]}, -{"id": "twnfym", "submitted_by": "TheAdvertisement", "name": "Spamton", "description": "A popular character from Deltarune Chapter 2, who was heavily memed. The extremely long nose he was given was extended by random people.", "website": "", "subreddit": "/r/Deltarune", "center": [601.5, 408.5], "path": [[698.5, 391.5], [670.5, 391.5], [670.5, 411.5], [594.5, 411.5], [594.5, 400.5], [481.5, 400.5], [481.5, 414.5], [670.5, 414.5], [670.5, 429.5], [698.5, 429.5], [698.5, 398.5], [706.5, 398.5], [706.5, 392.5], [706.5, 392.5], [706.5, 391.5], [675.5, 392.5]]}, -{"id": "twnevu", "submitted_by": "_8o_", "name": "Tomiii 11", "description": "tribute to tomiii 11, a child who passed away due to brain cancer in 2021 whose last wish was to become a big YouTuber, as of 04/04/2022 tomiii 11 youtube channel has 10.5 million subscribers.\n\nMural created with the efforts of Late, Caprimint, Rodny, MitroxFear, and Panchaalel communities.", "website": "https://www.youtube.com/c/tomiii11_oficial", "subreddit": "", "center": [1272.5, 1921.5], "path": [[1299.5, 1953.5], [1243.5, 1953.5], [1244.5, 1897.5], [1249.5, 1894.5], [1249.5, 1890.5], [1248.5, 1890.5], [1248.5, 1888.5], [1300.5, 1888.5], [1300.5, 1953.5]]}, -{"id": "twnep0", "submitted_by": "sayaduck", "name": "Wynncraft", "description": "A small version of the logo for Wynncraft, a Minecraft MMORPG (massively multiplayer online role-playing game) server.", "website": "https://wynncraft.com/", "subreddit": "/r/wynncraft", "center": [705.5, 779.5], "path": [[703.5, 775.5], [707.5, 775.5], [707.5, 776.5], [708.5, 776.5], [708.5, 777.5], [709.5, 777.5], [709.5, 778.5], [708.5, 778.5], [708.5, 783.5], [707.5, 783.5], [707.5, 784.5], [703.5, 784.5], [703.5, 783.5], [702.5, 783.5], [702.5, 782.5], [701.5, 782.5], [701.5, 777.5], [702.5, 777.5], [702.5, 776.5], [703.5, 776.5], [703.5, 775.5]]}, -{"id": "twne4z", "submitted_by": "MrDaveCole98", "name": "Red vs. Blue", "description": "An American web series produced by Rooster Teeth. The show is based on the Halo franchise.", "website": "https://roosterteeth.com/channel/red-vs-blue-universe", "subreddit": "/r/RedvsBlue", "center": [461.5, 698.5], "path": [[448.5, 682.5], [472.5, 682.5], [472.5, 713.5], [449.5, 713.5], [449.5, 682.5]]}, -{"id": "twndhk", "submitted_by": "TheCracker27", "name": "Rio Logo", "description": "The logo for the 2011 animated movie about spix's macaws", "website": "https://rio.fandom.com/wiki/Rio_Wiki", "subreddit": "/r/RioMovie", "center": [1338.5, 1757.5], "path": [[1332.5, 1754.5], [1344.5, 1754.5], [1344.5, 1759.5], [1332.5, 1759.5]]}, -{"id": "twndhc", "submitted_by": "penguin14425", "name": "r/protogen", "description": "a sub reddit for protogens, incudes, memes art", "website": "", "subreddit": "/r/protogen", "center": [304.5, 1914.5], "path": [[291.5, 1903.5], [317.5, 1903.5], [316.5, 1926.5], [292.5, 1926.5]]}, -{"id": "twndd2", "submitted_by": "TacoMadeOfCoco", "name": "Deeeep.io - Eat fish, become the shark", "description": "4 colorful clownfish made by r/deeeepio. Deeeep.io is a multiplayer online browser game. You start as small aquatic animals, and evolve to become the apex predator.", "website": "https://deeeep.io/", "subreddit": "/r/deeeepio", "center": [490.5, 1644.5], "path": [[479.5, 1650.5], [479.5, 1637.5], [500.5, 1637.5], [500.5, 1650.5], [500.5, 1650.5]]}, -{"id": "twnc9l", "submitted_by": "FRUHD", "name": "#100Devs", "description": "It's our fearless leader, miniLeon! miniLeons are the currency on Twitch streams led by Leon Noel, who created #100Devs: A free full stack coding bootcamp for those laid off or affected by the pandemic.", "website": "https://www.twitch.tv/learnwithleon", "subreddit": "", "center": [840.5, 534.5], "path": [[832.5, 521.5], [832.5, 547.5], [848.5, 547.5], [848.5, 521.5]]}, -{"id": "twnbtz", "submitted_by": "VermillionOcean", "name": "Madoka Magoca", "description": "Puella Magi Madoka Magica is a 2011 anime series animated by Shaft studio. The characters featured are Akemi Homura on the left and Kaname Madoka on the right. The 5 hearts represent the 5 magical girls featured on the show in order from top to bottom: Akemi Homura, Kname Madoka, Miki Sayaka, Sakura Kyouko and Tomoe Mami.", "website": "https://wiki.puella-magi.net/Puella_Magi_Madoka_Magica", "subreddit": "/r/MadokaMagica", "center": [652.5, 402.5], "path": [[635.5, 393.5], [635.5, 410.5], [669.5, 410.5], [669.5, 393.5]]}, -{"id": "twnbju", "submitted_by": "_8o_", "name": "VT LATAM", "description": "VTLatam represents all of the VTubers from the spanish-speaking community made by various streamers.", "website": "", "subreddit": "", "center": [1752.5, 1969.5], "path": [[1731.5, 1952.5], [1774.5, 1952.5], [1773.5, 1986.5], [1731.5, 1986.5], [1731.5, 1952.5]]}, -{"id": "twnb4g", "submitted_by": "BreakDownSphere", "name": "Star Trek Enterprise", "description": "A small number of Star Trek fans partnering with The Wandering Inn to secure a ship on the canvas.", "website": "", "subreddit": "/r/startrek", "center": [1890.5, 389.5], "path": [[1918.5, 383.5], [1905.5, 382.5], [1895.5, 384.5], [1892.5, 382.5], [1880.5, 382.5], [1873.5, 389.5], [1853.5, 389.5], [1853.5, 395.5], [1918.5, 395.5], [1918.5, 389.5]]}, -{"id": "twnaxd", "submitted_by": "Narnall", "name": "Mug Moment", "description": "This is a certified MUG MOMENT.", "website": "", "subreddit": "", "center": [669.5, 1707.5], "path": [[644.5, 1693.5], [644.5, 1693.5], [645.5, 1693.5], [646.5, 1693.5], [646.5, 1691.5], [648.5, 1689.5], [653.5, 1687.5], [687.5, 1686.5], [692.5, 1690.5], [693.5, 1716.5], [691.5, 1716.5], [691.5, 1718.5], [689.5, 1719.5], [689.5, 1731.5], [686.5, 1731.5], [685.5, 1730.5], [681.5, 1730.5], [681.5, 1729.5], [680.5, 1728.5], [658.5, 1728.5], [658.5, 1729.5], [655.5, 1729.5], [653.5, 1729.5], [651.5, 1728.5], [648.5, 1724.5], [648.5, 1721.5], [648.5, 1719.5], [645.5, 1718.5], [644.5, 1713.5]]}, -{"id": "twn9mp", "submitted_by": "_8o_", "name": "Nimu VT", "description": "Nimu Spacecat is one of the biggest spanish vtubers,this pixel art shows her official mascot, which is a parasite that hosts the body of centi, the girl that we can usually see on her streams.", "website": "https://www.youtube.com/c/NimuCh", "subreddit": "", "center": [1528.5, 1186.5], "path": [[1506.5, 1172.5], [1506.5, 1200.5], [1550.5, 1200.5], [1550.5, 1172.5]]}, -{"id": "twn9em", "submitted_by": "GamerGuySeth", "name": "New Location McGee", "description": "Hey all, Scott here!", "website": "", "subreddit": "/r/scottthewoz", "center": [1577.5, 230.5], "path": [[1577.5, 230.5], [1603.5, 231.5], [1603.5, 248.5], [1551.5, 248.5], [1551.5, 212.5], [1603.5, 212.5], [1603.5, 231.5]]}, -{"id": "twn9c1", "submitted_by": "veem96", "name": "Indian Space Reserach Organization", "description": "Logo of the Indian Space Research Organisation (ISRO).", "website": "https://en.wikipedia.org/wiki/Indian_Space_Research_Organisation", "subreddit": "/r/IndiaPlace", "center": [272.5, 275.5], "path": [[251.5, 252.5], [251.5, 253.5], [292.5, 252.5], [292.5, 297.5], [251.5, 297.5]]}, -{"id": "twn99e", "submitted_by": "LeaderThren", "name": "Anbennar", "description": "Anbennar is a fantasy total conversion mod for Europa Universalis IV and more - it is a collaborative Dungeons & Dragons-like setting created together by the Anbennar community. The bell and the pink background represent Tellum, a country within the setting and in-community meme.", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=1385440355", "subreddit": "/r/anbennar, /r/place_CentralAlliance", "center": [580.5, 991.5], "path": [[540.5, 974.5], [540.5, 1012.5], [623.5, 1012.5], [624.5, 1012.5], [624.5, 974.5], [610.5, 974.5], [610.5, 975.5], [609.5, 975.5], [609.5, 976.5], [608.5, 976.5], [607.5, 976.5], [607.5, 975.5], [607.5, 974.5], [572.5, 974.5], [572.5, 960.5], [551.5, 960.5], [551.5, 974.5]]}, -{"id": "twn8k6", "submitted_by": "Trainzack", "name": "GME stock price line", "description": "A line representing the price of the GME (GameStop) stock. The line exits its originating mural and weaves between multiple other murals. Note that the line has been traced here only so far as it unambiguously does not branch; multiple offshoots of the line continue beyond that point.", "website": "https://en.wikipedia.org/wiki/GameStop_short_squeeze", "subreddit": "/r/Superstonk", "center": [1328.5, 308.5], "path": [[774.5, 782.5], [774.5, 784.5], [870.5, 784.5], [871.5, 783.5], [872.5, 778.5], [874.5, 779.5], [876.5, 783.5], [877.5, 784.5], [878.5, 783.5], [879.5, 780.5], [881.5, 778.5], [882.5, 780.5], [882.5, 784.5], [883.5, 784.5], [884.5, 782.5], [885.5, 781.5], [886.5, 779.5], [887.5, 780.5], [888.5, 782.5], [889.5, 784.5], [890.5, 782.5], [891.5, 780.5], [892.5, 778.5], [893.5, 780.5], [894.5, 781.5], [895.5, 782.5], [896.5, 784.5], [897.5, 782.5], [898.5, 780.5], [899.5, 779.5], [900.5, 781.5], [901.5, 783.5], [902.5, 784.5], [905.5, 784.5], [905.5, 619.5], [909.5, 619.5], [909.5, 514.5], [956.5, 514.5], [956.5, 497.5], [964.5, 497.5], [964.5, 364.5], [1046.5, 364.5], [1098.5, 312.5], [1394.5, 312.5], [1394.5, 277.5], [1411.5, 247.5], [1440.5, 247.5], [1440.5, 240.5], [1458.5, 240.5], [1458.5, 205.5], [1514.5, 205.5], [1514.5, 204.5], [1522.5, 204.5], [1522.5, 114.5], [1527.5, 109.5], [1528.5, 107.5], [1529.5, 105.5], [1530.5, 103.5], [1531.5, 101.5], [1532.5, 99.5], [1537.5, 90.5], [1537.5, 64.5], [1562.5, 64.5], [1562.5, 37.5], [1597.5, 2.5], [1971.5, 2.5], [1998.5, 33.5], [1998.5, 80.5], [1971.5, 80.5], [1971.5, 99.5], [1953.5, 99.5], [1953.5, 118.5], [1951.5, 118.5], [1951.5, 119.5], [1952.5, 119.5], [1952.5, 132.5], [1953.5, 133.5], [1953.5, 159.5], [1947.5, 159.5], [1947.5, 173.5], [1940.5, 173.5], [1940.5, 174.5], [1939.5, 174.5], [1939.5, 238.5], [1941.5, 238.5], [1941.5, 175.5], [1949.5, 175.5], [1949.5, 161.5], [1955.5, 161.5], [1955.5, 131.5], [1953.5, 131.5], [1953.5, 119.5], [1955.5, 119.5], [1955.5, 101.5], [1973.5, 101.5], [1973.5, 82.5], [1999.5, 82.5], [1999.5, 28.5], [1974.5, 0.5], [1596.5, 0.5], [1559.5, 37.5], [1559.5, 61.5], [1534.5, 61.5], [1534.5, 89.5], [1525.5, 106.5], [1519.5, 110.5], [1519.5, 202.5], [1455.5, 202.5], [1455.5, 237.5], [1437.5, 237.5], [1437.5, 244.5], [1409.5, 244.5], [1391.5, 276.5], [1391.5, 309.5], [1096.5, 309.5], [1043.5, 361.5], [961.5, 361.5], [961.5, 494.5], [953.5, 494.5], [953.5, 511.5], [906.5, 511.5], [906.5, 616.5], [902.5, 616.5], [902.5, 781.5], [901.5, 778.5], [899.5, 774.5], [896.5, 780.5], [892.5, 774.5], [889.5, 780.5], [886.5, 776.5], [884.5, 779.5], [882.5, 776.5], [881.5, 773.5], [880.5, 776.5], [878.5, 778.5], [877.5, 781.5], [875.5, 777.5], [874.5, 774.5], [873.5, 776.5], [872.5, 773.5], [869.5, 782.5], [774.5, 782.5]]}, -{"id": "twn7z4", "submitted_by": "WeedRats", "name": "r/furry", "description": "Mural made by r/furry.", "website": "https://discord.com/invite/rfurry", "subreddit": "/r/furry", "center": [1763.5, 913.5], "path": [[1749.5, 929.5], [1749.5, 897.5], [1772.5, 897.5], [1780.5, 908.5], [1780.5, 912.5], [1774.5, 912.5], [1774.5, 916.5], [1776.5, 918.5], [1777.5, 928.5], [1775.5, 928.5], [1775.5, 937.5], [1771.5, 934.5], [1771.5, 929.5], [1768.5, 929.5], [1766.5, 927.5], [1764.5, 929.5], [1762.5, 929.5], [1760.5, 927.5], [1758.5, 929.5], [1749.5, 929.5]]}, -{"id": "twn7yg", "submitted_by": "connardnumero1", "name": "The Little Prince", "description": "Famous French story of Antoine de Saint-Exupery. This simple tale tells the story of a child, the little prince, who travels the universe gaining wisdom. He discovers how to love, appriciate, understand and truly live a happy and peaceful life.", "website": "https://en.wikipedia.org/wiki/The_Little_Prince", "subreddit": "/r/TheLittlePrince, /r/PlaceFrance", "center": [155.5, 363.5], "path": [[160.5, 386.5], [163.5, 385.5], [170.5, 378.5], [172.5, 372.5], [172.5, 366.5], [171.5, 365.5], [170.5, 359.5], [167.5, 355.5], [169.5, 354.5], [170.5, 353.5], [170.5, 349.5], [158.5, 349.5], [159.5, 345.5], [164.5, 345.5], [170.5, 340.5], [169.5, 337.5], [163.5, 336.5], [158.5, 338.5], [158.5, 333.5], [154.5, 331.5], [153.5, 331.5], [151.5, 333.5], [151.5, 349.5], [148.5, 351.5], [148.5, 345.5], [146.5, 343.5], [144.5, 343.5], [142.5, 345.5], [142.5, 355.5], [139.5, 358.5], [137.5, 364.5], [136.5, 365.5], [136.5, 372.5], [137.5, 373.5], [139.5, 377.5], [140.5, 379.5], [147.5, 386.5]]}, -{"id": "twn7x2", "submitted_by": "BossBark", "name": "Scratch (The Ghost and Molly Mcgee)", "description": "Tween optimist Molly McGee lives to make the world a better place, fix what has gone wrong, and spread joy. Meanwhile, cantankerous ghost Scratch lives to make the world a worse place, break what has gone right, and spread misery. When a curse from Scratch backfires, he finds himself forever bound to Molly. Despite that, Scratch and Molly form an unlikely friendship that guides each of them through the ups and downs of their respective worlds.", "website": "https://en.wikipedia.org/wiki/The_Ghost_and_Molly_McGee", "subreddit": "/r/GhostAndMollyMcGee", "center": [500.5, 920.5], "path": [[494.5, 911.5], [506.5, 911.5], [506.5, 929.5], [494.5, 929.5], [494.5, 911.5]]}, -{"id": "twn6zp", "submitted_by": "Bob_Brick", "name": "F**kFace Logo", "description": "The logo of the F**kFace podcast, created by the joint efforts of the community Reddit and Discord. In typical F**kFace fashion, the F**kPlacers spent most of their battles defending the logo from themselves. Yes, it makes as much sense as you think.", "website": "https://discord.gg/fuckface", "subreddit": "/r/fuckfacepod", "center": [1198.5, 42.5], "path": [[1184.5, 35.5], [1212.5, 35.5], [1212.5, 49.5], [1184.5, 49.5], [1184.5, 35.5]]}, -{"id": "twn6jx", "submitted_by": "TurtleTheSeawing", "name": "Wings of Fire", "description": "Wings of Fire is a book series about a world of Dragons, it consists of 15 main series books, 2 Legends books, and 4 Winglets. It is similar to the Warrior Cats series, and is rather gruesome at times, so if you are planning to read it, be warned. Along the sides are miniature portraits of some of the dragons from the series.", "website": "", "subreddit": "/r/WingsOfFire", "center": [1066.5, 482.5], "path": [[1053.5, 465.5], [1078.5, 465.5], [1078.5, 498.5], [1053.5, 498.5]]}, -{"id": "twn6es", "submitted_by": "Gyfald", "name": "Mikoto Misaka from index/railgun", "description": "Misaka represent the toaru/raildex lightnovels & Animes", "website": "", "subreddit": "/r/toarumajutsunoindex", "center": [1815.5, 1184.5], "path": [[1806.5, 1173.5], [1827.5, 1174.5], [1824.5, 1194.5], [1805.5, 1194.5]]}, -{"id": "twn5wt", "submitted_by": "Rijinthaman", "name": "Stormlight and Malazan", "description": "A collaborative effort by the subreddits for The Stormlight Archive and Malazan Book of the Fallen, depicting their respective fantasy series.", "website": "", "subreddit": "/r/Stormlight_Archive, /r/Malazan", "center": [1849.5, 910.5], "path": [[1830.5, 870.5], [1868.5, 870.5], [1868.5, 949.5], [1830.5, 949.5]]}, -{"id": "twn5nh", "submitted_by": "AffectionateWinner11", "name": "Deltarune plushes", "description": "These are plushes of some Deltarune characters.", "website": "", "subreddit": "/r/deltarune", "center": [1774.5, 185.5], "path": [[1749.5, 175.5], [1749.5, 206.5], [1805.5, 205.5], [1805.5, 172.5], [1776.5, 172.5], [1775.5, 161.5], [1745.5, 161.5], [1746.5, 174.5]]}, -{"id": "twn5hs", "submitted_by": "LysdexicSoup48", "name": "Rusty Lake", "description": "an indie game studio for puzzle point and click games", "website": "http://www.rustylake.com/", "subreddit": "/r/rustylake", "center": [1779.5, 1054.5], "path": [[1768.5, 1044.5], [1768.5, 1064.5], [1789.5, 1064.5], [1789.5, 1044.5]]}, -{"id": "twn5bk", "submitted_by": "fleeval", "name": "SciFi-Fantasy Alliance", "description": "A collection of symbols depicting popular science fiction and fantasy series including Dune, Red Rising, Cosmere, Wheel of Time, A Song of Ice and Fire, Lord of the Rings, and more! Visit the subreddit for full symbol identification. The greyscale at the top is part of a compromise with r/onepiece over territory disputes.", "website": "", "subreddit": "/r/SFFA", "center": [1662.5, 1385.5], "path": [[1718.5, 1359.5], [1723.5, 1367.5], [1725.5, 1379.5], [1723.5, 1393.5], [1721.5, 1406.5], [1715.5, 1415.5], [1704.5, 1428.5], [1698.5, 1435.5], [1686.5, 1441.5], [1671.5, 1444.5], [1667.5, 1441.5], [1656.5, 1441.5], [1643.5, 1438.5], [1626.5, 1431.5], [1617.5, 1423.5], [1610.5, 1411.5], [1602.5, 1388.5], [1602.5, 1376.5], [1608.5, 1358.5], [1612.5, 1349.5], [1629.5, 1332.5], [1651.5, 1324.5], [1664.5, 1322.5], [1676.5, 1322.5], [1685.5, 1327.5], [1686.5, 1358.5], [1717.5, 1358.5]]}, -{"id": "twn57v", "submitted_by": "RollingLineTD2", "name": "Higurashi When They Cry", "description": "Characters from the Visual Novel and Anime Series Higurashi, in a line. Allied with the Lesbian and Non-Binary Pride Flags early on and fought valiantly together.", "website": "https://discord.gg/higurashi", "subreddit": "/r/higurashinonakakoroni", "center": [1848.5, 1743.5], "path": [[1804.5, 1750.5], [1891.5, 1750.5], [1892.5, 1736.5], [1805.5, 1735.5]]}, -{"id": "twn55o", "submitted_by": "carpinx", "name": "Tango dancers", "description": "Tango is a style of music that originated among European immigrant populations of Argentina and Uruguay.", "website": "https://en.wikipedia.org/wiki/Tango", "subreddit": "/r/argentina", "center": [1000.5, 652.5], "path": [[1005.5, 664.5], [1005.5, 652.5], [1008.5, 651.5], [1008.5, 648.5], [1011.5, 646.5], [1007.5, 645.5], [1005.5, 642.5], [1004.5, 639.5], [1001.5, 636.5], [994.5, 638.5], [994.5, 641.5], [998.5, 645.5], [996.5, 647.5], [994.5, 650.5], [997.5, 656.5], [993.5, 661.5], [989.5, 665.5], [1005.5, 665.5]]}, -{"id": "twn45x", "submitted_by": "Least_Chip448", "name": "The Phantom Thieves Logo", "description": "From the game Persona 5", "website": "https://megamitensei.fandom.com/wiki/Phantom_Thieves_of_Hearts", "subreddit": "/r/Persona5", "center": [1507.5, 302.5], "path": [[1511.5, 280.5], [1505.5, 280.5], [1505.5, 281.5], [1503.5, 281.5], [1503.5, 282.5], [1499.5, 282.5], [1499.5, 283.5], [1497.5, 283.5], [1497.5, 284.5], [1495.5, 284.5], [1495.5, 286.5], [1494.5, 285.5], [1494.5, 286.5], [1492.5, 286.5], [1492.5, 287.5], [1491.5, 287.5], [1489.5, 289.5], [1487.5, 297.5], [1488.5, 297.5], [1494.5, 302.5], [1497.5, 308.5], [1496.5, 308.5], [1492.5, 309.5], [1491.5, 311.5], [1489.5, 313.5], [1489.5, 318.5], [1497.5, 321.5], [1503.5, 323.5], [1507.5, 322.5], [1511.5, 323.5], [1519.5, 314.5], [1520.5, 314.5], [1526.5, 308.5], [1528.5, 307.5], [1528.5, 303.5], [1531.5, 303.5], [1532.5, 300.5], [1527.5, 295.5], [1527.5, 291.5], [1527.5, 290.5], [1528.5, 290.5], [1528.5, 288.5], [1524.5, 288.5], [1523.5, 291.5], [1519.5, 296.5], [1515.5, 296.5], [1514.5, 296.5], [1514.5, 294.5], [1513.5, 294.5], [1513.5, 288.5], [1514.5, 287.5], [1514.5, 285.5], [1515.5, 285.5], [1515.5, 283.5], [1513.5, 282.5]]}, -{"id": "twn3zy", "submitted_by": "Midokuni", "name": "Blue Archive and Sporkbot", "description": "Hifumi and Peroro from Blue Archive along with Sporkbot server. And half of the burger.n", "website": "https://discord.gg/bluearchive", "subreddit": "/r/BlueArchive", "center": [163.5, 989.5], "path": [[136.5, 963.5], [189.5, 963.5], [189.5, 1014.5], [136.5, 1014.5]]}, -{"id": "twn3rk", "submitted_by": "qfoxb", "name": "iPod Classic", "description": "An iPod Classic, used to have an iPod Nano next to it, but it was destroyed.", "website": "https://discord.gg/iPod", "subreddit": "/r/ipod", "center": [858.5, 984.5], "path": [[855.5, 978.5], [855.5, 989.5], [861.5, 989.5], [861.5, 978.5]]}, -{"id": "twn3qv", "submitted_by": "FastHound", "name": "Chile", "description": "Chilean flag with depictions of the Andes mountains, the pudú, the condor, red wine, mote con huesillo and the silhouette of the country in the flag", "website": "", "subreddit": "/r/chile", "center": [333.5, 489.5], "path": [[245.5, 528.5], [272.5, 528.5], [272.5, 523.5], [274.5, 523.5], [274.5, 518.5], [274.5, 517.5], [279.5, 517.5], [279.5, 522.5], [281.5, 522.5], [281.5, 521.5], [290.5, 521.5], [290.5, 526.5], [300.5, 526.5], [300.5, 528.5], [314.5, 528.5], [378.5, 528.5], [421.5, 527.5], [421.5, 450.5], [244.5, 450.5], [244.5, 528.5]]}, -{"id": "twn3ak", "submitted_by": "carpinx", "name": "Mate", "description": "Traditional South American, especially Argentinian and Uruguayan, caffeine-rich infused drink.", "website": "https://en.wikipedia.org/wiki/Mate_(drink)", "subreddit": "/r/argentina", "center": [1092.5, 656.5], "path": [[1083.5, 664.5], [1081.5, 661.5], [1082.5, 656.5], [1087.5, 649.5], [1095.5, 648.5], [1100.5, 643.5], [1104.5, 644.5], [1098.5, 651.5], [1098.5, 653.5], [1102.5, 657.5], [1101.5, 665.5], [1084.5, 665.5]]}, -{"id": "twn35n", "submitted_by": "Kliuqard", "name": "Excalibur", "description": "Excalibur Warframe from Warframe.", "website": "https://warframe.fandom.com/wiki/Excalibur", "subreddit": "/r/Warframe, /r/place_CentralAlliance", "center": [575.5, 1065.5], "path": [[562.5, 1045.5], [562.5, 1081.5], [590.5, 1081.5], [590.5, 1056.5], [579.5, 1056.5], [579.5, 1045.5], [562.5, 1045.5]]}, -{"id": "twn2ft", "submitted_by": "MasterTrouble", "name": "FIRST Robotics", "description": "FIRST Robotics is an organization that sponsors multiple robotics leagues and teaches students about STEM and working with others all around the world. The 4 digit numbers in area are FRC team numbers that contributed to logo", "website": "https://www.firstinspires.org/", "subreddit": "/r/FRC, /r/FTC, /r/FLL", "center": [1193.5, 1629.5], "path": [[1163.5, 1610.5], [1223.5, 1610.5], [1223.5, 1647.5], [1163.5, 1647.5]]}, -{"id": "twn2co", "submitted_by": "Cioss21", "name": "Sonic and Tails", "description": "The first to start it's appearance on the canvas was Tails. It had to be remade 7 times with different locations according to the r/milesprower community. Finally, r/SonicTheHedgehog came along to reunite the duo together.", "website": "", "subreddit": "/r/milesprower, /r/SonicTheHedgehog", "center": [1598.5, 374.5], "path": [[1573.5, 354.5], [1606.5, 354.5], [1607.5, 353.5], [1609.5, 354.5], [1609.5, 356.5], [1611.5, 356.5], [1614.5, 359.5], [1619.5, 359.5], [1620.5, 360.5], [1616.5, 363.5], [1615.5, 368.5], [1615.5, 369.5], [1619.5, 370.5], [1625.5, 373.5], [1625.5, 391.5], [1574.5, 391.5], [1574.5, 366.5], [1575.5, 365.5], [1575.5, 364.5], [1574.5, 363.5], [1574.5, 354.5]]}, -{"id": "twn1sc", "submitted_by": "mc395686", "name": "Minecraft Championship", "description": "MCC is a Minecraft tournament featuring various different creators competing in minigames! The art features icons of the team mascots, the winner's coin, and MCC organizer Noxite. It is an expansion of what was made in the first quarter of the map.", "website": "https://noxcrew.com/mcc", "subreddit": "/r/MinecraftChampionship", "center": [1789.5, 117.5], "path": [[1801.5, 98.5], [1809.5, 109.5], [1809.5, 130.5], [1789.5, 130.5], [1789.5, 141.5], [1780.5, 141.5], [1780.5, 130.5], [1769.5, 131.5], [1769.5, 110.5], [1774.5, 110.5], [1774.5, 98.5]]}, -{"id": "twn1rc", "submitted_by": "Oponik", "name": "Jetstream Sam", "description": "His real name is Samuel Rodrigues from Metal Gear Rising Revengeance. Has the whitest smile and a thicc ass", "website": "", "subreddit": "", "center": [1880.5, 1720.5], "path": [[1884.5, 1740.5], [1896.5, 1740.5], [1897.5, 1741.5], [1901.5, 1741.5], [1901.5, 1737.5], [1901.5, 1734.5], [1901.5, 1731.5], [1893.5, 1728.5], [1894.5, 1722.5], [1892.5, 1719.5], [1893.5, 1712.5], [1889.5, 1705.5], [1885.5, 1702.5], [1880.5, 1698.5], [1872.5, 1697.5], [1868.5, 1698.5], [1864.5, 1700.5], [1862.5, 1707.5], [1862.5, 1718.5], [1866.5, 1722.5], [1863.5, 1726.5], [1868.5, 1730.5], [1870.5, 1732.5], [1869.5, 1735.5], [1873.5, 1736.5], [1878.5, 1740.5]]}, -{"id": "twn1pg", "submitted_by": "carpinx", "name": "Fernet con coca", "description": "Typical drink from Argentina. Fernet-Branca (Italian beverage) mixed with Coca-Cola, usually in a 30-70 proportion.", "website": "https://en.wikipedia.org/wiki/Fernet_con_coca", "subreddit": "/r/argentina", "center": [1030.5, 657.5], "path": [[1026.5, 649.5], [1026.5, 651.5], [1025.5, 651.5], [1025.5, 665.5], [1035.5, 665.5], [1035.5, 661.5], [1034.5, 660.5], [1034.5, 659.5], [1035.5, 658.5], [1035.5, 651.5], [1034.5, 651.5], [1034.5, 649.5], [1026.5, 649.5]]}, -{"id": "twn1fh", "submitted_by": "firthisaword", "name": "Bulgarian Flag", "description": "The second Bulgarian flag on the canvas, with national heroes Vasil Levski and Hristo Botev, and former professional football player Dimitar Berbatov", "website": "", "subreddit": "/r/bulgaria", "center": [1620.5, 728.5], "path": [[1577.5, 690.5], [1577.5, 758.5], [1579.5, 760.5], [1579.5, 762.5], [1578.5, 763.5], [1578.5, 767.5], [1581.5, 767.5], [1582.5, 766.5], [1596.5, 766.5], [1597.5, 765.5], [1598.5, 765.5], [1599.5, 766.5], [1605.5, 766.5], [1606.5, 765.5], [1607.5, 765.5], [1608.5, 766.5], [1663.5, 766.5], [1663.5, 691.5], [1662.5, 691.5], [1661.5, 690.5], [1577.5, 690.5]]}, -{"id": "twn0zr", "submitted_by": "GamerRighway", "name": "Hikari", "description": "One of the two main characters of Arcaea; representing 'Light'", "website": "https://arcaea.lowiro.com/en", "subreddit": "/r/arcaea", "center": [1841.5, 1665.5], "path": [[1833.5, 1661.5], [1834.5, 1660.5], [1834.5, 1659.5], [1835.5, 1658.5], [1835.5, 1657.5], [1836.5, 1656.5], [1837.5, 1655.5], [1838.5, 1654.5], [1839.5, 1654.5], [1840.5, 1654.5], [1841.5, 1654.5], [1842.5, 1654.5], [1843.5, 1654.5], [1844.5, 1655.5], [1845.5, 1656.5], [1846.5, 1657.5], [1846.5, 1658.5], [1847.5, 1659.5], [1847.5, 1660.5], [1848.5, 1661.5], [1848.5, 1662.5], [1847.5, 1662.5], [1847.5, 1663.5], [1847.5, 1664.5], [1847.5, 1665.5], [1847.5, 1666.5], [1847.5, 1667.5], [1847.5, 1668.5], [1847.5, 1669.5], [1848.5, 1670.5], [1849.5, 1671.5], [1848.5, 1672.5], [1847.5, 1673.5], [1846.5, 1672.5], [1845.5, 1672.5], [1844.5, 1673.5], [1843.5, 1674.5], [1843.5, 1675.5], [1842.5, 1676.5], [1841.5, 1675.5], [1840.5, 1675.5], [1839.5, 1676.5], [1838.5, 1675.5], [1838.5, 1674.5], [1837.5, 1673.5], [1836.5, 1672.5], [1835.5, 1672.5], [1834.5, 1673.5], [1833.5, 1672.5], [1832.5, 1671.5], [1833.5, 1670.5], [1834.5, 1669.5], [1834.5, 1668.5], [1834.5, 1667.5], [1834.5, 1666.5], [1834.5, 1665.5], [1834.5, 1664.5], [1834.5, 1663.5], [1834.5, 1662.5], [1833.5, 1662.5], [1833.5, 1661.5]]}, -{"id": "twn05d", "submitted_by": "daily_flags", "name": "Giant Ñ between Hispanic flags", "description": "Giant Ñ that represents the Spanish language. On the sides are the flags of Ecuador, Mexico, Dominican Republic, Guatemala, Argentina, Colombia, Spain, Panama, El Salvador, Cuba, Puerto Rico, Bolivia, Nicaragua, Chile, Venezuela, Uruguay and Paraguay plus the flag of France, the old Chechnya flag, and a random unrecognized flag.", "website": "", "subreddit": "/r/Peru", "center": [500.5, 628.5], "path": [[535.5, 610.5], [535.5, 646.5], [465.5, 646.5], [465.5, 610.5]]}, -{"id": "twmzln", "submitted_by": "_8o_", "name": "Cyclic VS Riot", "description": "a tribute to one of the biggest rivalries in geometry dash history", "website": "", "subreddit": "/r/geometrydashplace", "center": [583.5, 1698.5], "path": [[550.5, 1711.5], [588.5, 1711.5], [589.5, 1710.5], [597.5, 1710.5], [598.5, 1711.5], [615.5, 1711.5], [615.5, 1706.5], [616.5, 1706.5], [617.5, 1705.5], [618.5, 1705.5], [618.5, 1703.5], [619.5, 1702.5], [618.5, 1701.5], [618.5, 1700.5], [619.5, 1699.5], [618.5, 1698.5], [616.5, 1695.5], [617.5, 1695.5], [617.5, 1694.5], [618.5, 1693.5], [615.5, 1690.5], [614.5, 1687.5], [599.5, 1687.5], [598.5, 1688.5], [597.5, 1686.5], [598.5, 1686.5], [598.5, 1680.5], [590.5, 1680.5], [587.5, 1682.5], [583.5, 1682.5], [577.5, 1687.5], [573.5, 1687.5], [571.5, 1689.5], [568.5, 1689.5], [566.5, 1687.5], [562.5, 1687.5], [560.5, 1689.5], [558.5, 1689.5], [558.5, 1687.5], [557.5, 1687.5], [554.5, 1684.5], [553.5, 1684.5], [552.5, 1683.5], [550.5, 1683.5], [550.5, 1711.5]]}, -{"id": "twmzdz", "submitted_by": "Mathgeek007", "name": "Trash Taste", "description": "An anime podcast run by three anitubers: Connor (CDawgVA), Joey (TheAn1meMan), and Garnt (GiggukAZ). The white logo represents the main podcast and brand, while the black variant next to it is for After Dark, the YouTube channel that hosts stream VODs and other miscellaneous content. The subtitle references a friend of the show and regular guest - Chris Broad. Beneath are people related to the podcast, from left to right: Ashley, Mudan, Ironmouse, Sydsnap, Akidearest, Ladybeard, Shibuya Kaho, Meilyne, Chris Broad, Garnt, Joey, and Connor.", "website": "https://www.youtube.com/channel/UCcmxOGYGF51T1XsqQLewGtQ", "subreddit": "/r/TrashTaste", "center": [39.5, 559.5], "path": [[77.5, 528.5], [78.5, 589.5], [0.5, 588.5], [0.5, 529.5]]}, -{"id": "twmyah", "submitted_by": "Arlong-sama", "name": "V̴̧̋̃̎̌͊͊̀̇͌͒̓͘͝o̴̡̨̜̜̩̜̥̠̩̬̫̓͐̄̊̃̊̾͑̔̌̕̕͝ị̷̡̖̘̳̝̪̯̲̼̻̘̻͒̑̾͗̈́͗̓̏̍̽͒͌ͅd̶̰̦̭̤͇̼̖̅ ̶̨͚̙͚͚̥͔̝͔͎̙̤̼͍͌̀̔̌̿̂̃̇͂͗̋̎̎͜͝M̴̢̛̯̙̹͖̰͍̼͍̹̻̾̏͂́͑̐͑̐̑̀́ô̸̡͛̂̆̃͑̓̃̄̈́́̿̎̋͘t̵̬̯̹̳̾̈́̓h̴̛̲̬̤̹̣̘̳̕͝e̵͑̏̂̈r̶̬̈͗̃̌", "description": "T̵͙̣͈̔he̷̗̣̰͉̒͐̽ ̸̬͚̔̊̒̄V̵̘̖̦͛̅̄͛ö̸̧̘̞̲͆i̸̻͉̙̿͛̃ḍ̸̜̅͜ ̴̝̟͂C̸̨̜͑o̸̡̤̙͑n̸̻̳̂ͅs̴̡̩̘͈̃u̵͈̩͌̃̃m̴͚͎̾̀̀͗e̷̘̕s̴̲̱̓ͅ ̷̮͍̏͊̿̆A̴̮̪̥̎l̴̬̓ļ̶͍̐", "website": "", "subreddit": "/r/theswarm", "center": [1017.5, 1481.5], "path": [[989.5, 1349.5], [967.5, 1376.5], [949.5, 1427.5], [959.5, 1437.5], [965.5, 1446.5], [965.5, 1459.5], [965.5, 1471.5], [964.5, 1497.5], [962.5, 1574.5], [992.5, 1631.5], [1006.5, 1652.5], [1022.5, 1656.5], [1031.5, 1641.5], [1041.5, 1617.5], [1057.5, 1592.5], [1063.5, 1564.5], [1066.5, 1536.5], [1066.5, 1503.5], [1069.5, 1485.5], [1073.5, 1466.5], [1081.5, 1444.5], [1081.5, 1421.5], [1074.5, 1389.5], [1071.5, 1364.5], [1068.5, 1350.5], [1041.5, 1343.5], [1031.5, 1333.5], [1022.5, 1331.5], [1004.5, 1337.5], [993.5, 1343.5]]}, -{"id": "twmxrw", "submitted_by": "ritardandoo", "name": "Thousand Sunny", "description": "The Thousand Sunny ship from the manga/anime One Piece. There is also a floating island called Onigashima in the background, and the One Piece logo on the far left. The smaller boat next to the Sunny is called the Mini Merry, a smaller ship based on the first One Piece ship.", "website": "", "subreddit": "/r/OnePiece", "center": [1576.5, 138.5], "path": [[1544.5, 113.5], [1543.5, 115.5], [1542.5, 115.5], [1541.5, 118.5], [1539.5, 120.5], [1540.5, 138.5], [1536.5, 141.5], [1533.5, 141.5], [1533.5, 138.5], [1524.5, 134.5], [1525.5, 118.5], [1523.5, 116.5], [1523.5, 158.5], [1525.5, 156.5], [1529.5, 154.5], [1532.5, 155.5], [1535.5, 155.5], [1534.5, 152.5], [1534.5, 148.5], [1537.5, 146.5], [1540.5, 143.5], [1542.5, 142.5], [1546.5, 145.5], [1549.5, 146.5], [1550.5, 147.5], [1550.5, 151.5], [1550.5, 153.5], [1551.5, 153.5], [1551.5, 155.5], [1553.5, 155.5], [1554.5, 160.5], [1558.5, 165.5], [1615.5, 165.5], [1615.5, 114.5]]}, -{"id": "twmxnx", "submitted_by": "elljobellnackle", "name": "Silksong", "description": "Art of Hornet, main character of Silksong (the still-in-development sequel to Hollow Knight). Also depicts art of a small grub from the original Hollow Knight game.", "website": "", "subreddit": "/r/HKplace", "center": [263.5, 381.5], "path": [[299.5, 343.5], [225.5, 343.5], [225.5, 385.5], [236.5, 385.5], [239.5, 388.5], [239.5, 392.5], [236.5, 395.5], [228.5, 395.5], [225.5, 398.5], [225.5, 417.5], [228.5, 420.5], [299.5, 420.5]]}, -{"id": "twmxmf", "submitted_by": "bigFoote0069", "name": "r/GreenLattice", "description": "A green lattice background created to give small pixel artists a place to build their art.", "website": "", "subreddit": "/r/GreenLattice", "center": [1036.5, 429.5], "path": [[866.5, 372.5], [867.5, 485.5], [963.5, 480.5], [962.5, 495.5], [1172.5, 499.5], [1172.5, 465.5], [1199.5, 465.5], [1198.5, 433.5], [1199.5, 361.5]]}, -{"id": "twmvzq", "submitted_by": "Bismvth_", "name": "Nurture by Porter Robinson", "description": "A nod to Porter Robinson's 2021 album Nurture. The stylized N was a recurring icon throughout the album's promotion.", "website": "https://porterrobinson.com/", "subreddit": "/r/porterrobinson", "center": [1821.5, 85.5], "path": [[1841.5, 80.5], [1801.5, 80.5], [1801.5, 90.5], [1841.5, 90.5]]}, -{"id": "twmvvp", "submitted_by": "RacgiMan", "name": "TagPro", "description": "Free to play web-based capture the flag game, banned from askreddit (no, really)", "website": "https://tagpro.gg", "subreddit": "/r/tagpro", "center": [1750.5, 1934.5], "path": [[1732.5, 1919.5], [1773.5, 1919.5], [1773.5, 1938.5], [1760.5, 1937.5], [1760.5, 1952.5], [1732.5, 1952.5], [1732.5, 1935.5]]}, -{"id": "twmvou", "submitted_by": "Erixperience", "name": "Cosmere", "description": "The connected universe by author Brandon Sanderson", "website": "https://www.brandonsanderson.com/", "subreddit": "/r/comsere", "center": [881.5, 950.5], "path": [[861.5, 924.5], [863.5, 926.5], [901.5, 924.5], [901.5, 974.5], [861.5, 974.5], [861.5, 974.5], [861.5, 974.5], [862.5, 941.5], [862.5, 941.5]]}, -{"id": "twmuos", "submitted_by": "202042", "name": "Solid Snake (Metal Gear Solid)", "description": "The codec image of one of the most iconic characters in gaming; Solid Snake.nSnake originates from the Metal gear games.", "website": "", "subreddit": "/r/metalgearsolid", "center": [1968.5, 147.5], "path": [[1956.5, 131.5], [1980.5, 131.5], [1980.5, 162.5], [1956.5, 162.5]]}, -{"id": "twmuoq", "submitted_by": "BillSimmonsSkinSuit", "name": "I Heart Pat Bev", "description": "a meme from Minnesota Timberwolves basketball twitter. Pat Bev is short for Patrick Beverley, a basketball player for the wolves known for being unhinged on the basketball court, and widely despised by all the teams he doesn't play for. Based off of the design by @jakesgraphs on twitter", "website": "", "subreddit": "/r/timberwolves", "center": [427.5, 1385.5], "path": [[418.5, 1373.5], [414.5, 1372.5], [437.5, 1373.5], [438.5, 1397.5], [416.5, 1396.5], [416.5, 1372.5]]}, -{"id": "twmucj", "submitted_by": "MithradatesMegas", "name": "Yorkshire Tea GOLD", "description": "The best tea, and semi-official symbol, of violently British (and completely balanced) streamer TheSpiffingBrit", "website": "https://www.youtube.com/c/thespiffingbrit", "subreddit": "/r/thespiffingbrit", "center": [640.5, 572.5], "path": [[619.5, 558.5], [619.5, 587.5], [660.5, 587.5], [661.5, 557.5]]}, -{"id": "twmthw", "submitted_by": "202042", "name": "Jetstream Sam (Metal Gear Rising)", "description": "The beloved Brazilian antagonist from Metal Gear Rising: Revengance.", "website": "", "subreddit": "/r/metalgearsolid", "center": [1879.5, 1720.5], "path": [[1864.5, 1699.5], [1869.5, 1699.5], [1872.5, 1696.5], [1884.5, 1700.5], [1894.5, 1712.5], [1892.5, 1720.5], [1894.5, 1728.5], [1902.5, 1733.5], [1899.5, 1740.5], [1876.5, 1741.5], [1872.5, 1737.5], [1867.5, 1737.5], [1865.5, 1733.5], [1863.5, 1724.5], [1863.5, 1701.5], [1865.5, 1699.5]]}, -{"id": "twmt61", "submitted_by": "XOXAR9", "name": "ULTRAKILL", "description": "A simple logo of the game ULTRAKILL. Featuring the iconic marksman revolver coin, and the P-rank symbol", "website": "http://devilmayquake.com/", "subreddit": "/r/Ultrakill", "center": [1360.5, 1808.5], "path": [[1346.5, 1797.5], [1346.5, 1818.5], [1353.5, 1818.5], [1353.5, 1820.5], [1365.5, 1820.5], [1365.5, 1818.5], [1374.5, 1817.5], [1374.5, 1797.5]]}, -{"id": "twmt3s", "submitted_by": "thysnice", "name": "Original Blue Corner", "description": "Before the First Expansion, this was the base of the Blue Corner. Remnants can be seen in the Quebec Area and surrounding region.", "website": "", "subreddit": "/r/TheBlueCorner", "center": [959.5, 1069.5], "path": [[902.5, 1016.5], [1016.5, 1016.5], [1016.5, 1122.5], [902.5, 1122.5]]}, -{"id": "twmt33", "submitted_by": "chocomint1", "name": "Goku charging his Spirit Bomb", "description": "Everyone, lend me your energy!", "website": "https://discord.gg/Mqk6FhJp", "subreddit": "/r/DBZ", "center": [1979.5, 1449.5], "path": [[1992.5, 1434.5], [1992.5, 1455.5], [1994.5, 1456.5], [1994.5, 1458.5], [1995.5, 1465.5], [1996.5, 1467.5], [1996.5, 1468.5], [1990.5, 1469.5], [1989.5, 1474.5], [1984.5, 1474.5], [1979.5, 1474.5], [1978.5, 1475.5], [1976.5, 1474.5], [1976.5, 1470.5], [1978.5, 1470.5], [1978.5, 1465.5], [1977.5, 1464.5], [1976.5, 1461.5], [1974.5, 1459.5], [1971.5, 1456.5], [1969.5, 1453.5], [1967.5, 1449.5], [1965.5, 1447.5], [1963.5, 1447.5], [1962.5, 1448.5], [1961.5, 1449.5], [1960.5, 1449.5], [1960.5, 1430.5], [1977.5, 1430.5], [1978.5, 1432.5], [1979.5, 1433.5], [1979.5, 1434.5]]}, -{"id": "twmszp", "submitted_by": "oMEGAthreader", "name": "#100Devs", "description": "A picture of Leon Noel. Leon leads an entirely free and remote software engineering bootcamp on twitch. The bootcamp is called #100Devs after a goal Leon set to help 100 people affected by the pandemic break into the tech industry. This goal was recently achieved. He now leads a second cohort with 1000s of people checking in to class each week. This picture of him was made by some of the students and friends in the discord community. We don't get got. We go get!", "website": "https://www.twitch.tv/learnwithleon", "subreddit": "", "center": [1616.5, 521.5], "path": [[1600.5, 499.5], [1600.5, 543.5], [1632.5, 543.5], [1632.5, 499.5], [1632.5, 499.5]]}, -{"id": "twmsme", "submitted_by": "ThatDudeIsShort", "name": "KAngel", "description": "KAngel or OMGKawaiiANgel is the persona of Ame-chan, the main protagonist of Needy Girl Overdose / Needy Streamer Overload.", "website": "", "subreddit": "", "center": [1869.5, 1263.5], "path": [[1856.5, 1250.5], [1881.5, 1250.5], [1881.5, 1276.5], [1857.5, 1276.5]]}, -{"id": "twmsl5", "submitted_by": "ScorpionStrike77", "name": "Lateralus 'Flame Eye'", "description": "The Flame Eye is a logo associated with American Rock band Tool.", "website": "https://en.wikipedia.org/wiki/Tool_(band)", "subreddit": "/r/ToolBand", "center": [310.5, 1237.5], "path": [[319.5, 1247.5], [321.5, 1246.5], [323.5, 1245.5], [324.5, 1244.5], [325.5, 1242.5], [323.5, 1238.5], [320.5, 1237.5], [318.5, 1235.5], [317.5, 1231.5], [315.5, 1228.5], [313.5, 1233.5], [312.5, 1233.5], [313.5, 1228.5], [312.5, 1227.5], [310.5, 1224.5], [307.5, 1223.5], [309.5, 1226.5], [307.5, 1226.5], [306.5, 1229.5], [304.5, 1225.5], [301.5, 1226.5], [302.5, 1231.5], [299.5, 1229.5], [298.5, 1224.5], [297.5, 1228.5], [297.5, 1235.5], [298.5, 1236.5], [299.5, 1238.5], [302.5, 1241.5], [303.5, 1242.5], [306.5, 1244.5], [309.5, 1247.5], [319.5, 1248.5]]}, -{"id": "twmsav", "submitted_by": "Kuberd", "name": "Gigachad Emote DGG", "description": "Popular Emote created by the DGG community together with the Destiny logo.", "website": "https://destiny.gg", "subreddit": "/r/destiny", "center": [1917.5, 1495.5], "path": [[1875.5, 1430.5], [1959.5, 1430.5], [1959.5, 1561.5], [1954.5, 1556.5], [1943.5, 1558.5], [1939.5, 1554.5], [1926.5, 1560.5], [1875.5, 1561.5], [1875.5, 1430.5]]}, -{"id": "twmrxn", "submitted_by": "Nezarecs", "name": "Elite: Dangerous", "description": "A space simulation game. The duel coloured hearts and o7 salute represents the mutual love between the Star Citizen and Elite communities", "website": "https://www.elitedangerous.com/", "subreddit": "/r/EliteDangerous", "center": [1733.5, 101.5], "path": [[1719.5, 86.5], [1720.5, 117.5], [1745.5, 116.5], [1744.5, 107.5], [1749.5, 100.5], [1749.5, 87.5], [1719.5, 86.5]]}, -{"id": "twmrnx", "submitted_by": "frosty704", "name": "Superstonk", "description": "Superstonk is a subreddit that converses in all things GameStop/GME stocks, including research, documentation, and crowd-sourced support. The face on the left is DeepFuckingValue, the original founding father of GME's short squeeze. The face on the right is Ryan Cohen, an entrepreneur who is the CEO of Chewy and is the Chairman of GameStop. He owns 11.9% of all total shares of the company.", "website": "", "subreddit": "/r/Superstonk", "center": [841.5, 795.5], "path": [[774.5, 735.5], [909.5, 736.5], [909.5, 855.5], [773.5, 855.5]]}, -{"id": "twmr82", "submitted_by": "Lucas90012", "name": "gwa", "description": "gwa is a server emote for the Discord server Meta Studio. It is a cat. Please don't confuse it.", "website": "https: //discord.gg/Pf6EEJ84PK", "subreddit": "/r/gwaplace", "center": [1669.5, 525.5], "path": [[1662.5, 519.5], [1664.5, 519.5], [1664.5, 520.5], [1665.5, 520.5], [1665.5, 521.5], [1672.5, 521.5], [1672.5, 520.5], [1673.5, 520.5], [1673.5, 519.5], [1675.5, 519.5], [1675.5, 522.5], [1676.5, 522.5], [1676.5, 525.5], [1677.5, 525.5], [1677.5, 528.5], [1676.5, 528.5], [1676.5, 529.5], [1673.5, 529.5], [1673.5, 530.5], [1665.5, 530.5], [1665.5, 529.5], [1663.5, 529.5], [1663.5, 528.5], [1662.5, 528.5], [1662.5, 527.5], [1661.5, 527.5], [1661.5, 523.5], [1662.5, 523.5], [1662.5, 519.5]]}, -{"id": "twmr69", "submitted_by": "Kuberd", "name": "Koibu's K", "description": "Logo for popular Dungeons And Dragons professional Dungeon Master Koibu, associated with the DGG community.", "website": "https://regalgoblins.com/", "subreddit": "/r/Koibu", "center": [1599.5, 56.5], "path": [[1590.5, 41.5], [1590.5, 73.5], [1612.5, 64.5], [1607.5, 49.5], [1599.5, 41.5], [1590.5, 41.5], [1590.5, 41.5], [1590.5, 42.5]]}, -{"id": "twmqp5", "submitted_by": "elljobellnackle", "name": "OMORI Title Screen", "description": "Art of the OMORI title screen, originally made by reddit user u/Radnos_ but modified to fit in the canvas. The main character, Sunny, is shown in the background, as well as Japanese text, 'Oyasumi'.", "website": "", "subreddit": "/r/omori", "center": [1776.5, 1525.5], "path": [[1700.5, 1496.5], [1852.5, 1496.5], [1852.5, 1553.5], [1700.5, 1553.5]]}, -{"id": "twmq7c", "submitted_by": "MithradatesMegas", "name": "Little Princess", "description": "One of the main characters in Guardian Tales. Bright, cheerful, and ever helpful, she is the heir to the throne of Kanterbury. She does not like bell peppers.", "website": "https://guardiantales.com/", "subreddit": "/r/GuardianTales", "center": [702.5, 225.5], "path": [[695.5, 233.5], [695.5, 220.5], [701.5, 214.5], [709.5, 220.5], [709.5, 233.5]]}, -{"id": "twmq4r", "submitted_by": "KingMarine", "name": "Holocene Year 12022", "description": "", "website": "", "subreddit": "", "center": [743.5, 65.5], "path": [[734.5, 63.5], [752.5, 63.5], [752.5, 67.5], [734.5, 67.5]]}, -{"id": "twmpz9", "submitted_by": "Nezarecs", "name": "Star Citizen", "description": "Realism-driven space simulation game", "website": "https://robertsspaceindustries.com/", "subreddit": "/r/starcitizen", "center": [1735.5, 69.5], "path": [[1721.5, 55.5], [1721.5, 55.5], [1720.5, 86.5], [1749.5, 86.5], [1749.5, 52.5], [1721.5, 53.5]]}, -{"id": "twmpx6", "submitted_by": "journcy", "name": "/r/parahumans", "description": "Subreddit for the works of webfiction author Wildbow, including the popular 2011-2013 superhero webnovel Worm.", "website": "", "subreddit": "/r/parahumans", "center": [755.5, 380.5], "path": [[718.5, 381.5], [718.5, 398.5], [787.5, 398.5], [787.5, 361.5], [726.5, 361.5], [727.5, 361.5], [727.5, 364.5], [729.5, 364.5], [729.5, 366.5], [729.5, 368.5], [729.5, 374.5], [729.5, 376.5], [729.5, 378.5], [728.5, 378.5], [725.5, 380.5]]}, -{"id": "twmpua", "submitted_by": "MemoryAggravating694", "name": "The Mask", "description": "Titular character from Jim Carey's classic 1994 movie The Masm", "website": "", "subreddit": "", "center": [1871.5, 91.5], "path": [[1877.5, 84.5], [1875.5, 86.5], [1876.5, 90.5], [1873.5, 92.5], [1878.5, 94.5], [1877.5, 99.5], [1874.5, 100.5], [1871.5, 100.5], [1864.5, 100.5], [1865.5, 96.5], [1864.5, 94.5], [1867.5, 93.5], [1868.5, 91.5], [1865.5, 90.5], [1865.5, 88.5], [1866.5, 86.5], [1866.5, 85.5], [1864.5, 84.5], [1866.5, 85.5], [1866.5, 83.5], [1867.5, 81.5], [1875.5, 81.5], [1876.5, 82.5], [1877.5, 85.5]]}, -{"id": "twmovo", "submitted_by": "OnlyManOnMars", "name": "The Gizzard Gator", "description": "The mascot for the band King Gizzard And The Lizard Wizard", "website": "https://kinggizzardandthelizardwizard.com/", "subreddit": "/r/KGATLW", "center": [72.5, 401.5], "path": [[50.5, 389.5], [50.5, 387.5], [51.5, 387.5], [51.5, 386.5], [52.5, 386.5], [52.5, 385.5], [54.5, 385.5], [54.5, 384.5], [55.5, 384.5], [55.5, 383.5], [58.5, 383.5], [58.5, 379.5], [59.5, 379.5], [59.5, 377.5], [60.5, 377.5], [61.5, 373.5], [64.5, 370.5], [68.5, 373.5], [70.5, 378.5], [70.5, 383.5], [73.5, 383.5], [73.5, 385.5], [78.5, 384.5], [79.5, 393.5], [82.5, 395.5], [93.5, 400.5], [109.5, 400.5], [109.5, 403.5], [109.5, 407.5], [101.5, 413.5], [89.5, 414.5], [89.5, 420.5], [56.5, 420.5], [56.5, 415.5], [50.5, 409.5], [49.5, 408.5], [49.5, 406.5], [48.5, 406.5], [48.5, 392.5], [49.5, 392.5], [49.5, 390.5], [50.5, 390.5]]}, -{"id": "twmouf", "submitted_by": "FreakoSchizo", "name": "Flag of Australia", "description": "", "website": "", "subreddit": "/r/Australia", "center": [1959.5, 1707.5], "path": [[1941.5, 1696.5], [1941.5, 1718.5], [1977.5, 1718.5], [1977.5, 1696.5]]}, -{"id": "twmogt", "submitted_by": "frito11", "name": "Chvrches band", "description": "band name with stylized E colored with their 4 album colors and black heart with blue cross logo from their 3rd album Love is Dead", "website": "", "subreddit": "/r/chvrches", "center": [1533.5, 57.5], "path": [[1507.5, 52.5], [1559.5, 52.5], [1559.5, 61.5], [1507.5, 61.5]]}, -{"id": "twmo8e", "submitted_by": "Kuberd", "name": "MrMouton Logo", "description": "Twitch streamer MrMouton, associated with the Dgg community", "website": "https://twitch.tv/mrmouton", "subreddit": "", "center": [194.5, 109.5], "path": [[180.5, 97.5], [207.5, 97.5], [207.5, 121.5], [180.5, 120.5], [180.5, 97.5]]}, -{"id": "twmo0t", "submitted_by": "journcy", "name": "KyoAni", "description": "Abbreviated logo of the popular Japanese animation studio Kyoto Animation.", "website": "https://www.kyotoanimation.co.jp/", "subreddit": "/r/kyoani", "center": [1937.5, 764.5], "path": [[1920.5, 760.5], [1920.5, 768.5], [1953.5, 769.5], [1953.5, 760.5]]}, -{"id": "twmnzn", "submitted_by": "KingMarine", "name": "Source", "description": "A game engine developed by Valve. Used in games like Team Fortress 2 and Counter-Strike: Global Offensive. Used in filmmaking with Source Filmmaker", "website": "https://www.sourcefilmmaker.com/", "subreddit": "/r/SourceEngine", "center": [807.5, 66.5], "path": [[813.5, 61.5], [816.5, 61.5], [818.5, 63.5], [818.5, 66.5], [816.5, 68.5], [792.5, 68.5], [792.5, 65.5], [811.5, 65.5], [811.5, 63.5]]}, -{"id": "twmmyy", "submitted_by": "Seiunn", "name": "Boston Mural", "description": "A mural consisting of colleges located in and around the city of Boston. It includes Boston University, Tufts, Northeastern, Massachusetts Institute of Technology, Wentworth Institute of Technology, Worcester Polytechnic Institute, and Boston College.", "website": "", "subreddit": "", "center": [322.5, 1537.5], "path": [[300.5, 1500.5], [301.5, 1576.5], [343.5, 1572.5], [344.5, 1501.5]]}, -{"id": "twmmwi", "submitted_by": "Narnall2", "name": "Asriel Dreemur", "description": "A small artwork of Asriel Dreemur from Undertale", "website": "", "subreddit": "", "center": [684.5, 826.5], "path": [[675.5, 834.5], [675.5, 833.5], [676.5, 832.5], [677.5, 832.5], [678.5, 833.5], [679.5, 833.5], [679.5, 830.5], [677.5, 828.5], [677.5, 824.5], [678.5, 822.5], [680.5, 819.5], [686.5, 817.5], [689.5, 819.5], [691.5, 822.5], [692.5, 826.5], [691.5, 829.5], [690.5, 832.5], [690.5, 832.5], [691.5, 833.5], [693.5, 832.5], [694.5, 833.5], [694.5, 834.5]]}, -{"id": "twmmvg", "submitted_by": "The_Dinkster2201", "name": "Federation of the Rising Dawn", "description": "A popular Star Citizen community org", "website": "https://robertsspaceindustries.com/orgs/DAWNBREAK", "subreddit": "", "center": [1763.5, 703.5], "path": [[1756.5, 701.5], [1769.5, 701.5], [1769.5, 705.5], [1756.5, 705.5]]}, -{"id": "twmmmu", "submitted_by": "QuietWanderingNerd", "name": "RWBY", "description": "Logo for the Rooster Teeth series, RWBY", "website": "", "subreddit": "", "center": [473.5, 721.5], "path": [[449.5, 729.5], [449.5, 713.5], [497.5, 713.5], [497.5, 729.5]]}, -{"id": "twmmgu", "submitted_by": "CCONX", "name": "TotalBiscuit", "description": "John Peter Bain, better known as TotalBiscuit, was an English video gaming commentator and game critic on YouTube. He was known for his role in professional shoutcasting and esports, and also known for his gaming commentary audio work on https://WCradio.comnnRest in Peace", "website": "", "subreddit": "", "center": [986.5, 1255.5], "path": [[908.5, 1181.5], [909.5, 1343.5], [947.5, 1359.5], [1071.5, 1294.5], [1077.5, 1177.5], [944.5, 1174.5]]}, -{"id": "twmme8", "submitted_by": "itsmeagknoows", "name": "Flag of the Philippines", "description": "The flag of the Philippines with the silhouette of the Philippine archipelago.", "website": "https://en.wikipedia.org/wiki/Philippines", "subreddit": "/r/Philippines", "center": [332.5, 666.5], "path": [[301.5, 645.5], [301.5, 686.5], [363.5, 686.5], [363.5, 645.5]]}, -{"id": "twmls3", "submitted_by": "Nickosaurus", "name": "The Real Eren", "description": "Pixel art of a face and phrase from Attack on Titan's main character, Eren Jaeger, in the series' last chapter, with minimal context and no plot spoilers. The subject of countless entertaining memes and jokes in the series' fandom, this face & phrase owes its popularization to the /r/titanfolk subreddit, with its placement on this year's /r/place by that subreddit assisted by the unexpectedly unified assistance of other communities in the fandom. This image will surely be at the front of our minds for quite a while - ten years, at least! Be wary of significant spoilers for the series if you seek further context.", "website": "https://i.imgur.com/y845KFg.png", "subreddit": "/r/titanfolk", "center": [139.5, 114.5], "path": [[109.5, 93.5], [79.5, 93.5], [80.5, 115.5], [124.5, 114.5], [130.5, 118.5], [130.5, 127.5], [131.5, 134.5], [130.5, 146.5], [150.5, 147.5], [157.5, 144.5], [171.5, 144.5], [173.5, 133.5], [175.5, 123.5], [176.5, 89.5], [172.5, 87.5], [159.5, 87.5], [140.5, 89.5], [135.5, 95.5], [132.5, 102.5], [133.5, 107.5], [132.5, 111.5], [130.5, 114.5], [129.5, 116.5], [124.5, 113.5], [120.5, 110.5], [119.5, 105.5]]}, -{"id": "twmloz", "submitted_by": "MemoryAggravating694", "name": "Juice Wrld", "description": "A tribute to the late Juice Wrld: the two albums depicted are \"Goodbye and Gods Riddance\" and \"Legends Never Die\"", "website": "", "subreddit": "/r/juicewrld", "center": [1980.5, 1538.5], "path": [[1960.5, 1548.5], [2000.5, 1547.5], [2000.5, 1529.5], [1962.5, 1529.5]]}, -{"id": "twmlm7", "submitted_by": "Oofio128", "name": "Flag of Equestria", "description": "Pixel art of the Flag of Equestria from My Little Pony: Friendship is Magic. The flag displays Princess Celestia and Princess Luna, the diarchy of Equestria, flying around the sun and moon, which they each raise and lower each day.\n\nThis was the flag design that was chosen out of three potential designs by the Manechat Discord server. They, along with their allies, would help maintain this flag as one of their pieces throughout the event.", "website": "https://discord.com/invite/manechat", "subreddit": "/r/MyLittlePony", "center": [919.5, 1760.5], "path": [[906.5, 1778.5], [906.5, 1746.5], [932.5, 1746.5], [932.5, 1777.5], [920.5, 1771.5]]}, -{"id": "twmlez", "submitted_by": "Narnall2", "name": "June and Angel Memorial (Sewerslvt)", "description": "A piece dedicated to the music artist Sewerslvt. The artwork is based off of the thumbnail image used for the final song of their career titled 'Goodbye'", "website": "https://www.youtube.com/watch?v=ABBpsy6rlVU&t", "subreddit": "/r/sewerslvt", "center": [445.5, 1815.5], "path": [[464.5, 1800.5], [425.5, 1800.5], [425.5, 1829.5], [464.5, 1829.5], [464.5, 1807.5]]}, -{"id": "twml87", "submitted_by": "rafaelloaa", "name": "WPI", "description": "Logo of Worcester Polytechnic University, an engineering school in Worcester, MA", "website": "", "subreddit": "/r/WPI", "center": [318.5, 1559.5], "path": [[310.5, 1554.5], [325.5, 1554.5], [325.5, 1563.5], [325.5, 1563.5], [325.5, 1564.5], [310.5, 1564.5]]}, -{"id": "twml7z", "submitted_by": "Acrobatic-Waltz-1702", "name": "Pregnant Mario", "description": "You heard that correctly.", "website": "", "subreddit": "", "center": [1618.5, 1956.5], "path": [[1606.5, 1970.5], [1607.5, 1971.5], [1610.5, 1972.5], [1616.5, 1972.5], [1619.5, 1975.5], [1623.5, 1975.5], [1623.5, 1974.5], [1624.5, 1973.5], [1625.5, 1974.5], [1633.5, 1974.5], [1634.5, 1973.5], [1635.5, 1973.5], [1638.5, 1970.5], [1638.5, 1965.5], [1637.5, 1964.5], [1637.5, 1962.5], [1636.5, 1961.5], [1635.5, 1961.5], [1634.5, 1960.5], [1634.5, 1959.5], [1633.5, 1958.5], [1633.5, 1957.5], [1632.5, 1956.5], [1628.5, 1956.5], [1627.5, 1955.5], [1625.5, 1955.5], [1625.5, 1951.5], [1623.5, 1951.5], [1623.5, 1950.5], [1622.5, 1950.5], [1622.5, 1949.5], [1622.5, 1948.5], [1624.5, 1948.5], [1625.5, 1947.5], [1625.5, 1944.5], [1626.5, 1943.5], [1627.5, 1942.5], [1628.5, 1941.5], [1628.5, 1939.5], [1626.5, 1937.5], [1624.5, 1937.5], [1624.5, 1936.5], [1621.5, 1933.5], [1619.5, 1933.5], [1619.5, 1932.5], [1613.5, 1932.5], [1613.5, 1933.5], [1609.5, 1933.5], [1609.5, 1935.5], [1608.5, 1935.5], [1606.5, 1937.5], [1606.5, 1940.5], [1607.5, 1940.5], [1608.5, 1941.5], [1608.5, 1947.5], [1609.5, 1948.5], [1608.5, 1949.5], [1607.5, 1949.5], [1601.5, 1955.5], [1601.5, 1956.5], [1600.5, 1957.5], [1600.5, 1964.5], [1601.5, 1965.5], [1601.5, 1966.5], [1603.5, 1968.5], [1605.5, 1968.5], [1606.5, 1970.5]]}, -{"id": "twmkup", "submitted_by": "daily_flags", "name": "Peru flag with llama wearing sunglasses", "description": "Peruvian flag with a llama wearing sunglasses, aside there is a bottle of Inca Kola, a popular soft drink in Peru", "website": "", "subreddit": "/r/PERU", "center": [568.5, 617.5], "path": [[535.5, 587.5], [600.5, 587.5], [600.5, 646.5], [535.5, 646.5], [535.5, 587.5]]}, -{"id": "twmkh1", "submitted_by": "CydersZenith", "name": "Goop House", "description": "An underground label/collective with community challenges based around the PC music scene.", "website": "https://soundcloud.com/goophouse", "subreddit": "", "center": [873.5, 1809.5], "path": [[872.5, 1800.5], [874.5, 1800.5], [874.5, 1817.5], [872.5, 1817.5]]}, -{"id": "twmkbd", "submitted_by": "craff_t", "name": "Hamburger Elbphilharmonie", "description": "The Elbphilharmonie, popularly nicknamed Elphi, is a concert hall in the HafenCity quarter of Hamburg, Germany, on the Grasbrook peninsula of the Elbe River. It is among the largest in the world and a popular tourist attraction.", "website": "https://en.wikipedia.org/wiki/Elbphilharmonie", "subreddit": "/r/placeDE", "center": [518.5, 1158.5], "path": [[503.5, 1139.5], [507.5, 1142.5], [510.5, 1138.5], [516.5, 1145.5], [519.5, 1142.5], [525.5, 1152.5], [524.5, 1149.5], [528.5, 1149.5], [528.5, 1146.5], [534.5, 1152.5], [534.5, 1149.5], [535.5, 1150.5], [536.5, 1152.5], [536.5, 1171.5], [503.5, 1171.5]]}, -{"id": "twmk7q", "submitted_by": "Oofio128", "name": "Derpy Hooves", "description": "Derpy is a background characters from My Little Pony: Friendship is Magic. Derpy was first noticed by fans in 2010 for her cross-eyed look in the pilot episode of the show, and became a fan favorite ever since.\n\n Derpy was mainly spearheaded by Russian MLP pixel artists of the r/MLP_Pixel subreddit and was a part of the original art that the MLP fandom had planned to make for r/place. Initially, this art was located near the original Rainbow Dash, but moved nearby to the southwest for further protection from the Ukraine flag and Twitch stream raids. However, even with this measure, the artwork still experienced griefing by streamers (especially Mizkif). When the canvas expanded, the artwork was moved once more over to its current location where it was protected in a joint effort between r/MyLittlePony and r/MLP_Pixel.\n\nAlong the way, a small Fluttershy was added as well.", "website": "https://mlp.fandom.com/wiki/Derpy#Pegasus", "subreddit": "/r/MyLittlePony, /r/MLP_Pixel", "center": [1973.5, 380.5], "path": [[1950.5, 356.5], [1950.5, 400.5], [1999.5, 400.5], [1999.5, 369.5], [1984.5, 369.5], [1984.5, 363.5], [1983.5, 362.5], [1983.5, 356.5], [1950.5, 356.5]]}, -{"id": "twmk6g", "submitted_by": "GabrielDieck", "name": "Flag of Paraguay", "description": "Flag of Paraguay made by r/Paraguay and the Paraguayan Discord community.", "website": "", "subreddit": "/r/Paraguay", "center": [1063.5, 690.5], "path": [[926.5, 684.5], [1200.5, 684.5], [1200.5, 695.5], [926.5, 695.5]]}, -{"id": "twmk0n", "submitted_by": "Mikerific", "name": "r/PlacePride", "description": "Originally stemming from the pxls.space Pride Faction, r/PlacePride is a community that grew between the border of the old r/ainbowroad location and r/TransPlace to represent the LGBT community on the canvas.", "website": "http://rplace.lgbt", "subreddit": "r/PlacePride, /r/TransPlace, /r/ainbowroad", "center": [519.5, 491.5], "path": [[469.5, 476.5], [469.5, 513.5], [527.5, 513.5], [527.5, 507.5], [529.5, 505.5], [534.5, 505.5], [536.5, 507.5], [538.5, 505.5], [543.5, 505.5], [545.5, 507.5], [547.5, 505.5], [552.5, 505.5], [554.5, 507.5], [555.5, 507.5], [557.5, 505.5], [560.5, 508.5], [560.5, 509.5], [561.5, 510.5], [566.5, 505.5], [567.5, 503.5], [568.5, 503.5], [568.5, 502.5], [569.5, 501.5], [569.5, 499.5], [570.5, 498.5], [571.5, 497.5], [572.5, 497.5], [573.5, 499.5], [574.5, 503.5], [576.5, 503.5], [576.5, 498.5], [575.5, 497.5], [576.5, 496.5], [577.5, 496.5], [577.5, 489.5], [576.5, 488.5], [575.5, 488.5], [574.5, 487.5], [574.5, 480.5], [573.5, 479.5], [570.5, 479.5], [570.5, 476.5], [546.5, 476.5], [546.5, 471.5], [535.5, 460.5], [534.5, 460.5], [533.5, 462.5], [532.5, 463.5], [531.5, 465.5], [530.5, 466.5], [529.5, 468.5], [528.5, 469.5], [527.5, 470.5], [526.5, 472.5], [523.5, 472.5], [523.5, 471.5], [521.5, 469.5], [521.5, 468.5], [519.5, 466.5], [519.5, 465.5], [517.5, 463.5], [517.5, 462.5], [516.5, 462.5], [515.5, 460.5], [514.5, 460.5], [505.5, 469.5], [504.5, 471.5], [503.5, 473.5], [502.5, 475.5], [503.5, 476.5], [502.5, 476.5], [502.5, 476.5]]}, -{"id": "twmjz6", "submitted_by": "JohnnyHotshot", "name": "HYDRA", "description": "A terrorist organization within the Marvel universe focused on world domination. Beginning as a cult to worship the Inhuman known as Alveus or Hive, Hydra has existed in many forms over the years, most notable the rogue Nazi science division. This green variant of their logo is found in Framework's virtual reality alternate timeline.", "website": "https://marvelcinematicuniverse.fandom.com/wiki/HYDRA", "subreddit": "/r/shield", "center": [938.5, 913.5], "path": [[936.5, 905.5], [940.5, 905.5], [947.5, 911.5], [947.5, 915.5], [941.5, 921.5], [935.5, 921.5], [929.5, 915.5], [929.5, 910.5]]}, -{"id": "twmjrt", "submitted_by": "-robotic", "name": "Happinex", "description": "Discord gaming community's mascot, Smiles. Allied with Green Lattice. Check us out on YouTube :) <3", "website": "https://www.youtube.com/channel/UCQVdNL6Vs8RRmC6ZkozXVWg", "subreddit": "", "center": [1559.5, 1529.5], "path": [[1554.5, 1526.5], [1563.5, 1526.5], [1563.5, 1529.5], [1562.5, 1529.5], [1562.5, 1532.5], [1561.5, 1532.5], [1561.5, 1533.5], [1556.5, 1533.5], [1556.5, 1532.5], [1555.5, 1532.5], [1555.5, 1529.5], [1554.5, 1529.5]]}, -{"id": "twmjhe", "submitted_by": "KingMarine", "name": "Team Fortress 2", "description": "Team Fortress 2 (TF2) is a game developed by Valve and released in 2007 as a paid game. TF2 was changed to a Free to Play game in 2011.", "website": "https://www.teamfortress.com", "subreddit": "/r/tf2", "center": [802.5, 55.5], "path": [[793.5, 46.5], [810.5, 46.5], [810.5, 63.5], [793.5, 63.5]]}, -{"id": "twmjaz", "submitted_by": "journcy", "name": "r/Nichijou", "description": "Subreddit for the 2011 slice of life comedy anime Nichijou from Kyoto Animation.", "website": "", "subreddit": "/r/Nichijou", "center": [1413.5, 1252.5], "path": [[1387.5, 1243.5], [1387.5, 1261.5], [1439.5, 1261.5], [1439.5, 1243.5]]}, -{"id": "twmjad", "submitted_by": "Derfla12345", "name": "The Gnome (Link)", "description": "A tiny picture of Link recreated from a drawing I made in 2017. Protected and loved by the Safemoon Discord. Not present in this image, but exists in the final version of /r/place before the whitening : https://www.reddit.com/r/place/comments/twkdw7/actual_final_image_of_place_2022_high_res/", "website": "https://cdn.discordapp.com/attachments/255124269527203840/960756918723416084/pfp_jpg.jpg", "subreddit": "/r/ttteat", "center": [348.5, 1260.5], "path": [[347.5, 1264.5], [348.5, 1264.5], [348.5, 1263.5], [348.5, 1264.5], [349.5, 1264.5], [350.5, 1264.5], [350.5, 1263.5], [350.5, 1262.5], [351.5, 1262.5], [352.5, 1262.5], [352.5, 1261.5], [352.5, 1260.5], [352.5, 1259.5], [352.5, 1258.5], [352.5, 1257.5], [351.5, 1257.5], [350.5, 1257.5], [350.5, 1258.5], [350.5, 1259.5], [350.5, 1260.5], [350.5, 1259.5], [350.5, 1258.5], [349.5, 1258.5], [349.5, 1257.5], [348.5, 1257.5], [347.5, 1257.5], [346.5, 1257.5], [345.5, 1257.5], [345.5, 1258.5], [344.5, 1258.5], [344.5, 1259.5], [344.5, 1260.5], [345.5, 1260.5], [346.5, 1260.5], [346.5, 1259.5], [346.5, 1260.5], [345.5, 1260.5], [345.5, 1261.5], [345.5, 1262.5], [346.5, 1262.5], [346.5, 1263.5], [346.5, 1264.5], [347.5, 1264.5]]}, -{"id": "twmj17", "submitted_by": "Acrobatic-Waltz-1702", "name": "Noggin", "description": "Noggin, from the game My Singing Monsters.", "website": "", "subreddit": "/r/MySingingMonsters", "center": [1936.5, 1304.5], "path": [[1903.5, 1358.5], [1909.5, 1364.5], [1913.5, 1364.5], [1916.5, 1367.5], [1923.5, 1367.5], [1925.5, 1362.5], [1933.5, 1362.5], [1936.5, 1359.5], [1936.5, 1351.5], [1929.5, 1342.5], [1958.5, 1342.5], [1957.5, 1345.5], [1957.5, 1347.5], [1970.5, 1356.5], [1986.5, 1347.5], [1986.5, 1339.5], [1980.5, 1334.5], [1973.5, 1331.5], [1973.5, 1308.5], [1965.5, 1304.5], [1965.5, 1291.5], [1971.5, 1291.5], [1972.5, 1268.5], [1966.5, 1251.5], [1960.5, 1245.5], [1954.5, 1245.5], [1958.5, 1252.5], [1956.5, 1252.5], [1949.5, 1245.5], [1944.5, 1245.5], [1941.5, 1250.5], [1945.5, 1254.5], [1939.5, 1250.5], [1929.5, 1249.5], [1930.5, 1253.5], [1939.5, 1263.5], [1924.5, 1264.5], [1922.5, 1261.5], [1927.5, 1258.5], [1927.5, 1256.5], [1922.5, 1253.5], [1918.5, 1255.5], [1906.5, 1266.5], [1906.5, 1260.5], [1910.5, 1249.5], [1905.5, 1248.5], [1901.5, 1250.5], [1895.5, 1264.5], [1896.5, 1303.5], [1900.5, 1307.5], [1901.5, 1326.5], [1906.5, 1330.5]]}, -{"id": "twmir2", "submitted_by": "Doodley0", "name": "SMTIV Smirk", "description": "The icon for the Smirk status from the 3DS game Shin Megami Tensei IV. Also briefly featured in Persona 2 when possessed.", "website": "https://megamitensei.fandom.com/wiki/Smirk", "subreddit": "/r/Megaten", "center": [599.5, 1589.5], "path": [[593.5, 1583.5], [605.5, 1583.5], [605.5, 1595.5], [593.5, 1595.5]]}, -{"id": "twmiqx", "submitted_by": "Frostiikin", "name": "Jowee", "description": "Character from Nintendo DS game Drawn to Life", "website": "", "subreddit": "/r/drawntolifegame", "center": [1833.5, 136.5], "path": [[1829.5, 131.5], [1829.5, 131.5], [1829.5, 141.5], [1829.5, 141.5], [1836.5, 141.5], [1836.5, 141.5], [1836.5, 131.5], [1836.5, 131.5]]}, -{"id": "twmig1", "submitted_by": "_Harkyn_", "name": "Puck", "description": "A character from the Manga Berserk. This little guy was constructed by the same Miura Memorial Development Team who designed Guts and the 'Rip Miura' mural to Puck's left.", "website": "https://berserk.fandom.com/wiki/Puck", "subreddit": "/r/Berserk", "center": [730.5, 283.5], "path": [[715.5, 269.5], [715.5, 296.5], [745.5, 296.5], [745.5, 269.5], [745.5, 269.5], [745.5, 269.5], [745.5, 269.5], [745.5, 269.5]]}, -{"id": "twmi5f", "submitted_by": "The_Dinkster2201", "name": "#33 Max Verstappen", "description": "Dutch 2021 F1 World Champion Max Verstappen's car, RB16, along with his driver number #33. A collaboration between r/Formula1 and r/PlaceNL", "website": "", "subreddit": "/r/formula1", "center": [612.5, 8.5], "path": [[595.5, 12.5], [595.5, 11.5], [597.5, 11.5], [597.5, 9.5], [598.5, 9.5], [598.5, 0.5], [610.5, 0.5], [610.5, 4.5], [614.5, 4.5], [614.5, 3.5], [618.5, 3.5], [618.5, 4.5], [620.5, 4.5], [620.5, 5.5], [623.5, 5.5], [623.5, 6.5], [624.5, 6.5], [624.5, 7.5], [625.5, 7.5], [625.5, 6.5], [626.5, 6.5], [626.5, 5.5], [627.5, 5.5], [627.5, 4.5], [633.5, 4.5], [633.5, 5.5], [633.5, 6.5], [632.5, 6.5], [632.5, 9.5], [631.5, 9.5], [631.5, 10.5], [630.5, 10.5], [630.5, 11.5], [629.5, 11.5], [629.5, 12.5], [627.5, 12.5], [628.5, 13.5], [627.5, 13.5], [595.5, 13.5]]}, -{"id": "twmi3h", "submitted_by": "MemoryAggravating694", "name": "Everhood", "description": "Blue Thief from the indie rhythm action game Everhood", "website": "", "subreddit": "/r/everhood", "center": [1315.5, 1891.5], "path": [[1300.5, 1893.5], [1303.5, 1892.5], [1303.5, 1891.5], [1306.5, 1891.5], [1308.5, 1889.5], [1306.5, 1887.5], [1307.5, 1886.5], [1310.5, 1884.5], [1311.5, 1882.5], [1315.5, 1881.5], [1318.5, 1881.5], [1322.5, 1881.5], [1324.5, 1882.5], [1325.5, 1885.5], [1325.5, 1886.5], [1325.5, 1889.5], [1324.5, 1893.5], [1322.5, 1897.5], [1319.5, 1899.5], [1316.5, 1899.5], [1313.5, 1901.5], [1311.5, 1900.5], [1309.5, 1898.5], [1307.5, 1897.5], [1301.5, 1895.5]]}, -{"id": "twmhwh", "submitted_by": "FreakoSchizo", "name": "Arsehole", "description": "An unexpected alliance", "website": "", "subreddit": "", "center": [727.5, 528.5], "path": [[702.5, 523.5], [752.5, 523.5], [752.5, 533.5], [702.5, 533.5]]}, -{"id": "twmhw0", "submitted_by": "JamehsCretin", "name": "GIR and Snail", "description": "Proposed on r/invaderzim, this was the third attempt to create GIR on the canvas. Initially starting out as a head, it became a full body version with him holding a snail created after allying with Team Gottes Lokus.", "website": "", "subreddit": "/r/invaderzim", "center": [1340.5, 1331.5], "path": [[1332.5, 1317.5], [1348.5, 1317.5], [1348.5, 1339.5], [1350.5, 1339.5], [1345.5, 1346.5], [1336.5, 1346.5], [1336.5, 1343.5], [1334.5, 1343.5], [1332.5, 1332.5], [1331.5, 1332.5], [1331.5, 1327.5], [1332.5, 1327.5], [1332.5, 1317.5]]}, -{"id": "twmhts", "submitted_by": "Wonderful-Surprise-7", "name": "Chelsea F.C.", "description": "Chelsea F.C are a club based in West London. They are often regarded as one of the most successful clubs in recent English football history, winning 5 Premier League titles, 2 Champions Leagues, and many other trophies since their ownership takeover in 2003. However, recent events have caused Roman Abramovich, Chelsea's owner, to leave the club. In Chelsea's struggle to find a new owner, Chelsea's supporters wrote the text on their artwork to which owners they don't want to take over the club.", "website": "", "subreddit": "/r/chelseafc", "center": [1210.5, 1853.5], "path": [[1164.5, 1891.5], [1163.5, 1820.5], [1166.5, 1828.5], [1169.5, 1828.5], [1172.5, 1829.5], [1177.5, 1822.5], [1175.5, 1815.5], [1256.5, 1815.5], [1256.5, 1875.5], [1254.5, 1880.5], [1256.5, 1887.5], [1242.5, 1889.5], [1238.5, 1888.5], [1235.5, 1881.5], [1229.5, 1880.5], [1225.5, 1884.5], [1225.5, 1888.5], [1230.5, 1893.5], [1222.5, 1893.5], [1202.5, 1893.5], [1196.5, 1891.5], [1185.5, 1891.5], [1180.5, 1889.5], [1174.5, 1891.5], [1166.5, 1888.5]]}, -{"id": "twmh5c", "submitted_by": "Difficult_Tourist_79", "name": "Rainbow Road", "description": "One of the only parts of the western rainbow remaining. Maintained by /r/PlacePride in alliance with the trans flag to the north after r/ainbowroad moved to the eastern canvas.", "website": "https://www.mariowiki.com/Rainbow_Road", "subreddit": "/r/PlacePride, /r/TransPlace, /r/ainbowroad", "center": [522.5, 492.5], "path": [[568.5, 475.5], [481.5, 475.5], [481.5, 513.5], [527.5, 513.5], [527.5, 505.5], [568.5, 505.5]]}, -{"id": "twmh1h", "submitted_by": "KingMarine", "name": "Update TF2 sign", "description": "A call to action to the both TF2's developers to update their game, especially to curb the rise of bots in the games.", "website": "", "subreddit": "", "center": [815.5, 40.5], "path": [[790.5, 35.5], [840.5, 35.5], [840.5, 44.5], [790.5, 44.5]]}, -{"id": "twmgzq", "submitted_by": "Artillect", "name": "Grapu", "description": "The Green Lattice's mascot. He started as a little work of art in Place 2017 that got destroyed twice and never made it to the final canvas. Over the years since then, we've grown to love him.", "website": "", "subreddit": "/r/greenlattice", "center": [1098.5, 428.5], "path": [[1088.5, 423.5], [1092.5, 419.5], [1094.5, 419.5], [1095.5, 418.5], [1102.5, 418.5], [1103.5, 419.5], [1104.5, 419.5], [1105.5, 420.5], [1106.5, 421.5], [1108.5, 423.5], [1108.5, 433.5], [1102.5, 437.5], [1102.5, 438.5], [1093.5, 438.5], [1093.5, 437.5], [1092.5, 437.5], [1088.5, 433.5]]}, -{"id": "twmgj5", "submitted_by": "Acrobatic-Waltz-1702", "name": "The Great Void Enitity", "description": "The Void in its final moments. Created by The Swarm.", "website": "", "subreddit": "/r/theswarm", "center": [1014.5, 1484.5], "path": [[938.5, 1348.5], [1014.5, 1315.5], [1078.5, 1346.5], [1085.5, 1478.5], [1037.5, 1650.5], [1025.5, 1685.5], [1007.5, 1684.5], [979.5, 1649.5], [948.5, 1598.5], [955.5, 1571.5], [957.5, 1545.5], [945.5, 1490.5], [961.5, 1489.5], [962.5, 1435.5], [951.5, 1432.5], [963.5, 1370.5]]}, -{"id": "twmg9x", "submitted_by": "Doodley0", "name": "Jill from VA-11 HALL-A", "description": "Jill from the indie game VA-11 HALL-A, sitting at her kotatsu, as seen at the end of workdays in the game.", "website": "https://www.reddit.com/r/waifubartending/comments/twf172/i_designed_the_template_for_jill_on_rplace_check/", "subreddit": "/r/waifubartending", "center": [512.5, 1574.5], "path": [[535.5, 1598.5], [535.5, 1550.5], [492.5, 1550.5], [492.5, 1562.5], [486.5, 1562.5], [486.5, 1591.5], [492.5, 1591.5], [492.5, 1599.5]]}, -{"id": "twmg8y", "submitted_by": "KingMarine", "name": "TF2 Rectangle", "description": "The two games listed, Team Fortress 2 and Titanfall 2 are both games that have been neglected by their developers, have unique takes on a First Person Shooter game, and are both shortened to TF2.", "website": "", "subreddit": "", "center": [815.5, 53.5], "path": [[790.5, 35.5], [840.5, 35.5], [840.5, 70.5], [790.5, 70.5]]}, -{"id": "twmg7n", "submitted_by": "The_Dinkster2201", "name": "Tower of Formula 1 Champions", "description": "A Formula 1 timing tower featuring the previous F1 world champions in order, as well as tributes to the late Anthoine Hubert and Jules Bianchi.", "website": "https://en.wikipedia.org/wiki/Formula_One_World_Champion", "subreddit": "/r/formula1", "center": [1405.5, 779.5], "path": [[1392.5, 752.5], [1418.5, 752.5], [1418.5, 806.5], [1392.5, 806.5]]}, -{"id": "twmfnl", "submitted_by": "MemoryAggravating694", "name": "IFunny", "description": "IFunny is a popular meme app. The art depicts the dreaded \"iFunny watermark\" that appears on saved images from the site", "website": "", "subreddit": "/r/ifunny", "center": [322.5, 1892.5], "path": [[310.5, 1888.5], [309.5, 1898.5], [335.5, 1896.5], [337.5, 1888.5]]}, -{"id": "twmfmx", "submitted_by": "Buddist_pizza", "name": "Loner flag from r/stalker", "description": "This is the flag on the loners/Stalkers from the popular Ukraine game S.T.A.L.K.E.R., which represents the people who went to the exclusion zone of Chernobyl in search of artifacts or riches (anomalies and artifacts with mysterious powers came into the zone when it blew up agian).", "website": "https://www.stalker2.com/", "subreddit": "/r/stalker, /r/place_CentralAlliance", "center": [497.5, 1046.5], "path": [[481.5, 1030.5], [481.5, 1062.5], [513.5, 1063.5], [512.5, 1031.5], [512.5, 1030.5]]}, -{"id": "twmfj6", "submitted_by": "FreakoSchizo", "name": "Dark Side of the Moon", "description": "A prism refracting light drawn from a cropped and stretched image of Pink Floyd's legendary 1973 progressive rock album Dark Side of the Moon.\n\nMade by xQc's community to replace a smaller DSotM artwork they covered with their Winston Overwatch logo directly above.\n\nThe original art was built by Classic Rock Union who maintained the new art until the end of the event.", "website": "https://www.pinkfloyd.com/", "subreddit": "/r/PinkFloyd, /r/classicrockplace, /r/xqcow", "center": [1812.5, 1355.5], "path": [[1726.5, 1378.5], [1723.5, 1365.5], [1720.5, 1360.5], [1723.5, 1356.5], [1723.5, 1330.5], [1778.5, 1330.5], [1779.5, 1331.5], [1783.5, 1331.5], [1786.5, 1330.5], [1798.5, 1330.5], [1801.5, 1329.5], [1812.5, 1330.5], [1882.5, 1330.5], [1882.5, 1338.5], [1883.5, 1346.5], [1885.5, 1348.5], [1889.5, 1351.5], [1901.5, 1357.5], [1907.5, 1363.5], [1912.5, 1369.5], [1918.5, 1376.5], [1924.5, 1384.5], [1926.5, 1384.5], [1926.5, 1386.5], [1925.5, 1386.5], [1925.5, 1390.5], [1924.5, 1390.5], [1924.5, 1394.5], [1912.5, 1394.5], [1912.5, 1377.5], [1811.5, 1377.5], [1809.5, 1376.5], [1803.5, 1378.5], [1766.5, 1378.5], [1742.5, 1378.5], [1726.5, 1378.5]]}, -{"id": "twmfdv", "submitted_by": "thysnice", "name": "No Man's Sky", "description": "The No Man's Sky community's contribution to r/place. A large Atlas diamond (the game's logo) fills the center, and the letters I [love] NMS can be seen. The number 16 16 16 can also be seen. 16 16 16 is a part of the game's lore and meme culture.", "website": "https://www.nomanssky.com/", "subreddit": "/r/NoMansSkyTheGame", "center": [1631.5, 1630.5], "path": [[1614.5, 1610.5], [1613.5, 1632.5], [1633.5, 1658.5], [1642.5, 1648.5], [1653.5, 1628.5], [1643.5, 1618.5], [1639.5, 1614.5], [1640.5, 1610.5], [1629.5, 1610.5]]}, -{"id": "twmelt", "submitted_by": "olly", "name": "Snowdrop", "description": "Snowdrop is an opossum that features heavily in Pale, created here by the Parahumans community.", "website": "https://pact-web-serial.fandom.com/wiki/Snowdrop", "subreddit": "", "center": [1705.5, 222.5], "path": [[1708.5, 220.5], [1707.5, 220.5], [1707.5, 221.5], [1706.5, 221.5], [1705.5, 221.5], [1704.5, 221.5], [1704.5, 220.5], [1703.5, 220.5], [1703.5, 221.5], [1703.5, 222.5], [1702.5, 223.5], [1702.5, 224.5], [1702.5, 225.5], [1703.5, 224.5], [1704.5, 223.5], [1705.5, 223.5], [1706.5, 224.5], [1707.5, 224.5], [1708.5, 223.5], [1707.5, 222.5], [1708.5, 221.5]]}, -{"id": "twme8p", "submitted_by": "Wonderful-Surprise-7", "name": "Tottenham Hotspur F.C.", "description": "Tottenham Hotspur F.C., also known as Tottenham or Spurs, is an English professional football club based in North London. that competes in the Premier League, the top flight of English football.\n\nTottenham's emblem is a cockerel standing upon a football, with the Latin motto Audere est Facere (\"To Dare Is To Do\").", "website": "https://www.tottenhamhotspur.com/", "subreddit": "/r/coys", "center": [1699.5, 443.5], "path": [[1684.5, 420.5], [1713.5, 420.5], [1713.5, 466.5], [1685.5, 467.5]]}, -{"id": "twmdw6", "submitted_by": "K4M1k4ZE_", "name": "Sylveon", "description": "Sylveon, Fairy-type Pokémon and evolution of Eevee, is often seen as a trans icon due to its coloration matching that of the trans flag. Its shiny version does too.", "website": "https://bulbapedia.bulbagarden.net/wiki/Sylveon_(Pok%C3%A9mon)", "subreddit": "/r/TransPlace", "center": [673.5, 451.5], "path": [[662.5, 451.5], [662.5, 449.5], [661.5, 448.5], [662.5, 447.5], [661.5, 446.5], [662.5, 445.5], [663.5, 444.5], [663.5, 443.5], [662.5, 442.5], [661.5, 442.5], [661.5, 439.5], [662.5, 439.5], [662.5, 438.5], [664.5, 438.5], [664.5, 437.5], [666.5, 437.5], [666.5, 436.5], [667.5, 436.5], [669.5, 435.5], [670.5, 435.5], [670.5, 436.5], [671.5, 436.5], [671.5, 441.5], [671.5, 442.5], [670.5, 442.5], [670.5, 444.5], [672.5, 442.5], [673.5, 442.5], [673.5, 443.5], [674.5, 442.5], [675.5, 441.5], [675.5, 440.5], [676.5, 440.5], [676.5, 439.5], [678.5, 439.5], [678.5, 438.5], [681.5, 438.5], [681.5, 439.5], [682.5, 439.5], [682.5, 443.5], [681.5, 443.5], [682.5, 444.5], [681.5, 445.5], [681.5, 446.5], [680.5, 446.5], [680.5, 447.5], [679.5, 447.5], [678.5, 448.5], [680.5, 448.5], [682.5, 447.5], [682.5, 445.5], [683.5, 445.5], [683.5, 443.5], [684.5, 443.5], [684.5, 442.5], [685.5, 442.5], [686.5, 442.5], [686.5, 443.5], [687.5, 443.5], [688.5, 443.5], [688.5, 444.5], [689.5, 444.5], [689.5, 447.5], [689.5, 448.5], [687.5, 448.5], [687.5, 448.5], [687.5, 449.5], [686.5, 449.5], [686.5, 450.5], [685.5, 450.5], [685.5, 451.5], [683.5, 451.5], [683.5, 454.5], [682.5, 454.5], [682.5, 455.5], [681.5, 455.5], [682.5, 456.5], [683.5, 456.5], [683.5, 457.5], [684.5, 457.5], [684.5, 456.5], [688.5, 456.5], [688.5, 457.5], [689.5, 457.5], [689.5, 458.5], [689.5, 459.5], [688.5, 459.5], [688.5, 460.5], [686.5, 460.5], [686.5, 461.5], [682.5, 461.5], [681.5, 461.5], [681.5, 460.5], [680.5, 461.5], [680.5, 463.5], [680.5, 464.5], [679.5, 464.5], [679.5, 465.5], [677.5, 465.5], [676.5, 465.5], [676.5, 464.5], [675.5, 464.5], [675.5, 462.5], [674.5, 461.5], [673.5, 461.5], [673.5, 462.5], [673.5, 463.5], [672.5, 463.5], [672.5, 464.5], [672.5, 465.5], [671.5, 465.5], [671.5, 466.5], [670.5, 466.5], [667.5, 466.5], [666.5, 465.5], [666.5, 464.5], [667.5, 464.5], [667.5, 463.5], [667.5, 464.5], [667.5, 463.5], [666.5, 462.5], [666.5, 461.5], [665.5, 460.5], [664.5, 461.5], [662.5, 461.5], [661.5, 461.5], [661.5, 460.5], [662.5, 459.5], [663.5, 459.5], [662.5, 458.5], [661.5, 458.5], [661.5, 454.5], [662.5, 454.5], [662.5, 453.5], [661.5, 453.5], [661.5, 449.5]]}, -{"id": "twmdtg", "submitted_by": "AwesomeTy79", "name": "FurfSky Reborn", "description": "A neon logo for the Hypixel Skyblock Minecraft texture pack, FurfSky Reborn.", "website": "https://furfsky.net/", "subreddit": "", "center": [1261.5, 818.5], "path": [[1281.5, 829.5], [1240.5, 829.5], [1240.5, 806.5], [1281.5, 806.5]]}, -{"id": "twmdkf", "submitted_by": "Ellakazam", "name": "JBOIZ", "description": "Many have asked what is JBOIZ, but only true JBOIZ know the answer to that question.nn", "website": "", "subreddit": "", "center": [1987.5, 122.5], "path": [[1974.5, 113.5], [1999.5, 113.5], [1999.5, 131.5], [1974.5, 131.5]]}, -{"id": "twmdh3", "submitted_by": "SmoreBender", "name": "Atrioc", "description": "Popular twitch streamer and YouTuber Atrioc. This section includes pixel art for the ghost(Atrioc's fall guys character), the Enron logo, Burgzy (Atrioc's vtuber character), The clown (Atrioc's signature hitman outfit), S3K (a group of reddit users that help make content for him), The Yard (a podcast that includes a lot of his friends), and much more.", "website": "https://twitch.tv/atrioc", "subreddit": "/r/atrioc", "center": [1831.5, 230.5], "path": [[1809.5, 298.5], [1817.5, 298.5], [1821.5, 292.5], [1825.5, 292.5], [1828.5, 298.5], [1843.5, 298.5], [1845.5, 289.5], [1853.5, 282.5], [1854.5, 273.5], [1864.5, 264.5], [1864.5, 252.5], [1866.5, 245.5], [1859.5, 238.5], [1847.5, 238.5], [1842.5, 235.5], [1840.5, 235.5], [1840.5, 220.5], [1840.5, 174.5], [1874.5, 175.5], [1874.5, 157.5], [1839.5, 157.5], [1839.5, 159.5], [1821.5, 159.5], [1821.5, 172.5], [1806.5, 172.5], [1806.5, 239.5], [1813.5, 239.5], [1814.5, 244.5], [1809.5, 249.5], [1808.5, 254.5], [1808.5, 254.5], [1808.5, 254.5], [1800.5, 266.5], [1796.5, 282.5], [1803.5, 285.5], [1805.5, 291.5], [1803.5, 295.5]]}, -{"id": "twmd9s", "submitted_by": "rileystan010", "name": "LittleBigPlanet", "description": "The Logo from the PlayStation™ Exclusive sandbox game, LittleBigPlanet™", "website": "https://www.mediamolecule.com/", "subreddit": "/r/littlebigplanet", "center": [1046.5, 385.5], "path": [[1034.5, 367.5], [1034.5, 399.5], [1064.5, 399.5], [1064.5, 386.5], [1061.5, 387.5], [1051.5, 387.5], [1051.5, 367.5]]}, -{"id": "twmclv", "submitted_by": "Rop-Tamen", "name": "BT-7274 and Titanfall 2 Logo", "description": "A depiction of BT-7274 from the game Titanfall 2 with the Titanfall 2 logo above him.", "website": "", "subreddit": "/r/titanfall", "center": [1546.5, 1952.5], "path": [[1522.5, 1918.5], [1570.5, 1918.5], [1570.5, 1985.5], [1522.5, 1985.5]]}, -{"id": "twmck8", "submitted_by": "JohnnyHotshot", "name": "SHIELD", "description": "The Strategic Homeland Investigation, Enforcement, and Logistics Division. A fictional government organization within the Marvel Universe, specializing in matters related to the Avengers and the supernatural. Featured heavily in the 'Marvel's Agents of SHIELD' television show.", "website": "https://marvelcinematicuniverse.fandom.com/wiki/S.H.I.E.L.D.", "subreddit": "/r/shield", "center": [938.5, 894.5], "path": [[933.5, 886.5], [943.5, 886.5], [946.5, 890.5], [947.5, 897.5], [941.5, 903.5], [936.5, 903.5], [930.5, 898.5], [930.5, 891.5]]}, -{"id": "twmcix", "submitted_by": "f5xs_0000b", "name": "Roxy Migurdia", "description": "The mentor of Rudeus Greyrat in the Mushoku Tensei: Jobless Reincarnation series.\n\nMushoku Tensei was one of the most popular japanese web novel for a long time, before receiving an anime adaptation.", "website": "https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu", "subreddit": "/r/mushokutensei", "center": [1774.5, 1304.5], "path": [[1765.5, 1291.5], [1766.5, 1291.5], [1767.5, 1292.5], [1769.5, 1290.5], [1771.5, 1290.5], [1774.5, 1293.5], [1776.5, 1293.5], [1778.5, 1295.5], [1779.5, 1295.5], [1781.5, 1293.5], [1784.5, 1293.5], [1787.5, 1290.5], [1788.5, 1290.5], [1788.5, 1292.5], [1789.5, 1293.5], [1787.5, 1293.5], [1787.5, 1294.5], [1785.5, 1296.5], [1785.5, 1297.5], [1784.5, 1298.5], [1784.5, 1299.5], [1785.5, 1300.5], [1789.5, 1300.5], [1789.5, 1304.5], [1788.5, 1305.5], [1788.5, 1306.5], [1786.5, 1306.5], [1785.5, 1305.5], [1780.5, 1305.5], [1779.5, 1304.5], [1777.5, 1304.5], [1776.5, 1305.5], [1776.5, 1306.5], [1777.5, 1307.5], [1777.5, 1308.5], [1779.5, 1310.5], [1779.5, 1311.5], [1777.5, 1311.5], [1776.5, 1312.5], [1774.5, 1312.5], [1773.5, 1313.5], [1773.5, 1314.5], [1772.5, 1315.5], [1772.5, 1317.5], [1773.5, 1318.5], [1773.5, 1327.5], [1772.5, 1327.5], [1770.5, 1328.5], [1769.5, 1327.5], [1769.5, 1325.5], [1770.5, 1325.5], [1770.5, 1323.5], [1768.5, 1321.5], [1768.5, 1320.5], [1769.5, 1319.5], [1769.5, 1313.5], [1766.5, 1313.5], [1765.5, 1312.5], [1762.5, 1309.5], [1762.5, 1307.5], [1761.5, 1307.5], [1760.5, 1307.5], [1759.5, 1308.5], [1757.5, 1308.5], [1758.5, 1307.5], [1759.5, 1307.5], [1760.5, 1306.5], [1761.5, 1306.5], [1762.5, 1305.5], [1763.5, 1304.5], [1764.5, 1304.5], [1766.5, 1302.5], [1766.5, 1301.5], [1767.5, 1300.5], [1763.5, 1296.5], [1762.5, 1296.5], [1762.5, 1295.5], [1759.5, 1295.5], [1759.5, 1296.5], [1760.5, 1297.5], [1759.5, 1297.5], [1758.5, 1296.5], [1758.5, 1294.5], [1759.5, 1294.5], [1760.5, 1295.5], [1762.5, 1295.5], [1763.5, 1296.5], [1766.5, 1296.5], [1768.5, 1294.5]]}, -{"id": "twmcgz", "submitted_by": "Shadox", "name": ":Wubby7:", "description": "An emote of Twitch Streamer PayMoneyWubby saluting. The emote is known in the community as \"wubby7.\"The emote is known in the community as 'wubby7.'\\n\\nThis emote have been attacked by French Community when Wubby would to make an aliance with Mizkif to attack the Huge French Flag (#FRANCE_over_sPAIN), Wubby thought that was a bots attack because of the efficiency of the French Army, so they wrote 'HUMAN' to show him how alive were they\\n\\Sh0xFr #Lpb", "website": "https://www.twitch.tv/paymoneywubby/clip/SmoggyUnusualMeerkatFloof--xu5f_5vkPmgx24C?filter=clips&range=7d&sort=time", "subreddit": "/r/paymoneywubby", "center": [406.5, 1496.5], "path": [[370.5, 1460.5], [442.5, 1460.5], [442.5, 1532.5], [370.5, 1532.5]]}, -{"id": "twmbzs", "submitted_by": "Slyguy46", "name": "New York Jets", "description": "The New York Jets, a football team in the NFL, using their 80's logo.", "website": "", "subreddit": "/r/nyjets", "center": [1349.5, 42.5], "path": [[1328.5, 35.5], [1369.5, 35.5], [1369.5, 39.5], [1371.5, 39.5], [1371.5, 40.5], [1372.5, 40.5], [1372.5, 42.5], [1371.5, 42.5], [1371.5, 43.5], [1370.5, 43.5], [1370.5, 44.5], [1369.5, 44.5], [1369.5, 50.5], [1328.5, 50.5], [1328.5, 45.5], [1328.5, 44.5], [1327.5, 44.5], [1327.5, 43.5], [1326.5, 43.5], [1326.5, 42.5], [1325.5, 42.5], [1325.5, 40.5], [1326.5, 40.5], [1326.5, 39.5], [1328.5, 39.5], [1328.5, 35.5], [1328.5, 35.5], [1328.5, 35.5]]}, -{"id": "twmbw6", "submitted_by": "Wonderful-Surprise-7", "name": "Flag of Canada", "description": "Canada's flag quickly became the target of memes as their leaf was never quite in shape. This led to constant vandalism on the flag. At one point, the flag was changed to yellow and the leaf changed to a banana. Canada managed to gain a little progress on their leaf, but the canvas ended before it could be fully fixed.", "website": "", "subreddit": "/r/placecanada", "center": [210.5, 508.5], "path": [[244.5, 528.5], [244.5, 492.5], [228.5, 492.5], [228.5, 484.5], [191.5, 484.5], [191.5, 492.5], [175.5, 492.5], [175.5, 528.5]]}, -{"id": "twmbri", "submitted_by": "FreakoSchizo", "name": "Foxhole", "description": "Foxhole is a massively multiplayer war game where hundreds and thousands of players battle for control of the map. This image is the main icon for the game.", "website": "https://www.foxholegame.com/", "subreddit": "/r/foxholegame", "center": [564.5, 1559.5], "path": [[536.5, 1522.5], [536.5, 1596.5], [592.5, 1596.5], [592.5, 1522.5]]}, -{"id": "twmbnb", "submitted_by": "MemoryAggravating694", "name": "r/pop heads", "description": "A tribute to a subreddit for pop heads. The album featured in the image is Carly Rae Jepsens Emotion Side B", "website": "", "subreddit": "/r/popheads", "center": [1443.5, 523.5], "path": [[1416.5, 539.5], [1416.5, 508.5], [1472.5, 509.5], [1474.5, 533.5], [1449.5, 536.5], [1448.5, 541.5]]}, -{"id": "twmbjh", "submitted_by": "Dashacutie", "name": "[OFF] The Batter", "description": "A small pixel art of the batter from the indie horror game OFF by Mortis Ghost", "website": "", "subreddit": "/r/offthegame", "center": [1913.5, 776.5], "path": [[1905.5, 760.5], [1905.5, 792.5], [1920.5, 793.5], [1920.5, 760.5], [1906.5, 760.5]]}, -{"id": "twmb97", "submitted_by": "h_h_gregg", "name": "Slugcat", "description": "A playable character in Rain World, a 2017 video game developed by the indie studio Videocult. This location depicts the Survivor slugcat in a sleeping position reminiscent of the slugcat's sleep screen in-game.", "website": "https://rainworldgame.com/", "subreddit": "/r/rainworld", "center": [1379.5, 128.5], "path": [[1376.5, 119.5], [1382.5, 119.5], [1383.5, 118.5], [1385.5, 118.5], [1386.5, 119.5], [1386.5, 120.5], [1385.5, 121.5], [1386.5, 122.5], [1387.5, 123.5], [1388.5, 123.5], [1389.5, 122.5], [1391.5, 122.5], [1391.5, 125.5], [1389.5, 127.5], [1389.5, 128.5], [1388.5, 128.5], [1388.5, 134.5], [1386.5, 136.5], [1385.5, 136.5], [1384.5, 137.5], [1373.5, 137.5], [1372.5, 136.5], [1371.5, 135.5], [1371.5, 133.5], [1370.5, 133.5], [1370.5, 132.5], [1369.5, 132.5], [1369.5, 131.5], [1368.5, 131.5], [1368.5, 130.5], [1367.5, 130.5], [1367.5, 127.5], [1368.5, 126.5], [1368.5, 125.5], [1369.5, 124.5], [1370.5, 123.5], [1371.5, 122.5], [1372.5, 121.5], [1373.5, 121.5], [1374.5, 120.5], [1375.5, 120.5], [1376.5, 119.5]]}, -{"id": "twmb92", "submitted_by": "Relssifille", "name": "The Neverland Castle", "description": "The logo of the kpop girl group (G)I-DLE's fandom Neverland featuring the group member's colours", "website": "", "subreddit": "/r/gidle", "center": [1477.5, 925.5], "path": [[1492.5, 937.5], [1462.5, 937.5], [1462.5, 912.5], [1491.5, 912.5], [1491.5, 917.5], [1492.5, 917.5]]}, -{"id": "twmayf", "submitted_by": "splongadongla", "name": "Klei logo", "description": "Klei Entertainment Inc. is a Canadian video game development company and developer of Don't Starve. Made by the Chester/Place Discord server.", "website": "https://www.klei.com/", "subreddit": "/r/dontstarve", "center": [1068.5, 520.5], "path": [[1061.5, 511.5], [1074.5, 511.5], [1074.5, 529.5], [1061.5, 529.5], [1061.5, 511.5]]}, -{"id": "twmas3", "submitted_by": "mitgas", "name": "r/sadboys", "description": "An emblem made by the r/sadboys subreddit. The subreddit is for the fans of the Sad Boys and Drain Gang music collectives. The emblem depicts two logos of the collectives, SBE for Sad Boys Entertainment on top, and DG for Drain Gang on the bottom.", "website": "", "subreddit": "/r/sadboys", "center": [1550.5, 382.5], "path": [[1526.5, 353.5], [1526.5, 353.5], [1526.5, 408.5], [1531.5, 413.5], [1568.5, 413.5], [1568.5, 411.5], [1573.5, 411.5], [1573.5, 360.5], [1573.5, 353.5], [1564.5, 353.5], [1563.5, 353.5], [1563.5, 352.5], [1537.5, 352.5], [1537.5, 353.5], [1526.5, 353.5]]}, -{"id": "twmard", "submitted_by": "TheXtremeVocaloid", "name": "Dreamcatcher", "description": "A South Korean girl group. Notable for their more rock-based songs.", "website": "", "subreddit": "/r/Dreamcatcher", "center": [1627.5, 874.5], "path": [[1588.5, 869.5], [1588.5, 879.5], [1670.5, 878.5], [1670.5, 870.5], [1588.5, 869.5]]}, -{"id": "twmajs", "submitted_by": "DeidreMengedoht", "name": "Yume Nikki and its numerous fangames", "description": "Yume Nikki is a cult classic psychological surreal-horror RPG/Maker game that is regarded as the start of a possible new genre of games and has influenced several majorly popular indie games throughout years. Besides the sprites of the most recognizable protagonists in the fandom, the panel features references to several Yume Nikki fangames: Lcd Dem, Answered Prayers, Amillusion, Uneven Dream, Collective Unconscious, and, indirectly, Dreaming Bad.", "website": "https://yumenikki.fandom.com/wiki/Yume_Nikki#", "subreddit": "/r/yumenikki", "center": [1222.5, 120.5], "path": [[1197.5, 104.5], [1197.5, 104.5], [1197.5, 104.5], [1213.5, 104.5], [1213.5, 107.5], [1248.5, 107.5], [1248.5, 134.5], [1197.5, 134.5]]}, -{"id": "twmae3", "submitted_by": "Loicass", "name": "Halo Energy Sword", "description": "", "website": "", "subreddit": "", "center": [83.5, 1246.5], "path": [[0.5, 1226.5], [0.5, 1265.5], [166.5, 1265.5], [166.5, 1226.5]]}, -{"id": "twmaay", "submitted_by": "a_printer", "name": "H", "description": "H", "website": "", "subreddit": "/r/theletterH", "center": [1587.5, 1377.5], "path": [[1576.5, 1368.5], [1576.5, 1386.5], [1600.5, 1386.5], [1600.5, 1373.5], [1595.5, 1373.5], [1595.5, 1372.5], [1594.5, 1372.5], [1594.5, 1368.5], [1576.5, 1368.5]]}, -{"id": "twma1z", "submitted_by": "Relssifille", "name": "(G)I-DLE logo", "description": "The logo of the kpop girl group (G)I-DLE featuring their lightstick", "website": "", "subreddit": "/r/gidle", "center": [1683.5, 874.5], "path": [[1696.5, 879.5], [1670.5, 879.5], [1670.5, 869.5], [1696.5, 869.5]]}, -{"id": "twm9xs", "submitted_by": "f5xs_0000b", "name": "Rimuru Tempest, Human Form", "description": "The human form of the Slime Demon Rimuru Tempest. Takes the form and wears the mask of the late Otherworlder Shizue Izawa.nnAppears in the anime That Time I Got Reincarnated as a Slime.", "website": "https://myanimelist.net/anime/37430/Tensei_shitara_Slime_Datta_Ken", "subreddit": "/r/TenseiSlime", "center": [1866.5, 1297.5], "path": [[1844.5, 1306.5], [1843.5, 1305.5], [1843.5, 1301.5], [1844.5, 1300.5], [1844.5, 1298.5], [1845.5, 1297.5], [1845.5, 1296.5], [1846.5, 1295.5], [1846.5, 1294.5], [1852.5, 1288.5], [1853.5, 1289.5], [1853.5, 1291.5], [1856.5, 1294.5], [1857.5, 1294.5], [1858.5, 1295.5], [1859.5, 1294.5], [1859.5, 1291.5], [1858.5, 1290.5], [1858.5, 1288.5], [1859.5, 1287.5], [1859.5, 1285.5], [1860.5, 1284.5], [1860.5, 1282.5], [1861.5, 1281.5], [1861.5, 1280.5], [1862.5, 1279.5], [1863.5, 1279.5], [1864.5, 1278.5], [1868.5, 1278.5], [1869.5, 1277.5], [1871.5, 1277.5], [1875.5, 1281.5], [1875.5, 1285.5], [1873.5, 1287.5], [1873.5, 1289.5], [1872.5, 1290.5], [1872.5, 1292.5], [1873.5, 1293.5], [1875.5, 1291.5], [1875.5, 1289.5], [1876.5, 1288.5], [1877.5, 1289.5], [1877.5, 1290.5], [1878.5, 1291.5], [1878.5, 1292.5], [1879.5, 1293.5], [1879.5, 1295.5], [1880.5, 1296.5], [1880.5, 1304.5], [1878.5, 1304.5], [1878.5, 1300.5], [1876.5, 1300.5], [1875.5, 1301.5], [1873.5, 1299.5], [1872.5, 1300.5], [1873.5, 1301.5], [1873.5, 1302.5], [1876.5, 1305.5], [1878.5, 1305.5], [1880.5, 1307.5], [1880.5, 1309.5], [1881.5, 1310.5], [1882.5, 1309.5], [1883.5, 1309.5], [1883.5, 1312.5], [1877.5, 1318.5], [1876.5, 1317.5], [1875.5, 1317.5], [1875.5, 1316.5], [1874.5, 1315.5], [1872.5, 1312.5], [1871.5, 1312.5], [1870.5, 1311.5], [1869.5, 1310.5], [1867.5, 1309.5], [1866.5, 1309.5], [1865.5, 1308.5], [1859.5, 1308.5], [1858.5, 1307.5], [1855.5, 1307.5], [1855.5, 1306.5], [1858.5, 1303.5], [1858.5, 1300.5], [1859.5, 1299.5], [1858.5, 1298.5], [1857.5, 1298.5], [1856.5, 1299.5], [1855.5, 1299.5], [1854.5, 1300.5], [1854.5, 1301.5], [1853.5, 1302.5], [1850.5, 1299.5], [1848.5, 1299.5], [1846.5, 1301.5], [1845.5, 1302.5], [1845.5, 1305.5]]}, -{"id": "twm9sj", "submitted_by": "sit_ascha", "name": "Tufts University", "description": "The logo of Tufts University. Our mascot, Jumbo the Elephant, is graciously hosted by r/196 in the space directly above.", "website": "", "subreddit": "/r/Tufts", "center": [179.5, 703.5], "path": [[174.5, 707.5], [183.5, 707.5], [183.5, 698.5], [174.5, 698.5], [174.5, 707.5]]}, -{"id": "twm9qx", "submitted_by": "K4M1k4ZE_", "name": "Oant Moarn", "description": "A tribute to Piet Paulusma, a popular weatherman in the Netherlands who has passed away in 2022 due to cancer.", "website": "", "subreddit": "", "center": [1204.5, 17.5], "path": [[1179.5, 14.5], [1179.5, 20.5], [1228.5, 20.5], [1228.5, 14.5], [1179.5, 14.5]]}, -{"id": "twm9pl", "submitted_by": "FreakoSchizo", "name": "Foxhole", "description": "Foxhole is a massively multiplayer war game where hundreds and thousands of players battle for control of the map. Each tile represents a subdivision of the map, and the colors represent which team controls that area on the tile.", "website": "https://www.foxholegame.com/", "subreddit": "/r/foxholegame", "center": [728.5, 571.5], "path": [[702.5, 607.5], [702.5, 607.5], [701.5, 607.5], [701.5, 556.5], [705.5, 556.5], [705.5, 550.5], [701.5, 550.5], [701.5, 534.5], [753.5, 534.5], [753.5, 547.5], [755.5, 547.5], [755.5, 602.5], [754.5, 602.5], [754.5, 603.5], [753.5, 603.5], [753.5, 607.5], [754.5, 607.5], [702.5, 607.5]]}, -{"id": "twm9nb", "submitted_by": "IndecisionGames", "name": "Bi_irl icon", "description": "Bi_irl discord icon and our lord and friend Eggy", "website": "https://discord.com/invite/nBnt3UDsZA", "subreddit": "/r/bi_irl", "center": [395.5, 1931.5], "path": [[378.5, 1918.5], [412.5, 1918.5], [412.5, 1943.5], [378.5, 1943.5], [378.5, 1918.5]]}, -{"id": "twm90e", "submitted_by": "FancySkunk", "name": "Construction skill icon", "description": "Construction is one of the 23 skills in Old School RuneScape, primarily focused on the creation of furnishings for player-owned houses. The icon here includes the green pixel on the saw, which was a long standing community meme.", "website": "https://oldschool.runescape.wiki/w/Construction", "subreddit": "/r/2007scape", "center": [130.5, 47.5], "path": [[118.5, 49.5], [119.5, 44.5], [125.5, 44.5], [135.5, 34.5], [141.5, 37.5], [139.5, 45.5], [133.5, 49.5], [137.5, 53.5], [135.5, 58.5], [127.5, 58.5], [124.5, 54.5], [122.5, 55.5], [119.5, 51.5], [118.5, 49.5]]}, -{"id": "twm8x2", "submitted_by": "MemoryAggravating694", "name": "Queens of the Stone Age", "description": "A tribute to the rock band Queens of the Stone Age featuring two album logos, Left: ….Like Clockwork (2013); Right: Songs for the Deaf (2002)n", "website": "", "subreddit": "/r/qotsa", "center": [1144.5, 1668.5], "path": [[1132.5, 1659.5], [1132.5, 1676.5], [1136.5, 1676.5], [1135.5, 1678.5], [1151.5, 1678.5], [1157.5, 1672.5], [1157.5, 1658.5]]}, -{"id": "twm8lz", "submitted_by": "YaBoiLiam2005", "name": "Phish, Jojo, & Grateful Dead Collaboration", "description": "A collaboration between the Jojo, Phish, and Grateful Dead communities. The Jojo community also made a collaboration with the Jerma985 Community to put Jotaro's hat on Jerma.", "website": "", "subreddit": "/r/ShitPostCrusaders, /r/phish, /r/gratefuldead, /r/StardustCrusaders, /r/wholesomejojo, /r/jerma985", "center": [75.5, 910.5], "path": [[0.5, 874.5], [154.5, 874.5], [154.5, 882.5], [161.5, 882.5], [161.5, 898.5], [136.5, 898.5], [136.5, 957.5], [92.5, 957.5], [92.5, 942.5], [0.5, 942.5]]}, -{"id": "twm8f6", "submitted_by": "MattePurplehatt", "name": "SuperMega", "description": "Comedy YouTubers Matt Watson and Ryan Magee", "website": "https://youtube.com/c/SuperMegaOfficial", "subreddit": "/r/SuperMegaShow", "center": [1899.5, 419.5], "path": [[1947.5, 439.5], [1947.5, 423.5], [1949.5, 417.5], [1949.5, 401.5], [1948.5, 397.5], [1924.5, 396.5], [1918.5, 396.5], [1918.5, 395.5], [1862.5, 395.5], [1854.5, 402.5], [1854.5, 443.5], [1855.5, 444.5], [1922.5, 443.5], [1923.5, 440.5], [1922.5, 440.5], [1922.5, 440.5], [1921.5, 440.5], [1921.5, 440.5], [1922.5, 434.5], [1923.5, 433.5], [1928.5, 439.5], [1934.5, 435.5], [1940.5, 435.5]]}, -{"id": "twm8di", "submitted_by": "Relssifille", "name": "Mini (G)I-DLE logo", "description": "A small logo of the kpop girl group (G)I-DLE featuring their official colors", "website": "", "subreddit": "/r/gidle", "center": [846.5, 668.5], "path": [[854.5, 672.5], [838.5, 672.5], [838.5, 663.5], [854.5, 663.5], [854.5, 671.5]]}, -{"id": "twm8d6", "submitted_by": "DedePainted", "name": "Tiny Chicken", "description": "A teeny tiny chicken who's beak constantly grew and shrunk. A lone survivor to many chickens who resided on the German and Quebec flags.", "website": "", "subreddit": "", "center": [1094.5, 966.5], "path": [[1094.5, 963.5], [1094.5, 963.5], [1093.5, 964.5], [1091.5, 965.5], [1091.5, 966.5], [1092.5, 967.5], [1093.5, 968.5], [1094.5, 969.5], [1095.5, 969.5], [1095.5, 969.5], [1096.5, 967.5], [1096.5, 967.5], [1097.5, 966.5], [1097.5, 965.5], [1099.5, 965.5], [1097.5, 964.5], [1097.5, 963.5], [1096.5, 963.5], [1094.5, 963.5]]}, -{"id": "twm8am", "submitted_by": "--MagiK--", "name": "Rosie", "description": "Popular Cat on instagram u/rockyandrosie_ . Rosie is a figure of empowerment and hope for those who follow her, and I hope anyone who stumbles upon her on r/place has a blessed evening :3", "website": "https://www.instagram.com/rockyandrosie_/", "subreddit": "/r/rockyandrosie", "center": [11.5, 1088.5], "path": [[0.5, 1079.5], [13.5, 1079.5], [14.5, 1081.5], [18.5, 1082.5], [18.5, 1084.5], [18.5, 1085.5], [23.5, 1084.5], [23.5, 1095.5], [0.5, 1095.5]]}, -{"id": "twm89u", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Flevoland", "description": "", "website": "", "subreddit": "", "center": [1354.5, 7.5], "path": [[1347.5, 2.5], [1347.5, 12.5], [1361.5, 12.5], [1361.5, 2.5], [1347.5, 2.5]]}, -{"id": "twm82r", "submitted_by": "fleeval", "name": "Minnesota Vikings", "description": "American football team based in Minneapolis, Minnesota. Featuring the team's Norseman logo, SKOL! cheer, and star wide receiver Justin Jefferson.", "website": "", "subreddit": "/r/minnesotavikings", "center": [1312.5, 640.5], "path": [[1290.5, 615.5], [1333.5, 615.5], [1333.5, 664.5], [1290.5, 664.5], [1290.5, 616.5]]}, -{"id": "twm7uz", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Zuid-Holland", "description": "", "website": "", "subreddit": "", "center": [1335.5, 7.5], "path": [[1328.5, 2.5], [1328.5, 12.5], [1342.5, 12.5], [1342.5, 2.5], [1328.5, 2.5]]}, -{"id": "twm7en", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Zeeland", "description": "", "website": "", "subreddit": "", "center": [1316.5, 7.5], "path": [[1309.5, 2.5], [1309.5, 12.5], [1323.5, 12.5], [1323.5, 2.5], [1309.5, 2.5]]}, -{"id": "twm6zf", "submitted_by": "Ember457", "name": "Squishums", "description": "A rare in-game item from the Dragalia Lost mobile game. A squishy blob. ...Or something more? No one knows for sure, but its squishiness is undeniable.", "website": "https://dragalialost.wiki/w/Squishums", "subreddit": "/r/DragaliaLost", "center": [1470.5, 1716.5], "path": [[1460.5, 1706.5], [1479.5, 1706.5], [1479.5, 1725.5], [1460.5, 1725.5]]}, -{"id": "twm6wc", "submitted_by": "CydersZenith", "name": "RWBY Logo", "description": "The logo for anime-inspired show RWBY (ruby) created by Monty Oum (1981-2015). The heart connects to another popular show on Rooster Teeth.", "website": "https://roosterteeth.com", "subreddit": "/r/RWBY", "center": [473.5, 721.5], "path": [[449.5, 713.5], [497.5, 713.5], [497.5, 729.5], [449.5, 729.5]]}, -{"id": "twm6ty", "submitted_by": "Adhara16", "name": "Spreen's bear", "description": "Minecraft skin that belongs to Spreen, an Argentinian content creator.", "website": "https://www.twitch.tv/elspreen", "subreddit": "", "center": [1435.5, 637.5], "path": [[1410.5, 613.5], [1410.5, 660.5], [1460.5, 660.5], [1460.5, 613.5], [1410.5, 613.5]]}, -{"id": "twm6qo", "submitted_by": "Zidakuh", "name": "WYSI (When you see it)", "description": "A photo of the hand of osu! top player, Aireu, after setting a play on 'Guess Who Is Back', awarding him 727pp. A popular joke used in the osu! community, used every time the number 727 is spotted.", "website": "https://www.urbandictionary.com/define.php?term=727", "subreddit": "/r/osuplace", "center": [626.5, 1489.5], "path": [[592.5, 1522.5], [660.5, 1522.5], [660.5, 1453.5], [642.5, 1453.5], [642.5, 1456.5], [641.5, 1456.5], [641.5, 1457.5], [592.5, 1457.5], [592.5, 1522.5]]}, -{"id": "twm6kp", "submitted_by": "Ericbazinga", "name": "r/Femboy", "description": "Femboys are males who choose to adopt a more feminine appearance, wearing feminine clothes and makeup. The character depicted is Astolfo from the anime series Fate, a very popular femboy character.", "website": "https://aesthetics.fandom.com/wiki/Femboy", "subreddit": "/r/Femboy", "center": [264.5, 952.5], "path": [[245.5, 938.5], [281.5, 938.5], [281.5, 956.5], [285.5, 956.5], [285.5, 966.5], [245.5, 966.5]]}, -{"id": "twm6j2", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Utrecht", "description": "", "website": "", "subreddit": "", "center": [1297.5, 7.5], "path": [[1290.5, 2.5], [1290.5, 12.5], [1304.5, 12.5], [1304.5, 2.5], [1290.5, 2.5]]}, -{"id": "twm682", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Noord-Holland", "description": "", "website": "", "subreddit": "", "center": [1279.5, 7.5], "path": [[1272.5, 2.5], [1272.5, 12.5], [1285.5, 12.5], [1285.5, 2.5], [1272.5, 2.5]]}, -{"id": "twm5um", "submitted_by": "smokeyinferno", "name": "Spirit Phone Album Cover", "description": "The album cover for Neil Cicierega's 2016 album, Spirit Phone, which was released under the musical project known as \"Lemon Demon\". This album cover was drawn by Neil's wife, Ming Doyle, and features art of Neil holding Maui, a cat owned by the two until he passed away in 2020. The album itself is very eccentric; it is primarily composed of synth-pop songs about various things related to the occult, ranging from Gef the Talking Mongoose to a girl from another dimension who the narrator is hopelessly in love with despite her race's Earth-shattering properties.", "website": "https://lemondemon.bandcamp.com/album/spirit-phone", "subreddit": "/r/lemondemon", "center": [316.5, 1947.5], "path": [[292.5, 1926.5], [292.5, 1926.5], [292.5, 1925.5], [292.5, 1969.5], [340.5, 1969.5], [340.5, 1925.5]]}, -{"id": "twm5se", "submitted_by": "Flamberge3000", "name": "Kobo Kanaeru", "description": "Kobo Kanaeru is talent of Hololive, a VTuber agency. She debuted with two other VTubers as the third generation of Hololive's Indonesian branch. This art was made in collaboration with r/place_the_wave, as Kanaeru is a rain shaman.", "website": "https://hololive.hololivepro.com/en/talents/kobo-kanaeru/", "subreddit": "/r/Hololive, /r/place_the_wave", "center": [1916.5, 714.5], "path": [[1891.5, 696.5], [1891.5, 732.5], [1940.5, 732.5], [1940.5, 696.5]]}, -{"id": "twm5b4", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Overijssel", "description": "", "website": "", "subreddit": "", "center": [1260.5, 7.5], "path": [[1253.5, 2.5], [1253.5, 12.5], [1267.5, 12.5], [1267.5, 2.5], [1253.5, 2.5]]}, -{"id": "twm4jy", "submitted_by": "Charimia", "name": "r/StardewValley Mural", "description": "It all started with a Chicken, but this tribute to the Stardew Valley community and subreddit grew into the piece you see before you. It underwent several renditions -- First just the Chicken, then the text and its mountainous background was added, then a green Junimo, a Blue chicken, and a purple Junimo. By day 2, the purple Junimo had lost to a more iconic Stardrop. The piece remained relatively unchanged for the remainder of r/place, with the exception of coloring improvements and several updates to the text backdrop. I'm so proud of our community for keeping this piece beautiful till the very end.", "website": "", "subreddit": "/r/StardewValley", "center": [102.5, 366.5], "path": [[71.5, 345.5], [132.5, 345.5], [132.5, 386.5], [71.5, 386.5]]}, -{"id": "twm4ix", "submitted_by": "Various_Profit1097", "name": "Reimu Hakurei & Hatsune Miku heart", "description": "A heart between a small Reimu and a small Miku symbolizing the friendship between the two subreddits throughout r/place 2022.", "website": "", "subreddit": "/r/touhou, /r/hatsune", "center": [807.5, 701.5], "path": [[807.5, 704.5], [804.5, 701.5], [806.5, 699.5], [807.5, 700.5], [808.5, 699.5], [810.5, 701.5]]} , -{"id": "twm4i3", "submitted_by": "Wonderful-Surprise-7", "name": "Arsenal F.C.", "description": "Arsenal are a soccer/football club founded in 1886. They are currently based in North London. They are known as one of the most successful clubs in English football history, winning 13 Division One Titles and 14 FA Cups respectively, as well as many more.", "website": "", "subreddit": "/r/gunners", "center": [727.5, 503.5], "path": [[701.5, 482.5], [752.5, 482.5], [753.5, 523.5], [701.5, 523.5]]}, -{"id": "twm4fh", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Noord-Brabant", "description": "", "website": "", "subreddit": "", "center": [1241.5, 7.5], "path": [[1234.5, 2.5], [1234.5, 12.5], [1248.5, 12.5], [1248.5, 2.5]]}, -{"id": "twm43c", "submitted_by": "MemoryAggravating694", "name": "Rick Roll", "description": "A somewhat corrupted depiction of the internets most storied and infamous troll post, Rick Astleys never gonna give you up.", "website": "", "subreddit": "", "center": [1741.5, 1227.5], "path": [[1725.5, 1254.5], [1758.5, 1254.5], [1757.5, 1200.5], [1724.5, 1200.5]]}, -{"id": "twm41q", "submitted_by": "morningstarunicorn", "name": "Baba", "description": "Baba, the player character in the game Baba Is You", "website": "https://hempuli.com/baba/", "subreddit": "/r/BabaIsYou", "center": [1366.5, 113.5], "path": [[1376.5, 114.5], [1378.5, 116.5], [1378.5, 118.5], [1376.5, 118.5], [1375.5, 117.5], [1373.5, 117.5], [1373.5, 119.5], [1370.5, 119.5], [1369.5, 118.5], [1368.5, 118.5], [1367.5, 117.5], [1356.5, 117.5], [1355.5, 118.5], [1353.5, 118.5], [1352.5, 117.5], [1353.5, 116.5], [1353.5, 115.5], [1354.5, 115.5], [1354.5, 113.5], [1355.5, 112.5], [1355.5, 111.5], [1357.5, 109.5], [1358.5, 109.5], [1359.5, 108.5], [1360.5, 108.5], [1361.5, 107.5], [1365.5, 107.5], [1365.5, 105.5], [1367.5, 105.5], [1369.5, 107.5], [1370.5, 107.5], [1370.5, 105.5], [1372.5, 105.5], [1372.5, 106.5], [1373.5, 107.5], [1374.5, 108.5], [1374.5, 109.5], [1375.5, 110.5], [1375.5, 111.5], [1376.5, 112.5], [1376.5, 114.5]]}, -{"id": "twm3s9", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Limburg", "description": "", "website": "", "subreddit": "", "center": [1222.5, 7.5], "path": [[1215.5, 2.5], [1215.5, 12.5], [1229.5, 12.5], [1229.5, 2.5], [1215.5, 2.5]]}, -{"id": "twm3k3", "submitted_by": "SlipsSC_", "name": "SOPHIE", "description": "The logo of the late Scottish electronic/hyperpop producer SOPHIE (1986-2021).", "website": "", "subreddit": "/r/SophieMsmsmsm", "center": [1821.5, 73.5], "path": [[1801.5, 68.5], [1800.5, 68.5], [1800.5, 79.5], [1842.5, 78.5], [1842.5, 67.5], [1810.5, 68.5]]}, -{"id": "twm311", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Friesland", "description": "", "website": "", "subreddit": "", "center": [1203.5, 7.5], "path": [[1196.5, 2.5], [1196.5, 12.5], [1210.5, 12.5], [1210.5, 2.5], [1196.5, 2.5]]}, -{"id": "twm2xu", "submitted_by": "PsychicRadroach", "name": "Electric Light Orchestra (ELO)", "description": "The logo for Electric Light Orchestra (a.k.a. ELO), a 70s and 80s classic rock group. When threatened by the black void, they allied themselves with the My Little Pony community to rebuild.", "website": "https://en.wikipedia.org/wiki/Electric_Light_Orchestra", "subreddit": "/r/elo", "center": [977.5, 1845.5], "path": [[970.5, 1830.5], [983.5, 1830.5], [983.5, 1830.5], [991.5, 1838.5], [991.5, 1851.5], [985.5, 1860.5], [971.5, 1860.5], [962.5, 1851.5], [962.5, 1839.5]]}, -{"id": "twm2q2", "submitted_by": "HijoDeFootspa", "name": "Leni-Kiko banner", "description": "A banner endorsing incumbent vice president and presidential candidate Leni Robredo (#10 on the ballot) and vice presidential candidate Kiko Pangilinan (#7 on the ballot) for the 2022 Philippine elections. The rose is Robredo's primary campaign symbol.", "website": "https://en.wikipedia.org/wiki/Leni_Robredo_2022_presidential_campaign", "subreddit": "/r/Leni2022, /r/Philippines", "center": [334.5, 693.5], "path": [[301.5, 686.5], [301.5, 702.5], [363.5, 702.5], [363.5, 686.5], [357.5, 686.5], [357.5, 684.5], [358.5, 684.5], [358.5, 680.5], [357.5, 680.5], [357.5, 678.5], [356.5, 678.5], [356.5, 677.5], [355.5, 677.5], [355.5, 676.5], [348.5, 676.5], [348.5, 677.5], [347.5, 677.5], [347.5, 678.5], [346.5, 678.5], [346.5, 680.5], [345.5, 680.5], [345.5, 685.5], [343.5, 685.5], [343.5, 683.5], [342.5, 683.5], [342.5, 682.5], [341.5, 682.5], [341.5, 683.5], [340.5, 683.5], [340.5, 685.5], [339.5, 685.5], [339.5, 686.5]]}, -{"id": "twm2ln", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Gelderland", "description": "", "website": "", "subreddit": "", "center": [1184.5, 7.5], "path": [[1177.5, 2.5], [1177.5, 12.5], [1191.5, 12.5], [1191.5, 2.5], [1177.5, 2.5]]}, -{"id": "twm2l0", "submitted_by": "AdrianOne_1", "name": "Senzawa", "description": "Pixel art of content creator/Vtuber, Senzawa, who went inactive mid 2020.", "website": "https://www.youtube.com/c/senzawa", "subreddit": "/r/Senzawa", "center": [1856.5, 811.5], "path": [[1845.5, 792.5], [1845.5, 830.5], [1867.5, 830.5], [1867.5, 792.5], [1846.5, 792.5]]}, -{"id": "twm253", "submitted_by": "cabbage-soup", "name": "Mug Moment", "description": "A popular movement started by Streamer/YouTuber Vargskelethor Joel (Vinesauce).", "website": "", "subreddit": "/r/vinesauce", "center": [669.5, 1707.5], "path": [[645.5, 1693.5], [651.5, 1687.5], [687.5, 1687.5], [693.5, 1692.5], [692.5, 1715.5], [690.5, 1719.5], [689.5, 1719.5], [689.5, 1731.5], [685.5, 1730.5], [681.5, 1729.5], [670.5, 1727.5], [664.5, 1728.5], [657.5, 1729.5], [653.5, 1729.5], [649.5, 1725.5], [648.5, 1720.5], [650.5, 1719.5], [645.5, 1716.5], [644.5, 1709.5], [645.5, 1692.5]]}, -{"id": "twm22t", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Drenthe", "description": "", "website": "", "subreddit": "", "center": [1165.5, 7.5], "path": [[1158.5, 2.5], [1158.5, 12.5], [1172.5, 12.5], [1172.5, 2.5], [1158.5, 2.5]]}, -{"id": "twm20m", "submitted_by": "f5xs_0000b", "name": "Rimuru Tempest, Slime Form", "description": "The slime form of the Slime Demon Rimuru Tempest. Don't let the cute looks fool you; he's the strongest being in his world. He wears the mask of the late Otherworlder Shizue Izawa.nnAppears in the anime That Time I Got Reincarnated as a Slime.nn", "website": "https://myanimelist.net/anime/37430/Tensei_shitara_Slime_Datta_Ken", "subreddit": "/r/TenseiSlime", "center": [1822.5, 120.5], "path": [[1821.5, 110.5], [1828.5, 110.5], [1829.5, 111.5], [1830.5, 111.5], [1834.5, 115.5], [1834.5, 116.5], [1835.5, 117.5], [1835.5, 121.5], [1834.5, 122.5], [1834.5, 126.5], [1831.5, 129.5], [1814.5, 129.5], [1810.5, 125.5], [1810.5, 124.5], [1809.5, 123.5], [1809.5, 120.5], [1810.5, 119.5], [1810.5, 118.5], [1811.5, 117.5], [1811.5, 116.5], [1814.5, 113.5], [1815.5, 113.5], [1816.5, 112.5], [1817.5, 112.5], [1818.5, 111.5], [1820.5, 111.5]]}, -{"id": "twm1va", "submitted_by": "MemoryAggravating694", "name": "Aphex Twin", "description": "Richard Davis James, also knows as Aphex Twin, is a popular indie electronic music artist known for producing music of the intelligent dance music (IDM) genre. This image is the logo for the project, and this specific one comes from 1992s, selected ambient works.", "website": "https://en.wikipedia.org/wiki/Aphex_Twin", "subreddit": "/r/aphextwin", "center": [1315.5, 519.5], "path": [[1309.5, 504.5], [1323.5, 505.5], [1329.5, 510.5], [1330.5, 517.5], [1331.5, 524.5], [1325.5, 531.5], [1322.5, 534.5], [1307.5, 533.5], [1305.5, 529.5], [1301.5, 527.5], [1299.5, 517.5], [1302.5, 511.5], [1306.5, 506.5]]}, -{"id": "twm1qt", "submitted_by": "AungAlvin", "name": "Yuuko, Mio and Mai", "description": "Yuuko Aioi, Mio Naganohara and Mai Minakami are the main charaters of the Nichijou anime and manga.", "website": "", "subreddit": "/r/Nichijou", "center": [1413.5, 1252.5], "path": [[1387.5, 1243.5], [1387.5, 1261.5], [1439.5, 1261.5], [1439.5, 1243.5], [1387.5, 1243.5]]}, -{"id": "twm1kb", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Groningen", "description": "", "website": "", "subreddit": "", "center": [1146.5, 7.5], "path": [[1139.5, 2.5], [1139.5, 12.5], [1153.5, 12.5], [1153.5, 2.5], [1139.5, 2.5]]}, -{"id": "twm1h0", "submitted_by": "CharlieNmyT", "name": "CHAD CAST", "description": "Podcast featuring Hololive English talents Mori Calliope (Myth), IRyS (Project Hope) and Hakos Baelz (Council).", "website": "https://www.youtube.com/watch?v=MXd7uOemEzc", "subreddit": "/r/Hololive", "center": [1347.5, 919.5], "path": [[1344.5, 905.5], [1341.5, 908.5], [1341.5, 912.5], [1340.5, 917.5], [1338.5, 925.5], [1340.5, 928.5], [1345.5, 933.5], [1357.5, 927.5], [1354.5, 920.5], [1354.5, 915.5], [1355.5, 913.5], [1350.5, 905.5]]}, -{"id": "twm14d", "submitted_by": "JustKoiru", "name": "Jojolands", "description": "It's Bizarre.", "website": "", "subreddit": "/r/shitpostcrusaders", "center": [93.5, 911.5], "path": [[0.5, 883.5], [28.5, 883.5], [27.5, 876.5], [30.5, 876.5], [41.5, 888.5], [56.5, 876.5], [57.5, 881.5], [57.5, 883.5], [162.5, 883.5], [162.5, 898.5], [138.5, 898.5], [136.5, 956.5], [91.5, 956.5], [88.5, 942.5], [62.5, 941.5], [59.5, 904.5], [55.5, 904.5], [42.5, 892.5], [28.5, 904.5], [26.5, 899.5], [28.5, 898.5], [0.5, 898.5]]}, -{"id": "twm10g", "submitted_by": "kane91123", "name": "Natus Vincere Logo", "description": "Logo for popular Ukrainian based Esport organization known as Natus Vincere. Better known as Na'Vi", "website": "https://navi.gg/en/", "subreddit": "/r/natusvincere", "center": [47.5, 178.5], "path": [[34.5, 172.5], [34.5, 174.5], [33.5, 174.5], [33.5, 178.5], [32.5, 177.5], [32.5, 181.5], [31.5, 180.5], [31.5, 183.5], [30.5, 183.5], [30.5, 185.5], [60.5, 185.5], [61.5, 182.5], [61.5, 181.5], [61.5, 180.5], [62.5, 180.5], [62.5, 179.5], [63.5, 178.5], [63.5, 177.5], [64.5, 177.5], [64.5, 175.5], [65.5, 175.5], [65.5, 172.5], [65.5, 172.5], [49.5, 172.5], [35.5, 172.5], [35.5, 172.5]]}, -{"id": "twm0zt", "submitted_by": "Yay295", "name": "Madoka Chibis", "description": "Four characters from the Puella Magi Madoka Magica anime series.nnClockwise from top-left: Homura Akemi, Madoka Kaname, Iroha Tamaki, and Yachiyo Nanami.", "website": "", "subreddit": "/r/MadokaMagica", "center": [652.5, 411.5], "path": [[635.5, 393.5], [669.5, 393.5], [669.5, 429.5], [635.5, 429.5], [635.5, 415.5], [669.5, 415.5], [669.5, 410.5], [635.5, 410.5]]}, -{"id": "twm0np", "submitted_by": "j123s", "name": "im_a_squid_kid", "description": "im_a_squid_kid is a Minecraft YouTuber who specializes in Hypixel Skyblock. He is most well-known for being Technoblade's rival in the Potato Wars, which squid_kid eventually lost, hence the 'rank #2'.", "website": "https://www.youtube.com/c/imasquidkid", "subreddit": "", "center": [1825.5, 1265.5], "path": [[1814.5, 1258.5], [1835.5, 1258.5], [1835.5, 1272.5], [1814.5, 1272.5]]}, -{"id": "twlzw3", "submitted_by": "K4M1k4ZE_", "name": "Tulips", "description": "The Dutch are famous for their tulips. The flower itself actually originates from Central Asia.", "website": "", "subreddit": "", "center": [537.5, 4.5], "path": [[481.5, 13.5], [480.5, 13.5], [480.5, 9.5], [481.5, 9.5], [481.5, 0.5], [543.5, -10.5], [592.5, 0.5], [592.5, 1.5], [593.5, 1.5], [593.5, 2.5], [594.5, 2.5], [594.5, 11.5], [593.5, 11.5], [593.5, 12.5], [592.5, 13.5], [554.5, 13.5], [480.5, 14.5]]}, -{"id": "twlzv2", "submitted_by": "Ericbazinga", "name": "Sakamoto", "description": "A popular character from the anime Nichijou. He lives with the child genius Professor Hakase and her robot caretaker Nano. The scarf around his neck allows him to talk.", "website": "https://en.wikipedia.org/wiki/Nichijou", "subreddit": "/r/nichijou", "center": [1454.5, 523.5], "path": [[1461.5, 535.5], [1448.5, 535.5], [1448.5, 532.5], [1449.5, 532.5], [1449.5, 528.5], [1450.5, 528.5], [1450.5, 526.5], [1445.5, 520.5], [1448.5, 515.5], [1448.5, 511.5], [1451.5, 513.5], [1453.5, 510.5], [1457.5, 509.5], [1457.5, 512.5], [1458.5, 512.5], [1458.5, 519.5], [1459.5, 519.5], [1462.5, 518.5], [1462.5, 521.5], [1458.5, 525.5], [1459.5, 528.5], [1461.5, 526.5], [1462.5, 527.5], [1462.5, 531.5], [1461.5, 535.5]]}, -{"id": "twlzrt", "submitted_by": "SrPeixinho", "name": "Kindelia", "description": "A functional crypto-computer based on the HVM (High-order Virtual Machine). Kindelia is more efficient than alternatives, and, thanks to formal proofs, inherently more secure. Programs hosted on Kindelia are hack-proof and eternal.", "website": "https://kindelia.org/", "subreddit": "/r/kindelia", "center": [996.5, 559.5], "path": [[978.5, 566.5], [978.5, 552.5], [1015.5, 552.5], [1015.5, 563.5], [1012.5, 563.5], [1012.5, 564.5], [1011.5, 564.5], [1011.5, 567.5], [978.5, 567.5]]}, -{"id": "twlylc", "submitted_by": "MemoryAggravating694", "name": "Mitski", "description": "Reference to the musical artist mitski", "website": "", "subreddit": "/r/mitski", "center": [1071.5, 1805.5], "path": [[1058.5, 1810.5], [1058.5, 1801.5], [1083.5, 1800.5], [1084.5, 1810.5]]}, -{"id": "twlyi6", "submitted_by": "Castmaker", "name": "B.B chibi portrait", "description": "B.B is a character found in the Fate/Grand Order mobile game and the Fate/Extra game series", "website": "", "subreddit": "/r/grandorder", "center": [178.5, 787.5], "path": [[169.5, 765.5], [154.5, 777.5], [156.5, 803.5], [208.5, 805.5], [189.5, 768.5], [186.5, 766.5]]}, -{"id": "twly9x", "submitted_by": "Spoodnt", "name": "The Battle Cats X World Box", "description": "The collab of Mobile game 'The Battle Cats' with Survival game 'World Box'", "website": "", "subreddit": "/r/battlecats", "center": [567.5, 1669.5], "path": [[558.5, 1647.5], [578.5, 1646.5], [578.5, 1655.5], [580.5, 1667.5], [589.5, 1673.5], [589.5, 1682.5], [581.5, 1682.5], [577.5, 1687.5], [559.5, 1689.5], [553.5, 1682.5], [548.5, 1681.5], [545.5, 1669.5], [552.5, 1669.5], [555.5, 1664.5], [557.5, 1654.5], [558.5, 1647.5], [559.5, 1647.5], [560.5, 1647.5], [558.5, 1647.5], [558.5, 1647.5]]}, -{"id": "twly2s", "submitted_by": "yaboimankeez", "name": "Space and SpaceX art", "description": "A collection of Space and SpaceX-related art, including, from left to right and up to down, Starship in flight, Hubble Space Telescope, Mars, a SpaceX flight suit and Elon Musk's Tesla (or Starman).", "website": "", "subreddit": "/r/SpaceXMasterrace", "center": [912.5, 1569.5], "path": [[897.5, 1638.5], [887.5, 1631.5], [888.5, 1614.5], [888.5, 1605.5], [882.5, 1605.5], [881.5, 1594.5], [886.5, 1587.5], [888.5, 1580.5], [887.5, 1546.5], [881.5, 1545.5], [882.5, 1541.5], [894.5, 1521.5], [903.5, 1533.5], [912.5, 1529.5], [914.5, 1523.5], [918.5, 1521.5], [920.5, 1523.5], [923.5, 1527.5], [924.5, 1530.5], [927.5, 1531.5], [930.5, 1531.5], [931.5, 1525.5], [933.5, 1524.5], [935.5, 1525.5], [936.5, 1527.5], [936.5, 1530.5], [939.5, 1528.5], [952.5, 1534.5], [955.5, 1539.5], [955.5, 1541.5], [956.5, 1542.5], [955.5, 1549.5], [951.5, 1553.5], [947.5, 1554.5], [945.5, 1554.5], [943.5, 1557.5], [935.5, 1571.5], [932.5, 1574.5], [931.5, 1577.5], [931.5, 1582.5], [930.5, 1585.5], [930.5, 1587.5], [930.5, 1588.5], [931.5, 1591.5], [932.5, 1592.5], [934.5, 1594.5], [934.5, 1595.5], [932.5, 1598.5], [921.5, 1604.5], [914.5, 1609.5], [909.5, 1610.5], [904.5, 1609.5], [902.5, 1606.5], [904.5, 1610.5], [902.5, 1621.5], [902.5, 1629.5], [899.5, 1636.5]]}, -{"id": "twlxhk", "submitted_by": "CrackedatForkKnife", "name": "Roblox - Deepwoken Community", "description": ">> Deepwoken is a difficult game with permanent character loss. Losing characters is a part of the game that should be expected. <Gamer", "description": "A little controller, the logo of a couple of friends' Discord server. Gracefully saved by the wholesome Touhou community multiple times.", "website": "", "subreddit": "", "center": [1753.5, 786.5], "path": [[1749.5, 789.5], [1747.5, 787.5], [1747.5, 785.5], [1749.5, 783.5], [1752.5, 783.5], [1752.5, 781.5], [1753.5, 781.5], [1753.5, 783.5], [1756.5, 783.5], [1758.5, 785.5], [1758.5, 787.5], [1756.5, 789.5], [1754.5, 789.5], [1753.5, 788.5], [1752.5, 788.5], [1751.5, 789.5], [1749.5, 789.5]]}, -{"id": "twrlp4", "submitted_by": "aeoneko", "name": "Mai Sakurajima", "description": "Mai Sakurajima from Rascal Does Not Dream of Bunny Girl Senpai.", "website": "https://discord.gg/nADCVDmmT5", "subreddit": "/r/maiplace", "center": [529.5, 1800.5], "path": [[514.5, 1792.5], [514.5, 1789.5], [515.5, 1788.5], [515.5, 1786.5], [517.5, 1784.5], [521.5, 1784.5], [522.5, 1785.5], [523.5, 1785.5], [524.5, 1786.5], [524.5, 1789.5], [526.5, 1791.5], [533.5, 1791.5], [534.5, 1790.5], [534.5, 1789.5], [535.5, 1788.5], [536.5, 1787.5], [536.5, 1786.5], [537.5, 1785.5], [540.5, 1785.5], [541.5, 1786.5], [542.5, 1786.5], [543.5, 1787.5], [543.5, 1788.5], [544.5, 1789.5], [544.5, 1794.5], [543.5, 1795.5], [539.5, 1795.5], [538.5, 1794.5], [538.5, 1793.5], [537.5, 1792.5], [536.5, 1793.5], [536.5, 1794.5], [537.5, 1795.5], [537.5, 1796.5], [538.5, 1797.5], [538.5, 1798.5], [539.5, 1799.5], [539.5, 1800.5], [540.5, 1801.5], [540.5, 1802.5], [539.5, 1803.5], [538.5, 1803.5], [538.5, 1805.5], [537.5, 1806.5], [538.5, 1807.5], [538.5, 1810.5], [537.5, 1811.5], [537.5, 1812.5], [535.5, 1814.5], [535.5, 1816.5], [534.5, 1817.5], [533.5, 1817.5], [532.5, 1818.5], [532.5, 1820.5], [531.5, 1821.5], [530.5, 1821.5], [530.5, 1820.5], [529.5, 1819.5], [529.5, 1818.5], [528.5, 1817.5], [526.5, 1819.5], [526.5, 1820.5], [525.5, 1821.5], [524.5, 1821.5], [524.5, 1818.5], [523.5, 1817.5], [522.5, 1816.5], [522.5, 1815.5], [523.5, 1814.5], [523.5, 1813.5], [522.5, 1813.5], [522.5, 1808.5], [523.5, 1807.5], [522.5, 1806.5], [522.5, 1803.5], [521.5, 1802.5], [520.5, 1801.5], [520.5, 1798.5], [519.5, 1798.5], [519.5, 1797.5], [520.5, 1796.5], [520.5, 1795.5], [522.5, 1793.5], [522.5, 1790.5], [521.5, 1789.5], [520.5, 1790.5], [520.5, 1792.5], [519.5, 1793.5], [515.5, 1793.5]]}, -{"id": "twrloh", "submitted_by": "BlazingBowXT", "name": "Oneshots Phosphor hearts", "description": "Hearts representing the Phosphors from the game Oneshot. The hearts represent Red, Blue, Green, and Yellow Phosphor", "website": "http://www.oneshot-game.com/", "subreddit": "/r/oneshot", "center": [1092.5, 1671.5], "path": [[1080.5, 1675.5], [1099.5, 1674.5], [1103.5, 1670.5], [1103.5, 1667.5], [1095.5, 1667.5], [1088.5, 1669.5], [1083.5, 1670.5], [1078.5, 1672.5], [1078.5, 1673.5]]}, -{"id": "twrlng", "submitted_by": "CelerySilent7734", "name": "Fubuking", "description": "Hololive First Generation VTuber Shirakami Fubuki sitting on a burger, eating a burger, with a crown on her head (hence the 'king' in 'Fubuking'). She loves burgers.", "website": "https://en.hololive.tv/portfolio/items/shirakami-fubuki", "subreddit": "/r/Hololive", "center": [1373.5, 1092.5], "path": [[1350.5, 1113.5], [1350.5, 1111.5], [1351.5, 1111.5], [1351.5, 1110.5], [1352.5, 1110.5], [1352.5, 1109.5], [1353.5, 1109.5], [1353.5, 1108.5], [1353.5, 1107.5], [1352.5, 1107.5], [1352.5, 1106.5], [1351.5, 1106.5], [1351.5, 1105.5], [1350.5, 1105.5], [1350.5, 1104.5], [1349.5, 1104.5], [1350.5, 1105.5], [1350.5, 1106.5], [1350.5, 1107.5], [1349.5, 1107.5], [1349.5, 1108.5], [1348.5, 1109.5], [1347.5, 1109.5], [1347.5, 1110.5], [1347.5, 1112.5], [1346.5, 1112.5], [1346.5, 1113.5], [1346.5, 1113.5], [1345.5, 1113.5], [1345.5, 1114.5], [1345.5, 1115.5], [1341.5, 1115.5], [1341.5, 1110.5], [1340.5, 1110.5], [1340.5, 1109.5], [1338.5, 1109.5], [1338.5, 1107.5], [1338.5, 1107.5], [1336.5, 1107.5], [1336.5, 1109.5], [1335.5, 1109.5], [1334.5, 1109.5], [1334.5, 1110.5], [1333.5, 1110.5], [1333.5, 1114.5], [1333.5, 1115.5], [1333.5, 1098.5], [1333.5, 1097.5], [1334.5, 1097.5], [1336.5, 1097.5], [1335.5, 1096.5], [1335.5, 1096.5], [1335.5, 1095.5], [1337.5, 1095.5], [1336.5, 1094.5], [1336.5, 1094.5], [1346.5, 1094.5], [1346.5, 1091.5], [1347.5, 1091.5], [1347.5, 1090.5], [1348.5, 1090.5], [1348.5, 1089.5], [1349.5, 1089.5], [1349.5, 1088.5], [1351.5, 1088.5], [1351.5, 1087.5], [1352.5, 1087.5], [1352.5, 1086.5], [1353.5, 1086.5], [1353.5, 1085.5], [1354.5, 1085.5], [1354.5, 1084.5], [1355.5, 1084.5], [1355.5, 1083.5], [1358.5, 1083.5], [1358.5, 1082.5], [1361.5, 1082.5], [1361.5, 1081.5], [1362.5, 1081.5], [1363.5, 1081.5], [1363.5, 1080.5], [1364.5, 1080.5], [1364.5, 1078.5], [1363.5, 1078.5], [1363.5, 1073.5], [1362.5, 1073.5], [1361.5, 1073.5], [1361.5, 1074.5], [1361.5, 1075.5], [1360.5, 1075.5], [1360.5, 1076.5], [1359.5, 1076.5], [1359.5, 1078.5], [1358.5, 1078.5], [1358.5, 1079.5], [1357.5, 1079.5], [1357.5, 1080.5], [1357.5, 1079.5], [1356.5, 1079.5], [1356.5, 1078.5], [1355.5, 1078.5], [1355.5, 1077.5], [1354.5, 1077.5], [1355.5, 1077.5], [1355.5, 1076.5], [1356.5, 1076.5], [1356.5, 1075.5], [1357.5, 1075.5], [1357.5, 1074.5], [1358.5, 1074.5], [1358.5, 1073.5], [1359.5, 1073.5], [1359.5, 1072.5], [1360.5, 1072.5], [1360.5, 1071.5], [1361.5, 1071.5], [1361.5, 1070.5], [1361.5, 1069.5], [1361.5, 1068.5], [1359.5, 1068.5], [1359.5, 1066.5], [1358.5, 1066.5], [1358.5, 1065.5], [1357.5, 1065.5], [1357.5, 1061.5], [1358.5, 1061.5], [1358.5, 1058.5], [1359.5, 1058.5], [1359.5, 1056.5], [1360.5, 1056.5], [1360.5, 1053.5], [1361.5, 1053.5], [1361.5, 1049.5], [1360.5, 1049.5], [1360.5, 1048.5], [1359.5, 1048.5], [1359.5, 1044.5], [1360.5, 1044.5], [1360.5, 1045.5], [1363.5, 1045.5], [1363.5, 1046.5], [1366.5, 1046.5], [1366.5, 1047.5], [1370.5, 1047.5], [1370.5, 1047.5], [1370.5, 1046.5], [1370.5, 1045.5], [1370.5, 1044.5], [1369.5, 1044.5], [1370.5, 1044.5], [1370.5, 1045.5], [1371.5, 1045.5], [1372.5, 1045.5], [1372.5, 1044.5], [1372.5, 1045.5], [1373.5, 1045.5], [1374.5, 1045.5], [1374.5, 1044.5], [1374.5, 1045.5], [1375.5, 1045.5], [1375.5, 1046.5], [1376.5, 1045.5], [1377.5, 1045.5], [1377.5, 1044.5], [1379.5, 1044.5], [1379.5, 1044.5], [1379.5, 1046.5], [1380.5, 1046.5], [1379.5, 1046.5], [1379.5, 1047.5], [1379.5, 1048.5], [1378.5, 1048.5], [1378.5, 1049.5], [1377.5, 1049.5], [1377.5, 1052.5], [1378.5, 1052.5], [1378.5, 1055.5], [1379.5, 1055.5], [1379.5, 1060.5], [1380.5, 1060.5], [1380.5, 1064.5], [1381.5, 1064.5], [1380.5, 1064.5], [1380.5, 1065.5], [1379.5, 1065.5], [1379.5, 1071.5], [1379.5, 1071.5], [1381.5, 1071.5], [1381.5, 1070.5], [1387.5, 1070.5], [1387.5, 1071.5], [1388.5, 1071.5], [1389.5, 1071.5], [1389.5, 1072.5], [1391.5, 1072.5], [1391.5, 1079.5], [1390.5, 1079.5], [1390.5, 1079.5], [1389.5, 1079.5], [1389.5, 1080.5], [1388.5, 1080.5], [1388.5, 1081.5], [1390.5, 1080.5], [1391.5, 1080.5], [1392.5, 1080.5], [1392.5, 1080.5], [1392.5, 1079.5], [1392.5, 1078.5], [1392.5, 1076.5], [1392.5, 1081.5], [1391.5, 1081.5], [1391.5, 1082.5], [1390.5, 1082.5], [1390.5, 1083.5], [1387.5, 1083.5], [1387.5, 1084.5], [1382.5, 1084.5], [1382.5, 1083.5], [1381.5, 1083.5], [1379.5, 1083.5], [1380.5, 1084.5], [1380.5, 1086.5], [1381.5, 1086.5], [1381.5, 1087.5], [1396.5, 1087.5], [1396.5, 1088.5], [1398.5, 1088.5], [1398.5, 1089.5], [1399.5, 1089.5], [1399.5, 1090.5], [1401.5, 1090.5], [1401.5, 1091.5], [1403.5, 1091.5], [1403.5, 1092.5], [1405.5, 1092.5], [1405.5, 1093.5], [1408.5, 1093.5], [1412.5, 1093.5], [1413.5, 1093.5], [1415.5, 1093.5], [1416.5, 1093.5], [1416.5, 1092.5], [1416.5, 1091.5], [1421.5, 1091.5], [1420.5, 1097.5], [1421.5, 1097.5], [1421.5, 1096.5], [1421.5, 1095.5], [1421.5, 1096.5], [1421.5, 1097.5], [1420.5, 1097.5], [1420.5, 1098.5], [1419.5, 1098.5], [1419.5, 1101.5], [1418.5, 1101.5], [1418.5, 1102.5], [1415.5, 1102.5], [1415.5, 1102.5], [1415.5, 1101.5], [1414.5, 1101.5], [1413.5, 1101.5], [1413.5, 1100.5], [1410.5, 1100.5], [1410.5, 1098.5], [1409.5, 1098.5], [1409.5, 1097.5], [1409.5, 1097.5], [1406.5, 1097.5], [1406.5, 1096.5], [1404.5, 1096.5], [1404.5, 1095.5], [1401.5, 1095.5], [1401.5, 1094.5], [1398.5, 1094.5], [1398.5, 1093.5], [1400.5, 1094.5], [1398.5, 1094.5], [1397.5, 1094.5], [1397.5, 1095.5], [1397.5, 1096.5], [1398.5, 1096.5], [1399.5, 1096.5], [1399.5, 1099.5], [1398.5, 1099.5], [1398.5, 1100.5], [1398.5, 1101.5], [1399.5, 1101.5], [1399.5, 1104.5], [1398.5, 1104.5], [1398.5, 1105.5], [1397.5, 1105.5], [1397.5, 1108.5], [1397.5, 1109.5], [1395.5, 1109.5], [1395.5, 1111.5], [1396.5, 1112.5], [1396.5, 1111.5], [1396.5, 1110.5], [1397.5, 1110.5], [1398.5, 1110.5], [1398.5, 1109.5], [1398.5, 1110.5], [1399.5, 1110.5], [1399.5, 1111.5], [1400.5, 1111.5], [1400.5, 1112.5], [1400.5, 1113.5], [1399.5, 1113.5], [1399.5, 1114.5], [1396.5, 1114.5], [1396.5, 1115.5], [1397.5, 1115.5], [1397.5, 1116.5], [1398.5, 1116.5], [1398.5, 1117.5], [1399.5, 1117.5], [1399.5, 1119.5], [1398.5, 1119.5], [1398.5, 1123.5], [1397.5, 1123.5], [1397.5, 1125.5], [1390.5, 1125.5], [1390.5, 1124.5], [1385.5, 1124.5], [1385.5, 1125.5], [1382.5, 1125.5], [1382.5, 1124.5], [1379.5, 1124.5], [1369.5, 1124.5], [1369.5, 1125.5], [1367.5, 1125.5], [1367.5, 1124.5], [1367.5, 1124.5], [1366.5, 1124.5], [1366.5, 1123.5], [1367.5, 1123.5], [1367.5, 1123.5], [1367.5, 1122.5], [1367.5, 1121.5], [1368.5, 1121.5], [1368.5, 1120.5], [1368.5, 1119.5], [1368.5, 1118.5], [1368.5, 1117.5], [1368.5, 1117.5], [1367.5, 1117.5], [1367.5, 1116.5], [1366.5, 1116.5], [1366.5, 1115.5], [1366.5, 1115.5], [1365.5, 1115.5], [1364.5, 1115.5], [1363.5, 1115.5], [1363.5, 1114.5], [1363.5, 1113.5], [1363.5, 1112.5], [1362.5, 1112.5], [1362.5, 1111.5], [1362.5, 1110.5], [1357.5, 1110.5], [1357.5, 1112.5], [1356.5, 1112.5], [1356.5, 1114.5], [1356.5, 1114.5], [1355.5, 1114.5], [1355.5, 1115.5], [1354.5, 1115.5], [1354.5, 1116.5], [1353.5, 1116.5], [1353.5, 1117.5], [1352.5, 1117.5], [1352.5, 1119.5], [1352.5, 1117.5], [1351.5, 1117.5], [1351.5, 1116.5], [1351.5, 1117.5], [1351.5, 1116.5], [1351.5, 1115.5], [1351.5, 1114.5], [1350.5, 1114.5]]}, -{"id": "twrlhi", "submitted_by": "Party_Ad_619", "name": "Solary", "description": "Famous french esport team & webTV from TOURS, Indre-et-Loire", "website": "https://www.solary.fr/", "subreddit": "", "center": [859.5, 1722.5], "path": [[844.5, 1707.5], [872.5, 1707.5], [873.5, 1736.5], [845.5, 1736.5], [845.5, 1707.5]]}, -{"id": "twrlgz", "submitted_by": "HogoX", "name": "Asuka Langley Soryu", "description": "fictional character from the Neon Genesis Evangelion franchise.", "website": "https://www.evangelion.co.jp", "subreddit": "/r/evangelion, /r/evangelionmemes", "center": [664.5, 1391.5], "path": [[662.5, 1384.5], [662.5, 1385.5], [659.5, 1385.5], [659.5, 1388.5], [658.5, 1388.5], [658.5, 1390.5], [659.5, 1390.5], [659.5, 1392.5], [658.5, 1392.5], [658.5, 1393.5], [657.5, 1393.5], [657.5, 1395.5], [658.5, 1395.5], [658.5, 1396.5], [659.5, 1396.5], [659.5, 1397.5], [661.5, 1397.5], [661.5, 1399.5], [663.5, 1399.5], [663.5, 1397.5], [665.5, 1397.5], [665.5, 1399.5], [667.5, 1399.5], [667.5, 1397.5], [669.5, 1397.5], [669.5, 1396.5], [670.5, 1396.5], [670.5, 1395.5], [671.5, 1395.5], [671.5, 1393.5], [670.5, 1393.5], [670.5, 1392.5], [669.5, 1392.5], [669.5, 1390.5], [670.5, 1390.5], [670.5, 1388.5], [669.5, 1388.5], [669.5, 1385.5], [666.5, 1385.5], [666.5, 1384.5]]}, -{"id": "twrleg", "submitted_by": "Gemyma", "name": "Beneath the Dragoneye Moons - Auri", "description": "A small hummingbird from the webserial Beneath the Dragoneye Moons by Selkie Myth, winner of the Best Serialised Fiction Stabby Award 2021.", "website": "https://www.royalroad.com/fiction/36299/beneath-the-dragoneye-moons", "subreddit": "", "center": [1787.5, 1271.5], "path": [[1783.5, 1271.5], [1786.5, 1269.5], [1787.5, 1270.5], [1790.5, 1268.5], [1788.5, 1271.5], [1790.5, 1271.5], [1790.5, 1273.5], [1783.5, 1271.5]]}, -{"id": "twrl9z", "submitted_by": "SebWayz", "name": "Joueur du Grenier", "description": "French YouTuber known for his humoristic and satirical videos about old retro games.", "website": "https://www.youtube.com/user/joueurdugrenier", "subreddit": "/r/PlaceFrance", "center": [25.5, 1923.5], "path": [[4.5, 1903.5], [23.5, 1892.5], [51.5, 1901.5], [38.5, 1957.5], [15.5, 1953.5], [3.5, 1931.5], [1.5, 1919.5], [3.5, 1905.5]]}, -{"id": "twrl9b", "submitted_by": "Greenhx", "name": "Second Etika Memorial", "description": "A second Memorial dedicated to the iconic YouTube streamer Desmond Daniel Amofah, or more commonly known as Etika. This art features Red Robin one of Etika's favorite Fire Emblem Characters that Akairiot drew for him, his red 3ds, and his logo. Etika's Sponsor discord worked together to gather as many Joyconboyz as possible to work on both Etika memorials.", "website": "https://discord.gg/VHzRpZ3327", "subreddit": "/r/EtikaRedditNetwork", "center": [1566.5, 1261.5], "path": [[1600.5, 1250.5], [1542.5, 1250.5], [1542.5, 1273.5], [1545.5, 1273.5], [1546.5, 1274.5], [1549.5, 1279.5], [1550.5, 1279.5], [1551.5, 1282.5], [1561.5, 1282.5], [1561.5, 1278.5], [1564.5, 1273.5], [1564.5, 1263.5], [1600.5, 1263.5]]}, -{"id": "twrl69", "submitted_by": "eXernox", "name": "Oshino Shinobu with her donut", "description": "Character from light novel/anime series Monogatari", "website": "", "subreddit": "/r/araragi", "center": [363.5, 1269.5], "path": [[367.5, 1255.5], [375.5, 1263.5], [378.5, 1272.5], [377.5, 1275.5], [367.5, 1282.5], [359.5, 1282.5], [352.5, 1280.5], [348.5, 1276.5], [351.5, 1263.5], [360.5, 1255.5], [367.5, 1255.5]]}, -{"id": "twrl52", "submitted_by": "Sorry-Strength-4573", "name": "Šajkače", "description": "Serbian national hat", "website": "https://en.wikipedia.org/wiki/%C5%A0ajka%C4%8Da", "subreddit": "/r/serbia, /r/place_CentralAlliance", "center": [322.5, 905.5], "path": [[294.5, 908.5], [359.5, 909.5], [359.5, 905.5], [293.5, 900.5], [293.5, 907.5]]}, -{"id": "twrl51", "submitted_by": "Vandabe", "name": "Danish osu! Community", "description": "A Danish community who shares an interest in the osu! rhythm game", "website": "https://osu.ppy.sh/", "subreddit": "/r/osugame", "center": [1384.5, 409.5], "path": [[1376.5, 404.5], [1395.5, 404.5], [1395.5, 410.5], [1387.5, 410.5], [1387.5, 413.5], [1384.5, 413.5], [1384.5, 415.5], [1376.5, 415.5], [1376.5, 404.5]]}, -{"id": "twrkzw", "submitted_by": "Klisurovi4", "name": "Trixie", "description": "A character from My Little Pony: Friendship is Magic. There are rumours that she was originally supposed to be a male pony, before getting changed to a female, so her being trans is a popular headcanon.", "website": "https://mlp.fandom.com/wiki/Trixie", "subreddit": "/r/MyLittlePony, /r/TransPlace", "center": [651.5, 463.5], "path": [[648.5, 475.5], [649.5, 473.5], [641.5, 473.5], [640.5, 471.5], [642.5, 471.5], [642.5, 469.5], [639.5, 465.5], [638.5, 461.5], [644.5, 460.5], [647.5, 455.5], [654.5, 450.5], [657.5, 449.5], [662.5, 456.5], [661.5, 460.5], [657.5, 461.5], [657.5, 463.5], [661.5, 467.5], [656.5, 468.5], [655.5, 471.5], [661.5, 472.5], [663.5, 475.5]]}, -{"id": "twrkvk", "submitted_by": "Streammz", "name": "Ice Barrage", "description": "The icon for Ice Barrage, one of the strongest magic spells in Old School RuneScape.", "website": "https://oldschool.runescape.wiki/w/Ice_Barrage", "subreddit": "/r/2007scape", "center": [169.5, 43.5], "path": [[162.5, 34.5], [162.5, 39.5], [160.5, 43.5], [160.5, 46.5], [163.5, 49.5], [166.5, 47.5], [169.5, 51.5], [172.5, 48.5], [173.5, 47.5], [175.5, 49.5], [178.5, 47.5], [178.5, 43.5], [176.5, 39.5], [176.5, 34.5], [174.5, 34.5], [174.5, 39.5], [172.5, 44.5], [171.5, 44.5], [170.5, 35.5], [168.5, 35.5], [168.5, 41.5], [167.5, 44.5], [166.5, 44.5], [165.5, 42.5], [163.5, 37.5], [163.5, 34.5], [162.5, 34.5]]}, -{"id": "twrkp1", "submitted_by": "SphealArt", "name": "Starsector", "description": "Starsector is a 2D RPG with emphasis on combat and exploration. The game has a very active modding community as well as an unofficial Discord server.", "website": "", "subreddit": "/r/starsector", "center": [1737.5, 984.5], "path": [[1732.5, 979.5], [1732.5, 988.5], [1741.5, 988.5], [1741.5, 979.5], [1741.5, 979.5]]}, -{"id": "twrkbf", "submitted_by": "C-EZ", "name": "Remy (Ratatouille)", "description": "Remy, from the movie Ratatouille (2007), is a rat aspiring to become a renowned French chef.", "website": "https://en.wikipedia.org/wiki/Ratatouille_(film)", "subreddit": "/r/PlaceFrance", "center": [222.5, 1751.5], "path": [[243.5, 1786.5], [233.5, 1749.5], [239.5, 1738.5], [225.5, 1709.5], [219.5, 1709.5], [201.5, 1736.5], [202.5, 1747.5], [215.5, 1749.5], [217.5, 1754.5], [207.5, 1777.5], [192.5, 1783.5], [233.5, 1783.5], [236.5, 1788.5]]}, -{"id": "twrk8x", "submitted_by": "lmN0tAR0b0t", "name": "New Radio Shows?", "description": "An in-joke in the Toki Pona community, stemming from a YouTube comment argument.", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [763.5, 358.5], "path": [[740.5, 356.5], [786.5, 356.5], [786.5, 360.5], [740.5, 360.5]]}, -{"id": "twrk2t", "submitted_by": "Aksyyy", "name": "Trojan Horse Chuu", "description": "Trojan Horse Chuu refers to a series of photoshopped images that include a red arrow pointing at a seemingly random area with a circled picture of Chuu from K-pop girl group LOONA in it. This was made by r/Loona in collaboration with r/Philippines.", "website": "https://knowyourmeme.com/memes/trojan-horse-chuu", "subreddit": "/r/Loona, /r/Philippines", "center": [370.5, 1617.5], "path": [[368.5, 1601.5], [374.5, 1601.5], [375.5, 1603.5], [376.5, 1602.5], [377.5, 1603.5], [378.5, 1603.5], [379.5, 1604.5], [380.5, 1604.5], [381.5, 1605.5], [382.5, 1606.5], [383.5, 1607.5], [384.5, 1608.5], [384.5, 1609.5], [385.5, 1610.5], [385.5, 1611.5], [386.5, 1612.5], [386.5, 1613.5], [387.5, 1622.5], [386.5, 1623.5], [384.5, 1627.5], [383.5, 1628.5], [379.5, 1628.5], [378.5, 1629.5], [376.5, 1629.5], [375.5, 1630.5], [374.5, 1630.5], [373.5, 1631.5], [372.5, 1632.5], [371.5, 1633.5], [371.5, 1634.5], [371.5, 1635.5], [366.5, 1635.5], [365.5, 1634.5], [364.5, 1634.5], [363.5, 1633.5], [362.5, 1633.5], [361.5, 1632.5], [360.5, 1632.5], [359.5, 1631.5], [358.5, 1630.5], [357.5, 1629.5], [356.5, 1628.5], [356.5, 1627.5], [355.5, 1626.5], [355.5, 1625.5], [354.5, 1624.5], [354.5, 1623.5], [353.5, 1614.5], [354.5, 1613.5], [354.5, 1612.5], [355.5, 1611.5], [355.5, 1610.5], [355.5, 1609.5], [356.5, 1608.5], [357.5, 1608.5], [359.5, 1607.5], [359.5, 1606.5], [361.5, 1605.5], [362.5, 1604.5], [366.5, 1601.5]]}, -{"id": "twrk1w", "submitted_by": "Melter30", "name": "Bretzl (pretzel)", "description": "A type of baked bread popular in Germany.", "website": "https://en.wikipedia.org/wiki/Pretzel", "subreddit": "/r/placeDE", "center": [127.5, 860.5], "path": [[111.5, 855.5], [112.5, 854.5], [112.5, 853.5], [113.5, 852.5], [114.5, 851.5], [115.5, 850.5], [118.5, 850.5], [118.5, 849.5], [124.5, 849.5], [125.5, 850.5], [126.5, 851.5], [127.5, 851.5], [128.5, 850.5], [129.5, 850.5], [130.5, 849.5], [135.5, 849.5], [136.5, 850.5], [137.5, 850.5], [139.5, 852.5], [139.5, 853.5], [140.5, 854.5], [141.5, 854.5], [142.5, 855.5], [143.5, 856.5], [143.5, 864.5], [142.5, 865.5], [136.5, 871.5], [134.5, 871.5], [134.5, 872.5], [123.5, 872.5], [122.5, 871.5], [121.5, 871.5], [120.5, 870.5], [119.5, 870.5], [111.5, 862.5], [111.5, 855.5]]}, -{"id": "twrjwj", "submitted_by": "Party_Ad_619", "name": "Gotaga", "description": "The french monter's logo", "website": "https://www.twitch.tv/gotaga", "subreddit": "", "center": [418.5, 1195.5], "path": [[397.5, 1172.5], [439.5, 1172.5], [439.5, 1219.5], [397.5, 1219.5], [397.5, 1172.5], [398.5, 1172.5], [410.5, 1184.5], [399.5, 1176.5], [399.5, 1176.5]]}, -{"id": "twrjrw", "submitted_by": "Idrialite", "name": "Fire Emblem", "description": "Fire Emblem is a tactical role-playing game franchise published by Nintendo. Characters shown from left to right are Micaiah, Anna, and Tiki with the Japanese title of the series: ファイアーエムブレム (pronounced Faiāemuburemu).", "website": "", "subreddit": "/r/fireemblem", "center": [499.5, 1378.5], "path": [[469.5, 1361.5], [469.5, 1395.5], [529.5, 1395.5], [529.5, 1361.5], [529.5, 1361.5]]}, -{"id": "twrjka", "submitted_by": "YallaYalla", "name": "Healthy Gamer Foundation", "description": "Logo of the Healthy Gamer Foundation -nDedicated to helping the gaming community lead healthier, happier lives.", "website": "https://www.healthygamer.gg/", "subreddit": "/r/Healthygamergg", "center": [1810.5, 317.5], "path": [[1798.5, 309.5], [1823.5, 309.5], [1823.5, 325.5], [1816.5, 325.5], [1816.5, 324.5], [1814.5, 324.5], [1814.5, 323.5], [1809.5, 323.5], [1809.5, 324.5], [1808.5, 324.5], [1808.5, 325.5], [1798.5, 325.5], [1798.5, 310.5], [1798.5, 309.5]]}, -{"id": "twrjcw", "submitted_by": "newnative", "name": "Red Velvet ReVe Robot", "description": "Designed by Seulgi and named by Yeri, \"ReVe\" is the name of the robot mascot of Red Velvet. \"Reve\" is named based on french word \"rêver\" (dream). Yeri likes that name because it's similar to Reveluv.", "website": "https://redvelvet-jp.net/en/", "subreddit": "/r/red_velvet", "center": [1701.5, 1068.5], "path": [[1694.5, 1062.5], [1707.5, 1062.5], [1707.5, 1073.5], [1694.5, 1073.5], [1694.5, 1062.5]]}, -{"id": "twrjah", "submitted_by": "anoadragon453", "name": "SoGreatAndPowerful", "description": "SoGreatAndPowerful is a brony musician that first appeared in late 2011, recognized for their unique musical style and later sudden erasure of all of their published work and social media. They have returned in subsequent years under the new monikers 'mirrorsforprinces' and 'Captive Unicorns'. Despite the mysterious communication with fans, SGaP has gained a small yet dedicated cult following, which continues to create musical and artistic tribute content to this day.", "website": "", "subreddit": "/r/SGaP", "center": [1374.5, 1292.5], "path": [[1361.5, 1289.5], [1387.5, 1289.5], [1387.5, 1295.5], [1361.5, 1295.5]]}, -{"id": "twrj8k", "submitted_by": "qwartal1", "name": "Pulsus", "description": "Pulsus is an online rhythm game for PC in which you hit incoming beats on a 3x3 tile board.", "website": "https://pulsus.cc", "subreddit": "/r/pulsus", "center": [680.5, 689.5], "path": [[674.5, 695.5], [680.5, 695.5], [680.5, 696.5], [683.5, 696.5], [683.5, 695.5], [686.5, 695.5], [686.5, 689.5], [687.5, 689.5], [687.5, 686.5], [686.5, 686.5], [686.5, 683.5], [680.5, 683.5], [680.5, 682.5], [677.5, 682.5], [677.5, 683.5], [674.5, 683.5], [674.5, 689.5], [673.5, 689.5], [673.5, 692.5], [674.5, 692.5], [674.5, 695.5]]}, -{"id": "twrj8e", "submitted_by": "lmN0tAR0b0t", "name": "Abenaki Flag", "description": "After struggling to find somewhere to keep their flag, the Abenaki (Indigenous Canadians) were given space by Toki Pona and r/Parahumans", "website": "https://en.wikipedia.org/wiki/Abenaki", "subreddit": "", "center": [1707.5, 228.5], "path": [[1705.5, 226.5], [1705.5, 226.5], [1705.5, 230.5], [1708.5, 230.5], [1708.5, 226.5]]}, -{"id": "twriya", "submitted_by": "eXernox", "name": "Re:Zero Anime", "description": "3 main characters from Re:Zero anime: Emilia, Ram and Rem", "website": "", "subreddit": "/r/Re_Zero", "center": [1883.5, 810.5], "path": [[1868.5, 799.5], [1898.5, 799.5], [1898.5, 820.5], [1868.5, 820.5], [1868.5, 799.5]]}, -{"id": "twrig2", "submitted_by": "veronie_", "name": "Mango the landshark", "description": "Mango is a landshark created by the swedish YouTuber The Click.", "website": "", "subreddit": "", "center": [1740.5, 912.5], "path": [[1730.5, 922.5], [1749.5, 922.5], [1749.5, 902.5], [1730.5, 902.5]]}, -{"id": "twribt", "submitted_by": "Maksiwood", "name": "Algerian Flag", "description": "A flag begun by the Algerian subreddit. However, people treid to turn its neighbours against the flag to destory it. Alongside that, the flag suffered a lot of bot attacks but with the help of Liverpool , the Algerian flag survived.", "website": "", "subreddit": "/r/Algeria", "center": [1617.5, 1594.5], "path": [[1533.5, 1609.5], [1533.5, 1579.5], [1700.5, 1579.5], [1700.5, 1609.5], [1533.5, 1609.5]]}, -{"id": "twri8h", "submitted_by": "Playedri", "name": "Wanderer above the Sea of Fog", "description": "Wanderer above the Sea of Fog is a painting by German Romantic artist Caspar David Friedrich made in 1818.\n\nThis painting makes a cameo in the paintings in Minecraft.", "website": "https://en.wikipedia.org/wiki/Wanderer_above_the_Sea_of_Fog", "subreddit": "/r/placeDE", "center": [1989.5, 848.5], "path": [[1979.5, 828.5], [1979.5, 867.5], [1998.5, 867.5], [1998.5, 828.5]]}, -{"id": "twri58", "submitted_by": "HogoX", "name": "Swedish House Mafia", "description": "Swedish house music supergroup consisting of Axwell, Steve Angello and Sebastian Ingrosso.n", "website": "https://swedishhousemafia.com", "subreddit": "/r/SwedishHouseMafia", "center": [689.5, 1429.5], "path": [[701.5, 1423.5], [701.5, 1436.5], [679.5, 1436.5], [679.5, 1430.5], [679.5, 1430.5], [677.5, 1430.5], [677.5, 1422.5], [701.5, 1422.5]]}, -{"id": "twrhxl", "submitted_by": "Klisurovi4", "name": "681 - infinity", "description": "Bulgaria was founded in the year 681", "website": "", "subreddit": "/r/Bulgaria", "center": [597.5, 396.5], "path": [[585.5, 392.5], [585.5, 399.5], [609.5, 399.5], [609.5, 392.5]]}, -{"id": "twrhpf", "submitted_by": "Themplow", "name": "Horalky", "description": "The best selling wafer in Czechia and Slovakia. Made by r/Slovakia with help from r/Czech", "website": "", "subreddit": "/r/Slovakia", "center": [513.5, 1635.5], "path": [[500.5, 1600.5], [526.5, 1600.5], [526.5, 1604.5], [524.5, 1609.5], [524.5, 1666.5], [525.5, 1667.5], [525.5, 1668.5], [526.5, 1668.5], [526.5, 1671.5], [500.5, 1671.5], [500.5, 1666.5], [501.5, 1666.5], [502.5, 1664.5], [502.5, 1608.5], [502.5, 1606.5], [502.5, 1605.5], [501.5, 1606.5], [501.5, 1605.5], [501.5, 1604.5], [500.5, 1604.5], [500.5, 1600.5], [525.5, 1600.5]]}, -{"id": "twrhho", "submitted_by": "FlyingKiwiNZ", "name": "An-225 Mriya", "description": "The Antonov An-225 Mriya was a strategic airlift cargo aircraft designed in the 1980s in Ukraine. With a maximum takeoff weight of 640 tonnes (705 short tons), the An-225 held several records, including heaviest aircraft ever built and largest wingspan of any aircraft in operational service. The Mriya attracted a high degree of public interest, attaining a global following due to its size and its uniqueness. People frequently visited airports to see its scheduled arrivals and departures.nnThe An-225 was destroyed in the Battle of Antonov Airport during the 2022 Russian invasion of Ukraine.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [259.5, 185.5], "path": [[276.5, 194.5], [275.5, 195.5], [274.5, 195.5], [273.5, 196.5], [261.5, 196.5], [260.5, 195.5], [253.5, 195.5], [252.5, 194.5], [246.5, 194.5], [245.5, 193.5], [242.5, 193.5], [241.5, 192.5], [240.5, 191.5], [240.5, 190.5], [239.5, 189.5], [239.5, 185.5], [238.5, 184.5], [237.5, 183.5], [237.5, 173.5], [239.5, 173.5], [240.5, 174.5], [241.5, 174.5], [243.5, 176.5], [243.5, 171.5], [251.5, 171.5], [251.5, 174.5], [253.5, 176.5], [275.5, 176.5], [283.5, 184.5], [283.5, 187.5]]}, -{"id": "twrhg2", "submitted_by": "plasticflwr", "name": "Gege Akutami", "description": "Author and artist of the manga series Jujutsu Kaisen.", "website": "", "subreddit": "/r/JuJutsuKaisen", "center": [444.5, 1454.5], "path": [[435.5, 1448.5], [435.5, 1455.5], [436.5, 1459.5], [456.5, 1458.5], [455.5, 1453.5], [452.5, 1452.5], [452.5, 1451.5], [451.5, 1451.5], [451.5, 1449.5], [450.5, 1449.5], [450.5, 1448.5], [449.5, 1449.5], [435.5, 1448.5]]}, -{"id": "twrhdo", "submitted_by": "gvp2053", "name": "Willem van oranje", "description": "In the Netherlands, he is also known as Father of the Fatherland (Pater Patriae) (Dutch: Vader des Vaderlands). was the main leader of the https://en.wikipedia.org/wiki/Dutch_Revolt against the Spanish https://en.wikipedia.org/wiki/Habsburg_Netherlands that set off the https://en.wikipedia.org/wiki/Eighty_Years%27_War (1568–1648) and resulted in the formal independence of the https://en.wikipedia.org/wiki/Dutch_Republic in 1581", "website": "https://en.wikipedia.org/wiki/William_the_Silent", "subreddit": "/r/Netherlands", "center": [1893.5, 19.5], "path": [[1891.5, 35.5], [1903.5, 35.5], [1905.5, 26.5], [1902.5, 17.5], [1901.5, 8.5], [1896.5, 3.5], [1885.5, 3.5], [1882.5, 7.5], [1881.5, 20.5], [1881.5, 26.5], [1892.5, 35.5]]}, -{"id": "twrhbj", "submitted_by": "mweepinc", "name": "Magic: The Gathering", "description": "The first trading card game, created by Richard Garfield and originally published in 1993 by Wizards of the Coast", "website": "https://magic.wizards.com/en/", "subreddit": "/r/magicTCG", "center": [614.5, 1418.5], "path": [[587.5, 1387.5], [588.5, 1387.5], [588.5, 1384.5], [589.5, 1383.5], [636.5, 1383.5], [637.5, 1384.5], [643.5, 1383.5], [639.5, 1388.5], [644.5, 1393.5], [645.5, 1394.5], [642.5, 1396.5], [640.5, 1395.5], [639.5, 1396.5], [639.5, 1412.5], [642.5, 1414.5], [639.5, 1418.5], [641.5, 1425.5], [646.5, 1429.5], [651.5, 1426.5], [651.5, 1429.5], [642.5, 1429.5], [642.5, 1453.5], [588.5, 1451.5], [587.5, 1449.5]]}, -{"id": "twrh5l", "submitted_by": "spedeedeps", "name": "DGG 4 LYFE", "description": "Popular emotes from the Twitch/Youtube streamer Destiny's community, the Pepe and the Yee. These two emotes are depicted here as being friendly, even though in lore they eternally locked in a battle for supremacy, with Yee often times coming out on top.", "website": "https://destiny.gg", "subreddit": "/r/Destiny", "center": [1588.5, 91.5], "path": [[1561.5, 69.5], [1615.5, 69.5], [1615.5, 113.5], [1561.5, 113.5]]}, -{"id": "twrgwj", "submitted_by": "Klisurovi4", "name": "Unity makes strength", "description": "The national motto of Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [533.5, 396.5], "path": [[481.5, 392.5], [481.5, 399.5], [584.5, 399.5], [584.5, 392.5]]}, -{"id": "twrgoz", "submitted_by": "eXernox", "name": "Senko bread", "description": "Represents a meme from Helpful Fox Senko-San's anime community.", "website": "", "subreddit": "/r/SenkoBread", "center": [835.5, 1505.5], "path": [[781.5, 1511.5], [781.5, 1493.5], [852.5, 1493.5], [855.5, 1484.5], [864.5, 1494.5], [872.5, 1485.5], [880.5, 1485.5], [880.5, 1519.5], [867.5, 1521.5], [849.5, 1520.5], [797.5, 1519.5], [798.5, 1511.5], [781.5, 1511.5]]}, -{"id": "twrgok", "submitted_by": "Rrait", "name": "SANS", "description": "Sans (/sænz/) is the brother of Papyrus and a major character in Undertale. He first appears in Snowdin Forest after the protagonist exits the Ruins. He serves as a supporting character in the Neutral and True Pacifist routes, and as the final boss and heroic antagonist in the Genocide Route.", "website": "", "subreddit": "", "center": [744.5, 805.5], "path": [[740.5, 794.5], [738.5, 794.5], [738.5, 795.5], [737.5, 795.5], [737.5, 796.5], [737.5, 797.5], [736.5, 797.5], [736.5, 800.5], [737.5, 800.5], [737.5, 802.5], [737.5, 803.5], [736.5, 803.5], [736.5, 804.5], [737.5, 804.5], [737.5, 805.5], [737.5, 806.5], [735.5, 806.5], [735.5, 807.5], [734.5, 807.5], [734.5, 808.5], [734.5, 809.5], [733.5, 809.5], [733.5, 813.5], [734.5, 813.5], [734.5, 814.5], [736.5, 814.5], [736.5, 815.5], [738.5, 815.5], [738.5, 816.5], [750.5, 816.5], [750.5, 815.5], [752.5, 815.5], [752.5, 814.5], [754.5, 814.5], [754.5, 812.5], [755.5, 812.5], [755.5, 809.5], [754.5, 809.5], [754.5, 808.5], [753.5, 808.5], [753.5, 807.5], [751.5, 807.5], [751.5, 806.5], [751.5, 805.5], [751.5, 804.5], [752.5, 804.5], [752.5, 803.5], [751.5, 803.5], [751.5, 802.5], [751.5, 801.5], [751.5, 800.5], [752.5, 800.5], [752.5, 796.5], [751.5, 796.5], [751.5, 795.5], [750.5, 795.5], [750.5, 794.5], [749.5, 794.5], [747.5, 794.5], [748.5, 793.5], [740.5, 793.5]]}, -{"id": "twrgik", "submitted_by": "AhThatsSjam", "name": "KLM airplane", "description": "KLM is the biggest Dutch airline with its main hub being in Schiphol Amsterdam Airport", "website": "https://www.klm.com/", "subreddit": "/r/PlaceNL", "center": [1631.5, 17.5], "path": [[1610.5, 6.5], [1613.5, 7.5], [1622.5, 17.5], [1648.5, 6.5], [1654.5, 6.5], [1657.5, 10.5], [1654.5, 14.5], [1651.5, 16.5], [1655.5, 17.5], [1656.5, 15.5], [1658.5, 19.5], [1649.5, 19.5], [1647.5, 23.5], [1642.5, 24.5], [1639.5, 23.5], [1629.5, 26.5], [1619.5, 26.5], [1614.5, 25.5], [1609.5, 22.5], [1602.5, 17.5], [1603.5, 15.5], [1610.5, 16.5], [1611.5, 15.5], [1610.5, 11.5], [1609.5, 7.5]]}, -{"id": "twrggp", "submitted_by": "Vocorvocor", "name": "Sea of Thieves", "description": "The logo of the pirate game Sea of Thieves made by RARE", "website": "", "subreddit": "/r/seaofthieves", "center": [510.5, 1938.5], "path": [[510.5, 1936.5], [506.5, 1938.5], [519.5, 1949.5], [519.5, 1928.5], [501.5, 1928.5], [501.5, 1948.5], [519.5, 1948.5]]}, -{"id": "twrg58", "submitted_by": "Melter30", "name": "Muttis Raute (Merkel's Rhombus)", "description": "The famous hand gesture Angela Merkel always did. She is Germany's Mutti ('mommy'). Also known as the 'Merkel Diamond'.", "website": "https://en.wikipedia.org/wiki/Merkel-Raute", "subreddit": "/r/placeDE", "center": [1612.5, 1149.5], "path": [[1567.5, 1138.5], [1568.5, 1139.5], [1569.5, 1139.5], [1569.5, 1144.5], [1570.5, 1145.5], [1570.5, 1146.5], [1571.5, 1147.5], [1572.5, 1148.5], [1572.5, 1149.5], [1573.5, 1151.5], [1574.5, 1152.5], [1575.5, 1153.5], [1575.5, 1154.5], [1576.5, 1155.5], [1577.5, 1156.5], [1577.5, 1157.5], [1578.5, 1158.5], [1579.5, 1159.5], [1580.5, 1160.5], [1581.5, 1161.5], [1582.5, 1161.5], [1583.5, 1161.5], [1583.5, 1162.5], [1584.5, 1162.5], [1585.5, 1163.5], [1586.5, 1164.5], [1587.5, 1165.5], [1589.5, 1165.5], [1590.5, 1164.5], [1591.5, 1164.5], [1592.5, 1163.5], [1593.5, 1162.5], [1594.5, 1161.5], [1595.5, 1161.5], [1595.5, 1160.5], [1598.5, 1160.5], [1598.5, 1161.5], [1600.5, 1161.5], [1600.5, 1162.5], [1601.5, 1162.5], [1602.5, 1163.5], [1605.5, 1164.5], [1606.5, 1165.5], [1609.5, 1166.5], [1610.5, 1165.5], [1613.5, 1165.5], [1613.5, 1166.5], [1617.5, 1166.5], [1618.5, 1165.5], [1619.5, 1165.5], [1620.5, 1164.5], [1621.5, 1164.5], [1621.5, 1163.5], [1624.5, 1163.5], [1625.5, 1162.5], [1625.5, 1161.5], [1629.5, 1161.5], [1630.5, 1162.5], [1631.5, 1163.5], [1632.5, 1163.5], [1633.5, 1164.5], [1636.5, 1164.5], [1637.5, 1163.5], [1638.5, 1163.5], [1639.5, 1162.5], [1640.5, 1161.5], [1641.5, 1161.5], [1642.5, 1160.5], [1643.5, 1159.5], [1644.5, 1158.5], [1645.5, 1158.5], [1646.5, 1157.5], [1647.5, 1156.5], [1648.5, 1155.5], [1649.5, 1154.5], [1650.5, 1153.5], [1651.5, 1152.5], [1652.5, 1151.5], [1653.5, 1150.5], [1654.5, 1149.5], [1654.5, 1147.5], [1655.5, 1147.5], [1655.5, 1145.5], [1656.5, 1145.5], [1656.5, 1144.5], [1656.5, 1143.5], [1657.5, 1143.5], [1657.5, 1137.5], [1567.5, 1137.5], [1567.5, 1138.5]]}, -{"id": "twrg3v", "submitted_by": "Shaiden17", "name": "Trackmania 2020 logo", "description": "Logo of the latest Trackmania game with author medal beside it", "website": "https://www.trackmania.com/", "subreddit": "/r/trackmania", "center": [1596.5, 521.5], "path": [[1591.5, 499.5], [1591.5, 543.5], [1600.5, 543.5], [1600.5, 499.5], [1600.5, 499.5]]}, -{"id": "twrg1d", "submitted_by": "Sarinyann", "name": "Chao", "description": "Chao a character from the Sonic's Franchise", "website": "", "subreddit": "", "center": [1664.5, 1953.5], "path": [[1655.5, 1939.5], [1655.5, 1940.5], [1660.5, 1940.5], [1660.5, 1945.5], [1660.5, 1946.5], [1655.5, 1946.5], [1655.5, 1964.5], [1656.5, 1964.5], [1656.5, 1965.5], [1673.5, 1965.5], [1673.5, 1939.5], [1655.5, 1939.5]]}, -{"id": "twrg0a", "submitted_by": "Avecinat", "name": "Miguel de Cervantes", "description": "Two depictions of Miguel de Cervantes, famous for writing El Don Quixote. The reason there are two is due to diplomatic confusion between r/esPlace and r/ItalyPlace. The first is on the Spanish flag, while the other sits with Dante and Camoe, two other famous writers from their respective countries.", "website": "https://en.wikipedia.org/wiki/Miguel_de_Cervantes", "subreddit": "/r/esPlace, /r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "center": [866.5, 304.5], "path": [[854.5, 323.5], [850.5, 320.5], [854.5, 313.5], [850.5, 307.5], [860.5, 296.5], [870.5, 284.5], [879.5, 286.5], [876.5, 297.5], [885.5, 303.5], [885.5, 307.5], [867.5, 308.5], [865.5, 323.5], [856.5, 323.5]]}, -{"id": "twrfx2", "submitted_by": "P3verall", "name": "Indonesia", "description": "The country flag of Indonesia and abbreviated subreddit", "website": "https://en.wikipedia.org/wiki/Indonesia", "subreddit": "/r/indonesia", "center": [99.5, 808.5], "path": [[89.5, 804.5], [109.5, 804.5], [109.5, 811.5], [89.5, 811.5]]}, -{"id": "twrfoy", "submitted_by": "Penguin_Mania", "name": "Yoshi egg", "description": "The 'O' of the Super Mario 64 logo turned into a Yoshi egg. Also contains an Amogus, because of course it does.", "website": "", "subreddit": "", "center": [1962.5, 1389.5], "path": [[1961.5, 1383.5], [1964.5, 1383.5], [1964.5, 1384.5], [1965.5, 1384.5], [1965.5, 1385.5], [1966.5, 1385.5], [1966.5, 1387.5], [1967.5, 1387.5], [1967.5, 1391.5], [1966.5, 1391.5], [1966.5, 1393.5], [1965.5, 1393.5], [1964.5, 1393.5], [1964.5, 1394.5], [1961.5, 1394.5], [1961.5, 1393.5], [1959.5, 1393.5], [1959.5, 1392.5], [1958.5, 1392.5], [1958.5, 1387.5], [1959.5, 1387.5], [1959.5, 1385.5], [1960.5, 1385.5], [1960.5, 1384.5], [1961.5, 1384.5], [1961.5, 1383.5]]}, -{"id": "twrfna", "submitted_by": "Rrait", "name": "MUNI.cz", "description": "Masaryk University (MU) (Czech: Masarykova univerzita; Latin: Universitas Masarykiana Brunensis) is the second largest university in the Czech Republic, a member of the Compostela Group and the Utrecht Network. Founded in 1919 in Brno as the second Czech university (after Charles University established in 1348 and Palacký University existent in 1573–1860), it now consists of ten faculties and 35,115 students. It is named after Tomáš Garrigue Masaryk, the first president of an independent Czechoslovakia as well as the leader of the movement for a second Czech university. The second best university in Brno.", "website": "https://www.muni.cz/", "subreddit": "", "center": [1107.5, 1089.5], "path": [[1084.5, 1077.5], [1084.5, 1077.5], [1084.5, 1077.5], [1115.5, 1077.5], [1115.5, 1100.5], [1084.5, 1100.5], [1084.5, 1099.5], [1101.5, 1099.5], [1101.5, 1077.5]]}, -{"id": "twrfhe", "submitted_by": "EdenZero0", "name": "Beatrice the Golden Witch", "description": "A major character from the visual novel: Umineko When They Cry.", "website": "", "subreddit": "/r/Umineko", "center": [837.5, 1597.5], "path": [[828.5, 1587.5], [844.5, 1587.5], [844.5, 1608.5], [830.5, 1607.5], [828.5, 1602.5], [831.5, 1599.5], [829.5, 1593.5], [828.5, 1587.5]]}, -{"id": "twrfai", "submitted_by": "FlyingKiwiNZ", "name": "The Crimean Tatar symbol.", "description": "Crimean Tatars are the are indigenous people of Crimea, Ukraine. They faced oppression and mass deportation under the Soviet Union. This symbol represents their people, and can be found on their flag.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [203.5, 181.5], "path": [[188.5, 191.5], [218.5, 191.5], [218.5, 170.5], [188.5, 170.5], [188.5, 191.5]]}, -{"id": "twrf4s", "submitted_by": "plasticflwr", "name": "Gojo Satoru", "description": "Gojo Satoru, a special grade jujutsu sorcerer, first bearer of both the Limitless and Six Eyes technique in 400 years, regarded as the strongest sorcerer of the modern world. Mentor at Tokyo Metropolitan Curse Technical College.", "website": "", "subreddit": "/r/JuJutsuKaisen", "center": [437.5, 1419.5], "path": [[455.5, 1420.5], [446.5, 1420.5], [445.5, 1401.5], [445.5, 1400.5], [421.5, 1400.5], [422.5, 1417.5], [426.5, 1417.5], [426.5, 1436.5], [452.5, 1436.5], [455.5, 1431.5], [455.5, 1426.5], [455.5, 1426.5]]}, -{"id": "twrew4", "submitted_by": "177013", "name": "Reveille", "description": "The school mascot of Texas A&M University.", "website": "https://en.wikipedia.org/wiki/Reveille_(dog)", "subreddit": "/r/aggies", "center": [867.5, 1961.5], "path": [[855.5, 1950.5], [874.5, 1950.5], [874.5, 1959.5], [883.5, 1959.5], [883.5, 1970.5], [855.5, 1970.5], [855.5, 1950.5]]}, -{"id": "twreup", "submitted_by": "Melter30", "name": "Löwenzahn Bauwagen", "description": "It's the Home of the protagonist of a German Show that aims to bring science to young kids and adults. Formerly it was home to Peter Lustig and now to Fritz Fuchs", "website": "", "subreddit": "", "center": [940.5, 1153.5], "path": [[967.5, 1171.5], [965.5, 1171.5], [965.5, 1170.5], [963.5, 1169.5], [963.5, 1167.5], [956.5, 1167.5], [956.5, 1168.5], [957.5, 1169.5], [957.5, 1171.5], [937.5, 1171.5], [937.5, 1169.5], [938.5, 1169.5], [938.5, 1168.5], [938.5, 1167.5], [923.5, 1167.5], [923.5, 1169.5], [915.5, 1169.5], [914.5, 1168.5], [914.5, 1167.5], [908.5, 1167.5], [908.5, 1165.5], [908.5, 1162.5], [910.5, 1162.5], [910.5, 1159.5], [907.5, 1159.5], [906.5, 1135.5], [940.5, 1135.5], [940.5, 1139.5], [956.5, 1139.5], [956.5, 1136.5], [957.5, 1136.5], [958.5, 1135.5], [959.5, 1136.5], [963.5, 1136.5], [963.5, 1135.5], [964.5, 1135.5], [965.5, 1135.5], [965.5, 1136.5], [966.5, 1136.5], [966.5, 1139.5], [972.5, 1139.5], [972.5, 1140.5], [973.5, 1141.5], [974.5, 1143.5], [974.5, 1145.5], [975.5, 1145.5], [976.5, 1146.5], [976.5, 1148.5], [975.5, 1148.5], [975.5, 1156.5], [976.5, 1156.5], [976.5, 1157.5], [978.5, 1157.5], [978.5, 1158.5], [979.5, 1159.5], [979.5, 1160.5], [978.5, 1161.5], [976.5, 1161.5], [975.5, 1162.5], [974.5, 1163.5], [973.5, 1164.5], [972.5, 1164.5], [973.5, 1166.5], [973.5, 1167.5], [969.5, 1167.5], [969.5, 1169.5], [968.5, 1169.5], [967.5, 1170.5]]}, -{"id": "twrese", "submitted_by": "SuccessfulCitron7", "name": "TU Berlin", "description": "The logo of the Technical University in Berlin. It was mostly held alive by the german community, thanks to DerBerliner.", "website": "https://www.tu.berlin/", "subreddit": "/r/tuberlin", "center": [1418.5, 823.5], "path": [[1392.5, 806.5], [1392.5, 830.5], [1430.5, 830.5], [1430.5, 829.5], [1459.5, 829.5], [1459.5, 822.5], [1443.5, 822.5], [1443.5, 820.5], [1434.5, 820.5], [1434.5, 824.5], [1411.5, 824.5], [1411.5, 817.5], [1401.5, 817.5], [1401.5, 806.5], [1392.5, 806.5]]}, -{"id": "twreom", "submitted_by": "Alixkan", "name": "Edward Elric chibi", "description": "Edward Elric from the Fullmetal Alchemist Series, the community managed to sneak him in at the very end of r/placen", "website": "", "subreddit": "/r/FullmetalAlchemist", "center": [1603.5, 402.5], "path": [[1594.5, 392.5], [1611.5, 392.5], [1611.5, 411.5], [1594.5, 411.5], [1594.5, 411.5], [1594.5, 411.5], [1594.5, 411.5], [1594.5, 411.5], [1594.5, 411.5], [1594.5, 411.5], [1594.5, 392.5]]}, -{"id": "twgxb9", "submitted_by": "Aeonim", "name": "keqLove", "description": "An emote from the Keqing Mains, a Genshin Impact community, depicting Keqing holding a heart.", "website": "https://keqingmains.com/", "subreddit": "/r/KeqingMains", "center": [1535.5, 509.5], "path": [[1561.5, 535.5], [1561.5, 483.5], [1509.5, 483.5], [1509.5, 535.5]]}, -{"id": "twre65", "submitted_by": "iced_americano99", "name": "Kep1er", "description": "Kep1er is a 9 member K-pop project girl group formed through the Mnet survival show Girls Planet 999. They officially debuted on January 3, 2022, with the mini-album \"FIRST IMPACT\" and title track \"WA DA DA\".", "website": "", "subreddit": "/r/kep1er", "center": [1652.5, 886.5], "path": [[1634.5, 880.5], [1669.5, 880.5], [1669.5, 891.5], [1634.5, 891.5], [1634.5, 880.5]]}, -{"id": "twre3d", "submitted_by": "Jarwho-", "name": "Balisong Community Logos", "description": "A group of logos pertaining to the Balisong Knife Community. Featuring CamaroEE, Glidrco, Zippybalisong, Squid Industries, NRB and TheWillHirsch.", "website": "https://www.willhirsch.gay, https://www.squidindustries.co, https://www.nrbknives.com, https://www.glidr.co, https://www.zippybalisong.com, https://youtube.com/c/camaroEE", "subreddit": "/r/balisong", "center": [1811.5, 1202.5], "path": [[1800.5, 1195.5], [1801.5, 1195.5], [1800.5, 1195.5], [1795.5, 1204.5], [1795.5, 1208.5], [1815.5, 1208.5], [1814.5, 1206.5], [1818.5, 1207.5], [1818.5, 1208.5], [1826.5, 1207.5], [1826.5, 1195.5]]}, -{"id": "twre2w", "submitted_by": "Xexanos", "name": "LilyPichu", "description": "Variety streamer (mainly music and games), YouTuber and voice actress.nnFriend of streamer Destiny which lead to the inclusion of her logo into the GigaChad", "website": "https://lilypichu.com/", "subreddit": "/r/lilypichu", "center": [1944.5, 1455.5], "path": [[1931.5, 1442.5], [1931.5, 1466.5], [1958.5, 1467.5], [1957.5, 1443.5], [1931.5, 1442.5]]}, -{"id": "twre1o", "submitted_by": "XDFloody", "name": "FeelsYabbeMan", "description": "A twitch emote of the twitch streamer Yabbe with a FeelsDonkMan hat.", "website": "https://twitch.tv/yabbe", "subreddit": "", "center": [660.5, 938.5], "path": [[656.5, 942.5], [656.5, 933.5], [664.5, 933.5], [664.5, 942.5]]}, -{"id": "twrdy3", "submitted_by": "sopiix", "name": "Serbian cross", "description": "The Serbian Cross is a national symbol of Serbia, part of the coat of arms and flag of Serbia, and of the Serbian Orthodox Church. It is based on the tetragrammic cross emblem/flag of the Byzantine Palaiologos dynasty, with the difference that in Serbian use the cross is usually white on a red background, rather than gold on a red background (though it can be depicted in gold as well).", "website": "https://en.wikipedia.org/wiki/Serbian_cross", "subreddit": "/r/serbia", "center": [350.5, 897.5], "path": [[344.5, 891.5], [355.5, 891.5], [355.5, 902.5], [344.5, 902.5]]}, -{"id": "twrdu0", "submitted_by": "Penguin_Mania", "name": "CarlSagan42's Yoshi", "description": "A Yoshi head made by viewers of CarlSagan42's Twitch stream, with a long tongue snaking around various other drawings.", "website": "https://twitch.tv/carlsagan42", "subreddit": "", "center": [1846.5, 1267.5], "path": [[1835.5, 1258.5], [1856.5, 1258.5], [1856.5, 1276.5], [1835.5, 1276.5]]}, -{"id": "twrdse", "submitted_by": "Zaborgar_Delta", "name": "Willem van Oranje (William of Orange)", "description": "William of Orange, leader of the Dutch Revolt in the 16th and 17th century and \"Father of the Fatherland\".", "website": "https://www.canonvannederland.nl/en/willemvanoranje", "subreddit": "", "center": [1892.5, 19.5], "path": [[1890.5, 34.5], [1888.5, 34.5], [1888.5, 33.5], [1887.5, 33.5], [1887.5, 32.5], [1885.5, 32.5], [1885.5, 31.5], [1884.5, 31.5], [1884.5, 30.5], [1883.5, 30.5], [1883.5, 29.5], [1882.5, 29.5], [1882.5, 28.5], [1879.5, 25.5], [1879.5, 23.5], [1879.5, 21.5], [1880.5, 21.5], [1880.5, 18.5], [1881.5, 18.5], [1881.5, 13.5], [1880.5, 13.5], [1880.5, 10.5], [1881.5, 10.5], [1881.5, 10.5], [1881.5, 6.5], [1882.5, 6.5], [1882.5, 4.5], [1883.5, 4.5], [1883.5, 3.5], [1884.5, 3.5], [1884.5, 2.5], [1897.5, 2.5], [1897.5, 3.5], [1898.5, 4.5], [1900.5, 6.5], [1901.5, 6.5], [1901.5, 7.5], [1902.5, 8.5], [1902.5, 17.5], [1903.5, 18.5], [1904.5, 19.5], [1904.5, 22.5], [1906.5, 24.5], [1907.5, 25.5], [1907.5, 28.5], [1906.5, 28.5], [1906.5, 30.5], [1905.5, 30.5], [1905.5, 33.5], [1904.5, 33.5], [1903.5, 34.5]]}, -{"id": "twrdr7", "submitted_by": "newnative", "name": "Red Velvet Logo", "description": "The logo of Red Velvet (RV), a South Korean girl group formed and managed by SM Entertainment. The group consists of members: Irene, Seulgi, Wendy, Joy and Yeri. Musically, the work of Red Velvet reflects their own group name: their predominantly-pop \"red\" side experiments occasionally with electronic, funk and hip hop, while their \"velvet\" side focuses on '90s-influenced R&B with elements of ballad and jazz. Their genre versatility and hooks have garnered critical praise. The five colors on the rightmost end of the name represents the five members of the group.", "website": "https://redvelvet-jp.net/en/", "subreddit": "/r/red_velvet", "center": [1621.5, 892.5], "path": [[1607.5, 880.5], [1607.5, 902.5], [1645.5, 902.5], [1645.5, 898.5], [1632.5, 898.5], [1632.5, 880.5], [1616.5, 880.5], [1607.5, 880.5]]}, -{"id": "twrdq5", "submitted_by": "Rrait", "name": "VUTEZ", "description": "VUT FIT discord emote", "website": "https://www.su.fit.vutbr.cz/", "subreddit": "", "center": [1346.5, 585.5], "path": [[1330.5, 570.5], [1330.5, 599.5], [1361.5, 599.5], [1361.5, 570.5], [1330.5, 570.5]]}, -{"id": "twrdot", "submitted_by": "AhThatsSjam", "name": "nu.nl ( Dutch news site )", "description": "A Dutch news website. It was founded in 1999", "website": "https://www.nu.nl/", "subreddit": "/r/PlaceNL", "center": [613.5, 1959.5], "path": [[607.5, 1951.5], [604.5, 1953.5], [603.5, 1958.5], [603.5, 1963.5], [604.5, 1964.5], [605.5, 1966.5], [607.5, 1967.5], [609.5, 1968.5], [610.5, 1969.5], [614.5, 1969.5], [615.5, 1968.5], [616.5, 1968.5], [617.5, 1967.5], [618.5, 1967.5], [619.5, 1966.5], [620.5, 1965.5], [620.5, 1964.5], [621.5, 1963.5], [621.5, 1962.5], [623.5, 1962.5], [624.5, 1961.5], [625.5, 1960.5], [625.5, 1959.5], [625.5, 1958.5], [624.5, 1957.5], [623.5, 1956.5], [621.5, 1956.5], [620.5, 1955.5], [619.5, 1954.5], [619.5, 1953.5], [618.5, 1952.5], [617.5, 1952.5], [616.5, 1951.5], [616.5, 1951.5], [615.5, 1951.5], [614.5, 1950.5], [610.5, 1950.5], [609.5, 1951.5]]}, -{"id": "twrd56", "submitted_by": "Amazonit", "name": "Imperial College", "description": "Logo of Imperial College London, with art of Queen's Tower and Central Library", "website": "https://www.imperial.ac.uk", "subreddit": "/r/imperial", "center": [531.5, 1446.5], "path": [[525.5, 1435.5], [525.5, 1446.5], [524.5, 1446.5], [524.5, 1460.5], [537.5, 1460.5], [537.5, 1431.5], [529.5, 1432.5]]}, -{"id": "twrd2b", "submitted_by": "Rrait", "name": "VUT", "description": "Brno University of Technology (abbreviated: BUT; in Czech: Vysoké učení technické v Brně – Czech abbreviation: VUT) is a university located in Brno, Czech Republic. Being founded in 1899 and initially offering a single course in civil engineering, it grew to become a major technical Czech university with over 18,000 students enrolled at 8 faculties and 2 university institutes.", "website": "https://www.vut.cz/", "subreddit": "", "center": [358.5, 799.5], "path": [[343.5, 780.5], [343.5, 818.5], [373.5, 818.5], [373.5, 780.5], [343.5, 780.5]]}, -{"id": "twrd09", "submitted_by": "Maksiwood", "name": "Everton F.C.", "description": "Everton Football Club are an English football club from the city of Liverpool. The club currently competes in the Premier League and have played more seasons in the top league of English football than any other team.", "website": "", "subreddit": "/r/Everton", "center": [869.5, 702.5], "path": [[863.5, 693.5], [863.5, 710.5], [875.5, 710.5], [875.5, 693.5], [863.5, 693.5]]}, -{"id": "twrczf", "submitted_by": "FlyingKiwiNZ", "name": "The Tryzub", "description": "The tryzub is the coat of arms of Ukraine - a blue shield with a gold trident. The insignia derives from the seal-trident of Volodymyr, the first Grand Prince of Kyiv.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [204.5, 211.5], "path": [[205.5, 233.5], [219.5, 225.5], [219.5, 192.5], [188.5, 192.5], [188.5, 206.5], [190.5, 206.5], [190.5, 211.5], [191.5, 211.5], [191.5, 219.5], [190.5, 219.5], [190.5, 226.5], [203.5, 233.5], [202.5, 234.5], [205.5, 234.5], [206.5, 233.5], [205.5, 233.5]]}, -{"id": "twrcqt", "submitted_by": "sn0wbit2", "name": "six impala", "description": "The logo of the (super awesome) band six impala.", "website": "https://soundcloud.com/siximpala", "subreddit": "", "center": [1792.5, 82.5], "path": [[1787.5, 68.5], [1788.5, 71.5], [1786.5, 68.5], [1799.5, 68.5], [1799.5, 97.5], [1786.5, 97.5], [1786.5, 68.5]]}, -{"id": "twrcmo", "submitted_by": "sopiix", "name": "Hram Svetog Save u Beogradu (Church of Saint Sava)", "description": "The Church of Saint Sava is a Serbian Orthodox church which sits on the Vračar plateau in Belgrade, Serbia. It was planned as the bishopric seat and main cathedral of the Serbian Orthodox Church. The church is dedicated to Saint Sava, the founder of the Serbian Orthodox Church and an important figure in medieval Serbia.", "website": "https://en.wikipedia.org/wiki/Church_of_Saint_Sava", "subreddit": "/r/serbia, /r/place_CentralAlliance", "center": [320.5, 899.5], "path": [[302.5, 905.5], [340.5, 905.5], [311.5, 890.5], [311.5, 892.5], [311.5, 891.5], [310.5, 893.5], [302.5, 901.5], [302.5, 904.5], [340.5, 906.5], [331.5, 890.5], [321.5, 886.5], [314.5, 891.5]]}, -{"id": "twrclv", "submitted_by": "Aksyyy", "name": "ASEAN", "description": "The flag of the Association of Southeast Asian Nations, or ASEAN.", "website": "https://en.wikipedia.org/wiki/ASEAN", "subreddit": "/r/Asean, /r/Philippines", "center": [1361.5, 660.5], "path": [[1374.5, 671.5], [1348.5, 671.5], [1348.5, 648.5], [1374.5, 648.5], [1374.5, 671.5]]}, -{"id": "twrci5", "submitted_by": "Penguin_Mania", "name": "BattleBots logo and Rusty", "description": "The logo of robot combat TV show BattleBots and a tiny (Amogusified?) image of fan-favorite competitor Rusty", "website": "https://battlebots.com", "subreddit": "/r/battlebots", "center": [1801.5, 902.5], "path": [[1794.5, 897.5], [1806.5, 897.5], [1806.5, 911.5], [1804.5, 911.5], [1804.5, 905.5], [1794.5, 905.5]]}, -{"id": "twrcav", "submitted_by": "SynthismS", "name": "Squishmallow", "description": "Squishmalllows are collecatble stuffed animals. The two represented here are cows called Patty and Caedyn.", "website": "", "subreddit": "/r/squishmallow", "center": [424.5, 1957.5], "path": [[418.5, 1944.5], [418.5, 1944.5], [430.5, 1944.5], [430.5, 1969.5], [418.5, 1969.5], [418.5, 1956.5]]}, -{"id": "twrcaj", "submitted_by": "AhThatsSjam", "name": "Stroopwafel ( Dutch Syrup Waffle )", "description": "A traditional Dutch cookie that has sugar syrup between the 2 layers.", "website": "https://en.wikipedia.org/wiki/Stroopwafel", "subreddit": "/r/PlaceNL", "center": [644.5, 1958.5], "path": [[628.5, 1959.5], [627.5, 1962.5], [629.5, 1964.5], [633.5, 1968.5], [637.5, 1968.5], [639.5, 1965.5], [643.5, 1965.5], [647.5, 1967.5], [652.5, 1967.5], [653.5, 1968.5], [655.5, 1968.5], [657.5, 1966.5], [659.5, 1963.5], [660.5, 1961.5], [659.5, 1957.5], [659.5, 1955.5], [657.5, 1953.5], [655.5, 1951.5], [653.5, 1950.5], [651.5, 1949.5], [648.5, 1949.5], [646.5, 1948.5], [643.5, 1948.5], [640.5, 1948.5], [639.5, 1949.5], [636.5, 1950.5], [632.5, 1952.5], [631.5, 1953.5], [629.5, 1955.5], [628.5, 1958.5]]}, -{"id": "twrc97", "submitted_by": "bestof99sp", "name": "Mango", "description": "(one of the) mascots of YouTuber the click", "website": "https://www.youtube.com/user/CrazyShootin", "subreddit": "/r/TheClickOwO", "center": [1740.5, 912.5], "path": [[1748.5, 921.5], [1748.5, 902.5], [1731.5, 902.5], [1731.5, 921.5]]}, -{"id": "twrc7l", "submitted_by": "Astero94", "name": "Avengers Logo & More", "description": "The famous logo of the Avengers (coming from the Marvel comics/movies), with the 6 infinity stones and Thor's hammer.", "website": "", "subreddit": "/r/marvelstudios", "center": [975.5, 1705.5], "path": [[956.5, 1697.5], [971.5, 1688.5], [987.5, 1691.5], [991.5, 1680.5], [995.5, 1680.5], [995.5, 1692.5], [999.5, 1692.5], [1000.5, 1702.5], [987.5, 1702.5], [986.5, 1723.5], [954.5, 1723.5], [956.5, 1698.5]]}, -{"id": "twrc3z", "submitted_by": "EdenZero0", "name": "BattleBit Remastered", "description": "An upcoming battlefield-inspired low poly indie FPS game made by a small team.", "website": "https://store.steampowered.com/app/671860/BattleBit_Remastered/", "subreddit": "", "center": [1883.5, 1415.5], "path": [[1877.5, 1400.5], [1888.5, 1400.5], [1888.5, 1429.5], [1877.5, 1429.5], [1877.5, 1400.5]]}, -{"id": "twrc1z", "submitted_by": "Sarinyann", "name": "Kuchipatchi", "description": "A character from Tamagotchi", "website": "", "subreddit": "", "center": [312.5, 751.5], "path": [[303.5, 744.5], [303.5, 757.5], [320.5, 757.5], [320.5, 744.5], [303.5, 744.5]]}, -{"id": "twrby1", "submitted_by": "the29er", "name": "Cambridge University Crest", "description": "An orange tinted University of Cambridge crest was allowed to hide in the lava surrounding Obi-Wan. Many Star wars fans quite liked it & thought it was a cross for Obi-Wan 'Space-Jesus' Kenobi.", "website": "https://www.cam.ac.uk/", "subreddit": "", "center": [774.5, 1595.5], "path": [[767.5, 1586.5], [781.5, 1586.5], [783.5, 1586.5], [784.5, 1586.5], [784.5, 1590.5], [778.5, 1606.5], [772.5, 1608.5], [766.5, 1601.5], [766.5, 1586.5]]}, -{"id": "twrbjj", "submitted_by": "75Centz", "name": "M.F. DOOM Tribute", "description": "Daniel Dumile, most known by his stage name MF DOOM.nnHe died on October 31, 2020, but it wasn't until December 31, 2020 when his death was publicly announced.nnAlways remember, all caps when you spell the man name!n", "website": "", "subreddit": "/r/mfdoom", "center": [1598.5, 895.5], "path": [[1588.5, 881.5], [1607.5, 882.5], [1608.5, 908.5], [1589.5, 908.5], [1589.5, 907.5]]}, -{"id": "twrbi2", "submitted_by": "madebymvx", "name": "Can U Be / Kenya Bee", "description": "Unreleased Kanye West song. Pixel artwork in cooperation with the bees below. nKENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE KENYA BEE", "website": "", "subreddit": "/r/westsubever", "center": [53.5, 793.5], "path": [[48.5, 787.5], [58.5, 787.5], [58.5, 798.5], [48.5, 798.5], [48.5, 787.5]]}, -{"id": "twrbdv", "submitted_by": "TwoMuchSicko", "name": "KingKontent", "description": "KingKontent is a Twitch streamer from the Netherlands. This pixel art was placed in the last 2 hours of r/Place. In allience with the people from r/bi_irl we made the backdrop a Bi flag.", "website": "https://kingkontent.me/", "subreddit": "", "center": [396.5, 1931.5], "path": [[379.5, 1918.5], [412.5, 1918.5], [412.5, 1943.5], [379.5, 1943.5], [379.5, 1918.5]]}, -{"id": "twrb90", "submitted_by": "Mari_-", "name": "Madness Combat Sheriff/Grunt", "description": "Originally a grunt from the Madness Combat web series created by Krinkels, now the sheriff from Madness Combat 2: Redeemer.", "website": "", "subreddit": "/r/madnesscombat", "center": [209.5, 1235.5], "path": [[200.5, 1224.5], [218.5, 1224.5], [219.5, 1246.5], [200.5, 1245.5], [200.5, 1224.5]]}, -{"id": "twrb7m", "submitted_by": "jobbo321", "name": "William of Orange", "description": "Also known as William the Silent. Famous leader of the Dutch Revolt against Spain which resulted in the formal independence of the United Provinces of the Netherlands.", "website": "", "subreddit": "/r/PlaceNL, /r/cirkeltrek", "center": [1893.5, 19.5], "path": [[1892.5, 3.5], [1885.5, 3.5], [1896.5, 3.5], [1897.5, 4.5], [1884.5, 4.5], [1899.5, 6.5], [1901.5, 9.5], [1901.5, 13.5], [1901.5, 20.5], [1902.5, 19.5], [1903.5, 21.5], [1903.5, 24.5], [1904.5, 25.5], [1905.5, 29.5], [1905.5, 28.5], [1904.5, 31.5], [1903.5, 33.5], [1901.5, 34.5], [1898.5, 34.5], [1891.5, 34.5], [1883.5, 28.5], [1883.5, 24.5], [1881.5, 20.5], [1883.5, 13.5], [1881.5, 11.5], [1883.5, 6.5], [1885.5, 4.5], [1892.5, 4.5], [1895.5, 3.5]]}, -{"id": "twrb77", "submitted_by": "Huxtley", "name": "Murder Crumpet", "description": "A Snorty and Shorty, Feminem, and sugar supreme cream swallowing machine!", "website": "https://www.twitch.tv/murdercrumpet", "subreddit": "", "center": [611.5, 1037.5], "path": [[598.5, 1012.5], [598.5, 1062.5], [624.5, 1062.5], [624.5, 1012.5], [598.5, 1012.5]]}, -{"id": "twrb6c", "submitted_by": "AURAequine", "name": "Ponies Among Us", "description": "Ponified (turned into or resembles pony characters) versions of Among Us crewmates. Contains the Mane 6 from My Little Pony: Friendship is Magic.\n-Twilight Sparkle\n-Applejack\n-Pinkie Pie\n-Rainbow Dash\n-Rarity\n-Fluttershy", "website": "https://en.wikipedia.org/wiki/My_Little_Pony:_Friendship_Is_Magic", "subreddit": "/r/MyLittlePony", "center": [935.5, 1761.5], "path": [[933.5, 1745.5], [936.5, 1745.5], [936.5, 1777.5], [933.5, 1777.5]]}, -{"id": "twrb5p", "submitted_by": "Kuvfefe", "name": "monkeytype", "description": "The logo of monkeytype, a community all about typing on the website monkeytype.com, made with the help of r/mk or r/mechanicalkeyboards, a similar community focusing on making custom keyboards.", "website": "https://monkeytype.com", "subreddit": "/r/monkeytype, /r/mechanicalkeyboards", "center": [623.5, 1322.5], "path": [[590.5, 1301.5], [643.5, 1301.5], [643.5, 1323.5], [650.5, 1323.5], [650.5, 1328.5], [669.5, 1328.5], [670.5, 1335.5], [674.5, 1339.5], [672.5, 1341.5], [670.5, 1339.5], [650.5, 1339.5], [650.5, 1344.5], [633.5, 1344.5], [633.5, 1338.5], [590.5, 1338.5], [590.5, 1301.5]]}, -{"id": "twrb47", "submitted_by": "Bonfim_BR", "name": "Michael Gould", "description": "Michael Gould from the FNaF fancomic Children: Rekindled. It was originally built higher up, but had to lower its position due to the Berserker memorial. It was under constant threat by the FNaF logo to the left, whose members wanted to continuously change it into Freddy or a normal Crying Child. It was also wiped out during the streamer attack, and was turned by FNaF fans into Fredbear at one point, but managed to rebuild before the end. It was an uphill battle to keep it alive since it was so small and only maintained by five or six people at most.", "website": "https://www.children-rekindled.top/", "subreddit": "", "center": [685.5, 280.5], "path": [[688.5, 281.5], [688.5, 278.5], [683.5, 278.5], [683.5, 283.5], [687.5, 283.5], [687.5, 282.5]]}, -{"id": "twrb0d", "submitted_by": "FlyingKiwiNZ", "name": "Nanachi", "description": "The signature of Nanachi, a person with a bunny-like appearance from the anime/manga Made in Abyss.\nThe art was initially destroyed by r/placenl but was rebuilt inside of the Ukrainian flag in exchange for support, starting with cleaning the unwanted 'fuck Putin' messages that covered the Ukrainian flag. At first, only the outline was supposed to be built, but the Reddit hivemind decided to colour the inside blue.", "website": "https://en.wikipedia.org/wiki/Made_in_Abyss", "subreddit": "/r/madeinabyss", "center": [308.5, 239.5], "path": [[294.5, 251.5], [293.5, 250.5], [292.5, 249.5], [292.5, 247.5], [293.5, 247.5], [293.5, 246.5], [298.5, 246.5], [296.5, 246.5], [296.5, 245.5], [294.5, 244.5], [292.5, 242.5], [292.5, 238.5], [298.5, 232.5], [299.5, 232.5], [299.5, 224.5], [300.5, 224.5], [300.5, 220.5], [301.5, 220.5], [301.5, 219.5], [302.5, 219.5], [304.5, 219.5], [304.5, 220.5], [305.5, 221.5], [305.5, 230.5], [305.5, 229.5], [309.5, 229.5], [309.5, 227.5], [310.5, 227.5], [310.5, 225.5], [311.5, 225.5], [311.5, 223.5], [316.5, 219.5], [319.5, 219.5], [319.5, 223.5], [318.5, 223.5], [318.5, 224.5], [318.5, 225.5], [317.5, 225.5], [317.5, 226.5], [317.5, 227.5], [316.5, 227.5], [316.5, 228.5], [316.5, 229.5], [315.5, 229.5], [317.5, 230.5], [322.5, 234.5], [323.5, 235.5], [323.5, 238.5], [322.5, 238.5], [322.5, 240.5], [321.5, 240.5], [319.5, 242.5], [320.5, 243.5], [322.5, 241.5], [323.5, 241.5], [323.5, 243.5], [321.5, 244.5], [322.5, 245.5], [323.5, 246.5], [324.5, 247.5], [324.5, 248.5], [325.5, 248.5], [325.5, 251.5], [325.5, 252.5], [294.5, 252.5], [294.5, 251.5]]}, -{"id": "twrayn", "submitted_by": "ananas_robo", "name": "Reddie from The Colorful Creature", "description": "Reddie is the main character of a small Indie game called The Colorful Creature. The game is still in Beta.", "website": "https://store.steampowered.com/app/1651680/The_Colorful_Creature/", "subreddit": "/r/TCC_Game", "center": [12.5, 1249.5], "path": [[8.5, 1241.5], [16.5, 1241.5], [20.5, 1245.5], [20.5, 1252.5], [16.5, 1256.5], [8.5, 1256.5], [4.5, 1252.5], [4.5, 1245.5], [8.5, 1241.5], [8.5, 1243.5], [7.5, 1247.5], [9.5, 1247.5], [9.5, 1250.5], [15.5, 1250.5], [15.5, 1247.5], [17.5, 1247.5], [17.5, 1243.5], [13.5, 1243.5], [13.5, 1245.5], [11.5, 1245.5], [11.5, 1243.5], [7.5, 1243.5], [8.5, 1241.5]]}, -{"id": "twrawi", "submitted_by": "sopiix", "name": "Serbian sljivovica (plum brandy)", "description": "Sljivovica is the first Serbian-protected brand of this geographical origin. It is made according to the recipe for the Zlatibor village of the same name, Šljivovica, in which a great event of competition is traditionally held every year. Sljivovica, dunjevac, honey, pear and other types of local rakia are authentic Serbian products known and recognized all over the world.", "website": "https://en.wikipedia.org/wiki/Slivovitz", "subreddit": "/r/serbia", "center": [278.5, 895.5], "path": [[266.5, 889.5], [283.5, 890.5], [297.5, 900.5], [267.5, 898.5], [266.5, 896.5], [266.5, 891.5], [267.5, 890.5], [266.5, 890.5]]}, -{"id": "twrar7", "submitted_by": "AhThatsSjam", "name": "Groesbeek Canadian War Cemetery & Memorial", "description": "The Groesbeek Canadian War Cemetry is a memorial located nearby Nijmegen in the Netherlands. It signals the bond between the Netherlands and Canada and it pays special tributes to the fallen.", "website": "https://www.cwgc.org/visit-us/find-cemeteries-memorials/cemetery-details/2063900/groesbeek-canadian-war-cemetery/", "subreddit": "/r/PlaceNL, /r/placecanada", "center": [538.5, 1958.5], "path": [[528.5, 1951.5], [538.5, 1941.5], [548.5, 1953.5], [548.5, 1970.5], [528.5, 1970.5]]}, -{"id": "twra60", "submitted_by": "leicester_fan", "name": "Bills logo", "description": "Logo of the Buffalo Bills NFL team.", "website": "https://www.buffalobills.com", "subreddit": "/r/buffalobills", "center": [558.5, 731.5], "path": [[546.5, 716.5], [546.5, 745.5], [570.5, 745.5], [570.5, 716.5]]}, -{"id": "twra4f", "submitted_by": "sburban-reversal", "name": "RuneScape logo", "description": "The logo for the popular MMORPG RuneScape. Specifically, this is the logo for the modern RuneScape version, RuneScape 3 (as opposed to Old School RuneScape).", "website": "https://secure.runescape.com/", "subreddit": "/r/runescape", "center": [201.5, 79.5], "path": [[187.5, 65.5], [214.5, 65.5], [214.5, 92.5], [187.5, 92.5]]}, -{"id": "twra3y", "submitted_by": "heyhowzitgoinn", "name": "Rock from Over the Garden Wall", "description": "A rock with a face painted on it. It's from the 2014 Cartoon Network miniseries Over the Garden Wall by Patrick McHale, and that's a rock fact!", "website": "https://www.hbomax.com", "subreddit": "/r/overthegardenwall", "center": [1456.5, 929.5], "path": [[1450.5, 924.5], [1450.5, 934.5], [1462.5, 934.5], [1462.5, 924.5]]}, -{"id": "twr9yp", "submitted_by": "2ndmerrik255", "name": "Hank J. Wimbleton", "description": "A subtly added reference to the character Hank, the protagonist of the flash-animated Newgrounds series Madness Combat", "website": "https://krinkels.newgrounds.com/", "subreddit": "/r/madnesscombat", "center": [973.5, 1904.5], "path": [[967.5, 1907.5], [967.5, 1900.5], [979.5, 1900.5], [979.5, 1907.5], [973.5, 1907.5]]}, -{"id": "twr9w6", "submitted_by": "XDFloody", "name": "Scoresaber", "description": "ScoreSaber is Beat Saber's largest leaderboard system for custom songs, hosting 60 million scores across 170,000 leaderboards, with more than 1 million users worldwide.", "website": "https://scoresaber.com/", "subreddit": "/r/ScoreSaber", "center": [240.5, 7.5], "path": [[233.5, 0.5], [233.5, 13.5], [247.5, 13.5], [247.5, 0.5]]}, -{"id": "twr9pq", "submitted_by": "GaymerQWQ", "name": "OMORI taskbar button", "description": "The icon for the indie psychological horror game OMORI.", "website": "https://www.omori-game.com/en", "subreddit": "/r/OMORI, /r/PlaceStart", "center": [920.5, 1986.5], "path": [[910.5, 1998.5], [930.5, 1998.5], [930.5, 1973.5], [910.5, 1973.5]]}, -{"id": "twr9bv", "submitted_by": "Sarinyann", "name": "Purple Guy", "description": "It's been so long since the last you've seen your son", "website": "", "subreddit": "", "center": [1909.5, 284.5], "path": [[1901.5, 275.5], [1901.5, 293.5], [1916.5, 293.5], [1916.5, 275.5], [1901.5, 275.5]]}, -{"id": "twr97y", "submitted_by": "Cowman72", "name": "Land Value Tax", "description": "Just Tax Land Lol. LVT: Land Value Taxation is a method of raising public revenue by means of an annual charge on the rental value of land. Although described as a tax, it is not really a tax at all, but a payment for benefits received. Properly applied, Land Value Tax supports a whole range of social and economic initiatives, including housing, transport and other infrastructural investments. The LVT project on r/place was created by the r/Georgism community in association with NCD and the Neoliberals.", "website": "", "subreddit": "/r/Georgism", "center": [846.5, 94.5], "path": [[893.5, 89.5], [799.5, 89.5], [799.5, 99.5], [893.5, 99.5]]}, -{"id": "twr947", "submitted_by": "Exynth1a", "name": "The First Hand", "description": "A hand, made by streamers Elraenn and Porçay, modeled after a real life, ancient hand stencil. It is supposed to represent humanity thriving despite the darkness and death around it.", "website": "https://www.twitch.tv/elraenn, https://www.youtube.com/channel/UCUpMmEDtYEoZxYYRa_gh5eQ/videos, https://www.reddit.com/r/place/comments/twcbut/were_trying_to_recreate_one_of_the_first_art/", "subreddit": "", "center": [1036.5, 1478.5], "path": [[1036.5, 1403.5], [1014.5, 1410.5], [988.5, 1423.5], [984.5, 1440.5], [988.5, 1470.5], [995.5, 1495.5], [1007.5, 1533.5], [1025.5, 1560.5], [1047.5, 1570.5], [1065.5, 1543.5], [1079.5, 1516.5], [1084.5, 1468.5], [1082.5, 1435.5], [1071.5, 1419.5], [1054.5, 1408.5], [1036.5, 1402.5]]}, -{"id": "twr92j", "submitted_by": "Maksiwood", "name": "YNWA", "description": "The YNWA, motto of Liverpool FC, was made here in Collaboration with Borussia Dortmund, because both clubs were/are under managment of the Legendary Jurgen Klopp.", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1595.5, 1575.5], "path": [[1608.5, 1579.5], [1608.5, 1571.5], [1581.5, 1572.5], [1582.5, 1579.5], [1608.5, 1579.5]]}, -{"id": "twr91j", "submitted_by": "NicoEokat", "name": "Flo and Nico in Canary", "description": "We wanted to represent our canarian life as french without putting french flag again", "website": "https://www.youtube.com/watch?v=eSUKpa1Viq0&ab_channel=NicoJo", "subreddit": "", "center": [24.5, 68.5], "path": [[23.5, 66.5], [24.5, 68.5], [22.5, 63.5], [35.5, 64.5], [34.5, 73.5], [13.5, 73.5], [13.5, 64.5], [21.5, 64.5], [22.5, 63.5], [28.5, 63.5], [30.5, 64.5]]}, -{"id": "twr8ql", "submitted_by": "FORUofO", "name": "University of Oklahoma", "description": "A tribute to the University of Oklahoma created by the Sooner Nation. The top left is the Sooner Schooner, with the top right being an outline of the state of Oklahoma. The bottom left is the logo for OU, with the bottom right being a rare alliance with the University of Texas, ie Texas Longhorns, to show support for the SEC, an American Football Conference. BOOMER!", "website": "", "subreddit": "/r/sooners", "center": [1274.5, 1830.5], "path": [[1257.5, 1815.5], [1257.5, 1843.5], [1271.5, 1843.5], [1276.5, 1848.5], [1285.5, 1848.5], [1289.5, 1844.5], [1289.5, 1815.5]]}, -{"id": "twr8l9", "submitted_by": "Melter30", "name": "Flag of Germany", "description": "The second expansion of German territory on r/place.", "website": "https://en.wikipedia.org/wiki/Germany", "subreddit": "/r/placeDE", "center": [1525.5, 850.5], "path": [[2000.5, 829.5], [1999.5, 869.5], [1055.5, 869.5], [1055.5, 830.5], [1917.5, 832.5], [1919.5, 830.5]]}, -{"id": "twr8ia", "submitted_by": "AURAequine", "name": "Anon Filly", "description": "Mascot pony of 4chan's My Little Pony community (/mlp/).", "website": "https://boards.4channel.org/mlp/", "subreddit": "", "center": [926.5, 1818.5], "path": [[919.5, 1829.5], [919.5, 1823.5], [918.5, 1823.5], [918.5, 1820.5], [915.5, 1820.5], [915.5, 1819.5], [914.5, 1819.5], [914.5, 1818.5], [913.5, 1818.5], [913.5, 1809.5], [915.5, 1809.5], [915.5, 1808.5], [916.5, 1808.5], [916.5, 1807.5], [917.5, 1807.5], [917.5, 1806.5], [920.5, 1806.5], [920.5, 1805.5], [923.5, 1805.5], [923.5, 1806.5], [924.5, 1806.5], [924.5, 1807.5], [925.5, 1807.5], [925.5, 1808.5], [925.5, 1809.5], [926.5, 1809.5], [927.5, 1809.5], [927.5, 1811.5], [929.5, 1811.5], [929.5, 1812.5], [930.5, 1812.5], [930.5, 1813.5], [936.5, 1813.5], [936.5, 1814.5], [937.5, 1814.5], [937.5, 1815.5], [938.5, 1815.5], [938.5, 1816.5], [939.5, 1816.5], [939.5, 1821.5], [941.5, 1821.5], [941.5, 1825.5], [940.5, 1825.5], [940.5, 1826.5], [939.5, 1826.5], [939.5, 1827.5], [938.5, 1827.5], [938.5, 1828.5], [933.5, 1828.5], [933.5, 1829.5], [919.5, 1829.5]]}, -{"id": "twr8c9", "submitted_by": "GoJoeyGo123", "name": "Spike Spiegel", "description": "Spike Spiegel is a character from the 1998 anime Cowboy Bebop.", "website": "https://en.wikipedia.org/wiki/Spike_Spiegel", "subreddit": "/r/cowboybebop", "center": [1245.5, 1545.5], "path": [[1226.5, 1492.5], [1227.5, 1492.5], [1227.5, 1491.5], [1284.5, 1491.5], [1284.5, 1492.5], [1285.5, 1492.5], [1285.5, 1505.5], [1286.5, 1504.5], [1287.5, 1505.5], [1286.5, 1506.5], [1285.5, 1507.5], [1285.5, 1607.5], [1284.5, 1607.5], [1284.5, 1608.5], [1227.5, 1608.5], [1227.5, 1607.5], [1226.5, 1607.5], [1226.5, 1585.5], [1227.5, 1584.5], [1228.5, 1583.5], [1229.5, 1582.5], [1230.5, 1582.5], [1230.5, 1580.5], [1230.5, 1580.5], [1227.5, 1580.5], [1226.5, 1581.5], [1226.5, 1567.5], [1225.5, 1566.5], [1224.5, 1564.5], [1223.5, 1562.5], [1222.5, 1561.5], [1221.5, 1561.5], [1220.5, 1561.5], [1219.5, 1560.5], [1218.5, 1559.5], [1217.5, 1558.5], [1216.5, 1557.5], [1215.5, 1556.5], [1214.5, 1555.5], [1213.5, 1554.5], [1212.5, 1553.5], [1213.5, 1552.5], [1212.5, 1551.5], [1211.5, 1552.5], [1210.5, 1551.5], [1209.5, 1550.5], [1208.5, 1549.5], [1208.5, 1548.5], [1207.5, 1548.5], [1206.5, 1547.5], [1206.5, 1546.5], [1205.5, 1546.5], [1204.5, 1545.5], [1204.5, 1544.5], [1201.5, 1544.5], [1201.5, 1542.5], [1200.5, 1541.5], [1199.5, 1542.5], [1198.5, 1541.5], [1199.5, 1540.5], [1197.5, 1540.5], [1196.5, 1539.5], [1194.5, 1539.5], [1194.5, 1538.5], [1193.5, 1537.5], [1190.5, 1537.5], [1190.5, 1535.5], [1188.5, 1535.5], [1188.5, 1533.5], [1187.5, 1532.5], [1186.5, 1531.5], [1187.5, 1530.5], [1186.5, 1529.5], [1185.5, 1529.5], [1184.5, 1530.5], [1184.5, 1531.5], [1185.5, 1532.5], [1184.5, 1533.5], [1183.5, 1533.5], [1182.5, 1532.5], [1181.5, 1533.5], [1182.5, 1534.5], [1181.5, 1535.5], [1180.5, 1536.5], [1178.5, 1536.5], [1177.5, 1537.5], [1176.5, 1536.5], [1175.5, 1535.5], [1174.5, 1534.5], [1172.5, 1534.5], [1171.5, 1533.5], [1171.5, 1530.5], [1172.5, 1530.5], [1172.5, 1527.5], [1171.5, 1526.5], [1170.5, 1525.5], [1169.5, 1524.5], [1168.5, 1523.5], [1168.5, 1520.5], [1167.5, 1521.5], [1166.5, 1520.5], [1167.5, 1519.5], [1169.5, 1518.5], [1170.5, 1518.5], [1171.5, 1517.5], [1172.5, 1516.5], [1173.5, 1515.5], [1174.5, 1514.5], [1175.5, 1513.5], [1177.5, 1513.5], [1178.5, 1512.5], [1179.5, 1511.5], [1180.5, 1510.5], [1181.5, 1510.5], [1182.5, 1509.5], [1183.5, 1509.5], [1184.5, 1508.5], [1185.5, 1507.5], [1189.5, 1507.5], [1190.5, 1506.5], [1191.5, 1506.5], [1192.5, 1505.5], [1193.5, 1506.5], [1194.5, 1505.5], [1196.5, 1504.5], [1196.5, 1505.5], [1197.5, 1506.5], [1198.5, 1507.5], [1199.5, 1507.5], [1200.5, 1506.5], [1201.5, 1507.5], [1201.5, 1508.5], [1204.5, 1508.5], [1204.5, 1509.5], [1205.5, 1510.5], [1206.5, 1509.5], [1207.5, 1510.5], [1208.5, 1511.5], [1209.5, 1512.5], [1210.5, 1513.5], [1211.5, 1513.5], [1212.5, 1514.5], [1212.5, 1515.5], [1213.5, 1516.5], [1214.5, 1516.5], [1215.5, 1516.5], [1215.5, 1517.5], [1217.5, 1517.5], [1217.5, 1518.5], [1218.5, 1519.5], [1219.5, 1519.5], [1219.5, 1520.5], [1219.5, 1524.5], [1218.5, 1525.5], [1217.5, 1526.5], [1216.5, 1526.5], [1216.5, 1527.5], [1215.5, 1528.5], [1214.5, 1528.5], [1214.5, 1529.5], [1213.5, 1530.5], [1213.5, 1533.5], [1212.5, 1533.5], [1211.5, 1534.5], [1211.5, 1535.5], [1210.5, 1536.5], [1211.5, 1537.5], [1211.5, 1540.5], [1212.5, 1541.5], [1212.5, 1542.5], [1213.5, 1543.5], [1213.5, 1545.5], [1214.5, 1546.5], [1215.5, 1545.5], [1216.5, 1546.5], [1216.5, 1547.5], [1217.5, 1547.5], [1218.5, 1549.5], [1219.5, 1550.5], [1219.5, 1551.5], [1220.5, 1552.5], [1220.5, 1553.5], [1221.5, 1554.5], [1221.5, 1555.5], [1222.5, 1556.5], [1222.5, 1558.5], [1222.5, 1559.5], [1224.5, 1559.5], [1223.5, 1556.5], [1223.5, 1551.5], [1222.5, 1550.5], [1221.5, 1549.5], [1220.5, 1548.5], [1219.5, 1546.5], [1218.5, 1547.5], [1217.5, 1546.5], [1216.5, 1545.5], [1216.5, 1543.5], [1215.5, 1542.5], [1214.5, 1542.5], [1213.5, 1540.5], [1212.5, 1539.5], [1212.5, 1537.5], [1214.5, 1537.5], [1213.5, 1536.5], [1213.5, 1534.5], [1214.5, 1534.5], [1215.5, 1532.5], [1216.5, 1532.5], [1215.5, 1531.5], [1216.5, 1530.5], [1217.5, 1530.5], [1217.5, 1527.5], [1218.5, 1527.5], [1218.5, 1525.5], [1219.5, 1525.5], [1220.5, 1524.5], [1220.5, 1524.5], [1220.5, 1521.5], [1222.5, 1521.5], [1223.5, 1520.5], [1224.5, 1519.5], [1225.5, 1519.5], [1225.5, 1513.5], [1226.5, 1513.5]]}, -{"id": "twr84w", "submitted_by": "CanIEatYourAssPlease", "name": "Mini Mando", "description": "Hidden in amongst the cell community, a mandalorian helmet was built in memorial of another piece of artwork that was destroyed by raids. The colour was changed to those of the non-binary flag in solidarity with the surrounding cells.", "website": "", "subreddit": "", "center": [1622.5, 200.5], "path": [[1618.5, 196.5], [1619.5, 196.5], [1625.5, 196.5], [1625.5, 204.5], [1618.5, 204.5]]}, -{"id": "twr83d", "submitted_by": "Polandball2021", "name": "Felps", "description": "Felps is a brazilian streamer, he loves the '-' face", "website": "https://www.twitch.com/felps", "subreddit": "/r/felps", "center": [1664.5, 1928.5], "path": [[1679.5, 1918.5], [1648.5, 1918.5], [1648.5, 1918.5], [1648.5, 1918.5], [1648.5, 1938.5], [1679.5, 1938.5]]}, -{"id": "twr7ui", "submitted_by": "j0nchan", "name": "UBC Logo", "description": "Logo of the University of British Columbia, a public research university with campuses in Vancouver and in Kelowna, British Columbia, Canada.", "website": "https://www.ubc.ca/", "subreddit": "/r/UBC", "center": [184.5, 541.5], "path": [[193.5, 553.5], [193.5, 528.5], [175.5, 528.5], [175.5, 553.5]]}, -{"id": "twr7u0", "submitted_by": "Melter30", "name": "Flag of Germany", "description": "The original German flag on r/place.", "website": "https://en.wikipedia.org/wiki/Germany", "subreddit": "/r/placeDE", "center": [356.5, 851.5], "path": [[1.5, 828.5], [771.5, 837.5], [771.5, 865.5], [0.5, 873.5], [0.5, 828.5]]}, -{"id": "twr7ta", "submitted_by": "ThatWaterSword", "name": "Suriname heart", "description": "A small heart of the Suriname flag, made by the Dutch community. nThe Netherlands has a large Surinamese population.", "website": "", "subreddit": "/r/placeNL", "center": [359.5, 35.5], "path": [[357.5, 33.5], [358.5, 33.5], [359.5, 34.5], [360.5, 33.5], [361.5, 33.5], [362.5, 34.5], [362.5, 35.5], [362.5, 36.5], [361.5, 37.5], [360.5, 38.5], [359.5, 39.5], [358.5, 38.5], [357.5, 37.5], [356.5, 36.5], [356.5, 35.5], [356.5, 34.5]]}, -{"id": "twr7jt", "submitted_by": "GreatHeroJ", "name": "Zombie Face (Unturned)", "description": "The iconic face of a zombie from Unturned. This face doubles as the game's main logo.", "website": "https://store.steampowered.com/app/304930/Unturned/", "subreddit": "/r/unturned", "center": [670.5,583.5], "path": [[661.5, 574.5], [678.5, 574.5], [678.5, 591.5], [661.5, 591.5]]}, -{"id": "twr7gl", "submitted_by": "XDFloody", "name": "The 7TV Community", "description": "A twitch third party extension logo with a meme from the community, Doctor Disrespect.", "website": "https://7tv.app/", "subreddit": "/r/7TV", "center": [682.5, 950.5], "path": [[669.5, 944.5], [669.5, 956.5], [694.5, 956.5], [694.5, 944.5]]}, -{"id": "twr74y", "submitted_by": "iemand02", "name": "Delft university of technology", "description": "The oldest and largest technical university in the Netherlands. A collaboration between r/TUDelft and r/PlaceNL", "website": "https://www.tudelft.nl/", "subreddit": "/r/TUDelft", "center": [1912.5, 47.5], "path": [[1894.5, 35.5], [1895.5, 37.5], [1895.5, 53.5], [1936.5, 53.5], [1936.5, 44.5], [1905.5, 44.5], [1905.5, 35.5], [1894.5, 35.5]]}, -{"id": "twr71f", "submitted_by": "ZexRon", "name": "Lea from CrossCode", "description": "The main protagonist of the action role-playing game CrossCode released in 2018.", "website": "http://cross-code.com", "subreddit": "/r/CrossCode", "center":[899.5,262.5],"path":[[906.5,281.5],[906.5,279.5],[905.5,278.5],[905.5,275.5],[906.5,275.5],[906.5,273.5],[907.5,273.5],[908.5,274.5],[909.5,273.5],[910.5,273.5],[910.5,270.5],[909.5,270.5],[909.5,268.5],[908.5,268.5],[908.5,267.5],[907.5,266.5],[907.5,265.5],[908.5,265.5],[909.5,264.5],[909.5,263.5],[910.5,263.5],[910.5,257.5],[911.5,257.5],[911.5,254.5],[908.5,254.5],[908.5,252.5],[912.5,252.5],[912.5,248.5],[888.5,248.5],[888.5,252.5],[894.5,252.5],[894.5,254.5],[891.5,254.5],[891.5,257.5],[892.5,257.5],[892.5,262.5],[889.5,259.5],[889.5,254.5],[879.5,254.5],[879.5,262.5],[892.5,262.5],[893.5,263.5],[893.5,264.5],[895.5,266.5],[894.5,267.5],[894.5,268.5],[893.5,268.5],[893.5,270.5],[892.5,270.5],[892.5,273.5],[893.5,273.5],[894.5,274.5],[895.5,273.5],[896.5,273.5],[896.5,275.5],[897.5,275.5],[897.5,278.5],[896.5,279.5],[896.5,281.5]]}, -{"id": "twr6z3", "submitted_by": "WackyPinion", "name": "Kuchipatchi", "description": "A sprite of the character Kuchipatchi, from the Tamagotchi series of virtual pet toys. Besides him are a heart icon, indicating he's happy, and also a poop.", "website": "https://tamagotchi.com/", "subreddit": "/r/tamagotchi", "center": [312.5, 750.5], "path": [[302.5, 743.5], [321.5, 743.5], [321.5, 757.5], [302.5, 757.5]]}, -{"id": "twr6mr", "submitted_by": "Erol123449", "name": ":GrassAutism:", "description": "an emote from a small discord community mainly about Brawlhalla, but also just generally about games and hobbysn", "website": "https://invite.gg/shirosdojo", "subreddit": "/r/Brawlhalla", "center": [1569.5, 1295.5], "path": [[1564.5, 1292.5], [1573.5, 1292.5], [1573.5, 1297.5], [1564.5, 1297.5]]}, -{"id": "twr66e", "submitted_by": "davespriteegg", "name": "Vernba (Splatoon OC)", "description": "An inside joke among friends and fans of the Splatoon lore YouTuber, Rassicas. It's the head of Rassica's Splatoon Inkling OC named Verna Rassica. when he gets drawn in a more gremlin-like way, like shown here, he's dubbed \"Vernba.\"", "website": "https://www.youtube.com/c/rassicas/", "subreddit": "", "center": [1118.5, 1622.5], "path": [[1105.5, 1631.5], [1105.5, 1621.5], [1106.5, 1621.5], [1107.5, 1621.5], [1108.5, 1620.5], [1109.5, 1619.5], [1110.5, 1618.5], [1110.5, 1611.5], [1129.5, 1611.5], [1128.5, 1612.5], [1127.5, 1613.5], [1126.5, 1615.5], [1126.5, 1616.5], [1127.5, 1617.5], [1127.5, 1618.5], [1128.5, 1619.5], [1129.5, 1620.5], [1130.5, 1620.5], [1131.5, 1621.5], [1132.5, 1622.5], [1132.5, 1624.5], [1131.5, 1625.5], [1131.5, 1631.5], [1105.5, 1631.5]]}, -{"id": "twr65b", "submitted_by": "HogoX", "name": "Stu", "description": "A small town celebrity that has won hearts of eva fans and became discord mascot.", "website": "https://www.instagram.com/____stu_____/", "subreddit": "", "center": [646.5, 1398.5], "path": [[640.5, 1396.5], [640.5, 1402.5], [649.5, 1402.5], [649.5, 1398.5], [653.5, 1398.5], [653.5, 1395.5], [646.5, 1395.5], [646.5, 1396.5], [640.5, 1396.5]]}, -{"id": "twr62j", "submitted_by": "FlyingKiwiNZ", "name": "Come Back Alive", "description": "Come Back Alive is a Ukrainian non-governmental organization that emerged to help the Ukrainian military during the War in Donbas on the basis of crowdfunding, and continued to help the Ukrainian military during the 2022 Russian invasion of Ukraine.", "website": "https://comebackalive.in.ua", "subreddit": "/r/PlaceUkraine", "center": [55.5, 219.5], "path": [[2.5, 215.5], [2.5, 223.5], [108.5, 223.5], [108.5, 215.5], [2.5, 215.5]]}, -{"id": "twr5za", "submitted_by": "PhaseMajestic4242", "name": "Zoil", "description": "Face of a TikTok react streamer on Twitch", "website": "https://www.twitch.tv/zoil", "subreddit": "/r/Zoil", "center": [1619.5, 930.5], "path": [[1592.5, 909.5], [1608.5, 909.5], [1608.5, 905.5], [1644.5, 905.5], [1644.5, 955.5], [1603.5, 955.5], [1592.5, 945.5]]}, -{"id": "twr5ui", "submitted_by": "j0nchan", "name": "UBC Coat of Arms", "description": "Coat of Arms of the University of British Columbia, a public research university with campuses in Vancouver and in Kelowna, British Columbia, Canada.", "website": "https://www.ubc.ca/", "subreddit": "/r/UBC", "center": [1221.5, 47.5], "path": [[1213.5, 36.5], [1213.5, 54.5], [1215.5, 56.5], [1217.5, 58.5], [1219.5, 59.5], [1224.5, 59.5], [1226.5, 57.5], [1229.5, 55.5], [1229.5, 36.5], [1213.5, 36.5]]}, -{"id": "twr5r6", "submitted_by": "baking_soap", "name": "4 pixel duck", "description": "a 4 pixel mallard duck", "website": "", "subreddit": "", "center": [1359.5, 106.5], "path": [[1358.5, 106.5], [1359.5, 106.5], [1359.5, 105.5], [1360.5, 105.5]]}, -{"id": "twr5eb", "submitted_by": "Sarinyann", "name": "BTS Logo", "description": "BTS Logo made by French Streamers in order to tell the BTS Group that they are not their enemies.", "website": "", "subreddit": "", "center": [1120.5, 1467.5], "path": [[1096.5, 1416.5], [1095.5, 1518.5], [1144.5, 1518.5], [1144.5, 1416.5], [1118.5, 1416.5], [1096.5, 1416.5]]}, -{"id": "twr5c2", "submitted_by": "the29er", "name": "Cambridge & Oxford University", "description": "Crests of the University of Cambridge (Left) and the Thames Valley Polytechnic (Right)", "website": "", "subreddit": "", "center": [514.5, 1480.5], "path": [[492.5, 1468.5], [492.5, 1486.5], [500.5, 1493.5], [528.5, 1493.5], [535.5, 1486.5], [535.5, 1468.5]]}, -{"id": "twr53w", "submitted_by": "_-_FraiSaY_-_", "name": "CESI", "description": "Logo from a french engineering school", "website": "https://www.cesi.fr/", "subreddit": "", "center": [1835.5, 488.5], "path": [[1823.5, 476.5], [1847.5, 476.5], [1847.5, 499.5], [1823.5, 499.5], [1823.5, 476.5]]}, -{"id": "twr4y6", "submitted_by": "noogai223", "name": "bo en", "description": "Logo of bo en as it appears on his 2013 album Pale Machine. bo en is the composer of 'My Time', a song known for its use in the first trailer of OMORI and became in turn heavily associated with the indie RPG due to a particular ending of the game.", "website": "https://www.youtube.com/watch?v=-RREEDH8AnQ", "subreddit": "", "center": [1718.5, 1548.5], "path": [[1701.5, 1552.5], [1701.5, 1543.5], [1735.5, 1543.5], [1735.5, 1552.5], [1702.5, 1552.5]]}, -{"id": "twr4w0", "submitted_by": "chinkiang_vinegar", "name": "University of Pennsylvania", "description": "The athletic logo of the University of Pennsylvania. Go Quakers!", "website": "https://www.upenn.edu/", "subreddit": "/r/upenn", "center": [1266.5, 1799.5], "path": [[1255.5, 1808.5], [1255.5, 1790.5], [1256.5, 1789.5], [1267.5, 1789.5], [1272.5, 1793.5], [1274.5, 1794.5], [1279.5, 1795.5], [1279.5, 1808.5]]}, -{"id": "twr4lw", "submitted_by": "FORUofO", "name": "Senbo", "description": "Senbo is the slime mascot of twitch streamer Enviosity.", "website": "", "subreddit": "/r/Enviosity", "center": [552.5, 1610.5], "path": [[538.5, 1596.5], [565.5, 1596.5], [565.5, 1623.5], [538.5, 1623.5]]}, -{"id": "twr4lu", "submitted_by": "madebymvx", "name": "Zoil", "description": "A British Twitch streamer known for doing funny voices and watching Tik Toks every day for 5 hours. His wholesome community is worried for his health because of his obesity, but he is refusing to lose weight.", "website": "", "subreddit": "/r/zoil", "center": [1619.5, 930.5], "path": [[1592.5, 909.5], [1608.5, 909.5], [1608.5, 905.5], [1644.5, 905.5], [1645.5, 949.5], [1644.5, 949.5], [1643.5, 948.5], [1640.5, 948.5], [1640.5, 948.5], [1639.5, 949.5], [1638.5, 950.5], [1637.5, 951.5], [1638.5, 953.5], [1638.5, 954.5], [1631.5, 954.5], [1631.5, 955.5], [1603.5, 955.5], [1592.5, 945.5], [1592.5, 909.5]]}, -{"id": "twr4l3", "submitted_by": "JonnyCorry", "name": "r/LiverpoolFC", "description": "An artwork for Liverpool Football Club. Includes a Champions League Trophy with a 6 to show the club's accomplashments in the tournemnt, manager and legend Jurgen Klopp, homegrown talent Trent Alexander-Arnold #66, and finally Divock Origi a club hero, because 'football without Origi is nothing'.", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1632.5, 1565.5], "path": [[1620.5, 1539.5], [1594.5, 1539.5], [1594.5, 1578.5], [1594.5, 1579.5], [1700.5, 1579.5], [1700.5, 1570.5], [1684.5, 1570.5], [1684.5, 1573.5], [1668.5, 1573.5], [1668.5, 1557.5], [1620.5, 1557.5], [1620.5, 1539.5]]}, -{"id": "twr4ih", "submitted_by": "Luckyloomagu", "name": "Dragalia Lost", "description": "The app icon of the mobile game Dragalia Lost, prominently featuring the shapeshifting protagonist, Euden. Published by Nintendo and developed by Cygames. Released on 27th September 2018.\n\nThe game's end of service has been announced to be some time after July 2022, after the main campaign has concluded. We will miss you, Euden and friends.", "website": "https://dragalialost.com/", "subreddit": "/r/DragaliaLost", "center": [1449.5, 1716.5], "path": [[1439.5, 1705.5], [1459.5, 1705.5], [1459.5, 1726.5], [1439.5, 1726.5], [1439.5, 1705.5]]}, -{"id": "twr4gb", "submitted_by": "CECe057", "name": "Ludus Académie", "description": "A French/Belgian school on the creation and development of video games and serious games", "website": "https://ludus-academie.fr/", "subreddit": "", "center": [1302.5, 380.5], "path": [[1288.5, 377.5], [1315.5, 377.5], [1315.5, 383.5], [1288.5, 383.5], [1288.5, 377.5]]}, -{"id": "twr46e", "submitted_by": "Melter30", "name": "Mittwochsfrosch", "description": "It's the Mittwochsfrosch. It's a way for german subreddits to celebrate Wednesday.", "website": "", "subreddit": "/r/placeDE", "center": [645.5, 855.5], "path": [[629.5, 860.5], [630.5, 860.5], [631.5, 859.5], [631.5, 858.5], [632.5, 857.5], [632.5, 853.5], [633.5, 852.5], [633.5, 851.5], [634.5, 850.5], [635.5, 849.5], [636.5, 848.5], [637.5, 847.5], [637.5, 846.5], [639.5, 846.5], [640.5, 845.5], [641.5, 845.5], [642.5, 844.5], [648.5, 844.5], [648.5, 845.5], [650.5, 845.5], [651.5, 846.5], [654.5, 846.5], [655.5, 847.5], [656.5, 848.5], [657.5, 849.5], [657.5, 850.5], [658.5, 850.5], [658.5, 858.5], [657.5, 858.5], [657.5, 858.5], [657.5, 860.5], [656.5, 859.5], [655.5, 860.5], [654.5, 861.5], [654.5, 861.5], [653.5, 861.5], [653.5, 863.5], [653.5, 865.5], [645.5, 865.5], [646.5, 864.5], [646.5, 863.5], [640.5, 863.5], [640.5, 862.5], [635.5, 862.5], [634.5, 863.5], [633.5, 864.5], [630.5, 864.5], [630.5, 862.5], [629.5, 862.5], [629.5, 861.5]]}, -{"id": "twr3x2", "submitted_by": "Linkcool200", "name": "OnlyNekos Logo", "description": "A specialized logo made specifically for r/place, representing the twitch group OnlyNekos, which includes (Going clockwise starting from the top.) Kromia, Totless, Asby, and Krisuna.", "website": "https://www.twitch.tv/team/onlynekos", "subreddit": "", "center": [1597.5, 1448.5], "path": [[1586.5, 1477.5], [1610.5, 1477.5], [1620.5, 1469.5], [1620.5, 1451.5], [1627.5, 1451.5], [1627.5, 1439.5], [1616.5, 1424.5], [1605.5, 1420.5], [1591.5, 1420.5], [1580.5, 1424.5], [1572.5, 1433.5], [1570.5, 1434.5], [1569.5, 1454.5], [1574.5, 1456.5], [1574.5, 1460.5], [1571.5, 1463.5], [1575.5, 1469.5], [1578.5, 1469.5], [1579.5, 1470.5], [1579.5, 1472.5], [1581.5, 1474.5]]}, -{"id": "twr3w8", "submitted_by": "yamirzmmdx", "name": "In honour of Syd", "description": "In honour of Syd, a 16 year old fan whom got diagnosed with a brain tumor and is going into surgery on April 13th. LiverpoolFC made it for her, together with The Stanley Parable and other neighbors right next to it it got defended until the last moment. She will never walk alone, all the best to her! <3", "website": "", "subreddit": "/r/LiverpoolFC", "center": [523.5, 535.5], "path": [[520.5, 529.5], [527.5, 529.5], [527.5, 541.5], [519.5, 541.5], [519.5, 529.5], [527.5, 529.5]]}, -{"id": "twr2zq", "submitted_by": "Basti1910", "name": "Benson", "description": "An Emote of Twitch streamer Tubbo", "website": "https://twitch.tv/Tubbo", "subreddit": "/r/Tubbo_", "center": [863.5, 1412.5], "path": [[839.5, 1385.5], [839.5, 1439.5], [887.5, 1439.5], [887.5, 1385.5]]}, -{"id": "twr2vr", "submitted_by": "ThorwaldHD", "name": "Nina", "description": "Nina (Melanie in English) is a charachter from the Dutch tv series Nijnte, called Miffy in English.", "website": "https://www.miffy.com/", "subreddit": "/r/PlaceNL", "center": [776.5, 25.5], "path": [[769.5, 35.5], [786.5, 35.5], [787.5, 34.5], [787.5, 32.5], [788.5, 31.5], [788.5, 28.5], [789.5, 27.5], [789.5, 25.5], [787.5, 23.5], [785.5, 23.5], [780.5, 18.5], [780.5, 15.5], [779.5, 14.5], [779.5, 13.5], [776.5, 10.5], [774.5, 10.5], [772.5, 12.5], [772.5, 14.5], [773.5, 15.5], [773.5, 17.5], [774.5, 18.5], [773.5, 18.5], [773.5, 17.5], [772.5, 16.5], [772.5, 15.5], [770.5, 13.5], [769.5, 13.5], [768.5, 12.5], [767.5, 12.5], [765.5, 14.5], [765.5, 17.5], [766.5, 18.5], [766.5, 19.5], [769.5, 22.5], [768.5, 23.5], [768.5, 28.5], [767.5, 28.5], [765.5, 30.5], [765.5, 32.5], [767.5, 34.5], [768.5, 34.5], [769.5, 35.5]]}, -{"id": "twr2qu", "submitted_by": "Melter30", "name": "Mist", "description": "The iconic voice line of Bernd das Brot, meaning 'Damn'.", "website": "https://en.wikipedia.org/wiki/Bernd_das_Brot", "subreddit": "/r/placeDE", "center": [229.5, 838.5], "path": [[217.5, 844.5], [217.5, 842.5], [218.5, 842.5], [218.5, 834.5], [220.5, 833.5], [239.5, 833.5], [240.5, 842.5], [240.5, 843.5], [222.5, 843.5], [222.5, 844.5], [217.5, 844.5]]}, -{"id": "twr24v", "submitted_by": "mizuPepe", "name": "Kitagawa Marin", "description": "Chibi rendition of the protagonist of the anime & manga series My Dress-up Darling", "website": "https://discord.gg/vh5zRNY", "subreddit": "/r/SonoBisqueDoll", "center": [1678.5, 706.5], "path": [[1664.5, 691.5], [1665.5, 722.5], [1688.5, 722.5], [1688.5, 710.5], [1694.5, 710.5], [1695.5, 702.5], [1687.5, 694.5], [1687.5, 690.5], [1664.5, 690.5]]}, -{"id": "twr1y9", "submitted_by": "FlyingKiwiNZ", "name": "The Ghost of Kyiv", "description": "The Ghost of Kyiv is the nickname given to a MiG-29 Fulcrum flying ace credited with shooting down six Russian planes over Kyiv during the Kyiv offensive.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [411.5, 221.5], "path": [[381.5, 194.5], [385.5, 199.5], [387.5, 203.5], [392.5, 210.5], [395.5, 216.5], [399.5, 219.5], [398.5, 221.5], [404.5, 226.5], [404.5, 228.5], [406.5, 232.5], [408.5, 233.5], [409.5, 235.5], [409.5, 232.5], [411.5, 233.5], [411.5, 243.5], [414.5, 244.5], [421.5, 236.5], [424.5, 236.5], [427.5, 235.5], [427.5, 233.5], [429.5, 233.5], [429.5, 231.5], [431.5, 230.5], [433.5, 230.5], [433.5, 224.5], [428.5, 225.5], [428.5, 223.5], [423.5, 223.5], [425.5, 222.5], [428.5, 222.5], [428.5, 221.5], [432.5, 221.5], [431.5, 219.5], [430.5, 218.5], [405.5, 208.5], [404.5, 208.5], [403.5, 207.5], [402.5, 206.5], [401.5, 205.5], [399.5, 203.5], [397.5, 202.5], [396.5, 201.5], [393.5, 201.5], [391.5, 200.5], [390.5, 199.5], [387.5, 198.5], [386.5, 198.5], [381.5, 194.5]]}, -{"id": "twr1oj", "submitted_by": "nostalgicsobbing", "name": "Pisay logo", "description": "The logo of the Philippine Science High School System campuses, commonly referred to as 'Pisay'.", "website": "https://en.wikipedia.org/wiki/Philippine_Science_High_School_System", "subreddit": "/r/Philippines", "center": [358.5, 715.5], "path": [[352.5, 709.5], [352.5, 720.5], [363.5, 720.5], [363.5, 709.5]]}, -{"id": "twr1hz", "submitted_by": "SuperCrepen", "name": "secret amogus", "description": "a very secret amogus", "website": "", "subreddit": "/r/amogus_place", "center": [1008.5, 1216.5], "path": [[1006.5, 1214.5], [1006.5, 1213.5], [1010.5, 1213.5], [1010.5, 1219.5], [1006.5, 1219.5], [1005.5, 1219.5], [1005.5, 1213.5]]}, -{"id": "twr1g6", "submitted_by": "oddlyawkward", "name": "supertf", "description": "He's the Alienware Monthly Melee January 2017 Champion Overwatch Carbon Series runner-up CyberPowerPC 2017 Extreme Gaming Series Spring Invitational Champion Overwatch League Season 1 9th place finisher Overwatch League Season 2 Stage 1 runner-up Overwatch League Season 2 Golden Stage Player Overwatch League Season 2 Stage 2 Champion Overwatch League Season 2 Stage 3 runner-up Overwatch League Season 2 Champion Overwatch League Season 2 MVP runner-up Overwatch League Season 2 Tank Role Star Overwatch League Season 2 All-Star Overwatch World Cup 2019 Champion Overwatch League Season 3 May Melee Champion Tiny Overwatch Champion 2020 All-Stars Champion Overwatch League Season 3 Champion.", "website": "https://www.twitch.tv/supertf", "subreddit": "/r/supertf", "center": [1463.5, 1369.5], "path": [[1437.5, 1338.5], [1437.5, 1400.5], [1489.5, 1400.5], [1489.5, 1338.5], [1437.5, 1338.5]]}, -{"id": "twr16g", "submitted_by": "mamasbreads", "name": "Spanish caravel", "description": "A Spanish caravel representing Spain's exploration of the New World. The caravel is joining Portugal's sea as a symbol of both countries participation in the exploration of the ocean's in the late 15th century.", "website": "https://en.wikipedia.org/wiki/Caravel", "subreddit": "/r/esPlace", "center": [1177.5, 294.5], "path": [[1161.5, 307.5], [1161.5, 281.5], [1193.5, 281.5], [1194.5, 308.5]]}, -{"id": "twr126", "submitted_by": "MrBonziBuddy", "name": "3 regions of Belgium", "description": "This symbol was created by combining the symbols from the Dutch/Flemish-speaking community (The Black Lion), The French/Wallonian-speaking community (Red Rooster) and German Speaking community (the Blue Flowers) together. All people that worked on the Belgian pixelart on r/place spoke any of those languages but this symbol signifies their unity.", "website": "", "subreddit": "/r/Belgium, /r/Belgium2, /r/Belgica", "center": [1308.5, 1259.5], "path": [[1286.5, 1236.5], [1331.5, 1236.5], [1330.5, 1283.5], [1285.5, 1282.5]]}, -{"id": "twr0rn", "submitted_by": "JonnyCorry", "name": "r/LiverpoolFC", "description": "An artwork for Liverpool Football Club. Includes the Liverbird - a symbol of the city, the famous 'champions wall', club motto 'You'll Never Walk Alone' and a 97 to remember the 97 victims of the Hillsborough disaster.", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1229.5, 537.5], "path": [[1206.5, 506.5], [1206.5, 510.5], [1206.5, 520.5], [1205.5, 519.5], [1204.5, 519.5], [1203.5, 519.5], [1203.5, 520.5], [1202.5, 520.5], [1202.5, 521.5], [1202.5, 522.5], [1202.5, 523.5], [1202.5, 524.5], [1203.5, 525.5], [1203.5, 526.5], [1204.5, 526.5], [1204.5, 527.5], [1205.5, 527.5], [1205.5, 528.5], [1206.5, 528.5], [1206.5, 567.5], [1206.5, 568.5], [1246.5, 568.5], [1251.5, 568.5], [1251.5, 563.5], [1252.5, 563.5], [1252.5, 562.5], [1253.5, 562.5], [1253.5, 561.5], [1254.5, 561.5], [1254.5, 560.5], [1255.5, 560.5], [1255.5, 555.5], [1254.5, 555.5], [1254.5, 554.5], [1251.5, 554.5], [1251.5, 555.5], [1251.5, 506.5], [1206.5, 506.5]]}, -{"id": "twr0r3", "submitted_by": "javahello", "name": "Flag of Palau", "description": "Made in collaboration with r/Taiwan and others.", "website": "https://www.reddit.com/r/Palau/comments/ttykuv/palauan_flag_on_rplace/", "subreddit": "/r/Palau", "center": [1207.5, 1267.5], "path": [[1203.5, 1264.5], [1203.5, 1269.5], [1213.5, 1269.5], [1208.5, 1264.5], [1203.5, 1264.5]]}, -{"id": "twr0nb", "submitted_by": "yamirzmmdx", "name": "In Klopp We Trust", "description": "In honour of one of the greatest manager and human being.nWe battled a shit streamer invading Algeria and secured victory numerous times. Fuck Peru streamer that took our orginal spot.nCORNER TAKEN QUICKLY, ORIGI!nYNWA.n", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1632.5, 1565.5], "path": [[1594.5, 1539.5], [1594.5, 1579.5], [1700.5, 1579.5], [1700.5, 1570.5], [1684.5, 1570.5], [1684.5, 1573.5], [1685.5, 1574.5], [1668.5, 1573.5], [1668.5, 1557.5], [1620.5, 1557.5], [1620.5, 1539.5], [1594.5, 1539.5]]}, -{"id": "twqzsb", "submitted_by": "admiraal_anaal69", "name": "Stromae", "description": "the face of the belgian artist Stromae", "website": "", "subreddit": "/r/belgium", "center": [1308.5, 1793.5], "path": [[1298.5, 1813.5], [1306.5, 1819.5], [1311.5, 1812.5], [1312.5, 1811.5], [1314.5, 1806.5], [1322.5, 1805.5], [1323.5, 1796.5], [1326.5, 1793.5], [1322.5, 1790.5], [1321.5, 1783.5], [1321.5, 1778.5], [1318.5, 1777.5], [1313.5, 1775.5], [1307.5, 1773.5], [1301.5, 1772.5], [1297.5, 1776.5], [1293.5, 1785.5], [1294.5, 1793.5], [1297.5, 1797.5], [1298.5, 1801.5], [1299.5, 1813.5]]}, -{"id": "twqzm5", "submitted_by": "BlazingFire007", "name": "University of Alabama", "description": "The University of Alabama. Most notably known for its football program.", "website": "https://www.ua.edu/", "subreddit": "/r/rolltide", "center": [1520.5, 1731.5], "path": [[1512.5, 1723.5], [1512.5, 1739.5], [1527.5, 1739.5], [1527.5, 1723.5], [1512.5, 1723.5]]}, -{"id": "twqzhw", "submitted_by": "Veilmisk", "name": "TWICE", "description": "A female K-Pop group composed of 9 members. The colored squares on the left represent each member's assigned color and the lollipop next to the logo is a candy bong lightstick.", "website": "https://mobile.twitter.com/jypetwice?lang=en", "subreddit": "/r/twice", "center": [1566.5, 881.5], "path": [[1525.5, 870.5], [1587.5, 870.5], [1587.5, 897.5], [1558.5, 897.5], [1558.5, 876.5], [1525.5, 876.5]]}, -{"id": "twqzg7", "submitted_by": "Enframed", "name": "Oliver Tree", "description": "r/OliverTree's pixel-art rendition of Oliver Tree's Alien Boy EP Coverart.", "website": "", "subreddit": "/r/olivertree", "center": [650.5, 1309.5], "path": [[645.5, 1304.5], [654.5, 1304.5], [654.5, 1313.5], [645.5, 1313.5]]}, -{"id": "twqz0o", "submitted_by": "Adarain", "name": "Conlang flag", "description": "The flag for constructed languages. Constructed languages are languages created by people as an artform, as experiments to push the boundaries of what language can and cannot do, or to try to help people from different backgrounds communicate with one another. The flag depicts a stylized version of the Tower of Babel in front of a rising sun.", "website": "https://conlang.org/conlang-flag/", "subreddit": "/r/conlangs", "center": [735.5, 329.5], "path": [[732.5, 326.5], [732.5, 331.5], [738.5, 331.5], [738.5, 326.5], [732.5, 326.5]]}, -{"id": "twqyg2", "submitted_by": "OKamers", "name": "Romelu Lukaku and Kevin De Bruyne", "description": "Remake of an iconic picture from the 2014 World Cup in Brazil.", "website": "https://sportmagazine.knack.be/medias/14435/7391149.jpg", "subreddit": "/r/belgium", "center": [1308.5, 1395.5], "path": [[1310.5, 1370.5], [1306.5, 1369.5], [1304.5, 1370.5], [1306.5, 1373.5], [1285.5, 1394.5], [1286.5, 1403.5], [1292.5, 1411.5], [1297.5, 1411.5], [1330.5, 1411.5], [1330.5, 1395.5], [1324.5, 1386.5], [1313.5, 1375.5], [1315.5, 1370.5], [1310.5, 1369.5]]}, -{"id": "twqxe8", "submitted_by": "Explodingmemes", "name": "Maryland's Flag", "description": "The flag excels as a state banner because it commemorates the vision of unity in diversity. This is why Maryland's flag is considered the best flag in the Union by their residents!", "website": "https://www.visitmaryland.org/", "subreddit": "/r/Maryland", "center": [267.5, 19.5], "path": [[232.5, 14.5], [248.5, 14.5], [248.5, 0.5], [296.5, 0.5], [297.5, 35.5], [232.5, 35.5], [232.5, 15.5], [232.5, 14.5]]}, -{"id": "twqxc9", "name": "Tails Gets Trolled", "description": "The official logo and iconic Tails Gets Trolled face from the webcomic of the same name.", "website": "http://www.tailsgetstrolled.org", "subreddit": "/r/RealTailsGetsTrolled", "center": [1817.5, 1626.5], "path": [[1808.5, 1612.5], [1808.5, 1639.5], [1825.5, 1639.5], [1825.5, 1612.5]]}, -{"id": "twqxab", "submitted_by": "mamasbreads", "name": "Spanish coat of arms", "description": "Found on the Spanish flag, the coat of arms is composed of the four medieval kingdoms which formed Spain: Castilla (top-left), Leon (top-right), Aragon (bottom-left), and Navarra (bottom-right). The Spanish crown is on top of the coat of arms, while on either side are the Pillars of Hercules from Greek mythology.", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Spain", "subreddit": "/r/esPlace", "center": [1413.5, 296.5], "path": [[1396.5, 279.5], [1396.5, 313.5], [1430.5, 313.5], [1429.5, 279.5]]}, -{"id": "twqx4v", "submitted_by": "oski165", "name": "Helltaker", "description": "A picture of a character from a small Polish videogame Helltaker named Lucifer along with a small logo", "website": "", "subreddit": "", "center": [1990.5, 1254.5], "path": [[1981.5, 1237.5], [1981.5, 1271.5], [1998.5, 1271.5], [1999.5, 1237.5]]}, -{"id": "twqx0n", "submitted_by": "FakeGoonmachine", "name": "Ironman Mode", "description": "These three helmets represent 3 'Ironman' game modes within RuneScape: Standard, Hardcore, and Ultimate. Ironman Mode is an account type that requires the player to be entirely self-sufficient. Ironmen are locked out of or restricted in most forms of interactions with other players such as trading, the Grand Exchange, PvP, most group minigames, and almost all other group activities.", "website": "https://oldschool.runescape.wiki/w/Ironman_Mode", "subreddit": "/r/ironscape, /r/2007scape", "center": [90.5, 42.5], "path": [[63.5, 50.5], [63.5, 34.5], [117.5, 34.5], [117.5, 50.5], [63.5, 50.5]]}, -{"id": "twqwya", "submitted_by": "TobbyMLP", "name": "Discord", "description": "A draconequus and one of the main villains in My Little Pony: Friendship is Magic. He represent chaos and disharmony. He is a beloved character in the MLP community due to his personality and voice actor, John de Lancie.", "website": "https://mlp.fandom.com/wiki/Discord", "subreddit": "/r/MyLittlePony", "center": [1080.5, 1531.5], "path": [[1079.5, 1524.5], [1079.5, 1524.5], [1080.5, 1525.5], [1081.5, 1523.5], [1080.5, 1520.5], [1082.5, 1517.5], [1081.5, 1516.5], [1077.5, 1519.5], [1076.5, 1516.5], [1074.5, 1516.5], [1075.5, 1522.5], [1072.5, 1523.5], [1073.5, 1526.5], [1071.5, 1527.5], [1076.5, 1534.5], [1072.5, 1544.5], [1079.5, 1544.5], [1080.5, 1539.5], [1082.5, 1544.5], [1085.5, 1545.5], [1085.5, 1541.5], [1092.5, 1542.5], [1090.5, 1538.5], [1084.5, 1536.5], [1090.5, 1526.5], [1085.5, 1522.5]]}, -{"id": "twqwbs", "submitted_by": "Explodingmemes", "name": "Waldo", "description": "You found him!", "website": "", "subreddit": "", "center": [1729.5, 287.5], "path": [[1722.5, 311.5], [1737.5, 311.5], [1738.5, 310.5], [1739.5, 309.5], [1739.5, 306.5], [1739.5, 305.5], [1734.5, 305.5], [1733.5, 304.5], [1733.5, 290.5], [1734.5, 293.5], [1735.5, 295.5], [1736.5, 297.5], [1737.5, 297.5], [1739.5, 300.5], [1741.5, 300.5], [1751.5, 310.5], [1751.5, 311.5], [1754.5, 311.5], [1754.5, 310.5], [1744.5, 300.5], [1744.5, 295.5], [1743.5, 294.5], [1742.5, 294.5], [1740.5, 292.5], [1740.5, 291.5], [1739.5, 291.5], [1735.5, 287.5], [1734.5, 285.5], [1734.5, 276.5], [1735.5, 276.5], [1736.5, 275.5], [1736.5, 272.5], [1736.5, 271.5], [1737.5, 270.5], [1737.5, 265.5], [1733.5, 265.5], [1732.5, 263.5], [1726.5, 263.5], [1724.5, 261.5], [1723.5, 261.5], [1722.5, 262.5], [1722.5, 263.5], [1721.5, 264.5], [1721.5, 267.5], [1721.5, 268.5], [1720.5, 269.5], [1720.5, 270.5], [1721.5, 271.5], [1721.5, 275.5], [1722.5, 276.5], [1722.5, 278.5], [1723.5, 279.5], [1723.5, 282.5], [1719.5, 282.5], [1718.5, 281.5], [1718.5, 278.5], [1718.5, 277.5], [1720.5, 277.5], [1720.5, 274.5], [1718.5, 273.5], [1717.5, 272.5], [1716.5, 274.5], [1715.5, 271.5], [1714.5, 273.5], [1713.5, 272.5], [1712.5, 277.5], [1713.5, 278.5], [1713.5, 284.5], [1714.5, 285.5], [1715.5, 286.5], [1719.5, 286.5], [1720.5, 287.5], [1722.5, 287.5], [1723.5, 288.5], [1723.5, 302.5], [1722.5, 303.5], [1722.5, 311.5]]}, -{"id": "twqw5b", "submitted_by": "ItsVukkyHere", "name": "Vukky", "description": "The persona of a human being also called Vukky. The character is often associated with his software development group, which uses the character as its mascot.", "website": "https://sus.omg.lol", "subreddit": "/r/vukkit, /r/place_CentralAlliance", "center": [600.5, 869.5], "path": [[593.5, 867.5], [591.5, 869.5], [594.5, 867.5], [595.5, 871.5], [596.5, 872.5], [603.5, 872.5], [604.5, 871.5], [605.5, 870.5], [605.5, 867.5]]}, -{"id": "twqvz1", "submitted_by": "Embarrassed_Plum_557", "name": "Most disputed corner of r/place", "description": "Corner between r/osuplace and Superstonk, disputed from the beginning to the end", "website": "", "subreddit": "/r/osuplace", "center": [773.5, 743.5], "path": [[770.5, 756.5], [770.5, 734.5], [778.5, 735.5], [775.5, 746.5], [774.5, 750.5], [772.5, 756.5], [770.5, 756.5]]}, -{"id": "twqvtx", "submitted_by": "Dragonsmissyou", "name": "UnsurpassableZ", "description": "A Poster from a YouTuber known as unsurpassableZ, he mainly does Stardew content.", "website": "https://www.youtube.com/channel/UCnBVj0rivE8iamtAzeziO5Q", "subreddit": "/r/UnsurpassableZ", "center": [1558.5, 812.5], "path": [[1525.5, 804.5], [1542.5, 804.5], [1542.5, 799.5], [1553.5, 799.5], [1554.5, 784.5], [1578.5, 785.5], [1579.5, 819.5], [1599.5, 819.5], [1599.5, 830.5], [1524.5, 829.5], [1524.5, 804.5]]}, -{"id": "twqvn5", "submitted_by": "PlanetaceOfficial", "name": "Phtanum B", "description": "An attempt at creating a tribute to the Phtanum B project, created by Stevemobcannon.", "website": "", "subreddit": "", "center": [1831.5, 1282.5], "path": [[1830.5, 1280.5], [1829.5, 1280.5], [1832.5, 1280.5], [1834.5, 1282.5], [1832.5, 1284.5], [1829.5, 1284.5], [1829.5, 1280.5]]}, -{"id": "twquj6", "submitted_by": "maxpower778", "name": "Mortadelo y Filemón", "description": "The most famous comic characters from Spain. They are two detectives that work for an agency, causing many shenanigans. They were created by Francisco Ibáñez in 1958, and the comic has been published in more than a dozen languages.", "website": "https://mortadelo-filemon.es/", "subreddit": "/r/esPlace", "center": [942.5, 296.5], "path": [[936.5, 281.5], [944.5, 281.5], [945.5, 286.5], [947.5, 286.5], [948.5, 287.5], [950.5, 287.5], [949.5, 286.5], [953.5, 284.5], [958.5, 288.5], [959.5, 291.5], [960.5, 294.5], [963.5, 296.5], [964.5, 298.5], [958.5, 306.5], [956.5, 308.5], [929.5, 308.5], [924.5, 301.5], [922.5, 296.5], [926.5, 291.5], [930.5, 293.5], [932.5, 289.5], [926.5, 286.5], [926.5, 284.5], [928.5, 280.5], [936.5, 281.5]]}, -{"id": "twqtmr", "submitted_by": "VeryAwkwardDude", "name": "18-25 / :noel: and :hap:", "description": "Place constructed by the 18-25, A popular French forum.nThe two emoticons, :noel: (left) and :hap: (right) are popular emoticons used on the website.", "website": "https://www.jeuxvideo.com/forums/0-51-0-1-0-1-0-blabla-18-25-ans.htm", "subreddit": "", "center": [452.5, 1386.5], "path": [[436.5, 1374.5], [436.5, 1398.5], [467.5, 1399.5], [468.5, 1374.5], [436.5, 1374.5]]}, -{"id": "twqtdy", "submitted_by": "theminortom", "name": "Tigerenten Club", "description": "Tigerenten Club is a German children's television programme. The programme involves a mix of games, quizzes, cartoons and outside reports from the presenters and children, with the aim to educate and entertain. This art depicts the show's two main characters, the Tigerente and the frog.", "website": "https://en.wikipedia.org/wiki/Tigerenten_Club", "subreddit": "/r/placeDE", "center": [1468.5, 846.5], "path": [[1406.5, 848.5], [1410.5, 852.5], [1412.5, 852.5], [1415.5, 849.5], [1415.5, 851.5], [1417.5, 851.5], [1417.5, 853.5], [1419.5, 853.5], [1419.5, 851.5], [1421.5, 851.5], [1421.5, 849.5], [1422.5, 849.5], [1422.5, 853.5], [1425.5, 856.5], [1427.5, 854.5], [1427.5, 851.5], [1428.5, 851.5], [1428.5, 852.5], [1428.5, 853.5], [1429.5, 853.5], [1429.5, 855.5], [1430.5, 855.5], [1430.5, 856.5], [1431.5, 856.5], [1431.5, 857.5], [1431.5, 858.5], [1432.5, 858.5], [1432.5, 863.5], [1433.5, 863.5], [1433.5, 865.5], [1435.5, 865.5], [1435.5, 866.5], [1439.5, 866.5], [1439.5, 865.5], [1441.5, 865.5], [1441.5, 864.5], [1443.5, 864.5], [1443.5, 863.5], [1446.5, 863.5], [1449.5, 866.5], [1451.5, 866.5], [1452.5, 865.5], [1453.5, 865.5], [1454.5, 864.5], [1455.5, 864.5], [1456.5, 863.5], [1457.5, 864.5], [1459.5, 864.5], [1460.5, 863.5], [1461.5, 864.5], [1462.5, 865.5], [1464.5, 865.5], [1466.5, 863.5], [1467.5, 863.5], [1468.5, 862.5], [1470.5, 862.5], [1471.5, 861.5], [1471.5, 860.5], [1472.5, 859.5], [1472.5, 857.5], [1474.5, 857.5], [1474.5, 854.5], [1475.5, 854.5], [1475.5, 853.5], [1476.5, 853.5], [1476.5, 856.5], [1477.5, 857.5], [1477.5, 861.5], [1475.5, 863.5], [1475.5, 866.5], [1492.5, 866.5], [1492.5, 863.5], [1491.5, 863.5], [1490.5, 862.5], [1489.5, 861.5], [1489.5, 859.5], [1491.5, 859.5], [1492.5, 860.5], [1493.5, 860.5], [1494.5, 859.5], [1497.5, 859.5], [1500.5, 856.5], [1500.5, 855.5], [1504.5, 851.5], [1504.5, 850.5], [1505.5, 849.5], [1505.5, 848.5], [1506.5, 847.5], [1506.5, 846.5], [1507.5, 845.5], [1507.5, 844.5], [1508.5, 843.5], [1508.5, 842.5], [1508.5, 836.5], [1509.5, 836.5], [1509.5, 828.5], [1514.5, 828.5], [1514.5, 827.5], [1515.5, 827.5], [1515.5, 826.5], [1516.5, 825.5], [1516.5, 820.5], [1515.5, 820.5], [1515.5, 819.5], [1515.5, 818.5], [1512.5, 818.5], [1511.5, 817.5], [1511.5, 816.5], [1512.5, 816.5], [1512.5, 812.5], [1511.5, 812.5], [1511.5, 810.5], [1509.5, 810.5], [1509.5, 809.5], [1507.5, 809.5], [1507.5, 810.5], [1505.5, 810.5], [1505.5, 809.5], [1503.5, 809.5], [1501.5, 811.5], [1501.5, 812.5], [1500.5, 812.5], [1500.5, 816.5], [1501.5, 816.5], [1501.5, 818.5], [1498.5, 818.5], [1498.5, 819.5], [1497.5, 820.5], [1497.5, 821.5], [1496.5, 822.5], [1496.5, 824.5], [1497.5, 825.5], [1497.5, 825.5], [1498.5, 825.5], [1499.5, 826.5], [1499.5, 827.5], [1500.5, 828.5], [1505.5, 828.5], [1506.5, 829.5], [1506.5, 836.5], [1505.5, 836.5], [1505.5, 841.5], [1504.5, 841.5], [1504.5, 841.5], [1503.5, 843.5], [1502.5, 843.5], [1502.5, 845.5], [1501.5, 845.5], [1501.5, 847.5], [1500.5, 847.5], [1500.5, 848.5], [1499.5, 848.5], [1499.5, 850.5], [1498.5, 850.5], [1498.5, 851.5], [1497.5, 851.5], [1497.5, 850.5], [1496.5, 850.5], [1496.5, 849.5], [1495.5, 849.5], [1495.5, 848.5], [1496.5, 848.5], [1496.5, 842.5], [1493.5, 841.5], [1493.5, 840.5], [1491.5, 840.5], [1491.5, 837.5], [1490.5, 837.5], [1490.5, 836.5], [1485.5, 836.5], [1485.5, 837.5], [1484.5, 837.5], [1484.5, 838.5], [1483.5, 838.5], [1483.5, 837.5], [1482.5, 837.5], [1482.5, 836.5], [1477.5, 836.5], [1471.5, 830.5], [1470.5, 831.5], [1468.5, 831.5], [1467.5, 832.5], [1465.5, 832.5], [1463.5, 834.5], [1464.5, 835.5], [1464.5, 836.5], [1465.5, 837.5], [1466.5, 838.5], [1465.5, 839.5], [1462.5, 839.5], [1461.5, 838.5], [1460.5, 837.5], [1455.5, 837.5], [1454.5, 836.5], [1452.5, 836.5], [1449.5, 837.5], [1448.5, 838.5], [1447.5, 839.5], [1446.5, 840.5], [1445.5, 842.5], [1445.5, 844.5], [1443.5, 844.5], [1442.5, 843.5], [1441.5, 843.5], [1440.5, 842.5], [1431.5, 842.5], [1431.5, 843.5], [1430.5, 844.5], [1429.5, 844.5], [1429.5, 847.5], [1428.5, 847.5], [1428.5, 849.5], [1425.5, 849.5], [1424.5, 849.5], [1424.5, 847.5], [1421.5, 847.5], [1421.5, 846.5], [1419.5, 846.5], [1419.5, 849.5], [1417.5, 849.5], [1417.5, 847.5], [1416.5, 847.5], [1416.5, 846.5], [1413.5, 843.5], [1412.5, 843.5], [1411.5, 844.5], [1410.5, 843.5], [1409.5, 843.5], [1406.5, 846.5]]}, -{"id": "twqt0k", "submitted_by": "Nameless1101", "name": "Lyria", "description": "One of the female protagonists of Granblue Fantasy, a mobile Japanese role-playing game developed by Cygames.", "website": "https://gbf.wiki/Lyria_(Event)/Lore", "subreddit": "/r/Granblue_en", "center": [1451.5, 1740.5], "path": [[1440.5, 1727.5], [1440.5, 1754.5], [1457.5, 1754.5], [1457.5, 1748.5], [1464.5, 1748.5], [1464.5, 1732.5], [1456.5, 1732.5], [1456.5, 1727.5]]}, -{"id": "twqszg", "submitted_by": "panikjoker", "name": "Toothless", "description": "A depiction of toothless the night fury from the how to train your dragon film franchise", "website": "", "subreddit": "/r/httyd", "center": [847.5, 694.5], "path": [[829.5, 672.5], [865.5, 673.5], [864.5, 693.5], [863.5, 693.5], [863.5, 709.5], [857.5, 709.5], [856.5, 716.5], [851.5, 722.5], [841.5, 722.5], [837.5, 716.5], [836.5, 710.5], [830.5, 706.5]]}, -{"id": "twqsgq", "submitted_by": "Explodingmemes", "name": "Celeste", "description": "A section of art dedicated to the game Celeste by Maddy Thorson. It features a background in the colors of the transgender pride flag, as both the writer and main character of the game are trans.", "website": "http://www.celestegame.com/", "subreddit": "/r/CelesteGame", "center": [1030.5, 871.5], "path": [[965.5, 853.5], [965.5, 886.5], [1085.5, 886.5], [1085.5, 880.5], [1130.5, 880.5], [1130.5, 869.5], [1062.5, 870.5], [1060.5, 867.5], [1059.5, 864.5], [1057.5, 862.5], [1056.5, 861.5], [1056.5, 858.5], [1056.5, 853.5], [965.5, 853.5]]}, -{"id": "twqs9s", "submitted_by": "Lolahunter67", "name": "CBT Family", "description": "The Logo of our honorable CBT Family! After many restless Nights, we can finally enjoy CBT in Peace. Thanks to everyone who helped us along the way! SJJJJFLG <3", "website": "https://www.youtube.com/watch?v=3847Xkzovt4", "subreddit": "/r/CBT", "center": [766.5, 689.5], "path": [[767.5, 696.5], [756.5, 685.5], [775.5, 685.5], [775.5, 687.5], [767.5, 696.5]]}, -{"id": "twqs8f", "submitted_by": "Dinkelwecken", "name": "Orange portal", "description": "An orange portal, a reference to the Portal games. It was build by the Germans and the Portal community to connect the split flags after the first canvas expansion because they didn't want to destroy the artworks in between.", "website": "https://en.wikipedia.org/wiki/Portal_(video_game)", "subreddit": "/r/placeDE, /r/Portal", "center": [765.5, 847.5], "path": [[771.5, 865.5], [759.5, 865.5], [758.5, 830.5], [772.5, 829.5]]}, -{"id": "twqrbr", "submitted_by": "Oofio128", "name": "Derpy Hooves", "description": "A giant version of Derpy Hooves, a popular background character from the My Little Pony franchise.\n\nShe was not constructed by the r/MyLittlePony subreddit nor the Manechat Discord server, instead being created by the Russian streamer Bratishkinoff during the last day of r/place. While this was initially caused panic from the MLP fandom as they feared a last minute raid from Twitch streamer Mizkif, Bratishkinoff helped to distract Mizkif up until the last moments of r/place, ensuring that the fandom's artworks were part of r/place history.", "website": "https://www.twitch.tv/bratishkinoff/about", "subreddit": "", "center": [931.5, 1668.5], "path": [[907.5, 1701.5], [899.5, 1689.5], [897.5, 1684.5], [898.5, 1678.5], [901.5, 1677.5], [903.5, 1677.5], [903.5, 1674.5], [904.5, 1673.5], [904.5, 1672.5], [903.5, 1672.5], [893.5, 1664.5], [895.5, 1661.5], [898.5, 1659.5], [902.5, 1661.5], [903.5, 1660.5], [903.5, 1658.5], [899.5, 1655.5], [898.5, 1654.5], [893.5, 1649.5], [893.5, 1646.5], [894.5, 1644.5], [901.5, 1646.5], [902.5, 1647.5], [904.5, 1643.5], [907.5, 1636.5], [904.5, 1636.5], [899.5, 1641.5], [900.5, 1636.5], [905.5, 1629.5], [906.5, 1628.5], [904.5, 1626.5], [911.5, 1623.5], [915.5, 1622.5], [930.5, 1621.5], [939.5, 1625.5], [942.5, 1621.5], [944.5, 1621.5], [951.5, 1631.5], [952.5, 1641.5], [950.5, 1654.5], [953.5, 1654.5], [959.5, 1648.5], [968.5, 1646.5], [972.5, 1646.5], [976.5, 1647.5], [978.5, 1649.5], [978.5, 1652.5], [976.5, 1654.5], [971.5, 1658.5], [966.5, 1656.5], [956.5, 1656.5], [954.5, 1658.5], [956.5, 1660.5], [960.5, 1661.5], [964.5, 1663.5], [964.5, 1670.5], [967.5, 1672.5], [965.5, 1674.5], [964.5, 1678.5], [962.5, 1682.5], [957.5, 1681.5], [954.5, 1684.5], [953.5, 1686.5], [954.5, 1694.5], [955.5, 1696.5], [954.5, 1698.5], [953.5, 1703.5], [951.5, 1708.5], [951.5, 1713.5], [951.5, 1717.5], [948.5, 1722.5], [945.5, 1723.5], [936.5, 1724.5], [930.5, 1721.5], [924.5, 1717.5], [923.5, 1703.5], [928.5, 1695.5], [928.5, 1692.5], [922.5, 1693.5], [918.5, 1694.5], [918.5, 1697.5], [914.5, 1702.5], [911.5, 1702.5], [907.5, 1701.5]]}, -{"id": "twqr4q", "submitted_by": "Explodingmemes", "name": "OMORI White Space", "description": "OMORI is a psychological horror indie RPG made by OMOCAT. This area is a tribute to White Space, a location in the game, commonly known as 'A place to survive, but not to live.' MEWO, OMORI, SOMETHING, HERO, MARI, Mini KEL, Mini AUBREY, HUMPHREY, and OMOLI are seen here. The stance on r/omori through place was to be as friendly as possible, so some of White Space was lended to good allies, such as WCUE, r/picturegame, and Lisa: The Painful.", "website": "https://www.omori-game.com/", "subreddit": "/r/omori", "center": [1002.5, 825.5], "path": [[909.5, 800.5], [920.5, 800.5], [920.5, 795.5], [923.5, 792.5], [924.5, 792.5], [926.5, 794.5], [927.5, 794.5], [931.5, 798.5], [932.5, 799.5], [951.5, 799.5], [952.5, 799.5], [958.5, 793.5], [960.5, 793.5], [960.5, 794.5], [961.5, 795.5], [961.5, 801.5], [963.5, 802.5], [1123.5, 802.5], [1123.5, 830.5], [1065.5, 830.5], [1060.5, 830.5], [1057.5, 837.5], [1056.5, 850.5], [1055.5, 853.5], [909.5, 853.5], [909.5, 826.5], [908.5, 825.5], [909.5, 824.5], [909.5, 800.5]]}, -{"id": "twqqqg", "submitted_by": "heyhowzitgoinn", "name": "Wizard 101", "description": "The spiral logo for the game Wizard 101 (bottom), an mmorpg developed by the company Kingsisle Entertainment, and the flag logo (top) for its sister game Pirate 101.", "website": "https://www.wizard101.com", "subreddit": "/r/Wizard101", "center": [1183.5, 443.5], "path": [[1197.5, 465.5], [1183.5, 465.5], [1174.5, 465.5], [1170.5, 465.5], [1170.5, 463.5], [1170.5, 461.5], [1170.5, 459.5], [1170.5, 457.5], [1170.5, 455.5], [1170.5, 453.5], [1170.5, 452.5], [1169.5, 452.5], [1169.5, 447.5], [1169.5, 446.5], [1171.5, 443.5], [1173.5, 440.5], [1173.5, 439.5], [1173.5, 429.5], [1173.5, 426.5], [1173.5, 423.5], [1173.5, 420.5], [1173.5, 417.5], [1185.5, 418.5], [1191.5, 417.5], [1192.5, 433.5], [1192.5, 434.5], [1196.5, 434.5], [1196.5, 444.5], [1196.5, 445.5], [1197.5, 446.5]]}, -{"id": "twqoqx", "submitted_by": "fruselight", "name": "Girls' Frontline", "description": "You play as a freshly hired Commander sent to a peaceful sector of 09, except it isn't peaceful and you have diet Skynet fighting you.", "website": "http://gf.sunborngame.com/", "subreddit": "/r/girlsfrontline", "center": [1601.5, 1733.5], "path": [[1576.5, 1712.5], [1576.5, 1740.5], [1582.5, 1740.5], [1582.5, 1741.5], [1584.5, 1741.5], [1585.5, 1741.5], [1585.5, 1742.5], [1586.5, 1742.5], [1586.5, 1743.5], [1587.5, 1744.5], [1587.5, 1744.5], [1588.5, 1744.5], [1588.5, 1746.5], [1588.5, 1746.5], [1589.5, 1746.5], [1589.5, 1752.5], [1588.5, 1753.5], [1588.5, 1754.5], [1588.5, 1755.5], [1587.5, 1756.5], [1587.5, 1757.5], [1587.5, 1758.5], [1587.5, 1759.5], [1588.5, 1759.5], [1588.5, 1760.5], [1611.5, 1760.5], [1611.5, 1759.5], [1611.5, 1758.5], [1612.5, 1758.5], [1613.5, 1757.5], [1614.5, 1756.5], [1615.5, 1755.5], [1616.5, 1754.5], [1616.5, 1753.5], [1617.5, 1753.5], [1617.5, 1752.5], [1618.5, 1752.5], [1618.5, 1751.5], [1619.5, 1751.5], [1619.5, 1750.5], [1620.5, 1750.5], [1620.5, 1749.5], [1621.5, 1749.5], [1621.5, 1748.5], [1622.5, 1748.5], [1622.5, 1747.5], [1623.5, 1747.5], [1624.5, 1747.5], [1624.5, 1712.5]]}, -{"id": "twqobc", "submitted_by": "Mousey128", "name": "OTT", "description": "OTT is a multiband compressor plugin developed by Xfer. It's a very popular audio effect used by music producers and has become an inside joke due to its widespread usage. This art piece was made by electronic music producer Eliminate and his Twitch viewers.", "website": "https://www.twitch.tv/eliminatehq", "subreddit": "/r/EliminateHQ", "center": [1404.5, 1624.5], "path": [[1395.5, 1612.5], [1395.5, 1636.5], [1413.5, 1636.5], [1413.5, 1612.5]]}, -{"id": "twqob2", "submitted_by": "Oofio128", "name": "Twilight Sparkle", "description": "An hidden art of Twilight Sparkle, a main character of the show My Little Pony: Friendship is Magic.\n\nInitially, she was to be included in the MLP fandom's original design on r/place, peering over \"The Elements of Harmony: A Reference Guide\" alongside MLP Gen. 5 protagonist Sunny Starscout. As the event continued, the fandom were forced to abandon this art due to multiple Twitch raids and void attacks. Despite this, this little Twilight Sparkle managed to sneak on by, reminding r/place what could have been.", "website": "https://mlp.fandom.com/wiki/Twilight_Sparkle", "subreddit": "/r/MyLittlePony", "center": [1815.5, 1728.5], "path": [[1808.5, 1723.5], [1824.5, 1723.5], [1823.5, 1734.5], [1807.5, 1734.5], [1807.5, 1723.5]]}, -{"id": "twqnod", "submitted_by": "Immediate-Move-260", "name": "Legends of Idleon MMO", "description": "A free to play idling game available on Steam or the accompanying website.", "website": "https://www.legendsofidleon.com/", "subreddit": "/r/idleon", "center": [1726.5, 657.5], "path": [[1710.5, 637.5], [1710.5, 684.5], [1711.5, 683.5], [1712.5, 682.5], [1713.5, 681.5], [1714.5, 680.5], [1715.5, 679.5], [1717.5, 678.5], [1718.5, 677.5], [1719.5, 676.5], [1720.5, 675.5], [1721.5, 674.5], [1722.5, 673.5], [1723.5, 672.5], [1724.5, 672.5], [1724.5, 671.5], [1729.5, 671.5], [1729.5, 672.5], [1730.5, 672.5], [1730.5, 673.5], [1732.5, 673.5], [1732.5, 674.5], [1734.5, 674.5], [1734.5, 675.5], [1735.5, 675.5], [1735.5, 676.5], [1736.5, 676.5], [1736.5, 677.5], [1737.5, 677.5], [1737.5, 678.5], [1738.5, 678.5], [1738.5, 679.5], [1739.5, 679.5], [1739.5, 680.5], [1740.5, 680.5], [1740.5, 681.5], [1741.5, 681.5], [1741.5, 682.5], [1742.5, 682.5], [1742.5, 683.5], [1742.5, 637.5]]}, -{"id": "twqngc", "submitted_by": "Dinkelwecken", "name": "Dachshund", "description": "A dachshund passing through the portals that are connecting the two parts of the German flag. Coordinated art by r/Dachshund and r/placeDE.", "website": "https://en.wikipedia.org/wiki/Dachshund", "subreddit": "/r/Dachshund, /r/placeDE", "center": [917.5, 849.5], "path": [[735.5, 865.5], [1090.5, 869.5], [1086.5, 829.5], [737.5, 831.5]]}, -{"id": "twqmy7", "submitted_by": "Conqu3red", "name": "Momentos De", "description": "Flags of the major factions and more of the Minecraft server, Momentos De.", "website": "", "subreddit": "", "center": [1168.5, 488.5], "path": [[1160.5, 473.5], [1166.5, 473.5], [1166.5, 479.5], [1172.5, 479.5], [1172.5, 503.5], [1166.5, 503.5], [1166.5, 480.5], [1165.5, 479.5], [1160.5, 479.5], [1160.5, 473.5]]}, -{"id": "twqmsj", "submitted_by": "VeryAwkwardDude", "name": "New Lunar Republic", "description": "Logo of the New Lunar Republic, a fan faction based on the show My Little Pony: Friendship is Magic.", "website": "", "subreddit": "/r/MyLittlePony", "center": [982.5, 1665.5], "path": [[957.5, 1656.5], [1007.5, 1656.5], [1007.5, 1661.5], [1004.5, 1661.5], [1005.5, 1671.5], [996.5, 1671.5], [995.5, 1676.5], [966.5, 1676.5], [967.5, 1670.5], [962.5, 1670.5], [963.5, 1663.5], [957.5, 1662.5], [957.5, 1656.5]]}, -{"id": "twqmbc", "submitted_by": "minecrafter2301", "name": "Sprich Deutsch du Hurensohn", "description": "'Sprich Deutsch du Hurensohn' ('Speak german, you son of a bitch') is a phrase used by Germans on the internet as a joke, in situations when someone uses an English word in a comment or conversation. Is not meant to be hurtful to any non-German speakers.", "website": "", "subreddit": "/r/placeDE", "center": [140.5, 838.5], "path": [[113.5, 831.5], [166.5, 831.5], [166.5, 846.5], [114.5, 846.5], [114.5, 845.5], [113.5, 845.5], [113.5, 831.5]]}, -{"id": "twqlyi", "submitted_by": "Malsententia", "name": "Berrytube", "description": "A chat and video \"online bar\" community. Hosts a large music playlist and weekly events including movie nights, anime nights, themed music blocks, and weekend drinking games for My Little Pony and other cartoons, with video games and live hangouts via TeamSpeak and Discord. Dedicated to the core values of \"Ponies, Friends, and Booze\". LGBTQ+ friendly.", "website": "https://berrytube.tv/", "subreddit": "/r/BerrytubeLounge", "center": [981.5, 1866.5], "path": [[962.5, 1888.5], [1000.5, 1888.5], [1000.5, 1846.5], [962.5, 1844.5], [962.5, 1888.5], [1000.5, 1888.5]]}, -{"id": "twqlw3", "submitted_by": "Dinkelwecken", "name": "Soft Taco", "description": "Soft Taco was built in the night between Sunday and Monday by ???. When the Germans came back in the morning to clean their flag, Soft Taco was one of the little artworks to be adopted and protected by the Germans.", "website": "https://en.wikipedia.org/wiki/Taco", "subreddit": "/r/PlaceTaco, /r/placeDE", "center": [100.5, 1166.5], "path": [[90.5, 1172.5], [90.5, 1160.5], [110.5, 1161.5], [111.5, 1172.5]]}, -{"id": "twqlsw", "submitted_by": "R1515LF0NTE", "name": "Delta Cafés", "description": "Delta Cafés is a Portuguese coffee company.", "website": "http://www.deltacafes.com/en", "subreddit": "/r/portugal", "center": [902.5, 399.5], "path": [[902.5, 392.5], [899.5, 392.5], [896.5, 394.5], [896.5, 398.5], [895.5, 401.5], [895.5, 404.5], [896.5, 405.5], [898.5, 406.5], [905.5, 406.5], [908.5, 404.5], [909.5, 401.5], [910.5, 397.5], [908.5, 395.5], [905.5, 392.5], [903.5, 392.5]]}, -{"id": "twqlqt", "submitted_by": "legenddarkrai", "name": "Destiny", "description": "Icons, logos, and references to the popular video game franchise Destiny, a free-to-play online-only multiplayer first-person shooter developed by Bungie. From left to right, top to bottom: there is the Telesto, a Ghost, the Witch Queen symbol, the Traveler above the Tower, the Ace of Spades hand cannon, and a major boss enemy named Rhulk commanding the Black Fleet.", "website": "https://en.wikipedia.org/wiki/Destiny_(video_game)", "subreddit": "/r/destinythegame, /r/Destiny2, /r/place_CentralAlliance", "center": [482.5, 997.5], "path": [[523.5, 1030.5], [448.5, 1030.5], [448.5, 984.5], [432.5, 984.5], [432.5, 973.5], [449.5, 973.5], [449.5, 962.5], [511.5, 962.5], [511.5, 992.5], [523.5, 992.5], [523.5, 1030.5]]}, -{"id": "twql8y", "submitted_by": "PM_ME_YOUR_TREE_PICS", "name": "Loona", "description": "A collaboration between fans of the show Helluva Boss, The games Sky: Children of the Light and Will You Snail, as well as a goose.", "website": "https://discord.gg/Bdqe4J4Rq2", "subreddit": "/r/placeloona", "center": [1668.5, 1059.5], "path": [[1645.5, 1043.5], [1690.5, 1043.5], [1690.5, 1062.5], [1693.5, 1062.5], [1693.5, 1074.5], [1645.5, 1074.5], [1645.5, 1043.5]]}, -{"id": "twql8r", "submitted_by": "Duranu", "name": "Zelda Pixel Art", "description": "An Ocarina, Heart Container, Majora's Mask, Navi, Korok, with Link and Zelda from windwaker by r/Zelda", "website": "", "subreddit": "/r/zelda", "center": [1336.5, 1855.5], "path": [[1366.5, 1875.5], [1323.5, 1875.5], [1322.5, 1848.5], [1300.5, 1846.5], [1300.5, 1836.5], [1344.5, 1834.5], [1348.5, 1842.5], [1348.5, 1858.5], [1366.5, 1858.5], [1366.5, 1875.5]]}, -{"id": "twqkwe", "submitted_by": "Explodingmemes", "name": "Moist Esports", "description": "Moist Esports is an esports organization run by Twitch streamer and YouTuber MoistCr1TiKaL. The Indianapolis Colts originally had their logo here, but moved it after Cr1TiKaL placed his logo here.", "website": "https://www.twitch.tv/moistcr1tikal", "subreddit": "/r/Cr1TiKaL", "center": [1986.5, 98.5], "path": [[1973.5, 82.5], [1999.5, 82.5], [1999.5, 113.5], [1973.5, 113.5]]}, -{"id": "twqktp", "submitted_by": "ItzPhoen1x", "name": "IVE", "description": "K-pop girl group IVE debuted in 2021, and just recently had their comeback", "website": "https://youtu.be/--FmExEAsM8", "subreddit": "/r/IVE", "center": [1715.5, 913.5], "path": [[1710.5, 907.5], [1720.5, 907.5], [1720.5, 920.5], [1710.5, 919.5], [1710.5, 907.5]]}, -{"id": "twqkt1", "submitted_by": "Jasefi", "name": "Oslo Katedralskole", "description": "A small, Norwegian school with just over 600 students created their school emblem to flex on their fellow regional schools. Forced to relocate twice, we ended up grabbing and defending this area during the last two days.", "website": "", "subreddit": "", "center": [660.5, 1307.5], "path": [[656.5, 1303.5], [664.5, 1303.5], [660.5, 1313.5], [656.5, 1306.5], [664.5, 1307.5], [656.5, 1305.5]]}, -{"id": "twqkpr", "submitted_by": "Babyhuehnchen", "name": "Stardew Valley Mallard", "description": "The mallard duck sprite from the game stardew valley, created in a collaboration between r/duck_place, r/stardewvalley. After first being destroyed by xgc, he was rebuilt and placed on the sholder of ratge, an artwork created by Twitch Streamer FranqitoM", "website": "", "subreddit": "/r/duck_place, /r/stardewvalley,", "center": [1700.5, 993.5], "path": [[1703.5, 983.5], [1704.5, 983.5], [1704.5, 984.5], [1705.5, 984.5], [1705.5, 985.5], [1706.5, 985.5], [1706.5, 986.5], [1707.5, 986.5], [1707.5, 988.5], [1708.5, 988.5], [1708.5, 998.5], [1706.5, 998.5], [1706.5, 1001.5], [1696.5, 1001.5], [1696.5, 1000.5], [1695.5, 1000.5], [1694.5, 1000.5], [1694.5, 999.5], [1693.5, 999.5], [1693.5, 998.5], [1692.5, 998.5], [1692.5, 997.5], [1691.5, 997.5], [1691.5, 996.5], [1690.5, 996.5], [1690.5, 991.5], [1691.5, 991.5], [1691.5, 990.5], [1692.5, 990.5], [1692.5, 989.5], [1694.5, 989.5], [1694.5, 988.5], [1696.5, 988.5], [1696.5, 987.5], [1696.5, 986.5], [1697.5, 986.5], [1697.5, 985.5], [1698.5, 985.5], [1698.5, 984.5], [1699.5, 984.5], [1699.5, 983.5], [1702.5, 983.5]]}, -{"id": "twqkk9", "submitted_by": "tiktron", "name": "r/LapfoxTrax", "description": "A subreddit dedicated to the wonderful musical talents of Emma Essex.", "website": "https://lapfoxtrax.fandom.com/wiki/Halley_Labs_Wiki", "subreddit": "/r/lapfoxtrax", "center": [793.5, 1958.5], "path": [[781.5, 1958.5], [781.5, 1964.5], [786.5, 1970.5], [801.5, 1970.5], [805.5, 1964.5], [805.5, 1958.5], [801.5, 1954.5], [801.5, 1945.5], [785.5, 1945.5], [785.5, 1954.5]]}, -{"id": "twqk7t", "submitted_by": "deet0109", "name": "Flag of the SMC x WIRE_FPS Logo", "description": "The Scratch Mapping Community (SMC) agreed to let the streamer WIRE_FPS temporarily take over this area. It depicts the flag used by the SMC with part of WIRE_FPS's logo mixed in.", "website": "https://www.twitch.tv/wire_fps", "subreddit": "/r/ScratchMappers", "center": [3.5, 76.5], "path": [[0.5, 74.5], [6.5, 74.5], [6.5, 78.5], [0.5, 78.5]]}, -{"id": "twqk2v", "submitted_by": "R1515LF0NTE", "name": "Pastel de Nata", "description": "Portuguese egg custard tart pastry, optionally dusted with cinnamon. Outside Portugal, they are particularly popular in other parts of Western Europe, Asia and former Portuguese colonies.", "website": "https://en.wikipedia.org/wiki/Pastel_de_nata", "subreddit": "/r/portugal", "center": [909.5, 383.5], "path": [[906.5, 389.5], [901.5, 385.5], [901.5, 382.5], [902.5, 380.5], [904.5, 378.5], [906.5, 378.5], [907.5, 377.5], [913.5, 377.5], [913.5, 378.5], [915.5, 378.5], [915.5, 379.5], [917.5, 380.5], [918.5, 381.5], [918.5, 384.5], [918.5, 385.5], [916.5, 386.5], [915.5, 387.5], [914.5, 388.5], [913.5, 389.5], [912.5, 390.5], [910.5, 390.5], [907.5, 390.5], [906.5, 389.5]]}, -{"id": "twqk1j", "submitted_by": "Mintybirdd", "name": "ULTRAKILL", "description": "Depiction of the V1 Logo from ULTRAKILL", "website": "https://devilmayquake.com", "subreddit": "/r/Ultrakill", "center": [1360.5, 1808.5], "path": [[1346.5, 1818.5], [1346.5, 1797.5], [1374.5, 1797.5], [1374.5, 1818.5], [1365.5, 1818.5], [1365.5, 1820.5], [1353.5, 1820.5], [1353.5, 1818.5]]}, -{"id": "twqjmc", "submitted_by": "Phats06", "name": "Princess Connect! Re:Dive", "description": "Princess Connect! Re:Dive (プリンセスコネクト! Re:Dive) is a Japanese role-playing video game developed by Cygames. It was released in Japan on February 15, 2018 for Android and iOS, and on May 22, 2018 for Microsoft Windows via DMM Games. A mobile version would later be released in other regions. The game was announced in August 2016 as a sequel to Princess Connect!, which was released on February 18, 2015 and ended service in June 2016. An anime television series adaptation by CygamesPictures aired from April to June 2020. A second season aired from January to March 2022.", "website": "https://priconne-redive.jp/", "subreddit": "/r/Priconne", "center": [1624.5, 1799.5], "path": [[1613.5, 1805.5], [1613.5, 1802.5], [1614.5, 1802.5], [1615.5, 1801.5], [1615.5, 1800.5], [1616.5, 1800.5], [1617.5, 1799.5], [1617.5, 1794.5], [1618.5, 1793.5], [1618.5, 1792.5], [1621.5, 1789.5], [1621.5, 1787.5], [1620.5, 1786.5], [1620.5, 1785.5], [1623.5, 1782.5], [1624.5, 1782.5], [1625.5, 1781.5], [1627.5, 1781.5], [1626.5, 1781.5], [1622.5, 1785.5], [1622.5, 1786.5], [1622.5, 1787.5], [1623.5, 1788.5], [1624.5, 1787.5], [1624.5, 1786.5], [1625.5, 1787.5], [1626.5, 1787.5], [1627.5, 1786.5], [1626.5, 1785.5], [1626.5, 1784.5], [1627.5, 1784.5], [1627.5, 1786.5], [1626.5, 1787.5], [1627.5, 1789.5], [1628.5, 1790.5], [1629.5, 1789.5], [1629.5, 1792.5], [1631.5, 1794.5], [1631.5, 1795.5], [1632.5, 1796.5], [1631.5, 1797.5], [1632.5, 1798.5], [1631.5, 1799.5], [1630.5, 1800.5], [1631.5, 1801.5], [1631.5, 1804.5], [1632.5, 1804.5], [1634.5, 1806.5], [1634.5, 1807.5], [1636.5, 1809.5], [1615.5, 1809.5], [1615.5, 1807.5], [1614.5, 1806.5], [1613.5, 1805.5]]}, -{"id": "twqjdy", "submitted_by": "Explodingmemes", "name": "Magnus Carlsen", "description": "Magnus Carlsen is a Norwegian chess player, and the reigning five-time FIDE World Chess Champion.", "website": "https://en.wikipedia.org/wiki/Magnus_Carlsen", "subreddit": "r/AnarchyChess, /r/place_nordicunion, /r/Norge", "center": [234.5, 66.5], "path": [[216.5, 91.5], [219.5, 88.5], [222.5, 88.5], [223.5, 82.5], [219.5, 72.5], [218.5, 66.5], [218.5, 54.5], [225.5, 42.5], [232.5, 38.5], [236.5, 39.5], [243.5, 40.5], [243.5, 41.5], [247.5, 42.5], [251.5, 48.5], [252.5, 54.5], [252.5, 59.5], [248.5, 65.5], [247.5, 66.5], [247.5, 79.5], [248.5, 84.5], [247.5, 86.5], [250.5, 92.5], [216.5, 92.5], [216.5, 91.5]]}, -{"id": "twqizt", "submitted_by": "bayerslyf", "name": "BT-7472", "description": "Character from the game Titanfall 2. Made by the northstar client discord server with contribution from the Team Fortress 2 and Titanfall 2 communities.", "website": "https://discord.gg/northstar", "subreddit": "", "center": [1546.5, 1952.5], "path": [[1522.5, 1923.5], [1528.5, 1917.5], [1571.5, 1918.5], [1570.5, 1985.5], [1522.5, 1986.5]]}, -{"id": "twqivm", "submitted_by": "theminortom", "name": "Autobahn road sign", "description": "The Autobahn is the federal controlled-access highway system in Germany.", "website": "https://en.wikipedia.org/wiki/Autobahn", "subreddit": "/r/placeDE", "center": [550.5, 849.5], "path": [[549.5, 871.5], [549.5, 860.5], [548.5, 860.5], [548.5, 856.5], [540.5, 856.5], [540.5, 857.5], [539.5, 857.5], [539.5, 840.5], [540.5, 840.5], [540.5, 839.5], [541.5, 839.5], [541.5, 838.5], [559.5, 838.5], [559.5, 839.5], [560.5, 839.5], [560.5, 840.5], [561.5, 840.5], [561.5, 858.5], [560.5, 858.5], [560.5, 859.5], [559.5, 859.5], [559.5, 860.5], [551.5, 860.5], [551.5, 871.5]]}, -{"id": "twqir6", "submitted_by": "Antarioo", "name": "Gekoloniseerd", "description": "A meme by the Dutch reddit community is to colonize or GEKOLONISEERD every comment section of a post about any dutch topic", "website": "", "subreddit": "", "center": [446.5, 24.5], "path": [[384.5, 20.5], [508.5, 20.5], [508.5, 28.5], [384.5, 28.5]]}, -{"id": "twqibg", "submitted_by": "Explodingmemes", "name": "Anarcho-communism flag", "description": "The flag of the anarcho-communism political ideology, an anarchist political ideology that advocates for the abolition of states and hierarchies.", "website": "https://en.wikipedia.org/wiki/Anarcho-communism", "subreddit": "/r/anarchism, /r/anarchocommunism", "center": [35.5, 398.5], "path": [[9.5, 378.5], [9.5, 418.5], [60.5, 418.5], [61.5, 378.5]]}, -{"id": "twqi7m", "submitted_by": "Dinkelwecken", "name": "Weiße Rose", "description": "The White Rose is the symbol of a German student resistance organization against the Nazi regime. Through their work, they became a famous German resistance symbol against totalitarianism and facism. Most members were incarcerated and executed.", "website": "https://en.wikipedia.org/wiki/White_Rose", "subreddit": "/r/placeDE", "center": [1893.5, 845.5], "path": [[1890.5, 868.5], [1901.5, 855.5], [1899.5, 850.5], [1908.5, 845.5], [1905.5, 835.5], [1885.5, 832.5], [1880.5, 837.5], [1881.5, 843.5], [1878.5, 847.5], [1886.5, 852.5], [1893.5, 853.5], [1890.5, 856.5], [1890.5, 865.5], [1888.5, 868.5]]}, -{"id": "twqhov", "submitted_by": "wallmenis", "name": "Greek flag", "description": "Greece, officially the Hellenic Republic, is a country in Southeast Europe. It is situated on the southern tip of the Balkans, and is located at the crossroads of Europe, Asia, and Africa.", "website": "https://www.gov.gr/en/sdg", "subreddit": "/r/greece, /r/GreecePlace", "center": [1459.5, 1944.5], "path": [[1397.5, 1917.5], [1521.5, 1917.5], [1521.5, 1970.5], [1397.5, 1970.5]]}, -{"id": "twqhcq", "submitted_by": "sealmealdeal", "name": "Happy in spite", "description": "Happy in spite is an artwork made by Ivan Seal, which was used by the Caretaker in 'an empty bliss beyond this world'", "website": "", "subreddit": "/r/TheCaretaker", "center": [275.5, 1896.5], "path": [[269.5, 1890.5], [269.5, 1890.5], [269.5, 1890.5], [269.5, 1890.5], [281.5, 1890.5], [281.5, 1901.5], [269.5, 1901.5]]}, -{"id": "twqh82", "submitted_by": "Spiderinmyear", "name": "Blue Kirby", "description": "Kirby is protagonist of the titular Kirby series of video games.", "website": "", "subreddit": "", "center": [467.5, 1505.5], "path": [[464.5, 1496.5], [462.5, 1497.5], [460.5, 1499.5], [459.5, 1501.5], [457.5, 1503.5], [457.5, 1506.5], [458.5, 1507.5], [457.5, 1509.5], [457.5, 1512.5], [476.5, 1512.5], [476.5, 1511.5], [477.5, 1510.5], [477.5, 1506.5], [476.5, 1504.5], [476.5, 1503.5], [474.5, 1501.5], [474.5, 1500.5], [471.5, 1497.5], [469.5, 1496.5], [468.5, 1495.5], [465.5, 1495.5], [464.5, 1496.5]]}, -{"id": "twqh4j", "submitted_by": "NowoTone", "name": "Augsburg", "description": "The flag of the German city of Augsburg in Bavaria. Featuring on the left a pine cone (Zirbelnuss), its coat of arms, and the famous town hall by Elias Holl, dating back to 1624 on the right.", "website": "", "subreddit": "", "center": [1319.5, 1955.5], "path": [[1304.5, 1948.5], [1304.5, 1948.5], [1304.5, 1948.5], [1304.5, 1948.5], [1304.5, 1948.5], [1334.5, 1948.5], [1334.5, 1948.5], [1334.5, 1961.5], [1304.5, 1961.5], [1304.5, 1960.5], [1304.5, 1958.5], [1304.5, 1957.5], [1304.5, 1956.5], [1304.5, 1959.5], [1304.5, 1949.5], [1304.5, 1950.5], [1304.5, 1950.5], [1304.5, 1951.5], [1304.5, 1951.5], [1304.5, 1952.5], [1304.5, 1953.5], [1304.5, 1953.5], [1304.5, 1955.5], [1304.5, 1956.5]]}, -{"id": "twqgvm", "submitted_by": "JappieNijboer", "name": "Frikandelbroodje", "description": "a famous dutch snack, made by puff pastry, a specific meatroll called the frikandel and curry sauce. It is mostly known and consumed among younger students. 2de gratis bij Albert Heijn!", "website": "https://www.ah.nl/producten/product/wi230720/ah-frikandelbroodje", "subreddit": "/r/PlaceNL", "center": [1690.5, 21.5], "path": [[1673.5, 10.5], [1673.5, 10.5], [1673.5, 10.5], [1689.5, 10.5], [1704.5, 12.5], [1711.5, 13.5], [1714.5, 15.5], [1715.5, 18.5], [1716.5, 21.5], [1715.5, 23.5], [1714.5, 25.5], [1713.5, 27.5], [1711.5, 29.5], [1709.5, 30.5], [1707.5, 31.5], [1705.5, 32.5], [1697.5, 33.5], [1697.5, 32.5], [1689.5, 32.5], [1688.5, 31.5], [1685.5, 31.5], [1684.5, 30.5], [1681.5, 30.5], [1680.5, 29.5], [1676.5, 29.5], [1675.5, 28.5], [1666.5, 28.5], [1663.5, 26.5], [1663.5, 24.5], [1664.5, 23.5], [1663.5, 22.5], [1662.5, 21.5], [1673.5, 10.5]]}, -{"id": "twqgmf", "submitted_by": "ItsFrisbeeTho", "name": "Government of the Netherlands (Rijksoverheid)", "description": "The logo of the Dutch Government. All communication with civilians features this crest.", "website": "https://www.rijksoverheid.nl/", "subreddit": "/r/PlaceNL", "center": [746.5, 12.5], "path": [[735.5, 0.5], [735.5, 23.5], [757.5, 23.5], [757.5, 0.5], [735.5, 0.5]]}, -{"id": "twqglf", "submitted_by": "GiveMeSomeBEANS", "name": "Dutch museum het Rijksmuseum", "description": "popular dutch museum", "website": "https://www.rijksmuseum.nl/nl", "subreddit": "", "center": [1765.5, 17.5], "path": [[1722.5, 34.5], [1808.5, 34.5], [1808.5, 0.5], [1722.5, -0.5]]}, -{"id": "twqgh2", "submitted_by": "Klisurovi4", "name": "Bay Ganyo", "description": "A fictional character created by the Bulgarian author Aleko Konstantinov. He is a typical anti-hero, a stereotype of the nuneducated, profit-driven Bulgarian and the average Balkan person in general at the time.", "website": "", "subreddit": "/r/Bulgaria", "center": [707.5, 384.5], "path": [[706.5, 377.5], [705.5, 378.5], [704.5, 379.5], [703.5, 380.5], [702.5, 381.5], [702.5, 383.5], [701.5, 384.5], [701.5, 387.5], [702.5, 388.5], [703.5, 389.5], [704.5, 390.5], [705.5, 391.5], [709.5, 391.5], [710.5, 390.5], [711.5, 389.5], [712.5, 388.5], [713.5, 387.5], [713.5, 384.5], [712.5, 383.5], [712.5, 381.5], [711.5, 380.5], [710.5, 379.5], [710.5, 379.5], [709.5, 378.5], [708.5, 377.5], [706.5, 377.5]]}, -{"id": "twqgd6", "submitted_by": "bart7782", "name": "Government of the Netherlands (Rijksoverheid)", "description": "Logo of the Dutch Government", "website": "", "subreddit": "/r/PlaceNL", "center": [747.5, 12.5], "path": [[736.5, 23.5], [736.5, 0.5], [757.5, 0.5], [757.5, 23.5], [736.5, 23.5]]}, -{"id": "twqgc7", "submitted_by": "Eclipsed_Luna", "name": "r/PlacePride mini-flags", "description": "Originally part of the pride road, the hive mind began to add more mini-pride flags on top of the road.", "website": "", "subreddit": "/r/PlacePride", "center": [455.5, 586.5], "path": [[465.5, 646.5], [448.5, 646.5], [448.5, 645.5], [421.5, 645.5], [421.5, 638.5], [448.5, 638.5], [448.5, 517.5], [465.5, 517.5], [465.5, 581.5], [469.5, 581.5], [469.5, 593.5], [465.5, 593.5], [465.5, 646.5]]}, -{"id": "twqg0c", "submitted_by": "ziemnakiscool", "name": "Mexican flag", "description": "The mexicans build their amazing flag right here. Wow.", "website": "", "subreddit": "", "center": [670.5, 1235.5], "path": [[554.5, 1299.5], [554.5, 1290.5], [560.5, 1283.5], [561.5, 1277.5], [560.5, 1276.5], [556.5, 1275.5], [554.5, 1277.5], [553.5, 1262.5], [554.5, 1223.5], [554.5, 1173.5], [637.5, 1174.5], [642.5, 1176.5], [645.5, 1174.5], [639.5, 1173.5], [640.5, 1170.5], [644.5, 1169.5], [648.5, 1171.5], [646.5, 1168.5], [650.5, 1167.5], [647.5, 1163.5], [653.5, 1161.5], [658.5, 1165.5], [662.5, 1159.5], [654.5, 1158.5], [654.5, 1153.5], [661.5, 1153.5], [662.5, 1148.5], [663.5, 1147.5], [665.5, 1151.5], [667.5, 1154.5], [672.5, 1153.5], [673.5, 1158.5], [664.5, 1160.5], [666.5, 1164.5], [670.5, 1164.5], [669.5, 1165.5], [675.5, 1160.5], [678.5, 1163.5], [673.5, 1169.5], [673.5, 1172.5], [678.5, 1172.5], [681.5, 1172.5], [680.5, 1170.5], [681.5, 1168.5], [682.5, 1165.5], [684.5, 1163.5], [684.5, 1166.5], [683.5, 1173.5], [703.5, 1173.5], [703.5, 1172.5], [781.5, 1173.5], [784.5, 1176.5], [787.5, 1176.5], [788.5, 1179.5], [784.5, 1181.5], [785.5, 1224.5], [785.5, 1301.5]]}, -{"id": "twqfhc", "submitted_by": "ostankin", "name": "A Frog King", "description": "A spur-of-the-moment frog made by people who never met before, has been there from the very start, went through uncountable number of crowd-sourced evolutions and iterations, got drunk and coronated, all while surviving multiple destructions.", "website": "", "subreddit": "/r/FrogGangPlace", "center": [111.5, 415.5], "path": [[109.5, 407.5], [104.5, 413.5], [99.5, 414.5], [105.5, 420.5], [119.5, 420.5], [119.5, 412.5], [120.5, 411.5], [117.5, 408.5], [114.5, 411.5], [114.5, 411.5]]}, -{"id": "twqf1s", "submitted_by": "Loreikon", "name": "SJSU", "description": "San Jose State UniversitynSammy the Spartann", "website": "https://www.sjsu.edu/", "subreddit": "/r/SJSU", "center": [356.5, 1558.5], "path": [[344.5, 1551.5], [368.5, 1551.5], [368.5, 1564.5], [344.5, 1564.5]]}, -{"id": "twqf15", "submitted_by": "potsatou", "name": "Yotsuba's pigtail", "description": "4chan's /b/ board's attempt to draw Yotsuba (404 girl) but only managed to finish the pigtail and the clover", "website": "", "subreddit": "", "center": [1919.5, 550.5], "path": [[1938.5, 541.5], [1938.5, 559.5], [1901.5, 559.5], [1901.5, 540.5]]}, -{"id": "twqewi", "submitted_by": "Explodingmemes", "name": "Trans strawberry", "description": "A golden strawberry from the video game Celeste featuring the trans pride colors.", "website": "https://celeste.ink/wiki/Golden_Strawberry", "subreddit": "/r/Celeste, /r/TransPlace", "center": [524.5, 458.5], "path": [[521.5, 462.5], [524.5, 465.5], [525.5, 465.5], [528.5, 462.5], [529.5, 461.5], [530.5, 461.5], [531.5, 462.5], [532.5, 462.5], [534.5, 460.5], [535.5, 460.5], [536.5, 459.5], [538.5, 457.5], [539.5, 457.5], [541.5, 455.5], [541.5, 454.5], [534.5, 454.5], [533.5, 455.5], [532.5, 455.5], [530.5, 457.5], [530.5, 452.5], [529.5, 452.5], [527.5, 454.5], [525.5, 452.5], [524.5, 452.5], [522.5, 454.5], [519.5, 451.5], [519.5, 456.5], [518.5, 456.5], [517.5, 455.5], [516.5, 455.5], [515.5, 454.5], [509.5, 454.5], [508.5, 455.5], [509.5, 456.5], [510.5, 457.5], [511.5, 457.5], [511.5, 458.5], [512.5, 458.5], [513.5, 459.5], [516.5, 462.5], [519.5, 462.5], [520.5, 461.5], [521.5, 462.5]]}, -{"id": "twqev0", "submitted_by": "CelerySilent7734", "name": "Nijisanji East", "description": "depictions of several Nijisanji members. Nijisanji is a vtuber agency.", "website": "", "subreddit": "/r/Nijisanji", "center": [1927.5, 743.5], "path": [[1882.5, 732.5], [1962.5, 732.5], [1962.5, 744.5], [1953.5, 744.5], [1953.5, 760.5], [1919.5, 760.5], [1919.5, 744.5], [1882.5, 744.5]]}, -{"id": "twqehn", "submitted_by": "sealmealdeal", "name": "necrotomigaud", "description": "necrotomigaud is an art piece made by ivan seal, and is used in the caretaker's, everywhere at the end of time, as the album cover for stage 6.", "website": "", "subreddit": "/r/TheCaretaker", "center": [1603.5, 328.5], "path": [[1599.5, 322.5], [1599.5, 322.5], [1598.5, 322.5], [1598.5, 334.5], [1607.5, 334.5], [1607.5, 322.5], [1607.5, 322.5]]}, -{"id": "twqegy", "submitted_by": "Gideon770", "name": "Maya the Bee (Biene Maja)", "description": "The main character of a popular German book series and TV show for children.", "website": "https://en.wikipedia.org/wiki/Maya_the_Bee", "subreddit": "/r/placeDE", "center": [674.5, 1142.5], "path": [[671.5, 1125.5], [662.5, 1128.5], [658.5, 1135.5], [658.5, 1143.5], [663.5, 1147.5], [667.5, 1147.5], [668.5, 1152.5], [672.5, 1155.5], [684.5, 1156.5], [694.5, 1160.5], [694.5, 1156.5], [688.5, 1151.5], [684.5, 1150.5], [685.5, 1145.5], [688.5, 1140.5], [683.5, 1137.5], [679.5, 1138.5], [678.5, 1141.5], [678.5, 1134.5], [675.5, 1130.5], [681.5, 1134.5], [679.5, 1128.5], [672.5, 1124.5], [670.5, 1125.5], [668.5, 1126.5]]}, -{"id": "twqegl", "submitted_by": "MorrMorrr", "name": "Shinmyoumaru Sukuna", "description": "An inchling living in the Shining Needle Castle. She is the final boss in Touhou 14: Double Dealing Character.", "website": "https://en.touhouwiki.net/wiki/Shinmyoumaru_Sukuna", "subreddit": "/r/touhou", "center": [1671.5, 1534.5], "path": [[1687.5, 1517.5], [1654.5, 1517.5], [1654.5, 1550.5], [1687.5, 1550.5], [1687.5, 1517.5]]}, -{"id": "twqe7m", "submitted_by": "R1515LF0NTE", "name": "Portuguese Among Us crewmate", "description": "Portugal SUS!", "website": "https://en.wikipedia.org/wiki/Portugal", "subreddit": "/r/portugal", "center": [1529.5, 1914.5], "path": [[1527.5, 1916.5], [1526.5, 1914.5], [1526.5, 1912.5], [1527.5, 1912.5], [1527.5, 1911.5], [1529.5, 1911.5], [1530.5, 1911.5], [1531.5, 1911.5], [1531.5, 1914.5], [1531.5, 1916.5], [1531.5, 1917.5], [1530.5, 1917.5], [1529.5, 1917.5], [1529.5, 1916.5], [1528.5, 1917.5], [1527.5, 1917.5], [1527.5, 1915.5]]}, -{"id": "twqe76", "submitted_by": "Relssifille", "name": "Kpop Lower East Side", "description": "An area containing kpop logo designs. In the lower left corner, the logo for kpop girl group Momoland was merged with a character from the rhytm game BanG Dream! for her to wear the logo as a crown", "website": "", "subreddit": "/r/kpop", "center": [1711.5, 922.5], "path": [[1686.5, 898.5], [1719.5, 898.5], [1719.5, 909.5], [1729.5, 909.5], [1730.5, 921.5], [1748.5, 923.5], [1748.5, 933.5], [1740.5, 934.5], [1740.5, 941.5], [1728.5, 941.5], [1708.5, 939.5], [1699.5, 939.5], [1699.5, 945.5], [1686.5, 944.5]]}, -{"id": "twqdst", "submitted_by": "Juanco93", "name": "Toledo windmills", "description": "Featured in the Don Quixote novel, these windmills can be found in the town of Consuegra, in Toledo. In the book, Don Quixote, in his insanity, confused them for giants and tried to fight them.", "website": "http://www.spainisculture.com/en/rutas_culturales/ruta_de_molinos_de_viento_mancha_toledana.html", "subreddit": "/r/esPlace", "center": [897.5, 293.5], "path": [[895.5, 299.5], [895.5, 298.5], [896.5, 298.5], [896.5, 296.5], [892.5, 296.5], [892.5, 288.5], [902.5, 288.5], [902.5, 299.5], [895.5, 299.5]]}, -{"id": "twqdr9", "submitted_by": "jobaxgaming", "name": "Coats of arms of German states (5 of 16)", "description": "The artwork shows 5 of 16 German States' Coat of ArmsnnFrom left to right:\nRheinland-Pfalz (Rhineland-Palatinate)\nBayern (Bavaria)\nBerlin\nHessen (Hesse)\nBremen", "website": "https://en.wikipedia.org/wiki/States_of_Germany", "subreddit": "/r/placeDE", "center": [1364.5, 1132.5], "path": [[1333.5, 1125.5], [1333.5, 1125.5], [1389.5, 1125.5], [1393.5, 1126.5], [1393.5, 1141.5], [1384.5, 1140.5], [1382.5, 1139.5], [1372.5, 1138.5], [1357.5, 1138.5], [1334.5, 1138.5], [1334.5, 1138.5]]}, -{"id": "twqdhc", "submitted_by": "Phats06", "name": "Blue Archive", "description": "You're a teacher and you teach students that have...guns?? Wait... All of them have guns!?\n\nBlue Archive (ブルーアーカイブ) is a role-playing game developed by Nexon Games (formerly NAT Games). Blue Archive takes place in the academy city of Kivotos. The player takes the role of a teacher, called Sensei, who is summoned by the president of the General Student Council, a committee managing the schools, before her disappearance. Criminal activity rises following her disappearance. Sensei has the task to resolve the issues around Kivotos and help find the missing president.", "website": "https://bluearchive.nexon.com/home", "subreddit": "/r/BlueArchive", "center": [1699.5, 1733.5], "path": [[1674.5, 1738.5], [1674.5, 1712.5], [1723.5, 1712.5], [1723.5, 1734.5], [1719.5, 1738.5], [1719.5, 1740.5], [1718.5, 1740.5], [1717.5, 1739.5], [1714.5, 1739.5], [1712.5, 1741.5], [1713.5, 1742.5], [1712.5, 1743.5], [1713.5, 1744.5], [1713.5, 1747.5], [1710.5, 1747.5], [1710.5, 1761.5], [1686.5, 1761.5], [1686.5, 1738.5], [1674.5, 1738.5]]}, -{"id": "twqdff", "submitted_by": "Explodingmemes", "name": "F1 raceway", "description": "A collaboration between Pride Road, Formula 1, and TrackMania. A Formula 1 raceway featuring three cars: A French F1 car, a TrackMania F1 car, and an F1 car featuring the pride colors, as this raceway is on the path of pride road to the north.", "website": "https://en.wikipedia.org/wiki/Formula_One", "subreddit": "/r/formula1, /r/PlacePride", "center": [441.5, 791.5], "path": [[434.5, 757.5], [448.5, 757.5], [448.5, 825.5], [433.5, 825.5], [433.5, 757.5]]}, -{"id": "twqd0a", "submitted_by": "Klisurovi4", "name": "A Pink Rose", "description": "Bulgaria is one of the biggest rose oil producers in the world and the pink rose is a symbol of the Rose Valley, famous for its rose-growing industry.", "website": "", "subreddit": "/r/Bulgaria", "center": [690.5, 383.5], "path": [[682.5, 377.5], [681.5, 378.5], [680.5, 379.5], [680.5, 380.5], [679.5, 381.5], [679.5, 385.5], [680.5, 386.5], [681.5, 388.5], [681.5, 389.5], [682.5, 390.5], [683.5, 390.5], [684.5, 391.5], [694.5, 391.5], [695.5, 390.5], [696.5, 389.5], [697.5, 388.5], [698.5, 387.5], [698.5, 386.5], [699.5, 385.5], [700.5, 384.5], [701.5, 383.5], [701.5, 377.5], [701.5, 376.5], [698.5, 376.5], [697.5, 377.5], [694.5, 377.5], [693.5, 376.5], [683.5, 376.5]]}, -{"id": "twqcyz", "submitted_by": "RUB_23", "name": "Fer0m0nas", "description": "Fer0m0nas was a popular Portuguese YouTuber who used to be the biggest YouTuber from Portugal and is embedded in nostalgia for many people. He was built in cooperation with r/3rdLife.", "website": "https://www.youtube.com/user/fer0m0nas", "subreddit": "/r/portugal, /r/3rdLife, /r/ThirdLifeSMP", "center": [1179.5, 318.5], "path": [[1174.5, 313.5], [1174.5, 322.5], [1183.5, 322.5], [1183.5, 313.5]]}, -{"id": "twqcqm", "submitted_by": "TylerMorgan17", "name": "Twig with community Discord link (from Hilda The Series)", "description": "A small white creature - who is half deer, half fox - staring at the user, with shortened discord link for the community of the show that he is in. (https://discord.gg/hilda)", "website": "https://discord.gg/hilda", "subreddit": "/r/HildaTheSeries", "center": [1850.5, 630.5], "path": [[1830.5, 623.5], [1830.5, 637.5], [1869.5, 637.5], [1869.5, 623.5], [1830.5, 623.5]]}, -{"id": "twqc7p", "submitted_by": "Juanco93", "name": "Don Quixote", "description": "Main character from the titular book by Miguel de Cervantes published in 1605. The novel is often labeled as the first modern novel, one of the greatest ever written, and also one of the most translated books in the world.", "website": "http://www.donquixote.com/", "subreddit": "/r/esPlace", "center": [908.5, 296.5], "path": [[910.5, 283.5], [912.5, 287.5], [912.5, 289.5], [910.5, 292.5], [910.5, 293.5], [915.5, 295.5], [914.5, 308.5], [904.5, 307.5], [903.5, 283.5], [904.5, 282.5], [910.5, 283.5], [911.5, 285.5]]}, -{"id": "twqc4u", "submitted_by": "clee-saan", "name": "Avatar", "description": "An Avatar logo made by fan of James Cameron's sci fi movie", "website": "", "subreddit": "/r/avatar", "center": [750.5, 787.5], "path": [[750.5, 776.5], [758.5, 793.5], [741.5, 793.5]]}, -{"id": "twqbxh", "submitted_by": "doverkan", "name": "Little Princess (Guardian Tales)", "description": "Small sprite of Little Princess from Guardian Tales.", "website": "", "subreddit": "/r/GuardianTales", "center": [701.5, 225.5], "path": [[701.5, 213.5], [693.5, 220.5], [693.5, 234.5], [710.5, 234.5], [710.5, 220.5], [710.5, 220.5]]}, -{"id": "twqbnk", "submitted_by": "peerkartoshkin", "name": "Hyper Light Drifter", "description": "The main protagonist and his companion from the game Hyper Light Drifter.", "website": "", "subreddit": "/r/hyperlightdrifter", "center": [1482.5, 814.5], "path": [[1475.5, 809.5], [1481.5, 804.5], [1490.5, 805.5], [1492.5, 810.5], [1485.5, 823.5], [1476.5, 824.5], [1472.5, 817.5]]}, -{"id": "twqbmm", "submitted_by": "jobaxgaming", "name": "Coat of arms of German states (11 of 16)", "description": "The artwork shows 11 of 16 German states' coats of arms.\n\nFrom left to right:\nSachsen (Saxony)\nSachsen-Anhalt (Saxony-Anhalt)\nSaarland\nThüringen (Thuringia)\nSchleswig-Holstein\nNordrhein-Westfalen (North Rhine-Westphalia)\nBrandenburg\nMecklenburg-Vorpommern\nBaden-Württemberg\nHamburg\nNiedersachsen (Lower Saxony)", "website": "https://en.wikipedia.org/wiki/States_of_Germany", "subreddit": "/r/placeDE", "center": [1208.5, 1128.5], "path": [[1144.5, 1122.5], [1144.5, 1122.5], [1271.5, 1122.5], [1271.5, 1122.5], [1271.5, 1135.5], [1271.5, 1135.5], [1253.5, 1135.5], [1253.5, 1135.5], [1248.5, 1131.5], [1248.5, 1131.5], [1245.5, 1135.5], [1245.5, 1135.5], [1195.5, 1134.5], [1195.5, 1134.5], [1191.5, 1132.5], [1191.5, 1132.5], [1187.5, 1135.5], [1187.5, 1135.5], [1147.5, 1134.5], [1147.5, 1134.5], [1144.5, 1131.5], [1144.5, 1131.5]]}, -{"id": "twqbda", "submitted_by": "neutrafan6", "name": "Six Impala", "description": "Six Impala is a (mostly) electronic band formed in 2017 by six different members from around the world. The band's first album, RUBBER, was released in 2019. Two subsequent albums, RUBBER ALT and WFLYTD, were released from 2019 - 2020. Although the band is pretty niche, they've gotten support from more successful artists like Anamanaguchi and Bring Me The Horizon.", "website": "https://twitter.com/siximpalasix", "subreddit": "", "center": [1793.5, 83.5], "path": [[1786.5, 68.5], [1786.5, 97.5], [1799.5, 97.5], [1799.5, 68.5], [1786.5, 68.5]]}, -{"id": "twqbb6", "submitted_by": "MorrMorrr", "name": "Utsuho Reiuji", "description": "Also known as Okuu. She is the final boss in Touhou 11: Subterranean Animism.", "website": "https://en.touhouwiki.net/wiki/Utsuho_Reiuji", "subreddit": "/r/touhou", "center": [1638.5, 1534.5], "path": [[1621.5, 1517.5], [1621.5, 1550.5], [1654.5, 1550.5], [1654.5, 1517.5], [1621.5, 1517.5]]}, -{"id": "twqbag", "submitted_by": "Eclipsed_Luna", "name": "Coat of arms of Montenegro", "description": "", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Montenegro", "subreddit": "/r/montenegro", "center": [1964.5, 110.5], "path": [[1955.5, 101.5], [1973.5, 101.5], [1973.5, 119.5], [1955.5, 119.5], [1955.5, 101.5]]}, -{"id": "twqba8", "submitted_by": "erlendtl", "name": "Il Tempo Gigante", "description": "Fictional race car most known from Flåklypa Grand Prix (The most watched Norwegian movie).", "website": "https://no.wikipedia.org/wiki/Il_Tempo_Gigante", "subreddit": "/r/place_nordicunion, /r/Norge", "center": [307.5, 109.5], "path": [[333.5, 101.5], [333.5, 117.5], [280.5, 117.5], [280.5, 101.5]]}, -{"id": "twqb8i", "submitted_by": "Phats06", "name": "Build The Earth", "description": "Build the Earth (BTE) is a project dedicated to creating a 1:1 scale model of Earth within the sandbox video game Minecraft. One block in Minecraft equates to roughly one meter in the real world. There are currently 7,000 builders contributing to this project.", "website": "https://buildtheearth.net/", "subreddit": "/r/BuildTheEarth", "center": [65.5, 616.5], "path": [[50.5, 619.5], [50.5, 612.5], [51.5, 611.5], [51.5, 609.5], [52.5, 608.5], [52.5, 607.5], [56.5, 603.5], [57.5, 603.5], [58.5, 602.5], [59.5, 601.5], [61.5, 601.5], [62.5, 600.5], [69.5, 600.5], [70.5, 601.5], [72.5, 601.5], [73.5, 602.5], [74.5, 602.5], [79.5, 607.5], [79.5, 608.5], [80.5, 609.5], [80.5, 612.5], [81.5, 613.5], [81.5, 619.5], [80.5, 620.5], [80.5, 621.5], [79.5, 622.5], [79.5, 624.5], [74.5, 629.5], [73.5, 629.5], [72.5, 630.5], [70.5, 630.5], [69.5, 631.5], [62.5, 631.5], [61.5, 630.5], [59.5, 630.5], [58.5, 629.5], [57.5, 629.5], [52.5, 624.5], [52.5, 623.5], [51.5, 622.5], [51.5, 620.5], [50.5, 619.5]]}, -{"id": "twqb4a", "submitted_by": "Klisurovi4", "name": "Shipka Monument", "description": "The Liberty Memorial on Shipka Peak is the symbol of modern Bulgaria and the liberation of Bulgaria", "website": "https://en.wikipedia.org/wiki/Shipka_Monument", "subreddit": "/r/bulgaria", "center": [671.5, 385.5], "path": [[665.5, 376.5], [665.5, 377.5], [666.5, 378.5], [666.5, 381.5], [665.5, 382.5], [665.5, 388.5], [664.5, 389.5], [663.5, 390.5], [662.5, 391.5], [662.5, 392.5], [679.5, 392.5], [680.5, 391.5], [679.5, 390.5], [678.5, 389.5], [677.5, 388.5], [677.5, 382.5], [676.5, 381.5], [676.5, 378.5], [677.5, 377.5], [677.5, 376.5], [665.5, 376.5]]}, -{"id": "twqauw", "submitted_by": "rollam", "name": "Lucky Luke", "description": "Belgian cartoon, shoots faster than his shadow", "website": "", "subreddit": "", "center": [1307.5, 1030.5], "path": [[1297.5, 1037.5], [1302.5, 1039.5], [1303.5, 1051.5], [1311.5, 1052.5], [1311.5, 1042.5], [1315.5, 1039.5], [1312.5, 1028.5], [1315.5, 1022.5], [1315.5, 1012.5], [1307.5, 1010.5], [1300.5, 1012.5], [1298.5, 1015.5], [1303.5, 1017.5], [1303.5, 1021.5]]}, -{"id": "twqah1", "submitted_by": "Pinchface05", "name": "Overseas territories of the Netherlands", "description": "Maps of overseas territories of the Netherlands with their respective flags on themn(Clockwise, from top left: Aruba, Curaçao, Bonaire, Saba, Sint Eustatius, Sint Marteen)", "website": "https://en.wikipedia.org/wiki/Dutch_Caribbean", "subreddit": "/r/thenetherlands", "center": [851.5, 18.5], "path": [[825.5, 2.5], [825.5, 34.5], [876.5, 34.5], [876.5, 1.5], [825.5, 1.5]]}, -{"id": "twqagq", "submitted_by": "CryotechAlchemer", "name": "Project Arrhythmia", "description": "A small area themed around the musical bullet hell Project Arrhythmia, featuring the game's logo as well as small characters.", "website": "https://vitamin.games", "subreddit": "/r/pa_place", "center": [1527.5, 720.5], "path": [[1539.5, 711.5], [1515.5, 711.5], [1515.5, 728.5], [1539.5, 728.5]]}, -{"id": "twqag9", "submitted_by": "Thelorian", "name": "Yuru Camp", "description": "Logo of Yuru Camp, an anime about a group of girls going camping around Mount Fuji", "website": "https://en.wikipedia.org/wiki/Laid-Back_Camp", "subreddit": "/r/laidbackcamp", "center": [1358.5, 131.5], "path": [[1350.5, 122.5], [1350.5, 140.5], [1367.5, 139.5], [1366.5, 122.5]]}, -{"id": "twqaf6", "submitted_by": "legenddarkrai", "name": "Wizard101", "description": "Wizard101 is an MMO children's card game released in 2008 by KingsIsle. Although it is an old game, it stays very alive with a large fanbase as a classic.", "website": "https://www.wizard101.com/", "subreddit": "/r/Wizard101", "center": [1183.5, 452.5], "path": [[1175.5, 438.5], [1189.5, 438.5], [1195.5, 445.5], [1196.5, 446.5], [1196.5, 464.5], [1176.5, 464.5], [1169.5, 458.5], [1169.5, 446.5], [1175.5, 439.5]]}, -{"id": "twqa81", "submitted_by": "R1515LF0NTE", "name": "Cravos (carnations)", "description": "The carnation is a flower that symbolizes freedom in Portugal, because it was the flower that soldiers during the revolution of April 25, 1974 wore on their chests or on the barrels of their weapons.", "website": "https://en.wikipedia.org/wiki/Dianthus_caryophyllus", "subreddit": "/r/portugal", "center": [1426.5, 1905.5], "path": [[1403.5, 1891.5], [1409.5, 1887.5], [1415.5, 1888.5], [1419.5, 1895.5], [1423.5, 1900.5], [1429.5, 1902.5], [1439.5, 1904.5], [1448.5, 1905.5], [1455.5, 1902.5], [1461.5, 1902.5], [1463.5, 1908.5], [1465.5, 1914.5], [1462.5, 1913.5], [1456.5, 1915.5], [1451.5, 1913.5], [1446.5, 1913.5], [1441.5, 1908.5], [1436.5, 1909.5], [1434.5, 1909.5], [1432.5, 1912.5], [1431.5, 1916.5], [1404.5, 1916.5], [1403.5, 1911.5], [1403.5, 1903.5], [1404.5, 1896.5], [1403.5, 1891.5], [1403.5, 1891.5]]}, -{"id": "twqa36", "submitted_by": "Leertaste21", "name": "Suisex", "description": "'Suisex' refers to a meme from the r/okbuddyhololive community, parodying the name of highly enthusiastic Hoshiyomi, fanname for Hololive VTuber 星街すいせい (Hoshimachi Suisei). On the right is 'Koron', a minimized version of pixel art of Hololive VTuber 戌神ころね (Inugami Korone). Maintained by r/okbuddyhololive but hotly warred upon as people kept changing it to 'Suisei' and back to 'Suisex'.", "website": "https://discord.gg/holotards", "subreddit": "/r/okbuddyhololive, /r/HoshimachiSuisei, /r/Hololive", "center": [239.5, 720.5], "path": [[218.5, 715.5], [218.5, 724.5], [218.5, 725.5], [260.5, 725.5], [260.5, 715.5]]}, -{"id": "twq9zl", "submitted_by": "ziemnakiscool", "name": ".gg/placeDE sign", "description": "discord.gg/placeDE, the German Discord server.", "website": "https://discord.gg/placeDE", "subreddit": "/r/placeDE", "center": [1955.5, 1134.5], "path": [[1935.5, 1140.5], [1935.5, 1128.5], [1974.5, 1128.5], [1975.5, 1133.5], [1974.5, 1135.5], [1974.5, 1134.5], [1974.5, 1136.5], [1975.5, 1136.5], [1974.5, 1137.5], [1973.5, 1140.5], [1973.5, 1141.5], [1974.5, 1140.5]]}, -{"id": "twq9vm", "submitted_by": "cspruce89", "name": "Dwarf Fortress", "description": "An homage to Dwarf Fortress, a free game. The inspiration for games such as Minecraft, Rimworld, and Terraria. The most complex simulation ever created.", "website": "https://www.bay12games.com/dwarves/", "subreddit": "/r/dwarffortress", "center": [26.5, 490.5], "path": [[0.5, 464.5], [52.5, 464.5], [52.5, 515.5], [0.5, 515.5], [0.5, 465.5]]}, -{"id": "twq9sa", "submitted_by": "goCommitUnLive", "name": "Bloons Dart Monkey", "description": "Bloons TD6's Dark Monkey.", "website": "https://ninjakiwi.com", "subreddit": "/r/Bloons", "center": [1875.5, 1650.5], "path": [[1876.5, 1634.5], [1874.5, 1634.5], [1874.5, 1636.5], [1873.5, 1636.5], [1873.5, 1637.5], [1868.5, 1637.5], [1869.5, 1638.5], [1866.5, 1638.5], [1867.5, 1639.5], [1865.5, 1639.5], [1866.5, 1640.5], [1864.5, 1640.5], [1863.5, 1642.5], [1862.5, 1657.5], [1863.5, 1659.5], [1866.5, 1659.5], [1867.5, 1660.5], [1867.5, 1664.5], [1885.5, 1664.5], [1885.5, 1658.5], [1886.5, 1656.5], [1889.5, 1655.5], [1890.5, 1649.5], [1887.5, 1648.5], [1886.5, 1646.5], [1885.5, 1643.5], [1884.5, 1640.5], [1884.5, 1639.5], [1883.5, 1637.5], [1880.5, 1635.5], [1877.5, 1634.5], [1875.5, 1634.5]]}, -{"id": "twq9qn", "submitted_by": "Loekyloek1", "name": "Groesbeek Canadian War Cemetery and Memorial", "description": "Groesbeek Canadian War Cemetery and Memorial (French:Le Cimetière de Guerre Canadien Groesbeek, Dutch:Canadese Oorlogsbegraafplaats Groesbeek) is a Second World War Commonwealth War Graves Commission military war grave cemetery, located in the village of Groesbeek, 8 km (5.0 mi) southeast of Nijmegen in the Netherlands. Of the total 2,619 burials, the cemetery contains 2,338 Canadian soldiers. It was built to a design by Commission architect Philip Hepworth.", "website": "https://en.wikipedia.org/wiki/Groesbeek_Canadian_War_Cemetery", "subreddit": "/r/PlaceNL", "center": [521.5, 1960.5], "path": [[502.5, 1950.5], [537.5, 1950.5], [538.5, 1950.5], [538.5, 1949.5], [539.5, 1949.5], [539.5, 1951.5], [541.5, 1951.5], [539.5, 1951.5], [539.5, 1957.5], [539.5, 1958.5], [540.5, 1958.5], [540.5, 1962.5], [541.5, 1962.5], [541.5, 1965.5], [542.5, 1965.5], [542.5, 1966.5], [543.5, 1966.5], [543.5, 1968.5], [544.5, 1968.5], [544.5, 1969.5], [546.5, 1969.5], [546.5, 1958.5], [544.5, 1958.5], [544.5, 1959.5], [542.5, 1959.5], [542.5, 1960.5], [542.5, 1958.5], [543.5, 1958.5], [543.5, 1957.5], [545.5, 1957.5], [545.5, 1956.5], [546.5, 1956.5], [546.5, 1969.5], [502.5, 1969.5]]}, -{"id": "twq9c5", "submitted_by": "buhodiurno_", "name": "MAMAMOO", "description": "Logo of the Korean girl-group MAMAMOO, composed by members Solar, Moonbyul, Wheein and Hwasa.", "website": "https://en.wikipedia.org/wiki/Mamamoo", "subreddit": "/r/mamamoo", "center": [1469.5, 874.5], "path": [[1450.5, 870.5], [1450.5, 878.5], [1487.5, 878.5], [1487.5, 870.5], [1450.5, 870.5]]}, -{"id": "twq8yy", "submitted_by": "Juanco93", "name": "Spanish guitar", "description": "Also known as classical guitar. It is a member of the guitar family used in classical music and other styles, such as flamenco.", "website": "https://www.metmuseum.org/toah/hd/spgu/hd_spgu.htm", "subreddit": "/r/esPlace", "center": [1107.5, 295.5], "path": [[1089.5, 301.5], [1087.5, 299.5], [1087.5, 297.5], [1088.5, 291.5], [1091.5, 288.5], [1127.5, 290.5], [1127.5, 300.5], [1089.5, 301.5]]}, -{"id": "twq8yq", "submitted_by": "OperationFragrant273", "name": "Diep.io Tank", "description": "The starting tank of every Diep.io gameplay. Fourth and final rendition that came to be, the other three griefed.", "website": "", "subreddit": "/r/Diepio", "center": [152.5, 1233.5], "path": [[164.5, 1227.5], [140.5, 1227.5], [140.5, 1239.5], [164.5, 1239.5]]}, -{"id": "twq8pz", "submitted_by": "Moriko-Is-Tired", "name": "Mai Alliance", "description": "A Plot Area shared by Seishun Buta Yarou, Cardinals, SC,HPlace(Disocrd Group), Potato,and a star!", "website": "https://discord.gg/WTdwjSjk", "subreddit": "", "center": [528.5, 1803.5], "path": [[548.5, 1827.5], [548.5, 1783.5], [501.5, 1782.5], [501.5, 1799.5], [516.5, 1800.5], [516.5, 1814.5], [510.5, 1827.5], [527.5, 1827.5], [511.5, 1826.5], [534.5, 1827.5], [524.5, 1828.5], [530.5, 1827.5]]}, -{"id": "twq8lg", "submitted_by": "N8dawgggg", "name": "Tampa Bay Lightning", "description": "The lightning bolt Logo for the NHL team the Tampa Bay Lightning.", "website": "https://www.nhl.com/lightning", "subreddit": "/r/TampaBayLightning", "center": [1751.5, 271.5], "path": [[1742.5, 263.5], [1759.5, 263.5], [1759.5, 279.5], [1742.5, 279.5]]}, -{"id": "twq8jn", "submitted_by": "R1515LF0NTE", "name": "Bacalhau (codfish)", "description": "A species of fish widely used in Portuguese cuisine.", "website": "https://en.wikipedia.org/wiki/Cod", "subreddit": "/r/portugal, /r/PortugalCaralho", "center": [1460.5, 1843.5], "path": [[1463.5, 1834.5], [1461.5, 1836.5], [1458.5, 1836.5], [1456.5, 1838.5], [1455.5, 1838.5], [1452.5, 1841.5], [1452.5, 1842.5], [1454.5, 1844.5], [1454.5, 1845.5], [1457.5, 1848.5], [1458.5, 1848.5], [1459.5, 1849.5], [1459.5, 1850.5], [1461.5, 1852.5], [1465.5, 1849.5], [1465.5, 1846.5], [1466.5, 1845.5], [1466.5, 1838.5], [1465.5, 1837.5], [1465.5, 1836.5]]}, -{"id": "twq8eb", "submitted_by": "cr42yr1ch", "name": "OpenTTD Logo", "description": "Logo of OpenTTD, an open source simulation game based upon Transport Tycoon Deluxe", "website": "https://www.openttd.org/", "subreddit": "/r/openttd", "center": [1563.5, 172.5], "path": [[1559.5, 166.5], [1559.5, 177.5], [1567.5, 177.5], [1567.5, 166.5]]}, -{"id": "twq8cd", "submitted_by": "N0ZTRA", "name": "Canada & Netherland Memorial", "description": "Originally a small Canadian flag below the PlaceNL De Nachtwacht, the flag was moved by PlaceNL to its final position. A friendly collaboration between the nations, the memorial was added to bridge the two flags. Unlike the war torn Canadian flag of old this flag was steadfastly maintained by Redditors of both countries. A huge Canadian thank you to PlaceNL", "website": "", "subreddit": "/r/PlaceNL", "center": [524.5, 1960.5], "path": [[501.5, 1949.5], [501.5, 1970.5], [546.5, 1970.5], [546.5, 1956.5], [546.5, 1949.5], [501.5, 1949.5]]}, -{"id": "twq89w", "submitted_by": "Kobalt619", "name": "Leberkässemmel", "description": "A famous Fast Food in the DACH-Region.", "website": "", "subreddit": "", "center": [1030.5, 265.5], "path": [[1022.5, 263.5], [1021.5, 263.5], [1027.5, 260.5], [1032.5, 259.5], [1037.5, 260.5], [1039.5, 261.5], [1041.5, 264.5], [1037.5, 267.5], [1033.5, 267.5], [1029.5, 267.5], [1025.5, 268.5], [1032.5, 268.5], [1037.5, 268.5], [1040.5, 270.5], [1032.5, 272.5], [1023.5, 270.5], [1021.5, 270.5], [1020.5, 268.5]]}, -{"id": "twq895", "submitted_by": "bas-bas", "name": "Catalan Independence", "description": "The Estelada, the flag of the Catalan Independence movement.", "website": "", "subreddit": "/r/catalanindependence", "center": [712.5, 320.5], "path": [[705.5, 316.5], [719.5, 316.5], [719.5, 324.5], [705.5, 324.5]]}, -{"id": "twq852", "submitted_by": "Explodingmemes", "name": "Overwatch 2", "description": "The logo of the game Overwatch 2", "website": "", "subreddit": "/r/overwatch", "center": [700.5, 284.5], "path": [[689.5, 281.5], [690.5, 279.5], [693.5, 276.5], [695.5, 275.5], [696.5, 274.5], [702.5, 274.5], [703.5, 275.5], [714.5, 275.5], [714.5, 283.5], [712.5, 283.5], [710.5, 285.5], [710.5, 288.5], [709.5, 290.5], [705.5, 294.5], [703.5, 295.5], [696.5, 296.5], [691.5, 292.5], [690.5, 292.5], [690.5, 291.5], [688.5, 291.5], [688.5, 281.5]]}, -{"id": "twq83j", "submitted_by": "minecrafter2301", "name": "r/rvnxmango", "description": "Subreddit of German Twitch streamer and YouTube creator RvNxMango, who worked with r/placeDE", "website": "", "subreddit": "/r/rvnxmango", "center": [25.5, 839.5], "path": [[0.5, 836.5], [50.5, 836.5], [50.5, 842.5], [0.5, 842.5], [0.5, 836.5]]}, -{"id": "twq7xl", "submitted_by": "FairyRave", "name": "Ghostbur", "description": "A character played by Wilbur Soot on the Dream SMP. Ghostbur has a spotty memory, but he would give some blue for others to make their day a bit happier. The pixel art was created by the L'Manplace community.", "website": "https://dreamteam.fandom.com/wiki/Ghostbur", "subreddit": "/r/dreamsmp", "center": [133.5, 144.5], "path": [[129.5, 147.5], [129.5, 145.5], [130.5, 145.5], [130.5, 141.5], [131.5, 141.5], [131.5, 140.5], [135.5, 140.5], [135.5, 141.5], [136.5, 141.5], [136.5, 147.5]]}, -{"id": "twq7xf", "submitted_by": "Relssifille", "name": "Kpop South Block", "description": "An area containing kpop logo designs and the Nepal area, who were allied. Unfortunately, many of the kpop designs were taken over by a streamer, and they weren't restored in time.", "website": "", "subreddit": "/r/kpop", "center": [1497.5, 989.5], "path": [[1462.5, 912.5], [1524.5, 912.5], [1525.5, 1063.5], [1451.5, 1063.5], [1451.5, 1044.5], [1476.5, 1044.5], [1476.5, 999.5], [1481.5, 998.5], [1478.5, 937.5], [1462.5, 937.5]]}, -{"id": "twq7rv", "submitted_by": "N8dawgggg", "name": "Tampa Bay Lightning", "description": "Professional NHL Team the Tampa Bay Lightning logo with a Stanley cup (championship trophy) and B2B for Back to Back championship wins in 2020 and 2021.", "website": "https://www.nhl.com/lightning", "subreddit": "/r/TampaBayLightning", "center": [691.5, 575.5], "path": [[678.5, 590.5], [678.5, 572.5], [684.5, 573.5], [684.5, 557.5], [701.5, 557.5], [701.5, 591.5], [678.5, 591.5]]}, -{"id": "twq7rh", "submitted_by": "erlendtl", "name": "Sverd i fjell (Swords in Rock)", "description": "Monument commemorating the 872 battle which resulted in Harald Hårfagre gathering Norway under one king.", "website": "https://en.wikipedia.org/wiki/Sverd_i_fjell", "subreddit": "/r/place_nordicunion, /r/Norge", "center": [350.5, 59.5], "path": [[336.5, 77.5], [339.5, 70.5], [339.5, 57.5], [336.5, 52.5], [340.5, 38.5], [345.5, 38.5], [364.5, 50.5], [365.5, 58.5], [363.5, 60.5], [363.5, 70.5], [365.5, 77.5]]}, -{"id": "twq7q2", "submitted_by": "Juanco93", "name": "Ecce Homo", "description": "Fresco painted circa 1930 by Elías García Martínez. Its fame derives from a good-faith attempt to restore it by untrained amateur Cecilia Giménez, transforming the painting and making it look like a monkey.", "website": "https://english.elpais.com/arts/2020-11-13/spains-latest-ecce-homo-how-a-botched-restoration-made-global-headlines.html?outputType=amp", "subreddit": "/r/esPlace", "center": [1040.5, 296.5], "path": [[1030.5, 307.5], [1030.5, 285.5], [1051.5, 286.5], [1051.5, 307.5]]}, -{"id": "twq7mq", "submitted_by": "Klisurovi4", "name": "Map of Bulgaria", "description": "A map of Bulgaria", "website": "https://en.wikipedia.org/wiki/Bulgaria", "subreddit": "/r/bulgaria", "center": [640.5, 384.5], "path": [[628.5, 376.5], [627.5, 377.5], [626.5, 378.5], [626.5, 380.5], [627.5, 381.5], [628.5, 382.5], [627.5, 383.5], [627.5, 385.5], [628.5, 386.5], [629.5, 386.5], [628.5, 387.5], [627.5, 388.5], [627.5, 389.5], [628.5, 390.5], [629.5, 391.5], [630.5, 391.5], [631.5, 392.5], [635.5, 392.5], [636.5, 391.5], [637.5, 391.5], [638.5, 392.5], [645.5, 392.5], [646.5, 391.5], [647.5, 390.5], [648.5, 390.5], [649.5, 391.5], [651.5, 391.5], [652.5, 390.5], [652.5, 389.5], [651.5, 388.5], [650.5, 387.5], [650.5, 386.5], [651.5, 385.5], [651.5, 384.5], [652.5, 383.5], [653.5, 382.5], [654.5, 381.5], [653.5, 380.5], [653.5, 380.5], [652.5, 379.5], [651.5, 378.5], [650.5, 377.5], [649.5, 377.5], [648.5, 376.5], [646.5, 376.5], [645.5, 377.5], [644.5, 377.5], [643.5, 378.5], [642.5, 379.5], [641.5, 380.5], [640.5, 379.5], [639.5, 379.5], [638.5, 379.5], [637.5, 380.5], [636.5, 380.5], [636.5, 380.5], [635.5, 379.5], [630.5, 379.5], [631.5, 378.5], [630.5, 377.5], [629.5, 376.5], [628.5, 376.5], [627.5, 377.5]]}, -{"id": "twq7i7", "submitted_by": "remsoffyt", "name": "Guillotine", "description": "Execution tool invented by French, used until the 70s in France. It killed Louis XVI during the French Revolution in January 1793", "website": "", "subreddit": "/r/franceplace", "center": [1140.5, 813.5], "path": [[1131.5, 829.5], [1150.5, 829.5], [1147.5, 824.5], [1147.5, 800.5], [1147.5, 799.5], [1148.5, 799.5], [1148.5, 797.5], [1148.5, 796.5], [1133.5, 796.5], [1133.5, 818.5], [1131.5, 820.5], [1133.5, 822.5], [1134.5, 824.5]]}, -{"id": "twq7ce", "submitted_by": "rollam", "name": "Belgian chocolate", "description": "Belgium is world famous for creating some of the most delicious chocolate, especially pralines", "website": "", "subreddit": "", "center": [286.5, 587.5], "path": [[278.5, 595.5], [278.5, 595.5], [287.5, 595.5], [295.5, 586.5], [288.5, 578.5], [287.5, 578.5], [280.5, 585.5], [279.5, 587.5]]}, -{"id": "twq78v", "submitted_by": "metiletileter", "name": "Andalusian Flag", "description": "Flag of the Autonomous Community of Andalusia, located in southern Spain", "website": "", "subreddit": "/r/Andalucia", "center": [1623.5, 312.5], "path": [[1631.5, 314.5], [1631.5, 314.5], [1617.5, 314.5], [1617.5, 309.5], [1627.5, 309.5], [1627.5, 311.5], [1628.5, 312.5], [1629.5, 312.5]]}, -{"id": "twq70z", "submitted_by": "supremekirb", "name": "EarthBound", "description": "This area was created by the /r/EarthBound community. The EarthBound series (also known as the MOTHER series in Japan) is a JRPG (Japanese role-playing game) trilogy created by copywriter and Japanese celebrity Shigesato Itoi. This build includes various characters and objects from EarthBound (MOTHER 2) & EarthBound 2 (MOTHER 3). Characters and objects such as Ness, Ness's Father, Lost Underworld Paula, Starman, Mr. Saturn, Snowcap Mountain Lucas, Save Frog, & the Pencil Statue can be seen here. The sprite of the protagonist of EarthBound Beginnings (MOTHER 1), Ninten, can also be found on the r/place canvas near the Lego logo.", "website": "https://starmen.net", "subreddit": "/r/EarthBound", "center": [1979.5, 316.5], "path": [[1969.5, 355.5], [1976.5, 355.5], [1976.5, 349.5], [1982.5, 349.5], [1982.5, 337.5], [1999.5, 337.5], [1999.5, 287.5], [1981.5, 287.5], [1981.5, 290.5], [1976.5, 290.5], [1976.5, 291.5], [1975.5, 291.5], [1975.5, 292.5], [1974.5, 293.5], [1972.5, 297.5], [1954.5, 297.5], [1954.5, 321.5], [1967.5, 322.5], [1967.5, 332.5], [1968.5, 332.5], [1968.5, 355.5], [1969.5, 355.5]]}, -{"id": "twq6u7", "submitted_by": "Klisurovi4", "name": "Alexander Nevsky Cathedral", "description": "St. Alexander Nevsky Cathedral is one of the largest Christian church buildings in the world and a symbol of the capital city of Sofia", "website": "", "subreddit": "/r/Bulgaria", "center": [599.5, 386.5], "path": [[582.5, 391.5], [582.5, 390.5], [582.5, 389.5], [583.5, 389.5], [583.5, 388.5], [583.5, 387.5], [584.5, 387.5], [584.5, 383.5], [586.5, 383.5], [588.5, 383.5], [588.5, 378.5], [589.5, 378.5], [590.5, 377.5], [591.5, 376.5], [592.5, 376.5], [593.5, 377.5], [594.5, 378.5], [595.5, 379.5], [595.5, 383.5], [600.5, 383.5], [600.5, 379.5], [601.5, 378.5], [602.5, 377.5], [604.5, 377.5], [605.5, 376.5], [606.5, 377.5], [608.5, 377.5], [609.5, 378.5], [610.5, 379.5], [610.5, 382.5], [611.5, 383.5], [612.5, 383.5], [613.5, 384.5], [614.5, 385.5], [614.5, 386.5], [615.5, 386.5], [616.5, 387.5], [617.5, 388.5], [617.5, 391.5], [617.5, 392.5], [582.5, 392.5]]}, -{"id": "twq6ti", "submitted_by": "rollam", "name": "Belgian waffle", "description": "A delicious waffle, sometimes topped or filled with sugar crystals", "website": "", "subreddit": "", "center": [285.5, 601.5], "path": [[277.5, 595.5], [294.5, 595.5], [292.5, 607.5], [277.5, 607.5], [276.5, 606.5], [277.5, 599.5]]}, -{"id": "twq6rd", "submitted_by": "LilluZhion", "name": "LOST numbers", "description": "The iconic numbers from the tv show LOST", "website": "", "subreddit": "/r/lost", "center": [1888.5, 796.5], "path": [[1867.5, 793.5], [1909.5, 793.5], [1909.5, 799.5], [1867.5, 799.5], [1867.5, 793.5], [1867.5, 793.5], [1867.5, 793.5]]}, -{"id": "twq6od", "submitted_by": "FantasyFantast", "name": "GenAi", "description": "A Discord bot that randomly generates memes in chat using Markov chains", "website": "https://genai.bot/", "subreddit": "/r/genai", "center": [16.5, 708.5], "path": [[12.5, 701.5], [20.5, 701.5], [20.5, 714.5], [12.5, 714.5]]}, -{"id": "twq6iu", "submitted_by": "R1515LF0NTE", "name": "Fernando Pessoa", "description": "Fernando Pessoa (1888-1935) was a Portuguese poet from the beginning of the 20th century, considered one of the best Portuguese poets", "website": "https://en.wikipedia.org/wiki/Fernando_Pessoa", "subreddit": "/r/portugal, /r/PortugalCaralho", "center": [1498.5, 1897.5], "path": [[1485.5, 1894.5], [1489.5, 1895.5], [1488.5, 1897.5], [1489.5, 1900.5], [1491.5, 1904.5], [1492.5, 1908.5], [1492.5, 1911.5], [1497.5, 1912.5], [1502.5, 1911.5], [1506.5, 1906.5], [1506.5, 1893.5], [1509.5, 1893.5], [1506.5, 1888.5], [1503.5, 1884.5], [1500.5, 1883.5], [1493.5, 1882.5], [1491.5, 1886.5], [1487.5, 1892.5], [1485.5, 1894.5]]}, -{"id": "twq6iq", "submitted_by": "MOZPORYL", "name": "Mr. Robot fsociety logo", "description": "Logo of fsociety from the tv show Mr. Robot as well as the title of the show on the bottom. (watch Mr. Robot it's great!!!!!)", "website": "", "subreddit": "/r/MrRobot", "center": [1459.5, 466.5], "path": [[1485.5, 446.5], [1485.5, 486.5], [1433.5, 486.5], [1433.5, 446.5]]}, -{"id": "twq6gz", "submitted_by": "OutsideWorld1", "name": "Scotland Flag", "description": "The flag of Scotland, decorated with the silhouette of the country, the national flower and the Loch Ness Monster holding some Irn Bru on it's tail.", "website": "", "subreddit": "/r/scotland", "center": [937.5, 869.5], "path": [[965.5, 853.5], [965.5, 886.5], [909.5, 886.5], [909.5, 853.5], [911.5, 853.5], [911.5, 852.5], [912.5, 851.5], [913.5, 851.5], [914.5, 852.5], [915.5, 851.5], [916.5, 851.5], [917.5, 852.5], [918.5, 853.5]]}, -{"id": "twq69w", "submitted_by": "Excommunicated1998", "name": "r/vexillology flag", "description": "Flag/subreddit icon of r/vexillology. Vexillology is the study of the history, symbolism and usage of flags. The flag was drawn and protected by Redditors from r/Philippines.", "website": "https://en.wikipedia.org/wiki/Vexillology", "subreddit": "/r/vexillology", "center": [1341.5, 666.5], "path": [[1334.5, 662.5], [1334.5, 662.5], [1334.5, 662.5], [1334.5, 662.5], [1334.5, 662.5], [1334.5, 670.5], [1347.5, 670.5], [1347.5, 662.5], [1347.5, 662.5], [1347.5, 662.5], [1347.5, 662.5], [1347.5, 662.5], [1347.5, 662.5]]}, -{"id": "twq66p", "submitted_by": "Groctel", "name": "SWAD", "description": "SWAD is a learning management system with social network features developed by Antonio Cañas, a professor of the University of Granada, Spain. The mural was raised by the student community of said University, also known as 'swadders'.", "website": "https://openswad.org/en", "subreddit": "", "center": [916.5, 1320.5], "path": [[902.5, 1316.5], [902.5, 1324.5], [930.5, 1324.5], [930.5, 1316.5]]}, -{"id": "twq66n", "submitted_by": "ziemnakiscool", "name": "Goo from Inanimate Insanity", "description": "This charactar is from the show Inanimate Insanity ( Season 3 ) by Adam Katz.", "website": "", "subreddit": "/r/battlefordreamisland", "center": [1551.5, 41.5], "path": [[1544.5, 44.5], [1543.5, 45.5], [1544.5, 35.5], [1557.5, 35.5], [1559.5, 38.5], [1558.5, 44.5], [1557.5, 46.5], [1558.5, 46.5], [1543.5, 46.5]]}, -{"id": "twq63p", "submitted_by": "rollam", "name": "Frieten with mayo", "description": "Fries with mayo are THE Belgian staple food", "website": "", "subreddit": "", "center": [273.5, 586.5], "path": [[274.5, 600.5], [275.5, 600.5], [278.5, 594.5], [278.5, 587.5], [279.5, 587.5], [279.5, 579.5], [274.5, 574.5], [273.5, 574.5], [267.5, 580.5], [267.5, 586.5]]}, -{"id": "twq62l", "submitted_by": "Sp3ctraZ", "name": "Robocraft 2015 Logo", "description": "Logo for the RC15 Project, a community run project to bring back the 2015 state of Robocraft.", "website": "", "subreddit": "/r/RC15", "center": [1921.5, 254.5], "path": [[1905.5, 268.5], [1905.5, 240.5], [1936.5, 240.5], [1935.5, 241.5], [1935.5, 242.5], [1938.5, 245.5], [1938.5, 264.5], [1936.5, 264.5], [1936.5, 268.5]]}, -{"id": "twq62d", "submitted_by": "Congoy", "name": "Arizona Area", "description": "This area represents a few communities from the state of Arizona in the US. During the first two days, these communities were working independently and losing battles in locations across r/place. On Day 3, r/suns was able to relocate and claim this spot when it first became available. As the dutch painting from r/placeNL started to overlap with the art from r/suns, the two parties were able to form an alliance and defend eachother from invasion. This stronghold provided the ability for r/suns to ally with some of the surrounding neighbors, as well as an opportunity for the other Arizona based groups to relocate here and support eachother: r/ASU, r/AZCardinals, and r/Arizona", "website": "", "subreddit": "", "center": [514.5, 1851.5], "path": [[490.5, 1828.5], [490.5, 1879.5], [509.5, 1879.5], [509.5, 1867.5], [521.5, 1867.5], [521.5, 1879.5], [537.5, 1879.5], [537.5, 1828.5], [526.5, 1828.5], [526.5, 1823.5], [525.5, 1823.5], [524.5, 1823.5], [524.5, 1822.5], [522.5, 1822.5], [522.5, 1821.5], [520.5, 1821.5], [520.5, 1820.5], [518.5, 1820.5], [518.5, 1819.5], [516.5, 1819.5], [516.5, 1818.5], [513.5, 1818.5], [513.5, 1824.5], [514.5, 1824.5], [514.5, 1828.5]]}, -{"id": "twq5zs", "submitted_by": "RUB_23", "name": "Adamastor", "description": "The Adamastor is a mythological giant that lives in the seas. He is represented in the book Os Lusíadas from Luís de Camões.", "website": "https://en.wikipedia.org/wiki/Adamastor", "subreddit": "/r/portugal", "center": [1151.5, 345.5], "path": [[1180.5, 324.5], [1121.5, 325.5], [1121.5, 346.5], [1116.5, 351.5], [1111.5, 352.5], [1111.5, 353.5], [1114.5, 353.5], [1116.5, 358.5], [1120.5, 360.5], [1124.5, 358.5], [1128.5, 358.5], [1132.5, 361.5], [1138.5, 360.5], [1141.5, 362.5], [1143.5, 366.5], [1143.5, 371.5], [1150.5, 366.5], [1161.5, 373.5], [1161.5, 367.5], [1181.5, 367.5]]}, -{"id": "twq5wb", "submitted_by": "zennysays", "name": "Kitboga", "description": "Twitch and Youtube Streamer, Kitboga. An improv artist who wastes scammers time, while spreading positivity wherever he goes and making the world laugh. Take chances, make mistakes and get messy. You matter.", "website": "https://www.twitch.tv/kitboga", "subreddit": "/r/Kitboga", "center": [1311.5, 1742.5], "path": [[1296.5, 1741.5], [1286.5, 1739.5], [1331.5, 1739.5], [1331.5, 1746.5], [1287.5, 1746.5], [1286.5, 1739.5], [1332.5, 1738.5], [1331.5, 1746.5], [1286.5, 1744.5], [1286.5, 1745.5], [1286.5, 1745.5], [1287.5, 1745.5]]}, -{"id": "twq5n9", "submitted_by": "Real_Ralphtherap", "name": "LEMMiNO", "description": "An Educational YouTube Channel that does documentaries and list videos, who is narrated by a 20-something Swedish guy.", "website": "https://www.lemmi.no/", "subreddit": "/r/LEMMiNO", "center": [1597.5, 255.5], "path": [[1591.5, 250.5], [1602.5, 250.5], [1602.5, 260.5], [1591.5, 260.5], [1591.5, 250.5]]}, -{"id": "twq5kg", "submitted_by": "siiimulation", "name": "LMU logo", "description": "Logo of the Ludwig Maximilian University of Munich (next to the logo of our sister university TUM)", "website": "https://www.lmu.de/en", "subreddit": "/r/LMUMunich", "center": [1251.5, 1194.5], "path": [[1242.5, 1191.5], [1260.5, 1191.5], [1260.5, 1197.5], [1242.5, 1197.5], [1242.5, 1191.5]]}, -{"id": "twq5es", "submitted_by": "Juanco93", "name": "Mercadona", "description": "Spanish family-owned supermarket chain. It has 1636 stores in all the 17 autonomous communities of Spain, Ceuta, Melilla, and northen Portugal.", "website": "https://info.mercadona.es/en/who-we-are", "subreddit": "/r/esPlace", "center": [1016.5, 295.5], "path": [[1014.5, 306.5], [1008.5, 302.5], [1006.5, 300.5], [1005.5, 297.5], [1006.5, 289.5], [1010.5, 285.5], [1017.5, 283.5], [1023.5, 285.5], [1027.5, 289.5], [1028.5, 297.5], [1022.5, 305.5], [1019.5, 306.5], [1014.5, 306.5]]}, -{"id": "twq5ch", "submitted_by": "rollam", "name": "Grote Smurf", "description": "From the Belgian comic series The Smurfs created by Peyo", "website": "", "subreddit": "", "center": [302.5, 629.5], "path": [[313.5, 617.5], [308.5, 613.5], [298.5, 613.5], [290.5, 618.5], [289.5, 621.5], [288.5, 622.5], [288.5, 632.5], [289.5, 635.5], [291.5, 639.5], [294.5, 642.5], [295.5, 643.5], [312.5, 643.5], [319.5, 637.5], [310.5, 624.5]]}, -{"id": "twq5c1", "submitted_by": "Explodingmemes", "name": "Pride road", "description": "A row of pride flags representing the LGBT community", "website": "", "subreddit": "/r/PlacePride", "center": [473.5, 589.5], "path": [[421.5, 450.5], [468.5, 450.5], [468.5, 610.5], [465.5, 610.5], [465.5, 646.5], [597.5, 647.5], [597.5, 681.5], [449.5, 681.5], [448.5, 644.5], [421.5, 644.5], [421.5, 450.5]]}, -{"id": "twq57o", "submitted_by": "esmilgram", "name": "Car", "description": "A small red car that allied with the team building the MILGRAM logo early on in its construction. When the MILGRAM logo was covered by the streamer 5up, the car was rebuilt at the new location.", "website": "https://en.wikipedia.org/wiki/Car", "subreddit": "", "center": [1913.5, 1245.5], "path": [[1912.5, 1244.5], [1912.5, 1246.5], [1912.5, 1245.5], [1913.5, 1245.5], [1914.5, 1245.5], [1915.5, 1245.5], [1915.5, 1246.5], [1915.5, 1245.5], [1914.5, 1245.5], [1914.5, 1244.5], [1912.5, 1244.5], [1913.5, 1244.5], [1912.5, 1244.5]]}, -{"id": "twq56g", "submitted_by": "Kobalt619", "name": "Vorarlberg", "description": "Coat of Arms for Austrias Western Province.", "website": "", "subreddit": "/r/austria", "center": [1068.5, 251.5], "path": [[1062.5, 250.5], [1064.5, 252.5], [1065.5, 251.5], [1067.5, 251.5], [1069.5, 251.5], [1069.5, 253.5], [1069.5, 256.5], [1064.5, 257.5], [1063.5, 258.5], [1070.5, 257.5], [1070.5, 258.5]]}, -{"id": "twq4w9", "submitted_by": "pixlplayer", "name": "Soft Taco and friends", "description": "What started out as a mascot for the Soft Tacos Discord server turned into a group of happy food friends when the Germans got involved.", "website": "https://en.wikipedia.org/wiki/Taco", "subreddit": "/r/PlaceTaco, /r/placeDE", "center": [125.5, 1153.5], "path": [[90.5, 1171.5], [90.5, 1170.5], [89.5, 1170.5], [89.5, 1164.5], [90.5, 1164.5], [90.5, 1162.5], [91.5, 1162.5], [91.5, 1161.5], [92.5, 1161.5], [92.5, 1154.5], [91.5, 1154.5], [91.5, 1152.5], [90.5, 1152.5], [90.5, 1150.5], [91.5, 1150.5], [91.5, 1147.5], [92.5, 1147.5], [92.5, 1139.5], [91.5, 1139.5], [91.5, 1138.5], [89.5, 1138.5], [89.5, 1136.5], [88.5, 1136.5], [88.5, 1135.5], [89.5, 1135.5], [89.5, 1131.5], [90.5, 1131.5], [90.5, 1130.5], [94.5, 1130.5], [94.5, 1131.5], [99.5, 1131.5], [99.5, 1130.5], [102.5, 1130.5], [102.5, 1129.5], [103.5, 1129.5], [103.5, 1128.5], [104.5, 1128.5], [104.5, 1130.5], [110.5, 1130.5], [110.5, 1131.5], [111.5, 1131.5], [111.5, 1133.5], [112.5, 1133.5], [112.5, 1134.5], [111.5, 1134.5], [111.5, 1138.5], [115.5, 1138.5], [115.5, 1139.5], [117.5, 1139.5], [117.5, 1141.5], [118.5, 1141.5], [118.5, 1143.5], [117.5, 1143.5], [117.5, 1145.5], [116.5, 1145.5], [116.5, 1147.5], [116.5, 1148.5], [120.5, 1148.5], [120.5, 1147.5], [121.5, 1147.5], [121.5, 1145.5], [121.5, 1146.5], [121.5, 1147.5], [122.5, 1147.5], [123.5, 1147.5], [123.5, 1146.5], [125.5, 1146.5], [125.5, 1145.5], [126.5, 1145.5], [126.5, 1144.5], [128.5, 1144.5], [128.5, 1143.5], [131.5, 1143.5], [131.5, 1142.5], [132.5, 1142.5], [132.5, 1141.5], [133.5, 1141.5], [133.5, 1140.5], [134.5, 1140.5], [134.5, 1139.5], [135.5, 1139.5], [135.5, 1138.5], [137.5, 1138.5], [137.5, 1137.5], [141.5, 1137.5], [141.5, 1138.5], [142.5, 1138.5], [142.5, 1139.5], [143.5, 1139.5], [143.5, 1141.5], [145.5, 1141.5], [145.5, 1140.5], [146.5, 1140.5], [146.5, 1138.5], [148.5, 1138.5], [148.5, 1137.5], [149.5, 1137.5], [149.5, 1138.5], [150.5, 1138.5], [150.5, 1139.5], [151.5, 1139.5], [151.5, 1140.5], [152.5, 1140.5], [152.5, 1141.5], [154.5, 1141.5], [154.5, 1140.5], [155.5, 1140.5], [155.5, 1139.5], [156.5, 1139.5], [156.5, 1140.5], [157.5, 1140.5], [157.5, 1141.5], [158.5, 1141.5], [158.5, 1142.5], [161.5, 1142.5], [161.5, 1141.5], [162.5, 1141.5], [162.5, 1140.5], [163.5, 1140.5], [163.5, 1139.5], [164.5, 1139.5], [164.5, 1140.5], [165.5, 1140.5], [165.5, 1141.5], [166.5, 1141.5], [166.5, 1142.5], [167.5, 1142.5], [167.5, 1143.5], [166.5, 1143.5], [166.5, 1145.5], [165.5, 1145.5], [165.5, 1147.5], [166.5, 1147.5], [166.5, 1149.5], [167.5, 1149.5], [167.5, 1152.5], [166.5, 1152.5], [166.5, 1156.5], [165.5, 1156.5], [165.5, 1159.5], [164.5, 1159.5], [164.5, 1161.5], [163.5, 1161.5], [163.5, 1165.5], [162.5, 1165.5], [162.5, 1166.5], [161.5, 1166.5], [161.5, 1167.5], [160.5, 1168.5], [153.5, 1169.5], [153.5, 1168.5], [149.5, 1168.5], [149.5, 1167.5], [147.5, 1167.5], [146.5, 1167.5], [146.5, 1170.5], [145.5, 1170.5], [145.5, 1171.5], [128.5, 1171.5], [128.5, 1168.5], [127.5, 1168.5], [127.5, 1166.5], [126.5, 1166.5], [127.5, 1166.5], [127.5, 1162.5], [125.5, 1162.5], [126.5, 1160.5], [124.5, 1160.5], [124.5, 1161.5], [123.5, 1161.5], [123.5, 1162.5], [118.5, 1162.5], [118.5, 1163.5], [111.5, 1163.5], [111.5, 1170.5], [110.5, 1170.5], [110.5, 1171.5], [105.5, 1171.5]]}, -{"id": "twq4w2", "submitted_by": "jranfran", "name": "Juja", "description": "Jujalag is a Spanish streamer", "website": "https://www.twitch.tv/jujalag", "subreddit": "/r/SorryLag", "center": [1549.5, 1022.5], "path": [[1525.5, 999.5], [1574.5, 999.5], [1573.5, 1045.5], [1525.5, 1045.5], [1525.5, 999.5]]}, -{"id": "twq4vt", "submitted_by": "gavinorrwa", "name": "Cal Poly SLO", "description": "The logo of California Polytechnic State University, San Luis Obispo (Cal Poly SLO) along with the mountains surrounding the campus.", "website": "https://www.calpoly.edu/", "subreddit": "/r/CalPoly", "center": [725.5, 1846.5], "path": [[716.5, 1830.5], [733.5, 1830.5], [733.5, 1862.5], [716.5, 1862.5], [716.5, 1837.5], [716.5, 1831.5]]}, -{"id": "twq4ux", "submitted_by": "Klisurovi4", "name": "A lion - Bulgarian national symbol", "description": "One of the national symbols of Bulgaria, part of the Coat of arms of Bulgaria", "website": "https://en.wikipedia.org/wiki/National_symbols_of_Bulgaria", "subreddit": "/r/bulgaria", "center": [571.5, 384.5], "path": [[563.5, 377.5], [562.5, 378.5], [561.5, 379.5], [561.5, 392.5], [580.5, 392.5], [580.5, 379.5], [579.5, 378.5], [579.5, 377.5], [578.5, 376.5], [563.5, 376.5], [563.5, 377.5]]}, -{"id": "twq4nz", "submitted_by": "Fightrface", "name": "Flipnote Frog", "description": "What's supposed to be the Flipnote Studio frog", "website": "", "subreddit": "/r/FlipnoteStudio3D", "center": [1993.5, 875.5], "path": [[1987.5, 869.5], [1998.5, 869.5], [1998.5, 880.5], [1987.5, 880.5]]}, -{"id": "twq4h9", "submitted_by": "Spiderinmyear", "name": "The Wandering Inn", "description": "A Web Serial written by Pirateaba. Pictured is a goblin, an acidfly jar and Apista the bee.", "website": "https://wanderinginn.com/", "subreddit": "/r/WanderingInn", "center": [1881.5, 378.5], "path": [[1852.5, 372.5], [1852.5, 388.5], [1876.5, 388.5], [1876.5, 382.5], [1877.5, 381.5], [1893.5, 381.5], [1895.5, 382.5], [1900.5, 382.5], [1904.5, 381.5], [1907.5, 381.5], [1917.5, 381.5], [1918.5, 381.5], [1918.5, 372.5], [1852.5, 372.5]]}, -{"id": "twq4av", "submitted_by": "WabShp", "name": "École Polytechnique Universitaire", "description": "French engineering school", "website": "https://www.polytech-reseau.org", "subreddit": "", "center": [898.5, 1768.5], "path": [[890.5, 1758.5], [905.5, 1758.5], [905.5, 1777.5], [890.5, 1777.5]]}, -{"id": "twq3zd", "submitted_by": "Relssifille", "name": "Girlgroup Alley", "description": "A section featuring logos of several kpop girl groups. Allied with MF DOOM, who became the face of the Discord used to coordinate the builds", "website": "", "subreddit": "/r/kpop", "center": [1593.5, 884.5], "path": [[1450.5, 869.5], [1717.5, 869.5], [1717.5, 898.5], [1645.5, 898.5], [1645.5, 903.5], [1607.5, 903.5], [1607.5, 908.5], [1588.5, 908.5], [1587.5, 899.5], [1525.5, 898.5], [1525.5, 912.5], [1508.5, 911.5], [1508.5, 899.5], [1503.5, 898.5], [1503.5, 891.5], [1498.5, 890.5], [1498.5, 885.5], [1453.5, 883.5], [1452.5, 878.5]]}, -{"id": "twq3ux", "submitted_by": "Key-Support-7991", "name": "Chrono", "description": "Main character from the 1995 SNES game Chrono TriggernnChrono used to overlap with Okabe from Steins;Gate. nThis was very fitting as both Chrono Trigger and Steins;Gate heavily feature time travel. nHowever, a few hours before the end, both Chrono and Okabe were moved when TheNetherlands placed their painting of a ship on the map.nnChrono used to be accompanied by a sprite of a kissing Marle. nHowever, during the transfer, Marle's sprite was unfortunately lost.", "website": "", "subreddit": "/r/chronotrigger", "center": [440.5, 1954.5], "path": [[430.5, 1937.5], [449.5, 1937.5], [449.5, 1970.5], [430.5, 1970.5]]}, -{"id": "twq3sg", "submitted_by": "RoootTheFox", "name": "Fox", "description": "A small fox built by members of Samifying's Discord Server.", "website": "https://discord.gg/samifying", "subreddit": "", "center": [1611.5, 1531.5], "path": [[1606.5, 1523.5], [1608.5, 1523.5], [1608.5, 1524.5], [1609.5, 1524.5], [1609.5, 1525.5], [1610.5, 1525.5], [1610.5, 1526.5], [1612.5, 1526.5], [1612.5, 1525.5], [1613.5, 1525.5], [1613.5, 1524.5], [1614.5, 1524.5], [1614.5, 1523.5], [1616.5, 1523.5], [1616.5, 1530.5], [1617.5, 1530.5], [1617.5, 1532.5], [1618.5, 1532.5], [1618.5, 1534.5], [1616.5, 1534.5], [1616.5, 1535.5], [1613.5, 1535.5], [1613.5, 1537.5], [1614.5, 1536.5], [1615.5, 1535.5], [1618.5, 1535.5], [1618.5, 1536.5], [1617.5, 1536.5], [1617.5, 1537.5], [1616.5, 1537.5], [1616.5, 1538.5], [1615.5, 1538.5], [1615.5, 1538.5], [1615.5, 1539.5], [1608.5, 1539.5], [1608.5, 1538.5], [1609.5, 1538.5], [1609.5, 1535.5], [1606.5, 1535.5], [1606.5, 1534.5], [1606.5, 1534.5], [1604.5, 1534.5], [1604.5, 1532.5], [1605.5, 1532.5], [1605.5, 1530.5], [1606.5, 1530.5], [1606.5, 1523.5]]}, -{"id": "twq3hr", "submitted_by": "NattePepernoot", "name": "Dune Movie", "description": "A movie that released in 2021", "website": "https://www.imdb.com/title/tt1160419/", "subreddit": "", "center": [1982.5, 169.5], "path": [[1965.5, 163.5], [1999.5, 163.5], [1999.5, 174.5], [1965.5, 174.5]]}, -{"id": "twq3fd", "submitted_by": "Sarinyann", "name": "Etoiles' Emote", "description": "Emote twitch from the French streamer Etoiles", "website": "https://www.twitch.tv/etoiles?lang=fr", "subreddit": "", "center": [263.5, 1575.5], "path": [[250.5, 1554.5], [251.5, 1554.5], [251.5, 1552.5], [267.5, 1552.5], [267.5, 1553.5], [272.5, 1553.5], [277.5, 1553.5], [277.5, 1598.5], [250.5, 1598.5], [250.5, 1554.5]]}, -{"id": "twq3cd", "submitted_by": "Da_Chicken303", "name": "Conlangs", "description": "The symbol of the conlang community. Conlangs are languages created artificially and not as a result of natural means.", "website": "", "subreddit": "/r/Conlangs", "center": [736.5, 329.5], "path": [[733.5, 326.5], [738.5, 326.5], [738.5, 331.5], [733.5, 331.5], [733.5, 331.5]]}, -{"id": "twq3c8", "submitted_by": "Klisurovi4", "name": "Bulgarian Alphabet", "description": "The first three letters of the Bulgarian alphabet", "website": "", "subreddit": "/r/Bulgaria", "center": [545.5, 384.5], "path": [[529.5, 389.5], [529.5, 378.5], [560.5, 378.5], [561.5, 389.5]]}, -{"id": "001914", "name": "World War I memorial", "description": "In collaboration with r/placeDE, the Belgian Place crew created a memorial for World War I on the intersection of the Belgian and German flags.", "website": "https://en.wikipedia.org/wiki/World_War_I", "subreddit": "/r/placebe, /r/belgium, /r/placeDE", "center": [1309.5, 1150.5], "path": [[1286.5, 1124.5], [1286.5, 1172.5], [1293.5, 1175.5], [1300.5, 1177.5], [1307.5, 1178.5], [1308.5, 1177.5], [1315.5, 1177.5], [1316.5, 1177.5], [1316.5, 1178.5], [1320.5, 1178.5], [1320.5, 1177.5], [1322.5, 1177.5], [1322.5, 1176.5], [1324.5, 1176.5], [1324.5, 1175.5], [1326.5, 1175.5], [1326.5, 1174.5], [1330.5, 1174.5], [1330.5, 1173.5], [1333.5, 1173.5], [1332.5, 1125.5]]}, -{"id": "twq34c", "submitted_by": "RUB_23", "name": "Portuguese tiles", "description": "Here you can see three Portuguese items, a Galo de Barcelos, a Pastel de Nata and Delta Cafés with traditional Portuguese tiles in the background.", "website": "", "subreddit": "/r/portugal", "center": [894.5, 391.5], "path": [[865.5, 372.5], [922.5, 371.5], [922.5, 411.5], [865.5, 411.5]]}, -{"id": "twq32o", "submitted_by": "rollam", "name": "Omleiding-deviation signs", "description": "Confusing and contradicting deviation signs are a staple of the Belgian driving experience", "website": "", "subreddit": "", "center": [1308.5, 1221.5], "path": [[1287.5, 1229.5], [1291.5, 1233.5], [1305.5, 1236.5], [1310.5, 1236.5], [1326.5, 1233.5], [1328.5, 1215.5], [1324.5, 1210.5], [1307.5, 1205.5], [1290.5, 1210.5], [1288.5, 1221.5]]}, -{"id": "twq2zm", "submitted_by": "_q-p_", "name": "Nichijou", "description": "Popular slice-of-life manga/anime created by Arawi Keiichi and animated by Kyoto Animation. Depicted from left to right are three of the six main characters: Aioi Yukko, Mio Naganohara, and Mai Minakami", "website": "", "subreddit": "/r/Nichijou", "center": [1413.5, 1252.5], "path": [[1387.5, 1244.5], [1387.5, 1260.5], [1438.5, 1260.5], [1438.5, 1244.5]]}, -{"id": "twq2wt", "submitted_by": "Viperense", "name": "RWBY", "description": "RWBY is an animated show produced by Rooster Teeth", "website": "https://roosterteeth.com/series/rwby", "subreddit": "/r/RWBY", "center": [474.5, 721.5], "path": [[450.5, 714.5], [450.5, 728.5], [497.5, 728.5], [497.5, 714.5], [472.5, 714.5]]}, -{"id": "twq2p1", "submitted_by": "N8dawgggg", "name": "Tampa Bay Rays", "description": "The Professional Baseball team the Rays TB logo, for Tampa Bay.", "website": "https://www.mlb.com/rays", "subreddit": "/r/tampabayrays", "center": [1767.5, 271.5], "path": [[1759.5, 279.5], [1759.5, 263.5], [1776.5, 263.5], [1776.5, 275.5], [1774.5, 275.5], [1774.5, 279.5]]}, -{"id": "twq2ow", "submitted_by": "minecrafter2301", "name": "RvNxMango polar bear", "description": "rvnxPolar is a subscriber emote from the Twitch channel of German streamer and YouTube creator RvNxMango, who was granted a spot on the German flag for working with r/placeDE.", "website": "https://www.twitch.tv/rvnxmango", "subreddit": "/r/rvnxmango, /r/placeDE", "center": [215.5, 1144.5], "path": [[206.5, 1163.5], [200.5, 1163.5], [200.5, 1162.5], [199.5, 1162.5], [199.5, 1161.5], [198.5, 1161.5], [198.5, 1157.5], [197.5, 1157.5], [197.5, 1147.5], [196.5, 1147.5], [196.5, 1146.5], [195.5, 1146.5], [195.5, 1145.5], [194.5, 1145.5], [194.5, 1142.5], [195.5, 1142.5], [195.5, 1139.5], [196.5, 1139.5], [196.5, 1134.5], [199.5, 1134.5], [199.5, 1133.5], [200.5, 1133.5], [200.5, 1132.5], [201.5, 1132.5], [201.5, 1131.5], [203.5, 1131.5], [203.5, 1130.5], [205.5, 1130.5], [205.5, 1129.5], [208.5, 1129.5], [208.5, 1128.5], [210.5, 1128.5], [210.5, 1127.5], [213.5, 1127.5], [213.5, 1126.5], [219.5, 1126.5], [219.5, 1127.5], [224.5, 1127.5], [224.5, 1128.5], [228.5, 1128.5], [228.5, 1129.5], [230.5, 1129.5], [230.5, 1130.5], [231.5, 1130.5], [231.5, 1131.5], [232.5, 1131.5], [232.5, 1133.5], [233.5, 1133.5], [233.5, 1134.5], [234.5, 1134.5], [234.5, 1136.5], [235.5, 1136.5], [235.5, 1144.5], [234.5, 1144.5], [234.5, 1149.5], [233.5, 1149.5], [233.5, 1150.5], [233.5, 1154.5], [232.5, 1154.5], [232.5, 1155.5], [232.5, 1156.5], [231.5, 1156.5], [231.5, 1157.5], [226.5, 1157.5], [226.5, 1158.5], [225.5, 1158.5], [225.5, 1159.5], [224.5, 1159.5], [224.5, 1160.5], [223.5, 1160.5], [223.5, 1161.5], [217.5, 1161.5], [217.5, 1160.5], [216.5, 1160.5], [216.5, 1159.5], [215.5, 1159.5], [215.5, 1158.5], [214.5, 1158.5], [214.5, 1157.5], [213.5, 1157.5], [213.5, 1156.5], [213.5, 1155.5], [211.5, 1156.5], [211.5, 1157.5], [210.5, 1157.5], [210.5, 1159.5], [209.5, 1159.5], [209.5, 1160.5], [208.5, 1160.5], [208.5, 1161.5], [207.5, 1161.5], [207.5, 1161.5], [207.5, 1162.5], [206.5, 1162.5], [206.5, 1163.5]]}, -{"id": "twq2j7", "submitted_by": "Klisurovi4", "name": "Tarator", "description": "A bowl of tarator, a yoghurt based cold soup. Very popular in Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [520.5, 381.5], "path": [[515.5, 377.5], [514.5, 378.5], [513.5, 379.5], [513.5, 381.5], [515.5, 383.5], [515.5, 384.5], [516.5, 385.5], [523.5, 385.5], [524.5, 384.5], [524.5, 383.5], [525.5, 382.5], [526.5, 381.5], [526.5, 379.5], [525.5, 378.5], [524.5, 377.5], [515.5, 377.5]]}, -{"id": "twq2ej", "submitted_by": "Juanco93", "name": "Sagrada Família church", "description": "Famous unfinished minor basilica in Barcelona designed by the Catalan architect Antoni Gaudí in Barcelona. Construction began on 1882, and due to numerous factors, the project moved at a slow pace and is currently still being built.", "website": "https://sagradafamilia.org/en/", "subreddit": "/r/esPlace", "center": [1376.5, 295.5], "path": [[1365.5, 308.5], [1365.5, 281.5], [1387.5, 281.5], [1388.5, 308.5]]}, -{"id": "twq2dv", "submitted_by": "NattePepernoot", "name": "Toad in Mario Tube", "description": "A character from a game in a mario tube.", "website": "", "subreddit": "", "center": [1093.5, 1022.5], "path": [[1087.5, 1034.5], [1087.5, 1022.5], [1086.5, 1021.5], [1086.5, 1017.5], [1088.5, 1015.5], [1089.5, 1011.5], [1091.5, 1009.5], [1097.5, 1009.5], [1098.5, 1010.5], [1099.5, 1011.5], [1099.5, 1014.5], [1098.5, 1015.5], [1099.5, 1016.5], [1100.5, 1017.5], [1100.5, 1021.5], [1099.5, 1022.5], [1099.5, 1028.5], [1099.5, 1030.5], [1097.5, 1033.5], [1094.5, 1035.5]]}, -{"id": "twq2cw", "submitted_by": "rollam", "name": "Jean-Claude Van Damme", "description": "Inspired by his famous Volvo ad doing a split between two trucks, but they have been replaced by a De Lijn and TEC bus", "website": "", "subreddit": "", "center": [1308.5, 1305.5], "path": [[1286.5, 1315.5], [1286.5, 1300.5], [1306.5, 1289.5], [1310.5, 1290.5], [1331.5, 1300.5], [1331.5, 1315.5], [1329.5, 1316.5], [1287.5, 1316.5]]}, -{"id": "twq29h", "submitted_by": "Sarinyann", "name": "Fukano", "description": "Emote of the French Streamer Fukano", "website": "https://www.twitch.tv/fukano?lang=fr", "subreddit": "", "center": [264.5, 1619.5], "path": [[250.5, 1602.5], [250.5, 1636.5], [278.5, 1636.5], [278.5, 1602.5], [250.5, 1602.5]]}, -{"id": "twq1tk", "submitted_by": "Vytome", "name": "Super Auto Pets turtle", "description": "The auto-battler game Super Auto Pets, by Teamwood Games, uses android emojis for its characters. The turtle unit is modeled after it.", "website": "https://teamwoodgames.com/", "subreddit": "/r/superautopets, /r/place_CentralAlliance", "center": [257.5, 978.5], "path": [[245.5, 967.5], [245.5, 989.5], [267.5, 989.5], [269.5, 975.5], [267.5, 967.5], [245.5, 967.5]]}, -{"id": "twq1px", "submitted_by": "MOZPORYL", "name": "Tomb of Cyrus", "description": "The final resting place of Cyrus the Great, the founder of the ancient Achaemenid Empire.", "website": "", "subreddit": "", "center": [33.5, 328.5], "path": [[31.5, 316.5], [35.5, 316.5], [37.5, 319.5], [37.5, 326.5], [40.5, 326.5], [45.5, 335.5], [20.5, 335.5], [22.5, 332.5], [26.5, 327.5], [29.5, 326.5], [29.5, 318.5], [30.5, 317.5]]}, -{"id": "twq1jo", "submitted_by": "kopie50", "name": "Lion of Brabant", "description": "In collaboration with r/placeDE, Belgium's r/place crew created the Lion of Brabant (from the Belgian coat of arms) where Belgian and German flags cross.", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Belgium", "subreddit": "/r/belgium, /r/placeDE", "center": [1307.5, 858.5], "path": [[1282.5, 830.5], [1331.5, 830.5], [1331.5, 878.5], [1330.5, 881.5], [1329.5, 884.5], [1327.5, 886.5], [1323.5, 886.5], [1311.5, 887.5], [1308.5, 888.5], [1304.5, 889.5], [1302.5, 888.5], [1302.5, 887.5], [1290.5, 887.5], [1290.5, 886.5], [1287.5, 886.5], [1285.5, 883.5], [1284.5, 881.5], [1283.5, 880.5], [1283.5, 877.5], [1282.5, 878.5], [1282.5, 830.5]]}, -{"id": "twq1hs", "submitted_by": "Pinchface05", "name": "Chloe", "description": "A drawing of Chloe, a character created by u/SrGrafo as a mascot of r/animemes, then he started drawing daily and posted his drawings of hers on r/chloe.", "website": "", "subreddit": "/r/chloe", "center": [1954.5, 254.5], "path": [[1968.5, 269.5], [1968.5, 239.5], [1940.5, 239.5], [1940.5, 269.5]]}, -{"id": "twq1fd", "submitted_by": "Klisurovi4", "name": "Bulgarian Flag", "description": "The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877–1878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law.", "website": "https://en.wikipedia.org/wiki/Flag_of_Bulgaria", "subreddit": "/r/bulgaria", "center": [599.5, 384.5], "path": [[481.5, 377.5], [481.5, 391.5], [717.5, 391.5], [717.5, 380.5], [712.5, 377.5]]}, -{"id": "twq1f7", "submitted_by": "rollam", "name": "Belgian communities arms", "description": "A design mixing the Flemish, Walloon and German speaking communities that constitute Belgium", "website": "", "subreddit": "", "center": [1308.5, 1259.5], "path": [[1286.5, 1237.5], [1328.5, 1237.5], [1328.5, 1239.5], [1329.5, 1240.5], [1331.5, 1242.5], [1331.5, 1278.5], [1329.5, 1281.5], [1312.5, 1281.5], [1308.5, 1285.5], [1304.5, 1282.5], [1286.5, 1281.5]]}, -{"id": "twq0xx", "submitted_by": "MOZPORYL", "name": "Azadi Tower", "description": "Azadi Tower located in the Iranian capital, Tehran, with an Iranian flag on top of it.", "website": "", "subreddit": "", "center": [15.5, 295.5], "path": [[14.5, 278.5], [14.5, 285.5], [10.5, 286.5], [8.5, 288.5], [8.5, 298.5], [0.5, 306.5], [0.5, 307.5], [10.5, 307.5], [11.5, 305.5], [12.5, 301.5], [12.5, 299.5], [15.5, 299.5], [16.5, 302.5], [16.5, 304.5], [18.5, 306.5], [18.5, 307.5], [28.5, 307.5], [20.5, 298.5], [20.5, 288.5], [17.5, 286.5], [14.5, 286.5], [14.5, 284.5], [23.5, 284.5], [24.5, 284.5], [24.5, 278.5], [14.5, 278.5]]}, -{"id": "twq0r2", "submitted_by": "Vilvilea", "name": "BanG Dream!", "description": "The characters Kasumi and Arisa from the Japanese Rhythm game Bang Dream! Girls Band Party!", "website": "", "subreddit": "", "center": [343.5, 1055.5], "path": [[324.5, 1043.5], [324.5, 1068.5], [362.5, 1068.5], [361.5, 1042.5]]}, -{"id": "twq0qt", "submitted_by": "Master_Natural_3234", "name": "Fate/Grand Order", "description": "The app icon for Fate/Grand Order, a free-to-play Japanese mobile game developed by Lasengle using Unity and published by Aniplex, a subsidiary of Sony Music Entertainment Japan.", "website": "https://www.fate-go.jp", "subreddit": "/r/grandorder", "center": [1652.5, 1785.5], "path": [[1673.5, 1809.5], [1673.5, 1762.5], [1639.5, 1762.5], [1626.5, 1776.5], [1626.5, 1779.5], [1628.5, 1780.5], [1630.5, 1781.5], [1628.5, 1782.5], [1628.5, 1782.5], [1627.5, 1783.5], [1625.5, 1784.5], [1626.5, 1786.5], [1631.5, 1789.5], [1631.5, 1792.5], [1633.5, 1793.5], [1633.5, 1795.5], [1633.5, 1803.5], [1635.5, 1804.5], [1635.5, 1805.5], [1636.5, 1805.5], [1636.5, 1807.5], [1638.5, 1808.5], [1639.5, 1809.5], [1674.5, 1809.5], [1671.5, 1809.5], [1665.5, 1808.5], [1674.5, 1809.5], [1674.5, 1809.5]]}, -{"id": "twq0ic", "submitted_by": "rollam", "name": "Saxophone", "description": "Invented in Belgium by Adolphe Sax in 1846", "website": "", "subreddit": "", "center": [1308.5, 1576.5], "path": [[1295.5, 1577.5], [1295.5, 1589.5], [1300.5, 1593.5], [1305.5, 1593.5], [1308.5, 1590.5], [1309.5, 1586.5], [1311.5, 1580.5], [1326.5, 1561.5], [1316.5, 1558.5], [1306.5, 1570.5]]}, -{"id": "twq0fq", "submitted_by": "Juanco93", "name": "Canarian banana", "description": "A type of banana cultivated in the Canary Islands. For decades, it has been the protagonist of the industry growth on the islands, producing 60% of Europe's banana production.", "website": "https://www.foodswinesfromspain.com/spanishfoodwine/global/food/products/subproducts/PRG2017733722.html", "subreddit": "/r/esPlace", "center": [1441.5, 301.5], "path": [[1447.5, 306.5], [1436.5, 306.5], [1436.5, 295.5], [1447.5, 296.5], [1447.5, 306.5]]}, -{"id": "twq03j", "submitted_by": "FairyRave", "name": "Antarctic Empire flag", "description": "The Antarctic Empire is a faction created by Technoblade. It is the most militaristic and expansionist faction on SMPEarth. The flag was created by the L'Manplace community.", "website": "https://smpearth.fandom.com/wiki/Antarctic_Empire", "subreddit": "/r/smpearth, /r/technoblade", "center": [185.5, 1090.5], "path": [[181.5, 1085.5], [181.5, 1099.5], [181.5, 1094.5], [182.5, 1094.5], [182.5, 1093.5], [186.5, 1093.5], [186.5, 1094.5], [187.5, 1094.5], [187.5, 1099.5], [188.5, 1099.5], [188.5, 1085.5]]}, -{"id": "twq01f", "submitted_by": "dungbuggy", "name": "Burssty", "description": "8x8 skin of Burssty alongside a gay and trans pride flag surrounded by black borders. Burssty is a Minecraft YouTuber.", "website": "https://youtube.com/burssty", "subreddit": "/r/burssty", "center": [1439.5, 1330.5], "path": [[1432.5, 1322.5], [1432.5, 1337.5], [1445.5, 1337.5], [1445.5, 1322.5]]}, -{"id": "twpzv8", "submitted_by": "rollam", "name": "Stromae", "description": "Famous Belgian musician", "website": "", "subreddit": "", "center": [1307.5, 1793.5], "path": [[1293.5, 1785.5], [1296.5, 1807.5], [1296.5, 1810.5], [1304.5, 1817.5], [1307.5, 1817.5], [1310.5, 1814.5], [1313.5, 1805.5], [1320.5, 1805.5], [1321.5, 1801.5], [1322.5, 1801.5], [1323.5, 1795.5], [1319.5, 1780.5], [1316.5, 1776.5], [1310.5, 1774.5], [1303.5, 1773.5], [1301.5, 1774.5], [1298.5, 1776.5], [1295.5, 1777.5]]}, -{"id": "twpzqw", "submitted_by": "NattePepernoot", "name": "Disguised Toast", "description": "A YouTuber part from OfflineTV", "website": "https://www.youtube.com/c/DisguisedToast/channels", "subreddit": "/r/offlineTV", "center": [1797.5, 1627.5], "path": [[1785.5, 1615.5], [1808.5, 1615.5], [1808.5, 1639.5], [1785.5, 1639.5]]}, -{"id": "twpzld", "submitted_by": "MCYCShadow", "name": "TrackMania 2020", "description": "The current, modern logo of TrackMania, introduced with the latest edition in the franchise.", "website": "https://www.ubisoft.com/de-de/game/trackmania/trackmania", "subreddit": "/r/trackmania", "center": [1596.5, 521.5], "path": [[1591.5, 499.5], [1591.5, 543.5], [1600.5, 543.5], [1600.5, 499.5], [1591.5, 499.5]]}, -{"id": "twpzey", "submitted_by": "DanTUP1", "name": "r/CitiesWar", "description": "A browser game that takes place on Google Maps where players battle out in control of real-life territory and cities.", "website": "https://www.citieswar.com/login", "subreddit": "/r/CitiesWar", "center": [426.5, 1638.5], "path": [[402.5, 1634.5], [402.5, 1641.5], [451.5, 1641.5], [450.5, 1634.5]]}, -{"id": "twpzb0", "submitted_by": "MOZPORYL", "name": "Iran text", "description": "It was supposed to say Iran but it was vandalized at the last moment", "website": "", "subreddit": "", "center": [60.5, 307.5], "path": [[50.5, 305.5], [69.5, 305.5], [69.5, 309.5], [50.5, 309.5]]}, -{"id": "twpz3s", "submitted_by": "Spatless", "name": "Ninten", "description": "Main protagonist of Earthbound Beginnings AKA Mother 1", "website": "", "subreddit": "/r/earthbound", "center": [707.5, 302.5], "path": [[703.5, 306.5], [702.5, 306.5], [702.5, 308.5], [703.5, 308.5], [703.5, 309.5], [704.5, 309.5], [704.5, 310.5], [711.5, 310.5], [711.5, 309.5], [712.5, 309.5], [712.5, 308.5], [712.5, 307.5], [713.5, 307.5], [712.5, 307.5], [712.5, 306.5], [711.5, 306.5], [711.5, 305.5], [710.5, 305.5], [710.5, 304.5], [710.5, 303.5], [711.5, 303.5], [711.5, 302.5], [712.5, 302.5], [712.5, 301.5], [713.5, 301.5], [714.5, 301.5], [714.5, 300.5], [712.5, 300.5], [713.5, 299.5], [713.5, 298.5], [714.5, 298.5], [715.5, 298.5], [714.5, 298.5], [713.5, 298.5], [713.5, 297.5], [713.5, 296.5], [712.5, 296.5], [712.5, 295.5], [711.5, 295.5], [710.5, 295.5], [704.5, 295.5], [703.5, 295.5], [703.5, 296.5], [702.5, 296.5], [702.5, 299.5], [701.5, 299.5], [701.5, 300.5], [701.5, 300.5], [702.5, 300.5], [702.5, 301.5], [703.5, 301.5], [703.5, 302.5], [704.5, 302.5], [704.5, 303.5], [705.5, 303.5], [705.5, 304.5], [705.5, 305.5], [704.5, 305.5], [704.5, 306.5], [703.5, 306.5]]}, -{"id": "twpyy2", "submitted_by": "Galieo337", "name": "VShojo Girls", "description": "Four of the Vshojo Girls: ProjektMelody, Nyanners, Silvervale, ironmouse, and Froot.", "website": "https://www.vshojo.com/", "subreddit": "/r/vshojo, /r/VirtualYouTubers", "center": [1452.5, 1185.5], "path": [[1414.5, 1172.5], [1414.5, 1200.5], [1489.5, 1200.5], [1489.5, 1172.5], [1488.5, 1172.5], [1488.5, 1170.5], [1487.5, 1170.5], [1487.5, 1169.5], [1486.5, 1169.5], [1486.5, 1168.5], [1484.5, 1168.5], [1484.5, 1169.5], [1483.5, 1169.5], [1483.5, 1170.5], [1482.5, 1170.5], [1482.5, 1169.5], [1480.5, 1169.5], [1480.5, 1170.5], [1480.5, 1169.5], [1477.5, 1169.5], [1477.5, 1170.5], [1477.5, 1169.5], [1475.5, 1169.5], [1475.5, 1170.5], [1474.5, 1170.5], [1474.5, 1169.5], [1473.5, 1169.5], [1473.5, 1168.5], [1471.5, 1168.5], [1471.5, 1169.5], [1467.5, 1169.5], [1467.5, 1170.5], [1468.5, 1171.5], [1467.5, 1171.5], [1465.5, 1169.5], [1464.5, 1170.5], [1463.5, 1169.5], [1462.5, 1170.5], [1461.5, 1169.5], [1459.5, 1169.5], [1457.5, 1171.5], [1442.5, 1171.5], [1441.5, 1170.5], [1440.5, 1171.5], [1438.5, 1171.5], [1436.5, 1169.5], [1435.5, 1169.5], [1433.5, 1171.5], [1433.5, 1172.5], [1414.5, 1172.5]]}, -{"id": "twpyva", "submitted_by": "FitteTryne6969", "name": "OptiFine", "description": "Logo of Optifine, a performance-enhancing Minecraft mod.", "website": "http://optifine.net", "subreddit": "/r/Optifine", "center": [473.5, 1576.5], "path": [[460.5, 1562.5], [485.5, 1562.5], [485.5, 1589.5], [460.5, 1589.5]]}, -{"id": "twpyua", "submitted_by": "MOZPORYL", "name": "Map of Iran", "description": "The map of Iran with a heart in the middle of it", "website": "", "subreddit": "", "center": [88.5, 293.5], "path": [[86.5, 277.5], [90.5, 282.5], [97.5, 283.5], [99.5, 287.5], [99.5, 293.5], [101.5, 296.5], [101.5, 299.5], [102.5, 302.5], [100.5, 307.5], [91.5, 307.5], [90.5, 305.5], [89.5, 305.5], [88.5, 306.5], [81.5, 306.5], [78.5, 300.5], [77.5, 295.5], [75.5, 291.5], [74.5, 290.5], [74.5, 285.5], [72.5, 280.5], [74.5, 280.5], [77.5, 281.5], [80.5, 279.5], [83.5, 279.5], [83.5, 277.5]]}, -{"id": "twpyr8", "submitted_by": "rollam", "name": "Ambiorix statue", "description": "Belgic king that fought against Caesar in his conquest of Gaul, model based of statue in Tongeren", "website": "", "subreddit": "", "center": [1308.5, 1638.5], "path": [[1303.5, 1603.5], [1288.5, 1643.5], [1292.5, 1669.5], [1309.5, 1672.5], [1320.5, 1663.5], [1330.5, 1628.5], [1312.5, 1596.5]]}, -{"id": "twpyl6", "submitted_by": "Dacio2105", "name": "De Sterrennacht (The Starry Night)", "description": "The Starry Night is an oil-on-canvas painting by the Dutch Post-Impressionist painter Vincent van Gogh. Painted in June 1889, it depicts the view from the east-facing window of his asylum room at Saint-Rémy-de-Provence, just before sunrise, with the addition of an imaginary village.", "website": "https://en.wikipedia.org/wiki/The_Starry_Night", "subreddit": "/r/PlaceNL", "center": [1478.5, 18.5], "path": [[1449.5, 1.5], [1449.5, 35.5], [1516.5, 35.5], [1516.5, 1.5], [1449.5, 1.5]]}, -{"id": "twpyje", "submitted_by": "red__flag_", "name": "Flag of Germany", "description": "The flag of Germany was build after the second expanision. There were some griefs but the Germans defended it.", "website": "https://discord.gg/placede", "subreddit": "/r/placeDE", "center": [992.5, 1148.5], "path": [[0.5, 1121.5], [448.5, 1121.5], [447.5, 1128.5], [510.5, 1130.5], [551.5, 1131.5], [551.5, 1101.5], [553.5, 1100.5], [553.5, 1126.5], [556.5, 1131.5], [566.5, 1130.5], [570.5, 1124.5], [578.5, 1130.5], [585.5, 1128.5], [590.5, 1124.5], [593.5, 1128.5], [644.5, 1129.5], [644.5, 1134.5], [657.5, 1134.5], [670.5, 1124.5], [686.5, 1125.5], [688.5, 1134.5], [687.5, 1124.5], [805.5, 1122.5], [1000.5, 1122.5], [1006.5, 1132.5], [1006.5, 1132.5], [1016.5, 1133.5], [1029.5, 1132.5], [1041.5, 1130.5], [1043.5, 1122.5], [1065.5, 1123.5], [1197.5, 1122.5], [1309.5, 1124.5], [1365.5, 1125.5], [1524.5, 1126.5], [1525.5, 1129.5], [1544.5, 1128.5], [1646.5, 1126.5], [1707.5, 1128.5], [1726.5, 1129.5], [1751.5, 1132.5], [1764.5, 1129.5], [1767.5, 1122.5], [1792.5, 1122.5], [1999.5, 1120.5], [2000.5, 1172.5], [-0.5, 1172.5]]}, -{"id": "twpycp", "submitted_by": "bulba_", "name": "Calamity Box", "description": "The Calamity Box from Amphibia is a grey chest with gold linings and has pink, green, and blue gemstones within. It also has a gold insignia, as well as a wind-up toy handle on its right side.", "website": "https://amphibia.fandom.com", "subreddit": "/r/Amphibia", "center": [459.5, 1409.5], "path": [[445.5, 1399.5], [446.5, 1419.5], [472.5, 1420.5], [473.5, 1417.5], [475.5, 1416.5], [475.5, 1411.5], [472.5, 1411.5], [472.5, 1404.5], [471.5, 1401.5], [469.5, 1399.5]]}, -{"id": "twpy8z", "submitted_by": "DaZeppy", "name": "Knockout City", "description": "A simple representation for the game showing K O City from multiple community members!", "website": "", "subreddit": "/r/KnockoutCity", "center": [1835.5, 662.5], "path": [[1826.5, 658.5], [1842.5, 658.5], [1842.5, 666.5], [1832.5, 666.5], [1832.5, 664.5], [1826.5, 664.5], [1826.5, 658.5]]}, -{"id": "twpy7q", "submitted_by": "MOZPORYL", "name": "Ancient Persian griffin column", "description": "Example of columns developed in the Achaemenid architecture of ancient Persia", "website": "", "subreddit": "", "center": [44.5, 320.5], "path": [[56.5, 283.5], [51.5, 283.5], [44.5, 291.5], [40.5, 287.5], [35.5, 284.5], [32.5, 285.5], [31.5, 290.5], [34.5, 291.5], [37.5, 296.5], [31.5, 297.5], [31.5, 299.5], [37.5, 300.5], [40.5, 304.5], [40.5, 362.5], [37.5, 364.5], [37.5, 368.5], [51.5, 369.5], [51.5, 364.5], [47.5, 362.5], [48.5, 303.5], [51.5, 300.5], [57.5, 299.5], [57.5, 297.5], [51.5, 297.5], [54.5, 291.5], [57.5, 291.5], [56.5, 287.5], [56.5, 283.5], [56.5, 283.5]]}, -{"id": "twpy2z", "submitted_by": "Sarinyann", "name": "Fanta & Bob", "description": "TheFantasio974 and Bob Lennon, famous French YouTubers known for making French Discovers Minecraft.", "website": "https://www.youtube.com/c/fantabobshow/videos", "subreddit": "", "center": [11.5, 1105.5], "path": [[6.5, 1096.5], [6.5, 1113.5], [15.5, 1113.5], [15.5, 1096.5], [6.5, 1096.5]]}, -{"id": "twpxvm", "submitted_by": "NattePepernoot", "name": "Quackity", "description": "Minecraft head of Quackity, a YouTuber.", "website": "https://youtube.fandom.com/wiki/Quackity", "subreddit": "/r/quackity", "center": [178.5, 940.5], "path": [[173.5, 935.5], [182.5, 935.5], [182.5, 944.5], [173.5, 944.5]]}, -{"id": "twpxtz", "submitted_by": "FitteTryne6969", "name": "Eminem", "description": "Logo of rapper Eminem.", "website": "", "subreddit": "", "center": [875.5, 995.5], "path": [[853.5, 990.5], [853.5, 990.5], [897.5, 990.5], [897.5, 999.5], [853.5, 999.5]]}, -{"id": "twpxqr", "submitted_by": "Ivan-Malik", "name": "Planetside", "description": "The F2P MMOFPS Planetside 2 community.", "website": "", "subreddit": "/r/planetside", "center": [1881.5, 904.5], "path": [[1870.5, 893.5], [1892.5, 893.5], [1891.5, 915.5], [1870.5, 915.5], [1870.5, 915.5]]}, -{"id": "twpxl7", "submitted_by": "rollam", "name": "Royal Belgian FA", "description": "Belgian football association, nr.2 on FIFA ranking during r/place 2022", "website": "https://www.rbfa.be/en", "subreddit": "", "center": [1308.5, 1437.5], "path": [[1295.5, 1421.5], [1321.5, 1421.5], [1321.5, 1445.5], [1319.5, 1448.5], [1319.5, 1449.5], [1314.5, 1454.5], [1312.5, 1455.5], [1311.5, 1456.5], [1306.5, 1456.5], [1305.5, 1455.5], [1303.5, 1455.5], [1302.5, 1454.5], [1301.5, 1454.5], [1301.5, 1453.5], [1300.5, 1453.5], [1300.5, 1452.5], [1299.5, 1452.5], [1299.5, 1451.5], [1298.5, 1451.5], [1298.5, 1450.5], [1298.5, 1449.5], [1297.5, 1449.5], [1297.5, 1448.5], [1297.5, 1447.5], [1296.5, 1447.5], [1296.5, 1446.5], [1296.5, 1445.5], [1295.5, 1445.5]]}, -{"id": "twpxc0", "submitted_by": "mariogeorge59", "name": "The Berber Flag", "description": "Amazigh, Berbers or Imazighen are an ethnic group indigenous to North Africa, specifically Morocco, Algeria, Tunisia, and Libya, and to a lesser extent Mauritania, northern Mali, and northern Niger. Smaller Berber populations are also found in Burkina Faso and Egypt's Siwa Oasis. And that's their flag.", "website": "", "subreddit": "", "center": [1593.5, 1619.5], "path": [[1571.5, 1609.5], [1614.5, 1609.5], [1614.5, 1629.5], [1571.5, 1629.5], [1571.5, 1609.5]]}, -{"id": "twpx5e", "submitted_by": "Dacio2105", "name": "De Zeven Provinciën (The Seven Provinces)", "description": "De Zeven Provinciën was a Dutch ship of the line, originally armed with 80 guns. The name of the ship refers to the seven autonomous provinces that made up the Dutch Republic in the 17th century. The vessel was built in 1664-65 for the Admiralty of de Maze in Rotterdam by the master shipbuilder Salomon Jansz van den Tempel.", "website": "https://en.wikipedia.org/wiki/Dutch_ship_De_Zeven_Provinciën_(1665)", "subreddit": "/r/PlaceNL", "center": [632.5, 1791.5], "path": [[715.5, 1732.5], [715.5, 1850.5], [715.5, 1850.5], [549.5, 1850.5], [549.5, 1732.5]]}, -{"id": "twpx4f", "submitted_by": "mrprgr", "name": "Nico Rosberg exploding meme", "description": "A meme of Nico Rosberg, 2016 Formula 1 World Champion, in front of an explosion. This meme is commonly captioned \"Is X's career over?\" This makes fun of clickbait headlines and overreactions. Originally caught in the midst of a streamer war, this artwork was able to be finished once the dust settled and streamer Mizkif allowed the space to be shared with Reckful's memorial.\n\nThis section also honors the Ferrari F2004, Michael Schumacher's last championship-winning car and one of the most iconic F1 cars of all time. This car still holds multiple lap records that have stood for over 17 years, and racked up 15 wins in the 20 races it ran. This artwork was made in collaboration with the Italian community.", "website": "https://knowyourmeme.com/memes/flaming-nico-is-his-career-over", "subreddit": "/r/formula1", "center": [456.5, 1749.5], "path": [[413.5, 1703.5], [460.5, 1703.5], [460.5, 1699.5], [499.5, 1699.5], [499.5, 1795.5], [496.5, 1795.5], [496.5, 1787.5], [483.5, 1787.5], [483.5, 1787.5], [483.5, 1789.5], [481.5, 1789.5], [481.5, 1797.5], [483.5, 1797.5], [483.5, 1799.5], [413.5, 1799.5]]}, -{"id": "twpx41", "submitted_by": "OkBOOMERR08", "name": "Avatar Korra (The Legend of Korra)", "description": "Avatar Korra, from the nickelodeon cartoon: The Legend of Korra, was made by r/avatarplace and r/ATLA. It shows Avatar Korra's head and part of her neck, below her a bi-flag due to her being canonically bisexual.", "website": "https://The Legend Of Korra: https://avatar.fandom.com/wiki/The_Legend_of_Korra", "subreddit": "/r/avatarplace, /r/ATLA", "center": [699.5, 1112.5], "path": [[706.5, 1099.5], [706.5, 1124.5], [692.5, 1124.5], [692.5, 1099.5], [699.5, 1099.5]]}, -{"id": "twpx0y", "submitted_by": "NattePepernoot", "name": "Master Chief", "description": "Its the guy from fortnite!", "website": "", "subreddit": "/r/halo", "center": [359.5, 1197.5], "path": [[343.5, 1172.5], [374.5, 1172.5], [374.5, 1221.5], [343.5, 1221.5]]}, -{"id": "twpwzu", "submitted_by": "bulba_", "name": "The Owl House", "description": "The Owl House is a house from a show of the same title. In front of the house are Luz Noceda and Amity Blight with a heart above them. You can also find a Lego version of Eda Clawthorne, a diamond authority symbol from Steven Universe, a car door from Infinity Train, and a bear stack from We Bare Bears.", "website": "https://theowlhouse.fandom.com", "subreddit": "/r/TheOwlHouse, /r/place_CentralAlliance", "center": [464.5, 1050.5], "path": [[448.5, 1030.5], [448.5, 1070.5], [476.5, 1070.5], [476.5, 1062.5], [480.5, 1062.5], [480.5, 1030.5]]}, -{"id": "twpwyv", "submitted_by": "Relssifille", "name": "The Legend Of Zelda", "description": "Pixel art of iconic characters and objects from the Nintendo video game franchise Legend Of Zelda", "website": "", "subreddit": "/r/zelda", "center": [1335.5, 1855.5], "path": [[1366.5, 1875.5], [1366.5, 1859.5], [1348.5, 1857.5], [1348.5, 1841.5], [1344.5, 1834.5], [1300.5, 1835.5], [1299.5, 1843.5], [1307.5, 1847.5], [1321.5, 1848.5], [1322.5, 1875.5]]}, -{"id": "twpwbr", "submitted_by": "MOZPORYL", "name": "Flag of Iran", "description": "A simplified, apolitical version of the flag of Iran", "website": "", "subreddit": "", "center": [48.5, 303.5], "path": [[0.5, 276.5], [110.5, 276.5], [110.5, 299.5], [109.5, 299.5], [108.5, 300.5], [108.5, 302.5], [107.5, 303.5], [105.5, 304.5], [98.5, 310.5], [90.5, 310.5], [81.5, 310.5], [78.5, 311.5], [75.5, 313.5], [75.5, 315.5], [72.5, 318.5], [72.5, 325.5], [71.5, 326.5], [68.5, 329.5], [68.5, 333.5], [68.5, 336.5], [60.5, 336.5], [49.5, 335.5], [39.5, 335.5], [17.5, 335.5], [14.5, 333.5], [9.5, 336.5], [0.5, 336.5], [0.5, 276.5]]}, -{"id": "twpwbd", "submitted_by": "FitteTryne6969", "name": "King Carl XVI Gustaf of Sweden", "description": "", "website": "https://en.wikipedia.org/wiki/Carl_XVI_Gustaf", "subreddit": "/r/place_nordicunion, /r/Sweden", "center": [585.5, 65.5], "path": [[586.5, 42.5], [594.5, 44.5], [601.5, 51.5], [601.5, 63.5], [599.5, 67.5], [599.5, 72.5], [595.5, 77.5], [595.5, 91.5], [595.5, 91.5], [574.5, 91.5], [574.5, 80.5], [577.5, 80.5], [577.5, 76.5], [573.5, 72.5], [571.5, 67.5], [569.5, 60.5], [568.5, 53.5], [577.5, 43.5]]}, -{"id": "twpw6y", "submitted_by": "ShadowFish_", "name": "Planetside 2", "description": "The logo of the MMOFPS Planetside 2.", "website": "", "subreddit": "/r/planetside", "center": [1881.5, 904.5], "path": [[1891.5, 915.5], [1891.5, 893.5], [1870.5, 893.5], [1870.5, 915.5], [1870.5, 915.5], [1870.5, 915.5], [1891.5, 915.5]]}, -{"id": "twpw13", "submitted_by": "Xros90", "name": "San Jose State University", "description": "San Jose State University logo, made by students!", "website": "", "subreddit": "/r/SJSU", "center": [356.5, 1558.5], "path": [[344.5, 1551.5], [368.5, 1551.5], [368.5, 1564.5], [344.5, 1564.5], [344.5, 1556.5], [344.5, 1556.5], [344.5, 1556.5]]}, -{"id": "twpvxt", "submitted_by": "Juanco93", "name": "Gate of Europe (KIO Towers)", "description": "These are twin office buildings near the Plaza de Castilla in Madrid. They were built from 1989 to 1996, and are the first inclined skyscrapers in the world.", "website": "https://www.designingbuildings.co.uk/wiki/Gate_of_Europe", "subreddit": "/r/esPlace", "center": [1352.5, 301.5], "path": [[1339.5, 308.5], [1339.5, 294.5], [1366.5, 294.5], [1366.5, 307.5], [1339.5, 308.5]]}, -{"id": "twpvr8", "submitted_by": "bulba_", "name": "Cookie Cat", "description": "A neapolitan cat shaped ice cream sandwich, that resembles a cookie cat from Steven Universe.", "website": "https://steven-universe.fandom.com", "subreddit": "/r/StevenUniverse", "center": [1516.5, 915.5], "path": [[1508.5, 911.5], [1525.5, 911.5], [1524.5, 919.5], [1508.5, 920.5]]}, -{"id": "twpv8e", "submitted_by": "Jaiz412", "name": "Luxembourg", "description": "On the left is The national flag of Luxembourg with iconic parts as pixel art. A Belgian flag was included to commemorate friendship and alliance.nOn the right is the the luxembourgish coat of arms.", "website": "", "subreddit": "/r/Luxembourg", "center": [747.5, 254.5], "path": [[781.5, 238.5], [781.5, 269.5], [754.5, 269.5], [754.5, 262.5], [694.5, 262.5], [694.5, 250.5], [708.5, 250.5], [708.5, 249.5], [751.5, 249.5], [751.5, 238.5]]}, -{"id": "twpv5v", "submitted_by": "codec_gamer", "name": "Esmunky", "description": "Spanish Genshin creator content.", "website": "https://www.twitch.tv/esmunky", "subreddit": "/r/PochoImpact", "center": [1527.5, 1683.5], "path": [[1521.5, 1678.5], [1532.5, 1678.5], [1532.5, 1688.5], [1522.5, 1687.5], [1522.5, 1688.5], [1522.5, 1680.5], [1520.5, 1685.5]]}, -{"id": "twpv3z", "submitted_by": "Kelk1_", "name": "Efrei", "description": "A french computer science school.", "website": "https://efrei.fr", "subreddit": "/r/efrei", "center": [1229.5, 392.5], "path": [[1205.5, 383.5], [1221.5, 383.5], [1222.5, 391.5], [1263.5, 391.5], [1264.5, 398.5], [1205.5, 397.5]]}, -{"id": "twpv1u", "submitted_by": "Pinchface05", "name": "Saki", "description": "A tiny drawing of Saki, the persona of u/vaarikass, an Estonian comic artist.", "website": "", "subreddit": "/r/vaarikass", "center": [1939.5, 266.5], "path": [[1938.5, 263.5], [1938.5, 265.5], [1937.5, 265.5], [1937.5, 268.5], [1941.5, 268.5], [1941.5, 265.5], [1940.5, 265.5], [1940.5, 263.5], [1939.5, 264.5]]}, -{"id": "twpv0d", "submitted_by": "TerrariaTree3852s", "name": "Rhythm Heaven", "description": "A Rhythm Heaven logo, a Perfect icon, and the Barista", "website": "", "subreddit": "/r/rhythmheaven", "center": [1990.5, 347.5], "path": [[1999.5, 355.5], [1999.5, 338.5], [1983.5, 338.5], [1983.5, 349.5], [1977.5, 350.5], [1977.5, 355.5]]}, -{"id": "twpuyh", "submitted_by": "EnvironmentalAsk2095", "name": "connor6Froggy", "description": "An emote from ConnorEatsPants' twitch, based on Spike from the Mario series", "website": "", "subreddit": "/r/ConnorEatsPants", "center": [1823.5, 269.5], "path": [[1805.5, 298.5], [1816.5, 298.5], [1816.5, 297.5], [1817.5, 297.5], [1818.5, 297.5], [1818.5, 296.5], [1819.5, 296.5], [1820.5, 295.5], [1820.5, 293.5], [1821.5, 292.5], [1825.5, 292.5], [1826.5, 293.5], [1826.5, 295.5], [1827.5, 296.5], [1828.5, 297.5], [1829.5, 297.5], [1830.5, 298.5], [1840.5, 298.5], [1844.5, 297.5], [1843.5, 286.5], [1850.5, 282.5], [1850.5, 272.5], [1848.5, 267.5], [1847.5, 266.5], [1840.5, 255.5], [1837.5, 247.5], [1834.5, 243.5], [1835.5, 238.5], [1834.5, 236.5], [1831.5, 235.5], [1826.5, 231.5], [1822.5, 231.5], [1814.5, 238.5], [1813.5, 243.5], [1809.5, 250.5], [1808.5, 256.5], [1800.5, 265.5], [1795.5, 281.5], [1799.5, 285.5], [1803.5, 287.5], [1803.5, 292.5], [1803.5, 296.5], [1804.5, 297.5], [1805.5, 298.5], [1803.5, 299.5], [1805.5, 298.5]]}, -{"id": "twpurr", "submitted_by": "danieru_desu", "name": "Mik-Mik packet", "description": "The packaging design of Mik-Mik Sweetened Milk powder manufactured by Jocker's Food Industry, which has been a childhood snack for Filipinos since the 90's.", "website": "", "subreddit": "/r/Philippines", "center": [432.5, 1617.5], "path": [[408.5, 1600.5], [408.5, 1633.5], [455.5, 1633.5], [455.5, 1600.5]]}, -{"id": "twpuro", "submitted_by": "felipro333", "name": "Flag of Spain", "description": "Flag of Spain, created by the Reddit community. It includes a lot of pixel art of various pieces of culture and history of Spain.", "website": "https://en.wikipedia.org/wiki/Spain", "subreddit": "/r/esPlace", "center": [1206.5, 294.5], "path": [[864.5, 280.5], [1546.5, 279.5], [1503.5, 312.5], [866.5, 307.5]]}, -{"id": "twq8ws", "submitted_by": "SirOllie_", "name": "Aqueduct of Segovia", "description": "Here is one of the best-preserved elevated Roman aqueducts in the world, built around the second half of the 1st century A.D. It carried water to the Spanish city of Segovia. The most visible part, and therefore famous, is the arcade that crosses the Plaza del Azoguejo, in the city.", "website": "https://www.wmf.org/project/aqueduct-segovia", "subreddit": "/r/esPlace", "center": [1299.5, 305.5], "path": [[1267.5, 297.5], [1268.5, 313.5], [1329.5, 313.5], [1331.5, 297.5]]}, -{"id": "twpu8y", "submitted_by": "bkc56", "name": "Starlight Glimmer cutie mark", "description": "Represents Starlight Glimmer's equals sign cutie mark from the episode in My Little Pony Friendship is Magic where she was first introduced. The colors are from her mane/tail.", "website": "https://mlp.fandom.com/wiki/Starlight_Glimmer", "subreddit": "/r/MyLittlePony", "center": [900.5, 1747.5], "path": [[898.5, 1746.5], [898.5, 1748.5], [901.5, 1748.5], [901.5, 1746.5]]}, -{"id": "twpu8q", "submitted_by": "Redaaku", "name": "Chang Gang", "description": "Fan-made recreation of the dragon logo from a fictional gang from the NoPixel Grand Theft Auto role-play server. The dragon is a reference to the gang leader Mr. K (formerly Mr. Chang).", "website": "https://nopixel.fandom.com/wiki/Chang_Gang", "subreddit": "/r/Chang_Gang, /r/nopixel, /r/place_CentralAlliance", "center": [418.5, 1022.5], "path": [[405.5, 1000.5], [405.5, 1044.5], [430.5, 1044.5], [430.5, 1000.5]]}, -{"id": "twptyz", "submitted_by": "NattePepernoot", "name": "Summit1G's Logo", "description": "Can we get 1G's in the chat?", "website": "", "subreddit": "/r/Summit1G", "center": [244.5, 258.5], "path": [[239.5, 253.5], [239.5, 262.5], [249.5, 262.5], [249.5, 253.5]]}, -{"id": "twptye", "submitted_by": "red__flag_", "name": "r/placeDE's taskbar button", "description": "r/placeDE is the offical German organisation Reddit and Discord for the r/place project. It was started in 2017. After the place events, the community and Discord is a normal community with events.", "website": "https://discord.gg/placede", "subreddit": "/r/placeDE", "center": [435.5, 1986.5], "path": [[389.5, 1975.5], [390.5, 1998.5], [483.5, 1996.5], [481.5, 1974.5]]}, -{"id": "twptvv", "submitted_by": "FitteTryne6969", "name": "King Harald V of Norway", "description": "King of Norway.", "website": "https://en.wikipedia.org/wiki/Harald_V_of_Norway", "subreddit": "/r/place_nordicunion, /r/Norge", "center": [318.5, 65.5], "path": [[299.5, 58.5], [302.5, 47.5], [314.5, 37.5], [323.5, 37.5], [331.5, 46.5], [336.5, 58.5], [336.5, 71.5], [332.5, 81.5], [333.5, 90.5], [300.5, 91.5], [309.5, 80.5], [307.5, 75.5], [302.5, 70.5], [300.5, 67.5], [299.5, 60.5], [302.5, 57.5]]}, -{"id": "twpttz", "submitted_by": "SphealArt", "name": "Eurovision Song Contest", "description": "The Eurovision Song Contest is an annual song competition featuring the participation of many European countries and hosted in a different city every year. The contest was most recently won by Italy in Rotterdam 2021.", "website": "", "subreddit": "/r/eurovision", "center": [1784.5, 900.5], "path": [[1780.5, 892.5], [1778.5, 890.5], [1774.5, 890.5], [1773.5, 891.5], [1773.5, 893.5], [1772.5, 893.5], [1772.5, 900.5], [1773.5, 900.5], [1774.5, 901.5], [1775.5, 902.5], [1776.5, 903.5], [1777.5, 904.5], [1778.5, 905.5], [1779.5, 906.5], [1780.5, 906.5], [1780.5, 912.5], [1793.5, 912.5], [1793.5, 895.5], [1791.5, 895.5], [1791.5, 894.5], [1790.5, 893.5], [1789.5, 892.5], [1786.5, 889.5], [1783.5, 889.5], [1780.5, 893.5], [1780.5, 893.5], [1780.5, 893.5]]}, -{"id": "twptss", "submitted_by": "IsaacFan37", "name": "Volodymyr Zelenskyy", "description": "Current President of Ukraine.", "website": "", "subreddit": "/r/Ukraine", "center": [174.5, 222.5], "path": [[160.5, 224.5], [158.5, 224.5], [158.5, 222.5], [157.5, 220.5], [156.5, 219.5], [156.5, 218.5], [157.5, 217.5], [157.5, 216.5], [156.5, 215.5], [156.5, 209.5], [155.5, 208.5], [155.5, 204.5], [156.5, 203.5], [156.5, 202.5], [158.5, 200.5], [158.5, 199.5], [159.5, 198.5], [159.5, 197.5], [162.5, 194.5], [163.5, 194.5], [164.5, 193.5], [165.5, 193.5], [166.5, 192.5], [179.5, 192.5], [180.5, 193.5], [182.5, 193.5], [186.5, 197.5], [187.5, 198.5], [187.5, 203.5], [188.5, 204.5], [188.5, 207.5], [189.5, 208.5], [189.5, 209.5], [190.5, 210.5], [190.5, 211.5], [191.5, 212.5], [191.5, 218.5], [190.5, 219.5], [190.5, 229.5], [189.5, 230.5], [189.5, 232.5], [188.5, 233.5], [188.5, 234.5], [184.5, 238.5], [186.5, 240.5], [186.5, 242.5], [187.5, 243.5], [187.5, 244.5], [192.5, 249.5], [192.5, 252.5], [163.5, 252.5], [163.5, 249.5], [162.5, 248.5], [162.5, 243.5], [161.5, 242.5], [161.5, 236.5], [162.5, 235.5], [162.5, 233.5], [161.5, 232.5], [161.5, 229.5]]}, -{"id": "twpte2", "submitted_by": "Things_1hu", "name": "BB's April Fools Art", "description": "BB from Fate/Grand Order (originally from Fate/Extra CCC). This is her April Fool's art drawn by illustrator Riyo that has gained a lot of recognization and love from the fanbase.", "website": "", "subreddit": "/r/grandorder", "center": [178.5, 787.5], "path": [[162.5, 805.5], [160.5, 803.5], [157.5, 802.5], [155.5, 796.5], [153.5, 793.5], [154.5, 782.5], [160.5, 770.5], [168.5, 766.5], [183.5, 765.5], [192.5, 769.5], [193.5, 771.5], [196.5, 774.5], [201.5, 775.5], [201.5, 779.5], [197.5, 780.5], [197.5, 782.5], [197.5, 785.5], [202.5, 789.5], [202.5, 793.5], [199.5, 793.5], [200.5, 797.5], [202.5, 800.5], [206.5, 805.5]]}, -{"id": "twpt8s", "submitted_by": "Kelk1_", "name": "Spyro", "description": "The iconic purple dragon of the video game series, Spyro the Dragon", "website": "https://en.wikipedia.org/wiki/Spyro", "subreddit": "/r/spyro", "center": [1084.5, 1155.5], "path": [[1072.5, 1167.5], [1072.5, 1143.5], [1095.5, 1143.5], [1095.5, 1167.5]]}, -{"id": "twpsit", "submitted_by": "Flamberge3000", "name": "Iris (flower)", "description": "A collaboration between r/Hololive and r/belgium. The iris is the national flower of Belgium. The VTuber agency Hololive has a talent named IRyS in the English branch.", "website": "https://www.youtube.com/channel/UC8rcEBzJSleTkf_-agPM20g", "subreddit": "/r/belgium, /r/Hololive", "center": [267.5, 706.5], "path": [[268.5, 725.5], [275.5, 720.5], [273.5, 711.5], [276.5, 704.5], [276.5, 697.5], [275.5, 690.5], [272.5, 686.5], [260.5, 693.5], [259.5, 702.5], [260.5, 719.5], [264.5, 725.5]]}, -{"id": "twpshj", "submitted_by": "NattePepernoot", "name": "Sea of Thieves LOGO", "description": "A logo from a game called Sea Of Thieves", "website": "https://www.seaofthieves.com/", "subreddit": "/r/Seaofthieves", "center": [510.5, 1938.5], "path": [[501.5, 1928.5], [519.5, 1928.5], [519.5, 1948.5], [501.5, 1948.5]]}, -{"id": "twps5o", "submitted_by": "Redaaku", "name": "1G Molly", "description": "Here is the fan-created logo of the streamer summit1G. Also includes his favorite Molly", "website": "https://www.twitch.tv/summit1g", "subreddit": "/r/Summit1G, /r/place_CentralAlliance.", "center": [413.5, 991.5], "path": [[396.5, 981.5], [396.5, 1001.5], [431.5, 1001.5], [430.5, 980.5]]}, -{"id": "twprzj", "submitted_by": "Xarithene", "name": "Arknights", "description": "The app icon for Arknights, a free-to-play tower defense gacha game by Hypergryph released in 2019. The app icon features Amiya, one of the main characters.", "website": "https://www.arknights.global", "subreddit": "/r/arknights", "center": [1648.5, 1734.5], "path": [[1625.5, 1712.5], [1674.5, 1712.5], [1674.5, 1738.5], [1662.5, 1738.5], [1662.5, 1761.5], [1639.5, 1761.5], [1639.5, 1760.5], [1638.5, 1759.5], [1637.5, 1758.5], [1636.5, 1758.5], [1636.5, 1757.5], [1635.5, 1756.5], [1634.5, 1755.5], [1633.5, 1754.5], [1632.5, 1753.5], [1631.5, 1752.5], [1630.5, 1751.5], [1625.5, 1746.5], [1625.5, 1741.5]]}, -{"id": "twpruo", "submitted_by": "Juanco93", "name": "Iberian lynx", "description": "This is a wild cat species endemic to the Iberian Peninsula in southwestern Europe, including Spain and Portugal. It is listed as Endangered on the IUCN Red List.", "website": "https://wwf.panda.org/discover/our_focus/wildlife_practice/profiles/mammals/iberian_lynx/", "subreddit": "/r/esPlace", "center": [892.5, 303.5], "path": [[888.5, 309.5], [885.5, 296.5], [895.5, 297.5], [895.5, 304.5], [901.5, 304.5], [901.5, 309.5], [888.5, 309.5]]}, -{"id": "twprul", "submitted_by": "bittebittenicht", "name": "Rhythm Heaven", "description": "A rhythm game franchise by Nintendo, made in collaboration with TSUNKU♂ and TNX. The art features the Perfect P, the barista dog and the game's initials.", "website": "", "subreddit": "/r/rhythmheaven", "center": [1990.5, 347.5], "path": [[1999.5, 338.5], [1983.5, 338.5], [1983.5, 350.5], [1977.5, 350.5], [1977.5, 355.5], [1999.5, 355.5]]}, -{"id": "twprm1", "submitted_by": "themistik", "name": "Cathédrale Notre-Dame de Paris", "description": "Last piece made by the French Reddit community. It represent Notre-Dame de Paris, a very famous cathedral located at the heart of Paris. A firefighter truck was made, reminiscent of the Notre-Dame fire from 2019.", "website": "https://en.wikipedia.org/wiki/Notre-Dame_de_Paris", "subreddit": "/r/PlaceFrance", "center": [1160.5, 1211.5], "path": [[1119.5, 1280.5], [1124.5, 1141.5], [1131.5, 1132.5], [1146.5, 1133.5], [1150.5, 1136.5], [1150.5, 1141.5], [1153.5, 1142.5], [1154.5, 1158.5], [1168.5, 1157.5], [1167.5, 1153.5], [1167.5, 1148.5], [1170.5, 1140.5], [1187.5, 1141.5], [1190.5, 1135.5], [1193.5, 1134.5], [1196.5, 1141.5], [1197.5, 1144.5], [1196.5, 1147.5], [1199.5, 1150.5], [1198.5, 1154.5], [1198.5, 1174.5], [1200.5, 1174.5], [1200.5, 1185.5], [1201.5, 1248.5], [1200.5, 1279.5], [1200.5, 1279.5]]}, -{"id": "twpqt7", "submitted_by": "TurtlesC4nFly", "name": "HCjustin, Chiblee and DumbDog", "description": "Three Twitch streamers.", "website": "", "subreddit": "", "center": [1304.5, 42.5], "path": [[1281.5, 35.5], [1328.5, 35.5], [1328.5, 38.5], [1325.5, 38.5], [1325.5, 39.5], [1324.5, 39.5], [1324.5, 40.5], [1324.5, 42.5], [1324.5, 43.5], [1325.5, 43.5], [1325.5, 44.5], [1326.5, 44.5], [1326.5, 45.5], [1327.5, 45.5], [1328.5, 45.5], [1328.5, 49.5], [1281.5, 49.5]]}, -{"id": "twpqsh", "submitted_by": "GeoJayman", "name": "Raysfire", "description": "The blue flame logo for the raysfire community.", "website": "https://twitch.tv/raysfire", "subreddit": "/r/raysfire", "center": [1580.5, 1671.5], "path": [[1580.5, 1663.5], [1586.5, 1663.5], [1586.5, 1676.5], [1585.5, 1677.5], [1574.5, 1677.5], [1574.5, 1670.5], [1579.5, 1663.5]]}, -{"id": "twpqn2", "submitted_by": "gamrin", "name": "Grachtenpanden (Canal Houses)", "description": "A canal house (Dutch: grachtenpand) is a (usually old) house overlooking a canal. These houses are often slim, tall and deep. Canal houses usually had a basement and a loft and attic where trade goods could be stored. A special beam or pulley installation would be located in the attic to hoist up valuable goods, like spices, cotton, or heavier stuff like cocoa. In recent times, the pulleys are only used (albeit rarely) for moving furniture. The canal houses of Amsterdam are most famous, but they're also found in cities like Utrecht, Leiden, Haarlem, Delft, en Gouda.", "website": "https://en.wikipedia.org/wiki/Canal_house", "subreddit": "/r/PlaceNL", "center": [1287.5, 25.5], "path": [[1236.5, 34.5], [1338.5, 34.5], [1338.5, 23.5], [1332.5, 23.5], [1332.5, 19.5], [1330.5, 17.5], [1330.5, 16.5], [1329.5, 15.5], [1329.5, 14.5], [1326.5, 14.5], [1326.5, 16.5], [1324.5, 16.5], [1324.5, 14.5], [1322.5, 14.5], [1321.5, 15.5], [1318.5, 15.5], [1316.5, 17.5], [1315.5, 17.5], [1315.5, 21.5], [1310.5, 21.5], [1310.5, 19.5], [1309.5, 18.5], [1307.5, 18.5], [1306.5, 19.5], [1304.5, 19.5], [1304.5, 17.5], [1303.5, 16.5], [1301.5, 16.5], [1300.5, 17.5], [1300.5, 19.5], [1295.5, 19.5], [1295.5, 18.5], [1293.5, 18.5], [1291.5, 20.5], [1289.5, 18.5], [1289.5, 17.5], [1288.5, 16.5], [1288.5, 14.5], [1283.5, 14.5], [1280.5, 11.5], [1278.5, 11.5], [1275.5, 14.5], [1274.5, 14.5], [1274.5, 16.5], [1275.5, 17.5], [1275.5, 19.5], [1273.5, 19.5], [1273.5, 17.5], [1271.5, 17.5], [1271.5, 19.5], [1269.5, 19.5], [1269.5, 18.5], [1265.5, 18.5], [1264.5, 17.5], [1263.5, 17.5], [1262.5, 18.5], [1261.5, 18.5], [1260.5, 17.5], [1259.5, 17.5], [1258.5, 16.5], [1258.5, 14.5], [1257.5, 13.5], [1253.5, 13.5], [1252.5, 14.5], [1252.5, 17.5], [1250.5, 17.5], [1250.5, 21.5], [1244.5, 21.5], [1244.5, 19.5], [1238.5, 19.5], [1238.5, 22.5], [1236.5, 22.5]]}, -{"id": "twpqc6", "submitted_by": "PercyPJ1", "name": "Kick open the door", "description": "Created by r/kickopenthedoor, showing the subreddit's logo. They were long term allies to r/Noita and the Central Alliance.", "website": "", "subreddit": "/r/kickopenthedoor, /r/place_CentralAlliance", "center": [601.5, 928.5], "path": [[580.5, 910.5], [580.5, 946.5], [615.5, 946.5], [615.5, 945.5], [622.5, 945.5], [622.5, 910.5], [622.5, 910.5]]}, -{"id": "twpq1t", "submitted_by": "Juanco93", "name": "Las Meninas", "description": "Part of a famous art piece by Diego Velázquez picturing Infanta Margarita and her servants.", "website": "https://www.museodelprado.es/en/the-collection/art-work/las-meninas/9fdc7800-9ade-48b0-ab8b-edee94ea877f", "subreddit": "/r/esPlace", "center": [1146.5, 294.5], "path": [[1131.5, 308.5], [1131.5, 281.5], [1162.5, 281.5], [1161.5, 308.5], [1132.5, 308.5]]}, -{"id": "twppwj", "submitted_by": "Pryun", "name": "Ferdinand Glico Pose", "description": "Ferdinand from Ascendance of the Bookworm does the Glico pose", "website": "", "subreddit": "/r/HonzukiNoGekokujou", "center": [353.5, 1511.5], "path": [[345.5, 1501.5], [345.5, 1520.5], [361.5, 1520.5], [361.5, 1501.5]]}, -{"id": "twpph0", "submitted_by": "NL_Morker", "name": "Shinobu", "description": "Shinobu", "website": "https://bakemonogatari.fandom.com/wiki/Shinobu_Oshino", "subreddit": "/r/ararargi", "center": [363.5, 1269.5], "path": [[362.5, 1282.5], [360.5, 1282.5], [360.5, 1280.5], [359.5, 1280.5], [359.5, 1279.5], [356.5, 1279.5], [356.5, 1280.5], [353.5, 1280.5], [352.5, 1279.5], [351.5, 1278.5], [350.5, 1277.5], [349.5, 1276.5], [350.5, 1275.5], [351.5, 1274.5], [351.5, 1273.5], [351.5, 1272.5], [350.5, 1271.5], [351.5, 1270.5], [352.5, 1270.5], [353.5, 1269.5], [353.5, 1265.5], [352.5, 1264.5], [351.5, 1263.5], [351.5, 1262.5], [354.5, 1262.5], [354.5, 1260.5], [355.5, 1259.5], [356.5, 1258.5], [357.5, 1257.5], [358.5, 1256.5], [359.5, 1256.5], [360.5, 1255.5], [367.5, 1255.5], [368.5, 1256.5], [369.5, 1257.5], [370.5, 1258.5], [371.5, 1259.5], [372.5, 1260.5], [372.5, 1261.5], [373.5, 1262.5], [374.5, 1262.5], [375.5, 1263.5], [374.5, 1264.5], [373.5, 1265.5], [372.5, 1266.5], [372.5, 1271.5], [376.5, 1271.5], [377.5, 1272.5], [378.5, 1273.5], [378.5, 1275.5], [377.5, 1276.5], [376.5, 1277.5], [373.5, 1277.5], [372.5, 1278.5], [371.5, 1279.5], [370.5, 1280.5], [367.5, 1280.5], [367.5, 1282.5], [364.5, 1282.5], [364.5, 1281.5], [363.5, 1281.5], [362.5, 1282.5]]}, -{"id": "twppaz", "submitted_by": "martindual2222", "name": "Scoti", "description": "Art made by the Scoti community. Originally made by 3 people but then expanded by more", "website": "", "subreddit": "/r/ScotiVerso", "center": [1577.5, 1086.5], "path": [[1570.5, 1081.5], [1581.5, 1081.5], [1581.5, 1084.5], [1585.5, 1084.5], [1585.5, 1089.5], [1578.5, 1089.5], [1578.5, 1091.5], [1570.5, 1091.5]]}, -{"id": "twpp5k", "submitted_by": "De_Nielsch", "name": "right side dutch region", "description": "the right side of the dutch region filled with more iconic images of the netherlands", "website": "", "subreddit": "/r/PlaceNL", "center": [1552.5, 17.5], "path": [[1105.5, 0.5], [1999.5, 0.5], [1999.5, 35.5], [1148.5, 34.5], [1145.5, 37.5], [1133.5, 37.5], [1130.5, 39.5], [1118.5, 39.5], [1118.5, 37.5], [1115.5, 35.5], [1113.5, 35.5], [1113.5, 34.5], [1104.5, 34.5], [1104.5, 0.5], [1103.5, 0.5], [1103.5, 34.5], [1103.5, 0.5]]}, -{"id": "twpp2z", "submitted_by": "essokinesis1", "name": "Urotsuki", "description": "Urotsuki is the protagonist of 'Yume 2kki', a collaborative Yume Nikki fan-sequel that was the first recognized fangame and is by far the most expansive one.", "website": "https://yume2kki.fandom.com/wiki/Urotsuki", "subreddit": "/r/yumenikki", "center": [1238.5, 121.5], "path": [[1231.5, 117.5], [1228.5, 117.5], [1228.5, 115.5], [1229.5, 115.5], [1229.5, 114.5], [1230.5, 114.5], [1230.5, 112.5], [1231.5, 112.5], [1231.5, 110.5], [1232.5, 110.5], [1232.5, 109.5], [1233.5, 109.5], [1233.5, 108.5], [1235.5, 108.5], [1235.5, 107.5], [1240.5, 107.5], [1240.5, 108.5], [1242.5, 108.5], [1242.5, 109.5], [1243.5, 109.5], [1243.5, 110.5], [1244.5, 110.5], [1244.5, 112.5], [1245.5, 112.5], [1245.5, 114.5], [1246.5, 114.5], [1246.5, 115.5], [1247.5, 115.5], [1247.5, 117.5], [1244.5, 117.5], [1244.5, 122.5], [1242.5, 122.5], [1242.5, 123.5], [1243.5, 123.5], [1243.5, 125.5], [1244.5, 125.5], [1244.5, 127.5], [1245.5, 127.5], [1245.5, 130.5], [1244.5, 130.5], [1244.5, 133.5], [1243.5, 133.5], [1243.5, 134.5], [1239.5, 134.5], [1239.5, 133.5], [1238.5, 133.5], [1238.5, 131.5], [1237.5, 131.5], [1237.5, 133.5], [1236.5, 133.5], [1236.5, 134.5], [1232.5, 134.5], [1232.5, 133.5], [1231.5, 133.5], [1231.5, 130.5], [1230.5, 130.5], [1230.5, 127.5], [1231.5, 127.5], [1231.5, 125.5], [1232.5, 125.5], [1232.5, 123.5], [1233.5, 123.5], [1233.5, 122.5], [1231.5, 122.5], [1231.5, 117.5]]}, -{"id": "twpp0q", "submitted_by": "MrEduxator", "name": "VTuber taskbar buttons", "description": "An area carved up by a coalition of different virtual YouTuber communities in collaboration with r/PlaceStart. From left to right: r/Hololive, r/Nijisanji, r/Vshojo.", "website": "", "subreddit": "/r/Hololive, /r/Nijisanji, /r/Vshojo, /r/VirtualYouTubers, /r/PlaceStart", "center": [1068.5, 1985.5], "path": [[1028.5, 1974.5], [1108.5, 1974.5], [1108.5, 1996.5], [1028.5, 1996.5]]}, -{"id": "twpoz1", "submitted_by": "Xarithene", "name": "Smugmiya (arknights)", "description": "The character Amiya (being smug)from the Tower defense mobile gacha game by Hypergryph releasedd in 2019.", "website": "https://Website", "subreddit": "/r/arknights", "center": [1149.5, 103.5], "path": [[1135.5, 87.5], [1159.5, 87.5], [1159.5, 88.5], [1163.5, 88.5], [1163.5, 119.5], [1135.5, 119.5]]}, -{"id": "twpovl", "submitted_by": "aronrusty2005", "name": "twitch streamer kingkontent", "description": "a dutch streamer who wanted to leave his mark on r/place nand he survived altho his site got Ddossed by toxic guys from a RPG server", "website": "https://www.twitch.tv/kingkontent", "subreddit": "", "center": [396.5, 1931.5], "path": [[379.5, 1918.5], [379.5, 1918.5], [379.5, 1943.5], [413.5, 1943.5], [412.5, 1918.5]]}, -{"id": "twposp", "submitted_by": "thelolo_007", "name": "One-One (Infinity Train)", "description": "One-One is a robotic companion of Tulip in Cartoon Network's Infinity Train. Next to him is the show's logo.", "website": "https://infinity-train.fandom.com/wiki/One-One", "subreddit": "/r/InfinityTrain, /r/place_CentralAlliance", "center": [484.5, 910.5], "path": [[482.5, 905.5], [479.5, 908.5], [479.5, 912.5], [482.5, 915.5], [486.5, 915.5], [489.5, 912.5], [489.5, 908.5], [486.5, 905.5]]}, -{"id": "twpooo", "submitted_by": "bittebittenicht", "name": "RC15", "description": "Logo of RC15, an attempt to revive an old version of Robocraft from 2015, which was widely regarded as the best version by the community.", "website": "https://discord.com/rc15", "subreddit": "/r/RC15", "center": [1921.5, 254.5], "path": [[1905.5, 240.5], [1936.5, 240.5], [1935.5, 241.5], [1935.5, 242.5], [1936.5, 243.5], [1937.5, 244.5], [1938.5, 246.5], [1938.5, 264.5], [1937.5, 264.5], [1936.5, 264.5], [1936.5, 268.5], [1905.5, 268.5]]}, -{"id": "twpoob", "submitted_by": "JustGoThrowItAway", "name": "Nottingham Forest FC", "description": "Nottingham's world famous football club, two time champions of Europe and the biggest club in the East Midlands.", "website": "", "subreddit": "/r/NFFC", "center": [776.5, 1944.5], "path": [[766.5, 1940.5], [785.5, 1940.5], [785.5, 1947.5], [766.5, 1947.5], [766.5, 1940.5]]}, -{"id": "twpolw", "submitted_by": "GonzaloSurba", "name": "Tortilla de patatas", "description": "A traditional dish from Spain. Celebrated as a national dish by Spaniards, it is an essential part of the Spanish cuisine. It is an omelette made with eggs and potatoes, optionally including onion.", "website": "https://www.renfe-sncf.com/rw-en/blog/did-you-know/tortilla-patatas", "subreddit": "/r/esPlace", "center": [1066.5, 295.5], "path": [[1061.5, 286.5], [1071.5, 286.5], [1072.5, 287.5], [1074.5, 287.5], [1074.5, 288.5], [1075.5, 288.5], [1076.5, 289.5], [1077.5, 289.5], [1078.5, 290.5], [1078.5, 291.5], [1078.5, 292.5], [1079.5, 293.5], [1079.5, 294.5], [1079.5, 295.5], [1079.5, 296.5], [1079.5, 297.5], [1078.5, 298.5], [1077.5, 298.5], [1076.5, 298.5], [1075.5, 298.5], [1075.5, 297.5], [1074.5, 297.5], [1073.5, 297.5], [1073.5, 298.5], [1072.5, 298.5], [1072.5, 299.5], [1072.5, 300.5], [1073.5, 301.5], [1073.5, 302.5], [1072.5, 303.5], [1071.5, 303.5], [1070.5, 303.5], [1070.5, 304.5], [1063.5, 304.5], [1063.5, 303.5], [1059.5, 303.5], [1058.5, 302.5], [1057.5, 301.5], [1056.5, 301.5], [1055.5, 300.5], [1055.5, 299.5], [1054.5, 298.5], [1054.5, 293.5], [1055.5, 292.5], [1055.5, 290.5], [1056.5, 289.5], [1057.5, 289.5], [1058.5, 288.5], [1059.5, 287.5], [1060.5, 287.5], [1061.5, 286.5]]}, -{"id": "twpog9", "submitted_by": "Things_1hu", "name": "Flag of Vietnam", "description": "Featureing a yellow five-pointed star on a red background. Also accompanied with a dark red S-shaped landmass that represents the shape of Vietnam itself.", "website": "", "subreddit": "/r/Vietnam", "center": [437.5, 1689.5], "path": [[413.5, 1675.5], [461.5, 1675.5], [461.5, 1703.5], [413.5, 1703.5]]}, -{"id": "twpofc", "submitted_by": "naokimiyamoto0707", "name": "TWOW logo", "description": "TWOW, aka Ten Words Of Wisdom is camp made by carykh", "website": "https://www.youtube.com/watch?v=S64R-_LVHuY&list=PLrUdxfaFpuuKxFbzHimw1p43yPf7oBRj4&ab_channel=carykh", "subreddit": "", "center": [1413.5, 1330.5], "path": [[1396.5, 1323.5], [1432.5, 1324.5], [1432.5, 1337.5], [1395.5, 1337.5], [1395.5, 1329.5]]}, -{"id": "twpocy", "submitted_by": "GoJoeyGo123", "name": "Daft Punk", "description": "Daft Punk was a French electronic music duo formed in 1993 that split in 2021.", "website": "https://daftpunk.com/", "subreddit": "/r/daftpunk, /r/franceplace", "center": [1153.5, 740.5], "path": [[1148.5, 756.5], [1148.5, 755.5], [1146.5, 755.5], [1146.5, 753.5], [1145.5, 753.5], [1145.5, 752.5], [1144.5, 752.5], [1144.5, 751.5], [1143.5, 751.5], [1143.5, 750.5], [1142.5, 750.5], [1142.5, 748.5], [1141.5, 748.5], [1141.5, 745.5], [1139.5, 745.5], [1139.5, 744.5], [1139.5, 744.5], [1138.5, 744.5], [1138.5, 736.5], [1139.5, 736.5], [1139.5, 735.5], [1140.5, 735.5], [1140.5, 733.5], [1141.5, 733.5], [1141.5, 730.5], [1142.5, 730.5], [1142.5, 728.5], [1143.5, 728.5], [1143.5, 727.5], [1144.5, 727.5], [1144.5, 726.5], [1145.5, 726.5], [1145.5, 725.5], [1147.5, 725.5], [1147.5, 724.5], [1157.5, 724.5], [1157.5, 725.5], [1159.5, 725.5], [1159.5, 726.5], [1160.5, 726.5], [1160.5, 727.5], [1161.5, 727.5], [1161.5, 728.5], [1162.5, 728.5], [1162.5, 729.5], [1163.5, 729.5], [1163.5, 730.5], [1164.5, 730.5], [1164.5, 732.5], [1165.5, 732.5], [1165.5, 733.5], [1166.5, 733.5], [1166.5, 744.5], [1165.5, 744.5], [1165.5, 748.5], [1164.5, 748.5], [1164.5, 750.5], [1163.5, 750.5], [1163.5, 752.5], [1162.5, 752.5], [1162.5, 753.5], [1161.5, 753.5], [1161.5, 754.5], [1160.5, 754.5], [1160.5, 755.5], [1157.5, 755.5], [1157.5, 756.5]]}, -{"id":"twpobr","submitted_by":"wooweeyay","name":"Savefrog's old location","description":"There was once a savefrog who'd save your game here, he was brutally attacked but now he has a grave thanks to r/bih.","website":"","subreddit":"/r/earthbound, /r/bih","center":[358.5,726.5],"path":[[363.5,732.5],[363.5,720.5],[352.5,720.5],[352.5,732.5]]}, -{"id": "twpoab", "submitted_by": "Michael_Le41", "name": "The Knight", "description": "The played character of the game Hollow Knight, drawn here sitting on a white bench. The r/HKPlace community originally planned to have it sitting alone on the bench, but a vote was held before construction began to have Ranni the Witch from Elden Ring sitting beside it; the project thus became a joint operation between r/Eldenring and r/HKPlace, by then already allies because of their previous pieces' close proximity and similarities in the games.\n\nFrom the official manual:\n\"An enigmatic wanderer who descends into Hallownest carrying only a broken nail to fend off foes.\"\n\nFun fact: the bench almost didn't make it to the final piece, because the fact that the bench was to be made white meant too may people mistake the first few pixels of the bench as mistakenly placed parts of the Knight's head or Ranni's hat/dress to its left.", "website": "https://discord.gg/RKWC7ZUVnz", "subreddit": "/r/HKplace", "center": [1377.5, 82.5], "path": [[1369.5, 59.5], [1368.5, 59.5], [1368.5, 60.5], [1367.5, 60.5], [1367.5, 61.5], [1366.5, 61.5], [1366.5, 62.5], [1365.5, 62.5], [1365.5, 64.5], [1364.5, 64.5], [1364.5, 70.5], [1365.5, 70.5], [1365.5, 73.5], [1366.5, 73.5], [1366.5, 74.5], [1367.5, 74.5], [1367.5, 85.5], [1368.5, 85.5], [1368.5, 86.5], [1369.5, 86.5], [1369.5, 88.5], [1370.5, 88.5], [1370.5, 94.5], [1369.5, 94.5], [1369.5, 97.5], [1368.5, 97.5], [1368.5, 100.5], [1366.5, 100.5], [1366.5, 103.5], [1373.5, 103.5], [1373.5, 104.5], [1374.5, 104.5], [1374.5, 105.5], [1376.5, 105.5], [1376.5, 104.5], [1378.5, 104.5], [1378.5, 99.5], [1385.5, 102.5], [1386.5, 102.5], [1386.5, 101.5], [1388.5, 101.5], [1388.5, 97.5], [1387.5, 97.5], [1387.5, 96.5], [1386.5, 96.5], [1386.5, 94.5], [1385.5, 94.5], [1385.5, 92.5], [1384.5, 92.5], [1384.5, 89.5], [1385.5, 89.5], [1385.5, 88.5], [1386.5, 88.5], [1386.5, 87.5], [1387.5, 85.5], [1388.5, 85.5], [1388.5, 71.5], [1389.5, 71.5], [1389.5, 70.5], [1390.5, 70.5], [1390.5, 63.5], [1389.5, 63.5], [1389.5, 61.5], [1388.5, 61.5], [1388.5, 60.5], [1387.5, 60.5], [1387.5, 59.5], [1385.5, 59.5], [1385.5, 58.5], [1382.5, 58.5], [1382.5, 61.5], [1383.5, 61.5], [1383.5, 62.5], [1384.5, 62.5], [1384.5, 63.5], [1385.5, 63.5], [1385.5, 64.5], [1386.5, 64.5], [1386.5, 68.5], [1385.5, 68.5], [1385.5, 69.5], [1384.5, 69.5], [1384.5, 70.5], [1371.5, 70.5], [1371.5, 69.5], [1370.5, 69.5], [1370.5, 65.5], [1371.5, 65.5], [1371.5, 64.5], [1372.5, 64.5], [1372.5, 63.5], [1373.5, 63.5], [1373.5, 58.5], [1369.5, 58.5], [1369.5, 59.5]]}, -{"id": "twpo81", "submitted_by": "Educational-Ad-170", "name": "Touhou Hijack", "description": "A small Touhou Hijack that is in the same style as the one from back in r/place in 2017. This one has different characters, including Kasane Teto as a sign of the partnership between r/Touhou and r/Hatsune. Clockwise from top-left: Flandre Scarlet, Sakuya Izayoi, Kasane Teto (of Vocaloid), Shinmyoumaru Sukuna, Utsuho Reiuji, Koishi Komeiji.", "website": "https://youtu.be/N8L6-vQ_lqk", "subreddit": "/r/touhou", "center": [1654.5, 1504.5], "path": [[1621.5, 1451.5], [1620.5, 1557.5], [1687.5, 1557.5], [1688.5, 1451.5]]}, -{"id": "twpo5e", "submitted_by": "Marnixz", "name": "Dutch technical universities", "description": "A collaboration between the Dutch technical universities of Eindhoven, Delft & Enschede", "website": "", "subreddit": "", "center": [1920.5, 44.5], "path": [[1895.5, 35.5], [1895.5, 53.5], [1942.5, 53.5], [1945.5, 53.5], [1946.5, 36.5]]}, -{"id": "twpo29", "submitted_by": "morganisboring", "name": "reputation", "description": "Part of the font for Taylor Swift's 2017 album 'reputation'. It also features a snake border in homage to the aesthetic of her 6th studio album. It was created in a short space of time after the 'evermore' tribute was destroyed. A huge thank you to the people whose incredible contributions helped to defend 'rep', especially the Lego and PopHeads community. These efforts resulted in it being saved in the final few minutes before r/place ended.", "website": "https://en.wikipedia.org/wiki/Reputation_(album)", "subreddit": "/r/TaylorSwift", "center": [831.5, 1923.5], "path": [[828.5, 1909.5], [835.5, 1914.5], [844.5, 1915.5], [845.5, 1916.5], [845.5, 1931.5], [844.5, 1932.5], [817.5, 1932.5], [816.5, 1931.5], [816.5, 1916.5], [817.5, 1915.5], [830.5, 1915.5], [831.5, 1916.5], [831.5, 1916.5], [832.5, 1915.5], [830.5, 1914.5], [827.5, 1910.5]]}, -{"id": "twpo0c", "submitted_by": "gamrin", "name": "Oranje Boven!", "description": "The flag and colour of the Netherlands! Oranje Boven (Orange Above) is a well known short song.", "website": "https://nl.wikipedia.org/wiki/Oranje_boven_(lied)", "subreddit": "/r/PlaceNL", "center": [1163.5, 17.5], "path": [[298.5, 34.5], [298.5, 14.5], [369.5, 14.5], [369.5, 0.5], [1999.5, 0.5], [1999.5, 34.5], [628.5, 34.5]]}, -{"id": "twpnz1", "submitted_by": "Yellow4920", "name": "Starkid", "description": "The logo of Starkid, a theatre company who puts their content on youtube for free!", "website": "https://www.teamstarkid.com", "subreddit": "/r/starkid", "center": [349.5, 1495.5], "path": [[347.5, 1494.5], [347.5, 1493.5], [350.5, 1499.5], [352.5, 1499.5], [352.5, 1490.5], [346.5, 1490.5], [345.5, 1490.5], [345.5, 1498.5], [353.5, 1499.5], [352.5, 1491.5]]}, -{"id": "twpnf6", "submitted_by": "MrEduxator", "name": "Horny Matsuri", "description": "A sort of Ahegao face made by Natsuiro Matsuri of Hololive's 1st Gen. An iconic meme image within the Hololive community. She's God, OK?", "website": "https://www.youtube.com/channel/UCQ0UDLQCjY0rmuxCDE38FGg", "subreddit": "/r/Hololive", "center": [1439.5, 1088.5], "path": [[1423.5, 1102.5], [1423.5, 1073.5], [1454.5, 1073.5], [1454.5, 1103.5], [1453.5, 1103.5], [1423.5, 1103.5]]}, -{"id": "twpn9r", "submitted_by": "Jern92", "name": "Our Flag Means Death", "description": "One of the biggest hits of 2022, OFMD tells the tale of Stede Bonnet, a pampered aristocrat turned pirate, and Blackbeard, the most fearsome pirate of all time.", "website": "", "subreddit": "/r/OurFlagMeansDeath", "center": [1912.5, 905.5], "path": [[1900.5, 892.5], [1900.5, 917.5], [1923.5, 917.5], [1923.5, 892.5], [1900.5, 892.5]]}, -{"id": "twpn68", "submitted_by": "aafikk", "name": "Schrödinger equation", "description": "The famous equation that is the basis of quantum physics. This one is time-independent and written in the most compact form.", "website": "https://en.wikipedia.org/wiki/Schr%C3%B6dinger_equation", "subreddit": "/r/physics, /r/place_CentralAlliance", "center": [606.5, 1099.5], "path": [[588.5, 1090.5], [588.5, 1105.5], [624.5, 1105.5], [624.5, 1093.5], [592.5, 1093.5], [592.5, 1090.5]]}, -{"id": "twpmtd", "submitted_by": "One_Cheesecake_4560", "name": "Jurassic Park", "description": "This is the logo of the 1993 movie 'Jurassic Park', it was created by the subreddit r/JurassicParkPlace to honor this movie's 30th anniversary coming up next year.", "website": "https://www.jurassicworld.com/", "subreddit": "/r/JurassicParkPlace", "center": [956.5, 1753.5], "path": [[936.5, 1743.5], [975.5, 1743.5], [975.5, 1764.5], [937.5, 1763.5], [936.5, 1744.5], [936.5, 1763.5]]}, -{"id": "twpmo1", "submitted_by": "Oponik", "name": "GOD FUCKING damnit KRIS where the FUCK are we!?", "description": "Where are we?", "website": "", "subreddit": "", "center": [1810.5, 1709.5], "path": [[1780.5, 1705.5], [1785.5, 1701.5], [1784.5, 1697.5], [1804.5, 1688.5], [1816.5, 1688.5], [1816.5, 1691.5], [1820.5, 1692.5], [1814.5, 1697.5], [1815.5, 1699.5], [1820.5, 1699.5], [1822.5, 1695.5], [1829.5, 1693.5], [1834.5, 1693.5], [1838.5, 1700.5], [1838.5, 1707.5], [1835.5, 1708.5], [1836.5, 1711.5], [1838.5, 1718.5], [1835.5, 1724.5], [1835.5, 1728.5], [1823.5, 1729.5], [1824.5, 1726.5], [1824.5, 1723.5], [1822.5, 1720.5], [1812.5, 1721.5], [1805.5, 1729.5], [1796.5, 1723.5], [1785.5, 1728.5], [1782.5, 1725.5], [1783.5, 1722.5], [1787.5, 1717.5], [1786.5, 1714.5], [1781.5, 1710.5], [1780.5, 1707.5]]}, -{"id": "twpmix", "submitted_by": "Sp3ctraZ", "name": "Hello Internet Podcast", "description": "CGP Grey's Podcast", "website": "https://www.youtube.com/c/HelloInternetPodcast", "subreddit": "", "center": [69.5, 798.5], "path": [[59.5, 808.5], [59.5, 788.5], [79.5, 788.5], [79.5, 808.5]]}, -{"id": "twpm5g", "submitted_by": "Universales", "name": "Takanashi Kiara", "description": "Takanashi Kiara (小鳥遊キアラ) is an English virtual YouTuber associated with Hololive, debuting as part of its English (EN) branch First Generation (HoloMyth) of VTubers.", "website": "https://en.hololive.tv/", "subreddit": "/r/Hololive", "center": [1338.5, 1051.5], "path": [[1333.5, 1044.5], [1344.5, 1044.5], [1344.5, 1046.5], [1343.5, 1046.5], [1343.5, 1049.5], [1344.5, 1049.5], [1343.5, 1049.5], [1343.5, 1050.5], [1343.5, 1051.5], [1344.5, 1051.5], [1344.5, 1052.5], [1345.5, 1052.5], [1345.5, 1054.5], [1345.5, 1058.5], [1344.5, 1058.5], [1344.5, 1057.5], [1338.5, 1057.5], [1338.5, 1058.5], [1336.5, 1058.5], [1335.5, 1058.5], [1335.5, 1059.5], [1333.5, 1059.5], [1333.5, 1044.5]]}, -{"id": "twplzm", "submitted_by": "IsaacFan37", "name": "Super Mario 64", "description": "Title screen/logo of Super Mario 64.nnThe O is replaced with a Yoshi egg.", "website": "", "subreddit": "", "center": [1948.5, 1384.5], "path": [[1923.5, 1395.5], [1922.5, 1373.5], [1974.5, 1373.5], [1973.5, 1395.5], [1922.5, 1395.5]]}, -{"id": "twplum", "submitted_by": "Sarinyann", "name": "Nagito Komaeda", "description": "A character from the franchise Danganronpa", "website": "", "subreddit": "", "center": [1475.5, 152.5], "path": [[1454.5, 145.5], [1454.5, 169.5], [1481.5, 169.5], [1481.5, 170.5], [1493.5, 170.5], [1493.5, 133.5], [1477.5, 133.5], [1477.5, 132.5], [1476.5, 132.5], [1476.5, 131.5], [1475.5, 131.5], [1475.5, 130.5], [1472.5, 130.5], [1469.5, 130.5], [1469.5, 131.5], [1467.5, 131.5], [1467.5, 132.5], [1465.5, 132.5], [1465.5, 133.5], [1464.5, 133.5], [1464.5, 134.5], [1464.5, 139.5], [1459.5, 139.5], [1459.5, 144.5], [1454.5, 144.5]]}, -{"id": "twplqa", "submitted_by": "BlueGamesGER", "name": "Berlin TV Tower", "description": "The Berlin TV Tower is a 368m-high tower built in 1969. There is also a restaurant at 207m!", "website": "https://tv-turm.de/#", "subreddit": "/r/placeDE", "center": [552.5, 1143.5], "path": [[552.5, 1102.5], [551.5, 1102.5], [551.5, 1126.5], [550.5, 1126.5], [550.5, 1130.5], [548.5, 1130.5], [544.5, 1134.5], [542.5, 1137.5], [544.5, 1140.5], [544.5, 1143.5], [546.5, 1143.5], [548.5, 1145.5], [549.5, 1145.5], [549.5, 1146.5], [548.5, 1147.5], [548.5, 1153.5], [549.5, 1153.5], [549.5, 1168.5], [548.5, 1169.5], [548.5, 1172.5], [549.5, 1172.5], [549.5, 1173.5], [555.5, 1173.5], [556.5, 1172.5], [556.5, 1168.5], [555.5, 1168.5], [555.5, 1153.5], [556.5, 1152.5], [556.5, 1146.5], [555.5, 1146.5], [555.5, 1145.5], [559.5, 1142.5], [560.5, 1140.5], [562.5, 1137.5], [562.5, 1136.5], [558.5, 1130.5], [555.5, 1130.5], [553.5, 1126.5], [553.5, 1102.5]]}, -{"id": "twplbp", "submitted_by": "Sandillion", "name": "Jarate?", "description": "That looks an awful lot like a jar of piss", "website": "https://youtu.be/x0lcrb_56Is", "subreddit": "/r/TF2", "center": [815.5, 50.5], "path": [[813.5, 53.5], [816.5, 53.5], [817.5, 52.5], [817.5, 48.5], [816.5, 47.5], [817.5, 46.5], [812.5, 46.5], [813.5, 47.5], [812.5, 48.5], [812.5, 52.5]]}, -{"id": "twplb0", "submitted_by": "HexTheSquare", "name": "Stockholm Science & Innovation School", "description": "A Swedish IT school in northern Stockholm.", "website": "https://stockholmscienceandinnovationschool.stockholm/", "subreddit": "", "center": [1178.5, 1750.5], "path": [[1165.5, 1741.5], [1187.5, 1741.5], [1187.5, 1762.5], [1175.5, 1762.5], [1175.5, 1751.5], [1165.5, 1751.5], [1165.5, 1741.5]]}, -{"id": "twpl8y", "submitted_by": "thresholdlimit", "name": "Grass block", "description": "A grass block from Minecraft, created by random users. Initially a small space claimed by the YouTuber Hydroxyl over two days.", "website": "https://youtube.com/Hydroxyl", "subreddit": "", "center": [674.5, 790.5], "path": [[671.5, 787.5], [677.5, 787.5], [677.5, 793.5], [671.5, 793.5]]}, -{"id": "twpl66", "submitted_by": "tupper", "name": "VRChat Developer", "description": "A depiction of one of the VRChat developers, Tupper.", "website": "https://vrchat.com", "subreddit": "/r/vrchat", "center": [995.5, 110.5], "path": [[990.5, 105.5], [1000.5, 105.5], [1000.5, 114.5], [990.5, 114.5]]}, -{"id": "twpkn4", "submitted_by": "ThatOneCodeDev", "name": "Shouko Komi", "description": "A pixel art of Komi wearing a crown holding onto the osu! logo. Helped by (obviously) the osu! community.", "website": "https://komisan.fandom.com/wiki/Komi_Shouko", "subreddit": "/r/Komi_San_Place", "center": [724.5, 664.5], "path": [[713.5, 650.5], [725.5, 645.5], [736.5, 651.5], [736.5, 680.5], [713.5, 680.5], [713.5, 658.5]]}, -{"id": "twpk8j", "submitted_by": "atlet0_", "name": "The Magnus Archives", "description": "TMA is a horror fiction anthology podcast founded by Rusty Quill examining what lurks in the archives of the Magnus Institute, an organisation dedicated to researching the esoteric and the weird. You can listen to it for free on YT, Spotify, and more!", "website": "https://youtube.com/playlist?list=PLSbuB1AyaJk8zTF3nE2KRxuixG_A5gBKJ", "subreddit": "/r/TheMagnusArchives", "center": [1980.5, 185.5], "path": [[1960.5, 176.5], [1999.5, 176.5], [1999.5, 194.5], [1960.5, 194.5], [1960.5, 176.5]]}, -{"id": "twpk1e", "submitted_by": "gamrin", "name": "Fiets in de gracht (Bike in the canal)", "description": "Welcome to the Netherlands. Getting around by bike is often the easies way of transporting yourself. This also means that getting your bike stolen is extremely common. If you've lost your bike, and it wasn't worth reselling, you can probably find it in the canal.", "website": "https://www.reddit.com/r/thenetherlands/comments/a2b698/fiets_in_de_gracht_gegooid_wat_nu/", "subreddit": "/r/PlaceNL", "center": [1596.5, 27.5], "path": [[1581.5, 34.5], [1581.5, 25.5], [1589.5, 18.5], [1593.5, 18.5], [1601.5, 18.5], [1609.5, 27.5], [1613.5, 27.5], [1613.5, 34.5]]}, -{"id": "twpk18", "submitted_by": "th3_fish_", "name": "watchdominion.org", "description": "Link to a documentary about the animal exploitation industry. Created by animal rights activists.", "website": "", "subreddit": "/r/vegan_place", "center": [1829.5, 1583.5], "path": [[1786.5, 1555.5], [1875.5, 1555.5], [1875.5, 1561.5], [1872.5, 1561.5], [1873.5, 1611.5], [1786.5, 1611.5]]}, -{"id": "twpjyu", "submitted_by": "tocarnabuci", "name": "F-35-chan", "description": "NonCredibleDefense's emblem and mascot. Originally stems from Anyan's 'Flight Highschool' manga comic series.", "website": "https://flight-highschool.tumblr.com/", "subreddit": "/r/NonCredibleDefense", "center": [875.5, 116.5], "path": [[869.5, 126.5], [871.5, 126.5], [871.5, 125.5], [873.5, 125.5], [873.5, 126.5], [875.5, 126.5], [875.5, 127.5], [877.5, 127.5], [877.5, 126.5], [877.5, 125.5], [882.5, 125.5], [882.5, 123.5], [880.5, 123.5], [880.5, 122.5], [881.5, 121.5], [882.5, 120.5], [884.5, 120.5], [885.5, 119.5], [885.5, 117.5], [884.5, 116.5], [883.5, 115.5], [882.5, 114.5], [881.5, 113.5], [880.5, 112.5], [879.5, 111.5], [879.5, 108.5], [878.5, 107.5], [878.5, 102.5], [877.5, 101.5], [876.5, 102.5], [876.5, 104.5], [875.5, 105.5], [875.5, 106.5], [870.5, 106.5], [869.5, 108.5], [869.5, 107.5], [868.5, 108.5], [868.5, 111.5], [869.5, 112.5], [869.5, 113.5], [870.5, 114.5], [869.5, 115.5], [868.5, 117.5], [868.5, 119.5], [870.5, 119.5], [870.5, 121.5], [869.5, 121.5], [869.5, 121.5], [869.5, 120.5], [869.5, 125.5]]}, -{"id": "twpjtj", "submitted_by": "Alexjuhhh", "name": "KLM Cityhopper", "description": "The KLM cityhopper is used for small flights between countrys", "website": "", "subreddit": "/r/PlaceNL", "center": [1631.5, 17.5], "path": [[1603.5, 7.5], [1658.5, 7.5], [1658.5, 27.5], [1611.5, 26.5], [1602.5, 19.5]]}, -{"id": "twpjtb", "submitted_by": "CozyGalaxies", "name": "Hilda and Alfur", "description": "The characters Hilda and Alfur from Hilda", "website": "https://hildatheseries.com/", "subreddit": "/r/HildaTheSeries", "center": [1481.5, 905.5], "path": [[1472.5, 898.5], [1472.5, 911.5], [1490.5, 911.5], [1490.5, 898.5], [1472.5, 898.5]]}, -{"id": "twpjfq", "submitted_by": "sad_lagoon", "name": "Game Grumps", "description": "A Youtube let's play and improv comedy channel with Arin Hanson and Dan Avidan.", "website": "https://www.youtube.com/user/GameGrumps", "subreddit": "/r/gamegrumps", "center": [928.5, 1607.5], "path": [[923.5, 1604.5], [933.5, 1604.5], [933.5, 1609.5], [923.5, 1609.5], [923.5, 1604.5]]}, -{"id": "twpjfd", "submitted_by": "Alt7548", "name": "Jake the Brick", "description": "Jake in a form of Nevada, made by a group of adventure time fans.", "website": "https://discord.com/invite/F9tX62qe", "subreddit": "", "center": [1563.5, 1384.5], "path": [[1576.5, 1376.5], [1576.5, 1376.5], [1576.5, 1397.5], [1559.5, 1397.5], [1549.5, 1386.5], [1549.5, 1370.5], [1555.5, 1369.5], [1557.5, 1373.5], [1565.5, 1372.5], [1565.5, 1376.5], [1576.5, 1376.5]]}, -{"id": "twpjai", "submitted_by": "Sp3ctraZ", "name": "Riot and Cyclic", "description": "A depiction of one of the greatest dualities in Geometry Dash between South Korean player Cyclic and American player Riot.", "website": "", "subreddit": "", "center": [586.5, 1697.5], "path": [[551.5, 1710.5], [619.5, 1710.5], [619.5, 1691.5], [614.5, 1686.5], [614.5, 1681.5], [587.5, 1681.5], [587.5, 1682.5], [581.5, 1682.5], [577.5, 1687.5], [573.5, 1687.5], [572.5, 1689.5], [568.5, 1689.5], [566.5, 1687.5], [562.5, 1687.5], [561.5, 1689.5], [559.5, 1689.5], [554.5, 1684.5], [554.5, 1683.5], [551.5, 1683.5], [551.5, 1710.5]]}, -{"id": "twpj7v", "submitted_by": "aMemeAddict", "name": "Sacred Hearts Club", "description": "The patch logo for Foster The People's 3rd album, Sacred Hearts Club.", "website": "", "subreddit": "/r/FosterThePeople", "center": [1343.5, 1307.5], "path": [[1336.5, 1309.5], [1336.5, 1305.5], [1337.5, 1304.5], [1337.5, 1303.5], [1338.5, 1302.5], [1339.5, 1301.5], [1340.5, 1301.5], [1341.5, 1300.5], [1345.5, 1300.5], [1346.5, 1301.5], [1347.5, 1301.5], [1348.5, 1302.5], [1349.5, 1303.5], [1349.5, 1304.5], [1350.5, 1305.5], [1350.5, 1309.5], [1349.5, 1310.5], [1349.5, 1311.5], [1348.5, 1312.5], [1347.5, 1313.5], [1346.5, 1313.5], [1345.5, 1314.5], [1341.5, 1314.5], [1340.5, 1313.5], [1339.5, 1313.5], [1338.5, 1312.5], [1337.5, 1311.5], [1337.5, 1310.5], [1336.5, 1309.5]]}, -{"id": "twpizt", "submitted_by": "MarUlberg", "name": "Ghibli x Cowboy Bebop", "description": "The plot, originally claimed by France with their flag, was converted by Karl Jacobs into the flag of the Kinoko Kingdom. YouTube streamer Ludwig started overtaking it unaware of who owned it, and was quickly contacted by Karl Jacobs. After a brief dialog, Ludwig was allowed to continue developing the Cowboy Bebop art over the flag. After the art was finished, Ludwig went off to defend Kirby from the void. Once Kirby was safe, he came back to this art to find the left side of the Kinoko Kingdom flag was still unclaimed. With his chat, he built the My Neighbor Totoro art beside his Cowboy Bebop art, merging them together into a single piece. The art saw minimal sabotage throughout the remaining time.", "website": "https://www.youtube.com/c/Ludwigahgren", "subreddit": "/r/LudwigAhgren", "center": [1221.5, 1550.5], "path": [[1156.5, 1490.5], [1286.5, 1490.5], [1286.5, 1609.5], [1156.5, 1609.5]]}, -{"id": "twpisl", "submitted_by": "gstewman", "name": "Professor Layton + Luke", "description": "Layton and Luke as well as 2 Hint Coins from the Professor Layton video game series!n(Hello r/ProfessorLayton!)", "website": "https://www.laytonseries.com/naen/", "subreddit": "/r/ProfessorLayton", "center": [1960.5, 346.5], "path": [[1953.5, 333.5], [1960.5, 333.5], [1960.5, 338.5], [1967.5, 338.5], [1968.5, 357.5], [1952.5, 357.5]]}, -{"id": "twpik9", "submitted_by": "Orange_Jello5905", "name": "1312", "description": "1312 is a number sequence that lines up with the letters ACAB. This stands for 'All Cops Are Bastards', a political philosophy. The phrase used commonly by Skinheads, but during the late 2010s and early 2020s, it became a term used during anti-police and anti-police brutality demonstrations.", "website": "https://en.wikipedia.org/wiki/ACAB", "subreddit": "/r/anarchism", "center": [32.5, 415.5], "path": [[22.5, 411.5], [22.5, 411.5], [42.5, 411.5], [42.5, 418.5], [21.5, 418.5]]}, -{"id": "twpihd", "submitted_by": "RedditLightmode", "name": "Province Flag Train", "description": "An NS (NS = National Railways) train featuring the flags of the 12 provinces of the Netherlands.\n\nFrom left to right:\n Groningen\n Drenthe\n Gelderland\n Friesland\n Limburg\n Noord-Brabant\n Overijssel\n Noord-Holland\n Utrecht\n Zeeland\n Zuid-Holland\n Flevoland", "website": "", "subreddit": "/r/PlaceNL", "center": [1238.5, 7.5], "path": [[1112.5, 2.5], [1365.5, 2.5], [1365.5, 3.5], [1366.5, 3.5], [1366.5, 4.5], [1367.5, 4.5], [1367.5, 5.5], [1368.5, 5.5], [1368.5, 6.5], [1369.5, 6.5], [1369.5, 7.5], [1369.5, 8.5], [1370.5, 8.5], [1370.5, 10.5], [1369.5, 10.5], [1369.5, 11.5], [1365.5, 11.5], [1365.5, 12.5], [1362.5, 12.5], [1362.5, 13.5], [1361.5, 13.5], [1361.5, 12.5], [1359.5, 12.5], [1359.5, 13.5], [1358.5, 13.5], [1358.5, 12.5], [1350.5, 12.5], [1350.5, 13.5], [1349.5, 13.5], [1349.5, 12.5], [1347.5, 12.5], [1347.5, 13.5], [1346.5, 13.5], [1346.5, 12.5], [1343.5, 12.5], [1343.5, 13.5], [1342.5, 13.5], [1342.5, 12.5], [1340.5, 12.5], [1340.5, 13.5], [1339.5, 13.5], [1339.5, 12.5], [1331.5, 12.5], [1331.5, 13.5], [1330.5, 13.5], [1330.5, 12.5], [1328.5, 12.5], [1328.5, 13.5], [1327.5, 13.5], [1327.5, 12.5], [1324.5, 12.5], [1324.5, 13.5], [1323.5, 13.5], [1323.5, 12.5], [1321.5, 12.5], [1321.5, 13.5], [1320.5, 13.5], [1320.5, 12.5], [1312.5, 12.5], [1312.5, 13.5], [1311.5, 13.5], [1311.5, 12.5], [1309.5, 12.5], [1309.5, 13.5], [1308.5, 13.5], [1308.5, 12.5], [1305.5, 12.5], [1305.5, 13.5], [1304.5, 13.5], [1304.5, 12.5], [1302.5, 12.5], [1302.5, 13.5], [1301.5, 13.5], [1301.5, 12.5], [1293.5, 12.5], [1293.5, 13.5], [1292.5, 13.5], [1292.5, 12.5], [1290.5, 12.5], [1290.5, 13.5], [1289.5, 13.5], [1289.5, 12.5], [1286.5, 12.5], [1286.5, 13.5], [1285.5, 13.5], [1285.5, 12.5], [1283.5, 12.5], [1283.5, 13.5], [1283.5, 12.5], [1282.5, 12.5], [1282.5, 11.5], [1281.5, 11.5], [1281.5, 10.5], [1277.5, 10.5], [1277.5, 11.5], [1276.5, 11.5], [1276.5, 12.5], [1275.5, 12.5], [1275.5, 13.5], [1274.5, 13.5], [1274.5, 12.5], [1272.5, 12.5], [1272.5, 13.5], [1271.5, 13.5], [1271.5, 12.5], [1268.5, 12.5], [1268.5, 13.5], [1267.5, 13.5], [1267.5, 12.5], [1265.5, 12.5], [1264.5, 13.5], [1264.5, 12.5], [1252.5, 12.5], [1252.5, 13.5], [1252.5, 12.5], [1249.5, 12.5], [1249.5, 13.5], [1248.5, 13.5], [1248.5, 12.5], [1246.5, 12.5], [1246.5, 13.5], [1245.5, 13.5], [1245.5, 12.5], [1238.5, 12.5], [1237.5, 12.5], [1237.5, 13.5], [1236.5, 13.5], [1236.5, 12.5], [1234.5, 12.5], [1234.5, 13.5], [1233.5, 13.5], [1233.5, 12.5], [1230.5, 12.5], [1230.5, 13.5], [1229.5, 13.5], [1229.5, 12.5], [1227.5, 12.5], [1227.5, 13.5], [1226.5, 13.5], [1226.5, 12.5], [1218.5, 12.5], [1218.5, 13.5], [1217.5, 13.5], [1217.5, 12.5], [1215.5, 12.5], [1215.5, 13.5], [1214.5, 13.5], [1214.5, 12.5], [1211.5, 12.5], [1211.5, 13.5], [1210.5, 13.5], [1210.5, 12.5], [1208.5, 12.5], [1208.5, 13.5], [1207.5, 13.5], [1207.5, 12.5], [1199.5, 12.5], [1199.5, 13.5], [1198.5, 13.5], [1198.5, 12.5], [1196.5, 12.5], [1196.5, 13.5], [1195.5, 13.5], [1195.5, 12.5], [1192.5, 12.5], [1192.5, 13.5], [1191.5, 13.5], [1191.5, 12.5], [1189.5, 12.5], [1189.5, 13.5], [1188.5, 13.5], [1188.5, 12.5], [1180.5, 12.5], [1180.5, 13.5], [1179.5, 13.5], [1179.5, 12.5], [1177.5, 12.5], [1177.5, 13.5], [1176.5, 13.5], [1176.5, 12.5], [1173.5, 12.5], [1173.5, 13.5], [1172.5, 13.5], [1172.5, 12.5], [1170.5, 12.5], [1170.5, 13.5], [1169.5, 13.5], [1169.5, 12.5], [1161.5, 12.5], [1161.5, 13.5], [1160.5, 13.5], [1160.5, 12.5], [1158.5, 12.5], [1158.5, 13.5], [1157.5, 13.5], [1157.5, 12.5], [1154.5, 12.5], [1154.5, 13.5], [1153.5, 13.5], [1153.5, 12.5], [1151.5, 12.5], [1151.5, 13.5], [1150.5, 13.5], [1150.5, 12.5], [1142.5, 12.5], [1142.5, 13.5], [1141.5, 13.5], [1141.5, 12.5], [1139.5, 12.5], [1139.5, 13.5], [1138.5, 13.5], [1138.5, 12.5], [1136.5, 12.5], [1136.5, 13.5], [1135.5, 13.5], [1135.5, 12.5], [1133.5, 12.5], [1132.5, 13.5], [1132.5, 12.5], [1122.5, 12.5], [1122.5, 13.5], [1121.5, 13.5], [1121.5, 12.5], [1119.5, 12.5], [1119.5, 13.5], [1118.5, 13.5], [1118.5, 12.5], [1116.5, 12.5], [1116.5, 13.5], [1110.5, 13.5], [1110.5, 12.5], [1109.5, 12.5], [1109.5, 11.5], [1108.5, 11.5], [1108.5, 10.5], [1107.5, 10.5], [1108.5, 10.5], [1108.5, 9.5], [1108.5, 8.5], [1109.5, 8.5], [1109.5, 6.5], [1110.5, 6.5], [1110.5, 4.5], [1111.5, 4.5], [1111.5, 3.5], [1112.5, 3.5], [1112.5, 2.5]]}, -{"id": "twpih9", "submitted_by": "BlueGamesGER", "name": "Pfand system", "description": "In Germany, there is a bottle return system. When you buy certain products, you pay a deposit (pfand) for the container. After returning the bottle to an accepting shop, you get the deposit back.", "website": "https://en.wikipedia.org/wiki/Container-deposit_legislation#Germany", "subreddit": "/r/placeDE", "center": [755.5, 1147.5], "path": [[744.5, 1131.5], [744.5, 1162.5], [765.5, 1162.5], [765.5, 1131.5]]}, -{"id": "twpige", "submitted_by": "gamrin", "name": "Willen van Oranje (Stille Willem)", "description": "William the Silent (24 April 1533 – 10 July 1584), also known as William the Taciturn (translated from Dutch: Willem de Zwijger),[1][2] or, more commonly in the Netherlands,[3][4] William of Orange (Dutch: Willem van Oranje), was the main leader of the Dutch Revolt against the Spanish Habsburgs that set off the Eighty Years' War (1568–1648) and resulted in the formal independence of the United Provinces in 1581.", "website": "https://en.wikipedia.org/wiki/William_the_Silent", "subreddit": "/r/PlaceNL", "center": [1893.5, 19.5], "path": [[1881.5, 3.5], [1881.5, 34.5], [1905.5, 34.5], [1905.5, 3.5]]}, -{"id": "twpibv", "submitted_by": "imthegreenbean", "name": "/r/math", "description": "Who doesn't like math? This display contains: a level 4 Hilbert curve (originally in the top left quadrant but moved due to border dispute with the Ukraine flag); Euler's identity; gliders from Conway's Game of Life, colored to match the logo of the math YouTube channel 3Blue1Brown; an icosahedron, the largest convex Platonic solid; the Greek letter phi, representing the golden ratio and the Euler totient function; the first few digits of pi, and a ton of dope rainbows", "website": "https://www.reddit.com/r/math/comments/twi1ge/", "subreddit": "/r/math", "center": [1651.5, 310.5], "path": [[1628.5, 281.5], [1641.5, 281.5], [1641.5, 284.5], [1672.5, 284.5], [1672.5, 339.5], [1632.5, 339.5], [1632.5, 313.5], [1630.5, 311.5], [1628.5, 311.5], [1628.5, 304.5], [1631.5, 300.5], [1631.5, 297.5], [1628.5, 295.5], [1628.5, 282.5]]}, -{"id": "twpi0p", "submitted_by": "ironbody", "name": "NTI Gymnasiet", "description": "Logo of the swedish high school NTI Gymnasiet", "website": "https://www.ntigymnasiet.se", "subreddit": "", "center": [1787.5, 568.5], "path": [[1775.5, 559.5], [1799.5, 559.5], [1799.5, 576.5], [1775.5, 576.5]]}, -{"id": "twphlq", "submitted_by": "A_Fine_Potato", "name": "Rem & Ram from Re:Zero", "description": "2 characters from the anime", "website": "", "subreddit": "", "center": [1882.5, 809.5], "path": [[1867.5, 799.5], [1897.5, 800.5], [1897.5, 819.5], [1867.5, 819.5]]}, -{"id": "twphia", "submitted_by": "killerciao", "name": "Giovanni Falcone and Paolo Borsellino", "description": "The famous picture by Tony Gentile of Paolo Borsellino and Giovanni Falcone, two Antimafia magistrates killed in 1992.", "website": "http://www.tonygentile.it/", "subreddit": "/r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "center": [821.5, 230.5], "path": [[781.5, 225.5], [781.5, 243.5], [784.5, 245.5], [788.5, 247.5], [791.5, 248.5], [801.5, 248.5], [813.5, 248.5], [813.5, 249.5], [838.5, 249.5], [838.5, 248.5], [851.5, 248.5], [851.5, 247.5], [858.5, 247.5], [858.5, 247.5], [857.5, 247.5], [857.5, 246.5], [861.5, 246.5], [862.5, 245.5], [864.5, 243.5], [865.5, 243.5], [865.5, 229.5], [859.5, 229.5], [858.5, 228.5], [856.5, 227.5], [854.5, 227.5], [852.5, 225.5], [852.5, 224.5], [849.5, 224.5], [849.5, 223.5], [846.5, 222.5], [847.5, 220.5], [847.5, 218.5], [846.5, 216.5], [844.5, 214.5], [843.5, 211.5], [841.5, 210.5], [840.5, 209.5], [833.5, 209.5], [831.5, 211.5], [828.5, 212.5], [826.5, 214.5], [824.5, 215.5], [824.5, 216.5], [823.5, 214.5], [822.5, 209.5], [822.5, 208.5], [818.5, 206.5], [814.5, 203.5], [812.5, 202.5], [809.5, 203.5], [807.5, 203.5], [804.5, 204.5], [802.5, 206.5], [800.5, 206.5], [800.5, 207.5], [799.5, 208.5], [798.5, 209.5], [798.5, 212.5], [798.5, 213.5], [799.5, 216.5], [799.5, 220.5], [798.5, 221.5], [791.5, 221.5], [789.5, 222.5], [785.5, 223.5], [784.5, 224.5], [781.5, 225.5]]}, -{"id": "twphfq", "submitted_by": "PoiCats", "name": "CSH", "description": "Computer Science House, or CSH, of the Rochester Institute of Technology. Getting more done after 2am than most people do all day. Establish 1976. The 'circles' above the slogan are hard disk platters, which line the walls of the dorm, each signed by the members of that year. Check out our website for more information and to see our awesome projects. We touch grass, I promise, it was scheduled for last week.", "website": "https://csh.rit.edu/", "subreddit": "", "center": [1491.5, 346.5], "path": [[1467.5, 326.5], [1467.5, 366.5], [1514.5, 366.5], [1514.5, 361.5], [1515.5, 360.5], [1516.5, 359.5], [1516.5, 326.5]]}, -{"id": "twpgxs", "submitted_by": "ILikeLemons420", "name": "Zoil", "description": "Picture of the Twitch streamer Zoil.", "website": "https://www.twitch.tv/Zoil", "subreddit": "/r/Zoil", "center": [1619.5, 930.5], "path": [[1608.5, 905.5], [1644.5, 905.5], [1644.5, 949.5], [1644.5, 948.5], [1640.5, 948.5], [1639.5, 948.5], [1639.5, 949.5], [1638.5, 949.5], [1638.5, 950.5], [1637.5, 950.5], [1637.5, 954.5], [1631.5, 954.5], [1631.5, 955.5], [1603.5, 955.5], [1603.5, 953.5], [1602.5, 953.5], [1602.5, 952.5], [1600.5, 952.5], [1600.5, 951.5], [1598.5, 951.5], [1598.5, 950.5], [1597.5, 950.5], [1597.5, 949.5], [1596.5, 949.5], [1595.5, 948.5], [1594.5, 947.5], [1593.5, 946.5], [1592.5, 945.5], [1592.5, 909.5], [1608.5, 909.5], [1608.5, 905.5]]}, -{"id": "twpghp", "submitted_by": "CrazyGrape", "name": "IDKHow (Band)", "description": "I DONT KNOW HOW BUT THEY FOUND ME (often abbreviated to IDKHow, as featured on the canvas) is an indie/alternative band/duo consisting of Dallon Weekes and Ryan Seaman, formerly of fame from Panic! At The Disco and Falling in Reverse, respectively. The duo's music commonly features edgy and/or dark lyrics while maintaining an upbeat tone and retro style, though this varies quite a bit.", "website": "https://idkhow.com/", "subreddit": "/r/idkhowbuttheyfoundme", "center": [1088.5, 412.5], "path": [[1077.5, 408.5], [1099.5, 408.5], [1099.5, 415.5], [1077.5, 415.5]]}, -{"id": "twpggr", "submitted_by": "gamrin", "name": "Alfred J. Kwak", "description": "Alfred J. Kwak[a] is a Dutch-Japanese animated comedy-drama television series based on a Dutch theatre show by Herman van Veen, produced by Telecable Benelux B.V. in co-production with VARA, ZDF, TVE, TV Tokyo and animation studio Visual '80, and first shown in 1989.", "website": "https://en.wikipedia.org/wiki/Alfred_J._Kwak", "subreddit": "/r/PlaceNL", "center": [735.5, 1959.5], "path": [[760.5, 1949.5], [760.5, 1970.5], [716.5, 1970.5], [716.5, 1968.5], [714.5, 1968.5], [712.5, 1966.5], [712.5, 1964.5], [711.5, 1964.5], [711.5, 1962.5], [710.5, 1962.5], [710.5, 1960.5], [709.5, 1960.5], [709.5, 1958.5], [708.5, 1958.5], [708.5, 1955.5], [709.5, 1955.5], [709.5, 1953.5], [710.5, 1953.5], [710.5, 1952.5], [713.5, 1949.5], [718.5, 1949.5], [760.5, 1949.5]]}, -{"id": "twpggq", "submitted_by": "l0c4lh057", "name": "RWTH Aachen University + FH Aachen", "description": "RWTH Aachen is one of Germany's biggest universities. This design is the RWTH Logo with the H in colors of the FH Aachen, another university in Aachen. In the bottom left corner the pride flag was added in the background to show our support towards the community.", "website": "https://rwth-aachen.de/", "subreddit": "/r/rwth", "center": [1247.5, 1203.5], "path": [[1233.5, 1199.5], [1260.5, 1199.5], [1260.5, 1207.5], [1233.5, 1207.5], [1233.5, 1199.5]]}, -{"id": "twpg7z", "submitted_by": "N0ZTRA", "name": "Goose Wars", "description": "Artwork respite for embattled Canadians, lovingly adapted from their neighbours. Message of love and goose combat", "website": "", "subreddit": "/r/placecanada", "center": [728.5, 1538.5], "path": [[704.5, 1522.5], [745.5, 1522.5], [745.5, 1539.5], [746.5, 1539.5], [745.5, 1540.5], [744.5, 1541.5], [744.5, 1543.5], [743.5, 1544.5], [743.5, 1546.5], [742.5, 1547.5], [742.5, 1549.5], [741.5, 1550.5], [741.5, 1551.5], [740.5, 1552.5], [740.5, 1553.5], [739.5, 1554.5], [739.5, 1556.5], [738.5, 1557.5], [737.5, 1558.5], [737.5, 1559.5], [736.5, 1560.5], [736.5, 1561.5], [733.5, 1561.5], [733.5, 1561.5], [733.5, 1563.5], [732.5, 1563.5], [731.5, 1564.5], [730.5, 1563.5], [729.5, 1563.5], [727.5, 1562.5], [726.5, 1562.5], [725.5, 1561.5], [724.5, 1561.5], [722.5, 1559.5], [722.5, 1557.5], [721.5, 1557.5], [721.5, 1554.5], [720.5, 1553.5], [719.5, 1551.5], [719.5, 1549.5], [718.5, 1548.5], [718.5, 1547.5], [717.5, 1546.5], [716.5, 1545.5], [715.5, 1544.5], [715.5, 1543.5], [714.5, 1542.5], [714.5, 1540.5], [713.5, 1539.5], [712.5, 1538.5], [712.5, 1537.5], [711.5, 1536.5], [710.5, 1535.5], [709.5, 1534.5], [709.5, 1533.5], [708.5, 1532.5], [708.5, 1531.5], [707.5, 1530.5], [707.5, 1529.5], [706.5, 1528.5], [705.5, 1527.5], [705.5, 1524.5], [704.5, 1523.5], [704.5, 1522.5]]}, -{"id": "twpfvo", "submitted_by": "NattePepernoot", "name": "Mr.Robot", "description": "A TV Show about a group of hackers.", "website": "", "subreddit": "/r/MrRobot", "center": [1459.5, 466.5], "path": [[1433.5, 446.5], [1485.5, 446.5], [1485.5, 486.5], [1433.5, 486.5]]}, -{"id": "twpfo5", "submitted_by": "RealDASlup", "name": "Lobotomy Corporation", "description": "The game logo for Lobotomy Corporation, a game by Project Moon. Primarily worked on by r/libraryofruina and r/LobotomyCorp users, along with many other allies, including r/IndiaPlace. Thank you to everyone that fought for us.", "website": "https://twitter.com/ProjMoonStudio", "subreddit": "/r/LobotomyCorp", "center": [266.5, 1246.5], "path": [[252.5, 1227.5], [281.5, 1227.5], [280.5, 1265.5], [252.5, 1265.5]]}, -{"id": "twpfmh", "submitted_by": "Own-Intern6889", "name": "Flag of Portugal", "description": "The glorious Portuguese flag with references to: the era of maritime discoveries, Revolution April 25, the great Portuguese love for beer and cod fish (and a Wartortle holding it), the shape of their country and the great poet Fernando Pessoan.", "website": "https://en.wikipedia.org/wiki/Portugal", "subreddit": "/r/portugal, /r/PortugalCaralho", "center": [1445.5, 1864.5], "path": [[1366.5, 1818.5], [1366.5, 1884.5], [1403.5, 1884.5], [1404.5, 1916.5], [1531.5, 1917.5], [1531.5, 1912.5], [1514.5, 1913.5], [1510.5, 1868.5], [1504.5, 1862.5], [1503.5, 1849.5], [1522.5, 1827.5], [1526.5, 1825.5], [1528.5, 1826.5], [1532.5, 1830.5], [1532.5, 1819.5], [1366.5, 1818.5]]}, -{"id": "twpfi5", "submitted_by": "MimmiJack", "name": "SPQR", "description": "Senatvs PopvlvsQve Romanvs, the words that represented the power of the Roman senate after the Kings Age.", "website": "https://en.wikipedia.org/wiki/SPQR", "subreddit": "/r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "center": [860.5, 434.5], "path": [[856.5, 419.5], [857.5, 451.5], [864.5, 450.5], [864.5, 419.5]]}, -{"id": "tws7qu", "submitted_by": "dab00mer9", "name": "N", "description": "N is form the series murder drones produced by Glitch Productions which is about drones that murder", "website": "", "subreddit": "/r/MurderDrones", "center": [102.5, 822.5], "path": [[109.5, 830.5], [109.5, 814.5], [95.5, 815.5], [95.5, 830.5]]}, -{"id": "tws7q3", "submitted_by": "NormalW", "name": "Dropout Bear", "description": "A depiction of the Dropout Bear, the mascot used for Kanye West's first three albums.", "website": "", "subreddit": "", "center": [1755.5, 43.5], "path": [[1765.5, 51.5], [1765.5, 35.5], [1745.5, 35.5], [1745.5, 51.5], [1754.5, 51.5]]}, -{"id": "tws7mh", "submitted_by": "Mo3ath502", "name": "Trash Clan's skull", "description": "This is the skull representing the Trash Clan. The trash clan are the loyal members of Snuffy's community", "website": "https://www.twitch.tv/snuffy", "subreddit": "", "center": [1971.5, 1195.5], "path": [[1943.5, 1172.5], [1999.5, 1172.5], [1999.5, 1215.5], [1999.5, 1218.5], [1943.5, 1218.5], [1943.5, 1216.5], [1943.5, 1208.5], [1943.5, 1201.5], [1943.5, 1186.5]]}, -{"id": "tws788", "name": "The Tree People", "description": "A small Reddit chat that united for a common cause. The Tree People patch shows the story of a tree, a man, his wife and their dog Pickles. Thank you to those communities that supported us during r/place!", "website": "", "subreddit": "/r/place_the_tree_people", "center": [857.5, 1258.5], "path": [[853.5, 1254.5], [861.5, 1254.5], [861.5, 1262.5], [853.5, 1262.5]]}, -{"id": "tws77m", "submitted_by": "SH_Eastawott", "name": "Leeds United Logo", "description": "The logo for the Leeds United Football Club and unofficial symbol of the city of Leeds, UK.", "website": "https://www.leedsunited.com/", "subreddit": "/r/LeedsUnited", "center": [1752.5, 577.5], "path": [[1751.5, 597.5], [1742.5, 589.5], [1739.5, 582.5], [1737.5, 578.5], [1738.5, 569.5], [1746.5, 561.5], [1753.5, 559.5], [1760.5, 562.5], [1767.5, 570.5], [1766.5, 581.5], [1760.5, 591.5], [1753.5, 597.5]]}, -{"id": "tws6gm", "submitted_by": "Grualva", "name": "Nakiri Ayame", "description": "A chibi art of virtual YouTuber Nakiri Ayame, a kimono-clad oni who is a talent of Hololive, a VTuber agency.", "website": "https://www.youtube.com/channel/UC7fk0CB07ly8oSl0aqKkqFg", "subreddit": "/r/NakiriAyame, /r/Hololive", "center": [1392.5, 966.5], "path": [[1389.5, 962.5], [1389.5, 963.5], [1389.5, 964.5], [1388.5, 964.5], [1388.5, 968.5], [1389.5, 968.5], [1389.5, 969.5], [1395.5, 969.5], [1395.5, 968.5], [1396.5, 968.5], [1396.5, 965.5], [1397.5, 965.5], [1396.5, 965.5], [1396.5, 964.5], [1397.5, 964.5], [1396.5, 964.5], [1396.5, 963.5], [1395.5, 963.5], [1395.5, 962.5], [1395.5, 963.5], [1389.5, 963.5], [1389.5, 962.5], [1389.5, 962.5]]}, -{"id": "tws6e3", "submitted_by": "altocumulus_", "name": "404 girl", "description": "Yotsuba Koiwai from Yotsuba&!, 4chan mascot", "website": "https://4chan.org", "subreddit": "", "center": [1719.5, 953.5], "path": [[1708.5, 942.5], [1708.5, 963.5], [1729.5, 963.5], [1729.5, 941.5], [1728.5, 941.5], [1727.5, 942.5], [1725.5, 942.5], [1724.5, 943.5], [1719.5, 943.5], [1718.5, 944.5], [1712.5, 944.5], [1710.5, 942.5], [1708.5, 942.5]]}, -{"id": "tws5va", "submitted_by": "SGVsbG86KQ", "name": "The Pixel Place", "description": "ThePixelPlace.Space logo (site inspired by /r/place)", "website": "https://thepixelplace.space/", "subreddit": "/r/ThePixelPlace", "center": [767.5, 568.5], "path": [[772.5, 560.5], [772.5, 575.5], [760.5, 575.5], [760.5, 571.5], [759.5, 571.5], [759.5, 569.5], [763.5, 569.5], [763.5, 560.5]]}, -{"id": "tws5qi", "submitted_by": "Czechbol", "name": "Brno University of Technology", "description": "A logo of a Czech University", "website": "https://www.vut.cz", "subreddit": "/r/vutbrno", "center": [358.5, 799.5], "path": [[343.5, 780.5], [373.5, 780.5], [373.5, 818.5], [343.5, 818.5], [343.5, 780.5]]}, -{"id": "tws5nr", "submitted_by": "manawesome326", "name": "Ballclark", "description": "An emoji from the Discord server for the browser game Blaseball: an angry baseball (or blaseball) representing one of the game's developers.", "website": "https://discord.gg/blaseball", "subreddit": "", "center": [115.5, 679.5], "path": [[112.5, 686.5], [118.5, 686.5], [122.5, 681.5], [122.5, 676.5], [118.5, 672.5], [112.5, 672.5], [108.5, 677.5], [108.5, 679.5]]}, -{"id": "tws5lm", "submitted_by": "tiaxanderson", "name": "r/PlaceNL's taskbar button", "description": "In collaboration with r/PlaceStart and others, r/PlaceNL created and maintained their taskbar section. The orange color gives the impression that it wants your attention (as if through a pop-up message had been supressed", "website": "https://en.wikipedia.org/wiki/Netherlands", "subreddit": "/r/PlaceNL, /r/PlaceStart", "center": [341.5, 1986.5], "path": [[388.5, 1973.5], [388.5, 1998.5], [294.5, 1998.5], [294.5, 1973.5]]}, -{"id": "tws5ij", "submitted_by": "lancia58", "name": "IDOLI 22", "description": "An italian streamer community, named by IDOLI. Who knows what '22' stands for.", "website": "https://www.twitch.tv/paoloidolo", "subreddit": "/r/IDOLAZZI", "center": [1533.5, 1772.5], "path": [[1525.5, 1767.5], [1540.5, 1767.5], [1540.5, 1776.5], [1525.5, 1776.5]]}, -{"id": "tws5em", "submitted_by": "BlupMcBubbles", "name": "Belgian Red Devils", "description": "The blason of the national football team : the Red Devils. And two of their most famous players who celebrate a goal, Lukaku (left) and De Bruyne (right).", "website": "", "subreddit": "", "center": [1310.5, 1415.5], "path": [[1286.5, 1369.5], [1333.5, 1369.5], [1332.5, 1463.5], [1287.5, 1461.5]]}, -{"id": "tws5a3", "submitted_by": "Kreicliff", "name": "Article 13/17", "description": "A reminder of the demonstrations and fight against the widely criticised article 13 (later 17), which let to a upload-filter-based copyright system in the European Union.", "website": "https://en.wikipedia.org/wiki/Directive_on_Copyright_in_the_Digital_Single_Market", "subreddit": "/r/placeDE", "center": [258.5, 1138.5], "path": [[244.5, 1147.5], [271.5, 1147.5], [272.5, 1129.5], [243.5, 1130.5]]}, -{"id": "tws55y", "submitted_by": "Intelligent_Donut_95", "name": "Philadelphia 76ers", "description": "A NBA team located in Philadelphia, Pennsylvania.", "website": "", "subreddit": "/r/sixers", "center": [90.5, 593.5], "path": [[80.5, 579.5], [99.5, 579.5], [99.5, 607.5], [80.5, 607.5]]}, -{"id": "tws53k", "submitted_by": "IenjoyPineapplepizza", "name": "Louvre", "description": "The world's most-visited museum, and a historic landmark in Paris, France. It is the home of some of the best-known works of art, including the Mona Lisa and the Venus de Milo.", "website": "https://en.wikipedia.org/wiki/Louvre", "subreddit": "/r/PlaceFrance", "center": [35.5, 1720.5], "path": [[2.5, 1665.5], [11.5, 1657.5], [92.5, 1730.5], [62.5, 1760.5], [0.5, 1760.5]]}, -{"id": "tws4w3", "submitted_by": "Bendystrawz12", "name": "Project Moon", "description": "A miniature version of the logo of South Korean game studio Project Moon, creators of Library of Ruina and Lobotomy Corporation.", "website": "https://projectmoon.studio/eng/main/", "subreddit": "/r/libraryofruina", "center": [1350.5, 110.5], "path": [[1346.5, 106.5], [1354.5, 106.5], [1354.5, 112.5], [1352.5, 115.5], [1347.5, 115.5], [1345.5, 114.5]]}, -{"id": "tws4tx", "submitted_by": "heyhowzitgoinn", "name": "Ben 10", "description": "Ben Tennyson's Omnitrix (green) from the tv series Ben 10, next to it is Aledo's corrupted Omnitrix (red). nIT'S HERO TIME!", "website": "", "subreddit": "/r/Ben10", "center": [1180.5, 411.5], "path": [[1192.5, 417.5], [1173.5, 417.5], [1168.5, 416.5], [1167.5, 405.5], [1192.5, 405.5]]}, -{"id": "tws4iq", "submitted_by": "urammar", "name": "Momentum Mod", "description": "Momentum Mod is a first-person platforming game built on Valve's Source Engine that centralizes movement-oriented game modes from various games like Counter-Strike, Team Fortress, Half-Life, and Titanfall. The purple checkered pattern is an homage to missing textures in source games, and the large flank is their logo.", "website": "https://store.steampowered.com/app/669270/Momentum_Mod/", "subreddit": "/r/MomentumMod", "center": [1454.5, 118.5], "path": [[1437.5, 92.5], [1462.5, 92.5], [1464.5, 100.5], [1476.5, 106.5], [1477.5, 120.5], [1466.5, 131.5], [1465.5, 139.5], [1460.5, 140.5], [1460.5, 145.5], [1437.5, 144.5]]}, -{"id": "tws4al", "submitted_by": "Royal-Wolfie", "name": "Jvne flowers", "description": "flowers from sewerslvt's OC", "website": "", "subreddit": "/r/sewerslvt", "center": [109.5, 517.5], "path": [[93.5, 505.5], [125.5, 505.5], [125.5, 529.5], [93.5, 529.5]]}, -{"id": "tws49z", "submitted_by": "Oktober219", "name": "Shrimp", "description": "", "website": "", "subreddit": "/r/shrimptank", "center": [1750.5, 1436.5], "path": [[1736.5, 1433.5], [1736.5, 1433.5], [1736.5, 1432.5], [1737.5, 1432.5], [1737.5, 1431.5], [1738.5, 1431.5], [1739.5, 1431.5], [1739.5, 1430.5], [1739.5, 1429.5], [1739.5, 1428.5], [1740.5, 1428.5], [1740.5, 1427.5], [1741.5, 1427.5], [1741.5, 1426.5], [1742.5, 1426.5], [1742.5, 1425.5], [1746.5, 1425.5], [1746.5, 1424.5], [1753.5, 1424.5], [1753.5, 1425.5], [1754.5, 1425.5], [1754.5, 1429.5], [1755.5, 1429.5], [1755.5, 1430.5], [1755.5, 1431.5], [1755.5, 1432.5], [1756.5, 1432.5], [1757.5, 1432.5], [1757.5, 1433.5], [1758.5, 1433.5], [1758.5, 1434.5], [1759.5, 1434.5], [1759.5, 1435.5], [1760.5, 1435.5], [1760.5, 1436.5], [1761.5, 1436.5], [1761.5, 1442.5], [1761.5, 1443.5], [1760.5, 1443.5], [1760.5, 1444.5], [1759.5, 1444.5], [1759.5, 1445.5], [1759.5, 1446.5], [1758.5, 1446.5], [1758.5, 1447.5], [1757.5, 1447.5], [1756.5, 1447.5], [1756.5, 1448.5], [1755.5, 1448.5], [1754.5, 1448.5], [1754.5, 1449.5], [1752.5, 1449.5], [1752.5, 1450.5], [1751.5, 1450.5], [1751.5, 1451.5], [1750.5, 1451.5], [1749.5, 1451.5], [1749.5, 1450.5], [1748.5, 1450.5], [1748.5, 1449.5], [1747.5, 1449.5], [1747.5, 1448.5], [1747.5, 1448.5], [1747.5, 1447.5], [1748.5, 1447.5], [1748.5, 1446.5], [1748.5, 1445.5], [1748.5, 1444.5]]}, -{"id": "tws47v", "submitted_by": "lancia58", "name": "Modificati TV", "description": "An Italian community.", "website": "https://www.youtube.com/c/ModificatiTV", "subreddit": "/r/Homyatol/", "center": [1570.5, 1782.5], "path": [[1564.5, 1776.5], [1564.5, 1787.5], [1575.5, 1787.5], [1575.5, 1776.5]]}, -{"id": "tws406", "submitted_by": "_hhhnnnggg_", "name": "Roxy Migurdia", "description": "The demon magician from the novel/anime series Mushoku Tensei", "website": "", "subreddit": "/r/mushokutensei", "center": [1694.5, 180.5], "path": [[1692.5, 186.5], [1696.5, 186.5], [1696.5, 183.5], [1697.5, 183.5], [1697.5, 174.5], [1696.5, 173.5], [1694.5, 173.5], [1690.5, 177.5], [1691.5, 177.5], [1691.5, 186.5]]}, -{"id": "tws3zf", "submitted_by": "Rocked03", "name": "X-Men", "description": "The X-Men logo, from the Marvel comics, as seen in Jonathan Hickman's House of X.", "website": "", "subreddit": "/r/Marvel_place", "center": [997.5, 1711.5], "path": [[989.5, 1718.5], [989.5, 1717.5], [988.5, 1717.5], [988.5, 1715.5], [987.5, 1715.5], [987.5, 1711.5], [988.5, 1711.5], [988.5, 1707.5], [989.5, 1706.5], [990.5, 1705.5], [991.5, 1704.5], [992.5, 1703.5], [993.5, 1702.5], [1000.5, 1702.5], [1000.5, 1703.5], [1001.5, 1703.5], [1007.5, 1708.5], [1007.5, 1714.5], [1005.5, 1718.5], [989.5, 1718.5]]}, -{"id": "tws3vg", "submitted_by": "AustinDHBoi", "name": "Bloodborne (Hunter)", "description": "Bloodborne is a FromSoftware game released in 2015, which is often considered one of the best games of all time. The r/Place art features the Hunter (player) character from the game, with a gun and weapon in the Hunter's left and right hands. The art also features the Hunter's Mark in the top left, and an eye in the top right representing insight. The art remained relatively untouched despite it's close proximity to the void.", "website": "https://bloodborne.fandom.com/wiki/Bloodborne", "subreddit": "/r/bloodborne", "center": [941.5, 1462.5], "path": [[921.5, 1435.5], [921.5, 1488.5], [960.5, 1488.5], [960.5, 1435.5]]}, -{"id": "tws3r8", "submitted_by": "Rocked03", "name": "The Infinity Stones", "description": "The 6 Infinity Stones, from Marvel.", "website": "", "subreddit": "/r/Marvel_place", "center": [984.5, 1705.5], "path": [[980.5, 1691.5], [979.5, 1692.5], [979.5, 1693.5], [980.5, 1694.5], [982.5, 1697.5], [984.5, 1702.5], [984.5, 1708.5], [984.5, 1714.5], [983.5, 1718.5], [983.5, 1719.5], [984.5, 1720.5], [985.5, 1719.5], [986.5, 1714.5], [986.5, 1708.5], [986.5, 1701.5], [984.5, 1696.5], [981.5, 1692.5]]}, -{"id": "tws3ot", "submitted_by": "Rocked03", "name": "Mjölnir", "description": "Thor's hammer, Mjölnir, from Marvel.", "website": "", "subreddit": "/r/Marvel_place", "center": [992.5, 1694.5], "path": [[987.5, 1700.5], [997.5, 1700.5], [998.5, 1699.5], [998.5, 1694.5], [996.5, 1694.5], [996.5, 1693.5], [993.5, 1693.5], [993.5, 1680.5], [991.5, 1680.5], [991.5, 1693.5], [987.5, 1693.5], [986.5, 1694.5], [986.5, 1698.5], [986.5, 1699.5], [987.5, 1700.5]]}, -{"id": "tws3kh", "submitted_by": "Rocked03", "name": "Morbius", "description": "Star of the blockbuster event of 2022, Dr. Michael Morbius, as seen in the Marvel comics, and on screen in Morbius (2022), as played by Jared Leto.", "website": "", "subreddit": "/r/MarvelStudiosSpoilers", "center": [112.5, 338.5], "path": [[108.5, 345.5], [115.5, 345.5], [115.5, 344.5], [118.5, 341.5], [118.5, 338.5], [116.5, 336.5], [117.5, 335.5], [116.5, 334.5], [117.5, 333.5], [114.5, 330.5], [109.5, 330.5], [106.5, 333.5], [107.5, 334.5], [106.5, 335.5], [107.5, 336.5], [105.5, 338.5], [105.5, 341.5], [108.5, 344.5], [108.5, 345.5]]}, -{"id": "tws3h3", "submitted_by": "Rocked03", "name": "Marvel", "description": "", "website": "", "subreddit": "/r/Marvel_place", "center": [979.5, 1704.5], "path": [[954.5, 1722.5], [977.5, 1722.5], [977.5, 1721.5], [978.5, 1720.5], [979.5, 1719.5], [982.5, 1719.5], [984.5, 1721.5], [986.5, 1719.5], [1007.5, 1719.5], [1008.5, 1715.5], [1008.5, 1707.5], [1001.5, 1701.5], [1001.5, 1697.5], [999.5, 1693.5], [996.5, 1691.5], [996.5, 1678.5], [990.5, 1678.5], [989.5, 1681.5], [981.5, 1682.5], [981.5, 1689.5], [955.5, 1688.5], [954.5, 1690.5], [954.5, 1695.5], [954.5, 1722.5]]}, -{"id": "tws39y", "submitted_by": "Rocked03", "name": "Squirrel Girl", "description": "Squirrel Girl, and her partner Tippy-Toe, from the Marvel comics.", "website": "", "subreddit": "/r/Marvel_place", "center": [958.5, 1691.5], "path": [[955.5, 1690.5], [955.5, 1693.5], [956.5, 1694.5], [959.5, 1694.5], [959.5, 1692.5], [961.5, 1691.5], [964.5, 1691.5], [965.5, 1690.5], [959.5, 1690.5], [958.5, 1689.5], [955.5, 1690.5], [955.5, 1693.5]]}, -{"id": "tws340", "submitted_by": "D3D4N13L", "name": "Planetside 2", "description": "Coordination by Qaztar. The logo represents the 4 factions which is Terran Republic (red), New Conglomerate (blue), Vanu Sovereignty (purple) and Nanite System Operative (white) surrounding the planetside where unending battle happens. nPlanetside 2 is an MMOFPSRPG where three factions collides and massive battle happens up to 200+ player with plane, tanks, construction and orbital strike (nuke). Don't run over your teammates ffs.n", "website": "https://www.planetside2.com/home", "subreddit": "/r/planetside", "center": [1880.5, 905.5], "path": [[1870.5, 893.5], [1892.5, 894.5], [1892.5, 914.5], [1869.5, 917.5]]}, -{"id": "tws2yi", "submitted_by": "Rocked03", "name": "Daredevil", "description": "Daredevil's logo, from Marvel.", "website": "", "subreddit": "/r/daredevil", "center": [984.5, 1686.5], "path": [[982.5, 1683.5], [985.5, 1683.5], [986.5, 1684.5], [986.5, 1685.5], [987.5, 1686.5], [987.5, 1688.5], [986.5, 1689.5], [983.5, 1689.5], [982.5, 1687.5], [982.5, 1683.5]]}, -{"id": "tws2uu", "submitted_by": "ziemnakiscool", "name": "Döner kebab man", "description": "This dude is on most of Germany's döners so r/placeDE put him here.", "website": "https://en.wikipedia.org/wiki/Doner_kebab", "subreddit": "/r/placeDE", "center": [1382.5, 847.5], "path": [[1371.5, 864.5], [1370.5, 863.5], [1372.5, 860.5], [1372.5, 855.5], [1376.5, 848.5], [1376.5, 842.5], [1362.5, 847.5], [1359.5, 847.5], [1358.5, 841.5], [1362.5, 836.5], [1368.5, 832.5], [1373.5, 831.5], [1377.5, 831.5], [1379.5, 831.5], [1383.5, 831.5], [1388.5, 831.5], [1391.5, 832.5], [1394.5, 833.5], [1398.5, 836.5], [1402.5, 841.5], [1401.5, 846.5], [1401.5, 847.5], [1398.5, 847.5], [1394.5, 848.5], [1395.5, 851.5], [1396.5, 853.5], [1395.5, 857.5], [1394.5, 858.5], [1388.5, 860.5], [1390.5, 863.5], [1388.5, 866.5], [1386.5, 868.5], [1377.5, 869.5], [1376.5, 865.5]]}, -{"id": "tws2ub", "submitted_by": "lancia58", "name": "Paluders", "description": "Community of Italian streamer Enkk. He loves big boobs and cringe contents.", "website": "https://www.twitch.tv/enkk", "subreddit": "/r/enkk", "center": [1570.5, 1794.5], "path": [[1571.5, 1787.5], [1571.5, 1787.5], [1565.5, 1787.5], [1564.5, 1787.5], [1565.5, 1802.5], [1576.5, 1802.5], [1576.5, 1787.5], [1576.5, 1787.5], [1571.5, 1787.5]]}, -{"id": "tws2u9", "submitted_by": "_SmallLuck_", "name": "Your Turn to Die", "description": "YTTD is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "website": "", "subreddit": "/r/YTTD", "center": [434.5, 1866.5], "path": [[421.5, 1850.5], [448.5, 1850.5], [448.5, 1881.5], [419.5, 1881.5], [419.5, 1856.5], [421.5, 1855.5]]}, -{"id": "tws2rp", "submitted_by": "Intelligent_Donut_95", "name": "Philadelphia Eagles", "description": "A NFL team located in Philadelphia, Pennsylvania.", "website": "", "subreddit": "/r/eagles", "center": [1941.5, 86.5], "path": [[1928.5, 73.5], [1954.5, 73.5], [1954.5, 99.5], [1928.5, 99.5]]}, -{"id": "tws2k5", "submitted_by": "Likikoari-9788", "name": "Undertale Handplates AU", "description": "The Skeleton Family of Sans Papyrus and Gaster from the popular undertale AU 'Handplates' Created by Zarla", "website": "http://handplates.the-comic.org/", "subreddit": "/r/handplates", "center": [1855.5, 1727.5], "path": [[1843.5, 1735.5], [1863.5, 1735.5], [1862.5, 1716.5], [1854.5, 1717.5], [1854.5, 1719.5], [1852.5, 1719.5], [1851.5, 1723.5], [1851.5, 1724.5], [1850.5, 1726.5], [1846.5, 1725.5], [1846.5, 1726.5], [1846.5, 1727.5], [1845.5, 1727.5], [1845.5, 1730.5], [1845.5, 1732.5], [1844.5, 1733.5], [1844.5, 1734.5], [1843.5, 1735.5]]}, -{"id": "tws2ao", "submitted_by": "zahrla", "name": "Lofi Girl", "description": "The Lofi Girl was created by Juan Pablo Machado, a Colombian who was a student in an art school (Émile Cohl) in the city of Lyon, France.", "website": "https://www.youtube.com/watch?v=5qap5aO4i9A", "subreddit": "/r/PlaceFrance", "center": [208.5, 1672.5], "path": [[221.5, 1644.5], [219.5, 1643.5], [214.5, 1641.5], [213.5, 1641.5], [211.5, 1641.5], [208.5, 1644.5], [205.5, 1645.5], [200.5, 1647.5], [197.5, 1648.5], [196.5, 1649.5], [195.5, 1650.5], [195.5, 1652.5], [194.5, 1653.5], [193.5, 1656.5], [193.5, 1661.5], [194.5, 1662.5], [196.5, 1662.5], [198.5, 1663.5], [197.5, 1666.5], [198.5, 1666.5], [198.5, 1668.5], [196.5, 1668.5], [196.5, 1670.5], [196.5, 1671.5], [197.5, 1671.5], [197.5, 1672.5], [199.5, 1673.5], [200.5, 1674.5], [200.5, 1675.5], [196.5, 1675.5], [196.5, 1676.5], [194.5, 1676.5], [194.5, 1672.5], [193.5, 1672.5], [193.5, 1671.5], [192.5, 1671.5], [192.5, 1670.5], [191.5, 1670.5], [191.5, 1669.5], [189.5, 1669.5], [189.5, 1668.5], [182.5, 1668.5], [182.5, 1667.5], [181.5, 1667.5], [181.5, 1666.5], [179.5, 1666.5], [173.5, 1666.5], [173.5, 1667.5], [172.5, 1667.5], [172.5, 1668.5], [171.5, 1668.5], [171.5, 1671.5], [170.5, 1671.5], [170.5, 1682.5], [170.5, 1683.5], [170.5, 1684.5], [177.5, 1687.5], [181.5, 1688.5], [182.5, 1690.5], [182.5, 1692.5], [183.5, 1693.5], [183.5, 1694.5], [184.5, 1695.5], [192.5, 1695.5], [192.5, 1696.5], [234.5, 1696.5], [234.5, 1640.5], [228.5, 1640.5], [226.5, 1641.5], [222.5, 1642.5], [220.5, 1644.5], [220.5, 1644.5], [220.5, 1644.5], [220.5, 1643.5], [220.5, 1644.5], [217.5, 1643.5], [214.5, 1641.5], [220.5, 1644.5], [221.5, 1647.5], [221.5, 1644.5]]}, -{"id": "tws2an", "submitted_by": "Annoyng_dog", "name": "r/shark_park shark", "description": "A small shark made by members of r/shark_park", "website": "https://discord.gg/pissing", "subreddit": "/r/shark_park", "center": [249.5, 669.5], "path": [[242.5, 669.5], [242.5, 669.5], [242.5, 669.5], [242.5, 670.5], [243.5, 671.5], [244.5, 671.5], [245.5, 671.5], [246.5, 671.5], [247.5, 671.5], [248.5, 672.5], [249.5, 673.5], [249.5, 672.5], [249.5, 671.5], [251.5, 671.5], [251.5, 671.5], [252.5, 670.5], [253.5, 670.5], [254.5, 669.5], [255.5, 670.5], [256.5, 671.5], [257.5, 671.5], [256.5, 670.5], [256.5, 669.5], [255.5, 669.5], [255.5, 668.5], [255.5, 667.5], [256.5, 667.5], [256.5, 666.5], [257.5, 665.5], [256.5, 665.5], [255.5, 666.5], [254.5, 667.5], [254.5, 668.5], [253.5, 668.5], [252.5, 668.5], [251.5, 668.5], [250.5, 668.5], [250.5, 667.5], [250.5, 666.5], [250.5, 665.5], [249.5, 666.5], [248.5, 667.5], [247.5, 668.5], [246.5, 668.5], [246.5, 668.5], [244.5, 668.5], [243.5, 668.5], [242.5, 669.5]]}, -{"id": "tws24f", "submitted_by": "gwenby", "name": "moonmoon", "description": "A depiction of moon2Smug, a popular emote on Twitch from the streamer moonmoon.", "website": "https://www.twitch.tv/moonmoon", "subreddit": "/r/MOONMOON_OW", "center": [1666.5, 927.5], "path": [[1646.5, 898.5], [1686.5, 898.5], [1687.5, 956.5], [1646.5, 956.5]]}, -{"id": "tws1r7", "submitted_by": "_SmallLuck_", "name": "Your Turn to Die", "description": "YTTD is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "website": "", "subreddit": "/r/YTTD", "center": [1857.5, 137.5], "path": [[1837.5, 118.5], [1837.5, 157.5], [1876.5, 157.5], [1877.5, 118.5], [1858.5, 118.5]]}, -{"id": "tws1ov", "submitted_by": "tiaxanderson", "name": "Japanese flag and Alfred J. Quack", "description": "Alfred J. Quack (Alfred J. Kwak) is a Dutch produced and in Japan animated comedy-drama from 1989 to 1990 that was dubbed in 22 languages (Little Duck's Big Love Story in Japanese). This was added to the Japanese flag when r/PlaceNL moved it over a little", "website": "", "subreddit": "", "center": [735.5, 1959.5], "path": [[708.5, 1953.5], [713.5, 1948.5], [760.5, 1948.5], [760.5, 1970.5], [716.5, 1970.5], [711.5, 1966.5], [707.5, 1958.5]]}, -{"id": "tws1hf", "submitted_by": "MorrMorrr", "name": "Senko Loaf", "description": "Mafu Mafu", "website": "https://knowyourmeme.com/memes/senko-loaf", "subreddit": "/r/SewayakiKitsune", "center": [830.5, 1505.5], "path": [[872.5, 1520.5], [875.5, 1520.5], [875.5, 1519.5], [879.5, 1519.5], [875.5, 1513.5], [875.5, 1509.5], [876.5, 1506.5], [879.5, 1506.5], [879.5, 1504.5], [876.5, 1503.5], [874.5, 1499.5], [873.5, 1496.5], [875.5, 1495.5], [875.5, 1493.5], [873.5, 1486.5], [871.5, 1486.5], [866.5, 1494.5], [860.5, 1493.5], [860.5, 1489.5], [857.5, 1485.5], [855.5, 1485.5], [854.5, 1486.5], [853.5, 1492.5], [802.5, 1492.5], [789.5, 1494.5], [780.5, 1497.5], [777.5, 1506.5], [781.5, 1515.5], [795.5, 1519.5], [850.5, 1519.5], [858.5, 1521.5], [859.5, 1520.5], [868.5, 1520.5], [870.5, 1519.5]]}, -{"id": "tws1e4", "submitted_by": "MGUM44", "name": "Aqua Cat", "description": "Reference to the VTuber Minato Aqua (Hololive 2nd Gen.) and her Aqua Cat video, a parody of Nyan Cat.", "website": "https://www.youtube.com/watch?v=Snn2gWq-3KY", "subreddit": "/r/Hololive", "center": [1344.5, 986.5], "path": [[1332.5, 999.5], [1355.5, 998.5], [1355.5, 996.5], [1357.5, 995.5], [1358.5, 994.5], [1358.5, 991.5], [1357.5, 989.5], [1358.5, 987.5], [1359.5, 987.5], [1356.5, 985.5], [1354.5, 983.5], [1353.5, 981.5], [1353.5, 975.5], [1353.5, 974.5], [1352.5, 973.5], [1351.5, 972.5], [1352.5, 971.5], [1350.5, 972.5], [1348.5, 972.5], [1347.5, 972.5], [1346.5, 971.5], [1341.5, 971.5], [1338.5, 971.5], [1335.5, 972.5], [1332.5, 975.5], [1332.5, 974.5], [1332.5, 996.5], [1332.5, 998.5], [1332.5, 999.5]]}, -{"id": "tws13j", "submitted_by": "ComradeStarry", "name": "Makedonium - Ilinden Monument", "description": "1903 Ilinden Uprising Memorial", "website": "", "subreddit": "/r/mkd", "center": [1185.5, 487.5], "path": [[1172.5, 508.5], [1172.5, 476.5], [1172.5, 465.5], [1197.5, 465.5], [1197.5, 508.5]]}, -{"id": "tws100", "submitted_by": "BlupMcBubbles", "name": "Ambiorix statue", "description": "The Gallian chief of the Belgian tribe who resisted against Julius Ceasar invasion : Ambiorix. This statue located in Tongeren is dedicated to this national hero.", "website": "https://en.wikipedia.org/wiki/Ambiorix", "subreddit": "", "center": [1310.5, 1637.5], "path": [[1290.5, 1596.5], [1330.5, 1596.5], [1331.5, 1678.5], [1290.5, 1677.5]]}, -{"id": "tws06u", "submitted_by": "wildhoover", "name": "Alfred Jodocus Kwak", "description": "Alfred J. Kwak is a cartoon, written by dutch artist Herman van Veen and created by Japanse anime artists. nThe series introduces children to themes like fascism and apartheid. nFirst aired in 1989, the show is still being rerun.", "website": "https://en.wikipedia.org/wiki/Alfred_J._Kwak", "subreddit": "", "center": [717.5, 1959.5], "path": [[719.5, 1970.5], [728.5, 1970.5], [728.5, 1964.5], [724.5, 1961.5], [725.5, 1955.5], [722.5, 1949.5], [711.5, 1948.5], [706.5, 1955.5], [710.5, 1965.5], [714.5, 1970.5]]}, -{"id": "tws036", "submitted_by": "HobbylosUwU", "name": "Brandenburg Gate", "description": "The Brandenburg Gate (German: Brandenburger Tor) is an 18th-century neoclassical monument in Berlin, built on the orders of Prussian king Frederick William II after the temporary restoration of order during the Batavian Revolution. One of the best-known landmarks of Germany, it was built on the site of a former city gate that marked the start of the road from Berlin to the town of Brandenburg an der Havel, which used to be the capital of the Margraviate of Brandenburg.", "website": "https://en.wikipedia.org/wiki/Brandenburg_Gate", "subreddit": "/r/placeDE", "center": [704.5, 849.5], "path": [[676.5, 866.5], [732.5, 866.5], [732.5, 835.5], [732.5, 834.5], [712.5, 834.5], [712.5, 830.5], [711.5, 830.5], [711.5, 829.5], [709.5, 829.5], [709.5, 828.5], [707.5, 828.5], [707.5, 827.5], [706.5, 827.5], [706.5, 826.5], [702.5, 826.5], [702.5, 827.5], [701.5, 827.5], [701.5, 828.5], [700.5, 828.5], [699.5, 829.5], [697.5, 829.5], [697.5, 830.5], [696.5, 830.5], [696.5, 833.5], [694.5, 833.5], [694.5, 834.5], [675.5, 834.5], [675.5, 866.5]]}, -{"id": "tws00r", "submitted_by": "ProfessorSkyKid", "name": "Vib-Ribbon", "description": "This artwork depicts Vibri from the PS1 game Vib-Ribbon.", "website": "", "subreddit": "/r/Vib_Ribbon", "center": [1711.5, 191.5], "path": [[1721.5, 171.5], [1723.5, 210.5], [1699.5, 211.5], [1700.5, 171.5]]}, -{"id": "twrzri", "submitted_by": "Black_Reapxr", "name": "Kishirika Kishirisu", "description": "A character from the series mushoku tensei. She valiantly fought off a European invasion.", "website": "https://anilist.co/manga/85470/Mushoku-Tensei-Jobless-Reincarnation/", "subreddit": "/r/sixfacedworld", "center": [1739.5, 220.5], "path": [[1731.5, 212.5], [1747.5, 212.5], [1747.5, 228.5], [1731.5, 228.5], [1731.5, 212.5]]}, -{"id": "twrzk2", "submitted_by": "Kosh_Ascadian", "name": "Baltic flags", "description": "The flags of the Baltic countries and their coats of Arms. Estonian flag also has the national bird added to it and a national pattern on top.", "website": "", "subreddit": "/r/balticstates", "center": [406.5, 693.5], "path": [[363.5, 645.5], [448.5, 645.5], [448.5, 740.5], [363.5, 740.5], [363.5, 653.5], [363.5, 653.5], [363.5, 649.5]]}, -{"id": "twrzgy", "submitted_by": "IcedancerEmily", "name": "Georgia Bulldogs", "description": "The Georgia Bulldogs are the athletic teams representing the University of Georgia, including the 2021 college football national champion Georgia Bulldogs football team.", "website": "", "subreddit": "/r/georgiabulldogs", "center": [44.5, 458.5], "path": [[37.5, 452.5], [51.5, 452.5], [51.5, 463.5], [37.5, 463.5]]}, -{"id": "twrzax", "submitted_by": "MarcelinePye", "name": "Celeste", "description": "Figures from the game Celeste with a transgender flag background and a string of various heart flags.n", "website": "", "subreddit": "/r/celestegame", "center": [1032.5, 871.5], "path": [[1129.5, 869.5], [1070.5, 869.5], [1070.5, 868.5], [1068.5, 868.5], [1065.5, 865.5], [1065.5, 862.5], [1064.5, 857.5], [1063.5, 853.5], [972.5, 854.5], [972.5, 860.5], [966.5, 860.5], [966.5, 885.5], [1084.5, 885.5], [1084.5, 879.5], [1129.5, 879.5]]}, -{"id": "twrz8x", "submitted_by": "eelsemaj99", "name": "Doctor Who TARDIS", "description": "A TARDIS from the TV show Doctor Who. Very quickly we allied with someone building a purple heart which was built to the top right of the TARDIS. On the final day, we allied with the Finnish community and put children's book character Hakkarainen walking into the TARDIS. To the right of the TARDIS is Tom Baker's iconic scarf.", "website": "https://en.wikipedia.org/wiki/TARDIS", "subreddit": "/r/DoctorWho", "center": [581.5, 270.5], "path": [[594.5, 284.5], [594.5, 252.5], [587.5, 251.5], [586.5, 255.5], [582.5, 254.5], [582.5, 255.5], [581.5, 258.5], [579.5, 258.5], [579.5, 259.5], [576.5, 259.5], [576.5, 261.5], [567.5, 261.5], [567.5, 265.5], [565.5, 265.5], [563.5, 266.5], [562.5, 269.5], [562.5, 272.5], [564.5, 274.5], [564.5, 275.5], [567.5, 275.5], [568.5, 284.5], [594.5, 284.5]]}, -{"id": "twrz5s", "submitted_by": "JackThatGamerYT", "name": "Aternos", "description": "Logo for Aternos, a free Minecraft server-hosting website.", "website": "https://aternos.org/", "subreddit": "/r/Aternos", "center": [1970.5, 1519.5], "path": [[1962.5, 1511.5], [1961.5, 1511.5], [1978.5, 1511.5], [1978.5, 1527.5], [1961.5, 1528.5]]}, -{"id": "twrz3c", "submitted_by": "IenjoyPineapplepizza", "name": "The New Order: Last Days of Europe", "description": "The New Order: Last Days of Europe is mod for the real time strategy game Hearts of Iron IV (HOI4) presenting an alternate history Cold War between Germany, Japan and the USA, starting in 1962.", "website": "", "subreddit": "/r/TNOmod", "center": [463.5, 1948.5], "path": [[450.5, 1925.5], [475.5, 1925.5], [475.5, 1970.5], [450.5, 1970.5]]}, -{"id": "twryox", "submitted_by": "dum_cat", "name": "Ralsei", "description": "This is the character Ralsei from deltarune.", "website": "", "subreddit": "/r/deltarune", "center": [1759.5, 229.5], "path": [[1747.5, 207.5], [1747.5, 249.5], [1754.5, 249.5], [1754.5, 253.5], [1768.5, 253.5], [1768.5, 250.5], [1768.5, 249.5], [1771.5, 249.5], [1771.5, 207.5], [1747.5, 207.5]]}, -{"id": "twryjo", "submitted_by": "BlupMcBubbles", "name": "JCVD", "description": "The famous Begian actors Jean-Claude Van Damme, who played in numerous action movies, in his favourite pose : the wide gap. Also a little reference to the Flemish and Walloon public transport : de Lein and le TEC.", "website": "", "subreddit": "", "center": [1309.5, 1304.5], "path": [[1286.5, 1288.5], [1332.5, 1288.5], [1332.5, 1320.5], [1286.5, 1318.5]]}, -{"id": "twry93", "submitted_by": "HobbylosUwU", "name": "Kinder Surprise Egg (Üei)", "description": "Kinder Surprise is a milk chocolate consisting of a chocolate egg surrounding a yellow plastic capsule with a small toy inside. Manufactured by the Italian company Ferrero since 1974, it was co-created by Michele Ferrero and William Salice, and is one of several candies sold under the Kinder brand. Kinder Surprise was originally created with children in mind, replicating an Italian Easter family tradition in which adults give children large chocolate eggs with toys inside. However, Kinder Surprise toys have become collectible for adults as well. Since 1974, 30 billion Kinder Surprise eggs have been sold worldwide.", "website": "https://en.wikipedia.org/wiki/Kinder_Surprise", "subreddit": "/r/placeDE", "center": [1526.5, 850.5], "path": [[1527.5, 833.5], [1524.5, 833.5], [1520.5, 835.5], [1517.5, 840.5], [1513.5, 849.5], [1512.5, 856.5], [1514.5, 861.5], [1522.5, 867.5], [1530.5, 866.5], [1535.5, 860.5], [1538.5, 853.5], [1538.5, 843.5], [1535.5, 838.5], [1532.5, 834.5], [1528.5, 832.5], [1523.5, 832.5]]}, -{"id": "twrxsz", "submitted_by": "beanrollup", "name": "Hive Minigames", "description": "The Hive is a Minecraft: Bedrock Edition featured server, in existence since 2018. Its Java edition server existed from 2013-2021. /r/place image made with help from volunteer and non-volunteer staff, as well as lovely members of the community!", "website": "https://playhive.com/", "subreddit": "/r/hivemc", "center": [482.5, 1553.5], "path": [[470.5, 1552.5], [479.5, 1552.5], [479.5, 1542.5], [485.5, 1542.5], [486.5, 1541.5], [487.5, 1540.5], [490.5, 1540.5], [490.5, 1561.5], [470.5, 1561.5]]}, -{"id": "twrxre", "submitted_by": "ThatOneCodeDev", "name": "Tadano Hitohito & Osana Najimi", "description": "Main and Supporting character from manga/anime series Komi-san wa, Comyushou desu.", "website": "https://komisan.fandom.com/wiki/Komi-san_wa_Komyushou_Desu_Wiki", "subreddit": "/r/Komi_San_Place", "center": [816.5, 1487.5], "path": [[782.5, 1499.5], [784.5, 1496.5], [787.5, 1495.5], [796.5, 1494.5], [800.5, 1493.5], [803.5, 1495.5], [806.5, 1495.5], [808.5, 1492.5], [819.5, 1493.5], [821.5, 1496.5], [823.5, 1496.5], [825.5, 1494.5], [838.5, 1493.5], [839.5, 1496.5], [841.5, 1498.5], [844.5, 1498.5], [845.5, 1496.5], [845.5, 1493.5], [842.5, 1490.5], [844.5, 1476.5], [833.5, 1475.5], [821.5, 1478.5], [820.5, 1480.5], [809.5, 1480.5], [809.5, 1483.5], [782.5, 1483.5], [782.5, 1498.5]]}, -{"id": "twrxa8", "submitted_by": "1__Raven__1", "name": "Utsuho Reiuji", "description": "A hell raven who lives beneath the ground of Gensokyo and is one of Satori Komeiji's pets. Her job is to maintain the flames of hell through the manipulation of nuclear fusion.", "website": "https://en.touhouwiki.net/wiki/Utsuho_Reiuji", "subreddit": "/r/touhou", "center": [1638.5, 1534.5], "path": [[1621.5, 1517.5], [1621.5, 1550.5], [1654.5, 1550.5], [1654.5, 1517.5]]}, -{"id": "twrxa4", "submitted_by": "MajorNicki", "name": "Half-Life 21st Century Humor", "description": "Our Discord:nhttps://discord.gg/GdkNdS2KXN", "website": "", "subreddit": "", "center": [664.5, 1573.5], "path": [[674.5, 1565.5], [674.5, 1573.5], [673.5, 1573.5], [673.5, 1577.5], [672.5, 1577.5], [672.5, 1579.5], [671.5, 1579.5], [671.5, 1580.5], [670.5, 1580.5], [670.5, 1581.5], [669.5, 1581.5], [669.5, 1582.5], [667.5, 1582.5], [667.5, 1583.5], [660.5, 1583.5], [660.5, 1582.5], [658.5, 1582.5], [658.5, 1581.5], [657.5, 1581.5], [657.5, 1580.5], [656.5, 1580.5], [656.5, 1579.5], [655.5, 1579.5], [655.5, 1577.5], [654.5, 1577.5], [654.5, 1570.5], [655.5, 1570.5], [655.5, 1568.5], [656.5, 1568.5], [656.5, 1567.5], [657.5, 1567.5], [657.5, 1566.5], [658.5, 1566.5], [658.5, 1565.5], [660.5, 1565.5], [660.5, 1564.5], [674.5, 1564.5], [674.5, 1565.5]]}, -{"id": "twrwzg", "submitted_by": "ItzDannio25", "name": "IlloJuan", "description": "Icon of the Spanish Twitch streamer named IlloJuan (also known as LMDShow and Juan Alberto) born in Fuengirola, Andalusia.nn¡Alo presidentes!", "website": "https://twitch.tv/illojuan", "subreddit": "/r/LMDShow", "center": [1426.5, 1020.5], "path": [[1402.5, 999.5], [1402.5, 1042.5], [1432.5, 1042.5], [1435.5, 1041.5], [1436.5, 1042.5], [1450.5, 1042.5], [1450.5, 999.5], [1402.5, 999.5]]}, -{"id": "twrwz5", "submitted_by": "tiaxanderson", "name": "Canadian flag and war memorial", "description": "As the Canadian's flag was constantly vandalized a small one was drawn next to the Japanese flag. r/PlaceNL moved it and added the Cross of Sacrifice from the Groesbeek Canadian War Cemetery while maintaining it for the Canadians", "website": "", "subreddit": "", "center": [523.5, 1960.5], "path": [[500.5, 1949.5], [538.5, 1948.5], [541.5, 1951.5], [547.5, 1955.5], [547.5, 1970.5], [500.5, 1970.5]]}, -{"id": "twrwwo", "submitted_by": "CaffeinatedFalls", "name": "Yale University", "description": "Yale University's Y logo. Thanks to sleep-deprived Yalies and allies from neighboring colleges, the logo was always restored despite numerous annexation attempts.", "website": "https://yale.edu", "subreddit": "/r/yale", "center": [345.5, 1629.5], "path": [[339.5, 1623.5], [339.5, 1634.5], [351.5, 1634.5], [351.5, 1623.5]]}, -{"id": "twrwk5", "submitted_by": "Rocked03", "name": "Avengers", "description": "The Avengers logo, from Marvel", "website": "", "subreddit": "/r/Marvel_place", "center": [968.5, 1707.5], "path": [[955.5, 1721.5], [975.5, 1721.5], [975.5, 1720.5], [975.5, 1719.5], [977.5, 1719.5], [977.5, 1718.5], [979.5, 1718.5], [979.5, 1717.5], [980.5, 1717.5], [980.5, 1716.5], [981.5, 1716.5], [981.5, 1714.5], [982.5, 1714.5], [982.5, 1701.5], [981.5, 1701.5], [981.5, 1699.5], [980.5, 1699.5], [980.5, 1698.5], [979.5, 1698.5], [979.5, 1697.5], [978.5, 1697.5], [978.5, 1695.5], [977.5, 1695.5], [977.5, 1694.5], [975.5, 1694.5], [975.5, 1688.5], [972.5, 1688.5], [972.5, 1689.5], [971.5, 1689.5], [971.5, 1690.5], [970.5, 1690.5], [970.5, 1691.5], [970.5, 1692.5], [966.5, 1692.5], [966.5, 1693.5], [963.5, 1693.5], [963.5, 1694.5], [961.5, 1694.5], [961.5, 1695.5], [959.5, 1695.5], [959.5, 1696.5], [958.5, 1696.5], [958.5, 1697.5], [957.5, 1697.5], [957.5, 1698.5], [956.5, 1698.5], [956.5, 1700.5], [955.5, 1700.5], [955.5, 1721.5]]}, -{"id": "twrwiv", "submitted_by": "Emazangi", "name": "RC15", "description": "A revival project for a game called Robocraft. They have brought back the 2015 version of the game, back when alot of players enjoyed the game the most and is available to play nown", "website": "", "subreddit": "/r/RC15", "center": [1922.5, 254.5], "path": [[1905.5, 240.5], [1938.5, 240.5], [1938.5, 268.5], [1905.5, 268.5]]}, -{"id": "twrwce", "submitted_by": "kittensandcatslover", "name": "BR Double Arrows", "description": "The logo of British Rail, the UK's rail operator between 1965 and 1994, and subsequently Network Rail, its successor, up to the present day. Also features a Network Southeast stripe.", "website": "", "subreddit": "", "center": [472.5, 1518.5], "path": [[476.5, 1512.5], [467.5, 1512.5], [467.5, 1524.5], [476.5, 1524.5], [476.5, 1512.5]]}, -{"id": "twrw6f", "submitted_by": "urammar", "name": "Skateboard cat", "description": "The mascot of a private swedish discord, Weebklubben, the cat is simply known as skateboarding cat, or weebcat. This niche art was one of the first after the canvas expanded and managed to have an alliance and protection agreement with all its neighbors, with almost nobody actually knowing who they were!", "website": "", "subreddit": "/r/weebklubben", "center": [1483.5, 125.5], "path": [[1475.5, 135.5], [1491.5, 135.5], [1490.5, 115.5], [1478.5, 114.5]]}, -{"id": "twrw0l", "submitted_by": "HobbylosUwU", "name": "Grundgesetz", "description": "The Basic Law for the Federal Republic of Germany is the constitution of the Federal Republic of Germany. The West German Constitution was approved in Bonn on 8 May 1949 and came into effect on 23 May after having been approved by the occupying western Allies of World War II on 12 May.", "website": "https://en.wikipedia.org/wiki/Basic_Law_for_the_Federal_Republic_of_Germany", "subreddit": "/r/placeDE", "center": [1680.5, 1146.5], "path": [[1669.5, 1128.5], [1669.5, 1164.5], [1692.5, 1164.5], [1691.5, 1127.5]]}, -{"id": "twrvxl", "submitted_by": "BlupMcBubbles", "name": "Flemish and Walloons together", "description": "A chimeric breeding of the Flemish and Walloon blasons, respectively a black lions with red claws (up) and a red rooster (down)", "website": "", "subreddit": "", "center": [1308.5, 1260.5], "path": [[1285.5, 1236.5], [1331.5, 1236.5], [1332.5, 1283.5], [1285.5, 1283.5]]}, -{"id": "twrvuv", "submitted_by": "BonusBoys", "name": "Michael Schumacher's helmet", "description": "A helmet based on the helmet design of the great Formula 1 driver Michael Schumacher, who is only one of two drivers to win seven World Drivers Championship titles.", "website": "https://en.wikipedia.org/wiki/Michael_Schumacher", "subreddit": "/r/placeDE, /r/formula1", "center": [549.5, 833.5], "path": [[542.5, 837.5], [542.5, 836.5], [541.5, 835.5], [541.5, 831.5], [542.5, 830.5], [543.5, 829.5], [544.5, 828.5], [546.5, 828.5], [554.5, 827.5], [554.5, 828.5], [555.5, 829.5], [556.5, 830.5], [556.5, 832.5], [557.5, 833.5], [557.5, 837.5], [556.5, 838.5], [543.5, 838.5]]}, -{"id": "twrvna", "submitted_by": "wildhoover", "name": "Nina en Nijntje", "description": "Nina en Nijntje (Melanie and Miffy in English). Nijntje is the main character in the childrens picture books written and drawn by Dick Bruna.", "website": "https://www.nijntje.nl/", "subreddit": "/r/PlaceNL", "center": [790.5, 22.5], "path": [[769.5, 35.5], [811.5, 35.5], [812.5, 34.5], [813.5, 34.5], [815.5, 32.5], [815.5, 30.5], [813.5, 28.5], [812.5, 28.5], [812.5, 23.5], [811.5, 22.5], [814.5, 19.5], [814.5, 18.5], [815.5, 17.5], [815.5, 14.5], [813.5, 12.5], [812.5, 12.5], [811.5, 13.5], [810.5, 13.5], [808.5, 15.5], [808.5, 16.5], [807.5, 17.5], [807.5, 18.5], [806.5, 18.5], [807.5, 17.5], [807.5, 15.5], [808.5, 14.5], [808.5, 12.5], [806.5, 10.5], [798.5, 10.5], [794.5, 6.5], [793.5, 6.5], [792.5, 5.5], [788.5, 5.5], [787.5, 6.5], [786.5, 6.5], [782.5, 10.5], [774.5, 10.5], [773.5, 11.5], [772.5, 12.5], [772.5, 14.5], [773.5, 15.5], [773.5, 17.5], [774.5, 18.5], [773.5, 18.5], [773.5, 17.5], [772.5, 16.5], [772.5, 15.5], [770.5, 13.5], [769.5, 13.5], [768.5, 12.5], [767.5, 12.5], [765.5, 14.5], [765.5, 17.5], [766.5, 18.5], [766.5, 19.5], [769.5, 22.5], [768.5, 23.5], [768.5, 28.5], [767.5, 28.5], [765.5, 30.5], [765.5, 32.5], [767.5, 34.5], [768.5, 34.5], [769.5, 35.5]]}, -{"id": "twrvcx", "submitted_by": "Melter30", "name": "Donnersdachs", "description": "Similar to the Mittwochfrosch, this is a way for German subreddits to celebrate Thursdays.", "website": "", "subreddit": "/r/placeDE", "center": [1004.5, 1158.5], "path": [[999.5, 1149.5], [999.5, 1147.5], [1000.5, 1147.5], [1000.5, 1145.5], [1001.5, 1146.5], [1001.5, 1143.5], [1000.5, 1142.5], [1000.5, 1141.5], [1001.5, 1140.5], [1002.5, 1140.5], [1003.5, 1141.5], [1004.5, 1142.5], [1007.5, 1142.5], [1008.5, 1141.5], [1009.5, 1140.5], [1011.5, 1140.5], [1012.5, 1141.5], [1012.5, 1142.5], [1010.5, 1144.5], [1010.5, 1146.5], [1011.5, 1146.5], [1011.5, 1147.5], [1013.5, 1149.5], [1013.5, 1151.5], [1014.5, 1151.5], [1013.5, 1168.5], [1012.5, 1169.5], [1010.5, 1170.5], [1006.5, 1170.5], [1002.5, 1170.5], [1001.5, 1169.5], [1000.5, 1168.5], [1000.5, 1169.5], [1001.5, 1171.5], [1002.5, 1172.5], [1002.5, 1174.5], [1001.5, 1174.5], [1000.5, 1175.5], [993.5, 1175.5], [992.5, 1173.5], [992.5, 1172.5], [993.5, 1172.5], [995.5, 1171.5], [996.5, 1170.5], [995.5, 1169.5], [995.5, 1165.5], [994.5, 1165.5], [994.5, 1163.5], [993.5, 1163.5], [993.5, 1158.5], [994.5, 1158.5], [995.5, 1159.5], [995.5, 1162.5], [995.5, 1162.5], [996.5, 1162.5], [997.5, 1162.5], [997.5, 1161.5], [998.5, 1159.5], [999.5, 1159.5], [999.5, 1155.5], [1000.5, 1154.5], [1001.5, 1153.5], [1002.5, 1152.5], [1001.5, 1151.5], [1000.5, 1151.5], [999.5, 1150.5]]}, -{"id": "twruuv", "submitted_by": "cucumbersomesalad", "name": "Hachubby", "description": "HAchubby is a Twitch variety streamer. She won the Pepega streamer and IRL streamer of the year awards in 2021.", "website": "https://www.twitch.tv/hachubby", "subreddit": "/r/HAchubby", "center": [645.5, 1053.5], "path": [[624.5, 1038.5], [666.5, 1038.5], [666.5, 1068.5], [625.5, 1068.5], [624.5, 1038.5]]}, -{"id": "twrura", "submitted_by": "Apeirocell", "name": "Celeste Crystal Heart", "description": "This is a crystal heart, a collectible item from the indie platformer game Celeste.", "website": "https://celestegame.com/", "subreddit": "/r/celestegame", "center": [1660.5, 557.5], "path": [[1663.5, 550.5], [1666.5, 550.5], [1668.5, 552.5], [1668.5, 559.5], [1660.5, 565.5], [1659.5, 565.5], [1652.5, 558.5], [1651.5, 552.5], [1653.5, 551.5], [1656.5, 551.5], [1659.5, 553.5], [1660.5, 553.5]]}, -{"id": "twruoq", "submitted_by": "IenjoyPineapplepizza", "name": "Robocraft", "description": "Robocraft is an online vehicular combat game developed and published by Freejam Games. The game allows players to build various functional vehicles with basic block-based parts, such as cubes and wheels, along with weapons for combat against other players.", "website": "", "subreddit": "/r/robocraft", "center": [1921.5, 254.5], "path": [[1905.5, 268.5], [1905.5, 240.5], [1938.5, 241.5], [1938.5, 268.5]]}, -{"id": "twruha", "submitted_by": "Liixsh", "name": "The Beheaded from Dead Cells", "description": "The Beheaded, also known as The Prisoner or The Fallen One, is the protagonist of the indiegame roguelite 'Dead Cells'. A couple of other monsters and items from the game can be seen as small pixel art.", "website": "https://dead-cells.com/", "subreddit": "/r/deadcells", "center": [272.5, 1479.5], "path": [[250.5, 1444.5], [295.5, 1444.5], [295.5, 1485.5], [293.5, 1485.5], [293.5, 1515.5], [250.5, 1515.5], [250.5, 1444.5]]}, -{"id": "twruey", "submitted_by": "wildhoover", "name": "Erasmusbrug, Rotterdam", "description": "Bridge over the New Maas in the centre of Rotterdam.", "website": "", "subreddit": "", "center": [1574.5, 16.5], "path": [[1566.5, 38.5], [1600.5, 0.5], [1567.5, 1.5], [1562.5, 9.5], [1557.5, 37.5], [1560.5, 38.5]]}, -{"id": "twru9g", "submitted_by": "GLUE_COLLUSION", "name": "C418", "description": "Logo for electronic musician C418, known for the Minecraft soundtrack.", "website": "https://c418.org", "subreddit": "/r/c418", "center": [78.5, 996.5], "path": [[64.5, 992.5], [64.5, 1000.5], [91.5, 1000.5], [91.5, 992.5]]}, -{"id": "twru7o", "submitted_by": "untitleXYZ", "name": "The Fairy Tail Emblem", "description": "The emblem of the Fairy Tail guild in the anime & manga series Fairy Tail.", "website": "https://fairytail.fandom.com/wiki/Main_Page", "subreddit": "/r/fairytail", "center": [1571.5, 1093.5], "path": [[1570.5, 1081.5], [1562.5, 1088.5], [1564.5, 1095.5], [1567.5, 1097.5], [1562.5, 1106.5], [1579.5, 1099.5], [1580.5, 1082.5], [1576.5, 1085.5], [1570.5, 1082.5]]}, -{"id": "twru2a", "submitted_by": "ReloadedMichi", "name": "Cologne Cathedral", "description": "The famous cathedral in Cologne near the Rhine.", "website": "https://en.wikipedia.org/wiki/Cologne_Cathedral", "subreddit": "/r/placeDE", "center": [580.5, 1153.5], "path": [[564.5, 1173.5], [564.5, 1156.5], [565.5, 1156.5], [565.5, 1137.5], [571.5, 1124.5], [577.5, 1138.5], [577.5, 1157.5], [578.5, 1155.5], [579.5, 1153.5], [580.5, 1152.5], [582.5, 1154.5], [583.5, 1157.5], [583.5, 1138.5], [589.5, 1124.5], [595.5, 1139.5], [595.5, 1156.5], [596.5, 1156.5], [596.5, 1173.5]]}, -{"id": "twru0g", "submitted_by": "Melter30", "name": "Bremer Stadtmusikanten", "description": "Those are the protagonists of a famous German fairy tale which features (from bottom) a donkey, a dog, a cat and a cock.", "website": "https://en.wikipedia.org/wiki/Town_Musicians_of_Bremen", "subreddit": "/r/placeDE", "center": [1542.5, 1155.5], "path": [[1533.5, 1171.5], [1533.5, 1170.5], [1534.5, 1169.5], [1535.5, 1168.5], [1535.5, 1162.5], [1534.5, 1161.5], [1531.5, 1161.5], [1530.5, 1162.5], [1528.5, 1162.5], [1527.5, 1161.5], [1527.5, 1159.5], [1528.5, 1158.5], [1528.5, 1157.5], [1528.5, 1156.5], [1529.5, 1155.5], [1529.5, 1154.5], [1529.5, 1153.5], [1530.5, 1152.5], [1531.5, 1153.5], [1532.5, 1152.5], [1532.5, 1149.5], [1533.5, 1149.5], [1536.5, 1146.5], [1536.5, 1145.5], [1537.5, 1144.5], [1539.5, 1142.5], [1538.5, 1141.5], [1538.5, 1139.5], [1537.5, 1138.5], [1538.5, 1137.5], [1539.5, 1136.5], [1541.5, 1136.5], [1541.5, 1138.5], [1542.5, 1139.5], [1543.5, 1138.5], [1544.5, 1137.5], [1546.5, 1137.5], [1546.5, 1138.5], [1547.5, 1139.5], [1547.5, 1142.5], [1546.5, 1143.5], [1546.5, 1144.5], [1547.5, 1145.5], [1548.5, 1146.5], [1548.5, 1149.5], [1549.5, 1149.5], [1550.5, 1148.5], [1551.5, 1149.5], [1551.5, 1150.5], [1549.5, 1152.5], [1549.5, 1156.5], [1550.5, 1157.5], [1551.5, 1157.5], [1556.5, 1162.5], [1556.5, 1165.5], [1556.5, 1166.5], [1555.5, 1166.5], [1555.5, 1165.5], [1554.5, 1165.5], [1553.5, 1165.5], [1553.5, 1171.5], [1548.5, 1171.5], [1548.5, 1170.5], [1549.5, 1169.5], [1549.5, 1167.5], [1548.5, 1167.5], [1548.5, 1166.5], [1547.5, 1165.5], [1539.5, 1165.5], [1539.5, 1166.5], [1538.5, 1167.5], [1538.5, 1168.5], [1537.5, 1169.5], [1537.5, 1170.5], [1536.5, 1171.5]]}, -{"id": "twrtqg", "submitted_by": "Tstz", "name": "r/MinecraftMemes", "description": "Subreddit icon for r/MinecraftMemes.", "website": "", "subreddit": "/r/MinecraftMemes", "center": [1138.5, 1345.5], "path": [[1132.5, 1339.5], [1132.5, 1351.5], [1143.5, 1351.5], [1143.5, 1339.5]]}, -{"id": "twrto4", "submitted_by": "BlupMcBubbles", "name": "Cyclists", "description": "The Netherlands might be the bicycles country, Belgium and especially Flemishes are proud of their cyclism palmares as Belgium is by far the country that won the cyclism world championship the most.", "website": "", "subreddit": "", "center": [1316.5, 1515.5], "path": [[1300.5, 1465.5], [1333.5, 1466.5], [1332.5, 1566.5], [1301.5, 1567.5]]}, -{"id": "twrtn7", "submitted_by": "eXernox", "name": "LEMMiNO", "description": "Logo representing a Sweadish YouTuber/animator/musician David Wångstedt", "website": "https://www.lemmi.no/", "subreddit": "/r/LEMMiNO", "center": [1597.5, 255.5], "path": [[1590.5, 249.5], [1603.5, 249.5], [1603.5, 261.5], [1590.5, 261.5], [1590.5, 249.5]]}, -{"id": "twrtmq", "submitted_by": "CelerySilent7734", "name": "猫又おかゆ (Nekomata Okayu)", "description": "猫又おかゆ (Nekomata Okayu) is a Japanese VTuber from Hololive GAMERS. Her representative emoji is an onigiri (rice ball) since she used to live with an old lady in a rice ball store, and her fans are called the Onigirya (the Rice Balls).\n\nThis picture was originally larger, but was downsized due to disagreements and increasing demands from Bolivia.", "website": "https://www.youtube.com/channel/UCvaTdHTWBGv3MKj3KVqJVCw", "subreddit": "/r/okbuddyhololive, /r/Hololive", "center": [1352.5, 1186.5], "path": [[1332.5, 1200.5], [1332.5, 1173.5], [1333.5, 1173.5], [1333.5, 1172.5], [1340.5, 1172.5], [1340.5, 1170.5], [1344.5, 1170.5], [1344.5, 1171.5], [1345.5, 1171.5], [1345.5, 1172.5], [1350.5, 1172.5], [1351.5, 1172.5], [1351.5, 1171.5], [1352.5, 1171.5], [1352.5, 1170.5], [1352.5, 1171.5], [1353.5, 1171.5], [1353.5, 1172.5], [1358.5, 1172.5], [1358.5, 1171.5], [1365.5, 1171.5], [1365.5, 1173.5], [1365.5, 1172.5], [1366.5, 1172.5], [1372.5, 1172.5], [1372.5, 1200.5], [1352.5, 1200.5], [1333.5, 1200.5]]}, -{"id": "twu3qx", "submitted_by": "liassimonmeiske", "name": "Whitepod Alliance", "description": "Alliance of seven small artworks that fought against the void together.", "website": "", "subreddit": "", "center": [1091.5, 1230.5], "path": [[1084.5, 1178.5], [1097.5, 1178.5], [1099.5, 1279.5], [1084.5, 1278.5], [1083.5, 1278.5], [1083.5, 1279.5], [1083.5, 1279.5]]}, -{"id": "twu3pr", "submitted_by": "GoJoeyGo123", "name": "iJevin", "description": "", "website": "https://www.youtube.com/channel/UCrEtZMErQXaSYy_JDGoU5Qw", "subreddit": "/r/hermitcraft", "center": [865.5, 611.5], "path": [[860.5, 607.5], [869.5, 607.5], [869.5, 615.5], [860.5, 615.5]]}, -{"id": "twu3n6", "submitted_by": "Wheel_b0y", "name": "Aston Villa Football Club", "description": "Aston Villa Football Club is an English professional football club based in Aston, Birmingham. Founded in 1874, Aston Villa are one of the five English clubs to have won the European Cup, in 1981–82.", "website": "", "subreddit": "/r/avfc", "center": [631.5, 1701.5], "path": [[620.5, 1684.5], [643.5, 1685.5], [643.5, 1718.5], [619.5, 1717.5], [619.5, 1715.5]]}, -{"id": "twu3mu", "submitted_by": "Pelag", "name": "fsociety (Mr. Robot)", "description": "The FSOCIETY logo, taken from the great TV show MR. ROBOT.", "website": "", "subreddit": "/r/MrRobot", "center": [208.5, 257.5], "path": [[175.5, 252.5], [175.5, 262.5], [239.5, 263.5], [239.5, 252.5], [175.5, 252.5], [175.5, 262.5]]}, -{"id": "twu3ln", "submitted_by": "SlimsyMuffin", "name": "D-Cell Logo", "description": "Logo of the indie game development studio D-Cell, developers of the rhythm game UNBEATABLE. This is the final result of many attempts to get Quaver (a character from UNBEATABLE) onto r/place.", "website": "https://unbeatablegame.com/", "subreddit": "/r/unbeatable", "center": [1371.5, 1284.5], "path": [[1361.5, 1279.5], [1380.5, 1279.5], [1380.5, 1289.5], [1361.5, 1289.5]]}, -{"id": "twu3cz", "submitted_by": "HerrCrazi", "name": "ISEN", "description": "Logo of the French engineering school ISEN (Institut Supérieur de l'Électronique et du Numérique).nMade by students of the ISEN Brest campus.", "website": "https://www.isen.fr/", "subreddit": "", "center": [1868.5, 47.5], "path": [[1859.5, 44.5], [1876.5, 44.5], [1876.5, 49.5], [1859.5, 49.5]]}, -{"id": "twu3ab", "submitted_by": "Sissy-chan", "name": "Land of the lustrous", "description": "", "website": "", "subreddit": "", "center": [1576.5, 500.5], "path": [[1591.5, 534.5], [1562.5, 534.5], [1562.5, 466.5], [1590.5, 466.5]]}, -{"id": "twu335", "submitted_by": "Phephelive", "name": "Fleur de Ponce", "description": "A french streamer who loves flower.", "website": "https://www.twitch.tv/ponce/", "subreddit": "", "center": [276.5, 1535.5], "path": [[252.5, 1516.5], [300.5, 1516.5], [302.5, 1555.5], [251.5, 1553.5]]}, -{"id": "twu321", "submitted_by": "BusyElephant", "name": "RIP ZAF", "description": "On the initiative of the french streamer Pierre Lapin in commemoration of his deceased friend Zafinho", "website": "https://www.twitch.tv/pierrelapin", "subreddit": "", "center": [931.5, 1500.5], "path": [[916.5, 1495.5], [916.5, 1505.5], [946.5, 1505.5], [946.5, 1495.5]]}, -{"id": "twu31u", "submitted_by": "donrip", "name": "Ayaka", "description": "Kamisato Ayaka is a character of gacha game Genshin Impact.", "website": "https://genshin-impact.fandom.com/wiki/Kamisato_Ayaka", "subreddit": "/r/AyakaMains", "center": [1138.5, 1555.5], "path": [[1117.5, 1523.5], [1155.5, 1523.5], [1155.5, 1594.5], [1138.5, 1595.5], [1140.5, 1599.5], [1136.5, 1598.5], [1132.5, 1594.5], [1133.5, 1589.5], [1138.5, 1582.5], [1138.5, 1580.5], [1137.5, 1577.5], [1137.5, 1576.5], [1135.5, 1576.5], [1135.5, 1572.5], [1132.5, 1572.5], [1132.5, 1569.5], [1131.5, 1569.5], [1130.5, 1568.5], [1130.5, 1567.5], [1130.5, 1565.5], [1128.5, 1565.5], [1128.5, 1566.5], [1127.5, 1566.5], [1126.5, 1566.5], [1126.5, 1570.5], [1125.5, 1575.5], [1117.5, 1575.5]]}, -{"id": "twu2zj", "submitted_by": "__moritz__", "name": "Satisfactory", "description": "Satisfactory is a factory building game by Coffee Stain Studios.", "website": "https://www.satisfactorygame.com/", "subreddit": "/r/SatisfactoryGame", "center": [459.5, 1836.5], "path": [[427.5, 1829.5], [490.5, 1829.5], [490.5, 1842.5], [427.5, 1842.5]]}, -{"id": "twu2fs", "submitted_by": "Amelot420", "name": "Twenty One Pilots", "description": "Logo of the Band twenty one pilots. Featuring 'Ned' a character from their Music videos", "website": "https://www.twentyonepilots.com", "subreddit": "/r/twentyonepilots", "center": [307.5, 1656.5], "path": [[290.5, 1678.5], [290.5, 1635.5], [299.5, 1635.5], [301.5, 1634.5], [302.5, 1632.5], [303.5, 1631.5], [304.5, 1632.5], [304.5, 1633.5], [310.5, 1633.5], [310.5, 1632.5], [310.5, 1631.5], [311.5, 1631.5], [312.5, 1632.5], [312.5, 1633.5], [313.5, 1634.5], [314.5, 1634.5], [315.5, 1635.5], [324.5, 1635.5], [324.5, 1678.5], [307.5, 1678.5]]}, -{"id": "twu2fj", "submitted_by": "DerSchnitta", "name": "Teddy Fresh", "description": "Clothing brand by Hila and Ethan Klein", "website": "https://teddyfresh.com/", "subreddit": "/r/TeddyFresh", "center": [540.5, 1452.5], "path": [[537.5, 1416.5], [543.5, 1416.5], [543.5, 1486.5], [543.5, 1487.5], [543.5, 1487.5], [537.5, 1487.5], [537.5, 1418.5], [537.5, 1416.5], [537.5, 1416.5]]}, -{"id": "twu20g", "submitted_by": "impossiblybaaf", "name": "Tria.Os", "description": "TRIA.os is a Roblox platforming game made in January 2021. It is similar to the Flood Escape series.", "website": "https://www.roblox.com/games/6311279644/TRIA-os-0-6-1", "subreddit": "/r/place_CentralAlliance", "center": [576.5, 1094.5], "path": [[562.5, 1082.5], [589.5, 1082.5], [589.5, 1105.5], [562.5, 1105.5]]}, -{"id": "twu20b", "submitted_by": "geo_metro", "name": "LWYRUP", "description": "The vanity plate used by Saul Goodman, a sleazy yet surprisingly competent lawyer from Breaking Bad and Better Call Saul.", "website": "", "subreddit": "/r/betterCallSaul", "center": [1143.5, 958.5], "path": [[1133.5, 953.5], [1133.5, 962.5], [1153.5, 962.5], [1153.5, 953.5]]}, -{"id": "twu1rn", "submitted_by": "PratzStrike", "name": "TechyCutie", "description": "Vtuber TechyCutie and her community created this little representation of herself.", "website": "https://www.twitch.tv/techycutie", "subreddit": "", "center": [714.5, 1107.5], "path": [[707.5, 1114.5], [707.5, 1099.5], [720.5, 1099.5], [720.5, 1114.5], [714.5, 1114.5], [707.5, 1114.5]]}, -{"id": "twu1lo", "submitted_by": "Shanksette", "name": "Momo from Love Nikki", "description": "Love Nikki: Dress-Up Queen is the name of the Global version of 奇迹暖暖, the 3rd installment in the Nikki mobile game series, by Chinese studio Papergames.", "website": "https://www.papegames.cn/qjnn/en/", "subreddit": "/r/LoveNikki", "center": [298.5, 1253.5], "path": [[282.5, 1240.5], [302.5, 1240.5], [315.5, 1248.5], [315.5, 1264.5], [282.5, 1264.5]]}, -{"id": "twu1jf", "submitted_by": "Ok_Penalty_1912", "name": "BoJack Horseman", "description": "BoJack Horseman is an adult animated series on Netflix, created by Raphael Bob-Waksberg. Set primarily in Hollywood (renamed to Hollywoo shortly into season one), the series surrounds an anthropomorphic horse named BoJack Horseman (Will Arnett), the washed-up star of a 1990s sitcom who plans his return to celebrity relevance with an autobiography to be written by ghostwriter Diane Nguyen (Allison Brie).", "website": "https://en.wikipedia.org/wiki/BoJack_Horseman", "subreddit": "", "center": [1530.5, 1396.5], "path": [[1515.5, 1358.5], [1515.5, 1359.5], [1514.5, 1359.5], [1514.5, 1360.5], [1513.5, 1360.5], [1513.5, 1361.5], [1510.5, 1361.5], [1510.5, 1366.5], [1505.5, 1366.5], [1505.5, 1401.5], [1507.5, 1401.5], [1507.5, 1416.5], [1506.5, 1416.5], [1506.5, 1429.5], [1534.5, 1429.5], [1534.5, 1428.5], [1533.5, 1428.5], [1533.5, 1423.5], [1534.5, 1423.5], [1534.5, 1421.5], [1535.5, 1421.5], [1535.5, 1420.5], [1538.5, 1420.5], [1538.5, 1419.5], [1539.5, 1419.5], [1542.5, 1419.5], [1542.5, 1420.5], [1543.5, 1420.5], [1543.5, 1421.5], [1544.5, 1421.5], [1544.5, 1424.5], [1545.5, 1424.5], [1545.5, 1426.5], [1546.5, 1426.5], [1546.5, 1429.5], [1556.5, 1429.5], [1556.5, 1422.5], [1560.5, 1422.5], [1560.5, 1416.5], [1563.5, 1416.5], [1563.5, 1397.5], [1559.5, 1397.5], [1558.5, 1397.5], [1558.5, 1396.5], [1557.5, 1396.5], [1557.5, 1395.5], [1556.5, 1395.5], [1556.5, 1394.5], [1555.5, 1394.5], [1555.5, 1393.5], [1554.5, 1393.5], [1554.5, 1392.5], [1553.5, 1392.5], [1553.5, 1391.5], [1552.5, 1391.5], [1552.5, 1389.5], [1551.5, 1389.5], [1551.5, 1388.5], [1550.5, 1388.5], [1549.5, 1388.5], [1549.5, 1387.5], [1549.5, 1370.5], [1541.5, 1370.5], [1538.5, 1370.5], [1538.5, 1358.5], [1515.5, 1358.5]]}, -{"id": "twu16a", "submitted_by": "Prudent-Ad5308", "name": "Daft Punk x PNL", "description": "This art is a mix between PNL's album 'Deux frères' and Daft Punk's masks. These two artists are the biggest singer duo in the France music history.\n\nThis artwork was created by Theorus.", "website": "https://twitter.com/Theorus_/status/1258019551373078530?s=20&t=pnJVLlbcZYczhxrB9DaFlQ", "subreddit": "/r/PlaceFrance", "center": [207.5, 1606.5], "path": [[170.5, 1639.5], [244.5, 1640.5], [245.5, 1620.5], [242.5, 1616.5], [244.5, 1609.5], [242.5, 1593.5], [244.5, 1587.5], [241.5, 1581.5], [236.5, 1580.5], [228.5, 1571.5], [216.5, 1566.5], [197.5, 1566.5], [189.5, 1571.5], [182.5, 1573.5], [179.5, 1575.5], [176.5, 1575.5], [173.5, 1580.5], [174.5, 1582.5], [173.5, 1587.5], [171.5, 1592.5], [170.5, 1595.5], [170.5, 1611.5], [173.5, 1618.5], [170.5, 1622.5], [170.5, 1623.5], [170.5, 1637.5]]}, -{"id": "twu0fl", "submitted_by": "GoJoeyGo123", "name": "ZombieCleo", "description": "", "website": "https://www.youtube.com/channel/UCjI5qxhtyv3srhWr60HemRw", "subreddit": "/r/hermitcraft", "center": [865.5, 619.5], "path": [[860.5, 615.5], [869.5, 615.5], [869.5, 623.5], [860.5, 623.5]]}, -{"id": "twu07j", "submitted_by": "Eclipsed_Luna", "name": "Agender mini-flag", "description": "A mini agender pride flag.\nAgender, also known as genderless, is an identity to describe someone that entirely lacks a gender or with complete genderlessness. It falls under the non-binary umbrella in which one is not male, female, neutral, xenic, outherine, or any other gender. They may identify most strongly as just an individual, rather than as any given gender.", "website": "https://lgbta.miraheze.org/wiki/Agender", "subreddit": "/r/PlacePride", "center": [461.5, 637.5], "path": [[457.5, 634.5], [457.5, 640.5], [465.5, 640.5], [465.5, 634.5], [457.5, 634.5]]}, -{"id": "twtzyg", "submitted_by": "shoessurent", "name": "Wakfu logo", "description": "logo of the french mmorpg Wakfu", "website": "https://www.wakfu.com/fr/prehome", "subreddit": "", "center": [1188.5, 1959.5], "path": [[1200.5, 1948.5], [1181.5, 1948.5], [1176.5, 1954.5], [1176.5, 1970.5], [1200.5, 1970.5]]}, -{"id": "twtzvo", "submitted_by": "DerSchnitta", "name": "H3H3 Productions Logo", "description": "", "website": "https://www.youtube.com/user/h3h3Productions", "subreddit": "/r/h3h3productions", "center": [831.5, 565.5], "path": [[813.5, 548.5], [848.5, 548.5], [848.5, 581.5], [813.5, 581.5], [813.5, 548.5]]}, -{"id": "twtzqr", "submitted_by": "PratzStrike", "name": "ironmouseNyanhug", "description": "This is pixel art of Ironmouse's Twitch emote 'ironmouseNyanhug', where she's hugging fellow Vshojo member Nyanners. This art was a tribute to Ironmouse after she helped the Hololive and VTuber community multiple times against streamers' attacks.", "website": "https://www.twitch.tv/ironmouse", "subreddit": "/r/ironmouse, /r/vshojo", "center": [1427.5, 979.5], "path": [[1451.5, 959.5], [1451.5, 999.5], [1403.5, 999.5], [1403.5, 959.5], [1428.5, 959.5], [1451.5, 959.5]]}, -{"id": "twtzp6", "submitted_by": "greese1", "name": "Fish Cult tank 2 below", "description": "a team of people dedicated to making fish on r/place", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1437.5, 954.5], "path": [[1420.5, 949.5], [1420.5, 950.5], [1421.5, 951.5], [1422.5, 952.5], [1423.5, 953.5], [1423.5, 955.5], [1422.5, 956.5], [1422.5, 957.5], [1423.5, 958.5], [1423.5, 959.5], [1451.5, 959.5], [1451.5, 949.5], [1420.5, 949.5]]}, -{"id": "twtzgx", "submitted_by": "rockmeu18", "name": "Todd (Cleaning Simulator)", "description": "Todd, from the roblox game Cleaning Simulator.", "website": "https://www.roblox.com/games/818287233/Cleaning-Simulator", "subreddit": "", "center": [1302.5, 560.5], "path": [[1294.5, 567.5], [1297.5, 553.5], [1306.5, 551.5], [1308.5, 555.5], [1308.5, 565.5], [1307.5, 567.5]]}, -{"id": "fauinf", "submitted_by": "FactoryRatte", "name": "FAU Informatik (Computer Science)", "description": "Logo of the Department for Computer Science at the Friedrich Alexander University Erlangen/Nürnberg. Built and defended in alliance with the KIT (Karlsruher Institute for Technology), which was coordinated over Discord embassies. The different backgrounds highlight the university logo followed by the INF, short for german Informatik, which means Computer Science in english.", "website": "https://cs.fau.de", "subreddit": "/r/FAU_university", "center": [757.5, 534.5], "path": [[753.5, 521.5], [753.5, 547.5], [760.5, 547.5], [760.5, 521.5]]}, -{"id": "twtyja", "submitted_by": "Mazork", "name": "Enter The Gungeon", "description": "A dungeon crawling roguelike developed by Dodge Roll Games and published by Devolver Digital.", "website": "https://enterthegungeon.com/", "subreddit": "/r/enterthegungeon", "center": [211.5, 325.5], "path": [[203.5, 309.5], [203.5, 316.5], [169.5, 316.5], [169.5, 329.5], [201.5, 329.5], [204.5, 335.5], [203.5, 343.5], [237.5, 343.5], [237.5, 309.5], [203.5, 309.5]]}, -{"id": "twtydi", "submitted_by": "Exynth1a", "name": "Millie Parfait", "description": "Made by mainly r/Philippines, this pixel art is dedicated to Filipino VTuber Millie Parfait, from Nijisanji EN.", "website": "https://www.youtube.com/channel/UC47rNmkDcNgbOcM-2BwzJTQ", "subreddit": "/r/Philippines, /r/Nijisanji", "center": [456.5, 1670.5], "path": [[457.5, 1666.5], [454.5, 1666.5], [453.5, 1667.5], [452.5, 1668.5], [452.5, 1671.5], [454.5, 1672.5], [455.5, 1673.5], [456.5, 1674.5], [459.5, 1674.5], [460.5, 1672.5], [460.5, 1671.5], [460.5, 1669.5], [460.5, 1668.5], [459.5, 1667.5], [454.5, 1667.5], [454.5, 1667.5], [453.5, 1667.5]]}, -{"id": "twtyda", "submitted_by": "Oofio128", "name": "Bratishkinoff", "description": "Fan art of the Russian streamer 'Bratishkinoff'.\n \nInitially, there existed a tenuous alliance between this art and 'The Blue Corner', with both sides encroached on each other's territory frequently early on in the event. However, over time peace would form between these two groups, creating the static borders that would be shown here.", "website": "https://twitch.tv/bratishkinoff", "subreddit": "", "center": [1845.5, 1934.5], "path": [[1775.5, 1868.5], [1916.5, 1868.5], [1916.5, 1999.5], [1775.5, 2000.5]]}, -{"id": "twty95", "submitted_by": "ludicrouscacophony", "name": "Yonsei University", "description": "Yonsei University (연세대학교) is located in Seoul, South Korea. Students coordinated through Kakaotalk and Everytime to create the logo.", "website": "https://www.yonsei.ac.kr/en_sc/index.jsp", "subreddit": "", "center": [1742.5, 1105.5], "path": [[1735.5, 1105.5], [1735.5, 1105.5], [1731.5, 1091.5], [1743.5, 1091.5], [1743.5, 1090.5], [1753.5, 1090.5], [1753.5, 1120.5], [1731.5, 1120.5], [1731.5, 1093.5]]}, -{"id": "twty78", "submitted_by": "Killian_Neverstar", "name": "Quin69 (Streamer)", "description": "Twitch streamer Quin69 got his Twitch chat to create a sheep emote from his channel and a clown pepe under it. The name Cheese is from one of the streamers mods called CheesepuffTZ who passed away and was loved by the community", "website": "https://www.twitch.tv/quin69", "subreddit": "/r/quin69", "center": [435.5, 1906.5], "path": [[419.5, 1881.5], [448.5, 1881.5], [448.5, 1936.5], [432.5, 1936.5], [430.5, 1919.5], [419.5, 1919.5], [419.5, 1881.5]]}, -{"id": "twty5y", "submitted_by": "-Nyctalope-", "name": "RLBot", "description": "A Rocket League mod to enable offline bots.nnRocket League is a game where you play football with cars.", "website": "https://rlbot.org/", "subreddit": "/r/RocketLeagueBots", "center": [1342.5, 508.5], "path": [[1333.5, 499.5], [1331.5, 501.5], [1331.5, 502.5], [1332.5, 503.5], [1332.5, 507.5], [1333.5, 508.5], [1333.5, 511.5], [1333.5, 511.5], [1334.5, 513.5], [1335.5, 515.5], [1339.5, 519.5], [1341.5, 520.5], [1344.5, 520.5], [1350.5, 515.5], [1351.5, 513.5], [1352.5, 511.5], [1352.5, 508.5], [1353.5, 507.5], [1353.5, 502.5], [1351.5, 500.5], [1348.5, 500.5], [1347.5, 499.5], [1333.5, 499.5], [1331.5, 501.5]]}, -{"id": "twty4j", "submitted_by": "TheNarcolepticOne", "name": "Seattle University", "description": "Logo of Seattle University, a Catholic university based in Seattle WA, USA", "website": "https://www.seattleu.edu/", "subreddit": "/r/seattleu", "center": [1771.5, 573.5], "path": [[1766.5, 567.5], [1775.5, 567.5], [1775.5, 578.5], [1766.5, 578.5], [1766.5, 567.5]]}, -{"id": "twty49", "submitted_by": "hkzk", "name": "Roblox Deepwoken - Blindseer Oath Symbol.", "description": "Oaths are a unique variety of Talent Cards that players can obtain in the ROBLOX game, Deepwoken. In this case, the Blindseer Oath requires the player to have Willpower 40 and all five Mental Fortress Talents. This Oath grants the player one Support Mantra Card slot, one Wildcard Mantra Slot, three Health and ten Sanity. This Oath also grants the players full vision and increased brightness while wearing a Blindfold. Blindseer appears as an eye in front of the player's Blindfold. For Vesperians, their mask can be seen engraved with a gold eye. While you gain full vision, you still benefit from the positives effects of Blinded, namely the sanity bonus and the immunity to blinding mantras. (Source: The Deepwoken Wiki)", "website": "https://www.roblox.com/games/4111023553/Deepwoken", "subreddit": "/r/Deepwoken", "center": [428.5, 1363.5], "path": [[417.5, 1355.5], [417.5, 1371.5], [439.5, 1371.5], [439.5, 1355.5], [417.5, 1355.5]]}, -{"id": "twty2q", "submitted_by": "ceriisou", "name": "Stardew Valley", "description": "Some Stardew Valley references : a pixel art of Concerned Ape's logo (developer of the game), an ancient fruit, the Mayor's Short (a famous quest and easter egg in the game), a Mermaid's pendant (stuff you have to use to marry someone in the game), a pufferfish and a cow from the game", "website": "", "subreddit": "/r/stardewvalley", "center": [1738.5, 1062.5], "path": [[1708.5, 1043.5], [1708.5, 1081.5], [1768.5, 1082.5], [1768.5, 1043.5], [1708.5, 1043.5]]}, -{"id": "twtxky", "submitted_by": "FassyDassy", "name": "kozolec (hayrack)", "description": "KOzolec (a hayrack) is a building that is found in most of the Slovenian villages. They are mostly made out of wood and their purpose is storing and drying hay", "website": "https://www.trekearth.com/gallery/Europe/Slovenia/West/Gorenjska/Knape/photo267186.htm", "subreddit": "/r/Slovenia", "center": [226.5, 881.5], "path": [[220.5, 875.5], [234.5, 875.5], [234.5, 887.5], [220.5, 887.5], [218.5, 883.5]]}, -{"id": "twtxkj", "submitted_by": "Effective_Tangerine5", "name": "Miyu (Blue Archive)", "description": "Miyu from the mobile game Blue Archive. Multiple streamers have raided the piece and the area in the past. A streamer at the time of this photo proceeded to invade the area at 16:44, with the BA community making haste in repelling the invading forces. The Void intervened, covering the whole area in black. At 16:45 it was seen that the streamer went offline, giving the BA community little time left to rebuild the piece and the area.\n\nRaids survived: 3\nFirst raid: April 4, 2022\nTime: 19:47\nRaid intensity: Minor\nThe community presumes that the invaders were minor bots.\n\nSecond raid: April 4, 2022\nTime: 20:40-20\nRaid intensity: Powerful\nA streamer invaded top side of the Miyu border in which the community were struggling to build its borders back due to the sheer manpower of the invading forces, with rogue users directly invading Miyu. The community in Discord servers were up in arms and were doing the best they could, barely forming the silhouette of the character. By this time the raid even got more powerful, but later stopped, giving the community the time to rebuild again.\n\nThird raid: April 5, 2022\nTime: 16:45 - 16:50\nRaid intensity: Powerful\nA streamer directly invaded the areas of Miyu, staining the colors of the blue and grey to a very obnoxious orange and white. At this time the Blue Archive community made hastened to defend as much of an area as possible, but the streamer was slowly enveloping the area because of manpower, until the Void intervened and covered the area with black, causing nothing but rebelling pixels to surface, to drown again. This gave the Blue Archive community the opportunity to rebuild what's left of Miyu, with some even giving thanks to the Void for destroying the invading forces.", "website": "https://www.reddit.com/r/BlueArchive/", "subreddit": "/r/BlueArchive, /r/MaiMai, /r/LPOTL", "center": [39.5, 968.5], "path": [[16.5, 945.5], [62.5, 944.5], [62.5, 992.5], [16.5, 992.5]]}, -{"id": "twtwwo", "submitted_by": "Glad-Introduction-22", "name": "Territorial.io logo", "description": "Territorial.io, made by David Tschacher, is an online indie .io game about conquering land and fighting other people in various game modes. It has a Instagram account and a Discord server with nearly 15k people.", "website": "https://territorial.io", "subreddit": "/r/territorial_io", "center": [306.5, 1887.5], "path": [[301.5, 1882.5], [310.5, 1882.5], [310.5, 1891.5], [301.5, 1891.5]]}, -{"id": "twtwq6", "submitted_by": "Deano3607", "name": "Castle Crashers", "description": "Castle Crashers is a 2D indie-game style hack-and-slash video game", "website": "https://store.steampowered.com/app/204360/Castle_Crashers/", "subreddit": "/r/castlecrashers", "center": [1900.5, 88.5], "path": [[1879.5, 73.5], [1921.5, 73.5], [1921.5, 103.5], [1879.5, 103.5], [1879.5, 73.5]]}, -{"id": "twtwky", "submitted_by": "AURAequine", "name": "Spike", "description": "A tiny My Little Pony: Friendship is Magic dragon character. This one is Spike.", "website": "https://mlp.fandom.com/wiki/Spike", "subreddit": "/r/MyLittlePony", "center": [914.5, 1776.5], "path": [[915.5, 1775.5], [914.5, 1775.5], [913.5, 1776.5], [914.5, 1777.5], [915.5, 1777.5]]}, -{"id": "twtwc9", "submitted_by": "ItsFrisbeeTho", "name": "Noisestorm - Crab Rave", "description": "Crab Rave, it was both a meme and a song that gained popularity during 2018 because of its memeable and catchy tunes. It was released in Monstercat Instinct and was composed by Noisestorm. This Pixelart was an idea from someone in the official Discord server of Monstercat named Ava🌸💜", "website": "https://www.youtube.com/watch?v=LDU_Txk06tM", "subreddit": "/r/monstercat", "center": [359.5, 1907.5], "path": [[341.5, 1898.5], [341.5, 1915.5], [377.5, 1915.5], [377.5, 1898.5], [341.5, 1898.5]]}, -{"id": "twtvnc", "submitted_by": "Deano3607", "name": "Escape From Tarkov - Killa", "description": "Escape from Tarkov is a hardcore and realistic online first-person action RPG/Simulator with MMO features and a story-driven walkthrough.nThe drawing shows Killa, a boss within the game who holds out at a local shopping mall.", "website": "https://www.escapefromtarkov.com/", "subreddit": "/r/escapefromtarkov", "center": [1975.5, 464.5], "path": [[1953.5, 469.5], [1953.5, 458.5], [1956.5, 451.5], [1958.5, 447.5], [1963.5, 443.5], [1968.5, 441.5], [1981.5, 441.5], [1987.5, 443.5], [1991.5, 447.5], [1995.5, 453.5], [1997.5, 457.5], [1998.5, 461.5], [1998.5, 480.5], [1978.5, 481.5], [1977.5, 490.5], [1966.5, 490.5], [1965.5, 486.5], [1961.5, 481.5], [1957.5, 477.5], [1956.5, 474.5], [1955.5, 471.5]]}, -{"id": "twtvld", "submitted_by": "SlimsyMuffin", "name": "Racket Logo", "description": "The logo for the programming language racket. A functional programming language based on lisp, originally called PLT scheme.", "website": "https://racket-lang.org/", "subreddit": "/r/racket", "center": [324.5, 1477.5], "path": [[327.5, 1463.5], [331.5, 1463.5], [338.5, 1467.5], [340.5, 1471.5], [340.5, 1477.5], [340.5, 1478.5], [342.5, 1478.5], [342.5, 1483.5], [338.5, 1483.5], [338.5, 1490.5], [315.5, 1490.5], [315.5, 1485.5], [306.5, 1485.5], [306.5, 1477.5], [308.5, 1470.5], [313.5, 1466.5], [327.5, 1463.5]]}, -{"id": "twtvik", "submitted_by": "em_tsuj_sti", "name": "Terz42", "description": "A head administrator on the r/placeDE Discord. He made tremendous contributions and coordinated the community, organizing large parts of the German artwortks and making sure everything was running smoothly. His name was put here by the community as a thank you, so that it would pop up in the final timelapse.", "website": "https://discord.gg/placeDE", "subreddit": "/r/placeDE", "center": [1855.5, 1129.5], "path": [[1838.5, 1123.5], [1871.5, 1123.5], [1871.5, 1135.5], [1838.5, 1135.5]]}, -{"id": "twtvg0", "submitted_by": "Wishark", "name": "Ultimate Chicken Horse", "description": "Ultimate Chicken Horse is a party platformer where you and your friends build the level as you play, placing deadly traps before trying to reach the end of the level. If you can make it but your friends can't, you score points!", "website": "https://www.cleverendeavourgames.com/ultimate-chicken-horse", "subreddit": "/r/ultimatechickenhorse", "center": [314.5, 862.5], "path": [[324.5, 866.5], [303.5, 866.5], [303.5, 865.5], [302.5, 865.5], [302.5, 866.5], [300.5, 866.5], [300.5, 865.5], [298.5, 865.5], [298.5, 863.5], [299.5, 863.5], [299.5, 862.5], [300.5, 862.5], [300.5, 860.5], [301.5, 860.5], [301.5, 859.5], [304.5, 859.5], [304.5, 860.5], [306.5, 860.5], [306.5, 863.5], [305.5, 863.5], [305.5, 866.5], [313.5, 866.5], [313.5, 857.5], [324.5, 857.5]]}, -{"id": "twtv11", "submitted_by": "Intelligent_Ad9470", "name": "Twenty One Pilots", "description": "Twenty One Pilots logo with Ned created by the community of TØP. Ned is a fictional character created by lead singer Tyler Joseph. As stated in an interview, Ned represents Tyler's creativity.", "website": "", "subreddit": "/r/twentyonepilots", "center": [307.5, 1656.5], "path": [[290.5, 1635.5], [290.5, 1678.5], [324.5, 1678.5], [324.5, 1635.5], [315.5, 1635.5], [315.5, 1635.5], [314.5, 1635.5], [312.5, 1634.5], [311.5, 1631.5], [310.5, 1633.5], [304.5, 1633.5], [303.5, 1631.5], [302.5, 1633.5], [302.5, 1634.5], [301.5, 1634.5], [300.5, 1634.5], [300.5, 1635.5], [290.5, 1635.5]]}, -{"id": "twtuvd", "submitted_by": "Pflaumenpueree", "name": "Asexual pride heart", "description": "An asexual (ace) pride heart that was added over the Ace Attorney drawing as a pun.", "website": "", "subreddit": "/r/plAceAttorney, /r/AceAttorney, /r/asexuality, /r/asexual", "center": [1316.5, 85.5], "path": [[1314.5, 83.5], [1313.5, 84.5], [1313.5, 85.5], [1316.5, 88.5], [1319.5, 85.5], [1319.5, 84.5], [1318.5, 83.5], [1317.5, 83.5], [1316.5, 84.5], [1315.5, 83.5], [1314.5, 83.5]]}, -{"id": "twtuv4", "submitted_by": "blueb33", "name": "Bluey", "description": "The blue anthropomorphic dog called 'Bluey' from 'Bluey', a popular and very wholesome Australian children's show featuring a blue heeler family.", "website": "https://www.bluey.tv/", "subreddit": "/r/bluey", "center": [562.5, 525.5], "path": [[561.5, 509.5], [556.5, 505.5], [555.5, 537.5], [550.5, 536.5], [550.5, 539.5], [569.5, 540.5], [568.5, 508.5], [565.5, 506.5], [562.5, 511.5], [557.5, 508.5], [559.5, 507.5], [557.5, 506.5]]}, -{"id": "twtusp", "submitted_by": "zedetsa", "name": "Tintin's moon rocket", "description": "A rocket used by Belgium's Tintin to get to the moon. Seen in the 1953 comic 'Destination Moon'. The background is art deco and inspired by The Great Gatsby. There were plans to change it to an art nouveau background since that's more a Belgian thing, but there was not enough time.", "website": "", "subreddit": "/r/belgium", "center": [1306.5, 801.5], "path": [[1282.5, 774.5], [1332.5, 774.5], [1330.5, 828.5], [1281.5, 830.5]]}, -{"id": "twtule", "submitted_by": "-Katran-", "name": "Borussia Dortmund (BVB 09)", "description": "A mural for the German football club Borussia Dortmund including their badge, the DFB-Pokal they won last year, and their Captain Marco Reus. It survived thanks to our friends Liverpool FC and CraftGalaxy. Echte Liebe.", "website": "https://www.bvb.de/", "subreddit": "/r/borussiadortmund", "center": [1581.5, 1565.5], "path": [[1576.5, 1553.5], [1594.5, 1553.5], [1594.5, 1572.5], [1582.5, 1572.5], [1581.5, 1572.5], [1581.5, 1578.5], [1570.5, 1578.5], [1570.5, 1572.5], [1565.5, 1572.5], [1565.5, 1571.5], [1567.5, 1571.5], [1567.5, 1560.5], [1576.5, 1560.5], [1576.5, 1553.5]]}, -{"id": "twtued", "submitted_by": "Oponik", "name": "JavaScript logo", "description": "May it be back end or front end, It's still cringe", "website": "", "subreddit": "/r/javascript", "center": [306.5, 713.5], "path": [[302.5, 709.5], [310.5, 709.5], [310.5, 717.5], [302.5, 717.5], [302.5, 709.5]]}, -{"id": "twtub0", "submitted_by": "GoJoeyGo123", "name": "Xisumavoid", "description": "The current admin of Hermitcraft and one of the few remaining original members. He doesn't restart the episode numbers of his Hermitcraft series each season and has over 1000 episodes.", "website": "https://www.youtube.com/c/XisumavoidMC", "subreddit": "/r/hermitcraft", "center": [892.5, 603.5], "path": [[887.5, 599.5], [896.5, 599.5], [896.5, 607.5], [887.5, 607.5]]}, -{"id": "twttso", "submitted_by": "CreativeNameIKnow", "name": "999 Nonary Watch", "description": "Features the watch worn by the protagonist of the first game in the Zero Escape series, '9 Hours, 9 Persons, 9 Doors'. It is usually shortened to '999', hence the 3 nines to the right. It is also underrated as HECK so you better check it out.", "website": "https://store.steampowered.com/app/477740/Zero_Escape_The_Nonary_Games/", "subreddit": "/r/ZeroEscape", "center": [7.5, 986.5], "path": [[0.5, 973.5], [16.5, 973.5], [15.5, 994.5], [0.5, 1003.5]]}, -{"id": "twttel", "submitted_by": "-Nyctalope-", "name": "One punch man", "description": "Saitama from the anime One punch man", "website": "", "subreddit": "/r/OnePunchMan", "center": [1976.5, 1565.5], "path": [[1964.5, 1549.5], [1964.5, 1562.5], [1965.5, 1566.5], [1965.5, 1571.5], [1964.5, 1582.5], [1986.5, 1582.5], [1986.5, 1579.5], [1983.5, 1575.5], [1983.5, 1570.5], [1988.5, 1564.5], [1998.5, 1564.5], [1998.5, 1557.5], [1983.5, 1557.5], [1983.5, 1553.5], [1977.5, 1549.5], [1964.5, 1549.5]]}, -{"id": "twtt3g", "submitted_by": "TyphlosionGOD", "name": "Sound Voltex", "description": "A rhythm game by Konami where players have to control six buttons and two knobs", "website": "https://p.eagate.573.jp/game/sdvx", "subreddit": "", "center": [1236.5, 63.5], "path": [[1215.5, 58.5], [1215.5, 68.5], [1258.5, 68.5], [1256.5, 66.5], [1256.5, 65.5], [1255.5, 64.5], [1255.5, 60.5], [1254.5, 60.5], [1253.5, 59.5], [1248.5, 55.5], [1244.5, 59.5], [1243.5, 59.5], [1242.5, 60.5], [1234.5, 60.5], [1230.5, 57.5], [1229.5, 57.5], [1224.5, 60.5], [1218.5, 60.5], [1215.5, 58.5], [1215.5, 58.5]]}, -{"id": "twtt0w", "submitted_by": "SphealArt", "name": "Kappa and Zuko", "description": "Two cats belonging to a member of the Middle Eastern Alliance, named Kappa and Zuko.", "website": "", "subreddit": "", "center": [1791.5, 955.5], "path": [[1786.5, 953.5], [1786.5, 957.5], [1796.5, 957.5], [1796.5, 952.5], [1786.5, 952.5], [1786.5, 952.5]]}, -{"id": "twtswq", "submitted_by": "MTHD2022", "name": "Boowomp Bob", "description": "Now with an extra long nose!", "website": "", "subreddit": "", "center": [1421.5, 358.5], "path": [[1403.5, 327.5], [1404.5, 369.5], [1404.5, 369.5], [1406.5, 377.5], [1418.5, 377.5], [1418.5, 378.5], [1418.5, 426.5], [1423.5, 425.5], [1422.5, 377.5], [1426.5, 380.5], [1431.5, 380.5], [1432.5, 382.5], [1437.5, 381.5], [1437.5, 378.5], [1440.5, 377.5], [1437.5, 376.5], [1437.5, 368.5], [1437.5, 347.5], [1438.5, 346.5], [1438.5, 344.5], [1437.5, 344.5], [1437.5, 334.5], [1439.5, 327.5], [1403.5, 327.5]]}, -{"id": "twtsne", "submitted_by": "thelolo_007", "name": "Arstotzkan eagle", "description": "Arstotzka is a country in the game Papers, Please where the player character works at the Grestin border checkpoint. This is the country's emblem, a red screaming eagle with its wings extended. GLORY TO ARSTOTZKA.", "website": "https://papersplease.fandom.com/wiki/Arstotzka", "subreddit": "/r/PapersPlease", "center": [1301.5, 79.5], "path": [[1296.5, 75.5], [1306.5, 75.5], [1306.5, 82.5], [1296.5, 82.5]]}, -{"id": "twtsl3", "submitted_by": "Pflaumenpueree", "name": "Bisexual pride heart", "description": "A bi pride heart that was added under Phoenix Wright and Miles Edgeworth.", "website": "", "subreddit": "/r/plAceAttorney, /r/AceAttorney, /r/bisexual", "center": [1316.5, 101.5], "path": [[1315.5, 99.5], [1314.5, 99.5], [1313.5, 100.5], [1313.5, 101.5], [1316.5, 104.5], [1319.5, 101.5], [1319.5, 100.5], [1318.5, 99.5], [1317.5, 99.5], [1316.5, 100.5], [1315.5, 99.5], [1314.5, 99.5], [1313.5, 100.5]]}, -{"id": "twtshq", "submitted_by": "TrinityShade", "name": "Aurobia Flower", "description": "A flower built by the small community of Aurobia", "website": "https://discord.gg/bKKrUQmbBh", "subreddit": "/r/aurobia", "center": [1218.5, 570.5], "path": [[1216.5, 568.5], [1220.5, 568.5], [1216.5, 572.5], [1220.5, 572.5]]}, -{"id": "twtsgi", "submitted_by": "Big-Parking485", "name": "Arc de triomphe", "description": "French famous arch. Collaboration between r/PlaceFrance and r/fuckcars", "website": "", "subreddit": "/r/PlaceFrance, /r/fuckcars", "center": [1127.5, 718.5], "path": [[1138.5, 711.5], [1137.5, 724.5], [1128.5, 733.5], [1123.5, 733.5], [1114.5, 721.5], [1113.5, 715.5], [1118.5, 715.5], [1117.5, 709.5], [1131.5, 702.5], [1134.5, 704.5], [1135.5, 709.5], [1137.5, 711.5]]}, -{"id": "twts9o", "submitted_by": "Smithers888", "name": "Strip Poker Night at the Inventory", "description": "A browser-based strip poker game against various fictional characters from a wide range of franchises.", "website": "https://spnati.net/", "subreddit": "/r/spnati", "center": [986.5, 1752.5], "path": [[974.5, 1743.5], [974.5, 1761.5], [998.5, 1761.5], [998.5, 1743.5]]}, -{"id": "twts6g", "submitted_by": "Glitchious404", "name": "BASIL", "description": "BASIL is a major supporting character in OMORI.", "website": "https://www.omori-game.com/en", "subreddit": "/r/OMORI", "center": [880.5, 272.5], "path": [[889.5, 281.5], [871.5, 281.5], [871.5, 275.5], [870.5, 274.5], [869.5, 273.5], [868.5, 272.5], [867.5, 271.5], [866.5, 270.5], [867.5, 269.5], [867.5, 268.5], [868.5, 267.5], [869.5, 266.5], [870.5, 265.5], [871.5, 264.5], [873.5, 264.5], [874.5, 263.5], [876.5, 263.5], [877.5, 262.5], [884.5, 262.5], [885.5, 263.5], [887.5, 263.5], [888.5, 264.5], [889.5, 264.5], [890.5, 265.5], [891.5, 266.5], [892.5, 267.5], [893.5, 268.5], [893.5, 269.5], [892.5, 270.5], [892.5, 273.5], [891.5, 274.5], [890.5, 275.5], [890.5, 281.5]]}, -{"id": "twts4t", "submitted_by": "donrip", "name": "White-Red-Whie flag of Belarus", "description": "White-Red-White flag of Belarus. Introduced in 1918. Officially used from 1991 till 1995. After that is used as a Symbol of Belarusian resistance. Got second live with Belarusian revolution in 2020", "website": "", "subreddit": "/r/belarus", "center": [1947.5, 164.5], "path": [[1955.5, 151.5], [1947.5, 157.5], [1942.5, 164.5], [1940.5, 172.5], [1940.5, 174.5], [1948.5, 173.5], [1948.5, 160.5], [1954.5, 160.5], [1954.5, 151.5]]}, -{"id": "twtrjr", "submitted_by": "Ok_Penalty_1912", "name": "Tom und das Erdbeermarmeladebrot mit Honig", "description": "Tom and the Slice of Bread with Strawberry Jam and Honey (German title: Tom und das Erdbeermarmeladebrot mit Honig) is a German animated television series for children ages 3–8 years, created by Andreas Hykade. It centers around Tom making his favorite dish, the slice of bread with strawberry jam and honey.", "website": "https://en.wikipedia.org/wiki/Tom_und_das_Erdbeermarmeladebrot_mit_Honig", "subreddit": "/r/placeDE", "center": [1349.5, 858.5], "path": [[1339.5, 855.5], [1339.5, 863.5], [1340.5, 863.5], [1340.5, 864.5], [1341.5, 864.5], [1341.5, 865.5], [1343.5, 865.5], [1344.5, 865.5], [1344.5, 866.5], [1353.5, 866.5], [1353.5, 865.5], [1354.5, 865.5], [1354.5, 864.5], [1358.5, 864.5], [1358.5, 863.5], [1359.5, 863.5], [1359.5, 859.5], [1358.5, 859.5], [1358.5, 854.5], [1357.5, 854.5], [1357.5, 853.5], [1356.5, 853.5], [1356.5, 852.5], [1354.5, 852.5], [1354.5, 851.5], [1353.5, 851.5], [1353.5, 850.5], [1352.5, 850.5], [1352.5, 850.5], [1352.5, 849.5], [1351.5, 849.5], [1350.5, 849.5], [1350.5, 848.5], [1348.5, 848.5], [1348.5, 849.5], [1346.5, 849.5], [1346.5, 850.5], [1345.5, 850.5], [1345.5, 851.5], [1344.5, 851.5], [1344.5, 852.5], [1343.5, 852.5], [1343.5, 853.5], [1342.5, 852.5], [1343.5, 853.5], [1341.5, 853.5], [1341.5, 854.5], [1341.5, 855.5], [1340.5, 854.5], [1340.5, 855.5], [1339.5, 855.5]]}, -{"id": "twtrjn", "submitted_by": "jpepo", "name": "Volt Europa", "description": "Volt is a pro-European and European federalist political movement that also serves as the pan-European structure for subsidiary parties in several EU member states.", "website": "https://www.volteuropa.org/", "subreddit": "/r/VoltEuropa", "center": [1416.5, 1346.5], "path": [[1396.5, 1338.5], [1396.5, 1353.5], [1436.5, 1353.5], [1436.5, 1338.5], [1396.5, 1338.5]]}, -{"id": "twtriv", "submitted_by": "Pflaumenpueree", "name": "Bisexual pride flag", "description": "A small bi pride flag that was added under Maya Few from Ace Attorney, since many Ace Attorney fans think Maya is bisexual.", "website": "https://en.wikipedia.org/wiki/Bisexuality", "subreddit": "/r/AceAttorney, /r/bisexual", "center": [1415.5, 111.5], "path": [[1413.5, 110.5], [1413.5, 112.5], [1416.5, 112.5], [1416.5, 110.5], [1413.5, 110.5], [1413.5, 112.5]]}, -{"id": "twtri9", "submitted_by": "em_tsuj_sti", "name": "USS Ente", "description": "A space duck (Ente), similar in size to the USS Enterprisen. Created by Coldmirror, a German radio and TV moderator, parody producer, and dubber on YouTube.", "website": "https://www.youtube.com/user/coldmirror", "subreddit": "/r/Coldmirror, /r/placeDE", "center": [369.5, 1133.5], "path": [[359.5, 1142.5], [376.5, 1142.5], [380.5, 1138.5], [380.5, 1133.5], [381.5, 1129.5], [379.5, 1124.5], [373.5, 1121.5], [366.5, 1122.5], [365.5, 1124.5], [365.5, 1131.5], [359.5, 1131.5], [358.5, 1130.5], [354.5, 1130.5], [354.5, 1132.5], [355.5, 1133.5]]}, -{"id": "twtre7", "submitted_by": "Ionie88", "name": "Doom Eternal logo", "description": "A logo of the first-person shooter Doom Eternal by Id Software.", "website": "https://bethesda.net/en/game/doom", "subreddit": "/r/doom", "center": [1180.5, 117.5], "path": [[1164.5, 104.5], [1164.5, 130.5], [1196.5, 130.5], [1196.5, 104.5]]}, -{"id": "twtrbx", "submitted_by": "CanIHaveAJoe_YT", "name": "SpiderHeck logo", "description": "SpiderHeck is an indie physics-based brawler multiplayer game where you play as a spider using futuristic weaponry.", "website": "https://www.spiderheck.com", "subreddit": "/r/SpiderHeck", "center": [548.5, 1571.5], "path": [[535.5, 1538.5], [531.5, 1538.5], [531.5, 1534.5], [535.5, 1534.5], [535.5, 1548.5], [537.5, 1548.5], [537.5, 1538.5]]}, -{"id": "twtr4n", "submitted_by": "Deano3607", "name": "Cool S", "description": "A typical doodle of the letter S popular in school.", "website": "", "subreddit": "/r/cools, /r/place_CentralAlliance", "center": [252.5, 909.5], "path": [[216.5, 889.5], [262.5, 889.5], [262.5, 896.5], [268.5, 901.5], [274.5, 896.5], [279.5, 901.5], [286.5, 896.5], [292.5, 902.5], [292.5, 907.5], [294.5, 912.5], [294.5, 915.5], [296.5, 917.5], [297.5, 925.5], [216.5, 925.5], [216.5, 889.5]]}, -{"id": "twtr2x", "submitted_by": "aclahm", "name": "4Virtual SanMou", "description": "SanMou is a Taiwanese Vtuber whose mascot is a dolphin.", "website": "https://www.youtube.com/c/4V3Mou", "subreddit": "", "center": [1564.5, 606.5], "path": [[1550.5, 600.5], [1578.5, 600.5], [1578.5, 611.5], [1550.5, 611.5]]}, -{"id": "twtr2h", "submitted_by": "SphealArt", "name": "Sob Rock", "description": "A depiction of the title of indie pop artist John Mayer's 8th studio album, Sob Rock.", "website": "https://johnmayer.com/", "subreddit": "/r/JohnMayer", "center": [1818.5, 943.5], "path": [[1806.5, 935.5], [1829.5, 935.5], [1829.5, 951.5], [1806.5, 951.5], [1806.5, 951.5], [1806.5, 935.5], [1806.5, 935.5]]}, -{"id": "twtqqg", "submitted_by": "Kgury", "name": "Baltimore Ravens Logo", "description": "The Ravens compete in the NFL as a member club of the AFC North division. They've won the Super Bowl Championship twice, and are based in Baltimore, Maryland. Let's go Ravens!!", "website": "https://www.baltimoreravens.com/", "subreddit": "/r/ravens", "center": [1801.5, 719.5], "path": [[1797.5, 725.5], [1796.5, 724.5], [1792.5, 724.5], [1791.5, 723.5], [1788.5, 723.5], [1785.5, 717.5], [1785.5, 714.5], [1792.5, 711.5], [1803.5, 711.5], [1812.5, 718.5], [1815.5, 718.5], [1819.5, 722.5], [1819.5, 725.5]]}, -{"id": "twtqmq", "submitted_by": "X_Gamix_X", "name": "Die Sendung mit der Maus", "description": "Käpt'n Blaubär (Captain Bluebear) and Hein Blöd (Harry Dumb) are known in German television for their short clips at the end of Die Sendung mit der Maus (The Show with the Mouse).", "website": "https://en.wikipedia.org/wiki/Die_Sendung_mit_der_Maus", "subreddit": "/r/placeDE", "center": [42.5, 1156.5], "path": [[334.5, 1171.5], [335.5, 1164.5], [334.5, 1163.5], [329.5, 1163.5], [328.5, 1161.5], [327.5, 1160.5], [326.5, 1159.5], [326.5, 1157.5], [324.5, 1155.5], [322.5, 1152.5], [319.5, 1150.5], [319.5, 1145.5], [324.5, 1144.5], [329.5, 1138.5], [337.5, 1136.5], [340.5, 1132.5], [344.5, 1132.5], [349.5, 1134.5], [352.5, 1135.5], [353.5, 1138.5], [352.5, 1139.5], [354.5, 1143.5], [359.5, 1146.5], [367.5, 1146.5], [377.5, 1144.5], [383.5, 1144.5], [386.5, 1146.5], [386.5, 1152.5], [387.5, 1155.5], [391.5, 1156.5], [393.5, 1157.5], [393.5, 1161.5], [392.5, 1163.5], [391.5, 1165.5], [390.5, 1164.5], [388.5, 1163.5], [386.5, 1163.5], [384.5, 1165.5], [380.5, 1171.5], [374.5, 1171.5], [369.5, 1168.5], [368.5, 1170.5], [366.5, 1171.5], [364.5, 1170.5], [360.5, 1169.5], [356.5, 1169.5], [355.5, 1170.5], [351.5, 1170.5], [349.5, 1171.5], [335.5, 1171.5], [334.5, 1171.5], [394.5, 1157.5], [398.5, 1157.5], [398.5, 1157.5], [400.5, 1160.5], [403.5, 1163.5], [408.5, 1164.5], [409.5, 1167.5], [411.5, 1171.5], [418.5, 1171.5], [426.5, 1171.5], [454.5, 1171.5], [451.5, 1168.5], [448.5, 1165.5], [448.5, 1162.5], [446.5, 1160.5], [447.5, 1157.5], [447.5, 1154.5], [445.5, 1152.5], [446.5, 1148.5], [446.5, 1145.5], [443.5, 1142.5], [440.5, 1139.5], [440.5, 1135.5], [437.5, 1131.5], [434.5, 1130.5], [432.5, 1130.5], [430.5, 1133.5], [426.5, 1134.5], [422.5, 1134.5], [423.5, 1133.5], [420.5, 1135.5], [420.5, 1138.5], [419.5, 1142.5], [417.5, 1146.5], [413.5, 1146.5], [409.5, 1143.5], [406.5, 1141.5], [402.5, 1143.5], [398.5, 1147.5], [399.5, 1151.5], [399.5, 1153.5], [397.5, 1157.5], [394.5, 1157.5]]}, -{"id": "twtqj1", "submitted_by": "AURAequine", "name": "Pinkie Pie", "description": "A tiny My Little Pony: Friendship is Magic pony character. This one is an earth pony and Mane 6 member, Pinkie Pie.", "website": "https://mlp.fandom.com/wiki/Pinkie_Pie", "subreddit": "/r/MyLittlePony", "center": [920.5, 1775.5], "path": [[917.5, 1773.5], [922.5, 1773.5], [922.5, 1774.5], [923.5, 1774.5], [923.5, 1777.5], [917.5, 1777.5]]}, -{"id": "twtqfa", "submitted_by": "WarpedGamer1234", "name": "NerdCubed", "description": "NerdCubed, and sometimes as Forsinain42, is an English author, YouTuber, actor, and CEO of Nerd Cubed Limited. He is the author of The Sunday Times bestseller Fuck Yeah, Video Games: The Life and Extra Lives of a Professional Nerd.", "website": "https://www.nerdcubed.co.uk/", "subreddit": "/r/nerdcubed", "center": [1517.5, 937.5], "path": [[1509.5, 931.5], [1524.5, 931.5], [1524.5, 942.5], [1509.5, 942.5], [1509.5, 931.5]]}, -{"id": "twtqdq", "submitted_by": "Educational-Ad-170", "name": "Yukari Yakumo", "description": "Gap sage from Touhou 7: Perfect Cherry Blossom. Her current age is 17,", "website": "https://en.touhouwiki.net/wiki/Yukari_Yakumo", "subreddit": "/r/touhou", "center": [1769.5, 811.5], "path": [[1753.5, 790.5], [1753.5, 832.5], [1785.5, 832.5], [1785.5, 790.5]]}, -{"id": "twtqdg", "submitted_by": "Eylstar", "name": "IMAC Logo", "description": "Logo of An engineering school in Paris, The only public training mixing arts and sciences <3 (IMAC)", "website": "https://www.ingenieur-imac.fr/", "subreddit": "", "center": [1229.5, 1399.5], "path": [[1220.5, 1392.5], [1220.5, 1406.5], [1237.5, 1406.5], [1237.5, 1392.5], [1220.5, 1392.5]]}, -{"id": "twtqc5", "submitted_by": "AtomAnt3991", "name": "0€ coin", "description": "A coin worth zero euros (i.e., worthless) in the border of Greece and Portugal, two of the European countries most affected by the 2008 economic crisis.", "website": "https://en.wikipedia.org/wiki/Financial_crisis_of_2007%E2%80%932008", "subreddit": "/r/portugal, /r/PortugalCaralho, /r/greece, /r/GreecePlace", "center": [1439.5, 1915.5], "path": [[1431.5, 1917.5], [1432.5, 1911.5], [1435.5, 1907.5], [1439.5, 1908.5], [1445.5, 1910.5], [1447.5, 1915.5], [1446.5, 1920.5], [1440.5, 1924.5], [1432.5, 1921.5], [1430.5, 1915.5], [1433.5, 1909.5]]}, -{"id": "twtq7y", "submitted_by": "PM_ME_YOUR_TREE_PICS", "name": "Bonito Generation", "description": "The cover of the album Bonito Generation by kero kero bonito", "website": "", "subreddit": "/r/kkb", "center": [971.5, 437.5], "path": [[965.5, 431.5], [976.5, 431.5], [976.5, 442.5], [965.5, 442.5]]}, -{"id": "twtq76", "submitted_by": "bordaa", "name": "Holo (Spice & Wolf)", "description": "The character Holo from Spice & Wolf.", "website": "https://spiceandwolf.fandom.com/wiki/Holo", "subreddit": "/r/SpiceandWolf", "center": [234.5, 1248.5], "path": [[231.5, 1242.5], [231.5, 1254.5], [237.5, 1254.5], [237.5, 1242.5], [237.5, 1242.5]]}, -{"id": "twtpzv", "submitted_by": "Ollyssss", "name": "Dynamix", "description": "A mural for Dynamix, a mobile rhythm game. nnWas allied with their neighbours to the right, Alone Cord, who provided anti griefing in return for Dynamix's support in the fight against the Belgians.", "website": "https://dynamixc4cat.fandom.com/wiki/Main_Page", "subreddit": "", "center": [1260.5, 1882.5], "path": [[1267.5, 1888.5], [1267.5, 1888.5], [1253.5, 1888.5], [1253.5, 1875.5], [1267.5, 1875.5], [1267.5, 1888.5]]}, -{"id": "twtpt0", "submitted_by": "Rovsnegl", "name": "Holger Danske", "description": "Hogler Danske is a Danish folk hero that sits in the cellar of Kronborg (A danish castle in Helsingør), where he is said to be sleeping until Denmark comes into great peril. He will then rise and save Denmark.", "website": "https://en.wikipedia.org/wiki/Ogier_the_Dane", "subreddit": "/r/place_nordicunion, /r/Denmark", "center": [357.5, 152.5], "path": [[344.5, 142.5], [344.5, 167.5], [368.5, 167.5], [368.5, 154.5], [370.5, 152.5], [370.5, 144.5], [366.5, 139.5], [363.5, 139.5], [360.5, 132.5], [354.5, 132.5], [352.5, 138.5], [344.5, 142.5]]}, -{"id": "twtpi9", "submitted_by": "GoJoeyGo123", "name": "Mumbo Jumbo", "description": "Minecraft YouTuber known for making eccentric redstone contraptions. Joined Hermitcraft in Season 2.", "website": "https://www.youtube.com/c/MumboJumboOfficial", "subreddit": "/r/hermitcraft", "center": [883.5, 595.5], "path": [[878.5, 591.5], [887.5, 591.5], [887.5, 599.5], [878.5, 599.5]]}, -{"id": "twtpdm", "submitted_by": "Bisonratte", "name": "Fish Cult original fish", "description": "The first fish of the tank. One of the first-minute submissions to r/place after u/Burning_Sulphur announced that he will draw a fish. This led to the founding of the Fish Cult.", "website": "https://www.reddit.com/r/place/comments/ttq74f/im_going_to_make_a_fish/", "subreddit": "/r/PlaceFishCult, /r/place_CentralAlliance", "center": [475.5, 899.5], "path": [[473.5, 898.5], [473.5, 900.5], [476.5, 900.5], [476.5, 898.5], [473.5, 898.5]]}, -{"id": "twtp7x", "submitted_by": "Bernard903", "name": "Aniki", "description": "A tribute to Billy Herrington also known as Aniki, was an American model that has sadly passed away in 2018.nn♂ GachiGASM ♂", "website": "https://en.wikipedia.org/wiki/Billy_Herrington", "subreddit": "", "center": [694.5, 1004.5], "path": [[667.5, 957.5], [718.5, 957.5], [720.5, 957.5], [720.5, 1050.5], [667.5, 1050.5], [667.5, 957.5]]}, -{"id": "twtp6s", "submitted_by": "Deano3607", "name": "Haas F1", "description": "Haas Formula 1 team.", "website": "https://en.wikipedia.org/wiki/Haas_F1_Team", "subreddit": "/r/formula1", "center": [476.5, 810.5], "path": [[467.5, 796.5], [485.5, 796.5], [485.5, 824.5], [467.5, 824.5]]}, -{"id": "twtp45", "submitted_by": "Piktum", "name": "Final Fantasy XIV", "description": "Logo and some creatures from the critically acclaimed MMORPG with an expanded free trial which you can play through the entirety of A Realm Reborn and the award winning Heavensward expansion up to level 60 for free with no restrictions on playtime.", "website": "https://na.finalfantasyxiv.com/lodestone/", "subreddit": "/r/ffxiv", "center": [1270.5, 526.5], "path": [[1251.5, 507.5], [1251.5, 566.5], [1274.5, 566.5], [1274.5, 557.5], [1288.5, 543.5], [1290.5, 543.5], [1290.5, 533.5], [1296.5, 533.5], [1296.5, 519.5], [1290.5, 519.5], [1290.5, 511.5], [1287.5, 511.5], [1287.5, 487.5], [1259.5, 487.5], [1259.5, 507.5], [1251.5, 507.5]]}, -{"id": "twtp3f", "submitted_by": "Minerscool", "name": "Root's cat", "description": "Root is a very cool board game, and this cat here is one of the pieces.", "website": "https://ledergames.com/products/root-a-game-of-woodland-might-and-right", "subreddit": "", "center": [8.5, 610.5], "path": [[0.5, 602.5], [3.5, 599.5], [8.5, 604.5], [13.5, 599.5], [17.5, 605.5], [17.5, 615.5], [10.5, 615.5], [10.5, 621.5], [0.5, 621.5], [0.5, 602.5]]}, -{"id": "twtoqz", "submitted_by": "armaanbatman", "name": "NoPixel 3.0", "description": "NoPixel is a Grand Theft Auto role-play server, and is currently the most popular GTA role-play server in the world.", "website": "https://www.nopixel.net", "subreddit": "/r/nopixel", "center": [1047.5, 893.5], "path": [[1021.5, 898.5], [1021.5, 887.5], [1072.5, 887.5], [1072.5, 898.5], [1042.5, 898.5], [1035.5, 898.5], [1035.5, 898.5], [1021.5, 898.5]]}, -{"id": "twtoni", "submitted_by": "JohannesPohl", "name": "Team Throwback", "description": "A Geometry Dash collab server turned hangout server. Also home to a small osu! section", "website": "https://discord.gg/t85yJZ4jrG", "subreddit": "", "center": [751.5, 673.5], "path": [[747.5, 669.5], [754.5, 669.5], [754.5, 677.5], [747.5, 677.5], [747.5, 669.5]]}, -{"id": "twtoji", "submitted_by": "DiamondAirWind", "name": "Nagito holding hands with Among Us bean", "description": "A little pixel sprite of Nagito Komaeda from Super Danganronpa 2 holding hands with a bright green Among Us bean. They have survived ever since, comforting each other and fending off together any colony of pixels that came their way.", "website": "", "subreddit": "", "center": [762.5, 815.5], "path": [[754.5, 807.5], [759.5, 802.5], [763.5, 799.5], [768.5, 802.5], [770.5, 802.5], [771.5, 829.5], [765.5, 829.5], [765.5, 827.5], [763.5, 827.5], [763.5, 829.5], [758.5, 829.5], [758.5, 828.5], [753.5, 828.5], [753.5, 813.5], [754.5, 812.5]]}, -{"id": "twtoge", "submitted_by": "frcroth", "name": "HPI Logo", "description": "Logo of the Hasso Plattner Institute, a faculty of the University of Potsdam.", "website": "https://hpi.de", "subreddit": "", "center": [1232.5, 1194.5], "path": [[1224.5, 1191.5], [1240.5, 1191.5], [1240.5, 1197.5], [1233.5, 1197.5], [1233.5, 1196.5], [1224.5, 1196.5]]}, -{"id": "twtoc3", "submitted_by": "Dieau", "name": "42 Network", "description": "World's greatest programming school, totally free, with 42 campuses worldwide.nRTFM!n", "website": "https://42.fr/en/homepage/", "subreddit": "", "center": [1476.5, 223.5], "path": [[1469.5, 226.5], [1469.5, 226.5], [1479.5, 219.5], [1458.5, 205.5], [1460.5, 241.5], [1496.5, 241.5], [1496.5, 207.5], [1458.5, 206.5]]}, -{"id": "twtobt", "submitted_by": "Deano3607", "name": "Alfa Romeo", "description": "Alfa Romeo Formula 1 team.", "website": "https://en.wikipedia.org/wiki/Alfa_Romeo_in_Formula_One", "subreddit": "/r/formula1", "center": [458.5, 810.5], "path": [[449.5, 796.5], [466.5, 796.5], [466.5, 824.5], [449.5, 824.5]]}, -{"id": "twto6q", "submitted_by": "urammar", "name": "Douglas Adams", "description": "This is the artwork of r/douglasadams, a subreddit in honor of the work of the author of the hitchhiker's guide to the galaxy.nnHere we see the sperm whale and bowl of petunias that are improbably summoned to their death many kilometers above a planet, with humorous exchange.nnAlso, the words don't panic, written in large friendly letters, which is supposed to be written on the book 'in universe'.nnAnd finally, the number 42, the mis-calculated answer to the question of what is the point of life, the universe, and everything, by the giant computer 'Earth'.", "website": "", "subreddit": "/r/douglasadams", "center": [1414.5, 231.5], "path": [[1390.5, 217.5], [1390.5, 244.5], [1437.5, 244.5], [1437.5, 217.5]]}, -{"id": "twtnt2", "submitted_by": "Deano3607", "name": "Red Bull Racing", "description": "Red Bull Racing Formula 1 team.", "website": "https://en.wikipedia.org/wiki/Red_Bull_Racing", "subreddit": "/r/formula1", "center": [477.5, 782.5], "path": [[467.5, 769.5], [486.5, 769.5], [486.5, 796.5], [467.5, 795.5]]}, -{"id": "twtnrs", "submitted_by": "leopassionleo", "name": "Tribute to Zafinho", "description": "French twitter users paid tribute to the late Zafinho", "website": "https://twitter.com/zafinho", "subreddit": "", "center": [932.5, 1500.5], "path": [[916.5, 1494.5], [947.5, 1494.5], [947.5, 1506.5], [916.5, 1506.5]]}, -{"id": "twtnnm", "submitted_by": "Kikoori", "name": "ISEN", "description": "French IT engineering school", "website": "https://www.isen.fr/", "subreddit": "", "center": [1867.5, 46.5], "path": [[1859.5, 44.5], [1859.5, 44.5], [1875.5, 44.5], [1875.5, 48.5], [1859.5, 48.5], [1859.5, 44.5]]}, -{"id": "twtnld", "submitted_by": "Vinlan", "name": "The Son of Man - Rene Magritte", "description": "The Son of Man (in French: Le fils de l'homme) is a 1964 painting by the Belgian surrealist painter René Magritte.", "website": "https://en.wikipedia.org/wiki/The_Son_of_Man", "subreddit": "", "center": [320.5, 578.5], "path": [[311.5, 569.5], [328.5, 569.5], [328.5, 586.5], [311.5, 586.5], [311.5, 569.5]]}, -{"id": "twtnkd", "submitted_by": "Pflaumenpueree", "name": "the Batman logo", "description": "the logo used by the DS superhero Batman.", "website": "https://www.dccomics.com/characters/batman", "subreddit": "/r/Batman", "center": [693.5, 1308.5], "path": [[686.5, 1302.5], [686.5, 1315.5], [700.5, 1315.5], [700.5, 1302.5], [694.5, 1302.5], [693.5, 1301.5], [692.5, 1302.5], [686.5, 1302.5]]}, -{"id": "twtndq", "submitted_by": "p1terdeN", "name": "Okabe Rintarou", "description": "An art of Okabe Rintarou from an anime called Steins;Gate with chibi Mayuri and Kurisu to the right", "website": "", "subreddit": "/r/steinsgate", "center": [516.5, 1902.5], "path": [[496.5, 1880.5], [536.5, 1880.5], [536.5, 1926.5], [496.5, 1923.5], [496.5, 1896.5], [496.5, 1880.5]]}, -{"id": "twtndh", "submitted_by": "Memory_System", "name": "L'manburg flag", "description": "A flag dedicated to remembering the country of L'manburg (formed by Wilbur Soot) from the Minecraft server known as the Dream SMP (survival multiplayer).", "website": "https://Discord.gg/25j3Cxnvjt", "subreddit": "/r/lmanburgplace, /r/wilbursoot, /r/dreamsmp", "center": [120.5, 155.5], "path": [[106.5, 147.5], [134.5, 145.5], [133.5, 165.5], [109.5, 165.5], [106.5, 167.5]]}, -{"id": "twtnc8", "submitted_by": "Deano3607", "name": "Mercedes", "description": "Mercedes Formula 1 team.", "website": "https://en.wikipedia.org/wiki/Mercedes-Benz_in_Formula_One", "subreddit": "/r/formula1", "center": [457.5, 782.5], "path": [[448.5, 769.5], [467.5, 769.5], [466.5, 795.5], [448.5, 795.5]]}, -{"id": "twtn9b", "submitted_by": "iErik4", "name": "Ori and the Blind Forest", "description": "A beautiful side-scrolling Metroidvania developed in 2015 by Moon Studios. The art for the game is intended to appear painted or hand-drawn, leading to a distinct visual style.", "website": "", "subreddit": "/r/OriandtheBlindForest", "center": [1012.5, 530.5], "path": [[960.5, 510.5], [960.5, 541.5], [979.5, 541.5], [979.5, 551.5], [1060.5, 551.5], [1060.5, 510.5]]}, -{"id": "twtn8l", "submitted_by": "TheDevilIsDero", "name": "Kingdom Hearts", "description": "The logo of Kingdom Hearts with two keyblades and a small paopu fruit", "website": "", "subreddit": "/r/KHPL", "center": [7.5, 353.5], "path": [[0.5, 337.5], [16.5, 337.5], [15.5, 361.5], [11.5, 360.5], [8.5, 372.5], [0.5, 372.5]]}, -{"id": "twtn7d", "submitted_by": "infignite", "name": "Kazakhstan Place", "description": "Kazakhstan flag and Baiterek monument.", "website": "", "subreddit": "/r/Kazakhstan", "center": [733.5, 1916.5], "path": [[716.5, 1909.5], [749.5, 1909.5], [749.5, 1923.5], [716.5, 1923.5]]}, -{"id": "twtn6h", "submitted_by": "NailoOfNalor", "name": "Ubuntu", "description": "Ubuntu is a Linux distribution based on Debian and composed mostly of free and open-source software", "website": "", "subreddit": "/r/Ubuntu", "center": [65.5, 695.5], "path": [[61.5, 691.5], [59.5, 695.5], [65.5, 701.5], [69.5, 700.5], [69.5, 689.5], [62.5, 690.5]]}, -{"id": "twtmwp", "submitted_by": "Agsteroid", "name": "Fallen Star", "description": "Fallen Star pixel art from terraria", "website": "", "subreddit": "", "center": [507.5, 1789.5], "path": [[502.5, 1792.5], [502.5, 1793.5], [504.5, 1793.5], [505.5, 1792.5], [506.5, 1792.5], [507.5, 1791.5], [508.5, 1792.5], [509.5, 1792.5], [510.5, 1793.5], [512.5, 1793.5], [512.5, 1792.5], [509.5, 1789.5], [512.5, 1787.5], [510.5, 1787.5], [507.5, 1783.5], [504.5, 1787.5], [502.5, 1787.5], [504.5, 1789.5], [503.5, 1791.5]]}, -{"id": "twtmva", "submitted_by": "PiotrObst", "name": "WEiTI", "description": "A group of 81 students from Faculty of Electronics and Information Technology (in Polish WEiTI) at the Warsaw University of Technology in Poland decided to create this.nnWe started by placing the pixels manually, then developed a simple bot and over time made a central server for a botnet made up of tens of bots all coordinating their actions with a central server.", "website": "https://www.elka.pw.edu.pl", "subreddit": "", "center": [673.5, 290.5], "path": [[658.5, 284.5], [688.5, 284.5], [688.5, 296.5], [658.5, 296.5]]}, -{"id": "twtmt2", "submitted_by": "jpepo", "name": "Flag of Albania", "description": "", "website": "https://en.wikipedia.org/wiki/Flag_of_Albania", "subreddit": "/r/albania", "center": [345.5, 275.5], "path": [[335.5, 253.5], [335.5, 297.5], [355.5, 297.5], [355.5, 253.5], [335.5, 253.5]]}, -{"id": "twtmsr", "submitted_by": "synnth", "name": "Flag of the Dominican Republic", "description": "Created by the members of the /r/Dominican community, complete with embossed geographic border and a chibi-style green plantain.", "website": "", "subreddit": "/r/Dominican", "center": [49.5, 83.5], "path": [[85.5, 93.5], [85.5, 73.5], [12.5, 73.5], [12.5, 93.5], [85.5, 93.5]]}, -{"id": "twtmsl", "submitted_by": "bayerslyf", "name": "Wheatley", "description": "A character from the game Portal 2. Made with contribution from the portal 2 speed running discord.", "website": "https://discord.gg/p2sr", "subreddit": "", "center": [841.5, 622.5], "path": [[831.5, 610.5], [851.5, 609.5], [852.5, 634.5], [829.5, 635.5]]}, -{"id": "twtmmm", "submitted_by": "DG_TBHItzDG", "name": "Kaonashi - Spirited Away", "description": "Kaonashi from the Studio Ghibli anime Spirited Away.", "website": "https://en.wikipedia.org/wiki/Spirited_Away", "subreddit": "", "center": [1419.5, 267.5], "path": [[1432.5, 278.5], [1431.5, 277.5], [1430.5, 276.5], [1429.5, 275.5], [1429.5, 273.5], [1428.5, 273.5], [1428.5, 270.5], [1428.5, 268.5], [1427.5, 267.5], [1426.5, 266.5], [1426.5, 256.5], [1425.5, 255.5], [1424.5, 254.5], [1423.5, 253.5], [1422.5, 252.5], [1422.5, 250.5], [1416.5, 250.5], [1416.5, 251.5], [1415.5, 252.5], [1414.5, 253.5], [1413.5, 254.5], [1412.5, 255.5], [1411.5, 257.5], [1411.5, 264.5], [1411.5, 269.5], [1410.5, 270.5], [1409.5, 271.5], [1409.5, 274.5], [1408.5, 275.5], [1407.5, 276.5], [1406.5, 277.5], [1405.5, 278.5], [1405.5, 279.5], [1432.5, 279.5]]}, -{"id": "twtm4y", "submitted_by": "Grace4555", "name": "Obey Me! One Master To Rule Them All", "description": "Obey me is a dating simulation app developed for android and iOS. The main character is transported to Devildom by a summoning ritual to attend Devildom Academy as a exchange student for one year. The main character will be greeted by seven gorgeous men that are avatars of the deadly sins.", "website": "https://shallwedate.jp/obeyme/en/", "subreddit": "/r/obeyme", "center": [1358.5, 394.5], "path": [[1375.5, 405.5], [1376.5, 396.5], [1376.5, 380.5], [1344.5, 382.5], [1345.5, 403.5], [1346.5, 403.5], [1345.5, 405.5], [1375.5, 405.5], [1345.5, 397.5], [1336.5, 398.5], [1337.5, 407.5], [1345.5, 407.5], [1346.5, 399.5], [1376.5, 406.5]]}, -{"id": "twtm2k", "submitted_by": "pticle94", "name": "Popcorn", "description": "Popcorn is a show on Twitch organised by the French stream PA Domingo", "website": "https://boutiquepopcorn.fr/", "subreddit": "", "center": [680.5, 1502.5], "path": [[661.5, 1521.5], [699.5, 1521.5], [699.5, 1481.5], [689.5, 1481.5], [684.5, 1486.5], [680.5, 1482.5], [662.5, 1483.5], [661.5, 1521.5]]}, -{"id": "twtm1e", "submitted_by": "Educational-Ad-170", "name": "Yuyuko Saigyouji", "description": "Funny ghost from Touhou Project who is also a glutton.", "website": "https://en.touhouwiki.net/wiki/Yuyuko_Saigyouji", "subreddit": "/r/touhou", "center": [1741.5, 807.5], "path": [[1727.5, 790.5], [1728.5, 824.5], [1756.5, 824.5], [1754.5, 790.5]]}, -{"id": "twtlsk", "submitted_by": "greese1", "name": "Fish Cult tank 3", "description": "a team of people dedicated to making fish on r/place", "website": "", "subreddit": "/r/PlaceFishCult", "center": [292.5, 1633.5], "path": [[281.5, 1650.5], [290.5, 1650.5], [290.5, 1635.5], [299.5, 1635.5], [300.5, 1634.5], [301.5, 1634.5], [302.5, 1633.5], [302.5, 1632.5], [303.5, 1631.5], [304.5, 1632.5], [304.5, 1633.5], [310.5, 1633.5], [310.5, 1624.5], [281.5, 1624.5]]}, -{"id": "twtlm3", "submitted_by": "Fredpoilu", "name": "Robbaz", "description": "That Swedish streamer who sounds like Kermit", "website": "https://www.twitch.tv/robbaz", "subreddit": "/r/Robbaz", "center": [385.5, 1190.5], "path": [[374.5, 1172.5], [374.5, 1208.5], [397.5, 1207.5], [397.5, 1172.5], [374.5, 1172.5]]}, -{"id": "twtlk1", "submitted_by": "Minerscool", "name": "Cacabox's logo", "description": "The logo of a small french community of streamers", "website": "https://twitter.com/cacaboxtv", "subreddit": "", "center": [271.5, 1875.5], "path": [[260.5, 1860.5], [281.5, 1860.5], [281.5, 1876.5], [283.5, 1876.5], [283.5, 1889.5], [260.5, 1889.5], [260.5, 1861.5]]}, -{"id": "twtlce", "submitted_by": "jpepo", "name": "Flag of Kosovo", "description": "Flag of Kosovo which was heavily attacked during the whole time it was up, mostly by the Serbian community. The attacks included multiple failed false-flag attacks against r/cricket, r/berkeley and r/IndiaPlace, in an attempt to break their alliance and put them against each other. The flag managed to survive until the very end.", "website": "https://en.wikipedia.org/wiki/Flag_of_Kosovo", "subreddit": "/r/kosovo", "center": [326.5, 290.5], "path": [[317.5, 283.5], [317.5, 297.5], [334.5, 297.5], [334.5, 283.5], [317.5, 283.5]]}, -{"id": "twtlav", "submitted_by": "Deano3607", "name": "The Queen's Guard", "description": "A soldier responsible for guarding the royal residences in the United Kingdom.", "website": "", "subreddit": "", "center": [579.5, 541.5], "path": [[574.5, 541.5], [573.5, 532.5], [575.5, 529.5], [580.5, 529.5], [583.5, 532.5], [583.5, 536.5], [583.5, 544.5], [591.5, 551.5], [575.5, 551.5], [575.5, 541.5]]}, -{"id": "twtl02", "submitted_by": "Smithers888", "name": "Perry the Platypus", "description": "From the animated series Phineas and Ferb.", "website": "", "subreddit": "", "center": [989.5, 1885.5], "path": [[985.5, 1889.5], [994.5, 1889.5], [1001.5, 1884.5], [994.5, 1882.5], [984.5, 1880.5], [982.5, 1880.5], [980.5, 1886.5]]}, -{"id": "twtkt3", "submitted_by": "geo_metro", "name": "University of Central Florida", "description": "A tile made by UCF students. Contains the university's abbrevation, its logo, and a sword.", "website": "", "subreddit": "/r/ucf", "center": [40.5, 596.5], "path": [[20.5, 591.5], [17.5, 600.5], [20.5, 604.5], [54.5, 604.5], [64.5, 593.5], [64.5, 589.5], [20.5, 589.5]]}, -{"id": "twtkrr", "submitted_by": "kwak1_", "name": "Salt shaker", "description": "A salt shaker for the Belgian fries. Added by Twitch streamer Fildrong with permission from the Belgian r/place community.", "website": "https://www.twitch.tv/fildrong", "subreddit": "", "center": [279.5, 573.5], "path": [[271.5, 574.5], [276.5, 575.5], [278.5, 574.5], [283.5, 579.5], [287.5, 575.5], [282.5, 570.5], [281.5, 570.5], [279.5, 568.5], [275.5, 569.5], [273.5, 570.5], [271.5, 574.5]]}, -{"id": "twtkqn", "submitted_by": "cyrano91", "name": "p'tite baleine", "description": "A Small whale, symbol of the french twitch caster u/LittleBigWhale aka Trivia", "website": "https://www.twitch.tv/littlebigwhale?lang=fr", "subreddit": "", "center": [1650.5, 41.5], "path": [[1639.5, 35.5], [1640.5, 47.5], [1661.5, 47.5], [1661.5, 35.5], [1639.5, 35.5]]}, -{"id": "twtkmz", "submitted_by": "Bisonratte", "name": "Fish Cult Squid and Snail", "description": "A small fish and Snail in the Baltic Sea, made by the Fish Cult, a small group of people drawing small fish on r/place, with the permission of the baltic union", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1904.5, 168.5], "path": [[1899.5, 165.5], [1899.5, 166.5], [1900.5, 167.5], [1899.5, 168.5], [1899.5, 169.5], [1899.5, 170.5], [1900.5, 171.5], [1909.5, 171.5], [1909.5, 166.5], [1903.5, 166.5], [1903.5, 165.5], [1902.5, 164.5], [1901.5, 163.5], [1900.5, 164.5], [1899.5, 165.5]]}, -{"id": "twtkki", "submitted_by": "DucAlphaHorus", "name": "Flag of Ireland", "description": "Ireland is an island in the north Atlantic Ocean, in north-western Europe. It is separated from Great Britain to its east by the North Channel, the Irish Sea, and St George's Channel. Ireland is the second-largest island of the British Isles, the third-largest in Europe, and the twentieth-largest on Earth.\nAt first at war with the French flag above, peace was finally declared. An agreement with r/AnarchyChess was also made to merge the board with the flag.", "website": "https://en.wikipedia.org/wiki/Ireland", "subreddit": "/r/PlaceIreland", "center": [149.5, 633.5], "path": [[125.5, 497.5], [175.5, 497.5], [173.5, 727.5], [168.5, 732.5], [167.5, 738.5], [169.5, 745.5], [165.5, 754.5], [165.5, 756.5], [164.5, 758.5], [166.5, 762.5], [164.5, 766.5], [159.5, 771.5], [155.5, 776.5], [153.5, 782.5], [143.5, 781.5], [142.5, 780.5], [125.5, 780.5], [125.5, 497.5]]}, -{"id":"twtki0","submitted_by":"MyriadF5ElderGod","name":"One piece - Devil fruit","description":"Three devil fruit from the one piece anime:n- Gomu Gomu no Min- Ope Ope no MIn- Mera Mera no Mi","website":"","subreddit":"/r/onepiece","center":[354.5,605.5],"path":[[378.5,596.5],[329.5,596.5],[329.5,613.5],[378.5,613.5]]}, -{"id": "twtkgy", "submitted_by": "Misicks0349", "name": "Dagoth Ur", "description": "A small depiction of the villan of The Elder Scrolls III: Morrowind", "website": "", "subreddit": "/r/Morrowind", "center": [1475.5, 1740.5], "path": [[1465.5, 1726.5], [1485.5, 1726.5], [1485.5, 1755.5], [1469.5, 1754.5], [1469.5, 1749.5], [1465.5, 1749.5], [1465.5, 1726.5]]}, -{"id": "twtkff", "submitted_by": "wildhoover", "name": "Capibara", "description": "Basically a giant guinea pig.", "website": "https://www.youtube.com/watch?v=3ajPsmbcba8", "subreddit": "", "center": [386.5, 1309.5], "path": [[394.5, 1322.5], [397.5, 1313.5], [400.5, 1312.5], [399.5, 1304.5], [392.5, 1299.5], [385.5, 1299.5], [384.5, 1295.5], [380.5, 1295.5], [379.5, 1297.5], [375.5, 1298.5], [370.5, 1304.5], [374.5, 1309.5], [376.5, 1309.5], [377.5, 1314.5], [376.5, 1321.5], [382.5, 1322.5], [384.5, 1317.5], [390.5, 1317.5], [387.5, 1321.5]]}, -{"id": "twtkar", "submitted_by": "GoJoeyGo123", "name": "Asexual pride Flag", "description": "", "website": "", "subreddit": "/r/Asexual", "center": [1695.5, 630.5], "path": [[1722.5, 624.5], [1666.5, 624.5], [1666.5, 625.5], [1653.5, 625.5], [1653.5, 633.5], [1654.5, 633.5], [1655.5, 632.5], [1656.5, 632.5], [1657.5, 633.5], [1658.5, 632.5], [1660.5, 632.5], [1660.5, 633.5], [1661.5, 634.5], [1661.5, 636.5], [1737.5, 636.5], [1737.5, 627.5], [1722.5, 627.5]]}, -{"id": "twtkac", "submitted_by": "SlimsyMuffin", "name": "megan9958's flower", "description": "a mysterious flower (originally created by u/megan9958) that appeared when the D-Cell group were building one of their earlier iterations of quaver (a character from the game they were representing). However, because it coincidentaly fit well into the art they were doing, they decided to keep it and carry it through every new attempt that they made.", "website": "", "subreddit": "", "center": [1365.5, 1281.5], "path": [[1364.5, 1281.5], [1365.5, 1280.5], [1366.5, 1281.5], [1365.5, 1282.5]]}, -{"id": "twtk6b", "submitted_by": "Educational-Ad-170", "name": "Youmu Konpaku", "description": "Swordswoman from Touhou 7: Perfect Cherry Blossom. She serves Yuyuko.", "website": "https://en.touhouwiki.net/wiki/Youmu_Konpaku", "subreddit": "/r/touhou", "center": [1714.5, 806.5], "path": [[1699.5, 790.5], [1700.5, 822.5], [1728.5, 822.5], [1728.5, 790.5]]}, -{"id": "twtjno", "submitted_by": "Mystery5Me", "name": "Arceus", "description": "Arceus is the god of the Pokémon world and the creator of everything in the Pokémon series of video games. It is also the titular Pokémon of Game Freak's open-world Pokémon game, Pokémon Legends: Arceus. This piece was created by Pokémon in r/place, and was allied with its surrounding friends, with the letter H and A, as well as the Pachirisu OC to the side.", "website": "https://bulbapedia.bulbagarden.net/wiki/Arceus_(Pok%C3%A9mon)", "subreddit": "/r/pokemon", "center": [1658.5, 538.5], "path": [[1646.5, 539.5], [1646.5, 536.5], [1647.5, 536.5], [1647.5, 534.5], [1648.5, 534.5], [1648.5, 532.5], [1647.5, 532.5], [1647.5, 529.5], [1648.5, 529.5], [1648.5, 528.5], [1649.5, 528.5], [1649.5, 530.5], [1652.5, 530.5], [1660.5, 525.5], [1661.5, 527.5], [1660.5, 528.5], [1659.5, 532.5], [1657.5, 532.5], [1656.5, 537.5], [1659.5, 536.5], [1661.5, 537.5], [1662.5, 536.5], [1660.5, 534.5], [1660.5, 533.5], [1662.5, 533.5], [1663.5, 534.5], [1666.5, 533.5], [1666.5, 535.5], [1672.5, 531.5], [1671.5, 534.5], [1671.5, 535.5], [1669.5, 538.5], [1668.5, 538.5], [1670.5, 541.5], [1669.5, 542.5], [1668.5, 543.5], [1669.5, 544.5], [1669.5, 547.5], [1666.5, 546.5], [1666.5, 547.5], [1663.5, 547.5], [1660.5, 545.5], [1657.5, 550.5], [1656.5, 550.5], [1653.5, 548.5], [1651.5, 547.5], [1651.5, 541.5], [1649.5, 539.5]]}, -{"id": "twtjn2", "submitted_by": "_SoySauce", "name": "Saitama", "description": "Protagonist of One Punch Man, the anime. Does indeed have a fine punch.", "website": "", "subreddit": "/r/OnePunchMan_place", "center": [1977.5, 1566.5], "path": [[1964.5, 1582.5], [1965.5, 1553.5], [1972.5, 1549.5], [1977.5, 1549.5], [1982.5, 1553.5], [1982.5, 1556.5], [1999.5, 1556.5], [1999.5, 1564.5], [1987.5, 1564.5], [1983.5, 1570.5], [1983.5, 1576.5], [1986.5, 1579.5], [1986.5, 1582.5], [1964.5, 1582.5]]}, -{"id": "twtjjx", "submitted_by": "MikadoVEVO", "name": "Mikado", "description": "The main character from the game SoulSide, developed by Mikado.", "website": "https://store.steampowered.com/app/1813000/SoulSide/", "subreddit": "", "center": [1091.5, 1185.5], "path": [[1084.5, 1178.5], [1098.5, 1178.5], [1098.5, 1192.5], [1084.5, 1192.5], [1084.5, 1178.5]]}, -{"id": "twtjic", "submitted_by": "AURAequine", "name": "Surprise", "description": "A tiny My Little Pony: Friendship is Magic pony character. This one is a pegasus pony named 'Surprise'.", "website": "https://mlp.fandom.com/wiki/Surprise", "subreddit": "/r/MyLittlePony", "center": [916.5, 1825.5], "path": [[914.5, 1823.5], [918.5, 1823.5], [918.5, 1827.5], [914.5, 1827.5]]}, -{"id": "twtje8", "submitted_by": "xyzenith", "name": "Chicory: A Colorful Tale", "description": "The protagonist of the game, Pizza.", "website": "https://chicorygame.com/", "subreddit": "/r/chicory", "center": [974.5, 863.5], "path": [[966.5, 856.5], [983.5, 857.5], [983.5, 869.5], [965.5, 869.5]]}, -{"id": "twtje0", "submitted_by": "IncestSimulator2016", "name": "Girls' Frontline logo Mini 416", "description": "Girls' Frontline is a turn based mobile strategy game developed by China-based studio MICA Team, wherein players control androids known in universe as 'T-Dolls' who all carry versions of real life firearms. The logo is the acronym of the game with a silhouette of the game's protagonist, M4A1. To the lower right of the logo is a pixelated version of one of the game's main characters HK416, a member of Squad 404.", "website": "", "subreddit": "/r/girlsfrontline", "center": [1778.5, 728.5], "path": [[1776.5, 706.5], [1779.5, 710.5], [1790.5, 728.5], [1790.5, 746.5], [1781.5, 745.5], [1775.5, 744.5], [1766.5, 735.5], [1766.5, 726.5], [1770.5, 720.5], [1768.5, 707.5]]}, -{"id": "twtj1d", "submitted_by": "Pflaumenpueree", "name": "Phoenix Wright's magatama", "description": "A magatama that belongs to Phoenix Wright, given to him by Maya Fey (who is pictured above) in the video game Ace Attorney", "website": "https://www.ace-attorney.com/", "subreddit": "/r/AceAttorney, /r/plAceAttorney", "center": [1419.5, 109.5], "path": [[1418.5, 112.5], [1419.5, 112.5], [1421.5, 110.5], [1421.5, 108.5], [1420.5, 107.5], [1418.5, 107.5], [1417.5, 108.5], [1417.5, 109.5], [1419.5, 111.5], [1419.5, 111.5], [1419.5, 112.5], [1418.5, 112.5], [1419.5, 112.5], [1419.5, 111.5], [1419.5, 109.5]]}, -{"id": "twtj15", "submitted_by": "TheNarcolepticOne", "name": "Hetalia Veneziano Italy", "description": "Italy (Main Character) from the Japanese Anime, Hetalia World Stars, which is a show about personified nations.", "website": "https://discord.gg/hetalia", "subreddit": "/r/Hetalia", "center": [295.5, 1896.5], "path": [[290.5, 1890.5], [300.5, 1890.5], [300.5, 1901.5], [300.5, 1902.5], [290.5, 1902.5], [290.5, 1890.5]]}, -{"id": "twtj09", "submitted_by": "rikupone", "name": "ABU Husky", "description": "One of the mascots for an adult diaper company, Adult Baby Universe, found on one of their products, PeekABU.", "website": "https://abuniverse.com", "subreddit": "", "center": [46.5, 1006.5], "path": [[35.5, 999.5], [35.5, 1013.5], [56.5, 1013.5], [56.5, 999.5]]}, -{"id": "twtiz1", "submitted_by": "salovana", "name": "Medicine Wheel", "description": "Made by the people over at r/IndianCountry.", "website": "", "subreddit": "/r/IndianCountry", "center": [1462.5, 332.5], "path": [[1457.5, 327.5], [1466.5, 327.5], [1466.5, 336.5], [1457.5, 336.5], [1457.5, 336.5], [1457.5, 327.5]]}, -{"id": "twtin9", "submitted_by": "Scaraga", "name": "Zia", "description": "Main character from a french student game, Hoverball Strikers.", "website": "", "subreddit": "", "center": [1954.5, 405.5], "path": [[1951.5, 401.5], [1957.5, 401.5], [1957.5, 409.5], [1951.5, 409.5], [1951.5, 401.5]]}, -{"id": "twtikg", "submitted_by": "BlupMcBubbles", "name": "Belgian specialties", "description": "How can anyone talk about Belgium without talking about Belgian fries (the original and sole real fries, Frenchies won't take it away from us), Brussels and Liège waffels or the renowned Belgian dark chocolate? These specialities are unquestionably Belgian's favourite food and yours to be if you ever pay Belgium a visit.n", "website": "", "subreddit": "", "center": [281.5, 589.5], "path": [[291.5, 608.5], [277.5, 608.5], [275.5, 606.5], [275.5, 601.5], [273.5, 601.5], [265.5, 585.5], [268.5, 576.5], [272.5, 571.5], [278.5, 568.5], [281.5, 568.5], [296.5, 585.5], [295.5, 606.5]]}, -{"id": "twti6l", "submitted_by": "Zoyos", "name": "Oyasumi", "description": "Oyasumi Punpun (おやすみプンプン) is a Japanese manga series written and illustrated by Inio Asano.", "website": "https://punpun.fandom.com/wiki/Oyasumi_Punpun_Wiki", "subreddit": "/r/OyasumiPunpun", "center": [1936.5, 296.5], "path": [[1919.5, 270.5], [1919.5, 322.5], [1953.5, 322.5], [1953.5, 270.5]]}, -{"id": "twti3y", "submitted_by": "zephyr12345", "name": "Rei Chiquita", "description": "Rei from Neon Genesis Evangelion in plush form. Her usual Burger King crown has been replaced with a Drehmal crown.", "website": "", "subreddit": "/r/ReiAyanami", "center": [484.5, 1454.5], "path": [[472.5, 1444.5], [497.5, 1444.5], [497.5, 1445.5], [499.5, 1445.5], [499.5, 1447.5], [500.5, 1447.5], [500.5, 1457.5], [499.5, 1457.5], [499.5, 1458.5], [498.5, 1458.5], [498.5, 1459.5], [497.5, 1459.5], [497.5, 1460.5], [497.5, 1461.5], [496.5, 1461.5], [496.5, 1462.5], [495.5, 1462.5], [495.5, 1463.5], [494.5, 1463.5], [494.5, 1464.5], [493.5, 1464.5], [493.5, 1465.5], [472.5, 1465.5], [472.5, 1464.5], [470.5, 1464.5], [470.5, 1462.5], [469.5, 1462.5], [469.5, 1459.5], [468.5, 1459.5], [468.5, 1458.5], [467.5, 1458.5], [467.5, 1454.5], [468.5, 1454.5], [468.5, 1453.5], [469.5, 1453.5], [469.5, 1452.5], [470.5, 1452.5], [470.5, 1450.5], [471.5, 1450.5], [471.5, 1448.5], [472.5, 1448.5], [472.5, 1444.5]]}, -{"id": "twti0u", "submitted_by": "FUEL_SSBM", "name": "Senko Rice Cooker", "description": "The tail of Senko from the anime 'The Helpful Fox Senko-san' in a rice cooker. A reference to the opening of said anime where it is depicted in such a manner in multiple scenes.", "website": "https://youtu.be/vvC7KJS_t1Q", "subreddit": "/r/SewayakiKitsune", "center": [620.5, 628.5], "path": [[600.5, 610.5], [600.5, 648.5], [639.5, 648.5], [639.5, 610.5], [638.5, 610.5], [638.5, 608.5], [637.5, 608.5], [637.5, 607.5], [636.5, 607.5], [636.5, 606.5], [635.5, 606.5], [635.5, 605.5], [634.5, 605.5], [634.5, 606.5], [633.5, 606.5], [633.5, 607.5], [631.5, 607.5], [631.5, 606.5], [630.5, 606.5], [630.5, 605.5], [629.5, 605.5], [629.5, 606.5], [628.5, 606.5], [628.5, 607.5], [627.5, 607.5], [627.5, 608.5], [626.5, 608.5], [626.5, 610.5], [600.5, 610.5]]}, -{"id": "twthxz", "submitted_by": "gigamicro", "name": "Egg", "description": "'Egg' is a term for being in denial/unaware of one's own gender or sexuality.", "website": "https://knowyourmeme.com/memes/egg-transgender", "subreddit": "/r/egg_irl, /r/TransPlace", "center": [507.5, 446.5], "path": [[502.5, 433.5], [499.5, 436.5], [499.5, 438.5], [498.5, 439.5], [498.5, 443.5], [499.5, 444.5], [499.5, 446.5], [500.5, 447.5], [500.5, 451.5], [501.5, 452.5], [501.5, 454.5], [502.5, 455.5], [502.5, 456.5], [504.5, 458.5], [505.5, 458.5], [506.5, 459.5], [510.5, 459.5], [511.5, 458.5], [512.5, 458.5], [514.5, 456.5], [514.5, 455.5], [515.5, 454.5], [515.5, 452.5], [516.5, 451.5], [516.5, 449.5], [514.5, 447.5], [514.5, 443.5], [513.5, 442.5], [513.5, 441.5], [512.5, 440.5], [514.5, 438.5], [514.5, 437.5], [513.5, 436.5], [513.5, 435.5], [512.5, 434.5], [510.5, 434.5]]}, -{"id": "twthwz", "submitted_by": "Mevarit", "name": "bonjwa", "description": "The cursed attempt to create bonjwaO, an emote from the twitch streamer Matteo within the taskbar style.", "website": "https://www.twitch.tv/bonjwa", "subreddit": "/r/bonjwade", "center": [1640.5, 1987.5], "path": [[1601.5, 1999.5], [1601.5, 1974.5], [1617.5, 1974.5], [1620.5, 1976.5], [1624.5, 1974.5], [1642.5, 1974.5], [1642.5, 1975.5], [1643.5, 1975.5], [1643.5, 1976.5], [1644.5, 1976.5], [1644.5, 1977.5], [1647.5, 1977.5], [1647.5, 1978.5], [1657.5, 1978.5], [1657.5, 1977.5], [1661.5, 1977.5], [1664.5, 1977.5], [1664.5, 1982.5], [1666.5, 1982.5], [1666.5, 1981.5], [1669.5, 1981.5], [1669.5, 1982.5], [1671.5, 1982.5], [1671.5, 1977.5], [1673.5, 1977.5], [1673.5, 1975.5], [1675.5, 1975.5], [1675.5, 1985.5], [1672.5, 1987.5], [1672.5, 1989.5], [1674.5, 1990.5], [1678.5, 1990.5], [1680.5, 1988.5], [1680.5, 1987.5], [1677.5, 1985.5], [1677.5, 1974.5], [1679.5, 1974.5], [1679.5, 1977.5], [1682.5, 1977.5], [1682.5, 1978.5], [1683.5, 1978.5], [1683.5, 1999.5], [1601.5, 1999.5]]}, -{"id": "twthsq", "submitted_by": "rikupone", "name": "Constantiam", "description": "The logo and motto of a Minecraft anarchy server called Constantiam.\n\n(information below added by Constantiam team members after initial submission)\n\nSee X1800 Y42 for an extended historical reference\n\nSecond location captured after this whole region was blue-wiped by somebody. We just needed a place that'd be large enough for the whole domain \u00af\\_(\u30c4)_/\u00af", "website": "https://constantiam.net", "subreddit": "/r/constantiam", "center": [52.5, 1026.5], "path": [[35.5, 1019.5], [35.5, 1013.5], [57.5, 1013.5], [57.5, 1027.5], [88.5, 1027.5], [88.5, 1032.5], [55.5, 1032.5], [55.5, 1037.5], [41.5, 1037.5], [41.5, 1034.5], [35.5, 1034.5], [35.5, 1032.5], [34.5, 1032.5], [34.5, 1019.5]]}, -{"id": "twthnn", "submitted_by": "Smivyhidev", "name": "Headcrab", "description": "A parasitic alien organism from the Half Life game series.", "website": "https://www.half-life.com", "subreddit": "/r/HalfLife", "center": [1550.5, 92.5], "path": [[1545.5, 86.5], [1545.5, 85.5], [1552.5, 85.5], [1552.5, 86.5], [1555.5, 86.5], [1555.5, 87.5], [1556.5, 87.5], [1556.5, 89.5], [1557.5, 89.5], [1557.5, 91.5], [1558.5, 91.5], [1559.5, 91.5], [1559.5, 93.5], [1560.5, 93.5], [1560.5, 98.5], [1557.5, 98.5], [1557.5, 97.5], [1556.5, 97.5], [1556.5, 95.5], [1555.5, 95.5], [1555.5, 94.5], [1554.5, 95.5], [1552.5, 95.5], [1552.5, 98.5], [1549.5, 98.5], [1549.5, 97.5], [1546.5, 97.5], [1546.5, 94.5], [1545.5, 94.5], [1545.5, 95.5], [1544.5, 95.5], [1545.5, 96.5], [1545.5, 97.5], [1544.5, 97.5], [1540.5, 97.5], [1540.5, 94.5], [1540.5, 93.5], [1541.5, 93.5], [1541.5, 91.5], [1542.5, 91.5], [1542.5, 88.5], [1543.5, 88.5], [1543.5, 87.5], [1544.5, 87.5], [1544.5, 86.5]]}, -{"id": "twthls", "submitted_by": "Mr_KingConn", "name": "Just a small turtle", "description": "I wanted to make a small turtle somewhere, so I did. -Connor (u/MrKingConn)", "website": "https://en.wikipedia.org/wiki/Turtle", "subreddit": "", "center": [949.5, 682.5], "path": [[947.5, 683.5], [947.5, 681.5], [950.5, 681.5], [950.5, 683.5], [947.5, 683.5]]}, -{"id": "twth60", "submitted_by": "MarauLePequenaud", "name": "Thomas Pesquet", "description": "Thomas Pesquet is a French European Space Agency astronaut. He was selected by ESA as a candidate in 2009 and successfully completed two 6-months missions in space aboard the International Space Station in 2017 and 2021.", "website": "https://en.wikipedia.org/wiki/Thomas_Pesquet", "subreddit": "/r/placefrance", "center": [140.5, 1709.5], "path": [[112.5, 1714.5], [129.5, 1704.5], [128.5, 1696.5], [126.5, 1692.5], [125.5, 1688.5], [122.5, 1685.5], [119.5, 1679.5], [119.5, 1675.5], [119.5, 1657.5], [127.5, 1648.5], [145.5, 1647.5], [155.5, 1652.5], [158.5, 1657.5], [160.5, 1673.5], [161.5, 1675.5], [160.5, 1679.5], [158.5, 1683.5], [155.5, 1683.5], [155.5, 1694.5], [156.5, 1696.5], [163.5, 1706.5], [166.5, 1706.5], [167.5, 1759.5], [112.5, 1760.5], [112.5, 1714.5]]}, -{"id": "twth4a", "submitted_by": "Renarii", "name": "Uma Musume Pretty Derby", "description": "App logo for Uma Musume Pretty Derby, a gacha game about training horse girl idols to participate in horse races. Developed by Cygames.", "website": "https://umamusume.jp/", "subreddit": "/r/UmaMusume", "center": [1723.5, 1760.5], "path": [[1710.5, 1747.5], [1736.5, 1747.5], [1736.5, 1773.5], [1710.5, 1773.5], [1710.5, 1747.5]]}, -{"id": "twth2c", "submitted_by": "Auegro", "name": "Flag of Senegal", "description": "", "website": "", "subreddit": "/r/senegal", "center": [208.5, 1255.5], "path": [[190.5, 1246.5], [190.5, 1264.5], [226.5, 1265.5], [225.5, 1246.5], [190.5, 1246.5], [191.5, 1247.5], [191.5, 1247.5]]}, -{"id": "twtgzo", "submitted_by": "AstronomerDan", "name": "Mira Calix Memorial", "description": "Mira Calix is a south-African musician who creates electronic and classical music, she has recently died on March 28, 2022. Her death has not been disclosedn", "website": "", "subreddit": "", "center": [1295.5, 491.5], "path": [[1288.5, 488.5], [1288.5, 495.5], [1302.5, 495.5], [1303.5, 488.5], [1303.5, 488.5]]}, -{"id": "twtgtg", "submitted_by": "Kinocokoutei", "name": "Yuru Camp△ (anime)", "description": "Yuru Camp (aka Laid-Back Camp/ゆるキャン△) is an anime about teenage girls that take camping trips in the Japanese countryside. They enjoy delicious meals and beautiful sceneries together.", "website": "https://anilist.co/anime/98444/Yuru-Camp/", "subreddit": "/r/yurucamp", "center": [1351.5, 1965.5], "path": [[1328.5, 1971.5], [1334.5, 1958.5], [1361.5, 1958.5], [1365.5, 1963.5], [1375.5, 1963.5], [1375.5, 1971.5]]}, -{"id": "twtgsq", "submitted_by": "TheSameRareGuy", "name": "Hoshimachi Suisei", "description": "A pixel art of Hoshimachi Suisei, a member of Hololive (Gen. 0)", "website": "https://hololive.hololivepro.com/en/talents/hoshimachi-suisei/", "subreddit": "/r/HoshimachiSuisei, /r/Hololive", "center": [1479.5, 1101.5], "path": [[1494.5, 1075.5], [1488.5, 1075.5], [1487.5, 1077.5], [1478.5, 1077.5], [1477.5, 1078.5], [1476.5, 1078.5], [1475.5, 1079.5], [1474.5, 1082.5], [1474.5, 1084.5], [1472.5, 1084.5], [1470.5, 1085.5], [1466.5, 1088.5], [1465.5, 1091.5], [1463.5, 1091.5], [1462.5, 1092.5], [1467.5, 1094.5], [1468.5, 1096.5], [1468.5, 1100.5], [1468.5, 1103.5], [1464.5, 1103.5], [1462.5, 1103.5], [1456.5, 1104.5], [1452.5, 1107.5], [1452.5, 1120.5], [1500.5, 1120.5], [1499.5, 1115.5], [1498.5, 1113.5], [1493.5, 1113.5], [1493.5, 1106.5], [1501.5, 1106.5], [1500.5, 1096.5], [1496.5, 1091.5], [1496.5, 1085.5], [1499.5, 1082.5]]}, -{"id": "twtgq8", "submitted_by": "g432kjzhg52176tdasuj", "name": "Game Theory", "description": "A logo of the Youtube Channel Game Theory, including the colors of related channels Film Theory, Food Theory (and Theory Theory, an inside joke). The channels are created by Matthew Patrick, a.k.a. MatPat", "website": "https://www.youtube.com/channel/UCo_IB5145EVNcf8hw1Kku7w", "subreddit": "/r/GameTheorists", "center": [883.5, 1808.5], "path": [[874.5, 1799.5], [891.5, 1799.5], [891.5, 1816.5], [874.5, 1816.5], [874.5, 1799.5]]}, -{"id": "twtgq7", "submitted_by": "Defu5er", "name": "The flag of BIH", "description": "The flag of BIH including the Stari Most, Bosanski Ljiljan, Vučko and a memorial for the victim of the Srebrenica genocide.", "website": "", "subreddit": "/r/bih", "center": [348.5, 760.5], "path": [[363.5, 732.5], [352.5, 732.5], [352.5, 743.5], [321.5, 743.5], [321.5, 780.5], [373.5, 780.5], [373.5, 740.5], [363.5, 740.5], [363.5, 732.5]]}, -{"id": "twtgnj", "submitted_by": "Ollabear", "name": "Moon man", "description": "A man on the moon, drinking a Heineken beer. Collab between r/Superstonk and r/PlaceNL", "website": "", "subreddit": "/r/Superstonk, /r/PlaceNL", "center": [1991.5, 17.5], "path": [[1983.5, 6.5], [1997.5, 6.5], [1999.5, 28.5], [1985.5, 27.5], [1983.5, 6.5]]}, -{"id": "twtgek", "submitted_by": "Bisonratte", "name": "Fish Cult Crab Tank", "description": "A group of people trying to build little fish on r/place", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1436.5, 954.5], "path": [[1419.5, 949.5], [1419.5, 951.5], [1420.5, 951.5], [1420.5, 952.5], [1421.5, 952.5], [1421.5, 953.5], [1422.5, 953.5], [1422.5, 955.5], [1421.5, 955.5], [1421.5, 958.5], [1422.5, 958.5], [1422.5, 959.5], [1451.5, 959.5], [1451.5, 949.5], [1419.5, 949.5]]}, -{"id": "twtgat", "submitted_by": "CalmCollectedOmega", "name": "Psy Fly", "description": "A tier 4 passive item that was added in The Binding of Isaac from the Repentance DLC.", "website": "", "subreddit": "", "center": [771.5, 1961.5], "path": [[763.5, 1958.5], [763.5, 1958.5], [762.5, 1959.5], [762.5, 1962.5], [763.5, 1963.5], [765.5, 1963.5], [765.5, 1964.5], [766.5, 1965.5], [766.5, 1966.5], [767.5, 1967.5], [768.5, 1967.5], [769.5, 1968.5], [772.5, 1968.5], [773.5, 1967.5], [774.5, 1967.5], [775.5, 1966.5], [775.5, 1965.5], [776.5, 1964.5], [777.5, 1964.5], [778.5, 1963.5], [779.5, 1963.5], [780.5, 1962.5], [780.5, 1959.5], [779.5, 1958.5], [778.5, 1957.5], [775.5, 1957.5], [774.5, 1958.5], [773.5, 1957.5], [773.5, 1956.5], [772.5, 1955.5], [771.5, 1954.5], [771.5, 1953.5], [771.5, 1952.5], [772.5, 1951.5], [772.5, 1950.5], [771.5, 1949.5], [772.5, 1950.5], [772.5, 1951.5], [771.5, 1952.5], [770.5, 1953.5], [770.5, 1954.5], [769.5, 1954.5], [769.5, 1955.5], [770.5, 1955.5], [770.5, 1956.5], [769.5, 1957.5], [768.5, 1958.5], [767.5, 1958.5], [766.5, 1958.5], [766.5, 1957.5], [765.5, 1957.5], [764.5, 1957.5], [764.5, 1957.5], [763.5, 1958.5]]}, -{"id": "twtg7l", "submitted_by": "RaceGhost47", "name": "Alex Yiik", "description": "Alex Yiik from the postmodern rpg YIIK, built by viewers at twitch.tv/Altrive", "website": "https://www.twitch.tv/altrive", "subreddit": "/r/Altrive", "center": [51.5, 1109.5], "path": [[41.5, 1096.5], [60.5, 1096.5], [60.5, 1121.5], [41.5, 1121.5]]}, -{"id": "twtg72", "submitted_by": "_Kaiji__", "name": "DankPods", "description": "Australian YouTuber covering iPods, headphones & other things related to audio", "website": "https://www.youtube.com/c/DankPods", "subreddit": "/r/dankpods", "center": [1426.5, 835.5], "path": [[1406.5, 840.5], [1406.5, 839.5], [1404.5, 838.5], [1403.5, 833.5], [1408.5, 831.5], [1448.5, 831.5], [1450.5, 832.5], [1450.5, 834.5], [1445.5, 840.5], [1406.5, 840.5]]}, -{"id": "twtg2q", "submitted_by": "_SoySauce", "name": "Genos", "description": "Genos, an S-rank hero and cyborg as well as a student of Saitama (right). From the anime One Punch Man.", "website": "", "subreddit": "/r/OnePunchMan_place", "center": [1942.5, 1566.5], "path": [[1923.5, 1562.5], [1938.5, 1556.5], [1940.5, 1556.5], [1945.5, 1559.5], [1951.5, 1559.5], [1954.5, 1556.5], [1959.5, 1562.5], [1959.5, 1567.5], [1963.5, 1567.5], [1964.5, 1568.5], [1964.5, 1570.5], [1963.5, 1574.5], [1922.5, 1574.5], [1922.5, 1562.5]]}, -{"id": "twtftt", "submitted_by": "Destructo_NOR", "name": "Flag of the Sámi people", "description": "The Sámi people are a Finno-Ugric-speaking people inhabiting the region of Sápmi (formerly known as Lapland), which today encompasses large northern parts of Norway, Sweden, Finland, and of the Murmansk Oblast, Russia.", "website": "https://en.wikipedia.org/wiki/S%C3%A1mi", "subreddit": "/r/place_nordicunion, /r/SaamiPeople", "center": [500.5, 64.5], "path": [[474.5, 35.5], [473.5, 92.5], [527.5, 93.5], [527.5, 38.5], [525.5, 35.5], [501.5, 35.5], [501.5, 33.5], [500.5, 32.5], [500.5, 31.5], [498.5, 31.5], [497.5, 32.5], [496.5, 32.5], [495.5, 32.5], [493.5, 31.5], [492.5, 31.5], [491.5, 32.5], [490.5, 33.5], [490.5, 35.5], [478.5, 35.5], [473.5, 35.5]]}, -{"id": "twtfpm", "submitted_by": "rikupone", "name": "Aar's Blue Cat", "description": "The blue cat character of a content creator called Aar. Organised and defended by his Discord server.", "website": "https://aarmastah.xyz", "subreddit": "/r/aarmastah", "center": [61.5, 996.5], "path": [[57.5, 999.5], [64.5, 999.5], [64.5, 992.5], [63.5, 992.5], [63.5, 993.5], [57.5, 993.5]]}, -{"id": "twtfmn", "submitted_by": "Smithers888", "name": "Tiny TARDIS", "description": "A group of people from r/TinyTardis gained permission from the My Little Pony faction at r/MyLittlePony to create a small version of the TARDIS, a time machine from the British sci-fi show 'Doctor Who', next to one of their spots. This is a continuity from the original 2017 r/place where the MLP community had helped to create and protect a small TARDIS next to their sleeping Rainbow Dash artwork as well.", "website": "https://en.wikipedia.org/wiki/TARDIS", "subreddit": "/r/tinytardis", "center": [1612.5, 254.5], "path": [[1611.5, 248.5], [1609.5, 250.5], [1609.5, 260.5], [1615.5, 260.5], [1615.5, 250.5], [1613.5, 248.5], [1611.5, 248.5]]}, -{"id": "twtfa1", "submitted_by": "Fsdmnt", "name": "Tribute to Zafinho", "description": "A tribute to the late French twitter influencer @Zafinho. Contribution made by his friend Pierre Lapin and its viewers.", "website": "https://twitter.com/Zafinho", "subreddit": "", "center": [932.5, 1501.5], "path": [[916.5, 1495.5], [916.5, 1495.5], [945.5, 1495.5], [946.5, 1495.5], [947.5, 1495.5], [947.5, 1506.5], [916.5, 1506.5], [916.5, 1505.5], [916.5, 1503.5]]}, -{"id": "twtf9j", "submitted_by": "Calsymen", "name": "Amogus", "description": "Amogusn", "website": "", "subreddit": "", "center": [1798.5, 790.5], "path": [[1802.5, 798.5], [1802.5, 793.5], [1805.5, 793.5], [1805.5, 786.5], [1803.5, 786.5], [1802.5, 784.5], [1800.5, 782.5], [1795.5, 782.5], [1792.5, 783.5], [1790.5, 787.5], [1792.5, 789.5], [1792.5, 798.5]]}, -{"id": "twtf87", "submitted_by": "Zwamdurkel", "name": "Kotori", "description": "This small bird is a mascot for Hololive English VTuber Takanashi Kiara.", "website": "https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww", "subreddit": "/r/Hololive", "center": [1398.5, 942.5], "path": [[1393.5, 948.5], [1393.5, 936.5], [1403.5, 936.5], [1403.5, 948.5]]}, -{"id": "twtf76", "submitted_by": "MiguJib", "name": "Kosovo", "description": "The flag of Kosovo", "website": "", "subreddit": "/r/kosovo", "center": [326.5, 290.5], "path": [[317.5, 283.5], [317.5, 297.5], [334.5, 297.5], [334.5, 283.5], [334.5, 283.5]]}, -{"id": "twtf05", "submitted_by": "gigamicro", "name": "Estradiol tablet", "description": "A popular method of MTF (male-to-female) hormone therapy. Dissolve under tongue for best results.", "website": "https://en.wikipedia.org/wiki/Estradiol", "subreddit": "/r/TransPlace", "center": [524.5, 447.5], "path": [[517.5, 446.5], [519.5, 444.5], [520.5, 444.5], [521.5, 443.5], [526.5, 443.5], [527.5, 444.5], [528.5, 444.5], [530.5, 446.5], [530.5, 447.5], [528.5, 449.5], [527.5, 449.5], [526.5, 450.5], [521.5, 450.5], [520.5, 449.5], [519.5, 449.5], [517.5, 447.5]]}, -{"id": "twtez1", "submitted_by": "BorendeBuurman", "name": "Poké Balls", "description": "A row of different Poké Balls, devices used to catch Pokémon. Also included is a Shiny Voltorb, a Pokémon that disguises itself as a Poké Ball.", "website": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9_Ball", "subreddit": "/r/pokemon", "center": [1013.5, 708.5], "path": [[906.5, 714.5], [906.5, 702.5], [1123.5, 702.5], [1123.5, 705.5], [1118.5, 708.5], [1117.5, 714.5]]}, -{"id": "twteuv", "submitted_by": "adr676", "name": "Snakeroom", "description": "The logo and website of the Snakeroom group, a group dedicated to solving and discussing Reddit's yearly April Fools events and official Reddit-run ARGs — both before and while they happen.", "website": "https://snakeroom.org", "subreddit": "/r/snakeroomalliance", "center": [1784.5, 1192.5], "path": [[1764.5, 1208.5], [1764.5, 1191.5], [1772.5, 1191.5], [1772.5, 1189.5], [1771.5, 1188.5], [1771.5, 1184.5], [1773.5, 1182.5], [1774.5, 1182.5], [1775.5, 1181.5], [1775.5, 1179.5], [1776.5, 1178.5], [1777.5, 1177.5], [1778.5, 1176.5], [1779.5, 1175.5], [1796.5, 1175.5], [1797.5, 1176.5], [1798.5, 1176.5], [1803.5, 1181.5], [1803.5, 1182.5], [1804.5, 1183.5], [1804.5, 1190.5], [1803.5, 1191.5], [1803.5, 1192.5], [1800.5, 1195.5], [1799.5, 1197.5], [1798.5, 1198.5], [1797.5, 1199.5], [1796.5, 1201.5], [1796.5, 1202.5], [1795.5, 1203.5], [1795.5, 1208.5]]}, -{"id": "twteuc", "submitted_by": "SnowConure", "name": "Rapid Rabid", "description": "Rapid Rabid is a friend group from sweden who hangout in discord shitposting memes about Gebbos, the character on the canvas.", "website": "", "subreddit": "", "center": [709.5, 1682.5], "path": [[701.5, 1688.5], [701.5, 1675.5], [715.5, 1675.5], [715.5, 1681.5], [716.5, 1682.5], [717.5, 1683.5], [718.5, 1684.5], [718.5, 1688.5]]}, -{"id": "twteqz", "submitted_by": "Calsymen", "name": "JL Logo", "description": "Logo from the JL (Jobless) community lead by streamers like JL Tomy or JL Amarun", "website": "", "subreddit": "", "center": [1864.5, 79.5], "path": [[1850.5, 93.5], [1850.5, 64.5], [1877.5, 64.5], [1877.5, 93.5]]}, -{"id": "twtegl", "submitted_by": "DG_TBHItzDG", "name": "Corpse Husband", "description": "Mural of Corpse Husband, a YouTuber, streamer and musician. Artwork is based off the animation of Corpse in his song Agoraphobic.", "website": "https://www.youtube.com/c/CorpseHusband", "subreddit": "/r/CorpseHusband", "center": [1259.5, 1042.5], "path": [[1269.5, 1004.5], [1285.5, 1004.5], [1285.5, 1071.5], [1261.5, 1072.5], [1257.5, 1075.5], [1255.5, 1081.5], [1243.5, 1081.5], [1238.5, 1075.5], [1234.5, 1071.5], [1229.5, 1070.5], [1225.5, 1069.5], [1225.5, 1057.5], [1234.5, 1039.5], [1235.5, 1031.5], [1244.5, 1024.5], [1246.5, 1013.5], [1247.5, 1005.5], [1257.5, 1002.5], [1267.5, 1004.5], [1279.5, 1004.5]]}, -{"id": "twtedw", "submitted_by": "litterally_who6354", "name": "Manchester United", "description": "Popular Football/Soccer team", "website": "", "subreddit": "/r/manchester", "center": [1640.5, 663.5], "path": [[1620.5, 637.5], [1654.5, 637.5], [1654.5, 638.5], [1655.5, 638.5], [1655.5, 639.5], [1656.5, 639.5], [1656.5, 640.5], [1658.5, 640.5], [1658.5, 639.5], [1659.5, 639.5], [1659.5, 638.5], [1660.5, 638.5], [1660.5, 637.5], [1660.5, 689.5], [1620.5, 688.5]]}, -{"id": "twte9r", "submitted_by": "srmark", "name": "Hungarian flag and artwork", "description": "The second flag built by the hungarian community on the canvas", "website": "", "subreddit": "/r/hungary", "center": [1334.5, 265.5], "path": [[1171.5, 251.5], [1171.5, 279.5], [1496.5, 278.5], [1496.5, 250.5]]}, -{"id": "twte6v", "submitted_by": "-beam", "name": "Art Deco pattern", "description": "A tribute to art deco architectue in Belgium", "website": "", "subreddit": "/r/belgium", "center": [1307.5, 801.5], "path": [[1281.5, 773.5], [1333.5, 773.5], [1332.5, 829.5], [1332.5, 829.5], [1282.5, 829.5], [1282.5, 775.5]]}, -{"id": "twte5n", "submitted_by": "TroFacing", "name": "Escape From Tarkov", "description": "Escape from Tarkov is a hardcore and realistic online first-person action RPG/Simulator with MMO features.nThe picture is of the helmet of the ingame boss Killa.", "website": "https://www.escapefromtarkov.com/", "subreddit": "/r/EscapefromTarkov", "center": [1976.5, 464.5], "path": [[1966.5, 490.5], [1966.5, 488.5], [1965.5, 487.5], [1965.5, 486.5], [1964.5, 485.5], [1964.5, 484.5], [1956.5, 476.5], [1956.5, 474.5], [1955.5, 473.5], [1955.5, 471.5], [1954.5, 470.5], [1953.5, 469.5], [1953.5, 458.5], [1954.5, 457.5], [1954.5, 456.5], [1955.5, 455.5], [1955.5, 454.5], [1956.5, 453.5], [1956.5, 451.5], [1957.5, 450.5], [1957.5, 448.5], [1961.5, 444.5], [1962.5, 444.5], [1962.5, 443.5], [1965.5, 443.5], [1966.5, 442.5], [1968.5, 442.5], [1968.5, 441.5], [1981.5, 441.5], [1982.5, 442.5], [1984.5, 442.5], [1985.5, 443.5], [1987.5, 443.5], [1991.5, 447.5], [1991.5, 448.5], [1992.5, 448.5], [1994.5, 450.5], [1994.5, 452.5], [1995.5, 453.5], [1996.5, 453.5], [1996.5, 456.5], [1997.5, 457.5], [1998.5, 458.5], [1998.5, 481.5], [1977.5, 481.5], [1977.5, 490.5], [1966.5, 490.5]]}, -{"id": "twte4k", "submitted_by": "litterally_who6354", "name": "Paimon", "description": "Mascot character of Genshin Impact. The blue stars are called Primogems and are the premium currency of the game.", "website": "", "subreddit": "/r/GenshinPlace, /r/Genshin_Impact", "center": [1854.5, 743.5], "path": [[1834.5, 741.5], [1838.5, 738.5], [1837.5, 736.5], [1836.5, 735.5], [1837.5, 734.5], [1838.5, 734.5], [1838.5, 730.5], [1838.5, 729.5], [1837.5, 729.5], [1837.5, 727.5], [1836.5, 727.5], [1837.5, 726.5], [1872.5, 726.5], [1872.5, 760.5], [1872.5, 759.5], [1871.5, 759.5], [1869.5, 759.5], [1868.5, 759.5], [1868.5, 760.5], [1868.5, 759.5], [1865.5, 759.5], [1860.5, 759.5], [1859.5, 761.5], [1850.5, 761.5], [1849.5, 761.5], [1849.5, 762.5], [1849.5, 761.5], [1849.5, 759.5], [1843.5, 759.5], [1843.5, 760.5], [1841.5, 760.5], [1841.5, 759.5], [1837.5, 759.5], [1839.5, 756.5], [1839.5, 755.5], [1834.5, 749.5], [1836.5, 746.5], [1837.5, 744.5]]}, -{"id": "twte2s", "submitted_by": "Mevarit", "name": "Peepo the dog", "description": "Dog of the streamer Leon from the collective bonjwa. Peepo is a very good boy and likes to sniff Mike.", "website": "https://www.twitch.tv/bonjwa", "subreddit": "/r/bonjwade", "center": [1530.5, 1261.5], "path": [[1517.5, 1250.5], [1542.5, 1250.5], [1542.5, 1273.5], [1522.5, 1273.5], [1522.5, 1271.5], [1519.5, 1271.5], [1519.5, 1257.5], [1517.5, 1257.5], [1517.5, 1250.5]]}, -{"id": "twte0y", "submitted_by": "Blizhazard", "name": "Chibi Holostars", "description": "Chibi figures of 3 members of Holostars, which is a male branch of Hololive. From top to bottom: Hanasaki Miyabi, Astel Leda and Kageyama Shien.", "website": "https://holostars.hololivepro.com/en/", "subreddit": "/r/holostars, /r/Hololive", "center": [1397.5, 915.5], "path": [[1395.5, 903.5], [1401.5, 903.5], [1402.5, 904.5], [1402.5, 926.5], [1394.5, 926.5], [1393.5, 924.5], [1392.5, 924.5], [1392.5, 911.5], [1393.5, 904.5], [1393.5, 904.5]]}, -{"id": "twtdul", "submitted_by": "litterally_who6354", "name": "Quackity", "description": "Toontown avatar of Minecraft YouTuber and streamer Quackity. Built by /r/Quackity, /r/ToonTown, Quacktwt, and Patitotwt", "website": "https://youtube.fandom.com/wiki/Quackity", "subreddit": "/r/quackity, /r/Toontown", "center": [819.5, 1263.5], "path": [[786.5, 1225.5], [786.5, 1300.5], [852.5, 1300.5], [852.5, 1225.5]]}, -{"id": "twtdk5", "submitted_by": "ptitcoeeurrr", "name": "HHUT", "description": "HHUT, AKA Hip-Hop Ultimate Team. The small French community found their little heaven to place the logo. nnHip-Hop Ultimate Team is for all people who like rap and hip-hop. They are making real cards playable based on artists (Drake, Kanye West, Eminem...).", "website": "https://hhut.fr", "subreddit": "", "center": [1127.5, 1872.5], "path": [[1120.5, 1881.5], [1135.5, 1882.5], [1135.5, 1863.5], [1120.5, 1863.5], [1119.5, 1863.5], [1120.5, 1864.5], [1120.5, 1864.5], [1119.5, 1875.5], [1120.5, 1880.5]]}, -{"id": "twtdep", "submitted_by": "litterally_who6354", "name": "Kasane Teto", "description": "Kasane Teto is a character and voicebank for the singing synthesizer program UTAU, often used in music. Coincidentally, like r/place, Teto was originally an April Fool's joke.", "website": "", "subreddit": "/r/utau", "center": [1816.5, 651.5], "path": [[1806.5, 638.5], [1806.5, 642.5], [1805.5, 642.5], [1805.5, 646.5], [1805.5, 647.5], [1806.5, 647.5], [1806.5, 648.5], [1808.5, 648.5], [1808.5, 656.5], [1807.5, 656.5], [1807.5, 664.5], [1825.5, 664.5], [1825.5, 638.5]]}, -{"id": "twtde8", "submitted_by": "DrakeScoTT123", "name": "Fattypillow", "description": "Popular czech YouTuber and streamer!", "website": "", "subreddit": "/r/Fattypillow", "center": [1568.5, 1241.5], "path": [[1536.5, 1233.5], [1599.5, 1233.5], [1599.5, 1249.5], [1536.5, 1249.5], [1536.5, 1249.5], [1536.5, 1233.5]]}, -{"id": "twtday", "submitted_by": "Dry-Acanthopterygii9", "name": "Mizutsune", "description": "This is the icon of Mizutsune, a popular monster from the Monster Hunter series. It has appeared in several Monster Hunter games and is beloved by its fans for its colourful apperance and the ability to produce bubbles, which led to the nickname \"bubble fox\". In the top-right corner, the initials of the game can be seen. They are written in the color scheme of the France flag, in memoriam of the small neighboring France flag, which was destroyed towards the end. This artwork was allied with the Destiny artwork above, the vegan banner to the left and with the BazzaGazza logo on the right. The whole story can be read here: https://www.reddit.com/r/monster_hunter_place/comments/twx9yq/looking_back_on_rplace_2022_the_full_timeline/", "website": "https://monsterhunter.fandom.com/wiki/Mizutsune", "subreddit": "/r/MonsterHunter", "center": [1891.5, 1581.5], "path": [[1908.5, 1562.5], [1908.5, 1600.5], [1874.5, 1600.5], [1875.5, 1562.5]]}, -{"id": "twtd6i", "submitted_by": "FlonflonMusique", "name": "Star Academy (reste du logo)", "description": "Les restes du logo Star Academy (rip petitanj) créé le 04/04/2022 par les doux dingues sur la chaîne Flonflon_musique", "website": "https://twitch.tv/flonflon_musique", "subreddit": "", "center": [1047.5, 1320.5], "path": [[1040.5, 1315.5], [1038.5, 1331.5], [1053.5, 1332.5], [1055.5, 1302.5]]}, -{"id": "twtd4j", "submitted_by": "Calsymen", "name": "Shiny Chatot", "description": "Chatot is a Normal/Flying-type Pokémon from the fourth generation. This Chatot is Shiny, with pink wings instead of the usual blue.", "website": "https://bulbapedia.bulbagarden.net/wiki/Chatot_(Pok%C3%A9mon)", "subreddit": "/r/pokemon", "center": [81.5, 754.5], "path": [[72.5, 743.5], [91.5, 744.5], [90.5, 764.5], [73.5, 764.5]]}, -{"id": "twtd3k", "submitted_by": "fortis_99", "name": "Girls Frontline", "description": "Logo of Girls Frontline, a tactical gacha game. Featuring anime android girls representing firearms.", "website": "https://gf.sunborngame.com/", "subreddit": "/r/GirlsFrontline", "center": [1778.5, 729.5], "path": [[1765.5, 725.5], [1769.5, 725.5], [1771.5, 722.5], [1768.5, 720.5], [1768.5, 717.5], [1769.5, 717.5], [1769.5, 715.5], [1768.5, 715.5], [1768.5, 711.5], [1769.5, 711.5], [1770.5, 710.5], [1771.5, 710.5], [1772.5, 707.5], [1772.5, 708.5], [1775.5, 705.5], [1776.5, 705.5], [1780.5, 709.5], [1780.5, 711.5], [1779.5, 711.5], [1779.5, 713.5], [1781.5, 716.5], [1783.5, 717.5], [1784.5, 720.5], [1785.5, 723.5], [1787.5, 726.5], [1790.5, 725.5], [1790.5, 737.5], [1790.5, 742.5], [1790.5, 747.5], [1788.5, 747.5], [1787.5, 748.5], [1783.5, 747.5], [1783.5, 747.5], [1782.5, 746.5], [1780.5, 745.5], [1776.5, 745.5], [1774.5, 744.5], [1772.5, 743.5], [1771.5, 740.5], [1770.5, 739.5], [1771.5, 738.5], [1770.5, 738.5], [1772.5, 737.5], [1765.5, 737.5], [1765.5, 737.5]]}, -{"id": "twtd2d", "submitted_by": "Turboboobs3000", "name": "TWRP", "description": "TWRP is a groovy band check this out", "website": "https://www.youtube.com/watch?v=AmRAl1k9DFA&list=PL4yDUqY9uMwiRXSzsZiwFLWJ6dS5f_Hya", "subreddit": "", "center": [1046.5, 1767.5], "path": [[1041.5, 1754.5], [1041.5, 1753.5], [1052.5, 1753.5], [1055.5, 1755.5], [1059.5, 1760.5], [1061.5, 1765.5], [1061.5, 1772.5], [1059.5, 1776.5], [1057.5, 1778.5], [1051.5, 1779.5], [1037.5, 1779.5], [1034.5, 1776.5], [1032.5, 1771.5], [1033.5, 1761.5], [1037.5, 1756.5], [1039.5, 1754.5], [1041.5, 1753.5], [1043.5, 1753.5]]}, -{"id": "twtcu7", "submitted_by": "MinorMynah", "name": "The Kenyan flag", "description": "The Kenyan flag - with its signature shield", "website": "", "subreddit": "/r/kenya", "center": [788.5, 999.5], "path": [[781.5, 982.5], [795.5, 982.5], [795.5, 1016.5], [781.5, 1016.5]]}, -{"id": "twtcrq", "submitted_by": "Fishes_Glubs & GamerKingFaiz", "name": "University of California", "description": "University of California - logos are of each individual campus. From left to right, top to bottom: Berkeley, Irvine, San Diego, Santa Cruz, Merced, Santa Barbara, Riverside, Los Angeles, Davis", "website": "https://www.universityofcalifornia.edu/", "subreddit": "/r/UofCalifornia", "center": [1893.5, 346.5], "path": [[1868.5, 321.5], [1917.5, 321.5], [1917.5, 371.5], [1868.5, 371.5]]}, -{"id": "twtcn7", "submitted_by": "chocomint1", "name": "Tetris Perfect Clear Opener", "description": "A recreation of the Tetris Perfect Clear Opener, created by the Placetris community in conjunction with the Gacha Alliance. The PCO is a popular opener with a 84.64% chance to achieve a perfect clear (if the I piece is kept on hold), and is often used in competitive matches due to its ease of setup, speed, and options to continue into other setups (e.g., 5-4 stacking) if the perfect clear fails. This build features 4x4 tetrominoes.", "website": "https://discord.gg/SUdBteaCqd", "subreddit": "/r/Tetris", "center": [1506.5, 1748.5], "path": [[1486.5, 1739.5], [1486.5, 1757.5], [1527.5, 1757.5], [1526.5, 1739.5]]}, -{"id": "twtclw", "submitted_by": "Troloze", "name": "Machado de Assis", "description": "One of the most influencial Brazilian writers of all time, born in 1839, responsible for various titles as Dom Casmurro, Memórias Póstumas de Brás Cubas, and many more.", "website": "https://en.wikipedia.org/wiki/Machado_de_Assis", "subreddit": "/r/brasil", "center": [919.5, 605.5], "path": [[914.5, 616.5], [914.5, 612.5], [913.5, 609.5], [911.5, 608.5], [910.5, 607.5], [910.5, 596.5], [912.5, 595.5], [914.5, 594.5], [922.5, 593.5], [924.5, 594.5], [925.5, 595.5], [926.5, 596.5], [927.5, 599.5], [926.5, 599.5], [926.5, 600.5], [927.5, 602.5], [927.5, 607.5], [927.5, 610.5], [927.5, 613.5], [925.5, 617.5], [922.5, 618.5], [919.5, 619.5], [915.5, 619.5], [914.5, 617.5]]}, -{"id": "twtcdt", "submitted_by": "litterally_who6354", "name": "Steins;Gate cast", "description": "This pixel art represents Okabe Rintaro with his two assistants: Kurisu Makise (girl with red hair) and Mayuri Shiina (girl with the hat) from the visual novel Steins;Gate", "website": "", "subreddit": "/r/steinsgate", "center": [516.5, 1903.5], "path": [[495.5, 1880.5], [495.5, 1908.5], [497.5, 1908.5], [499.5, 1909.5], [500.5, 1911.5], [500.5, 1913.5], [496.5, 1920.5], [496.5, 1923.5], [499.5, 1923.5], [501.5, 1926.5], [536.5, 1927.5], [536.5, 1880.5], [512.5, 1880.5]]}, -{"id": "twtc3e", "submitted_by": "gigamicro", "name": "Enby Blåhaj", "description": "A blåhaj (stuffed shark sold by Ikea) with the non-binary flag on it.", "website": "https://www.ikea.com/us/en/p/blahaj-soft-toy-shark-90373590/", "subreddit": "/r/TransPlace", "center": [579.5, 458.5], "path": [[579.5, 443.5], [575.5, 443.5], [573.5, 445.5], [572.5, 445.5], [572.5, 447.5], [571.5, 447.5], [571.5, 449.5], [570.5, 450.5], [566.5, 450.5], [565.5, 451.5], [562.5, 451.5], [561.5, 452.5], [560.5, 452.5], [558.5, 454.5], [558.5, 458.5], [559.5, 459.5], [559.5, 460.5], [562.5, 463.5], [563.5, 463.5], [565.5, 465.5], [568.5, 465.5], [569.5, 466.5], [574.5, 466.5], [575.5, 467.5], [578.5, 467.5], [579.5, 468.5], [583.5, 468.5], [583.5, 469.5], [589.5, 469.5], [591.5, 467.5], [589.5, 467.5], [588.5, 466.5], [587.5, 465.5], [588.5, 464.5], [590.5, 464.5], [591.5, 463.5], [593.5, 463.5], [594.5, 462.5], [596.5, 462.5], [597.5, 463.5], [602.5, 464.5], [603.5, 463.5], [603.5, 461.5], [600.5, 458.5], [600.5, 454.5], [601.5, 453.5], [601.5, 447.5], [599.5, 447.5], [597.5, 449.5], [597.5, 450.5], [596.5, 451.5], [596.5, 453.5], [594.5, 455.5], [591.5, 455.5], [590.5, 454.5], [589.5, 454.5], [588.5, 453.5], [588.5, 450.5], [586.5, 450.5], [584.5, 452.5], [583.5, 452.5], [582.5, 451.5], [578.5, 451.5], [577.5, 450.5], [577.5, 449.5], [578.5, 448.5], [578.5, 446.5]]}, -{"id": "twtc0e", "submitted_by": "litterally_who6354", "name": "Haru Urara", "description": "Main chaarcter from uma musume, a gacha game for mobile", "website": "", "subreddit": "/r/UmaMusume", "center": [1184.5, 77.5], "path": [[1173.5, 87.5], [1194.5, 87.5], [1194.5, 66.5], [1185.5, 66.5], [1185.5, 65.5], [1183.5, 65.5], [1183.5, 64.5], [1180.5, 64.5], [1178.5, 66.5], [1178.5, 67.5], [1177.5, 67.5], [1177.5, 68.5], [1174.5, 73.5], [1173.5, 76.5]]}, -{"id": "twtbvj", "submitted_by": "DonCrogod", "name": "Lake Balaton", "description": "Freshwater lake in Hungary and the largest lake in Central Europe.", "website": "", "subreddit": "", "center": [1282.5, 267.5], "path": [[1261.5, 274.5], [1287.5, 261.5], [1294.5, 254.5], [1299.5, 260.5], [1298.5, 264.5], [1269.5, 277.5], [1262.5, 278.5]]}, -{"id": "twtbkf", "submitted_by": "TroFacing", "name": "Escape From Tarkov", "description": "Escape from Tarkov is a hardcore and realistic online first-person action RPG/Simulator with MMO features.nThe picture is of a Terragroup LABS keycard from the game.", "website": "https://www.escapefromtarkov.com/", "subreddit": "/r/EscapefromTarkov", "center": [1325.5, 1906.5], "path": [[1300.5, 1900.5], [1366.5, 1900.5], [1366.5, 1906.5], [1326.5, 1906.5], [1326.5, 1916.5], [1300.5, 1916.5]]}, -{"id": "twtb8x", "submitted_by": "Dinosaurin", "name": "MarceloBR Pixelart", "description": "Pixelart of MarceloBR, finally almost in mint condition after multiple Grief Attempts.", "website": "https://twitter.com/marcelo_shiny", "subreddit": "", "center": [1692.5, 1989.5], "path": [[1683.5, 1977.5], [1683.5, 2000.5], [1700.5, 2000.5], [1700.5, 1977.5]]}, -{"id": "twtb6y", "submitted_by": "Hinawe", "name": "Toulouse FC", "description": "IramisTM and Toulouse Football Club made this logo to represent their football club.", "website": "", "subreddit": "", "center": [961.5, 1823.5], "path": [[939.5, 1816.5], [983.5, 1816.5], [984.5, 1830.5], [939.5, 1830.5], [939.5, 1826.5], [939.5, 1824.5], [939.5, 1824.5]]}, -{"id": "twtb2n", "submitted_by": "Paperscollisions", "name": "Technoshrine", "description": "A sign dedicated to the Minecraft YouTuber Technoblade that features one of his main catchphrases ('Technoblade never dies!'), a lavender ribbon to show support towards his fight with cancer, as well as a potato rank #1 sign underneath it to celebrate his victory in the Great Potato War that took place on Hypixel. After the signs were made, the piece quickly grew to include a lot of his friends and fellow creators.", "website": "https://www.youtube.com/channel/UCFAiFyGs6oDiF1Nf-rRJpZA", "subreddit": "/r/technoblade", "center": [175.5, 918.5], "path": [[154.5, 874.5], [154.5, 874.5], [216.5, 874.5], [216.5, 926.5], [195.5, 926.5], [195.5, 963.5], [136.5, 963.5], [136.5, 897.5], [161.5, 897.5], [161.5, 882.5], [154.5, 882.5], [154.5, 874.5]]}, -{"id": "twtarg", "submitted_by": "JackTheFoxOtter", "name": "NeosVR logo", "description": "The logo of the metaverse-engine Neos, constructed by members of its community. During the last hours before the Great Clear, this emblem was established and managed to survive up until the very end thanks to the strong alliance with the buddha.gg community. Stronger than ever before, the two communities fought side-by-side against the final attack of streamer ElSpreen, their defenses holding strong, but in the end this final battle was left undecided as the spread of the Great Clear turned out to be the ultimate winner after all. Still, stories of this epic, final combat will surely be passed down as tales and legends for many generations to come, and the alliance that has been formed on that day will live on even past the all-consuming void.", "website": "https://neos.com/", "subreddit": "/r/NeosVR", "center": [1379.5, 653.5], "path": [[1374.5, 648.5], [1384.5, 648.5], [1384.5, 658.5], [1374.5, 658.5]]}, -{"id": "twtar6", "submitted_by": "Calsymen", "name": "Aston Villa Logo", "description": "Aston Villa Football culb is one of the oldest english club currently in the premier league", "website": "", "subreddit": "/r/AVFC", "center": [631.5, 1700.5], "path": [[642.5, 1716.5], [620.5, 1716.5], [620.5, 1684.5], [642.5, 1685.5]]}, -{"id": "twtaas", "submitted_by": "Chef_Senpai", "name": "Kamisato Ayaka (神里綾華)", "description": "She is the oldest daughter of the Kamisato Clan and sister of Kamisato Ayato", "website": "", "subreddit": "/r/AyakaMains", "center": [1138.5, 1555.5], "path": [[1155.5, 1523.5], [1117.5, 1523.5], [1116.5, 1573.5], [1124.5, 1573.5], [1128.5, 1566.5], [1133.5, 1567.5], [1136.5, 1573.5], [1133.5, 1576.5], [1137.5, 1580.5], [1130.5, 1594.5], [1138.5, 1601.5], [1141.5, 1597.5], [1140.5, 1595.5], [1155.5, 1595.5], [1155.5, 1523.5]]}, -{"id": "twtaar", "submitted_by": "Quadjunge", "name": "Peepo", "description": "Emote from a popular german Twitch channel. It shows the streamers dog, called peepo.nn", "website": "https://www.twitch.tv/bonjwa", "subreddit": "", "center": [1530.5, 1261.5], "path": [[1518.5, 1250.5], [1518.5, 1271.5], [1522.5, 1271.5], [1522.5, 1273.5], [1542.5, 1273.5], [1542.5, 1250.5], [1518.5, 1250.5]]}, -{"id": "twta68", "submitted_by": "MinorMynah", "name": "Flag of Mauritius", "description": "", "website": "", "subreddit": "", "center": [723.5, 1070.5], "path": [[721.5, 1069.5], [722.5, 1069.5], [723.5, 1069.5], [724.5, 1069.5], [725.5, 1069.5], [726.5, 1069.5], [726.5, 1070.5], [721.5, 1070.5], [721.5, 1071.5], [721.5, 1071.5], [722.5, 1071.5], [722.5, 1071.5], [725.5, 1071.5], [726.5, 1072.5], [721.5, 1072.5]]}, -{"id": "twta3t", "submitted_by": "em_tsuj_sti", "name": "Berlin Victory Column with Among Us crewmate", "description": "A column in Berlin erected in 1864 to commemorate the Prussian victory in the Second Schleswig War. Its top, which normally depicts the goddess of victory, was replaced by an Among Us crewmate statue by the Germans themselves because they feared someone would do it either way.", "website": "https://en.wikipedia.org/wiki/Berlin_Victory_Column", "subreddit": "/r/placeDE", "center": [1797.5, 835.5], "path": [[1817.5, 869.5], [1780.5, 869.5], [1780.5, 862.5], [1786.5, 862.5], [1786.5, 850.5], [1791.5, 850.5], [1793.5, 845.5], [1793.5, 804.5], [1791.5, 803.5], [1792.5, 782.5], [1801.5, 782.5], [1803.5, 786.5], [1805.5, 786.5], [1805.5, 793.5], [1802.5, 793.5], [1803.5, 799.5], [1801.5, 805.5], [1801.5, 845.5], [1803.5, 849.5], [1810.5, 850.5], [1809.5, 862.5]]}, -{"id": "twta2u", "submitted_by": "DiamondAirWind", "name": "Super Animal Royale", "description": "A Battle Royale game with cute animals as avatars!", "website": "https://animalroyale.fandom.com/wiki/Super_Animal_Royale_Wiki", "subreddit": "/r/animalroyale", "center": [1375.5, 728.5], "path": [[1364.5, 711.5], [1386.5, 711.5], [1387.5, 746.5], [1364.5, 745.5], [1364.5, 743.5]]}, -{"id": "twt9yw", "submitted_by": "MarauLePequenaud", "name": "Népal", "description": "Népal was a French rapper and beatmaker. He was also known as KLM and Grandmaster Splinter. Népal attached great importance to remaining anonymous, covering his face with a hood or a mask. Népal died on 9 November 2019. The announcement came after 11 days on social networks on 20 November 2019, including the posthumous release of his album Adios Bahamas that he had just completed recording. The circumstances of his death are unknown.", "website": "https://en.wikipedia.org/wiki/N%C3%A9pal_(rapper)", "subreddit": "/r/PlaceFrance", "center": [228.5, 1536.5], "path": [[203.5, 1565.5], [211.5, 1534.5], [217.5, 1510.5], [213.5, 1502.5], [213.5, 1493.5], [212.5, 1493.5], [212.5, 1492.5], [213.5, 1486.5], [217.5, 1483.5], [219.5, 1483.5], [225.5, 1483.5], [230.5, 1488.5], [235.5, 1502.5], [234.5, 1505.5], [241.5, 1512.5], [245.5, 1520.5], [247.5, 1540.5], [247.5, 1577.5], [242.5, 1581.5], [236.5, 1580.5], [225.5, 1570.5], [219.5, 1568.5], [211.5, 1566.5], [203.5, 1566.5], [203.5, 1565.5]]}, -{"id": "twt9xv", "submitted_by": "GladOSkar", "name": "The Expanse", "description": "Hard Sci-Fi Book and TV Series about interplanetary life and politics", "website": "", "subreddit": "/r/theexpanse", "center": [1803.5, 159.5], "path": [[1800.5, 155.5], [1800.5, 142.5], [1819.5, 142.5], [1819.5, 148.5], [1832.5, 148.5], [1832.5, 154.5], [1820.5, 154.5], [1820.5, 171.5], [1777.5, 171.5], [1777.5, 155.5]]}, -{"id": "twt9ky", "submitted_by": "--Xer0--", "name": "Ralsei", "description": "Ralsei is a popular character from the game Deltarune, which was developed by Undertale creator toby fox.", "website": "https://deltarune.com/", "subreddit": "/r/deltarune", "center": [692.5, 795.5], "path": [[685.5, 779.5], [688.5, 780.5], [689.5, 780.5], [689.5, 776.5], [693.5, 776.5], [693.5, 781.5], [696.5, 781.5], [696.5, 780.5], [700.5, 780.5], [700.5, 783.5], [702.5, 785.5], [705.5, 786.5], [705.5, 798.5], [705.5, 800.5], [707.5, 803.5], [706.5, 804.5], [705.5, 805.5], [702.5, 808.5], [694.5, 809.5], [694.5, 813.5], [692.5, 816.5], [685.5, 816.5], [685.5, 812.5], [686.5, 812.5], [686.5, 811.5], [688.5, 811.5], [688.5, 809.5], [684.5, 809.5], [684.5, 808.5], [682.5, 808.5], [682.5, 804.5], [683.5, 804.5], [683.5, 802.5], [682.5, 802.5], [682.5, 801.5], [679.5, 801.5], [679.5, 794.5], [678.5, 793.5], [678.5, 787.5], [678.5, 785.5], [677.5, 784.5], [677.5, 780.5], [678.5, 780.5], [679.5, 780.5], [680.5, 782.5], [681.5, 782.5], [684.5, 779.5], [688.5, 779.5], [688.5, 780.5]]}, -{"id": "twt94s", "submitted_by": "Wodgam", "name": "Mothalisa", "description": "One of the things made by r/Skyplace This one is the character Mothalisa", "website": "https://discord.gg/EVZaHb4HsW", "subreddit": "/r/Skyplace", "center": [1652.5, 1069.5], "path": [[1658.5, 1073.5], [1647.5, 1073.5], [1648.5, 1072.5], [1648.5, 1071.5], [1651.5, 1068.5], [1648.5, 1065.5], [1649.5, 1064.5], [1650.5, 1064.5], [1651.5, 1063.5], [1652.5, 1063.5], [1654.5, 1063.5], [1656.5, 1065.5], [1656.5, 1067.5], [1655.5, 1068.5], [1655.5, 1069.5], [1656.5, 1070.5], [1657.5, 1071.5], [1657.5, 1072.5], [1658.5, 1073.5]]}, -{"id": "twt8ut", "submitted_by": "hypatiaplus", "name": "underscores", "description": "Devon Karpf (Also known as underscores) is an EDM / Hyperpop producer, born in California and based in New York.", "website": "https://twitter.com/underscoresplus", "subreddit": "", "center": [480.5, 734.5], "path": [[463.5, 729.5], [497.5, 729.5], [497.5, 729.5], [497.5, 738.5], [463.5, 738.5], [463.5, 729.5]]}, -{"id": "twt8q8", "submitted_by": "WilliamHutchins", "name": "Lightning McQueen", "description": "Art of the main character from the Disney Pixar Cars Franchise, Lightning McQueen!", "website": "", "subreddit": "", "center": [1686.5, 535.5], "path": [[1679.5, 539.5], [1683.5, 539.5], [1683.5, 540.5], [1686.5, 540.5], [1686.5, 541.5], [1692.5, 541.5], [1693.5, 541.5], [1693.5, 540.5], [1693.5, 540.5], [1694.5, 540.5], [1695.5, 540.5], [1695.5, 539.5], [1695.5, 538.5], [1695.5, 537.5], [1695.5, 536.5], [1695.5, 535.5], [1694.5, 535.5], [1694.5, 534.5], [1693.5, 534.5], [1693.5, 533.5], [1692.5, 533.5], [1692.5, 532.5], [1691.5, 532.5], [1690.5, 532.5], [1690.5, 531.5], [1689.5, 531.5], [1689.5, 530.5], [1688.5, 530.5], [1687.5, 530.5], [1686.5, 530.5], [1685.5, 530.5], [1683.5, 530.5], [1682.5, 530.5], [1681.5, 530.5], [1680.5, 530.5], [1679.5, 530.5], [1678.5, 530.5], [1678.5, 534.5], [1678.5, 537.5], [1678.5, 539.5], [1679.5, 539.5]]}, -{"id": "twt8pb", "submitted_by": "SadChiruno", "name": "ALO", "description": "An inside joke from the Marisad Discord Server that originated from a video that has been spammed by members. It is included here because members thought it'll be funny", "website": "", "subreddit": "/r/Marisad", "center": [1789.5, 881.5], "path": [[1788.5, 875.5], [1788.5, 875.5], [1787.5, 875.5], [1787.5, 875.5], [1790.5, 875.5], [1790.5, 886.5], [1787.5, 886.5]]}, -{"id": "twt8h7", "submitted_by": "DonCrogod", "name": "GIS", "description": "The GIS (Gebühren Info Service) is an Austrian agency responsible for collecting television and radio license fees. Widely loathed in Austria due to its often underhanded tactics and dubious legality, the placement of the logo is more ironic than not.", "website": "", "subreddit": "/r/austria", "center": [872.5, 253.5], "path": [[865.5, 249.5], [879.5, 249.5], [879.5, 257.5], [865.5, 257.5]]}, -{"id": "twt8dp", "submitted_by": "Lambsskin", "name": "Rayman", "description": "A small simplified pixel art of Rayman from the Rayman video game franchise.", "website": "", "subreddit": "/r/rayman", "center": [1699.5, 165.5], "path": [[1703.5, 182.5], [1702.5, 182.5], [1702.5, 183.5], [1701.5, 183.5], [1700.5, 183.5], [1700.5, 182.5], [1699.5, 182.5], [1700.5, 184.5], [1701.5, 184.5], [1702.5, 184.5], [1702.5, 185.5], [1701.5, 185.5], [1699.5, 185.5], [1700.5, 186.5], [1701.5, 186.5], [1702.5, 186.5], [1702.5, 187.5], [1703.5, 187.5], [1700.5, 187.5], [1699.5, 187.5]]}, -{"id": "twt8ag", "submitted_by": "Calsymen", "name": "Dragon stone", "description": "This is a Dragon Stone from the gacha game Dragon Ball Z Dokkan Battle", "website": "", "subreddit": "/r/DBZDokkanBattle", "center": [1965.5, 1456.5], "path": [[1965.5, 1464.5], [1970.5, 1459.5], [1970.5, 1453.5], [1964.5, 1447.5], [1960.5, 1451.5], [1960.5, 1460.5]]}, -{"id": "twt86p", "submitted_by": "MordecaiXLII", "name": "Root", "description": "A Marquise de Cat meeple from the Leder Games boardgame Root", "website": "https://ledergames.com/collections/root", "subreddit": "/r/rootgame", "center": [9.5, 603.5], "path": [[0.5, 589.5], [18.5, 589.5], [18.5, 615.5], [9.5, 615.5], [9.5, 620.5], [0.5, 620.5], [0.5, 589.5]]}, -{"id": "twt7ma", "submitted_by": "Cottons", "name": "Chicago Flag", "description": "Chicago, Illinois, USA - The City's flag and a depiction of the Sears tower.", "website": "https://en.wikipedia.org/wiki/Flag_of_Chicago", "subreddit": "/r/Chicago", "center": [608.5, 405.5], "path": [[595.5, 399.5], [595.5, 410.5], [622.5, 410.5], [622.5, 400.5]]}, -{"id": "twt7em", "submitted_by": "Ciiryion", "name": "C++", "description": "The C++ programming language", "website": "https://www.cplusplus.com/", "subreddit": "/r/cpp", "center": [919.5, 1967.5], "path": [[913.5, 1963.5], [913.5, 1970.5], [925.5, 1970.5], [925.5, 1963.5]]}, -{"id": "twt7db", "submitted_by": "Calsymen", "name": "Logos from Ponce, Rivenzi and Ultia", "description": "The logos from 3 french streamers : Ponce (the flower), Ultia (the rat) and Rivenzi (the brain)", "website": "", "subreddit": "", "center": [279.5, 1534.5], "path": [[262.5, 1517.5], [262.5, 1517.5], [260.5, 1552.5], [298.5, 1550.5], [297.5, 1516.5], [275.5, 1516.5], [279.5, 1517.5], [279.5, 1517.5], [266.5, 1516.5], [265.5, 1516.5], [262.5, 1517.5]]}, -{"id": "twt7bq", "submitted_by": "dragonlordcat", "name": "Croatian checkerboard", "description": "Third instance of the Croatian expansion with the subreddit name and symbols of Croatia.", "website": "https://en.wikipedia.org/wiki/Croatia", "subreddit": "/r/Croatia, /r/place_CentralAlliance", "center": [364.5, 1095.5], "path": [[325.5, 1071.5], [403.5, 1071.5], [403.5, 1118.5], [325.5, 1118.5]]}, -{"id": "twt7b5", "submitted_by": "KrumpleTrash", "name": "Ranboo", "description": "Ranboo is a variety streamer who is most known for his lore in the Minecraft series Dream SMP (survival multiplayer). The boobers stay strong!", "website": "https://twitch.tv/ranboolive", "subreddit": "/r/Ranboo, /r/dreamsmp", "center": [169.5, 895.5], "path": [[165.5, 891.5], [165.5, 898.5], [172.5, 898.5], [172.5, 891.5], [165.5, 891.5]]}, -{"id": "twt7aw", "submitted_by": "invisible_cat0091", "name": "Ralsei", "description": "From the indie game made by Toby Fox, Deltarune.", "website": "https://deltarune.com/", "subreddit": "/r/Deltarune", "center": [1759.5, 230.5], "path": [[1747.5, 248.5], [1747.5, 207.5], [1772.5, 207.5], [1772.5, 249.5], [1767.5, 249.5], [1767.5, 254.5], [1753.5, 254.5], [1752.5, 251.5], [1747.5, 250.5]]}, -{"id": "twt76b", "submitted_by": "ChefSemiColon", "name": "Dana Zane", "description": "Everyone's favourite boss Dana from the game VA-11 Hall-A. Hide your chicken wings.", "website": "https://waifubartending.com/", "subreddit": "/r/waifubartending", "center": [1774.5, 760.5], "path": [[1761.5, 745.5], [1790.5, 745.5], [1790.5, 761.5], [1783.5, 768.5], [1781.5, 778.5], [1765.5, 778.5], [1761.5, 772.5], [1761.5, 745.5]]}, -{"id": "twt6ta", "submitted_by": "MartyStarkiller", "name": "Pico-8 logo", "description": "Pico-8 is a virtual fantasy console developed by Lexaloffle Games, designed to simulate the limitations of old consoles and 8-bit computers from the 80s. This icon was made by the Celeste discord server since the game started as a game jam game for the Pico-8 in 2015. Celeste Classic is included as an easter egg inside the 2018 Celeste release, and a sequel to Celeste Classic (Celeste Classic 2) was released in 2021. It is also known for people pushing the boundaries of its capabilities, such as the 2021 3D modeling tool picoCAD and a port of Doom called Poom. As of right now a successor to Pico-8, the Picotron is in development and it is said to have more features and fewer limitations.", "website": "https://www.lexaloffle.com/pico-8.php", "subreddit": "/r/pico8", "center": [968.5, 856.5], "path": [[966.5, 854.5], [971.5, 854.5], [971.5, 858.5], [969.5, 858.5], [969.5, 859.5], [966.5, 859.5]]}, -{"id": "twt6st", "submitted_by": "Pile00", "name": "Sly Cooper", "description": "a portrait of Sly Cooper, the main character of the serie of video games of the same name", "website": "", "subreddit": "/r/SlyCooper", "center": [14.5, 365.5], "path": [[11.5, 369.5], [11.5, 367.5], [10.5, 367.5], [10.5, 366.5], [9.5, 366.5], [9.5, 363.5], [10.5, 363.5], [10.5, 362.5], [11.5, 362.5], [11.5, 361.5], [12.5, 361.5], [12.5, 360.5], [16.5, 360.5], [16.5, 361.5], [18.5, 361.5], [19.5, 362.5], [18.5, 363.5], [19.5, 364.5], [19.5, 365.5], [18.5, 367.5], [18.5, 369.5], [17.5, 368.5], [16.5, 369.5], [12.5, 369.5]]}, -{"id": "twt6py", "submitted_by": "PaulartAnime", "name": "ESEO Angers FR", "description": "Ecole Superieur d'Electronique de l'Ouestn", "website": "https://eseo.fr/", "subreddit": "", "center": [1407.5, 389.5], "path": [[1418.5, 378.5], [1396.5, 378.5], [1396.5, 400.5], [1418.5, 400.5], [1418.5, 397.5], [1421.5, 397.5], [1421.5, 391.5], [1418.5, 390.5], [1417.5, 378.5]]}, -{"id": "twt6af", "submitted_by": "asder517", "name": "Coat of arms of all the states of Austria", "description": "From the left: Burgenland, Lower Austria, Vienna, Styria, Salzburg, Upper Austria, Carinthia, Tyrol, Vorarlberg.", "website": "", "subreddit": "/r/austria", "center": [1034.5, 253.5], "path": [[998.5, 249.5], [1070.5, 249.5], [1070.5, 255.5], [1067.5, 258.5], [1065.5, 258.5], [1062.5, 255.5], [1059.5, 258.5], [1057.5, 258.5], [1054.5, 255.5], [1051.5, 258.5], [1049.5, 258.5], [1046.5, 255.5], [1043.5, 258.5], [1041.5, 258.5], [1038.5, 255.5], [1035.5, 258.5], [1033.5, 258.5], [1030.5, 255.5], [1027.5, 258.5], [1025.5, 258.5], [1022.5, 255.5], [1019.5, 258.5], [1017.5, 258.5], [1014.5, 255.5], [1011.5, 258.5], [1009.5, 258.5], [1006.5, 255.5], [1003.5, 258.5], [1001.5, 258.5], [998.5, 255.5], [998.5, 249.5]]}, -{"id": "twt65q", "submitted_by": "Blu_Skyu", "name": "Downpour Slugcats", "description": "Art depicting the five new player characters in the upcoming DLC of the indie videogame Rain World.nIn order, they are the Spearmaster, the Saint, the Rivulet, the Gourmand, and the Artificer.", "website": "", "subreddit": "", "center": [1062.5, 560.5], "path": [[1060.5, 566.5], [1060.5, 552.5], [1017.5, 552.5], [1017.5, 562.5], [1010.5, 567.5], [1129.5, 567.5], [1126.5, 564.5], [1126.5, 552.5], [1110.5, 552.5], [1109.5, 556.5], [1108.5, 562.5], [1104.5, 565.5], [1103.5, 567.5]]}, -{"id": "twt618", "submitted_by": "-criticalFUSION-", "name": "Hatsune Miku: Colorful Stage!", "description": "An idol gacha/rhythm mobile game developed by CraftEgg in collaboration with SEGA, prominently featuring Hatsune Miku and other vocaloids (virtual singers) alongside the game's idols. Also known as Project SEKAI: COLORFUL STAGE! ft. Hatsune Miku.", "website": "https://www.colorfulstage.com/", "subreddit": "/r/colorfulstage, /r/ProjectSekai", "center": [1550.5, 1735.5], "path": [[1527.5, 1712.5], [1527.5, 1761.5], [1566.5, 1761.5], [1566.5, 1747.5], [1576.5, 1740.5], [1576.5, 1712.5]]}, -{"id": "twt5wk", "submitted_by": "AwayNefariousness442", "name": "France vs Spain", "description": "Spanish people and Deepwoken taking over a French flag created by Twitch streamer JOYCA.nnBefore being bombarded with flags this area was originally controlled by the Drawception community in a displacement attempt by the Deepwoken community.", "website": "", "subreddit": "", "center": [387.5, 1345.5], "path": [[375.5, 1339.5], [399.5, 1339.5], [399.5, 1350.5], [375.5, 1350.5], [375.5, 1339.5]]}, -{"id": "twt5sp", "submitted_by": "N8dawgggg", "name": "Clint Stevens", "description": "Pixel art of YouTuber and streamer Clint Stevens", "website": "", "subreddit": "/r/ClintStevens", "center": [1787.5, 263.5], "path": [[1776.5, 275.5], [1795.5, 275.5], [1795.5, 272.5], [1796.5, 271.5], [1797.5, 269.5], [1798.5, 267.5], [1798.5, 258.5], [1804.5, 253.5], [1804.5, 252.5], [1776.5, 252.5], [1776.5, 275.5]]}, -{"id": "twt5qm", "submitted_by": "drc7777777", "name": "Yotsuba", "description": "Cute 4chan girl. We drew a hell of a lot more than this by the end, this site is using an old image.", "website": "", "subreddit": "", "center": [1919.5, 550.5], "path": [[1900.5, 539.5], [1899.5, 562.5], [1939.5, 561.5], [1940.5, 540.5]]}, -{"id": "twt5nd", "submitted_by": "2ndaccont", "name": "John Egbert", "description": "The protagonist of the webcomic Homestuck. The 413 represents Russian group Legion 413, named after a key number in the webcomic, who designed the pixel art.\n\nThis art was contested by a portion of the Homestuck fandom who attempted to change the picture to June Egbert, a transfeminine identity of John Egbert with ambiguous canonicity.", "website": "https://vk.com/legion413", "subreddit": "/r/homestuck", "center": [215.5, 112.5], "path": [[212.5, 125.5], [223.5, 125.5], [223.5, 100.5], [207.5, 100.5], [207.5, 121.5], [212.5, 121.5], [212.5, 125.5], [223.5, 125.5], [212.5, 125.5], [212.5, 119.5]]}, -{"id": "twt5p7", "submitted_by": "kotominammy", "name": "Gravity Rush", "description": "Kat, the protagonist of Gravity Rush and Gravity Rush 2, showcasing her gravity-defying powers by standing sideways.", "website": "", "subreddit": "/r/GravityRush", "center": [1285.5, 77.5], "path": [[1274.5, 71.5], [1295.5, 71.5], [1295.5, 82.5], [1274.5, 82.5]]}, -{"id": "twt5k8", "submitted_by": "--Xer0--", "name": "Quaver", "description": "Quaver is an open-source rhythm game available on Steam.", "website": "https://quavergame.com/", "subreddit": "/r/Quavergame", "center": [695.5, 773.5], "path": [[699.5, 778.5], [697.5, 778.5], [691.5, 778.5], [691.5, 768.5], [698.5, 769.5], [699.5, 770.5], [700.5, 771.5], [700.5, 778.5]]}, -{"id": "twt5is", "submitted_by": "pepermuntstokje", "name": "Defqon.1 Hardstyle logo", "description": "Welcome home warriors! Defqon.1 is the biggest hard dance festival, loved by many hardstyle and hardcore enthousiasts around the world. This logo was made by both catjammers from the subreddit discord and the subreddit itself. On the atlas photo it is not quite complete, but in reality it was finished just in time for the final moments!", "website": "https://discord.gg/hardstyle", "subreddit": "/r/hardstyle", "center": [1017.5, 1641.5], "path": [[1009.5, 1632.5], [1009.5, 1649.5], [1025.5, 1649.5], [1025.5, 1632.5]]}, -{"id": "twt57g", "submitted_by": "Doctor_Leidenfrost", "name": "JetPunk", "description": "A popular quiz website.", "website": "https://jetpunk.com", "subreddit": "/r/JetPunk", "center": [766.5, 274.5], "path": [[780.5, 270.5], [753.5, 270.5], [752.5, 271.5], [751.5, 272.5], [752.5, 273.5], [753.5, 274.5], [753.5, 275.5], [752.5, 276.5], [753.5, 277.5], [754.5, 278.5], [755.5, 279.5], [780.5, 279.5]]}, -{"id": "twt53l", "submitted_by": "JosDW", "name": "El Risitas", "description": "El Risitas, a Spanish comedian known for his laugh, which even went viral a few years ago through the Twitch emote 'KEKW'.", "website": "https://www.youtube.com/watch?v=cDphUib5iG4", "subreddit": "/r/esPlace", "center": [1252.5, 295.5], "path": [[1240.5, 282.5], [1240.5, 307.5], [1264.5, 307.5], [1264.5, 282.5]]}, -{"id": "twt52l", "submitted_by": "XalosDarlan", "name": "Inkunzi", "description": "Inkunzi logo/icon, an Nation RP where you roleplay as nations in an fantasy world", "website": "", "subreddit": "/r/Inkunzi", "center": [1780.5, 412.5], "path": [[1769.5, 409.5], [1788.5, 409.5], [1789.5, 410.5], [1790.5, 411.5], [1790.5, 412.5], [1791.5, 413.5], [1794.5, 414.5], [1793.5, 414.5], [1792.5, 414.5], [1769.5, 414.5]]}, -{"id": "twt4wm", "submitted_by": "Rickmaster2002", "name": "Timor (flag of Portugal)", "description": "Timor was the jokingly given name to a small Portuguese flag that was covered.", "website": "https://en.wikipedia.org/wiki/Portugal", "subreddit": "/r/portugal", "center": [414.5, 1505.5], "path": [[404.5, 1499.5], [424.5, 1499.5], [423.5, 1511.5], [404.5, 1511.5], [404.5, 1499.5]]}, -{"id": "twt4pe", "submitted_by": "Shushiiii", "name": "Arona & Shiroko", "description": "Two characters from the mobile game Blue Archive, made by the Blue Archive Community.", "website": "https://discord.gg/BlueArchive", "subreddit": "/r/BlueArchive", "center": [1635.5, 464.5], "path": [[1622.5, 442.5], [1649.5, 443.5], [1649.5, 485.5], [1622.5, 485.5]]}, -{"id": "twt4p9", "submitted_by": "Sockona", "name": "42 Network", "description": "42 is a famous and quite deemed school network, scattered around the world !", "website": "https://42.fr/", "subreddit": "", "center": [1477.5, 230.5], "path": [[1459.5, 224.5], [1468.5, 215.5], [1483.5, 215.5], [1483.5, 221.5], [1497.5, 221.5], [1497.5, 242.5], [1458.5, 243.5]]}, -{"id": "twt4na", "submitted_by": "ImDella98", "name": "David", "description": "David is a masterpiece of Renaissance sculpture, created in marble between 1501 and 1504 by the Italian artist Michelangelo.", "website": "https://en.wikipedia.org/wiki/David_(Michelangelo)", "subreddit": "/r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "center": [806.5, 343.5], "path": [[787.5, 377.5], [820.5, 377.5], [829.5, 313.5], [788.5, 310.5]]}, -{"id": "twt4jw", "submitted_by": "em_tsuj_sti", "name": "Ludwig van Beethoven", "description": "A famous German composer and pianist. Commonly known for his 5th Symphony.", "website": "https://en.wikipedia.org/wiki/Ludwig_van_Beethoven", "subreddit": "/r/placeDE", "center": [1927.5, 848.5], "path": [[1929.5, 867.5], [1936.5, 861.5], [1943.5, 860.5], [1947.5, 857.5], [1942.5, 848.5], [1942.5, 842.5], [1939.5, 839.5], [1939.5, 836.5], [1934.5, 831.5], [1919.5, 830.5], [1916.5, 833.5], [1914.5, 837.5], [1913.5, 842.5], [1909.5, 846.5], [1908.5, 851.5], [1916.5, 857.5], [1924.5, 867.5], [1927.5, 867.5]]}, -{"id": "twt4b3", "submitted_by": "5herine", "name": "Rest in Peace Zaf", "description": "French streamer Pierre Lapin and his community wanted to pay homage to Pierre's friend and French Twitter Legend Zafinho who passed away in 2017.", "website": "https://twitter.com/pierrelapin/status/1511019730638979079?s=20&t=K-cMCRtyEaMF1qAQqmg2Xg", "subreddit": "", "center": [933.5, 1497.5], "path": [[923.5, 1487.5], [923.5, 1494.5], [915.5, 1494.5], [915.5, 1506.5], [950.5, 1506.5], [948.5, 1488.5], [924.5, 1487.5]]}, -{"id": "twt46s", "submitted_by": "kotominammy", "name": "Wheel of Time", "description": "Art depicting the ancient symbol of Aes Sedai, comprised of the Flame of Tar Valon and the Dragon's Fang.", "website": "", "subreddit": "/r/wot", "center": [1900.5, 881.5], "path": [[1888.5, 869.5], [1888.5, 892.5], [1911.5, 892.5], [1911.5, 869.5], [1911.5, 869.5]]}, -{"id": "twt3zm", "submitted_by": "TheRealMagentaPuppy", "name": "Pineapple", "description": "QuiltMC's dear mascot: pineapple. Do not dare call them a pumpkin!", "website": "https://quiltmc.org/", "subreddit": "", "center": [1080.5, 890.5], "path": [[1085.5, 894.5], [1085.5, 886.5], [1081.5, 886.5], [1081.5, 884.5], [1081.5, 883.5], [1079.5, 883.5], [1079.5, 886.5], [1074.5, 886.5], [1074.5, 894.5]]}, -{"id": "twt3zj", "submitted_by": "invisible_cat0091", "name": "Vibri", "description": "from the rhythm game, Vib-Ribbon.", "website": "", "subreddit": "/r/vibribbon", "center": [1715.5, 192.5], "path": [[1705.5, 212.5], [1705.5, 180.5], [1707.5, 180.5], [1708.5, 170.5], [1724.5, 170.5], [1724.5, 212.5]]}, -{"id": "twt3pb", "submitted_by": "DonCrogod", "name": "Austria", "description": "The flag of Austria.", "website": "", "subreddit": "/r/Austria", "center": [1016.5, 265.5], "path": [[865.5, 249.5], [865.5, 280.5], [1171.5, 279.5], [1171.5, 250.5]]}, -{"id": "twt37u", "submitted_by": "IVgormino", "name": "Red Labs keycard", "description": "A red keycard from the game Escape From Tarkov", "website": "https://escapefromtarkov.com", "subreddit": "/r/escapefromtarkov", "center": [1313.5, 1908.5], "path": [[1301.5, 1900.5], [1301.5, 1915.5], [1325.5, 1915.5], [1325.5, 1901.5]]}, -{"id": "twt2oh", "submitted_by": "CeBonVieuxZdoud", "name": "Eseo Logo", "description": "The logo of ESEO, an engineering school based in Angers, Dijon and Paris", "website": "https://eseo.fr/", "subreddit": "", "center": [1407.5, 388.5], "path": [[1417.5, 378.5], [1395.5, 378.5], [1396.5, 399.5], [1417.5, 398.5], [1417.5, 378.5], [1395.5, 378.5], [1396.5, 399.5], [1417.5, 399.5], [1420.5, 395.5], [1417.5, 379.5]]}, -{"id": "twt29j", "submitted_by": "Blu_Skyu", "name": "Toki Pona + Worm combo symbol", "description": "A combination of the Worm scarab and the Toki Pona smile symbols.", "website": "", "subreddit": "/r/Parahumans, /r/tokipona", "center": [1686.5, 219.5], "path": [[1681.5, 214.5], [1681.5, 223.5], [1687.5, 228.5], [1689.5, 228.5], [1689.5, 227.5], [1691.5, 227.5], [1691.5, 223.5], [1690.5, 223.5], [1690.5, 212.5], [1681.5, 212.5]]}, -{"id": "twt24p", "submitted_by": "KatMistberg", "name": "4Virtual SanMou 三毛毛毛", "description": "SanMou is a Taiwanese VTuber and part of the VTuber group 4Virtual. The dolphin represents SanMou, and the penguin represents Jimu, his ex-girlfriend.", "website": "https://www.youtube.com/c/4V3Mou", "subreddit": "", "center": [1564.5, 606.5], "path": [[1549.5, 599.5], [1549.5, 613.5], [1579.5, 613.5], [1579.5, 599.5]]}, -{"id": "twt1hx", "submitted_by": "ja2ontodd", "name": "Noita", "description": "half of the noita space, with the game's first letter, and one of the enemies, Stevari, as well as some hamis", "website": "https://noitagame.com/", "subreddit": "/r/noita", "center": [604.5, 1068.5], "path": [[591.5, 1013.5], [597.5, 1013.5], [597.5, 1061.5], [623.5, 1062.5], [623.5, 1092.5], [591.5, 1093.5], [591.5, 1013.5], [591.5, 1013.5], [593.5, 1013.5]]}, -{"id": "twt1g6", "submitted_by": "XcapeEST", "name": "Czech heart", "description": "A heart made by r/tf2 to celebrate the alliance with r/czech", "website": "", "subreddit": "/r/czhech", "center": [1595.5, 1978.5], "path": [[1595.5, 1981.5], [1595.5, 1981.5], [1595.5, 1981.5], [1592.5, 1978.5], [1592.5, 1977.5], [1593.5, 1976.5], [1594.5, 1976.5], [1595.5, 1977.5], [1596.5, 1976.5], [1597.5, 1976.5], [1598.5, 1977.5], [1598.5, 1978.5]]}, -{"id": "twt1ch", "submitted_by": "TheNomad", "name": "Bayraktar Grief", "description": "While seen as a Symbol of the Russian/Ukraine war of 2022, the text 'Bayraktar' and 'TB-2' were added to the Ukraine Mural forcefully by Turkish Twitch Streamer @Haskologlu, the streamer agreed to remove the text if a Pixel Art Version of the Drone was added, but broke their promise and did not remove the text 'Bayraktar'.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [409.5, 183.5], "path": [[385.5, 172.5], [385.5, 192.5], [433.5, 193.5], [432.5, 173.5]]}, -{"id": "twt17r", "submitted_by": "Illemya", "name": "Logo ESEO", "description": "Logo of the french engineering school ESEO", "website": "https://eseo.fr/", "subreddit": "", "center": [1407.5, 389.5], "path": [[1418.5, 379.5], [1397.5, 379.5], [1397.5, 400.5], [1418.5, 399.5]]}, -{"id": "twt0zu", "submitted_by": "NikIsImba", "name": "Clown69 Sheep", "description": "A sheep commenly used by the streamer Quin69. Its traits represnt his clownish behaviour and his tendancy to cry about everything.", "website": "https://www.twitch.tv/quin69", "subreddit": "/r/quin69", "center": [434.5, 1896.5], "path": [[420.5, 1881.5], [448.5, 1881.5], [448.5, 1911.5], [420.5, 1911.5], [420.5, 1905.5]]}, -{"id": "twt0yw", "submitted_by": "procontroller", "name": "AUBREY", "description": "AUBREY is one of the deuteragonists in OMORI. This site originally held KEL, but was relocated.", "website": "", "subreddit": "/r/omori", "center": [1428.5, 809.5], "path": [[1424.5, 823.5], [1424.5, 819.5], [1422.5, 819.5], [1421.5, 819.5], [1421.5, 810.5], [1420.5, 809.5], [1419.5, 809.5], [1419.5, 809.5], [1419.5, 806.5], [1419.5, 805.5], [1420.5, 805.5], [1420.5, 801.5], [1421.5, 800.5], [1421.5, 799.5], [1422.5, 798.5], [1424.5, 797.5], [1425.5, 796.5], [1429.5, 796.5], [1430.5, 795.5], [1431.5, 796.5], [1432.5, 797.5], [1433.5, 797.5], [1435.5, 797.5], [1436.5, 798.5], [1436.5, 800.5], [1437.5, 805.5], [1438.5, 808.5], [1437.5, 809.5], [1436.5, 810.5], [1436.5, 818.5], [1433.5, 819.5], [1433.5, 823.5], [1430.5, 823.5], [1430.5, 821.5], [1427.5, 821.5]]}, -{"id": "twt0yo", "submitted_by": "GladOSkar", "name": "German oak", "description": "Collaboration between r/placetrees and r/placeDE to build the German national tree. Initiated by u/GladOSkar. Went through many modifications", "website": "https://en.wikipedia.org/wiki/Oak", "subreddit": "/r/placetrees, /r/placeDE", "center": [1254.5, 849.5], "path": [[1247.5, 868.5], [1247.5, 868.5], [1249.5, 864.5], [1249.5, 859.5], [1247.5, 858.5], [1247.5, 860.5], [1248.5, 860.5], [1248.5, 864.5], [1244.5, 864.5], [1244.5, 860.5], [1245.5, 860.5], [1245.5, 858.5], [1240.5, 856.5], [1237.5, 852.5], [1235.5, 848.5], [1236.5, 844.5], [1239.5, 842.5], [1238.5, 841.5], [1240.5, 839.5], [1241.5, 840.5], [1247.5, 835.5], [1250.5, 835.5], [1253.5, 832.5], [1256.5, 832.5], [1258.5, 834.5], [1264.5, 837.5], [1267.5, 840.5], [1273.5, 844.5], [1273.5, 847.5], [1270.5, 852.5], [1270.5, 854.5], [1267.5, 857.5], [1264.5, 858.5], [1261.5, 859.5], [1259.5, 859.5], [1258.5, 859.5], [1258.5, 863.5], [1260.5, 867.5], [1262.5, 868.5], [1244.5, 868.5]]}, -{"id": "twt0sr", "submitted_by": "H3x0n", "name": "alt:V Multiplayer for GTA V", "description": "A free alternative multiplayer client for Grand Theft Auto V.", "website": "https://altv.mp", "subreddit": "/r/altv", "center": [519.5, 1406.5], "path": [[469.5, 1395.5], [576.5, 1395.5], [576.5, 1407.5], [543.5, 1409.5], [544.5, 1415.5], [531.5, 1415.5], [531.5, 1419.5], [531.5, 1424.5], [498.5, 1424.5], [498.5, 1416.5], [476.5, 1415.5], [476.5, 1410.5], [473.5, 1409.5], [472.5, 1403.5], [469.5, 1399.5], [468.5, 1395.5]]}, -{"id": "twt0qe", "submitted_by": "VinsElBins", "name": "Team Vanadium", "description": "A group of French Friends and former CS:GO team that battle over a small area on the last day to be part the history of Reddit for the next 5 years", "website": "", "subreddit": "", "center": [1473.5, 800.5], "path": [[1460.5, 796.5], [1460.5, 804.5], [1486.5, 804.5], [1486.5, 796.5]]}, -{"id": "twt0l3", "submitted_by": "Baconing_Narwhal", "name": "Overwatch League logo", "description": "Logo of the Overwatch League (OWL), a professional esports league for the video game Overwatch. Created by /r/CompetitiveOverwatch, the de facto official subreddit for the Overwatch competitive scene.", "website": "https://overwatchleague.com/en-us/", "subreddit": "/r/CompetitiveOverwatch", "center": [1810.5, 135.5], "path": [[1803.5, 131.5], [1817.5, 131.5], [1817.5, 139.5], [1803.5, 139.5], [1803.5, 131.5]]}, -{"id": "twt0a9", "submitted_by": "AboveColin", "name": "Defqon.1 Logo", "description": "Defqon.1 Weekend Festival is an annual music festival held in the Netherlands. nMade by r/Hardstyle", "website": "", "subreddit": "/r/Hardstyle", "center": [1016.5, 1640.5], "path": [[1025.5, 1644.5], [1017.5, 1621.5], [1009.5, 1633.5], [1008.5, 1653.5], [1025.5, 1652.5], [1025.5, 1642.5], [1025.5, 1644.5]]}, -{"id": "twt00k", "submitted_by": "T0lgi02", "name": "Cookie☆", "description": "Cookie☆, DIYUSI, bitnameRU on BB, 1919, broken heart, いいよ(来いよ)", "website": "https://discord.gg/creatura", "subreddit": "", "center": [770.5, 1690.5], "path": [[752.5, 1670.5], [752.5, 1682.5], [749.5, 1685.5], [749.5, 1693.5], [751.5, 1694.5], [756.5, 1695.5], [760.5, 1703.5], [760.5, 1712.5], [787.5, 1712.5], [787.5, 1677.5], [781.5, 1670.5], [752.5, 1670.5]]}, -{"id": "twszc0", "submitted_by": "IVgormino", "name": "Bamse", "description": "A Swedish cartoon character who teaches children about the virtues of being kind.", "website": "https://en.wikipedia.org/wiki/Bamse", "subreddit": "/r/place_nordicunion, /r/Sweden", "center": [870.5, 78.5], "path": [[877.5, 69.5], [869.5, 69.5], [861.5, 69.5], [860.5, 87.5], [880.5, 87.5], [880.5, 70.5]]}, -{"id": "twsyqr", "submitted_by": "jett87", "name": "Filipino jeepney", "description": "The most popular means of public transportation in the Philippines, which has become a widespread symbol of Philippine culture and art.", "website": "https://en.wikipedia.org/wiki/Jeepney", "subreddit": "/r/Philippines", "center": [420.5, 1653.5], "path": [[387.5, 1671.5], [391.5, 1671.5], [389.5, 1671.5], [393.5, 1671.5], [394.5, 1670.5], [395.5, 1669.5], [395.5, 1662.5], [396.5, 1663.5], [397.5, 1663.5], [397.5, 1664.5], [397.5, 1669.5], [432.5, 1669.5], [433.5, 1669.5], [434.5, 1671.5], [441.5, 1671.5], [443.5, 1669.5], [443.5, 1664.5], [451.5, 1664.5], [451.5, 1666.5], [457.5, 1666.5], [457.5, 1661.5], [452.5, 1661.5], [452.5, 1655.5], [453.5, 1654.5], [453.5, 1652.5], [452.5, 1652.5], [452.5, 1642.5], [454.5, 1642.5], [454.5, 1639.5], [449.5, 1634.5], [402.5, 1634.5], [400.5, 1635.5], [398.5, 1638.5], [397.5, 1641.5], [398.5, 1642.5], [400.5, 1643.5], [400.5, 1648.5], [399.5, 1650.5], [398.5, 1651.5], [383.5, 1651.5], [383.5, 1658.5], [379.5, 1661.5], [379.5, 1664.5], [381.5, 1666.5], [382.5, 1666.5], [382.5, 1665.5], [384.5, 1665.5], [384.5, 1669.5], [386.5, 1671.5], [388.5, 1671.5]]}, -{"id": "twsyqg", "submitted_by": "JDCLO", "name": "Hyunjin from Loona", "description": "The second member of Loona. #stanloona", "website": "https://www.youtube.com/channel/UCOJplhB0wGQWv9OuRmMT-4g", "subreddit": "/r/LOONA", "center": [1315.5, 598.5], "path": [[1300.5, 582.5], [1329.5, 582.5], [1329.5, 614.5], [1300.5, 614.5], [1300.5, 614.5], [1300.5, 614.5], [1300.5, 614.5], [1300.5, 614.5]]}, -{"id": "twsy2c", "submitted_by": "IronRaichu", "name": "CaptainSparklez", "description": "Famous Minecraft Twitch streamer & YouTuber.", "website": "https://www.twitch.tv/captainsparklez?sr=a", "subreddit": "/r/CaptainSparklez", "center": [867.5, 1910.5], "path": [[858.5, 1902.5], [858.5, 1902.5], [857.5, 1902.5], [859.5, 1902.5], [858.5, 1901.5], [858.5, 1917.5], [876.5, 1918.5], [875.5, 1901.5]]}, -{"id": "twsxwu", "submitted_by": "MartyStarkiller", "name": "Pizza (from Chicory: A Colorful Tale)", "description": "Pizza is a character from Chicory: A Colorful Tale, released in 2021 and developed by Finji. This was added to the Celeste community square in alliance with the Chicory community because Lena Raine composed the soundtrack for both Celeste and Chicory.", "website": "https://chicorygame.com/", "subreddit": "/r/chicory", "center": [973.5, 863.5], "path": [[966.5, 864.5], [967.5, 864.5], [967.5, 863.5], [969.5, 863.5], [969.5, 861.5], [970.5, 861.5], [970.5, 859.5], [971.5, 859.5], [972.5, 859.5], [972.5, 858.5], [974.5, 858.5], [974.5, 857.5], [974.5, 858.5], [975.5, 858.5], [975.5, 859.5], [977.5, 859.5], [977.5, 862.5], [978.5, 862.5], [978.5, 863.5], [979.5, 863.5], [980.5, 863.5], [980.5, 865.5], [979.5, 865.5], [979.5, 866.5], [978.5, 866.5], [978.5, 867.5], [978.5, 866.5], [976.5, 866.5], [976.5, 867.5], [968.5, 867.5], [968.5, 866.5], [967.5, 866.5], [966.5, 866.5]]}, -{"id": "twsxsq", "submitted_by": "Professional-Ice-845", "name": "HTL St.Pölten", "description": "The main logo of an Austrian school and the logos of the two classes that made it.", "website": "https://www.htlstp.ac.at", "subreddit": "/r/place_htlstp", "center": [385.5, 1596.5], "path": [[372.5, 1593.5], [398.5, 1593.5], [398.5, 1599.5], [372.5, 1599.5], [372.5, 1593.5], [398.5, 1593.5], [398.5, 1593.5]]}, -{"id": "twsxmp", "submitted_by": "El_Geygey", "name": "Mongolian flag over a yurt", "description": "The idea of a Mongolian flag came from the community behind the neighbouring pinpoint symbol. The spot was then taken care of by the r/mongolia subreddit. Following a misunderstood, the Mongolian YouTuber CTS tried to conquer the right of the drawing but admitted his mistake and backed off", "website": "", "subreddit": "/r/mongolia", "center": [101.5, 479.5], "path": [[93.5, 466.5], [93.5, 491.5], [109.5, 491.5], [109.5, 466.5], [93.5, 466.5]]}, -{"id": "twsx7i", "submitted_by": "IVgormino", "name": "Bolibompa Draken", "description": "Bolibompa Draken is a Swedish children's cartoon character.", "website": "https://en.wikipedia.org/wiki/Bolibompa", "subreddit": "/r/place_nordicunion, /r/Sweden", "center": [849.5, 79.5], "path": [[843.5, 68.5], [838.5, 88.5], [861.5, 88.5], [855.5, 69.5], [855.5, 68.5]]}, -{"id": "twsx1j", "submitted_by": "ReverseDmitry", "name": "Italy-Poland heart", "description": "A heart depicting the flags of Italy and Poland.", "website": "", "subreddit": "/r/italy, /r/ItalyPlace, /r/placeitaly, /r/Italia", "center": [781.5, 221.5], "path": [[777.5, 217.5], [775.5, 219.5], [775.5, 221.5], [781.5, 227.5], [787.5, 221.5], [787.5, 219.5], [785.5, 217.5], [783.5, 217.5], [782.5, 218.5], [780.5, 218.5], [779.5, 217.5], [777.5, 217.5]]}, -{"id": "twswyt", "submitted_by": "DonCrogod", "name": "ÖBB Railjet", "description": "A high-speed rail service operated by Austrian Federal Railways (ÖBB).", "website": "", "subreddit": "", "center": [1143.5, 275.5], "path": [[1134.5, 271.5], [1153.5, 271.5], [1153.5, 279.5], [1134.5, 280.5]]}, -{"id": "twswth", "submitted_by": "28PercentCharged", "name": "Nuclear Throne Fish", "description": "The character Fish, from the game Nuclear Throne, allied with Enter the Gungeon", "website": "", "subreddit": "/r/nuclearthrone", "center": [198.5, 335.5], "path": [[194.5, 341.5], [193.5, 329.5], [199.5, 329.5], [203.5, 335.5], [203.5, 336.5], [200.5, 341.5]]}, -{"id": "twswrb", "submitted_by": "_SpaceBadger_", "name": "Ponce's flower", "description": "A flower originaly made by the community of the french streamer Ponce kept by the Netherland when they took control of the zone", "website": "", "subreddit": "", "center": [1951.5, 14.5], "path": [[1944.5, 5.5], [1944.5, 3.5], [1949.5, 0.5], [1954.5, 0.5], [1955.5, 2.5], [1958.5, 2.5], [1960.5, 4.5], [1960.5, 3.5], [1961.5, 6.5], [1960.5, 10.5], [1961.5, 14.5], [1953.5, 20.5], [1953.5, 21.5], [1958.5, 20.5], [1960.5, 20.5], [1961.5, 22.5], [1960.5, 24.5], [1959.5, 26.5], [1953.5, 26.5], [1953.5, 34.5], [1949.5, 34.5], [1949.5, 26.5], [1942.5, 21.5], [1942.5, 20.5], [1945.5, 19.5], [1947.5, 21.5], [1949.5, 21.5], [1949.5, 18.5], [1948.5, 19.5], [1945.5, 17.5], [1941.5, 13.5], [1941.5, 6.5], [1943.5, 4.5], [1949.5, 3.5]]}, -{"id": "twswn2", "submitted_by": "glowingfromwithin", "name": "Malte", "description": "Malte is the name of a designer who made/contributed to a large amount of pixel art on the two Germany flags, such as the Brandenburg Gate, the Bundestag, the Among Us column, the Cologne Cathedral, and the redesign of the World War I memorial. He was therefore named MVP by the r/placeDE Discord. The community decided that as a surprise his name should be on the flag temporarily so that it would pop up in the final timelapse.", "website": "https://discord.gg/placeDE", "subreddit": "/r/placeDE", "center": [1899.5, 1128.5], "path": [[1872.5, 1120.5], [1872.5, 1136.5], [1928.5, 1135.5], [1928.5, 1122.5]]}, -{"id": "twswgz", "submitted_by": "FlatEartherForLife", "name": "Flag of Haiti", "description": "The current flag of Haiti, made in collaboration with the ULTRAKILL as they moved their logo down to make space for the flag. Both communities defended each other through the duration of r/place.", "website": "https://en.wikipedia.org/wiki/Flag_of_Haiti", "subreddit": "/r/haiti", "center": [1360.5, 1791.5], "path": [[1346.5, 1785.5], [1374.5, 1785.5], [1374.5, 1797.5], [1346.5, 1797.5]]}, -{"id": "twsweb", "submitted_by": "Rickmaster2002", "name": "Continental Portugal", "description": "This is the representation of the Portuguese continental territory. (Don't forget about the islands.)", "website": "https://en.wikipedia.org/wiki/Continental_Portugal", "subreddit": "/r/portugal, /r/PortugalCaralho", "center": [1488.5, 1858.5], "path": [[1480.5, 1831.5], [1483.5, 1828.5], [1484.5, 1828.5], [1485.5, 1827.5], [1487.5, 1830.5], [1491.5, 1830.5], [1497.5, 1831.5], [1497.5, 1830.5], [1500.5, 1830.5], [1501.5, 1831.5], [1501.5, 1835.5], [1503.5, 1835.5], [1504.5, 1836.5], [1504.5, 1837.5], [1505.5, 1838.5], [1504.5, 1839.5], [1503.5, 1839.5], [1502.5, 1840.5], [1501.5, 1840.5], [1501.5, 1841.5], [1500.5, 1843.5], [1498.5, 1845.5], [1498.5, 1856.5], [1497.5, 1857.5], [1493.5, 1858.5], [1493.5, 1861.5], [1494.5, 1864.5], [1499.5, 1865.5], [1500.5, 1866.5], [1495.5, 1869.5], [1500.5, 1874.5], [1497.5, 1874.5], [1496.5, 1878.5], [1492.5, 1881.5], [1491.5, 1884.5], [1490.5, 1890.5], [1486.5, 1891.5], [1480.5, 1888.5], [1477.5, 1889.5], [1476.5, 1887.5], [1477.5, 1884.5], [1478.5, 1884.5], [1478.5, 1876.5], [1480.5, 1873.5], [1481.5, 1870.5], [1477.5, 1871.5], [1476.5, 1868.5], [1477.5, 1866.5], [1474.5, 1867.5], [1473.5, 1862.5], [1478.5, 1857.5], [1482.5, 1845.5], [1483.5, 1840.5], [1482.5, 1832.5], [1480.5, 1830.5], [1485.5, 1827.5], [1484.5, 1827.5], [1481.5, 1831.5], [1480.5, 1831.5], [1483.5, 1840.5], [1480.5, 1830.5]]}, -{"id": "twswdn", "submitted_by": "Iryti", "name": "Fnatic", "description": "Professional ESports LoL team, competing in the LECn#ALWAYSFNATIC", "website": "https://fnatic.com/", "subreddit": "/r/fnatic", "center": [1595.5, 1408.5], "path": [[1581.5, 1397.5], [1581.5, 1409.5], [1584.5, 1419.5], [1608.5, 1419.5], [1611.5, 1411.5], [1603.5, 1396.5]]}, -{"id": "twswdd", "submitted_by": "Glittering-Durian-49", "name": "Obol (Hades)", "description": "A representation of the obol coin from the roguelike video game Hades (2020).", "website": "", "subreddit": "/r/HadesTheGame", "center": [1262.5, 917.5], "path": [[1258.5, 908.5], [1258.5, 926.5], [1265.5, 926.5], [1265.5, 908.5], [1258.5, 908.5]]}, -{"id": "twswb2", "submitted_by": "KayakingPyromaniac", "name": "HFY", "description": "A mostly sci-i writing subreddit", "website": "", "subreddit": "/r/hfy", "center": [846.5, 728.5], "path": [[841.5, 722.5], [841.5, 734.5], [852.5, 734.5], [851.5, 722.5], [851.5, 722.5]]}, -{"id": "twswau", "submitted_by": "rafter_", "name": "Anıtkabir", "description": "Anıtkabir is the mausoleum of Mustafa Kemal Atatürk, the leader of the Turkish War of Independence and the founder and the first President of Republic of Turkey.", "website": "https://en.wikipedia.org/wiki/An%C4%B1tkabir", "subreddit": "", "center": [849.5, 1097.5], "path": [[796.5, 1073.5], [796.5, 1121.5], [902.5, 1121.5], [901.5, 1073.5], [900.5, 1074.5]]}, -{"id": "twsw7r", "submitted_by": "AvatarDeino", "name": "Initial D and Eighty Six collaboration", "description": "Art by the r/eightysix community of the show's female protagonist Lena, along with a collaboration with the r/initiald community below it, depicting the protagonist Takumi in his famous Toyota AE86.", "website": "", "subreddit": "/r/initiald", "center": [1131.5, 1774.5], "path": [[1100.5, 1757.5], [1155.5, 1758.5], [1155.5, 1784.5], [1164.5, 1784.5], [1164.5, 1793.5], [1137.5, 1793.5], [1137.5, 1791.5], [1131.5, 1791.5], [1131.5, 1785.5], [1131.5, 1784.5], [1100.5, 1784.5], [1100.5, 1784.5]]}, -{"id": "twsw6i", "submitted_by": "N8dawgggg", "name": "Rowdies Stripes", "description": "Green and yellow stripes to represent the Tampa Bay soccer team, The Rowdies", "website": "https://www.rowdiessoccer.com/", "subreddit": "/r/TampaBayRowdies", "center": [1740.5, 271.5], "path": [[1737.5, 279.5], [1737.5, 263.5], [1742.5, 263.5], [1742.5, 279.5], [1737.5, 279.5]]}, -{"id": "twsw1r", "submitted_by": "Smusn_", "name": "Alesa", "description": "The mascot of Michaelmicchill, a Twitch streamer and member of the Minecraft series Dream SMP (survival multiplayer).", "website": "https://www.michaelmcchill.com/", "subreddit": "/r/Michaelmcchill, /r/dreamsmp", "center": [1612.5, 270.5], "path": [[1609.5, 265.5], [1609.5, 266.5], [1609.5, 267.5], [1609.5, 268.5], [1610.5, 268.5], [1610.5, 266.5], [1610.5, 266.5], [1610.5, 266.5], [1610.5, 266.5], [1609.5, 269.5], [1609.5, 271.5], [1608.5, 269.5], [1611.5, 271.5], [1610.5, 272.5], [1611.5, 272.5], [1611.5, 273.5], [1612.5, 274.5], [1613.5, 274.5], [1614.5, 274.5], [1615.5, 273.5], [1614.5, 273.5], [1614.5, 272.5], [1615.5, 273.5], [1615.5, 272.5], [1615.5, 271.5], [1616.5, 270.5], [1616.5, 270.5], [1615.5, 271.5], [1616.5, 271.5], [1616.5, 270.5], [1616.5, 269.5], [1616.5, 268.5], [1615.5, 267.5], [1613.5, 266.5], [1613.5, 265.5], [1612.5, 264.5], [1612.5, 264.5], [1613.5, 264.5], [1614.5, 264.5], [1614.5, 265.5], [1614.5, 265.5], [1615.5, 265.5], [1615.5, 266.5], [1615.5, 267.5], [1616.5, 267.5], [1616.5, 268.5], [1614.5, 268.5], [1613.5, 267.5], [1611.5, 267.5], [1611.5, 267.5], [1611.5, 266.5], [1610.5, 266.5], [1610.5, 267.5], [1612.5, 267.5], [1609.5, 268.5], [1610.5, 268.5], [1611.5, 268.5], [1611.5, 268.5], [1610.5, 268.5], [1610.5, 268.5], [1610.5, 269.5], [1611.5, 270.5], [1610.5, 269.5], [1609.5, 269.5], [1610.5, 269.5], [1610.5, 270.5], [1610.5, 270.5], [1611.5, 270.5], [1612.5, 272.5], [1612.5, 272.5], [1611.5, 264.5], [1610.5, 264.5], [1611.5, 264.5], [1611.5, 264.5], [1611.5, 264.5], [1611.5, 264.5]]}, -{"id": "twsvtj", "submitted_by": "BarthoAz", "name": "BDE Info - Lyon 1 (Doua)", "description": "The student council of the IUT Informatique of Lyon 1 (Doua) in France.nA lot of love from baguette country <3nSupport to all techies around the world !n", "website": "https://bdeinfo.org", "subreddit": "", "center": [1692.5, 1815.5], "path": [[1669.5, 1810.5], [1669.5, 1819.5], [1715.5, 1819.5], [1715.5, 1810.5], [1669.5, 1810.5], [1669.5, 1810.5], [1669.5, 1819.5]]}, -{"id": "twsvnf", "submitted_by": "Teisseire_Rakt", "name": "Wakfu Logo", "description": "The logo of Wakfu, a MMORPG(Also a cartoon) by French studio Ankama.", "website": "https://www.wakfu.com/fr/mmorpg", "subreddit": "", "center": [1188.5, 1959.5], "path": [[1176.5, 1953.5], [1181.5, 1948.5], [1200.5, 1948.5], [1200.5, 1970.5], [1176.5, 1970.5], [1176.5, 1953.5]]}, -{"id": "twsvmi", "submitted_by": "AwayNefariousness442", "name": "Deepwoken", "description": ">> Deepwoken is a difficult game with permanent character loss. Losing characters is a part of the game that should be expected. <