Merge pull request #1380 from placeAtlas/cleanup

Cleanup to master
This commit is contained in:
Stefano 2022-06-12 18:45:53 +02:00 committed by GitHub
commit 71ef94987f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 232 additions and 177 deletions

View file

@ -9744,68 +9744,99 @@ uu2uas
uu2rnm
uu2p0n
uui38k
uv0679
uuy3sn
uuy1e5
uxegrh
uwuon8
uw90m9
uvnhvv
uvm3w1
uvfo1y
uv39r0
uyhbui
uz6kxi
uywxxt
uz2coe
uz2bdg
ux6b2h
ux624m
ux5nab
uvrhhb
uupnu9
uuo2vp
utov3g
utixs0
utiueq
ute3mg
usvaax
usqfao
us3o9p
urws58
urwr3z
urwojx
urwns4
urwmcr
urwk0p
urwif6
urssb6
ura6p4
ur43l3
uqf4k2
uqdtcc
upz7br
upr4iv
upn5jo
uph7lb
upflyl
upd8ls
upcumn
upcuc9
upbvaj
up72xz
up6xcp
up56n6
up2nas
up283z
up27fs
up2492
up210t
up206y
v35xc3
v2ylbe
v2wsq4
v2njza
v255w9
v3ptzw
v39gyv
uv0679
uuy3sn
uuy1e5
uxegrh
uwuon8
uw90m9
uvnhvv
uvm3w1
uvfo1y
uv39r0
uyhbui
uz6kxi
uywxxt
uz2coe
uz2bdg
ux6b2h
ux624m
ux5nab
uvrhhb
uupnu9
uuo2vp
utov3g
utixs0
utiueq
ute3mg
usvaax
usqfao
us3o9p
urws58
urwr3z
urwojx
urwns4
urwmcr
urwk0p
urwif6
urssb6
ura6p4
ur43l3
uqf4k2
uqdtcc
upz7br
upr4iv
upn5jo
uph7lb
upflyl
upd8ls
upcumn
upcuc9
upbvaj
up72xz
up6xcp
up56n6
up2nas
up283z
up27fs
up2492
up210t
up206y
v35xc3
v2ylbe
v2wsq4
v2njza
v255w9
v3ptzw
v39gyv
v7idvc
v7im7j
v7ipqq
v7isc8
v7iv85
v7ixyc
v7j117
v7j2xq
v68yf9
v67qx9
v5pjsz
v5j7wg
v5fw0h
v5d8py
v4vxyl
v4radt
v4fybl
v7us75
v7zhu0
v7zdjk
v7ysit
v8063b
v804mg
v801gz
v9cg79
v9cevg
v9cdzh
vaot27
vamqsj
vakeot
va2iyy

View file

@ -30,124 +30,122 @@
import traceback
from formatter import format_all, validate
OUT_FILE = open('temp_atlas.json', 'w', encoding='utf-8')
READ_IDS_FILE = open('read-ids-temp.txt', 'w')
FAIL_FILE = open('manual_atlas.txt', 'w', encoding='utf-8')
with open('temp_atlas.json', 'w', encoding='utf-8') as OUT_FILE, open('read-ids-temp.txt', 'w') as READ_IDS_FILE, open('manual_atlas.txt', 'w', encoding='utf-8') as FAIL_FILE:
OUT_FILE_LINES = ['[\n', ']\n']
OUT_FILE_LINES = ['[\n', ']\n']
with open('credentials', 'r') as file:
credentials = file.readlines()
client_id = credentials[0].strip()
client_secret = credentials[1].strip()
username = credentials[2].strip() if len(credentials) > 3 else ""
password = credentials[3].strip() if len(credentials) > 3 else ""
with open('credentials', 'r') as file:
credentials = file.readlines()
client_id = credentials[0].strip()
client_secret = credentials[1].strip()
username = credentials[2].strip() if len(credentials) > 3 else ""
password = credentials[3].strip() if len(credentials) > 3 else ""
reddit = praw.Reddit(
client_id=client_id,
client_secret=client_secret,
username=username,
password=password,
user_agent='atlas_bot'
)
reddit = praw.Reddit(
client_id=client_id,
client_secret=client_secret,
username=username,
password=password,
user_agent='atlas_bot'
)
has_write_access = not reddit.read_only
if not has_write_access:
print("Warning: No write access. Post flairs will not be updated.")
time.sleep(5)
has_write_access = not reddit.read_only
if not has_write_access:
print("Warning: No write access. Post flairs will not be updated.")
time.sleep(5)
existing_ids = []
existing_ids = []
with open('../data/read-ids.txt', 'r') as edit_ids_file:
for id in [x.strip() for x in edit_ids_file.readlines()]:
existing_ids.append(id)
with open('../data/read-ids.txt', 'r') as edit_ids_file:
for id in [x.strip() for x in edit_ids_file.readlines()]:
existing_ids.append(id)
def set_flair(submission, flair):
if has_write_access and submission.link_flair_text != flair:
flair_choices = submission.flair.choices()
flair = next(x for x in flair_choices if x["flair_text_editable"] and flair == x["flair_text"])
submission.flair.select(flair["flair_template_id"])
def set_flair(submission, flair):
if has_write_access and submission.link_flair_text != flair:
flair_choices = submission.flair.choices()
flair = next(x for x in flair_choices if x["flair_text_editable"] and flair == x["flair_text"])
submission.flair.select(flair["flair_template_id"])
total_all_flairs = 0
duplicate_count = 0
failcount = 0
successcount = 0
totalcount = 0
total_all_flairs = 0
duplicate_count = 0
failcount = 0
successcount = 0
totalcount = 0
for submission in reddit.subreddit('placeAtlas2').new(limit=2000):
total_all_flairs += 1
for submission in reddit.subreddit('placeAtlas2').new(limit=2000):
total_all_flairs += 1
if (submission.id in existing_ids):
set_flair(submission, "Processed Entry")
print("Found first duplicate!")
duplicate_count += 1
if (duplicate_count > 0):
break
else:
continue
if (submission.id in existing_ids):
set_flair(submission, "Processed Entry")
print("Found first duplicate!")
duplicate_count += 1
if (duplicate_count > 0):
break
else:
continue
if submission.link_flair_text == "New Entry" or submission.link_flair_text == "Edit Entry":
if submission.link_flair_text == "New Entry" or submission.link_flair_text == "Edit Entry":
try:
try:
text = submission.selftext
rawtext = text
text = submission.selftext
rawtext = text
text = text.replace('\u200c', '')
text = re.compile(r"(\{.+\})", re.DOTALL).search(text).group(0)
# Test if it needs to escape the escape character. Usually happens on fancy mode.
try: json.loads(text)
except json.JSONDecodeError: text = re.sub(r"\\(.)", r"\1", text)
text = text.replace('\u200c', '')
text = re.compile(r"(\{.+\})", re.DOTALL).search(text).group(0)
# Test if it needs to escape the escape character. Usually happens on fancy mode.
try: json.loads(text)
except json.JSONDecodeError: text = re.sub(r"\\(.)", r"\1", text)
submission_json = json.loads(text)
submission_json = json.loads(text)
if submission_json:
if submission_json:
if submission.link_flair_text == "Edit Entry":
if submission.link_flair_text == "Edit Entry":
assert submission_json["id"] != 0, "Edit invalid because ID is tampered, it must not be 0!"
assert submission_json["id"] != 0, "Edit invalid because ID is tampered, it must not be 0!"
submission_json_dummy = {"id": submission_json["id"], "edit": submission.id}
submission_json_dummy = {"id": submission_json["id"], "edit": submission.id}
else:
else:
assert submission_json["id"] == 0, "Edit invalid because ID is tampered, it must be 0!"
assert submission_json["id"] == 0, "Edit invalid because ID is tampered, it must be 0!"
submission_json_dummy = {"id": submission.id}
submission_json_dummy = {"id": submission.id}
for key in submission_json:
if not key in submission_json_dummy:
submission_json_dummy[key] = submission_json[key];
submission_json = format_all(submission_json_dummy, True)
validation_status = validate(submission_json)
for key in submission_json:
if not key in submission_json_dummy:
submission_json_dummy[key] = submission_json[key];
submission_json = format_all(submission_json_dummy, True)
validation_status = validate(submission_json)
assert validation_status < 3, \
"Submission invalid after validation. This may be caused by not enough points on the path."
assert validation_status < 3, \
"Submission invalid after validation. This may be caused by not enough points on the path."
add_comma_line = len(OUT_FILE_LINES) - 2
if len(OUT_FILE_LINES[add_comma_line]) > 2:
OUT_FILE_LINES[add_comma_line] = OUT_FILE_LINES[add_comma_line].replace('\n', ',\n')
OUT_FILE_LINES.insert(len(OUT_FILE_LINES) - 1, json.dumps(submission_json, ensure_ascii=False) + '\n')
READ_IDS_FILE.write(submission.id + '\n')
successcount += 1
set_flair(submission, "Processed Entry")
add_comma_line = len(OUT_FILE_LINES) - 2
if len(OUT_FILE_LINES[add_comma_line]) > 2:
OUT_FILE_LINES[add_comma_line] = OUT_FILE_LINES[add_comma_line].replace('\n', ',\n')
OUT_FILE_LINES.insert(len(OUT_FILE_LINES) - 1, json.dumps(submission_json, ensure_ascii=False) + '\n')
READ_IDS_FILE.write(submission.id + '\n')
successcount += 1
set_flair(submission, "Processed Entry")
except Exception as e:
FAIL_FILE.write(
"\n\n" + "="*40 + "\n\nSubmission ID: " +
submission.id + "\n\n" +
traceback.format_exc() + "\n\n" +
"==== RAW ====" + "\n\n" +
rawtext + "\n\n"
"==== CLEAN ====" + "\n\n" +
text + "\n\n"
)
failcount += 1
set_flair(submission, "Rejected Entry")
except Exception as e:
FAIL_FILE.write(
"\n\n" + "="*40 + "\n\nSubmission ID: " +
submission.id + "\n\n" +
traceback.format_exc() + "\n\n" +
"==== RAW ====" + "\n\n" +
rawtext + "\n\n"
"==== CLEAN ====" + "\n\n" +
text + "\n\n"
)
failcount += 1
set_flair(submission, "Rejected Entry")
print("Wrote " + submission.id + ", submitted " + str(round(time.time()-submission.created_utc)) + " seconds ago")
totalcount += 1
print("Wrote " + submission.id + ", submitted " + str(round(time.time()-submission.created_utc)) + " seconds ago")
totalcount += 1
OUT_FILE.writelines(OUT_FILE_LINES)
OUT_FILE.writelines(OUT_FILE_LINES)
print(f"\n\nTotal all flairs: {total_all_flairs}\nSuccess: {successcount}/{totalcount}\nFail: {failcount}/{totalcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.")

View file

@ -411,7 +411,7 @@
{"id": "twoce3", "name": "Starship S20", "description": "SpaceX's Starship S20, created by members of various SpaceX subs.", "links": {"subreddit": ["spacexplace"]}, "path": {"109-166, T": [[881, 1539], [894, 1521], [897, 1521], [909, 1540], [909, 1546], [904, 1546], [904, 1585], [910, 1594], [910, 1606], [881, 1606], [881, 1593], [887, 1583], [887, 1548], [881, 1547]]}, "center": {"109-166, T": [895, 1568]}},
{"id": "twocc3", "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", "links": {"website": ["https://twitter.com/Daimyo_AE"], "subreddit": ["AQW"]}, "path": {"109-166, T": [[727, 1656], [729, 1658], [730, 1658], [731, 1657], [732, 1656], [733, 1656], [733, 1658], [734, 1658], [735, 1657], [736, 1657], [737, 1656], [740, 1656], [742, 1658], [742, 1661], [741, 1661], [739, 1663], [739, 1666], [738, 1668], [737, 1667], [736, 1667], [735, 1668], [734, 1667], [733, 1667], [732, 1668], [731, 1667], [730, 1668], [729, 1667], [729, 1666], [728, 1665], [727, 1665]]}, "center": {"109-166, T": [734, 1662]}},
{"id": "twocbz", "name": "Flag of South Africa", "description": "Mural of the South African national flag displayed vertically. It features:\n-A mural of Nelson Mandela, the country's first democratically-elected president following the end of apartheid.\n-A springbok, a species of antelope which is the national animal of South Africa.\n-A shaded area of South Africa.\n-A king protea on the shoulder, the national plant of South Africa which has an artichoke like appearance.\n-Three Rugby World Cup trophies denoting how many times they have won it (1995, 2007, 2019) and a RWC Ball.\n-A Toyota Hiace Ses'fikile, a minibus that is often seen around South Africa used as a shared-taxi.\n-A braai, a special South African feast that can last for hours. Similar to an open-fire barbeque using wood/charcoal.\n-r/SouthAfrica written in the colours of the South African flag.\n-Mini flags of the neighboring countries (Mauritius, Eswatini, Lesotho, Botswana, Namibia, Zimbabwe and Madagascar) as well as Ghana.\n\nThis was created by members of r/SouthAfrica, as well as from the help of surrounding alliances including Mass Effect, Snuffy, Italy, Kenya, Ghana, Mauritius, Nigeria, Slippi (SSBM), some members of r/Forsen, r/Ticos, Zoil (TTV/Neutral), and more.", "links": {"subreddit": ["SouthAfrica"]}, "path": {"109-165, T": [[720, 955], [720, 1066], [781, 1067], [781, 955], [781, 954]]}, "center": {"109-165, T": [751, 1011]}},
{"id": "twobh1", "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.", "links": {"website": ["https://honkaiimpact3.hoyoverse.com"], "subreddit": ["houkai3rd"]}, "path": {"109-166, T": [[1674, 1809], [1674, 1762], [1709, 1762], [1709, 1773], [1720, 1774], [1721, 1787], [1715, 1789], [1716, 1790], [1717, 1790], [1713, 1792], [1713, 1793], [1714, 1793], [1715, 1793], [1713, 1795], [1714, 1797], [1722, 1810], [1722, 1802], [1721, 1808], [1722, 1810]]}, "center": {"109-166, T": [1695, 1786]}},
{"id": "twobh1", "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.", "links": {"website": ["https://honkaiimpact3.hoyoverse.com/"], "subreddit": ["houkai3rd", "honkaiimpact3"], "discord": ["hi3"], "wiki": ["https://place-wiki.stefanocoding.me/wiki/Honkai_Impact_3rd"]}, "path": {"109-166, T": [[1674, 1761], [1674, 1809], [1722, 1809], [1722, 1803], [1721, 1803], [1720, 1804], [1719, 1802], [1718, 1802], [1718, 1801], [1717, 1801], [1717, 1800], [1716, 1800], [1716, 1799], [1715, 1799], [1715, 1798], [1715, 1797], [1714, 1797], [1714, 1796], [1714, 1795], [1714, 1794], [1714, 1793], [1715, 1793], [1715, 1792], [1715, 1791], [1716, 1791], [1716, 1790], [1717, 1790], [1717, 1789], [1718, 1789], [1718, 1788], [1719, 1788], [1720, 1788], [1721, 1788], [1721, 1781], [1720, 1781], [1720, 1780], [1720, 1777], [1720, 1776], [1721, 1776], [1721, 1775], [1720, 1775], [1720, 1774], [1719, 1774], [1718, 1774], [1717, 1774], [1716, 1774], [1715, 1774], [1714, 1774], [1713, 1774], [1712, 1774], [1711, 1774], [1710, 1774], [1709, 1774], [1709, 1773], [1709, 1772], [1709, 1771], [1709, 1770], [1709, 1769], [1709, 1768], [1709, 1767], [1709, 1766], [1709, 1765], [1709, 1764], [1709, 1763], [1709, 1762], [1709, 1761]]}, "center": {"109-166, T": [1694, 1788]}},
{"id": "twob1y", "name": "TGForever", "description": "TGForever is a gaming community that primarily offers a Minecraft server, and is always looking for new faces. It also offers a dedicated Terraria server.", "links": {"subreddit": ["TGF"], "discord": ["tgf"]}, "path": {"56-166, T": [[1592, 969], [1612, 969], [1612, 1000], [1591, 1000], [1591, 969]]}, "center": {"56-166, T": [1602, 985]}},
{"id": "two8y1", "name": "BC", "description": "Logo of a C inside a B. Created and maintained by BC logo guy in alliance with r/DinoPlace", "links": {"subreddit": ["DinoPlace"]}, "path": {"1-166, T": [[338, 780], [338, 786], [343, 786], [343, 780]]}, "center": {"1-166, T": [341, 783]}},
{"id": "two8xr", "name": "Suncracker0", "description": "the simplified logo of a small twitch streamer named Suncracker0", "links": {"website": ["https://www.twitch.tv/suncracker0"], "subreddit": ["Suncracker"]}, "path": {"1-165, T": [[734, 946], [734, 954], [738, 954], [738, 946]]}, "center": {"1-165, T": [736, 950]}},
@ -677,7 +677,7 @@
{"id": "twluem", "name": "Red Gnome", "description": "The red Gnome from the game Everhood, hiding behind half the DankPods sign.", "links": {"website": ["https://everhoodgame.com/"], "subreddit": ["Everhood"]}, "path": {"56-166, T": [[1441, 824], [1449, 824], [1445, 812]]}, "center": {"56-166, T": [1445, 820]}},
{"id": "twlt2a", "name": "German maple leaf", "description": "A maple leaf with the Canadian flag design built on the German flag. Built by the German r/placeDE community as a show of sympathy for r/placecanada, whose flag was subject to continuous sabotage attempts throughout the duration of the event.", "links": {"website": ["https://en.wikipedia.org/wiki/Maple_leaf"], "subreddit": ["placeDE", "placecanada"]}, "path": {"109-165, T": [[1720, 1163], [1722, 1163], [1722, 1153], [1725, 1153], [1726, 1154], [1731, 1154], [1731, 1153], [1730, 1152], [1730, 1151], [1732, 1149], [1733, 1149], [1737, 1145], [1737, 1144], [1736, 1144], [1735, 1143], [1736, 1142], [1736, 1140], [1737, 1139], [1737, 1138], [1735, 1138], [1734, 1139], [1731, 1139], [1731, 1138], [1730, 1137], [1729, 1138], [1727, 1140], [1726, 1139], [1726, 1138], [1727, 1137], [1727, 1133], [1726, 1133], [1725, 1134], [1724, 1134], [1723, 1133], [1723, 1132], [1722, 1131], [1722, 1130], [1721, 1129], [1720, 1130], [1720, 1131], [1719, 1132], [1718, 1134], [1717, 1134], [1716, 1133], [1715, 1133], [1715, 1136], [1716, 1137], [1716, 1139], [1715, 1140], [1712, 1137], [1710, 1139], [1708, 1139], [1707, 1138], [1705, 1138], [1705, 1139], [1706, 1140], [1706, 1142], [1707, 1143], [1706, 1144], [1705, 1144], [1705, 1145], [1709, 1149], [1710, 1149], [1712, 1151], [1712, 1152], [1711, 1153], [1711, 1154], [1715, 1154], [1716, 1153], [1720, 1153]]}, "center": {"109-165, T": [1721, 1144]}},
{"id": "twlssp", "name": "SFU", "description": "Simon Fraser University (SFU) is a public research university in British Columbia, Canada. SFU Consistently ranks as Canada's top comprehensive university and named to the Times Higher Education List of 100 universities. SFU was founded in 1962. This pixel art is SFU's smaller current logo", "links": {"website": ["https://www.sfu.ca/"], "subreddit": ["simonfraser"]}, "path": {"56-166, T": [[1461, 790], [1461, 796], [1473, 796], [1473, 790]]}, "center": {"56-166, T": [1467, 793]}},
{"id": "twlshq", "name": "Dogecoin", "description": "One of the most memeable cryptocurrencies. Featuring a picture of Kabosu the original source of the Doge meme. Much Teamwork, wow!", "links": {"subreddit": ["dogecoin"]}, "path": {"56-166, T": [[1651, 377], [1651, 427], [1684, 427], [1684, 420], [1713, 419], [1714, 415], [1721, 414], [1721, 396], [1702, 395], [1701, 378]]}, "center": {"56-166, T": [1681, 402]}},
{"id": "twlshq", "name": "Dogecoin", "description": "One of the most memeable cryptocurrencies. Featuring a picture of Kabosu, the original source of the Doge meme. Much Teamwork, wow!", "links": {"website": ["https://dogechain.info/", "https://en.wikipedia.org/wiki/Dogecoin"], "subreddit": ["dogecoin"]}, "path": {"127-155": [[1656, 377], [1656, 397], [1651, 397], [1651, 409], [1656, 409], [1656, 427], [1684, 427], [1684, 420], [1714, 420], [1714, 415], [1721, 415], [1721, 395], [1701, 395], [1701, 377]], "116-126": [[1657, 377], [1657, 427], [1684, 427], [1684, 420], [1714, 420], [1714, 415], [1721, 415], [1721, 395], [1684, 395], [1684, 377]], "105-115": [[1657, 395], [1657, 427], [1684, 427], [1684, 420], [1715, 420], [1715, 417], [1721, 417], [1721, 395], [1701, 395], [1701, 377], [1684, 377], [1684, 395]], "96-104": [[1684, 377], [1684, 395], [1657, 395], [1657, 427], [1684, 427], [1684, 420], [1715, 420], [1715, 395], [1701, 395], [1701, 377]], "78-95": [[1657, 395], [1657, 427], [1684, 427], [1684, 420], [1715, 420], [1715, 395]], "69-77": [[1657, 395], [1657, 427], [1684, 427], [1684, 420], [1699, 420], [1699, 395]], "59-68": [[1657, 410], [1657, 427], [1684, 427], [1684, 410]], "34-49": [[79, 92], [79, 118], [102, 118], [102, 110], [117, 110], [116, 96], [114, 94], [114, 92]], "27-33": [[79, 92], [79, 118], [102, 118], [102, 92]], "19-26": [[87, 108], [84, 111], [84, 115], [87, 118], [93, 118], [96, 115], [96, 111], [93, 108]], "13-16": [[72, 68], [68, 72], [68, 76], [72, 80], [76, 80], [80, 76], [80, 72], [76, 68]], "156-166, T": [[1651, 377], [1651, 427], [1684, 427], [1684, 420], [1713, 419], [1714, 415], [1721, 414], [1721, 396], [1702, 395], [1701, 378]]}, "center": {"127-155": [1679, 399], "116-126": [1674, 407], "105-115": [1672, 410], "96-104": [1672, 410], "78-95": [1672, 410], "69-77": [1672, 410], "59-68": [1671, 419], "34-49": [91, 104], "27-33": [91, 105], "19-26": [90, 113], "13-16": [74, 74], "156-166, T": [1674, 400]}},
{"id": "twlsac", "name": "5up leafling stack", "description": "A stack of streamer 5up's leaflings.", "links": {"website": ["https://twitch.tv/5uppp"], "subreddit": ["5up"]}, "path": {"109-166, T": [[1796, 1328], [1807, 1328], [1807, 1322], [1804, 1319], [1804, 1295], [1805, 1294], [1804, 1293], [1804, 1288], [1803, 1287], [1803, 1277], [1804, 1277], [1804, 1276], [1802, 1276], [1791, 1283], [1791, 1307], [1796, 1307], [1796, 1318], [1793, 1321]]}, "center": {"109-166, T": [1799, 1303]}},
{"id": "twls6b", "name": "DEMONDICE", "description": "A pixel tribute to the rapper DEMONDICE!", "links": {"subreddit": ["DEMONDICE"]}, "path": {"109-166, T": [[1960, 1493], [1974, 1493], [1977, 1495], [1999, 1495], [1999, 1508], [1978, 1508], [1978, 1510], [1960, 1510]]}, "center": {"109-166, T": [1978, 1502]}},
{"id": "twls61", "name": "Windows XP Start button", "description": "Pictured is the Windows XP Start button and much of the Windows XP taskbar. It had a hard fight to become this, because before it was the Windows XP Start button, it was the Windows 98 one, and now it became the Start button we know now.", "links": {"website": ["https://en.wikipedia.org/wiki/Taskbar#Microsoft_Windows"], "subreddit": ["placestart"]}, "path": {"111-112": [[1, 1986], [55, 1986], [55, 1997], [1, 1997]], "113-164, T": [[0, 1970], [0, 1999], [92, 1998], [96, 1992], [96, 1977], [95, 1977], [95, 1970]]}, "center": {"111-112": [28, 1992], "113-164, T": [29, 1984]}},
@ -808,7 +808,7 @@
{"id": "twrtec", "name": "Kishirika Kishirisu", "description": "A character from the novel/anime series Mushoku Tensei: Jobless Reincarnation. She valiantly fought off a European invasion.", "links": {"website": ["https://mushokutensei.fandom.com/wiki/Kishirika_Kishirisu"], "subreddit": ["mushokutensei"]}, "path": {"56-166, T": [[1731, 212], [1747, 212], [1747, 228], [1731, 228]]}, "center": {"56-166, T": [1739, 220]}},
{"id": "twrsum", "name": "r/ShibbySays Spiral", "description": "A large spiral created by r/ShibbySays, a subreddit dedicated to an ASMR Hypnosis content creator. One of a few animated art pieces on the canvas, the colors of the spiral changed consistently up until the very end.", "links": {"subreddit": ["ShibbySays"]}, "path": {"56-165, T": [[1199, 447], [1257, 447], [1259, 506], [1198, 505]]}, "center": {"56-165, T": [1228, 476]}},
{"id": "twrsu0", "name": "Planetside2", "description": "PlanetSide 2 is a free-to-play massively multiplayer online first-person shooter developed by Rogue Planet Games and published by Daybreak Game Company.", "links": {"subreddit": ["planetside"]}, "path": {"56-166, T": [[1869, 893], [1892, 893], [1892, 916], [1869, 916]]}, "center": {"56-166, T": [1881, 905]}},
{"id": "twrssr", "name": "Casandra", "description": "The orange mascot of spanish art streamer NouConcept.", "links": {"website": ["https://twitch.tv/nouconcept"]}, "path": {"1-165, T": [[23, 90], [23, 73], [41, 73], [41, 91], [23, 91]]}, "center": {"1-165, T": [32, 82]}},
{"id": "twrssr", "name": "Casandra", "description": "The orange mascot of Spanish art streamer NouConcept.", "links": {"website": ["https://twitch.tv/nouconcept"]}, "path": {"149-165, T": [[29, 73], [29, 76], [26, 79], [26, 81], [25, 82], [25, 85], [24, 86], [24, 87], [23, 88], [25, 90], [29, 90], [30, 91], [34, 91], [35, 90], [39, 90], [41, 88], [40, 87], [40, 86], [39, 85], [39, 82], [38, 81], [38, 79], [36, 77], [36, 73]]}, "center": {"149-165, T": [32, 84]}},
{"id": "twrssd", "name": "Cat", "description": "Just a little cat, also known as Kočku (Czech for \"cat\"). Originally next to Czech Republic's flag, a voted decision to invade it was opposed by many Czechs when the cat's owner expressed their sadness. After a poll in which more than 200 people (against 27) voted in favour of the cat, the Czechs would help rebuild it, relocate it when that place turned impractical, and defend it until the end of r/place.", "links": {"subreddit": ["czech"]}, "path": {"109-166, T": [[1684, 1570], [1684, 1560], [1693, 1560], [1693, 1570]]}, "center": {"109-166, T": [1689, 1565]}},
{"id": "twrsph", "name": "Guinea pig gang", "description": "A group of cute guinea pigs (not to be confused with hamsters).", "links": {"website": ["https://en.wikipedia.org/wiki/Guinea_pig"], "subreddit": ["guineapigs"]}, "path": {"109-166, T": [[1317, 1681], [1332, 1681], [1332, 1697], [1228, 1696], [1226, 1676], [1236, 1680], [1240, 1682], [1273, 1680]]}, "center": {"109-166, T": [1280, 1688]}},
{"id": "twrsbf", "name": "NIJISANJI", "description": "A vertical NIJISANJI sign and several NIJISANJI members.", "links": {"website": ["https://www.nijisanji.jp/en/"], "subreddit": ["Nijisanji"]}, "path": {"109-166, T": [[1501, 1063], [1501, 1126], [1524, 1126], [1524, 1088], [1537, 1088], [1537, 1065], [1525, 1065], [1525, 1063]]}, "center": {"109-166, T": [1516, 1091]}},
@ -958,7 +958,7 @@
{"id": "twr97y", "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.", "links": {"subreddit": ["Georgism"]}, "path": {"1-166, T": [[893, 89], [799, 89], [799, 99], [893, 99]]}, "center": {"1-166, T": [846, 94]}},
{"id": "twr947", "name": "Hand stencil", "description": "A hand, made by streamers Elraenn and Porçay, modeled after a real life ancient hand stencil, one of the oldest known art pieces in history. It is supposed to represent humanity thriving despite the darkness and death around it.", "links": {"website": ["https://www.reddit.com/r/place/comments/twcbut/were_trying_to_recreate_one_of_the_first_art/"]}, "path": {"109-165, T": [[1036, 1403], [1014, 1410], [988, 1423], [984, 1440], [988, 1470], [995, 1495], [1007, 1533], [1025, 1560], [1047, 1570], [1065, 1543], [1079, 1516], [1084, 1468], [1082, 1435], [1071, 1419], [1054, 1408], [1036, 1402]]}, "center": {"109-165, T": [1036, 1478]}},
{"id": "twr92j", "name": "You'll Never Walk Alone", "description": "YNWA (You'll Never Walk Alone), motto of Liverpool Football Club, was made here in collaboration with Borussia Dortmund, because both clubs were/are under management of the legendary Jürgen Klopp.", "links": {"website": ["https://en.wikipedia.org/wiki/You%27ll_Never_Walk_Alone"], "subreddit": ["LiverpoolFC"]}, "path": {"109-166, T": [[1608, 1579], [1608, 1571], [1581, 1572], [1582, 1579]]}, "center": {"109-166, T": [1595, 1575]}},
{"id": "twr91j", "name": "Flo and Nico in Canary", "description": "We wanted to represent our canarian life as french without putting french flag again", "links": {"website": ["https://www.youtube.com/watch?v=eSUKpa1Viq0&ab_channel=NicoJo"]}, "path": {"1-165, T": [[23, 66], [24, 68], [22, 63], [35, 64], [34, 73], [13, 73], [13, 64], [21, 64], [22, 63], [28, 63], [30, 64]]}, "center": {"1-165, T": [24, 68]}},
{"id": "twr91j", "name": "Flo and Nico in Canary", "description": "We wanted to represent our Canarian life as French without putting the French flag again.", "links": {"website": ["https://www.youtube.com/watch?v=eSUKpa1Viq0&ab_channel=NicoJo"]}, "path": {"133-146": [[17, 66], [17, 71], [35, 71], [35, 66]]}, "center": {"133-146": [26, 69]}},
{"id": "twr8ql", "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!", "links": {"subreddit": ["sooners"]}, "path": {"109-166, T": [[1257, 1815], [1257, 1843], [1271, 1843], [1276, 1848], [1285, 1848], [1289, 1844], [1289, 1815]]}, "center": {"109-166, T": [1274, 1830]}},
{"id": "twr8l9", "name": "Flag of Germany", "description": "The second expansion of German territory on r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/Germany"], "subreddit": ["placeDE"]}, "path": {"56-166, T": [[2000, 829], [1999, 869], [1055, 869], [1055, 830], [1917, 832], [1919, 830]]}, "center": {"56-166, T": [1525, 850]}},
{"id": "twr8ia", "name": "Anon Filly", "description": "Mascot pony of 4chan's My Little Pony community (/mlp/).", "links": {"website": ["https://boards.4channel.org/mlp/"]}, "path": {"109-165, T": [[919, 1829], [919, 1823], [918, 1823], [918, 1820], [915, 1820], [915, 1819], [914, 1819], [914, 1818], [913, 1818], [913, 1809], [915, 1809], [915, 1808], [916, 1808], [916, 1807], [917, 1807], [917, 1806], [920, 1806], [920, 1805], [923, 1805], [923, 1806], [924, 1806], [924, 1807], [925, 1807], [925, 1808], [925, 1809], [926, 1809], [927, 1809], [927, 1811], [929, 1811], [929, 1812], [930, 1812], [930, 1813], [936, 1813], [936, 1814], [937, 1814], [937, 1815], [938, 1815], [938, 1816], [939, 1816], [939, 1821], [941, 1821], [941, 1825], [940, 1825], [940, 1826], [939, 1826], [939, 1827], [938, 1827], [938, 1828], [933, 1828], [933, 1829]]}, "center": {"109-165, T": [926, 1818]}},
@ -1051,7 +1051,7 @@
{"id": "twqkt1", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/Oslo_Cathedral_School"]}, "path": {"109-165, T": [[656, 1303], [656, 1307], [657, 1309], [658, 1311], [659, 1313], [660, 1313], [661, 1312], [662, 1311], [663, 1309], [664, 1307], [664, 1303]]}, "center": {"109-165, T": [660, 1307]}},
{"id": "twqkpr", "name": "Mallard duck", "description": "The mallard duck sprite from the game Stardew Valley, created in a collaboration between r/duck_place and r/StardewValley. After first being destroyed by xQc, he was rebuilt and placed on the shoulder of Ratge, an artwork created by Twitch Streamer FranqitoM", "links": {"website": ["https://stardewvalleywiki.com/Duck"], "subreddit": ["duck_place", "StardewValley"]}, "path": {"56-165, T": [[1703, 983], [1704, 983], [1704, 984], [1705, 984], [1705, 985], [1706, 985], [1706, 986], [1707, 986], [1707, 988], [1708, 988], [1708, 998], [1706, 998], [1706, 1001], [1696, 1001], [1696, 1000], [1695, 1000], [1694, 1000], [1694, 999], [1693, 999], [1693, 998], [1692, 998], [1692, 997], [1691, 997], [1691, 996], [1690, 996], [1690, 991], [1691, 991], [1691, 990], [1692, 990], [1692, 989], [1694, 989], [1694, 988], [1696, 988], [1696, 987], [1696, 986], [1697, 986], [1697, 985], [1698, 985], [1698, 984], [1699, 984], [1699, 983], [1702, 983]]}, "center": {"56-165, T": [1700, 993]}},
{"id": "twqkk9", "name": "Lapfox Trax", "description": "A record label by Emma Essex. This art was created by r/LapfoxTrax, a subreddit dedicated to Emma Essex's wonderful musical talents.", "links": {"website": ["https://lapfoxtrax.fandom.com/wiki/Halley_Labs_Wiki"], "subreddit": ["LapfoxTrax"]}, "path": {"109-166, T": [[781, 1958], [781, 1964], [786, 1970], [801, 1970], [805, 1964], [805, 1958], [801, 1954], [801, 1945], [785, 1945], [785, 1954]]}, "center": {"109-166, T": [793, 1958]}},
{"id": "twqk7t", "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.", "links": {"website": ["https://www.twitch.tv/wire_fps"], "subreddit": ["ScratchMappers"]}, "path": {"1-165, T": [[0, 74], [6, 74], [6, 78], [0, 78]]}, "center": {"1-165, T": [3, 76]}},
{"id": "twqk7t", "name": "Scratch Mapping Community x WIRE_FPS", "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.", "links": {"website": ["https://www.twitch.tv/wire_fps"], "subreddit": ["ScratchMappers"]}, "path": {"156-165, T": [[-1, 73], [6, 73], [6, 79], [-1, 79]]}, "center": {"156-165, T": [3, 76]}},
{"id": "twqk2v", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/Pastel_de_nata"], "subreddit": ["portugal"]}, "path": {"1-165, T": [[906, 389], [901, 385], [901, 382], [902, 380], [904, 378], [906, 378], [907, 377], [913, 377], [913, 378], [915, 378], [915, 379], [917, 380], [918, 381], [918, 384], [918, 385], [916, 386], [915, 387], [914, 388], [913, 389], [912, 390], [910, 390], [907, 390]]}, "center": {"1-165, T": [909, 383]}},
{"id": "twqk1j", "name": "P-Rank", "description": "A rank in ULTRAKILL obtained by completing difficult challenges.", "links": {"website": ["https://devilmayquake.com"], "subreddit": ["Ultrakill"]}, "path": {"109-166, T": [[1367, 1810], [1367, 1817], [1373, 1817], [1373, 1810]]}, "center": {"109-166, T": [1370, 1814]}},
{"id": "twqjmc", "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.", "links": {"website": ["https://priconne-redive.jp/"], "subreddit": ["Priconne"]}, "path": {"109-166, T": [[1613, 1805], [1613, 1802], [1614, 1802], [1615, 1801], [1615, 1800], [1616, 1800], [1617, 1799], [1617, 1794], [1618, 1793], [1618, 1792], [1621, 1789], [1621, 1787], [1620, 1786], [1620, 1785], [1623, 1782], [1624, 1782], [1625, 1781], [1627, 1781], [1626, 1781], [1622, 1785], [1622, 1786], [1622, 1787], [1623, 1788], [1624, 1787], [1624, 1786], [1625, 1787], [1626, 1787], [1627, 1786], [1626, 1785], [1626, 1784], [1627, 1784], [1627, 1786], [1626, 1787], [1627, 1789], [1628, 1790], [1629, 1789], [1629, 1792], [1631, 1794], [1631, 1795], [1632, 1796], [1631, 1797], [1632, 1798], [1631, 1799], [1630, 1800], [1631, 1801], [1631, 1804], [1632, 1804], [1634, 1806], [1634, 1807], [1636, 1809], [1615, 1809], [1615, 1807], [1614, 1806]]}, "center": {"109-166, T": [1624, 1799]}},
@ -1310,7 +1310,7 @@
{"id": "tws5ij", "name": "IDOLI 22", "description": "An italian streamer community, named by IDOLI. Who knows what '22' stands for.", "links": {"website": ["https://www.twitch.tv/paoloidolo"], "subreddit": ["IDOLAZZI"]}, "path": {"109-166, T": [[1525, 1767], [1540, 1767], [1540, 1776], [1525, 1776]]}, "center": {"109-166, T": [1533, 1772]}},
{"id": "tws5a3", "name": "Paragraph 11", "description": "Paragraph 11 of the Bier-Comment, a rulebook about meetings of German Student orps. It says 'Es wird fortgesoffen!' ('We shall continue drinking!')", "links": {"website": ["https://en.wikipedia.org/wiki/German_Student_Corps"], "subreddit": ["korpo", "placeDE"]}, "path": {"109-166, T": [[244, 1147], [271, 1147], [272, 1129], [243, 1130]]}, "center": {"109-166, T": [258, 1138]}},
{"id": "tws55y", "name": "Philadelphia 76ers", "description": "A National Basketball Association team located in Philadelphia, Pennsylvania. The TTP below stands for Trust The Process.", "links": {"website": ["https://www.nba.com/sixers"], "subreddit": ["sixers"]}, "path": {"1-166, T": [[80, 579], [99, 579], [99, 607], [80, 607]]}, "center": {"1-166, T": [90, 593]}},
{"id": "tws53k", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/Louvre"], "subreddit": ["placefrance"]}, "path": {"109-164, T": [[2, 1665], [11, 1657], [92, 1730], [62, 1760], [0, 1760]]}, "center": {"109-164, T": [35, 1720]}},
{"id": "tws53k", "name": "Musée du 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.", "links": {"website": ["https://en.wikipedia.org/wiki/Louvre"], "subreddit": ["placefrance"]}, "path": {"109-164, T": [[2, 1665], [11, 1657], [56, 1694], [60, 1670], [64, 1664], [71, 1658], [82, 1658], [92, 1664], [100, 1672], [112, 1683], [111, 1740], [112, 1757], [112, 1760], [81, 1760], [77, 1754], [72, 1750], [68, 1749], [64, 1751], [60, 1758], [61, 1760], [3, 1760]]}, "center": {"109-164, T": [38, 1724]}},
{"id": "tws4w3", "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.", "links": {"website": ["https://projectmoon.studio/eng/main/"], "subreddit": ["libraryofruina"]}, "path": {"56-166, T": [[1346, 106], [1354, 106], [1354, 112], [1352, 115], [1347, 115], [1345, 114]]}, "center": {"56-166, T": [1350, 110]}},
{"id": "tws4tx", "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!", "links": {"subreddit": ["Ben10"]}, "path": {"56-164, T": [[1192, 417], [1173, 417], [1168, 416], [1167, 405], [1192, 405]]}, "center": {"56-164, T": [1180, 411]}},
{"id": "tws4iq", "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.", "links": {"website": ["https://store.steampowered.com/app/669270/Momentum_Mod/"], "subreddit": ["MomentumMod"]}, "path": {"56-166, T": [[1437, 92], [1462, 92], [1464, 100], [1476, 106], [1477, 120], [1466, 131], [1465, 139], [1460, 140], [1460, 145], [1437, 144]]}, "center": {"56-166, T": [1454, 118]}},
@ -1355,7 +1355,7 @@
{"id": "twrwk5", "name": "Avengers", "description": "The Avengers logo, from Marvel", "links": {"subreddit": ["Marvel_place"]}, "path": {"109-166, T": [[955, 1721], [975, 1721], [975, 1720], [975, 1719], [977, 1719], [977, 1718], [979, 1718], [979, 1717], [980, 1717], [980, 1716], [981, 1716], [981, 1714], [982, 1714], [982, 1701], [981, 1701], [981, 1699], [980, 1699], [980, 1698], [979, 1698], [979, 1697], [978, 1697], [978, 1695], [977, 1695], [977, 1694], [975, 1694], [975, 1688], [972, 1688], [972, 1689], [971, 1689], [971, 1690], [970, 1690], [970, 1691], [970, 1692], [966, 1692], [966, 1693], [963, 1693], [963, 1694], [961, 1694], [961, 1695], [959, 1695], [959, 1696], [958, 1696], [958, 1697], [957, 1697], [957, 1698], [956, 1698], [956, 1700], [955, 1700]]}, "center": {"109-166, T": [968, 1707]}},
{"id": "twrwce", "name": "British Rail", "description": "The double arrows logo of British Rail, the United Kingdom's rail operator between 1965 and 1997, and subsequently Network Rail, its successor, up to the present day. Also features a Network Southeast stripe.", "links": {"website": ["https://en.wikipedia.org/wiki/British_Rail"]}, "path": {"109-166, T": [[476, 1512], [467, 1512], [467, 1524], [476, 1524]]}, "center": {"109-166, T": [472, 1518]}},
{"id": "twrw6f", "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!", "links": {"subreddit": ["weebklubben"]}, "path": {"56-166, T": [[1475, 135], [1491, 135], [1490, 115], [1478, 114]]}, "center": {"56-166, T": [1483, 125]}},
{"id": "twrw0l", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/Basic_Law_for_the_Federal_Republic_of_Germany"], "subreddit": ["placeDE"]}, "path": {"109-165, T": [[1669, 1128], [1669, 1164], [1692, 1164], [1691, 1127]]}, "center": {"109-165, T": [1680, 1146]}},
{"id": "twrw0l", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/Basic_Law_for_the_Federal_Republic_of_Germany"], "subreddit": ["placeDE"], "discord": ["placede"], "wiki": ["The_\"Grundgesetz\"_of_germany"]}, "path": {"109-166, T": [[1682, 1129], [1703, 1129], [1703, 1164], [1682, 1164]]}, "center": {"109-166, T": [1693, 1147]}},
{"id": "twrvuv", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/Michael_Schumacher"], "subreddit": ["placeDE", "formula1"]}, "path": {"1-166, T": [[542, 837], [542, 836], [541, 835], [541, 831], [542, 830], [543, 829], [544, 828], [546, 828], [554, 827], [554, 828], [555, 829], [556, 830], [556, 832], [557, 833], [557, 837], [556, 838], [543, 838]]}, "center": {"1-166, T": [549, 833]}},
{"id": "twrvna", "name": "Nina en Nijntje (Melanie and Miffy)", "description": "Nina en Nijntje (Melanie and Miffy in English). Nijntje is the main character in the children's picture books written and drawn by Dick Bruna.", "links": {"website": ["https://www.nijntje.nl/"], "subreddit": ["PlaceNL"]}, "path": {"1-166, T": [[769, 35], [811, 35], [812, 34], [813, 34], [815, 32], [815, 30], [813, 28], [812, 28], [812, 23], [811, 22], [814, 19], [814, 18], [815, 17], [815, 14], [813, 12], [812, 12], [811, 13], [810, 13], [808, 15], [808, 16], [807, 17], [807, 18], [806, 18], [807, 17], [807, 15], [808, 14], [808, 12], [806, 10], [798, 10], [794, 6], [793, 6], [792, 5], [788, 5], [787, 6], [786, 6], [782, 10], [774, 10], [773, 11], [772, 12], [772, 14], [773, 15], [773, 17], [774, 18], [773, 18], [773, 17], [772, 16], [772, 15], [770, 13], [769, 13], [768, 12], [767, 12], [765, 14], [765, 17], [766, 18], [766, 19], [769, 22], [768, 23], [768, 28], [767, 28], [765, 30], [765, 32], [767, 34], [768, 34]]}, "center": {"1-166, T": [790, 22]}},
{"id": "twrvcx", "name": "DAX-Dachs", "description": "Similar to the Mittwochfrosch, this is a way for German subreddits to celebrate Thursdays.", "links": {"subreddit": ["placeDE"]}, "path": {"109-165, T": [[999, 1149], [999, 1147], [1000, 1147], [1000, 1145], [1001, 1146], [1001, 1143], [1000, 1142], [1000, 1141], [1001, 1140], [1002, 1140], [1003, 1141], [1004, 1142], [1007, 1142], [1008, 1141], [1009, 1140], [1011, 1140], [1012, 1141], [1012, 1142], [1010, 1144], [1010, 1146], [1011, 1146], [1011, 1147], [1013, 1149], [1013, 1151], [1014, 1151], [1013, 1168], [1012, 1169], [1010, 1170], [1006, 1170], [1002, 1170], [1001, 1169], [1000, 1168], [1000, 1169], [1001, 1171], [1002, 1172], [1002, 1174], [1001, 1174], [1000, 1175], [993, 1175], [992, 1173], [992, 1172], [993, 1172], [995, 1171], [996, 1170], [995, 1169], [995, 1165], [994, 1165], [994, 1163], [993, 1163], [993, 1158], [994, 1158], [995, 1159], [995, 1162], [996, 1162], [997, 1162], [997, 1161], [998, 1159], [999, 1159], [999, 1155], [1000, 1154], [1001, 1153], [1002, 1152], [1001, 1151], [1000, 1151], [999, 1150]]}, "center": {"109-165, T": [1004, 1158]}},
@ -1426,7 +1426,7 @@
{"id": "twttso", "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.", "links": {"website": ["https://store.steampowered.com/app/477740/Zero_Escape_The_Nonary_Games/"], "subreddit": ["ZeroEscape"]}, "path": {"136-162, T": [[0, 972], [9, 972], [9, 973], [16, 973], [16, 994], [10, 994], [4, 1000], [0, 1000]]}, "center": {"136-162, T": [8, 986]}},
{"id": "twtt3g", "name": "Sound Voltex", "description": "A rhythm game by Konami where players have to control six buttons and two knobs", "links": {"website": ["https://p.eagate.573.jp/game/sdvx"]}, "path": {"56-166, T": [[1215, 58], [1215, 68], [1258, 68], [1256, 66], [1256, 65], [1255, 64], [1255, 60], [1254, 60], [1253, 59], [1248, 55], [1244, 59], [1243, 59], [1242, 60], [1234, 60], [1230, 57], [1229, 57], [1224, 60], [1218, 60]]}, "center": {"56-166, T": [1236, 63]}},
{"id": "twtt0w", "name": "Kappa and Zuko", "description": "Two cats belonging to a member of the Middle Eastern Alliance, named Kappa and Zuko.", "links": {}, "path": {"56-166, T": [[1786, 953], [1786, 957], [1796, 957], [1796, 952], [1786, 952]]}, "center": {"56-166, T": [1791, 955]}},
{"id": "twtswq", "name": "Boowomp Bob", "description": "Now with an extra long nose!", "links": {}, "path": {"56-166, T": [[1403, 327], [1404, 369], [1406, 377], [1418, 377], [1418, 378], [1418, 426], [1423, 425], [1422, 377], [1426, 380], [1431, 380], [1432, 382], [1437, 381], [1437, 378], [1440, 377], [1437, 376], [1437, 368], [1437, 347], [1438, 346], [1438, 344], [1437, 344], [1437, 334], [1439, 327]]}, "center": {"56-166, T": [1421, 358]}},
{"id": "twtswq", "name": "Boowomp SpongeBob", "description": "Also Known as Spunch Bop, It lasted through many streamer raids, fended off against Pakistanis, The Purple Void, and co-existed along the amoguses. Lead by maximilian of the Origins of Iconic Images Twitter account.", "links": {"website": ["https://twitter.com/image_origins"], "subreddit": ["spongebob"], "discord": ["ftFU3DEU"]}, "path": {"75-166, T": [[1403, 327], [1404, 369], [1406, 377], [1418, 377], [1418, 378], [1418, 426], [1423, 425], [1422, 377], [1426, 380], [1431, 380], [1432, 382], [1437, 381], [1437, 378], [1440, 377], [1437, 376], [1437, 368], [1437, 347], [1438, 346], [1438, 344], [1437, 344], [1437, 334], [1439, 327]]}, "center": {"75-166, T": [1420, 344]}},
{"id": "twtsne", "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.", "links": {"website": ["https://papersplease.fandom.com/wiki/Arstotzka"], "subreddit": ["PapersPlease"]}, "path": {"56-166, T": [[1296, 75], [1306, 75], [1306, 82], [1296, 82]]}, "center": {"56-166, T": [1301, 79]}},
{"id": "twtsl3", "name": "Bisexual pride heart", "description": "A bi pride heart that was added under Phoenix Wright and Miles Edgeworth.", "links": {"subreddit": ["plAceAttorney", "AceAttorney", "bisexual"]}, "path": {"56-166, T": [[1315, 99], [1314, 99], [1313, 100], [1313, 101], [1316, 104], [1319, 101], [1319, 100], [1318, 99], [1317, 99], [1316, 100], [1315, 99], [1314, 99], [1313, 100]]}, "center": {"56-166, T": [1316, 101]}},
{"id": "twtshq", "name": "Aurobia Flower", "description": "A flower built by the small community of Aurobia", "links": {"subreddit": ["aurobia"], "discord": ["bKKrUQmbBh"]}, "path": {"56-165, T": [[1216, 568], [1220, 568], [1216, 572], [1220, 572]]}, "center": {"56-165, T": [1218, 570]}},
@ -1480,7 +1480,7 @@
{"id": "twtmwp", "name": "Fallen Star", "description": "Fallen Star pixel art from Terraria.", "links": {"website": ["https://terraria.fandom.com/wiki/Fallen_Star"], "subreddit": ["Terraria"]}, "path": {"109-166, T": [[502, 1792], [502, 1793], [504, 1793], [505, 1792], [506, 1792], [507, 1791], [508, 1792], [509, 1792], [510, 1793], [512, 1793], [512, 1792], [509, 1789], [512, 1787], [510, 1787], [507, 1783], [504, 1787], [502, 1787], [504, 1789], [503, 1791]]}, "center": {"109-166, T": [507, 1789]}},
{"id": "twtmva", "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.\n\nWe 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.", "links": {"website": ["https://www.elka.pw.edu.pl"]}, "path": {"1-166, T": [[658, 284], [688, 284], [688, 296], [658, 296]]}, "center": {"1-166, T": [673, 290]}},
{"id": "twtmt2", "name": "Flag of Albania", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Flag_of_Albania"], "subreddit": ["albania"]}, "path": {"1-165, T": [[335, 253], [335, 297], [355, 297], [355, 253]]}, "center": {"1-165, T": [345, 275]}},
{"id": "twtmsr", "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.", "links": {"subreddit": ["Dominican"]}, "path": {"1-165, T": [[85, 93], [85, 73], [12, 73], [12, 93]]}, "center": {"1-165, T": [49, 83]}},
{"id": "twtmsr", "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.", "links": {"website": ["https://en.wikipedia.org/wiki/Dominican_Republic"], "subreddit": ["Dominican"]}, "path": {"144-148": [[47, 73], [47, 93], [85, 93], [85, 73]], "138-143": [[85, 77], [85, 89], [106, 89], [106, 77]], "122-137": [[38, 70], [38, 77], [20, 77], [20, 89], [19, 89], [19, 93], [108, 93], [108, 91], [113, 86], [113, 73], [58, 73], [58, 70]], "107-121": [[84, 77], [84, 90], [107, 90], [107, 77]], "149-165, T": [[85, 93], [85, 73], [12, 73], [12, 93]]}, "center": {"144-148": [66, 83], "138-143": [96, 83], "122-137": [51, 82], "107-121": [96, 84], "149-165, T": [49, 83]}},
{"id": "twtmsl", "name": "Wheatley", "description": "The character \"Wheatley\" from the iconic game Portal 2, working as a mascot for the Portal 2 speedrunning community. Was originally made to illustrate the Twitch emote \"portal5Hype\".", "links": {"subreddit": ["Portal"], "discord": ["p2sr"]}, "path": {"1-166, T": [[831, 610], [851, 609], [852, 634], [829, 635]]}, "center": {"1-166, T": [841, 622]}},
{"id": "twtmmm", "name": "Kaonashi - Spirited Away", "description": "Kaonashi (No-Face) from the Studio Ghibli anime Spirited Away.", "links": {"website": ["https://en.wikipedia.org/wiki/Spirited_Away"], "subreddit": ["Ghibli"]}, "path": {"56-166, T": [[1432, 278], [1431, 277], [1430, 276], [1429, 275], [1429, 273], [1428, 273], [1428, 270], [1428, 268], [1427, 267], [1426, 266], [1426, 256], [1425, 255], [1424, 254], [1423, 253], [1422, 252], [1422, 250], [1416, 250], [1416, 251], [1415, 252], [1414, 253], [1413, 254], [1412, 255], [1411, 257], [1411, 264], [1411, 269], [1410, 270], [1409, 271], [1409, 274], [1408, 275], [1407, 276], [1406, 277], [1405, 278], [1405, 279], [1432, 279]]}, "center": {"56-166, T": [1419, 267]}},
{"id": "twtm4y", "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.", "links": {"website": ["https://shallwedate.jp/obeyme/en/"], "subreddit": ["obeyme"]}, "path": {"56-165, T": [[1375, 405], [1376, 396], [1376, 380], [1344, 382], [1345, 403], [1346, 403], [1345, 405], [1375, 405], [1345, 397], [1336, 398], [1337, 407], [1345, 407], [1346, 399], [1376, 406]]}, "center": {"56-165, T": [1358, 394]}},
@ -2508,7 +2508,7 @@
{"id": "twxhz0", "name": "St Petroc's Cross", "description": "The flag of the English county of Devon.", "links": {"subreddit": ["DevonUK"]}, "path": {"109-166, T": [[1770, 1576], [1786, 1576], [1786, 1589], [1775, 1589], [1775, 1584], [1775, 1583], [1770, 1583]]}, "center": {"109-166, T": [1779, 1582]}},
{"id": "twxhso", "name": "SnoweyVR", "description": "SnoweyVR's logo, created in the final hour of r/place.", "links": {"website": ["https://www.twitch.tv/snoweyvr"]}, "path": {"56-166, T": [[1747, 841], [1759, 841], [1759, 850], [1747, 850]]}, "center": {"56-166, T": [1753, 846]}},
{"id": "twxhm5", "name": "Hey Mister, Let's Play!", "description": "The two main characters of Czech stop-motion animated series Pojďte pane, budeme si hrát (Hey Mister, Let's Play).", "links": {"website": ["https://en.wikipedia.org/wiki/Hey_Mister,_Let%27s_Play!"], "subreddit": ["czech"]}, "path": {"56-166, T": [[1292, 209], [1277, 214], [1276, 226], [1296, 226], [1296, 211]]}, "center": {"56-166, T": [1287, 219]}},
{"id": "twxhae", "name": "Indeed, they are Layton and Luke", "description": "Like my partner said here, they are Layton and Luke, they're always together. Professor Layton is a series of mystery and puzzles, with deep stories and breathtaking twists. You should totally give it a try!", "links": {"subreddit": ["ProfessorLayton"]}, "path": {"56-167, T": [[1953, 334], [1960, 334], [1960, 337], [1967, 338], [1967, 356], [1953, 356]]}, "center": {"56-167, T": [1960, 346]}},
{"id": "twxhae", "name": "Indeed, they are Layton and Luke", "description": "Like my partner said here, they are Layton and Luke, they're always together. Professor Layton is a series of mystery and puzzles video games, with deep stories and breathtaking twists. You should totally give it a try!", "links": {"website": ["https://en.wikipedia.org/wiki/Professor_Layton"], "subreddit": ["ProfessorLayton"]}, "path": {"56-167, T": [[1953, 334], [1960, 334], [1960, 337], [1967, 338], [1967, 356], [1953, 356]]}, "center": {"56-167, T": [1960, 345]}},
{"id": "twxh9q", "name": "Sugar Pine 7", "description": "Logo of the Youtube channel Sugar Pine 7, known for their Alternative Lifestyle comedic series. Also they won a streamy award.", "links": {"website": ["https://www.youtube.com/c/sugarpine7"]}, "path": {"109-166, T": [[1840, 1380], [1854, 1380], [1854, 1369], [1840, 1369]]}, "center": {"109-166, T": [1847, 1375]}},
{"id": "twxh7k", "name": "Arknights text", "description": "the first Arknights related pixel art to be placed on the canvas", "links": {"subreddit": ["arknights"]}, "path": {"1-166, T": [[962, 120], [1000, 120], [1000, 113], [962, 113], [962, 114]]}, "center": {"1-166, T": [981, 117]}},
{"id": "twxh7f", "name": "University of Alberta Crest", "description": "The school crest of the University of Alberta. Located in Edmonton, Alberta, Canada.", "links": {"website": ["https://www.ualberta.ca/index.html"], "subreddit": ["ualberta"]}, "path": {"56-167, T": [[1230, 36], [1246, 36], [1246, 54], [1240, 58], [1235, 58], [1230, 54], [1231, 53]]}, "center": {"56-167, T": [1238, 46]}},
@ -2700,7 +2700,7 @@
{"id": "twwrje", "name": "Leo", "description": "Leo is a major character in the furry visual novel Echo by the Echo project", "links": {"website": ["https://echoproject.itch.io/echo"], "subreddit": ["FurryVisualNovels"]}, "path": {"56-166, T": [[1664, 512], [1667, 515], [1670, 512], [1670, 516], [1671, 516], [1671, 518], [1669, 518], [1669, 519], [1668, 519], [1668, 520], [1666, 520], [1666, 519], [1665, 519], [1665, 518], [1663, 518], [1663, 516], [1664, 516]]}, "center": {"56-166, T": [1667, 516]}},
{"id": "twwrib", "name": "French-German allience", "description": "They both like arte so they became friends.", "links": {"subreddit": ["franceplace", "placefrance", "placeDE"]}, "path": {"56-166, T": [[1161, 825], [1163, 825], [1164, 826], [1165, 825], [1167, 825], [1168, 826], [1169, 827], [1169, 830], [1164, 835], [1159, 830], [1159, 827], [1160, 826]]}, "center": {"56-166, T": [1164, 829]}},
{"id": "twwrhx", "name": "Coxinha", "description": "Famous Brazilian snack, usually made of chicken. There is also a vegan option made of jackfruit.", "links": {"website": ["https://en.wikipedia.org/wiki/Coxinha"], "subreddit": ["brasil"]}, "path": {"56-166, T": [[1110, 605], [1104, 613], [1104, 618], [1114, 618], [1114, 610]]}, "center": {"56-166, T": [1109, 613]}},
{"id": "twzggw", "name": "Cirno", "description": "Cirno is a character from the Touhou Project. She is an ice fairy who is well-liked by the community. This small art piece was created early on in the event by pxls.space veterans, and quickly gained a cult following within the Touhou r/place 2022 group Discord. It survived many attacks that targeted osu! and its surrounding area, but was displaced by Alpha-chan on the third day. This design spawned derivative designs for Daiyousei and Clownpiece, both also fairies from the Touhou Project. At one point she became tanned.", "links": {"website": ["http://perfectfreeze.art"], "subreddit": ["touhou"]}, "path": {"1-165, T": [[770, 762], [770, 765], [771, 765], [771, 768], [770, 768], [767, 769], [764, 769], [763, 766], [762, 766], [763, 766], [763, 764], [762, 764], [763, 764], [763, 762], [764, 761], [766, 762], [767, 762], [769, 761]]}, "center": {"1-165, T": [767, 765]}},
{"id": "twzggw", "name": "Cirno", "description": "Cirno is a character from the Touhou Project. She is an ice fairy who is well-liked by the community. This small art piece was created early on in the event by pxls.space veterans, and quickly gained a cult following within the Touhou r/place 2022 group Discord. It survived many attacks that targeted osu! and its surrounding area, but was displaced by Alpha-chan on the third day. This design spawned derivative designs for Daiyousei and Clownpiece, both also fairies from the Touhou Project. At one point she became tanned.", "links": {"website": ["http://perfectfreeze.art"], "subreddit": ["touhou"]}, "path": {"3-5": [[785, 727], [785, 730], [786, 730], [786, 733], [785, 733], [782, 734], [779, 734], [778, 731], [777, 731], [778, 731], [778, 729], [777, 729], [778, 729], [778, 727], [779, 726], [781, 727], [782, 727], [784, 726]], "5-107": [[759, 773], [759, 776], [760, 776], [760, 779], [759, 779], [756, 780], [753, 780], [752, 777], [751, 777], [752, 777], [752, 775], [751, 775], [752, 775], [752, 773], [753, 772], [755, 773], [756, 773], [758, 772]], "107-165, T": [[770, 762], [770, 765], [771, 765], [771, 768], [770, 768], [767, 769], [764, 769], [763, 766], [762, 766], [763, 766], [763, 764], [762, 764], [763, 764], [763, 762], [764, 761], [766, 762], [767, 762], [769, 761]]}, "center": {"3-5": [782, 730], "5-107": [756, 776], "107-165, T": [767, 765]}},
{"id": "twwr94", "name": "Volkswagen Golf 1", "description": "The Volkswagen Golf Mk1 is the first generation of a small family car manufactured and marketed by Volkswagen. It's the successor to Volkswagen's Beetle.", "links": {"website": ["https://en.wikipedia.org/wiki/Volkswagen_Golf_Mk1"], "subreddit": ["placeDE"]}, "path": {"56-166, T": [[1671, 852], [1688, 852], [1693, 857], [1693, 864], [1692, 864], [1692, 866], [1692, 867], [1689, 867], [1689, 866], [1688, 866], [1688, 865], [1678, 866], [1677, 867], [1676, 868], [1674, 869], [1672, 867], [1671, 866], [1661, 867], [1660, 868], [1658, 868], [1657, 867], [1656, 866], [1655, 866], [1654, 866], [1654, 862], [1655, 862], [1656, 859], [1657, 858], [1661, 858], [1661, 857], [1664, 857], [1669, 852]]}, "center": {"56-166, T": [1675, 860]}},
{"id": "twwr6f", "name": "The Rabbit with Checkered Ears (A kockásfülű nyúl)", "description": "A Hungarian animated children's series staring the Rabbit with Checkered Ears.", "links": {"website": ["https://en.wikipedia.org/wiki/A_kock%C3%A1sf%C3%BCl%C5%B1_ny%C3%BAl"], "subreddit": ["hungary"]}, "path": {"56-166, T": [[1460, 274], [1468, 274], [1468, 273], [1470, 273], [1470, 272], [1471, 271], [1472, 271], [1473, 270], [1473, 269], [1474, 268], [1474, 263], [1473, 262], [1473, 261], [1478, 261], [1478, 262], [1481, 262], [1483, 264], [1483, 265], [1484, 265], [1484, 270], [1485, 270], [1485, 271], [1486, 271], [1486, 270], [1488, 270], [1488, 269], [1489, 269], [1489, 268], [1490, 268], [1490, 267], [1491, 266], [1491, 265], [1491, 264], [1490, 264], [1490, 262], [1489, 262], [1489, 261], [1488, 261], [1488, 260], [1487, 260], [1487, 259], [1486, 259], [1486, 257], [1485, 257], [1485, 256], [1484, 256], [1484, 254], [1475, 254], [1475, 255], [1474, 255], [1473, 256], [1471, 256], [1470, 257], [1469, 258], [1468, 258], [1467, 258], [1467, 257], [1461, 257], [1461, 258], [1460, 258], [1459, 258], [1458, 258], [1458, 256], [1456, 256], [1456, 255], [1455, 255], [1455, 254], [1445, 254], [1445, 255], [1444, 255], [1444, 256], [1443, 256], [1443, 257], [1441, 257], [1441, 258], [1440, 258], [1440, 259], [1439, 259], [1439, 262], [1440, 262], [1440, 263], [1441, 263], [1441, 264], [1442, 264], [1443, 264], [1443, 265], [1445, 265], [1447, 263], [1448, 262], [1451, 262], [1452, 261], [1452, 260], [1455, 260], [1455, 262], [1455, 263], [1454, 263], [1454, 268], [1455, 268], [1454, 268]]}, "center": {"56-166, T": [1465, 263]}},
{"id": "twwr5a", "name": "SHAW!", "description": "SHAW! is an attack telegraph yelled by hornet during her multiple boss fights within the game Hollow Knight.nnIt has since become a popular phrase/meme within the Hollow Knight community.", "links": {"subreddit": ["HollowKnight"]}, "path": {"1-165, T": [[277, 391], [299, 391], [299, 399], [277, 399]]}, "center": {"1-165, T": [288, 395]}},
@ -3209,7 +3209,7 @@
{"id": "tx0vxd", "name": "VŠB-TUO logo", "description": "Logo of VŠB - Technical University of Ostrava, Czech Republic.", "links": {"website": ["https://www.vsb.cz/"]}, "path": {"109-166, T": [[1936, 1368], [1936, 1353], [1950, 1353], [1950, 1368]]}, "center": {"109-166, T": [1943, 1361]}},
{"id": "tx0vwt", "name": "ABBA", "description": "Anni-Frid, Benny, Bjorn & Agnetha. The four members spell out ABBA; a music group from Sweden.", "links": {"website": ["https://en.wikipedia.org/wiki/ABBA"], "subreddit": ["ABBA", "place_nordicunion", "Sweden"]}, "path": {"1-166, T": [[773, 70], [773, 77], [794, 77], [794, 70]]}, "center": {"1-166, T": [784, 74]}},
{"id": "tx0vu4", "name": "Flag of Nepal", "description": "Flag of Nepal", "links": {"subreddit": ["nepal"]}, "path": {"56-166, T": [[1479, 998], [1479, 946], [1499, 967], [1490, 967], [1503, 981], [1481, 981], [1481, 998]]}, "center": {"56-166, T": [1487, 969]}},
{"id": "tx0vo3", "name": "House of Leaves Reference", "description": "A reference to book House of Leaves by Mark Z. Danielewski, in which the word House is always in blue. This was contested space in the beginning, but eventually, after a short lived alliance with the carrot farmers, a truce was finally made here. The House lives on!", "links": {"subreddit": ["houseofleaves"]}, "path": {"1-165, T": [[732, 825], [752, 828], [732, 829], [752, 825]]}, "center": {"1-165, T": [742, 827]}},
{"id": "tx0vo3", "name": "House of Leaves Reference", "description": "A reference to book House of Leaves by Mark Z. Danielewski, in which the word House is always in blue. This was contested space in the beginning, but eventually, after a short lived alliance with the carrot farmers, a truce was finally made here. The House lives on!", "links": {"subreddit": ["houseofleaves"]}, "path": {"1-165, T": [[732, 825], [752, 828], [732, 829], [752, 825], [752, 829], [752, 824], [733, 824], [733, 828], [751, 827], [751, 826], [752, 824], [733, 830], [731, 824], [752, 829], [731, 830]]}, "center": {"1-165, T": [742, 825]}},
{"id": "tx0vj4", "name": "Sri Lanka Flag", "description": "Small Sri Lankan Flag", "links": {"subreddit": ["srilanka"]}, "path": {"56-165, T": [[1955, 120], [1973, 120], [1973, 130], [1955, 130]]}, "center": {"56-165, T": [1964, 125]}},
{"id": "tx0vdr", "name": "Spronkus", "description": "Spronkus, also known as Spronkus Kronkus, is the semi-formal mascot of the shitposting subreddit r/196. The only directly stated rule of r/196 is you must post before you leave. Spronkus is characterized by their gun (always labeled \"Gun\" or \"This is a Gun\") and their support of transgender rights, typically indicated by a small trans pride flag or, in this case, an axe.\n\nAs r/place continued, a growing civil war fought to change the label by Spronkus's firearm from \"Gun\" to \"Cum\".", "links": {"subreddit": ["196"]}, "path": {"1-165, T": [[203, 631], [206, 631], [207, 632], [208, 633], [208, 635], [209, 636], [209, 639], [211, 639], [212, 640], [214, 640], [215, 639], [216, 639], [218, 637], [218, 636], [219, 635], [219, 634], [220, 633], [221, 632], [223, 632], [224, 633], [225, 634], [225, 637], [224, 638], [224, 639], [223, 640], [223, 641], [222, 642], [222, 643], [221, 644], [221, 645], [222, 646], [223, 647], [223, 648], [224, 649], [224, 656], [223, 657], [223, 658], [225, 658], [226, 657], [230, 657], [231, 658], [232, 658], [235, 661], [235, 662], [233, 662], [232, 664], [231, 664], [230, 665], [230, 668], [229, 669], [227, 671], [223, 671], [221, 669], [220, 669], [220, 677], [219, 678], [219, 682], [220, 682], [220, 687], [224, 687], [226, 689], [226, 691], [225, 692], [216, 692], [215, 691], [215, 683], [214, 682], [213, 683], [212, 685], [212, 686], [211, 687], [212, 688], [213, 689], [213, 691], [212, 692], [205, 692], [204, 691], [204, 689], [205, 688], [206, 687], [207, 686], [207, 680], [204, 680], [204, 683], [205, 684], [205, 686], [203, 686], [202, 685], [202, 684], [201, 683], [200, 683], [199, 684], [199, 685], [198, 686], [198, 687], [197, 688], [197, 690], [196, 691], [194, 689], [195, 688], [195, 685], [196, 684], [196, 680], [197, 679], [197, 676], [198, 675], [197, 674], [197, 669], [196, 670], [189, 670], [188, 669], [186, 669], [186, 668], [184, 668], [183, 667], [179, 663], [179, 661], [182, 661], [183, 660], [184, 659], [184, 657], [183, 657], [183, 654], [182, 654], [181, 653], [181, 650], [180, 650], [180, 642], [181, 641], [185, 641], [186, 642], [191, 642], [192, 643], [197, 643], [198, 642], [198, 641], [202, 641], [203, 640], [202, 639], [202, 637], [201, 637], [201, 633], [202, 632]]}, "center": {"1-165, T": [206, 661]}},
{"id": "tx0v83", "name": "Recovery logo", "description": "This symbol is the logo of Eminem's seventh studio album (Recovery).", "links": {}, "path": {"1-165, T": [[898, 982], [895, 982], [895, 983], [894, 983], [894, 984], [893, 984], [893, 987], [894, 987], [894, 988], [895, 988], [895, 989], [898, 989], [898, 988], [899, 988], [899, 987], [900, 987], [900, 984], [899, 984], [899, 983], [898, 983]]}, "center": {"1-165, T": [897, 986]}},
@ -3905,7 +3905,7 @@
{"id": "tx9we8", "name": "Orange enderman eyes", "description": "Two cars altered to look like an orange version of the eye texture of the Minecraft endermen. One of a set of four that can be seen among the parking lot, including purple eyes resembling the current eye texture in the top-left of the lot, green eyes resembling the original eye texture in the bottom-left of the lot, and a blue variant in the top-right. All four were fully constructed by the end of the event", "links": {"website": ["https://minecraft.fandom.com/wiki/Enderman"], "subreddit": ["fuckcars"]}, "path": {"56-164, T": [[1105, 748], [1114, 748], [1114, 750], [1105, 750]]}, "center": {"56-164, T": [1110, 749]}},
{"id": "tx9w8x", "name": "Vinny", "description": "Small area where remnants are of the name Vinny. Hard fought spot by me and my sister but sadly not on this canvas.", "links": {}, "path": {"109-166, T": [[1060, 1904], [1076, 1904], [1076, 1908], [1060, 1908], [1060, 1906]]}, "center": {"109-166, T": [1068, 1906]}},
{"id": "tx9w5k", "name": "Perxitaa", "description": "Minecraft skin used by Perxitaa in series like TortillaLand and Minecraft Extremo. Created by perxeros!", "links": {"website": ["https://twitch.tv/perxitaa"]}, "path": {"109-165, T": [[1990, 1394], [1990, 1401], [1998, 1401], [1998, 1394]]}, "center": {"109-165, T": [1994, 1398]}},
{"id": "tx9vdf", "name": "PepeD", "description": "An animated twitch emote, depicting Pepe the Frog dancing, is commonly used in the chatbox when there's music playing on stream.", "links": {}, "path": {"1-165, T": [[0, 85], [0, 82], [1, 84], [3, 80], [4, 79], [6, 79], [6, 80], [7, 80], [8, 80], [8, 79], [9, 79], [10, 80], [9, 83], [12, 81], [8, 85], [1, 85], [0, 84]]}, "center": {"1-165, T": [6, 82]}},
{"id": "tx9vdf", "name": "PepeD", "description": "An animated Twitch emote depicting Pepe the Frog dancing. It is commonly used in Twitch chat when there's music playing on stream.", "links": {"website": ["https://knowyourmeme.com/memes/peped"]}, "path": {"114-134, 146-165, T": [[-1, 81], [2, 81], [5, 78], [9, 78], [11, 80], [13, 80], [13, 81], [8, 86], [1, 86], [-1, 84]]}, "center": {"114-134, 146-165, T": [7, 82]}},
{"id": "tx9v9q", "name": "Carola", "description": "Minecraft skin used by Spanish streamer Carola in TortillaLand.", "links": {"website": ["https://twitch.tv/carola"], "subreddit": ["Carola"]}, "path": {"109-166, T": [[1980, 1394], [1980, 1401], [1988, 1401], [1988, 1394]]}, "center": {"109-166, T": [1984, 1398]}},
{"id": "tx9up4", "name": "µ-Ziq", "description": "Michael Paradinas, better known by his stage name μ-Ziq (pronounced music or mu-zik), is an English electronic musician. He was associated with the electronic style intelligent dance music (IDM) during the 1990s, and recorded on Rephlex Records and Reflective Records. His critically acclaimed 1997 album, Lunatic Harness, helped define the drill n bass subgenre and was also his most successful release, selling over 100,000 copies. Paradinas founded the record label Planet Mu, begun in 1995, where he has championed genres such as juke and footwork.", "links": {"website": ["https://planet.mu/artists/u-ziq/"], "subreddit": ["idm"]}, "path": {"56-164, T": [[1327, 503], [1327, 508], [1331, 508], [1331, 503]]}, "center": {"56-164, T": [1329, 506]}},
{"id": "tx9ua0", "name": "The original Starwalker", "description": "A secret character in Deltarune who starts appearing throughout the game if found within the Forest.\n\n\"These is Pissing me off... I'm the original Starwalker.\"", "links": {"website": ["https://deltarune.fandom.com/wiki/Starwalker"], "subreddit": ["Deltarune"]}, "path": {"109-166, T": [[1818, 1678], [1816, 1680], [1815, 1680], [1812, 1682], [1812, 1683], [1811, 1684], [1811, 1687], [1814, 1687], [1815, 1688], [1815, 1689], [1813, 1691], [1813, 1692], [1824, 1692], [1824, 1691], [1822, 1689], [1822, 1688], [1825, 1685], [1825, 1684], [1827, 1682], [1825, 1680], [1820, 1680]]}, "center": {"109-166, T": [1819, 1685]}},
@ -4253,7 +4253,7 @@
{"id": "tx7gp9", "name": "Chilean wine", "description": "Wine has been produced in Chile since the 16th century when conquistadors brought grapevines with them.", "links": {"website": ["https://en.wikipedia.org/wiki/Chilean_wine"], "subreddit": ["chile"]}, "path": {"122-159": [[258, 498], [264, 498], [264, 487], [262, 485], [262, 479], [260, 479], [260, 485], [258, 487]], "160-165, T": [[258, 498], [258, 487], [260, 485], [260, 479], [262, 479], [262, 485], [264, 487], [266, 485], [266, 479], [268, 479], [268, 485], [270, 487], [270, 498]]}, "center": {"122-159": [261, 490], "160-165, T": [265, 492]}},
{"id": "tx7git", "name": "Baba", "description": "Titular character of the 2019 puzzle game Baba Is You", "links": {"subreddit": ["BabaIsYou"]}, "path": {"1-164, T": [[693, 826], [693, 828], [691, 830], [691, 832], [692, 831], [693, 831], [694, 832], [695, 831], [696, 833], [696, 831], [697, 830], [697, 828], [695, 826], [694, 827]]}, "center": {"1-164, T": [694, 829]}},
{"id": "tx7gaz", "name": "Grogu", "description": "Also known as Baby Yoda, from the hit Star Wars TV show, The Mandalorian", "links": {"website": ["https://starwars.fandom.com/wiki/Grogu"]}, "path": {"109-166, T": [[748, 1661], [748, 1658], [744, 1653], [763, 1653], [759, 1658], [758, 1659], [761, 1662], [761, 1664], [760, 1664], [761, 1667], [761, 1669], [748, 1669], [747, 1663], [727, 1641]]}, "center": {"109-166, T": [752, 1660]}},
{"id": "tx7g6k", "name": "Dominican Platain", "description": "Dominican Platain who represent the love Dominicans have towards platains", "links": {"subreddit": ["dominican"]}, "path": {"1-165, T": [[51, 80], [52, 82], [52, 83], [53, 84], [54, 86], [54, 83], [55, 80], [53, 80], [52, 78], [53, 78], [53, 77], [53, 75], [54, 76], [52, 75], [49, 79], [53, 76], [52, 76], [49, 81], [49, 82], [49, 84], [51, 84], [51, 85], [50, 86], [51, 87], [52, 88], [53, 87], [55, 88], [54, 89], [55, 89], [58, 86], [63, 85], [59, 88]]}, "center": {"1-165, T": [52, 82]}},
{"id": "tx7g6k", "name": "Plantain", "description": "Dominican plantain that represents the love Dominicans have towards plantains.", "links": {"website": ["https://en.wikipedia.org/wiki/Cooking_banana"], "subreddit": ["Dominican"]}, "path": {"120-136": [[50, 77], [50, 79], [47, 82], [47, 87], [48, 88], [48, 89], [51, 92], [52, 92], [53, 93], [58, 93], [59, 92], [60, 92], [63, 89], [63, 87], [57, 87], [54, 84], [54, 83], [53, 82], [53, 80], [54, 79], [54, 77]], "155-165, T": [[51, 74], [51, 76], [48, 79], [48, 84], [49, 85], [49, 86], [51, 88], [52, 88], [54, 90], [60, 90], [61, 89], [62, 89], [64, 87], [62, 85], [60, 85], [58, 83], [57, 83], [56, 82], [56, 81], [55, 80], [55, 79], [54, 78], [54, 77], [55, 76], [55, 74]]}, "center": {"120-136": [52, 88], "155-165, T": [53, 84]}},
{"id": "tx7fw2", "name": "Blurryface by Twenty One Pilots", "description": "Blurryface is the fourth studio album by American musical duo Twenty One Pilots. It was released on May 17, 2015.", "links": {"subreddit": ["twentyonepilots"]}, "path": {"109-165, T": [[393, 1583], [393, 1593], [403, 1593], [403, 1583]]}, "center": {"109-165, T": [398, 1588]}},
{"id": "tx7fiy", "name": "SimpleFlips", "description": "Pixel art of the drippy star used as SimpleFlips' logo and channel icon, courtesy of the SimpleFlips Discord server.", "links": {"website": ["https://www.youtube.com/user/SimpleFlips"], "subreddit": ["SimpleFlips"]}, "path": {"56-165, T": [[1142, 370], [1147, 365], [1153, 366], [1160, 374], [1156, 384], [1143, 384]]}, "center": {"56-165, T": [1150, 375]}},
{"id": "tx7fh1", "name": "Risk of Rain/Trans ally heart", "description": "A heart signifying the alliance between Risk of Rain and the trans flag.", "links": {"subreddit": ["riskofrain", "TransPlace"]}, "path": {"1-165, T": [[582, 427], [582, 429], [585, 433], [586, 433], [589, 430], [590, 427], [588, 426], [587, 426], [586, 427], [585, 427], [584, 426], [583, 426]]}, "center": {"1-165, T": [586, 429]}},
@ -4405,7 +4405,7 @@
{"id": "txb8m7", "name": "Small Bolivian flag", "description": "Little version of the Bolivian flag", "links": {"subreddit": ["BOLIVIA"]}, "path": {"109-166, T": [[1769, 1100], [1769, 1110], [1788, 1110], [1784, 1100]]}, "center": {"109-166, T": [1778, 1105]}},
{"id": "txb8h6", "name": "Creeper", "description": "It's a Creeper from Minecraft... wearing a hat.", "links": {"website": ["https://minecraft.fandom.com/wiki/Creeper"], "subreddit": ["Minecraft"]}, "path": {"145-164, T": [[84, 1039], [92, 1039], [92, 1054], [84, 1054]]}, "center": {"145-164, T": [88, 1047]}},
{"id": "txb81j", "name": "The Front Bottoms", "description": "The Front Bottoms are an American rock band from Woodcliff Lake, New Jersey consisting of lead vocalist and guitarist Brian Sella and drummer Mat Uychich.", "links": {"website": ["https://www.thefrontbottoms.com/"], "subreddit": ["thefrontbottoms"]}, "path": {"56-165, T": [[1706, 617], [1705, 610], [1710, 606], [1717, 606], [1722, 611], [1722, 617], [1717, 621], [1710, 621]]}, "center": {"56-165, T": [1714, 613]}},
{"id": "txb7xi", "name": "Bisexual Transgender Unity", "description": "Two flags showing unity between the Bisexual and Transgender communities.", "links": {}, "path": {"109-166, T": [[1633, 1946], [1633, 1960], [1647, 1960], [1647, 1946]]}, "center": {"109-166, T": [1640, 1953]}},
{"id": "txb7xi", "name": "United Nations Discord Server", "description": "A small online friend group discord server jokingly named after the real life United Nations. Multiple members happen to be bisexual and transgender so we decided to make the flags to show our pride.", "links": {}, "path": {"109-166, T": [[1633, 1946], [1633, 1960], [1647, 1960], [1647, 1946], [1636, 1946]]}, "center": {"109-166, T": [1640, 1953]}},
{"id": "txb7tb", "name": "SolidarityGaming", "description": "A Minecraft YouTuber that has been in many SMPs (survival multiplayers) including Evolution, Legacy X-Life, 3rd Life/Last Life, Empires, and Afterlife SMP.", "links": {"website": ["https://www.youtube.com/user/SolidarityGaming"], "subreddit": ["ThirdLifeSMP", "3rdLife"]}, "path": {"56-166, T": [[1138, 313], [1138, 322], [1147, 322], [1147, 313]]}, "center": {"56-166, T": [1143, 318]}},
{"id": "txb7qr", "name": "Best Buddies logo", "description": "A small logo of Best Buddies, a nonprofit American organization focused on volunteers pairing up with people with intellectual and developmental disabilities to provide them a friend.", "links": {"website": ["https://www.bestbuddies.org/"]}, "path": {"109-165, T": [[946, 1489], [956, 1489], [956, 1495], [946, 1495]]}, "center": {"109-165, T": [951, 1492]}},
{"id": "txb6lr", "name": "James Marriott", "description": "A trilingual Swiss-English YouTuber/streamer best known for his commentary-based videos and music and his vlogs with TommyInnit. Creator of the infamous song, Slow Down, and pioneer of the Smash or Pass stream genre.", "links": {"website": ["https://www.youtube.com/jamesmarriott"], "subreddit": ["JamesMarriott"]}, "path": {"59-165, T": [[146, 944], [155, 944], [155, 953], [146, 953]]}, "center": {"59-165, T": [151, 949]}},
@ -4779,7 +4779,7 @@
{"id": "txg04h", "name": "Mahou beer bottle", "description": "It's a bottle of Spanish beer from the well-known brand Mahou.", "links": {}, "path": {"56-166, T": [[1791, 785], [1790, 785], [1790, 798], [1789, 799], [1789, 806], [1786, 810], [1786, 839], [1788, 841], [1792, 841], [1792, 785]]}, "center": {"56-166, T": [1789, 818]}},
{"id": "txfzas", "name": "Freddo the Frog", "description": "A chocolate snack in Australia in the shape of a frog. It replaced Pulsus's logo before they moved next to the Kangaroo.", "links": {"website": ["https://www.cadbury.co.uk/products/cadbury-dairy-milk-freddo-11299"]}, "path": {"1-165, T": [[673, 696], [672, 697], [672, 698], [670, 700], [670, 701], [669, 702], [669, 704], [673, 708], [674, 708], [675, 709], [677, 709], [678, 708], [679, 708], [682, 705], [682, 704], [683, 703], [683, 702], [681, 700], [681, 698], [679, 696]]}, "center": {"1-165, T": [676, 702]}},
{"id": "txfz8a", "name": "Diglett", "description": "A Ground-type Pokémon from Generation I.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Diglett_(Pok%C3%A9mon)"], "subreddit": ["pokemon"]}, "path": {"1-166, T": [[629, 195], [627, 197], [627, 200], [626, 201], [627, 202], [633, 202], [634, 201], [633, 200], [633, 197], [631, 195]]}, "center": {"1-166, T": [630, 199]}},
{"id": "txfz50", "name": "Muted Hearts", "description": "Muted Hearts is a small community of talented artists, tinkerers, and kind-hearted individuals. The three hearts represent the strong unity and friendship we all share.", "links": {}, "path": {"1-165, T": [[15, 66], [15, 71], [33, 71], [33, 66]]}, "center": {"1-165, T": [24, 69]}},
{"id": "txfz50", "name": "Muted Hearts", "description": "Muted Hearts is a small community of talented artists, tinkerers, and kind-hearted individuals. The three hearts represent the strong unity and friendship we all share.", "links": {}, "path": {"126-149": [[17, 66], [17, 71], [35, 71], [35, 66]], "150-165, T": [[15, 66], [15, 71], [33, 71], [33, 66]]}, "center": {"126-149": [26, 69], "150-165, T": [24, 69]}},
{"id": "txfytc", "name": "Small italian flag with the number \"126\"", "description": "A small project from a group of 5-6 italian friends, who took up the number 126 from a local roman rapper crew called Lovegang", "links": {}, "path": {"1-166, T": [[756, 280], [770, 280], [770, 288], [756, 288]]}, "center": {"1-166, T": [763, 284]}},
{"id": "txfxlq", "name": "SDSU", "description": "San Diego State University Logo created by 138 students organized on a discord server: SDSU r/place.", "links": {"subreddit": ["sdsu"]}, "path": {"109-164, T": [[370, 1584], [353, 1584], [353, 1590], [370, 1590]]}, "center": {"109-164, T": [362, 1587]}},
{"id": "txfxjl", "name": "Purpl' Studio Logo", "description": "the fist of The Purpl' Studio !", "links": {"website": ["https://www.instagram.com/purpl_studio/"]}, "path": {"109-165, T": [[943, 1364], [943, 1357], [952, 1357], [952, 1364]]}, "center": {"109-165, T": [948, 1361]}},
@ -5459,7 +5459,7 @@
{"id": "txpdg3", "name": "Turtle", "description": "A friendly hidden turtle.", "links": {"website": ["https://en.wikipedia.org/wiki/Turtle"]}, "path": {"1-165, T": [[930, 678], [931, 678], [931, 679], [932, 679], [932, 680], [931, 680], [931, 681], [930, 681], [929, 681], [929, 683], [928, 683], [928, 682], [925, 682], [925, 683], [924, 683], [924, 682], [924, 681], [923, 681], [923, 679], [925, 679], [925, 678], [928, 678], [928, 679], [929, 679]]}, "center": {"1-165, T": [927, 680]}},
{"id": "txpbzt", "name": "Mermaid's Pendant", "description": "A representation of a Mermaid's Pendant, which is used to propose marriage in the game Stardew Valley.", "links": {"website": ["https://stardewvalleywiki.com/Mermaid%27s_Pendant"], "subreddit": ["StardewValley"]}, "path": {"109-166, T": [[1708, 1064], [1708, 1081], [1728, 1081], [1728, 1064]]}, "center": {"109-166, T": [1718, 1073]}},
{"id": "txpbxx", "name": "HUMPHREY", "description": "Character of the video game OMORI", "links": {"website": ["https://omori.fandom.com/wiki/HUMPHREY"], "subreddit": ["OMORI"]}, "path": {"1-165, T": [[965, 803], [982, 803], [982, 813], [981, 813], [981, 816], [980, 816], [980, 817], [979, 817], [979, 818], [978, 818], [978, 819], [977, 819], [977, 820], [970, 820], [970, 819], [969, 819], [969, 818], [968, 818], [968, 817], [967, 817], [967, 816], [966, 816], [966, 813], [965, 813], [965, 804], [966, 804], [966, 803]]}, "center": {"1-165, T": [974, 811]}},
{"id": "txpbm6", "name": "Inform", "description": "Famous Collective of Elite Osnabrooklyn based CS Students", "links": {}, "path": {"1-165, T": [[87, 88], [87, 94], [108, 94], [108, 88]]}, "center": {"1-165, T": [98, 91]}},
{"id": "txpbm6", "name": "Inform", "description": "Famous collective of elite Osnabrooklyn-based computer science students.", "links": {}, "path": {"155-165, T": [[87, 88], [87, 94], [108, 94], [108, 88]]}, "center": {"155-165, T": [98, 91]}},
{"id": "txpaff", "name": "Vysena", "description": "Vysena Studios is a group of creators experts in developing unique experiences in Fortnite Creative.", "links": {"subreddit": ["FortniteCreative"]}, "path": {"56-165, T": [[1600, 799], [1599, 818], [1579, 818], [1579, 805], [1590, 805], [1592, 799]]}, "center": {"56-165, T": [1590, 810]}},
{"id": "txpa9l", "name": "OMOLI", "description": "Character of the video game OMORI", "links": {"website": ["https://omori.fandom.com/wiki/OMOLI"], "subreddit": ["OMORI"]}, "path": {"56-165, T": [[1108, 804], [1110, 804], [1110, 805], [1115, 805], [1115, 806], [1114, 806], [1114, 807], [1109, 807], [1109, 808], [1108, 808], [1108, 809], [1107, 809], [1107, 813], [1110, 813], [1110, 814], [1112, 814], [1112, 812], [1112, 813], [1113, 813], [1113, 814], [1114, 814], [1113, 814], [1113, 816], [1114, 816], [1114, 817], [1115, 817], [1115, 824], [1119, 824], [1119, 827], [1113, 827], [1113, 826], [1105, 826], [1105, 827], [1100, 827], [1100, 824], [1103, 824], [1103, 822], [1102, 822], [1102, 818], [1103, 818], [1103, 816], [1104, 816], [1104, 815], [1105, 815], [1105, 814], [1106, 814], [1106, 813], [1107, 813], [1107, 809], [1108, 809], [1108, 808], [1109, 808], [1109, 806], [1108, 806]]}, "center": {"56-165, T": [1109, 820]}},
{"id": "txp8u0", "name": "Pufferfish", "description": "A small image of one of the many possible fish that can be caught in the game Stardew Valley.", "links": {"website": ["https://stardewvalleywiki.com/Pufferfish"], "subreddit": ["StardewValley"]}, "path": {"109-166, T": [[1729, 1064], [1729, 1081], [1749, 1082], [1749, 1064]]}, "center": {"109-166, T": [1739, 1073]}},
@ -6816,7 +6816,7 @@
{"id": "u0zksr", "name": "A bee", "description": "designed by u/beeplace", "links": {}, "path": {"1-165, T": [[755, 559], [763, 559], [763, 569], [755, 569]]}, "center": {"1-165, T": [759, 564]}},
{"id": "u0z7lv", "name": "Goby", "description": "The mascot and logo of the CWRU Fighting Gobies, a college Ultimate Frisbee team.", "links": {"website": ["https://ultimate.case.edu/"]}, "path": {"109-165, T": [[1268, 1023], [1277, 1023], [1279, 1034], [1269, 1034]]}, "center": {"109-165, T": [1273, 1029]}},
{"id": "u0z76f", "name": "Primogems", "description": "The currency of Genshin Impact", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Primogem"], "subreddit": ["GenshinPlace", "Genshin_Impact"]}, "path": {"56-167, T": [[1840, 729], [1838, 733], [1834, 735], [1838, 737], [1839, 740], [1841, 749], [1841, 750], [1840, 752], [1836, 754], [1840, 756], [1842, 760], [1844, 756], [1848, 754], [1844, 752], [1843, 748], [1841, 740], [1842, 737], [1846, 735], [1863, 732], [1866, 734], [1868, 738], [1870, 734], [1873, 732], [1870, 730], [1868, 726], [1866, 730], [1863, 732], [1846, 735], [1842, 733]]}, "center": {"56-167, T": [1848, 741]}},
{"id": "u0z2xh", "name": "Venti", "description": "An archon and a playable character in Genshin Impact. He is dressed in Dutch clothing as part of a pact with the Dutch community.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Venti"], "subreddit": ["Genshin_Impact", "placeNE"]}, "path": {"56-166, T": [[1160, 13], [1160, 16], [1157, 21], [1156, 21], [1154, 19], [1152, 21], [1152, 22], [1154, 24], [1154, 25], [1153, 26], [1153, 29], [1155, 32], [1157, 36], [1156, 37], [1156, 39], [1159, 39], [1159, 42], [1165, 42], [1165, 39], [1168, 39], [1168, 36], [1170, 34], [1170, 33], [1171, 32], [1171, 26], [1170, 25], [1170, 24], [1172, 22], [1172, 21], [1170, 19], [1168, 21], [1167, 21], [1165, 16], [1164, 13]]}, "center": {"56-166, T": [1162, 28]}},
{"id": "u0z2xh", "name": "Venti", "description": "An archon and a playable character in Genshin Impact. He is dressed in Dutch clothing as part of a pact with the Dutch community.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Venti"], "subreddit": ["Genshin_Impact", "placeNE"]}, "path": {"51-81": [[6, 68], [2, 72], [2, 77], [1, 78], [1, 80], [0, 81], [1, 82], [1, 83], [2, 84], [2, 85], [5, 88], [7, 88], [7, 91], [11, 91], [11, 88], [13, 88], [16, 85], [16, 84], [18, 82], [18, 81], [17, 80], [17, 78], [16, 77], [16, 72], [17, 72], [19, 70], [17, 68], [17, 66], [16, 66], [14, 68], [10, 68], [9, 67], [8, 67], [7, 68]], "82-166, T": [[1160, 13], [1160, 16], [1157, 21], [1156, 21], [1154, 19], [1152, 21], [1152, 22], [1154, 24], [1154, 25], [1153, 26], [1153, 29], [1155, 32], [1157, 36], [1156, 37], [1156, 39], [1159, 39], [1159, 42], [1165, 42], [1165, 39], [1168, 39], [1168, 36], [1170, 34], [1170, 33], [1171, 32], [1171, 26], [1170, 25], [1170, 24], [1172, 22], [1172, 21], [1170, 19], [1168, 21], [1167, 21], [1165, 16], [1164, 13]]}, "center": {"51-81": [9, 81], "82-166, T": [1162, 28]}},
{"id": "u0z0do", "name": "Transgender flag", "description": "A flag made by the transgender community", "links": {"website": ["https://en.wikipedia.org/wiki/Transgender_flag"]}, "path": {"141-154, T": [[34, 1014], [57, 1014], [57, 1020], [34, 1020]]}, "center": {"141-154, T": [46, 1017]}},
{"id": "u0yo2a", "name": "Hüpferklan", "description": "A small, private Discord community of individuals who enjoy laughing and talking about axolotls. It developed as an off-spring from the public Discord community for the German development team \"CCBlueX\".", "links": {"website": ["https://ccbluex.net"]}, "path": {"149": [[1493, 601], [1493, 607], [1534, 607], [1534, 601]], "150-154": [[1542, 609], [1542, 599], [1490, 599], [1490, 609]]}, "center": {"149": [1514, 604], "150-154": [1516, 604]}},
{"id": "u0ym4w", "name": "Rubber Ducky", "description": "Recreation of a rubber duck, made by Domohead and their Discord server Duck World. The specific duck image used is Domohead's profile picture. The eye was made blue as a nod to a group that was originally building a blue robot in the same spot.", "links": {}, "path": {"1-166, T": [[614, 901], [614, 902], [616, 904], [617, 908], [618, 909], [624, 909], [624, 908], [626, 907], [627, 906], [627, 899], [626, 899], [625, 900], [624, 900], [621, 897], [620, 897], [617, 899], [617, 900]]}, "center": {"1-166, T": [621, 903]}},
@ -7308,7 +7308,7 @@
{"id": "u64ko7", "name": "Irn-Bru", "description": "A Scottish carbonated soft drink manufactured by Barr.", "links": {"subreddit": ["scotland"]}, "path": {"1-165, T": [[956, 865], [956, 864], [957, 863], [958, 862], [959, 862], [961, 864], [961, 865], [962, 866], [963, 867], [964, 867], [964, 868], [963, 869], [962, 870], [961, 870], [960, 869], [959, 868], [958, 867], [957, 866]]}, "center": {"1-165, T": [960, 866]}},
{"id": "u64jrm", "name": "Loch Ness Monster", "description": "A creature from Scottish folklore, also known as Nessie", "links": {"subreddit": ["scotland"]}, "path": {"1-165, T": [[914, 873], [914, 869], [914, 868], [913, 868], [913, 865], [914, 865], [914, 864], [914, 863], [915, 862], [916, 863], [917, 863], [918, 863], [919, 862], [922, 862], [923, 863], [923, 866], [921, 868], [918, 868], [918, 869], [918, 871], [918, 874], [915, 874], [915, 873]]}, "center": {"1-165, T": [917, 867]}},
{"id": "u64iwo", "name": "Bull Thistle", "description": "Cirsium vulgare, the Bull thistle, is the national flower of Scotland. It is also the national emblem of Scotland.", "links": {"subreddit": ["scotland"]}, "path": {"1-165, T": [[931, 885], [930, 884], [929, 884], [929, 883], [928, 882], [927, 882], [928, 881], [927, 880], [929, 880], [929, 881], [930, 882], [931, 882], [931, 883], [932, 884], [933, 885], [935, 885], [935, 884], [935, 883], [934, 883], [934, 881], [935, 880], [935, 879], [935, 878], [934, 878], [934, 877], [934, 876], [935, 877], [936, 877], [936, 876], [937, 877], [938, 877], [938, 876], [939, 877], [940, 877], [940, 876], [940, 878], [939, 879], [939, 880], [940, 881], [940, 882], [940, 883], [939, 883], [938, 885], [941, 885], [942, 885], [942, 884], [943, 884], [943, 883], [943, 882], [944, 882], [945, 882], [945, 881], [945, 880], [946, 880], [947, 880], [947, 881], [947, 882], [946, 882], [945, 883], [945, 884], [944, 884]]}, "center": {"1-165, T": [937, 881]}},
{"id": "u64flh", "name": "Botting is a sin!", "description": "A slogan against the use of bots on Place. One of the first distinguishable works on the expanded canvas.", "links": {}, "path": {"109-166, T": [[713, 1686], [713, 1684], [714, 1683], [714, 1682], [715, 1681], [715, 1671], [716, 1671], [717, 1670], [717, 1669], [749, 1669], [750, 1670], [751, 1670], [751, 1679], [750, 1679], [750, 1683], [749, 1684], [732, 1684], [732, 1685], [731, 1686], [730, 1685], [729, 1684], [718, 1684], [718, 1685], [716, 1685]]}, "center": {"109-166, T": [733, 1677]}},
{"id": "u64flh", "name": "Botting is a sin!", "description": "A slogan against the use of bots on Place. One of the first distinguishable works on the expanded canvas. The slogan is an alteration of the phrase \"Multi-Accounting is a Sin!\" commonly used on pxls.space, an r/place clone", "links": {}, "path": {"109-166, T": [[713, 1686], [713, 1684], [714, 1683], [714, 1682], [715, 1681], [715, 1671], [716, 1671], [717, 1670], [717, 1669], [749, 1669], [750, 1670], [751, 1670], [751, 1679], [750, 1679], [750, 1683], [749, 1684], [732, 1684], [732, 1685], [731, 1686], [730, 1685], [729, 1684], [718, 1684], [718, 1685], [716, 1685]]}, "center": {"109-166, T": [733, 1677]}},
{"id": "u64djl", "name": "Laser Kiwi", "description": "The Laser Kiwi flag was designed in 2015 by Lucy Gray during the New Zealand flag referendums. It became a meme and social media phenomenon.", "links": {"subreddit": ["newzealand"]}, "path": {"56-164, T": [[1559, 756], [1559, 758], [1558, 759], [1557, 760], [1560, 760], [1559, 758], [1559, 756], [1560, 756], [1564, 756], [1565, 756], [1565, 758], [1565, 759], [1564, 759], [1563, 760], [1566, 760], [1565, 759], [1565, 756], [1569, 756], [1571, 755], [1572, 754], [1573, 753], [1574, 752], [1575, 751], [1576, 750], [1576, 745], [1575, 742], [1574, 740], [1573, 739], [1572, 738], [1571, 737], [1570, 736], [1569, 735], [1568, 735], [1567, 734], [1562, 734], [1561, 734], [1561, 733], [1552, 733], [1552, 734], [1552, 736], [1548, 735], [1547, 735], [1547, 734], [1547, 733], [1547, 735], [1546, 735], [1545, 735], [1545, 734], [1544, 734], [1544, 735], [1543, 735], [1542, 735], [1542, 734], [1542, 733], [1541, 733], [1540, 733], [1540, 735], [1539, 735], [1538, 735], [1538, 734], [1538, 735], [1536, 735], [1536, 736], [1535, 736], [1535, 737], [1534, 737], [1534, 738], [1534, 739], [1530, 739], [1530, 740], [1525, 740], [1525, 741], [1521, 741], [1521, 742], [1519, 742], [1522, 742], [1523, 741], [1526, 741], [1526, 740], [1531, 740], [1531, 739], [1534, 740], [1533, 741], [1532, 741], [1532, 742], [1531, 742], [1531, 743], [1530, 743], [1530, 744], [1529, 744], [1529, 745], [1528, 745], [1527, 746], [1527, 747], [1528, 746], [1529, 746], [1530, 745], [1531, 744], [1532, 743], [1533, 743], [1533, 742], [1534, 742], [1542, 742], [1543, 742], [1543, 743], [1546, 743], [1547, 743], [1547, 744], [1548, 745], [1550, 745], [1550, 746], [1551, 746], [1552, 748], [1553, 749], [1553, 750], [1554, 751], [1554, 752], [1555, 753], [1556, 754], [1557, 755], [1558, 755]]}, "center": {"56-164, T": [1558, 743]}},
{"id": "u64a18", "name": "ForTheHorse", "description": "A viral charity moment from the Minecraft series Mindcrack.", "links": {"website": ["https://www.mindcracklp.com/"], "subreddit": ["mindcrack"]}, "path": {"56-166, T": [[1816, 414], [1816, 419], [1815, 419], [1815, 423], [1820, 423], [1820, 415], [1819, 415], [1819, 414]]}, "center": {"56-166, T": [1818, 419]}},
{"id": "u648j6", "name": "Pyropuncher", "description": "A Minecraft YouTuber, part of Mindcrack.", "links": {"website": ["https://www.youtube.com/user/Pyropuncher"], "subreddit": ["mindcrack"]}, "path": {"56-166, T": [[1812, 425], [1812, 432], [1821, 432], [1821, 425]]}, "center": {"56-166, T": [1817, 429]}},
@ -8084,7 +8084,7 @@
{"id": "uo5fdz", "name": "The Far Lands", "description": "Made by the Far Lands, a small discord community", "links": {}, "path": {"56-165, T": [[1873, 56], [1879, 56], [1879, 62], [1873, 62]]}, "center": {"56-165, T": [1876, 59]}},
{"id": "up7z2o", "name": "Gammon Beasts", "description": "A group of criminals and scumbags around thirty strong. Represented by a purple Chimp. Forged with iron and blood under the mighty Noggin.", "links": {"website": ["https://www.youtube.com/channel/UClhEG5Xpv1sWc8E7tjbDc1g"]}, "path": {"154-164": [[1932, 1255], [1925, 1255], [1924, 1254], [1923, 1253], [1923, 1240], [1935, 1240], [1935, 1243], [1935, 1244], [1939, 1244], [1939, 1245], [1938, 1246], [1937, 1247], [1936, 1246], [1931, 1246], [1930, 1247], [1931, 1246], [1930, 1247], [1930, 1252], [1931, 1253], [1932, 1254], [1933, 1255]]}, "center": {"154-164": [1927, 1244]}},
{"id": "upe5rh", "name": "the duck place", "description": "the place of the ducks, was a place where ducks were drawn but were eaten by Canada.", "links": {"subreddit": ["placeducks"], "discord": ["cE8tWSWs7U"]}, "path": {"109-164, T": [[175, 485], [176, 450], [197, 451], [230, 485], [210, 485]]}, "center": {"109-164, T": [192, 469]}},
{"id": "twhz4u", "name": "Genshin Impact", "description": "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.\n\nBefore moving to the top left of the first expansion as well as changing to the Chinese version, the Genshin Impact logo used to be located here. Unfortunately for its supporters, it was quickly defaced to spell various other words like \"Genshrek\" or \"Genshit\". It was later destroyed by an extension of John Dillermand's absurdly long penis.", "links": {"website": ["https://genshin.hoyoverse.com/", "https://en.wikipedia.org/wiki/Genshin_Impact"], "subreddit": ["GenshinPlace", "Genshin_Impact"]}, "path": {"15-110": [[0, 62], [0, 93], [114, 93], [120, 87], [129, 87], [129, 66], [118, 66], [118, 62], [74, 62], [69, 57], [64, 62]]}, "center": {"15-110": [69, 77]}},
{"id": "twhz4u", "name": "Genshin Impact", "description": "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.\n\nBefore moving to the top left of the first expansion as well as changing to the Chinese version, the Genshin Impact logo used to be located here. Unfortunately for its supporters, it was quickly defaced to spell various other words like \"Genshrek\" or \"Genshit\". It was later destroyed by an extension of John Dillermand's absurdly long penis.", "links": {"website": ["https://genshin.hoyoverse.com/", "https://en.wikipedia.org/wiki/Genshin_Impact"], "subreddit": ["GenshinPlace", "Genshin_Impact"]}, "path": {"15-78, 95-110": [[0, 62], [0, 93], [114, 93], [120, 87], [129, 87], [129, 66], [118, 66], [118, 62], [74, 62], [69, 57], [64, 62]]}, "center": {"15-78, 95-110": [69, 77]}},
{"id": "urripm", "name": "Winterfall Logo", "description": "Winterfall is a group of small content creators including: mawtchies, reverendliu, Shroombies, blinkholdstead, kelsbu, lilsalot, sleeping_meg, natesighted, NovaGlow, vaifis, whiteriiiice, pixelcollieplays/1yla_ , coodiequeen, teadragn, moonkachu, raxifire, scifigirlgamez, tealou, TikkiToxin, and yue_charontares.", "links": {"website": ["https://twitter.com/SMPWinterfall"], "subreddit": ["winterfallsmp"]}, "path": {"56-164, T": [[976, 1960], [986, 1960], [986, 1970], [976, 1970]]}, "center": {"56-164, T": [981, 1965]}},
{"id": "usn581", "name": "Meloetta", "description": "A Normal/Psychic-type Mythical Pokémon known for singing. It is depicted here in its Aria Forme; by using the move Relic Song, it can transform into its Pirouette Forme, changing its type to Normal/Fighting and becoming a dancer.", "links": {"website": ["https://bulbapedia.bulbagarden.net/wiki/Meloetta_(Pok%C3%A9mon)"]}, "path": {"26-37": [[121, 33], [119, 35], [119, 43], [122, 46], [122, 47], [119, 47], [119, 50], [121, 50], [121, 52], [123, 52], [125, 54], [126, 53], [132, 53], [132, 49], [131, 48], [131, 47], [130, 46], [131, 45], [131, 44], [132, 43], [132, 41], [131, 40], [131, 39], [128, 36], [126, 36], [126, 33]]}, "center": {"26-37": [126, 42]}},
{"id": "usn14a", "name": "Flag of the Netherlands", "description": "The flag of the Netherlands featuring a cannabis leaf.", "links": {"website": ["https://en.wikipedia.org/wiki/Cannabis_in_the_Netherlands", "https://en.wikipedia.org/wiki/Netherlands"]}, "path": {"49-56": [[186, 64], [186, 96], [221, 96], [221, 64]]}, "center": {"49-56": [204, 80]}},
@ -8143,5 +8143,31 @@
{"id": "v35xc3", "name": "Blue Line", "description": "A blue line made by a group of friends who fought long for a place on the map. In an alliance with r/JRWIShow, the line was protected until the end.", "links": {}, "path": {"132-165": [[694, 1477], [694, 1479], [695, 1479]]}, "center": {"132-165": [694, 1478]}},
{"id": "v2njza", "name": "Geocraft", "description": "Geocraft, a community of Dutch and English minecrafters building the Netherlands in their game.", "links": {"website": ["https://geocraft.nl/"], "discord": ["RxD97R9"]}, "path": {"114-167": [[1181, 1906], [1194, 1906], [1194, 1919], [1181, 1919]]}, "center": {"114-167": [1188, 1913]}},
{"id": "v255w9", "name": "B from Bongo", "description": "This B represents the online gaming community Bongo, who alongside the different French streamers defended from different attacks, the B stood until the very end.", "links": {}, "path": {"164": [[294, 1526], [299, 1526], [300, 1532], [295, 1532], [294, 1532]]}, "center": {"164": [297, 1529]}},
{"id": "v39gyv", "name": "small trans flag", "description": "a small trans flag i (u/RamircaWasTakenAGAIN) made with random people", "links": {"website": ["https://www.reddit.com/user/RamircaWasTakenAGAIN"]}, "path": {"2-18": [[918, 678], [918, 684], [938, 684], [938, 678]]}, "center": {"2-18": [928, 681]}}
{"id": "v39gyv", "name": "small trans flag", "description": "a small trans flag i (u/RamircaWasTakenAGAIN) made with random people", "links": {"website": ["https://www.reddit.com/user/RamircaWasTakenAGAIN"]}, "path": {"2-18": [[918, 678], [918, 684], [938, 684], [938, 678]]}, "center": {"2-18": [928, 681]}},
{"id": "v7im7j", "name": "Avogadro, and Fiddle", "description": "The Avogadro project and pxlsfiddle were both made for pxls.space (an r/place clone). Pxlsfiddle was the first major templating tool for pxls, and the avogadro project was a project to create art that seemed to reflect the canvas like a giant mirror, its mascot being an avocado. Both were made by Zoda.", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["pxls"]}, "path": {"164": [[787, 708], [789, 708], [789, 709], [790, 709], [790, 711], [791, 711], [791, 713], [792, 713], [792, 716], [791, 716], [791, 718], [789, 718], [789, 720], [789, 718], [786, 718], [786, 719], [786, 716], [785, 716], [784, 716], [784, 717], [783, 717], [783, 716], [781, 716], [778, 715], [779, 714], [782, 714], [783, 713], [784, 713], [785, 713], [785, 711], [786, 711], [786, 709], [787, 709]]}, "center": {"164": [788, 713]}},
{"id": "v7ipqq", "name": "Spurdot", "description": "Spurdot was a very active member of pxls.space, an r/place clone. He was first to reach 50k pixels placed, then 100k, and soon 1 million pixels placed. This was the sprite he used over and over. Sadly, he passed due to covid in 2021.", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["pxls"]}, "path": {"164": [[794, 713], [794, 714], [795, 714], [795, 715], [796, 717], [797, 718], [802, 718], [803, 717], [803, 715], [802, 714], [796, 713]]}, "center": {"164": [799, 716]}},
{"id": "v7isc8", "name": "Legion and Ske", "description": "Legion is one of the biggest and most influention factions on pxls.space, and has even once closed down a canvas early because their art was too big. Their art style is usually of roman soldiers. Ske is the day 1 founder of pxls.space, and their username translates to \"spoon\" in Danish, so eventually it became a meme.", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["pxls"]}, "path": {"164": [[826, 707], [825, 708], [825, 710], [826, 711], [826, 718], [826, 713], [829, 713], [829, 718], [829, 716], [831, 716], [831, 718], [833, 717], [833, 711], [831, 711], [831, 709], [832, 709], [831, 708], [829, 708], [829, 711], [828, 711], [826, 713], [827, 711], [827, 708]]}, "center": {"164": [831, 713]}},
{"id": "v7iv85", "name": "New Pixel Axis", "description": "An alliance between Germany, Finland and Ukraine on pxls.space, an r/place clone. It reached its peak on canvas 2 as the largest faction, but broke up that same canvas.", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["pxls"]}, "path": {"164": [[834, 718], [834, 721], [835, 723], [835, 728], [836, 729], [836, 734], [840, 734], [840, 729], [839, 728], [839, 719]]}, "center": {"164": [837, 722]}},
{"id": "v7ixyc", "name": "GlowingSocc and Pink Gang", "description": "The avatar of GlowingSocc, a now inactive user on pxls.space, an r/place clone. Over time, many many emojis of Socc were made. Socc is usually white, but is coloured pink to represent Pink Gang, a pink themed faction on pxls.", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["pxls"]}, "path": {"164": [[803, 708], [806, 708], [808, 710], [808, 717], [807, 718], [805, 718], [805, 712], [803, 710]]}, "center": {"164": [806, 710]}},
{"id": "v7j117", "name": "Woke Cell and Cell holding hands", "description": "A woke cell (left) and a cell (right) holding hands. These are two lattices in pxls.space, an r/place clone that have a love/hate relationship.", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["pxls"]}, "path": {"164": [[811, 713], [810, 714], [810, 717], [811, 718], [814, 718], [815, 717], [816, 717], [817, 718], [818, 717], [820, 718], [823, 718], [824, 717], [824, 714], [823, 713], [824, 712], [823, 711], [822, 711], [821, 712], [820, 713], [819, 714], [818, 716], [817, 716], [816, 716], [815, 714], [814, 713], [810, 713]]}, "center": {"164": [821, 715]}},
{"id": "v7j2xq", "name": "ThisCanMeanAnything (bag)", "description": "A low res version emoji used in the pxls.space discord server. It can mean anything. It also is commonly called bag, and it has gained a cult like following", "links": {"website": ["https://pxls.space/"], "subreddit": ["pxlsspace"], "discord": ["pxls"]}, "path": {"164": [[825, 693], [828, 693], [829, 694], [829, 697], [828, 698], [825, 698], [824, 697], [824, 696], [825, 695], [824, 694]]}, "center": {"164": [827, 696]}},
{"id": "v68yf9", "name": "RIC", "description": "Pixels placed by u/ricand3 and its multiple accounts, just to be part of the history of r/place.", "links": {"website": ["https://www.instagram.com/ricand3/"]}, "path": {"162-163": [[720, 1697], [717, 1697], [717, 1692], [727, 1692], [727, 1695], [726, 1695], [726, 1696], [720, 1696]], "T": [[727, 1695], [727, 1692], [717, 1692], [717, 1700], [718, 1699], [719, 1698], [720, 1697], [721, 1696], [726, 1696]]}, "center": {"162-163": [719, 1694], "T": [719, 1694]}},
{"id": "v5pjsz", "name": "another small trans flag", "description": "another trans flag i made with a friend and random people", "links": {"website": ["https://www.reddit.com/user/RamircaWasTakenAGAIN"]}, "path": {"109-111": [[513, 1651], [513, 1657], [521, 1657], [521, 1651]]}, "center": {"109-111": [517, 1654]}},
{"id": "v5fw0h", "name": "\"Fuck Snyder!\"", "description": "Dan Snyder is the current owner of the Washington Commanders NFL team. Snyder's ownership of the team, which began in 1999, has been extremely controversial, primarily due to numerous accusations of sexual harassment towards women and a toxic workplace within the organization. Snyder has also drawn widespread criticism for his general meddling and mismanagement of the team, in addition to his refusal to change the team's name from \"Redskins\" up until 2020. Despite being universally recognized as one of the worst owners in the major American sports, Snyder has never faced any sort of consequences for his actions. All of this has contributed to the deep-seated hatred for Snyder felt not only by Commanders fans, but also by NFL fans and American sports fans in general.", "links": {"website": ["https://en.wikipedia.org/wiki/Daniel_Snyder"]}, "path": {"112-166": [[1452, 1321], [1452, 1334], [1479, 1334], [1479, 1321], [1453, 1321]]}, "center": {"112-166": [1466, 1328]}},
{"id": "v4vxyl", "name": "Steve Irwin (1962-2006)", "description": "The Wildlife Warrior Steve Irwin was an Australian TV Show animator, conservationist and zoologist. He dedicated his life for the beautiful nature that he loves and played a big role to show us the importance of saving wildlife. Next to him, his signature expression \"Crikey!\", that he loved to say when he met one of the magnificent creature of our planet.", "links": {"wiki": ["https://en.wikipedia.org/wiki/Steve_Irwin"]}, "path": {"144-154": [[1978, 1714], [1940, 1714], [1940, 1749], [1978, 1749]]}, "center": {"144-154": [1959, 1732]}},
{"id": "v4radt", "name": "Pepe the Frog", "description": "Famous sad frog meme", "links": {"website": ["https://knowyourmeme.com/memes/feels-bad-man-sad-frog", "https://en.wikipedia.org/wiki/Pepe_the_Frog"]}, "path": {"162-166": [[473, 1340], [499, 1340], [499, 1341], [500, 1341], [500, 1343], [501, 1343], [501, 1348], [500, 1348], [500, 1350], [499, 1350], [499, 1353], [494, 1353], [494, 1354], [493, 1354], [493, 1355], [493, 1356], [494, 1356], [494, 1357], [495, 1357], [495, 1358], [496, 1358], [496, 1359], [469, 1359], [469, 1345], [470, 1345], [470, 1343], [471, 1343], [471, 1342], [472, 1342], [472, 1340]]}, "center": {"162-166": [479, 1350]}},
{"id": "v7us75", "name": "Dominican Republic", "description": "The Dominican Republic as it appears on a map.", "links": {"website": ["https://en.wikipedia.org/wiki/Dominican_Republic"], "subreddit": ["Dominican"]}, "path": {"160-165": [[53, 76], [53, 78], [54, 79], [54, 80], [55, 81], [55, 82], [57, 84], [58, 84], [60, 86], [62, 86], [63, 87], [55, 89], [54, 89], [50, 86], [49, 87], [49, 88], [50, 89], [50, 92], [52, 92], [53, 93], [54, 92], [56, 92], [56, 89], [63, 87], [63, 89], [64, 89], [65, 88], [66, 88], [67, 87], [69, 87], [70, 88], [71, 87], [74, 87], [75, 88], [79, 88], [80, 89], [81, 89], [84, 86], [84, 84], [78, 81], [78, 78], [77, 78], [76, 79], [71, 79], [68, 77], [66, 77], [65, 76], [63, 76], [62, 75], [56, 75], [56, 76]]}, "center": {"160-165": [66, 82]}},
{"id": "v7zhu0", "name": "Paimon", "description": "Mascot character of Genshin Impact, an action role-playing game developed by Chinese developer miHoYo and first published in 2020.", "links": {"website": ["https://genshin-impact.fandom.com/wiki/Paimon"], "subreddit": ["Genshin_Impact", "GenshinPlace"]}, "path": {"136-148": [[16, 73], [16, 93], [47, 93], [47, 73]]}, "center": {"136-148": [32, 83]}},
{"id": "v7zdjk", "name": "Shrek", "description": "A film series starring the adventures of a green ogre named Shrek in a fairy-tale-esque world.\n\nThe \"shin\" in the Genshin Impact logo slowly morphed into \"Shrek\" over time, eventually overtaking the whole logo to form \"SexShrek\".", "links": {"website": ["https://en.wikipedia.org/wiki/Shrek_(franchise)"]}, "path": {"74-90": [[13, 64], [10, 67], [8, 67], [8, 70], [6, 72], [6, 78], [7, 79], [7, 87], [8, 88], [8, 89], [10, 91], [11, 91], [12, 92], [115, 92], [121, 86], [127, 91], [130, 91], [134, 88], [136, 88], [136, 84], [135, 83], [135, 81], [133, 79], [133, 77], [132, 77], [131, 78], [129, 78], [129, 73], [93, 73], [91, 71], [79, 71], [79, 68], [78, 67], [77, 67], [76, 66], [60, 66], [59, 67], [59, 68], [58, 69], [58, 72], [45, 72], [42, 69], [41, 70], [25, 70], [25, 68], [24, 67], [24, 63], [23, 63], [22, 64]], "54-73, 99-102": [[58, 66], [58, 68], [60, 70], [60, 91], [116, 91], [120, 87], [122, 87], [126, 91], [131, 91], [131, 90], [138, 90], [138, 79], [139, 78], [139, 74], [138, 74], [131, 78], [129, 78], [129, 73], [94, 73], [93, 72], [76, 72], [76, 70], [77, 70], [79, 68], [76, 65], [74, 67], [61, 67], [60, 66]], "50-53, 98": [[62, 66], [61, 67], [60, 67], [57, 70], [57, 72], [60, 72], [60, 92], [66, 92], [67, 93], [71, 93], [76, 88], [76, 72], [79, 72], [79, 71], [74, 66], [73, 67], [63, 67]]}, "center": {"74-90": [69, 79], "54-73, 99-102": [70, 81], "50-53, 98": [68, 80]}},
{"id": "v7ysit", "name": "Flag of Turkey", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"]}, "path": {"134-135": [[76, 84], [76, 93], [95, 93], [95, 84]]}, "center": {"134-135": [86, 89]}},
{"id": "v8063b", "name": "Among Us crewmate", "description": "An Among Us crewmate replacing the 'e' in Genshin Impact's logo.", "links": {"website": ["https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"97-102": [[31, 71], [27, 75], [27, 79], [26, 80], [26, 86], [28, 86], [28, 90], [43, 90], [43, 74], [40, 72], [40, 70], [31, 70]]}, "center": {"97-102": [35, 81]}},
{"id": "v804mg", "name": "Among Us crewmate", "description": "An Among Us crewmate made out of the 'H' from the Shrek logo. Its visor became another mini Among Us crewmate.", "links": {"website": ["https://www.innersloth.com/games/among-us/", "https://en.wikipedia.org/wiki/Among_Us"]}, "path": {"86-94": [[77, 72], [77, 76], [75, 76], [75, 83], [77, 83], [77, 91], [94, 91], [94, 87], [93, 87], [93, 72], [91, 72], [91, 71], [80, 71], [80, 72]]}, "center": {"86-94": [85, 80]}},
{"id": "v801gz", "name": "Shrek", "description": "The titular ogre character from the Shrek franchise.", "links": {"website": ["https://en.wikipedia.org/wiki/Shrek_(character)"]}, "path": {"78-93": [[29, 70], [28, 71], [26, 71], [26, 72], [28, 74], [28, 77], [27, 78], [27, 85], [28, 86], [28, 92], [40, 92], [44, 88], [44, 70]]}, "center": {"78-93": [35, 82]}},
{"id": "v9cg79", "name": "Flag of Puerto Rico", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Puerto_Rico", "https://en.wikipedia.org/wiki/Flag_of_Puerto_Rico"]}, "path": {"133-135": [[17, 86], [17, 92], [27, 92], [27, 86]]}, "center": {"133-135": [22, 89]}},
{"id": "v9cevg", "name": "Flag of Argentina", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Argentina", "https://en.wikipedia.org/wiki/Flag_of_Argentina"]}, "path": {"130-132": [[27, 73], [27, 77], [33, 77], [33, 73]]}, "center": {"130-132": [30, 75]}},
{"id": "v9cdzh", "name": "Flag of Bolivia", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Bolivia", "https://en.wikipedia.org/wiki/Flag_of_Bolivia"]}, "path": {"128-135": [[32, 73], [32, 77], [38, 77], [38, 73]]}, "center": {"128-135": [35, 75]}},
{"id": "v9hy6v", "name": "Flag of Turkey", "description": "", "links": {"website": ["https://en.wikipedia.org/wiki/Turkey", "https://en.wikipedia.org/wiki/Flag_of_Turkey"]}, "path": {"8-12": [[0, 74], [0, 81], [9, 81], [9, 74]]}, "center": {"8-12": [5, 78]}},
{"id": "v9hw6c", "name": "r/place", "description": "The logo for r/place.", "links": {"website": ["https://en.wikipedia.org/wiki/R/place"], "subreddit": ["place"]}, "path": {"94-95": [[4, 85], [4, 91], [10, 91], [10, 85]]}, "center": {"94-95": [7, 88]}},
{"id": "va2iyy", "name": "MagiQuest MQ", "description": "The MQ of MagiQuest, with a wand intersecting the Q. MagiQuest is an interactive attraction in the form of a live-action roleplaying game. Opening in 2005 in Myrtle Beach, SC, the game has expanded across the United States, and for a time had locations in Japan. It has a small but passionate fanbase.", "links": {"subreddit": ["magiquest"]}, "path": {"76-138": [[992, 369], [1006, 369], [1006, 379], [992, 379]]}, "center": {"76-138": [999, 374]}},
{"id": "vanxs7", "name": "ICAM", "description": "This little work of art was made by a small group of ICAM students led by 125 ITO Filippo BOTTENE.\n\nMore about the school:\nLocated in six cities in France, Institut catholique d'arts et métiers is a Graduate Engineering school created in 1898. It is one of the grandes écoles\n\nIts different curricula lead to the following French & European degrees :\n\n- Ingénieur ICAM (ICAM Graduate engineer Masters level program)\n- Master of Science & PhD doctorate studies\n- Mastères Spécialisés (MS) (Specialized Masters)\nAcademic activities and industrial applied research are performed mainly in French and English languages. Students from a dozen nationalities participate in the different curricula at ICAM.\n\nThe entry on this Atlas was made by 126 ITO 'Gaby'.", "links": {"website": ["https://www.icam.fr"]}, "path": {"152-157": [[1894, 1687], [1905, 1687], [1905, 1690], [1894, 1690]]}, "center": {"152-157": [1900, 1689]}}
]