HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<header>
<h1>Gravedigger</h1>
</header>
<div class="shadowbox">
<div class="info">
<details>
<summary>About</summary>
<p>I define subreddit "deadness" as the median age of the top few posts of all time. Reddit's userbase has grown massively over the years, so if a subreddit's top posts are old despite that, there's a good chance it represents a trend that's over.</p>
<p>For example, compare <a href="javascript:addSubredToData('ragecomics')"> r/ragecomics</a> with <a href="javascript:addSubredToData('comedyheaven')">r/comedyheaven</a>.
<br/>
Or <a href="javascript:addSubredToData('perl')"> r/perl</a> with <a href="javascript:addSubredToData('rust')">r/rust</a>.
</p>
<p>RIP.</p>
</details>
</div>
lookup: <label>r/
<input type="text" id="subred_input" placeholder="<random>" onkeydown="if (event.keyCode == 13) {addSubredToData(this.value);this.value=''}" />
</label>
<br/>
<label> scan random (every 1s) <input type="checkbox" id="autoscan" onclick="handleAutoscan()"></label>
<div id="status">
<span id="loadingtext">idle</span>
<span id="errortext"></span>
</div>
</div>
<div class="shadowbox" id="resultsbox">
<table>
<thead>
<tr>
<th>subreddit</th>
<th><abbr title="median age of the top 10 posts">heyday</abbr></th>
</tr>
<tbody id="results">
</tbody>
</table>
</div>
body {
font-family: "Hack", monospace;
font-size: 13px;
margin: 0 auto;
}
td,
th {
padding: 0.3em;
}
th {
text-align: left;
}
tbody>tr {
background-image:linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.1));
background-position: right;
background-repeat: no-repeat; /* don't remove */
}
tr:nth-child(even) {
background-color: #eee;
}
td:nth-child(2),
th:nth-child(2) {
text-align: right;
}
.shadowbox {
box-shadow: 2px 2px 0 black;
border: 2px solid black;
border-radius: 5px;
padding: 0.5em;
}
table {
width: 100%;
border-collapse: collapse;
}
input[type="text"] {
border: none;
font-family: inherit;
border-bottom: 2px solid black;
}
#subred_input:before {
content: "r/";
}
thead, details {
border-bottom: 2px solid black;
}
body {
padding: 1em;
max-width: 600px;
}
#resultsbox {
margin-top: 2em;
}
#status {
background: #222;
font-size: 11px;
color: white;
margin-top: 1em;
font-weight: bold;
border-radius: 5px;
padding: 0.5em;
display:flex;
flex-direction: row;
justify-content: space-between;
}
#status > p {
margin: 0;
}
#errortext.error {
color: red;
}
#errortext.warning {
color: gold;
}
#errortext.success {
color: forestgreen;
}
details>p {
margin-left:1em;
}
details {
padding-bottom:0.5em;
margin-bottom:0.5em;
}
const MIN_SCORE = 5;
const DEBUG_IMPORT = true; //import a heckton of data
tableData = {};
currentLoads = 0;
autoscanRef = null;
const error_text = document.getElementById("errortext");
function getTopPosts(subred, limit) {
let url =
subred.toLowerCase() === "random"
? `https://bitter-truth-65aa.efskap.workers.dev/?limit=${limit}`
: `https://www.reddit.com/r/${subred}/top/.json?limit=${limit}&t=all`;
return fetch(url)
.then(x => x.json())
.catch(err => {
throw "error: " + err;
});
}
function addSubredToData(subred) {
//document.getElementById("errortext").textContent = "";
currentLoads++;
renderLoadingText();
if (subred === "") {
subred = "random";
}
let subredPromise = Promise.resolve(subred);
// if (subred === "" || subred.toLowerCase() === "random") {
// subredPromise = randomSubreddit();
// }
subredPromise
.then(sub => {
// if (tableData[sub]) {
// throw `r/${sub} already in table: ${secondsToFuzzy(tableData[sub])}`;
// }
subred = sub;
return getTopPosts(sub, 10);
})
.then(j => {
if (j.error) {
throw `error: ${j.message} (${j.reason})`;
}
console.log(j);
let children = j.data.children;
if (children.length < 10) {
throw "invalid: not enough posts on r/" + subred;
}
let top_score = children[0].data.score;
if (top_score < MIN_SCORE) {
throw `invalid: r/${subred}'s top submission's score ${top_score} < threshold ${MIN_SCORE}`;
}
let now = Math.floor(Date.now() / 1000);
let dates = children.map(post => now - post.data.created_utc);
let median_date = median(dates);
sub_name = children[0].data.subreddit;
if (tableData[sub_name]) {
error_text.textContent = `${sub_name} updated: ${secondsToFuzzy(median_date)}`;
error_text.className = "";
} else {
error_text.textContent = `${sub_name} added: ${secondsToFuzzy(median_date)}`;
error_text.className = "success";
}
tableData[sub_name] = median_date;
renderList();
})
.finally(() => {
currentLoads--;
renderLoadingText();
})
.catch(err => {
if (err.startsWith("invalid:")) {
error_text.className = "warning";
} else if (err.startsWith("error:")) {
error_text.className = "error";
} else {
error_text.className = "";
}
error_text.textContent = err;
});
}
function renderLoadingText() {
let loadingtext = document.getElementById("loadingtext");
if (currentLoads > 0) {
loadingtext.textContent = `querying ${currentLoads} subreddit${
currentLoads > 1 ? "s" : ""
}...`;
} else if (document.getElementById("autoscan").checked) {
loadingtext.textContent = "waiting to scan";
} else {
loadingtext.textContent = "idle";
}
}
function renderList() {
let tbody = document.getElementById("results");
let html = "";
let sortedSubreds = Object.keys(tableData)
.sort(function(a, b) {
return tableData[a] - tableData[b];
})
.reverse();
let maxVal = tableData[sortedSubreds[0]];
for (subred of sortedSubreds) {
let percentage = (100 * tableData[subred] / maxVal).toFixed(3);
let fuzzy = secondsToFuzzy(tableData[subred]);
let deadness = Math.floor(tableData[subred] / (60 * 60 * 24));
html += `<tr style="background-size: ${percentage}% 100%"><td><a target="_blank" rel="noopener noreferrer" href="https://reddit.com/r/${subred}">${subred}</a></td><td><abbr title="${deadness} days">${fuzzy}</abbr></td></tr>`;
}
tbody.innerHTML = html;
}
function median(numbers) {
var median = 0,
count = numbers.length;
numbers.sort();
if (count % 2 === 0) {
// is even
median = (numbers[count / 2 - 1] + numbers[count / 2]) / 2;
} else {
// is odd
median = numbers[(count - 1) / 2];
}
return median;
}
function randomSubreddit() {
// r/random is incompatible with CORS so this gets a random post and then takes the subreddit from that
// obviously biased towards the really big subreddits
// a proxy is always preferrable
return fetch("https://www.reddit.com/random/.json")
.then(x => x.json())
.then(j => j[0].data.children[0].data.subreddit);
}
function handleAutoscan() {
let checkbox = document.getElementById("autoscan");
if (checkbox.checked) {
addSubredToData("");
autoscanRef = window.setInterval(() => addSubredToData(""), 2000);
} else {
window.clearInterval(autoscanRef);
}
renderLoadingText();
}
function secondsToFuzzy(seconds) {
var interval = Math.floor(seconds / (3600 * 24 * 365));
if (interval > 1) {
return interval + " years";
}
interval = Math.floor(seconds / (3600 * 24 * 30));
if (interval > 1) {
return interval + " months";
}
interval = Math.floor(seconds / (3600 * 24));
if (interval > 1) {
return interval + " days";
}
interval = Math.floor(seconds / 3600);
if (interval > 1) {
return interval + " hours";
}
interval = Math.floor(seconds / 60);
if (interval > 1) {
return interval + " minutes";
}
return Math.floor(seconds) + " seconds";
}
if (DEBUG_IMPORT) {
tableData = {
"195": 14777646,
"5050": 2044922.5,
"sailing": 43671355.5,
"MightyQuestMobile": 15833100.5,
"hitmanimals": 57567076,
"RedRoseLaCubana": 6001106.5,
"pcmasterrace": 10971141.5,
"dogpictures": 62393012,
"wallstreetbets": 12512335,
"SampleSize": 2933304.5,
"Velo": 11774522,
"Hamilton": 12029215,
"Malazan": 22023235.5,
"CougarsAndCubs": 2668942,
"CitiesSkylines": 147525325.5,
"Eminem": 42784377.5,
"DarkJokeCentral": 5493221,
"amibeingdetained": 42310239,
"woahdude": 64706721.5,
"HVAC": 17334183.5,
"soccer": 49363058.5,
"theydidthemath": 37262470,
"WhatsWrongWithYourDog": 28856266.5,
"YouShouldKnow": 41569370.5,
"brooklynninenine": 28918684.5,
"leanfire": 11901761,
"vaxxhappened": 14296622,
"SeattleWA": 66008956,
"buffalobills": 32286334,
"SiliconValleyHBO": 73229837,
"TameImpala": 4533732.5,
"kettlebell": 22645765.5,
"Gunners": 60851029,
"Archero": 4195707.5,
"neckbeardRPG": 77528928.5,
"BeautifulFemales": 7489782,
"notinteresting": 50041815,
"ockytop": 32479769.5,
"sysadmin": 45538150,
"freebies": 66961204.5,
"microdosing": 2723627,
"stupidpol": 17665428.5,
"Glocks": 24138858,
"movies": 22840750,
"brandonsanderson": 21498703,
"androidapps": 123305924.5,
"CreditCards": 4261832,
"TurkeyJerky": 5839870.5,
"lakers": 24299443.5,
"MLS": 50457139,
"TalesFromThePizzaGuy": 29490854.5,
"Cringetopia": 1725376.5,
"Cosmere": 10999897,
"bertstrips": 36128972.5,
"HistoryMemes": 4644503.5,
"TheGoodPlace": 19929766,
"PeakyBlinders": 4277401.5,
"GYM": 15366736.5,
"DungeonsAndDragons": 56589230,
"ireland": 70548428,
"europe": 30629025,
"mexico": 88209067,
"PinkpillFeminism": 4839705.5,
"dubai": 25159356,
"socialism": 66729883,
"smoobypost": 44373924,
"unpopularopinion": 23539157,
"minimalism": 87123689,
"PandR": 44052375,
"languagelearning": 52938943,
"howardstern": 33879756.5,
"MLBTheShow": 22881291.5,
"seinfeld": 71819407.5,
"getdisciplined": 29758764.5,
"cocaine": 27660386,
"SquaredCircle": 39516527.5,
"criticalrole": 23020303,
"appletv": 11470313.5,
"Wife2share": 5818591,
"neopets": 24550339.5,
"DarlingInTheFranxx": 26049464.5,
"InternetIsBeautiful": 89724261.5,
"audible": 30402574.5,
"IASIP": 61567201,
"HaileeSteinfeld": 16190185.5,
"notopbutok": 2175382.5,
"retrogaming": 24282039.5,
"RedPillWomen": 35572934,
"starbound": 191746029.5,
"HydroHomies": 19216615.5,
"orlando": 37626091,
"java": 179310575,
"whatsthisbug": 18227445.5,
"Embroidery": 25136368,
"AskPhotography": 2463123.5,
"bengals": 52804475.5,
"FragileWhiteRedditor": 1257194,
"KDRAMA": 4253726.5,
"bravefrontier": 82200218.5,
"PCOS": 26223995,
"holdmyjuicebox": 46583326.5,
"sadboys": 14946140.5,
"malegrooming": 15285729.5,
"Documentaries": 61483933.5,
"wowservers": 37276866,
"forhire": 227679335,
"zelda": 21007346.5,
"HeadphoneAdvice": 20236039,
"AMCsAList": 22844404.5,
"ShaneDawson": 4213546.5,
"TooWeakTooWeak": 1749089.5,
"LeagueOfMemes": 2446835,
"sanantonio": 23392883.5,
"iamatotalpieceofshit": 29915228,
"buffy": 20761177,
"ihadastroke": 18902397,
"chemistry": 43819272,
"LilPeep": 15979884,
"ECE": 23463101,
"streetwear": 58515602,
"LongDistance": 4024712.5,
"OculusQuest": 9347080.5,
"BitchImATrain": 29227356,
"coys": 21451530.5,
"Everton": 46143484.5,
"canada": 64934249.5,
"MoeMorphism": 6919138,
"BadChoicesGoodStories": 8015881.5,
"bangalore": 15162778,
"F1Game": 8958541,
"MemeTemplatesOfficial": 7403628.5,
"threekings": 26222303,
"disneyvacation": 41586957.5,
"CFB": 66038417,
"gifs": 51896781,
"kotor": 7575712.5,
"iRacing": 23149097,
"london": 46372687.5,
"BobsBurgers": 38677948,
"football": 13356448,
"LifeProTips": 63372540,
"Weddingsunder10k": 2754753.5,
"linuxquestions": 24304493,
"victoria2": 5002635.5,
"NewSkaters": 22032017,
"EpicSeven": 17658191.5,
"GaySoundsShitposts": 4686613.5,
"DotA2": 68467460,
"NotMyJob": 54042315,
"furry": 1179312.5,
"GalaxyWatch": 3042571.5,
"engineering": 82628240.5,
"HotWheels": 4232485,
"holdmyfries": 60467775,
"RagnarokMobile": 30527736.5,
"ImpracticalJokers": 30965554.5,
"legaladviceofftopic": 26997144,
"KerbalSpaceProgram": 29635451.5,
"LWIAY": 3086660.5,
"travisscott": 16258585,
"ShitLiberalsSay": 14793079.5,
"WEPES": 5513529,
"astrophotography": 15579338.5,
"hmmm": 35597521.5,
"trackers": 77388182.5,
"ripcity": 22284514,
"Wellthatsucks": 28737090.5,
"mechanical_gifs": 62448700,
"FrugalFemaleFashion": 26243576.5,
"traderjoes": 6113882,
"CharacterRant": 36075032,
"TIGHTPUSSY": 21506196,
"bridezillas": 17865482.5,
"Kaiserreich": 19477008,
"Fighters": 8031008,
"oldfreefolk": 8715343,
"lostgeneration": 4391770,
"Monsterverse": 18160048.5,
"omgyoash": 224355,
"HumanForScale": 5685494.5,
"KarmaRoulette": 20375719.5,
"ShitMomGroupsSay": 25638149,
"cpp": 19540388,
"WRX": 22289139,
"leafs": 4818803.5,
"Braves": 19295319.5,
"KacyBlack": 2500713,
"TrueLit": 3479530.5,
"weightwatchers": 16216753,
"cosplaygirls": 82979747,
"Repsneakers": 27806277.5,
"plantclinic": 17248603,
"MixedRaceGirls": 35980558,
"btc": 66176464.5,
"ucla": 35852923,
"tretinoin": 3089097.5,
"MetalMemes": 9996802,
"MurderedByWords": 28879402.5,
"vexillology": 48511056,
"creepyPMs": 56183496,
"GodofWar": 30814352.5,
"IdentityV": 4158109.5,
"terriblefandommemes": 18785112.5,
"crappyoffbrands": 25473470,
"pokemon": 17742149,
"NFA": 26417052,
"outrun": 56431053.5,
"whatcarshouldIbuy": 27362689.5,
"outside": 65630408,
"Xiaomi": 27772629.5,
"instantkarma": 24605067.5,
"RocketLeague": 52298058,
"HumanTippyTaps": 8310977,
"gtaonline": 8828632,
"criterion": 21329472,
"compsci": 22553798,
"CelebsBR": 22598893,
"PokemonTCG": 17577556.5,
"TrueCrime": 14590839.5,
"WWE": 31149464.5,
"TheoryOfReddit": 112703921,
"Twitter": 31665785,
"MiniLadd": 7477388,
"TNOmod": 14890297.5,
"furry_irl": 31268568.5,
"discgolf": 41063713,
"goldenretrievers": 64716122.5,
"canadaguns": 30505764.5,
"Welding": 19072485,
"JustUnsubbed": 17475972,
"AndroidGaming": 31724385,
"jellybeantoes": 52669251.5,
"cataclysmdda": 4181561.5,
"fuckthesepeople": 26298324.5,
"awfuleyebrows": 74619294,
"opendirectories": 39124765.5,
"startups": 46738920.5,
"benzodiazepines": 24223197,
"whitepeoplegifs": 32741374,
"Stims": 23719884.5,
"ArtefactPorn": 40308857.5,
"BravoRealHousewives": 3055255,
"DnDBehindTheScreen": 22107991,
"arrow": 35879949,
"sonos": 10300046,
"feemagers": 12641354.5,
"vita": 58805634,
"lotr": 56446126.5,
"dataisbeautiful": 30116306.5,
"speedrun": 54608923.5,
"frugalmalefashion": 43969147.5,
"TheLastAirbender": 55242956.5,
"FortniteLeaks": 7096873.5,
"LogitechG": 11517076.5,
"DDLC": 61779747.5,
"fiaustralia": 21762204.5,
"Impeach_Trump": 91081220,
"Art": 45931516.5,
"nukedmemes": 3336816,
"deathgrips": 38700725.5,
"DetroitPistons": 22814670,
"CompetitiveWoW": 16814290.5,
"woodworking": 69251605.5,
"leangains": 19947893,
"Accounting": 36674881.5,
"PlayStationPlus": 27464003.5,
"UCSD": 21963829,
"CelebrityArmpits": 17597890,
"hackintosh": 18569163,
"Honda": 8383225,
"UsernameChecksOut": 10861623,
"Tools": 16813025.5,
"Construction": 14278347.5,
"BigBrother": 73089786,
"researchchemicals": 25358274,
"DMAcademy": 15185701.5,
"askTO": 18637247.5,
"EmKay": 5934375.5,
"Cooking": 25042715,
"funhaus": 48838927,
"summonerswar": 16961992,
"geekygirls": 16472888,
"ems": 21536142,
"casualiama": 23596929,
"DunderMifflin": 22502143.5,
"CozyPlaces": 38501823.5,
"gamernews": 41074137.5,
"yugioh": 29462862.5,
"Residency": 3473178,
"Military": 59153605.5,
"Dreams": 20054242,
"OlsenXPlaza": 39999722.5,
"reddevils": 32327813,
"amateur_boxing": 29465319.5,
"CrackheadCraigslist": 4353042,
"NobodyAsked": 1930730,
"usefulredcircle": 10577389,
"CrazyHand": 18970610,
"overclocking": 2927004.5,
"SpoiledSurvivor": 16480267,
"FFRecordKeeper": 75362642.5,
"TheSimpsons": 60007531.5,
"LatinaCuties": 58827690.5,
"TheOrville": 23034873,
"ViralSnaps": 6621414,
"Moviesinthemaking": 59144923.5,
"spiders": 16998975,
"islam": 22447393,
"BeAmazed": 28444685,
"MagicArena": 35879348.5,
"EscapefromTarkov": 6919719,
"MoneyDiariesACTIVE": 3392093.5,
"Autos": 52683524.5,
"wine": 15634195,
"Witcher3": 1322666,
"badroommates": 26795421,
"HFY": 19796298.5,
"AccidentalWesAnderson": 56137008,
"Petioles": 21664283,
"civ": 56640358.5,
"shield": 53359349.5,
"asktransgender": 20655536,
"SonicTheHedgehog": 12593115,
"flashlight": 30157555,
"Minecraft": 19591041,
"sarmssourcetalk": 2161679.5,
"LindseyGroll": 2365972.5,
"animepiracy": 18153290,
"QuotesPorn": 74726775,
"Iamactuallyverybadass": 7096427.5,
"TalesFromRetail": 83525637.5,
"PathOfExileBuilds": 14053695,
"HumansAreMetal": 3647899,
"FrankOcean": 59553180.5,
"Xenoblade_Chronicles": 14633033.5,
"torrents": 130245053,
"TeenAmIUgly": 3480720.5,
"SapphoAndHerFriend": 3061139,
"phatbootycuties": 4475435,
"underlords": 16788286,
"StardewValley": 10660093,
"law": 53082214,
"aircrashinvestigation": 21652232.5,
"amateurradio": 60397239,
"howto": 64379700.5,
"Amd": 2141514.5,
"Suomi": 65623302.5,
"pesmobile": 16690120,
"learnmachinelearning": 6414716,
"wholesomeyuri": 11276685.5,
"AMADisasters": 66426978.5,
"DecidingToBeBetter": 29078708.5,
"SamandTolki": 20746701.5,
"3amjokes": 10265575,
"GearsOfWar": 9814000.5,
"BetterEveryLoop": 21553071.5,
"fantanoforever": 28664497.5,
"Garmin": 2917787,
"RedHotChiliPeppers": 2305825,
"TheDragonPrince": 2152371.5,
"Blackfellas": 5627597.5,
"EngineeringPorn": 61346331,
"konmari": 27826369,
"YouFellForItFool": 8144739,
"Miniworlds": 25180695,
"acecombat": 29457649,
"Roadcam": 48152140,
"milanavayntrub": 75897987,
"comicbooks": 73039594.5,
"BritishSuccess": 22809316,
"NicolaCavanis": 3736144.5,
"sharditkeepit": 4154218.5,
"NBA2k": 14009279,
"Sissy": 14106914.5,
"mazda3": 28419885,
"PUBATTLEGROUNDS": 64703830.5,
"FallenOrder": 4305437.5,
"unexpectedoffice": 19095863.5,
"iamveryrandom": 17371277.5,
"GlobalOffensive": 33275900,
"lolgrindr": 18700711.5,
"LineageOS": 93753722,
"translator": 21002294,
"IWantToLearn": 23162635,
"HappyWoofGifs": 13109650,
"ShitPostCrusaders": 16328438.5,
"Lithuaniakittens": 23711543,
"Eyebleach": 29533194,
"suspiciouslyspecific": 2954784.5,
"ModernMagic": 30650136.5,
"FinancialCareers": 29780514.5,
"knives": 15088303.5,
"applehelp": 20088377.5,
"MacMiller": 13991894.5,
"HIMYM": 189698914.5,
"LudwigAhgren": 1282796.5,
"usenet": 21788335,
"FloridaMan": 41867219,
"AwesomeCarMods": 46860769.5,
"bayarea": 58121767,
"UofT": 4007229.5,
"uwaterloo": 44793615,
"gravityfalls": 4563987,
"sales": 4349500.5,
"OneProtectRestAttack": 24529773.5,
"legaladvice": 32951316,
"absolutelynotmeirl": 14679175,
"electricians": 23263955,
"osugame": 16102720,
"foodscam": 22316307,
"selfie": 3047187,
"reactgirls": 21768885.5,
"KimKardashianPics": 30563329,
"programming": 52094497.5,
"ElectricalEngineering": 2084823.5,
"alberta": 30050831,
"IAmA": 48331465.5,
"CardiB": 29161855,
"onguardforthee": 6921295,
"MealPlanYourMacros": 9977789,
"Libertarian": 60980317,
"tryonhaul": 31654786.5,
"arknights": 295397,
"assholedesign": 22421755,
"hmmmgifs": 15290751.5,
"AmericanHorrorStory": 39267613.5,
"CourtneyMiller": 15151768.5,
"FifaCareers": 6977430.5,
"askteenboys": 13577143.5,
"ArchitecturePorn": 72630188.5,
"HighschoolDxD": 4399451.5,
"wrestling": 26369124,
"Polska": 10643973,
"sto": 15928442.5,
"SophiiaDiamond": 4608937,
"phoenix": 55477175,
"Rateme": 20937836.5,
"fo4": 131092829,
"LabourUK": 2734003.5,
"Mcat": 17612863,
"blackdesertonline": 65662560.5,
"pitbulls": 61128024,
"Surface": 97484004.5,
"powerlifting": 47940707.5,
"Breadit": 28363518.5,
"ForgottenWeapons": 2108929.5,
"DeadBedrooms": 31832300,
"CrossStitch": 41543256.5,
"medical": 11041387,
"hapas": 25013528,
"hmm": 2901005,
"cemu": 75672069,
"Habs": 32836032,
"rpg": 131734664.5,
"BrandNewSentence": 3383535.5,
"avoidchineseproducts": 2180375,
"videography": 15737216,
"treedibles": 2019973.5,
"nyjets": 21662479,
"UCSC": 22200478.5,
"FacebookScience": 6448807.5,
"interestingasfuck": 16052338,
"rva": 20744798,
"DataArt": 15511661,
"thalassophobia": 47704594.5,
"kotakuinaction2": 2724290,
"audiophile": 60234393.5,
"LadyBoners": 54585395,
"LuLaNo": 14801643,
"houkai3rd": 6060304,
"xboxinsiders": 5208446,
"Machinists": 41983883.5,
"wholesomeanimemes": 2634990.5,
"Bestbuy": 19523716,
"DankLeft": 4068784.5,
"SaimanSays": 3061679.5,
"Indiantiktokgonewild": 8249031,
"CatsStandingUp": 48753430.5,
"Guitar": 49122337.5,
"DeepRockGalactic": 3732016.5,
"DynastyFF": 2609305,
"Huawei": 20416841,
"algotrading": 15280926,
"coolguides": 3709697,
"Dodgers": 70320669,
"CODZombies": 37676250,
"FeetToesAndSocks": 2377189.5,
"GenderCritical": 15598205,
"unrealengine": 14440698,
"woof_irl": 35350914.5,
"spaceporn": 67315953.5,
"EnterTheGungeon": 22451997.5,
"CashApp": 20148766,
"fantasywriters": 9033966.5,
"imaginarymaps": 29334977,
"Anticonsumption": 28367249,
"NotAnotherDnDPodcast": 20875782.5,
"chicagobulls": 29225600,
"23andme": 27836431.5,
"dating": 18816919.5,
"SuperModelIndia": 2797044,
"TheBluePill": 25794815.5,
"Konosuba": 9968143,
"Kappa": 81069749.5,
"SpeedOfLobsters": 2288190.5,
"specializedtools": 2394939.5,
"TheStrokes": 20541530,
"iiiiiiitttttttttttt": 67705401.5,
"SelfAwarewolves": 18488877.5,
"pickuplines": 19026215.5,
"malelivingspace": 55286861,
"russian": 19802035,
"starwarsmemes": 1330785.5,
"omad": 13038178.5,
"StarWarsBattlefront": 68116067,
"birthcontrol": 26995840.5,
"factorio": 14776156.5,
"iran": 310962.5,
"fnv": 9785907.5,
"dbfz": 3566467,
"TeamSolomid": 19091297.5,
"wyzecam": 21104183,
"Gunpla": 9841751.5,
"vaporents": 34167600.5,
"WeightLossAdvice": 26534517,
"corgi": 58148242.5,
"juul": 32913309.5,
"trainerroad": 22135207.5,
"iNoobChannel": 572414,
"EggsInc": 10979887.5,
"DuggarsSnark": 2523154,
"GreenBayPackers": 70924740.5,
"ani_bm": 5005495.5,
"ExposurePorn": 32699021.5,
"nostalgia": 43614464.5,
"vinyl": 58747771.5,
"TikTokCringe": 5016872.5,
"Astronomy": 29411964.5,
"SwShLeaks": 5531905.5,
"octopathtraveler": 45309361,
"Celebswithbigtits": 20754311.5,
"whatisthisthing": 23002120,
"flightsim": 50748190.5,
"DontFuckWithCats": 1833818.5,
"jesuschristouija": 12562744,
"3Dprinting": 42470920.5,
"WTFwish": 3864650,
"FFXV": 68816270.5,
"veganrecipes": 24541519.5,
"nbacirclejerk": 21293269.5,
"TrueChristian": 16478866,
"theouterworlds": 5927348.5,
"CompetitiveForHonor": 13853780,
"badUIbattles": 4761036.5,
"orthotropics": 25003201,
"AbandonedPorn": 55690152.5,
"CHIBears": 35796974.5,
"Boruto": 3929778.5,
"GoblinSlayer": 33089117.5,
"Divorce": 32649380,
"chemicalreactiongifs": 59005298,
"bettafish": 22641661,
"brexit": 2573841.5,
"UnresolvedMysteries": 36642057.5,
"bulletjournal": 21395938,
"PlanetZoo": 4878763.5,
"batman": 62408497,
"CanadaPolitics": 36541657.5,
"ucf": 19714968.5,
"bestoflegaladvice": 38235868.5,
"ShieldAndroidTV": 42900992.5,
"Imperator": 22444523,
"KotakuInAction": 118580961.5,
"Cubers": 60514708.5,
"stephenking": 5111772,
"financialindependence": 15576784.5,
"reallifedoodles": 53579190,
"Trainwreckstv": 13333056.5,
"Psychedelics": 15155470.5,
"InterestingVideoClips": 6633516.5,
"arma": 16467359,
"snowboarding": 64852347,
"woweconomy": 43518083,
"Etsy": 23593483.5,
"WhereAreAllTheGoodMen": 12534207.5,
"yakuzagames": 14763590,
"FilthyFrank": 91889461,
"running": 54568102.5,
"LoveIslandTV": 16023358,
"MilitaryStories": 35043183,
"nosleep": 31889959.5,
"Shitty_Car_Mods": 54464911,
"truegaming": 36770806,
"Jreg": 5511838.5,
"saltierthancrait": 676178,
"Amsterdam": 30142984.5,
"LPOTL": 35305847.5,
"RoughRomanMemes": 19822691,
"OverwatchTMZ": 35435039.5,
"AreYouTheOne": 12709431.5,
"oculus": 126702671.5,
"homeassistant": 21017264.5,
"HighQualityGifs": 45814519.5,
"AskAnAmerican": 29058295,
"UnexpectedJoJo": 14997340.5,
"worldbuilding": 47066888.5,
"wowthissubexists": 54283776.5,
"egg_irl": 16745852,
"StoriesAboutKevin": 26648960.5,
"FanTheories": 58690469.5,
"dresdenfiles": 94009915,
"gay_irl": 24275778.5,
"forsen": 30057780.5,
"coins": 27675906,
"FoundPaper": 38420463,
"ClassyPornstars": 19218352,
"CuteTraps": 12639129.5,
"ShouldIbuythisgame": 9133931.5,
"bingbongtheorem": 16723553,
"Nest": 11822922.5,
"wwiipics": 15645394,
"Denmark": 52321122.5,
"sanfrancisco": 73035668,
"bostonr4r": 23649769.5,
"Piracy": 24198441.5,
"mallninjashit": 46807588.5,
"elonmusk": 32555016.5,
"pakistan": 25887985,
"svenskpolitik": 37399942,
"curlyhair": 44007899.5,
"Arcade1Up": 19554573,
"Needafriend": 19984373,
"EverythingScience": 77252231,
"fffffffuuuuuuuuuuuu": 212160018,
"mechmarket": 10682310.5,
"S10wallpapers": 26719968,
"MollyEskam": 18105549.5,
"tax": 26441911.5,
"SCCM": 28455544.5,
"Frugal": 44103083,
"ImaginaryLandscapes": 68966661.5,
"Earwolf": 32196711.5,
"virtualreality": 11163809.5,
"Lovecraft": 44768689.5,
"miamidolphins": 19867891.5,
"ar15": 27449254,
"MAU3": 13110606,
"shorthairedhotties": 74917334.5,
"italy": 62616407,
"Swimming": 15621398.5,
"GrandTheftAutoV": 148226642.5,
"cursedjojo": 2713883,
"Megaten": 21659580,
"evangelionmemes": 14703018,
"MovieSuggestions": 27184056,
"MawInstallation": 4091216,
"formuladank": 3838838,
"2healthbars": 47948974.5,
"NuxTakuSubmissions": 5141570.5,
"vancouver": 37425263,
"PS5": 482990.5,
"NotHowGirlsWork": 6069467,
"node": 43321340.5,
"magicthecirclejerking": 10312578,
"Animesuggest": 15560401.5,
"Filmmakers": 47228908,
"portugal": 26526803.5,
"titanfolk": 4943423.5,
"MCPE": 13195295.5,
"cordcutters": 68080371,
"auckland": 20641784.5,
"MaddenUltimateTeam": 37606001.5,
"Blacksmith": 13899836.5,
"datingoverthirty": 26562693,
"LegendsOfRuneterra": 7157852.5,
"SiegeAcademy": 4462215.5,
"youtubetv": 3426408.5,
"PornoMemes": 11825846.5,
"khajiithaswares": 1027550,
"esist": 84667470.5,
"burdurland": 5653534.5,
"2meirl4meirl": 13614573,
"DestroyedTanks": 18675863,
"TIHI": 5269936.5,
"webdev": 32162890.5,
"transgendercirclejerk": 24423982,
"PimplePoppersDelight": 11540815,
"productivity": 37232749.5,
"Superbowl": 61503688,
"Amouranth": 3041220.5,
"loseit": 43514802,
"danganronpa": 23205367,
"feedthebeast": 17570847,
"nocontextpics": 5238487.5,
"SCAcirclejerk": 14527510.5,
"tylerthecreator": 20440803,
"AskAnthropology": 15684822,
"weddingshaming": 3355507.5,
"Humanoidencounters": 30053226,
"FreeEBOOKS": 38910399.5,
"TwoRedditorsOneCup": 36415819.5,
"declutter": 2490011,
"brasilivre": 18885985.5,
"ft86": 24284412.5,
"Parahumans": 27376241.5,
"tuckedinkitties": 46199887.5,
"im14andthisisdeep": 21056070.5,
"love": 6937672,
"netflixwitcher": 1656540.5,
"JordanPeterson": 8054693.5,
"Ubiquiti": 23024458.5,
"RetroFuturism": 63325081,
"dropship": 28150547,
"modelmakers": 18412884.5,
"minnesotavikings": 62820655.5,
"tf2": 21210772,
"WhyWomenLiveLonger": 2203896,
"hardstyle": 12515846,
"Pizza": 14562763.5,
"goddesses": 18607085,
"StartledCats": 57969893,
"Hulu": 37551611.5,
"ForeverAloneDating": 15486200,
"SCJerk": 3298063,
"PrettyGirls": 84256244,
"MBMBAM": 8522649,
"dankgentina": 6079405.5,
"kpics": 32963477,
"vegancirclejerk": 14227275,
"veganfitness": 13303405.5,
"thanksimcured": 4448561,
"swedishproblems": 21846857.5,
"swrpg": 11393743.5,
"PhonesAreBad": 16864485,
"WhatsWrongWithYourCat": 2631471,
"insanepeoplefacebook": 14520204,
"Unexpected": 4161787.5,
"PokemonMasters": 11239287.5,
"argentina": 2068218.5,
"spikes": 39239877.5,
"devils": 26958032.5,
"antiwork": 2090098,
"kings": 50763963.5,
"UNBGBBIIVCHIDCTIICBG": 35583066,
"berserklejerk": 22732311.5,
"holdmyfeedingtube": 16204846,
"Dashcam": 24765974.5,
"Chromecast": 159340063,
"ifyoulikeblank": 14632983.5,
"Berserk": 27714793.5,
"Achievement_Hunter": 25702100.5,
"RBNSpouses": 4961284,
"dvdcollection": 18522191,
"ChoosingBeggars": 30788139,
"Bad_Cop_No_Donut": 13676356.5,
"beauty": 17048686.5,
"fireTV": 34971415.5,
"DuelLinks": 20831604,
"hockey": 51161217,
"woooosh": 27193312.5,
"Firefighting": 3497702,
"NevilleGoddard": 11866068,
"Duklock": 31248673,
"Disneyland": 37394695.5,
"motorcycles": 61687138.5,
"DetailCraft": 13663111,
"haikyuu": 5281232,
"ragecomics": 225278791.5,
"galaxynote10": 11949663,
"comedyheaven": 1324767.5,
"DBZDokkanBattle": 2983176,
"perl": 256048200,
"Trebel": 5328816,
"ethtrader": 66059032.5,
"aldi": 3870736.5,
"electricvehicles": 18193233,
"startrek": 51595482,
"kindafunny": 31035194.5,
"TownofSalemgame": 25856625,
"SubsYouFellFor": 43768866.5,
"rarepuppers": 32296681,
"Android": 64154641.5,
"physicsmemes": 2345737,
"security": 11432481,
"MTGLegacy": 29847872,
"AyyMD": 76328946,
"IdiotsNearlyDying": 10244022.5,
"battlecats": 15021044.5,
"ThatsInsane": 6552742,
"MizzTwerksum": 2826622.5,
"NameThatSong": 10901360,
"ContagiousLaughter": 24998273,
"Communitycels": 1586041,
"psychology": 80666044.5,
"ShitpostXIV": 8140487.5,
"PiratedGames": 29827051.5,
"labrats": 17373987.5,
"wholesomejojo": 5969386.5,
"whiteknighting": 24997162,
"madlads": 25960698,
"arabfunny": 19292602,
"DidntKnowIWantedThat": 3861700,
"Planetside": 220678737,
"nrl": 143352794,
"r4r": 87919800,
"BreadTube": 19222041,
"LSD": 76193648,
"OMGCosplay": 5717614.5,
"Anna_Faith": 23044245.5,
"bigdickproblems": 16647170.5,
"cyberpunkgame": 34004401,
"fantasyfootball": 67027828.5,
"drunk": 65325602,
"Costco": 3536850,
"cycling": 9491599,
"billieeilish": 12645989,
"PS4": 29307715,
"puns": 53453893,
"belowdeck": 2744591,
"ich_iel": 8368575.5,
"starterpacks": 31667153,
"LiaMarieJohnson": 46807203.5,
"ModelsGoneMild": 26270268,
"cirkeltrek": 23525916,
"PS3": 211862625.5,
"forbiddensnacks": 17163965.5,
"lifehacks": 43314406,
"hockeyjerseys": 29101870,
"UnusAnnus": 1293009.5,
"Teachers": 37281721,
"watercooling": 30476047,
"PKA": 50736755,
"FullScorpion": 23039490.5,
"Judaism": 25978232.5,
"familyguy": 21312302,
"bigtitsinbikinis": 15557433,
"EmpireDidNothingWrong": 61344316,
"AdvancedRunning": 23551082.5,
"MegaFiles4Free": 1702364,
"Stoicism": 14886003,
"ContestOfChampions": 23085353.5,
"Python": 65341506.5,
"riskofrain": 23050256.5,
"DesignerReps": 26664669,
"singapore": 40639228.5,
"awardtravel": 30436253,
"BPD": 31744816,
"Detroit": 32598197,
"royalfamily": 1577077.5,
"Blizzard": 8112246.5,
"youtube": 36018783,
"Jaguars": 62453063,
"FellowKids": 44751830.5,
"BeautyGuruChatter": 25388175.5,
"cursedimages": 23454811,
"4kTV": 27586963,
"MeanJokes": 89382778,
"gunpolitics": 14892303.5,
"comedynecromancy": 10094463.5,
"CAguns": 23404037.5,
"falloutlore": 27767630.5,
"Doomers": 2570914,
"de": 64539883.5,
"RepTime": 17741462.5,
"scriptedasiangifs": 1585857.5,
"thegrandtour": 64810074.5,
"Sino": 8278082.5,
"TaylorSwift": 17957902,
"UpvotedBecauseBoobs": 29247299.5,
"mountandblade": 24392898,
"misleadingthumbnails": 33961704.5,
"SWGalaxyOfHeroes": 2828261,
"tooktoomuch": 5870987,
"de_IAmA": 37651656,
"Seethroughyogapants": 4469175,
"shittysuperpowers": 23126927.5,
"FREE": 3391199.5,
"DMDadJokes": 2451466.5,
"LetsNotMeet": 33404989.5,
"ainbow": 32235696.5,
"reptiles": 33217877,
"TryingForABaby": 28149153.5,
"weedstocks": 38837500.5,
"GalaxyNote8": 65220213.5,
"HermitCraft": 4698450,
"dxm": 27234376.5,
"privacy": 39648310.5,
"Nicegirls": 30804859.5,
"WinStupidPrizes": 8861699.5,
"bleach": 13798090.5,
"londonontario": 4168038,
"Unclejokes": 40842311.5,
"learnart": 22297912,
"sony": 16801193,
"RedditLaqueristas": 92843217.5,
"raidsecrets": 33177424.5,
"ik_ihe": 28194737.5,
"amazon": 48539978.5,
"menwritingwomen": 10018158,
"PUBGMobile": 30173692,
"ITCareerQuestions": 14362917.5,
"sololeveling": 4160549,
"hajimenoippo": 20097936,
"Thunder": 19452129.5,
"thenetherlands": 35839811,
"teslamotors": 56260747.5,
"ProperAnimalNames": 11003344,
"confusing_perspective": 8627397.5,
"fivenightsatfreddys": 3599318.5,
"lifeisstrange": 59061341.5,
"BlackDesertMobile": 1613442.5,
"Sat": 6381704.5,
"FreeGameFindings": 21813779.5,
"Perfectfit": 37918392,
"whatintarnation": 14882923.5,
"firstimpression": 3426451,
"Transmogrification": 19962230.5,
"spacex": 56706415,
"Neverbrokeabone": 2458669.5,
"IWantOut": 190962934,
"PowerShell": 22256594.5,
"premed": 28581592.5,
"StreetFights": 33728927.5,
"gatesopencomeonin": 5930523.5,
"PrintedMinis": 4013040.5,
"RDR2": 2801492,
"clevercomebacks": 2665049,
"donaldglover": 53009717,
"TheWayWeWere": 53025273.5,
"humor": 44796399,
"MensRights": 92453433,
"pelotoncycle": 10077862.5,
"UBC": 4907277.5,
"GifFakes": 60794695.5,
"standupshots": 61002712,
"wismichu": 9141804,
"starcraft": 69844056.5,
"RetroPie": 33399739,
"Diablo": 37563806,
"Vaping": 38872133,
"ProtectAndServe": 78847701.5,
"darkmeme": 4515070.5,
"askcarsales": 16880176.5,
"megalophobia": 17752769.5,
"Mindfulness": 1287906,
"splatoon": 40014664,
"humblebundles": 19100260.5,
"RobinHood": 30824582,
"UnearthedArcana": 13772801,
"tennis": 42328359,
"7daystodie": 4138273,
"sadcringe": 22997505,
"Brunei": 23096989.5,
"FondantHate": 3303482.5,
"nba": 14521300.5,
"PlantBasedDiet": 1851779,
"DemEyesDoe": 3598691.5,
"OnePiece": 41344827.5,
"godot": 19836973.5,
"Music": 68927961.5,
"HealthyFood": 12084056,
"fixit": 12968599,
"witchcraft": 14459908.5,
"tacticalgear": 2637884,
"hacking": 73998468.5,
"absolutelynotme_irl": 12945585.5,
"Gloomhaven": 24854265,
"instantbarbarians": 37321874,
"Tayloralesiagirl": 7397037,
"boomershumor": 4639655,
"CanadianForces": 28877883.5,
"Romania": 29075535.5,
"alexa": 31717349,
"technicallythetruth": 2206236,
"Frozen": 186703932.5,
"joker": 7690871.5,
"Nicki_Minaj": 20012003.5,
"killingfloor": 32512730,
"povertyfinance": 47594522,
"dndmaps": 2280666,
"Leathercraft": 23838466,
"catsareliquid": 24966020.5,
"nudism": 11186938,
"infp": 15912386,
"budgetfood": 157424060.5,
"TheRightCantMeme": 4368545.5,
"cheating_stories": 21988608,
"sports": 61812074.5,
"SexyYouTubers": 3033730,
"Nioh": 90222425.5,
"anime_irl": 50964383.5,
"Quebec": 4994974.5,
"logodesign": 26193203,
"StonerEngineering": 36423526.5,
"MarioKartTour": 7140771.5,
"CelebGroped": 18894846.5,
"GalaxyS8": 57312463,
"ExpectationVsReality": 61851204.5,
"youngpeopleyoutube": 14415401,
"MinecraftMemes": 3930048.5,
"learnmath": 26884762,
"justdependathings": 3575803.5,
"rawdenim": 33816950.5,
"ipad": 19469922.5,
"totalwar": 61367250.5,
"pihole": 12939955,
"blackpeoplegifs": 47650692.5,
"bald": 16270217,
"GunAccessoriesForSale": 1339993,
"tressless": 16808336,
"CanadianInvestor": 19209924,
"LivestreamFail": 4945870,
"SS13": 24085375,
"GetMotivated": 58059588.5,
"armoredwomen": 4169236.5,
"fragrance": 17280486,
"borderlands3": 8907520.5,
"news": 32082713.5,
"warcraftlore": 6077135,
"Amoledbackgrounds": 14974100.5,
"MouseReview": 16863524,
"tippytaps": 45269743.5,
"greentext": 33448910.5,
"MCFC": 24391945.5,
"australia": 36199900.5,
"BreadStapledToTrees": 29596417,
"FinancialPlanning": 23848541.5,
"bon_appetit": 3648286.5,
"Veterans": 30337235.5,
"JennaLynnMeowri": 16047452,
"Homebrewing": 164040055,
"thefighterandthekid": 16300739.5,
"sciences": 26409328,
"dankmemes": 30462638.5,
"Slipknot": 12005922.5,
"Sekiro": 24383622,
"TalesFromTheCustomer": 35051730,
"battlefield_one": 94000690.5,
"talesfromcallcenters": 27754979,
"books": 34318021.5,
"guineapigs": 14246355,
"LawSchool": 28553269.5,
"Rainbow6": 9639023,
"AskEurope": 9951663,
"ComedyHitmen": 7380194.5,
"hockeyplayers": 25813754,
"thanosdidnothingwrong": 47678567,
"lawschooladmissions": 28878712,
"Cricket": 17527557.5,
"Worldbox": 4103755.5,
"AskMenOver30": 29045699.5,
"AskDocs": 17942453,
"ramen": 12024207,
"northernlion": 53120554.5,
"vandwellers": 29840317.5,
"PornhubComments": 26889531.5,
"fuckingmanly": 89791303.5,
"Gameboy": 28195676.5,
"AtlantaUnited": 34479692.5,
"Truckers": 22094396,
"GODZILLA": 17145403.5,
"PewdiepieSubmissions": 8839834.5,
"IKEA": 22513632,
"Celebhub": 25503980,
"DragonballLegends": 18612458.5,
"HumansBeingBros": 32732253.5,
"KingOfTheHill": 46021847,
"classic4chan": 84589532.5,
"nocontext": 67434093,
"Eesti": 20156351.5,
"Birmingham": 42920835.5,
"wtfstockphotos": 62494852,
"LiliheartsssExclusive": 2547578.5,
"Scotch": 222264945,
"SelenaGomez": 81912266.5,
"trailerparkboys": 70548375,
"Twitch": 51353155.5,
"JoeRogan": 14607347.5,
"Torontobluejays": 134539756.5,
"KGBTR": 18580993,
"Enough_Sanders_Spam": 8810041.5,
"gradadmissions": 27999677.5,
"chaoticgood": 18570603,
"miband": 21143062,
"THE_PACK": 21902405.5,
"spirituality": 12674675.5,
"Shinyraids": 2922344.5,
"AlisonBrie": 127918823.5,
"Cursed_Images": 2061431,
"wow": 42629826.5,
"Tendies": 29405193.5,
"WeWantPlates": 6048931,
"crashbandicoot": 16258584,
"GradSchool": 48949284,
"fermentation": 27582193,
"InteriorDesign": 37563343,
"NFL_Draft": 54514703.5,
"thisismylifenow": 59182285.5,
"serialkillers": 3156868,
"BABYMETAL": 44064008.5,
"TrumpCriticizesTrump": 74899255.5,
"WormFanfic": 26451041.5,
"MapleStoryM": 45172461,
"sportsbook": 14671228.5,
"fasting": 22884817.5,
"webcomics": 49046367.5,
"custommagic": 21030464.5,
"5ToubunNoHanayome": 3029694.5,
"GunPorn": 36240199.5,
"girlshotNSFW": 2151071.5,
"Satisfyingasfuck": 2030823,
"walmart": 15934485,
"HiTMAN": 14343801,
"r4rDFW": 14306749.5,
"KOTORmemes": 3276873,
"smallbusiness": 36230435,
"AskNetsec": 25971968,
"DivorcedBirds": 6751846,
"illnessfakersgonewild": 3320112,
"Ebay": 26234100.5,
"KamenRider": 11168575,
"aspergers": 25602884,
"shittymoviedetails": 5831129,
"Jokes": 64094070,
"Broadway": 14756549,
"Outdoors": 28943984,
"Colorado": 66020487.5,
"poshmark": 14017210,
"BeansInThings": 11715098.5,
"WhyWereTheyFilming": 35250946.5,
"bouldering": 18421413,
"festivals": 16785968.5,
"CityPorn": 53071327,
"twentyonepilots": 14239457,
"dixiedamelio": 1601560,
"PS4Deals": 20417399,
"WaltDisneyWorld": 30064407,
"camphalfblood": 17620552.5,
"funny": 64727763.5,
"UrbanHell": 15687366,
"creepyasterisks": 49594424.5,
"EmiliaClarke": 20913206.5,
"MechanicalKeyboards": 53608185,
"TaliaMar": 14612627,
"DesignPorn": 36001264,
"BadPenelope": 10866458,
"HorriblyDepressing": 50009801.5,
"aww": 30532848.5,
"ZeroWaste": 22551333.5,
"SGExams": 6865286,
"Cigarettes": 23291742,
"Kingdom": 19655843,
"wholesome": 3991078,
"analog": 19891899,
"ilikthebred": 56664918.5,
"bjj": 34437837.5,
"Mordhau": 18488618.5,
"finance": 13238267,
"FantasyPL": 21187698.5,
"circlejerk": 125099163,
"AFL": 56332772.5,
"gallifrey": 178470209,
"holdmycatnip": 63087896,
"FortniteCreative": 29846434,
"aoe2": 3264443.5,
"agedlikemilk": 1415331,
"SovietWomble": 80155562,
"BreakUps": 32232978.5,
"Austria": 18454553,
"Artifact": 35274364.5,
"BMW": 44205734,
"worldnews": 41879809.5,
"brakebills": 24881846,
"MadeMeSmile": 28400554.5,
"orangetheory": 22984632.5,
"ACPocketCamp": 4501670.5,
"PuzzleAndDragons": 33085449,
"todayilearned": 56269877,
"LateStageCapitalism": 64133714.5,
"spaceengineers": 12134619.5,
"PERSoNA": 6561494.5,
"EDH": 9355903.5,
"softwaregore": 28116604.5,
"youtubehaiku": 70089221,
"TheBullWins": 16174385,
"Thisismylifemeow": 56068361.5,
"AsianParentStories": 131334632,
"HistoryPorn": 50161994.5,
"chrome": 157733045,
"VoteBlue": 6176468.5,
"Pathfinder_Kingmaker": 38818688,
"BokuNoHeroAcademia": 42327204.5,
"notliketheothergirls": 16475295.5,
"darknet": 19927005.5,
"AnimalsBeingBros": 22594585.5,
"Greekgodx": 49969773.5,
"udub": 4910340.5,
"tech": 3392817.5,
"samsung": 27150663.5,
"pokemontrades": 2154912.5,
"AccidentalRacism": 30471667.5,
"RoomPorn": 69306974.5,
"tasker": 34358247.5,
"AnimalsBeingMoms": 23099345,
"Trumpgret": 58931491,
"PurplePillDebate": 7444588,
"uber": 30017493.5,
"WorkOnline": 19038076.5,
"talesfromtechsupport": 84456542.5,
"gamecollecting": 37588089,
"UFOs": 34397781,
"sugarlifestyleforum": 12419603.5,
"NBASpurs": 47390447.5,
"Glitch_in_the_Matrix": 31221343,
"AwardSpeechEdits": 30322596,
"Charlotte": 14568346,
"curledfeetsies": 34280115.5,
"TrueDoTA2": 18867836,
"RussiaLago": 58889585,
"DestinyTheGame": 37951117,
"German": 35124583,
"ElsaGate": 68572004.5,
"GoForGold": 195664906.5,
"AustralianPolitics": 2827680.5,
"foodhacks": 31285117.5,
"texas": 48410287,
"NarutoBlazing": 13220894,
"kaisamains": 208748,
"90dayfianceuncensored": 3903978,
"cybersecurity": 3165861,
"knifeclub": 29230098,
"NewProductPorn": 30665707.5,
"gatekeeping": 22251438.5,
"liluzivert": 22722591.5,
"raimimemes": 8929120.5,
"MoreTankieChapo": 2742258,
"naturalbodybuilding": 21824623,
"bonehurtingjuice": 28827928,
"CompTIA": 22139573.5,
"dragonballfighterz": 24134326.5,
"WWEGames": 41463750.5,
"mealtimevideos": 30203308.5,
"DIY": 77176434,
"me_irl": 2592048,
"AskScienceDiscussion": 15252389.5,
"airsoft": 32847256,
"MemriTVmemes": 2109447.5,
"PublicFreakout": 21604336.5,
"EmpiresAndPuzzles": 17150699.5,
"BlackPink": 22117166.5,
"BDSMAdvice": 20933238,
"xqcow": 17210943.5,
"learnpython": 25369987.5,
"Nerf": 41753448,
"StoppedWorking": 61513363,
"CompetitiveHS": 47426691.5,
"justkiddingfilms": 653967.5,
"GirlsMirin": 34066954,
"FoodPorn": 61791151.5,
"WWII": 66708779,
"BadMUAs": 15368911,
"hittableFaces": 29784493.5,
"firefox": 21868988.5,
"JapanTravel": 26695900.5,
"LAClippers": 16325467.5,
"gangweed": 3332665.5,
"Hair": 97141716.5,
"diablo3": 32966091.5,
"VerifiedFeet": 1892505.5,
"DCcomics": 19477481.5,
"emojipasta": 16981996,
"Turkey": 5345718.5,
"GachaLifeCringe": 3620335,
"instant_regret": 9142553,
"Standup": 99238842,
"ableton": 48661388.5,
"watchpeoplesurvive": 2842287,
"Models": 15256245,
"GamingLeaksAndRumours": 2190382,
"unOrdinary": 14054152,
"DestinyLore": 4081698,
"HolUp": 3552342,
"IPTV": 28384265.5,
"InternetStars": 2887092,
"whiskey": 18635755.5,
"Poetry": 114692489.5,
"FFBraveExvius": 60952970,
"Roku": 97348693.5,
"starsector": 6377214,
"WeAreTheMusicMakers": 23611140,
"pharmacy": 22795408,
"AusFinance": 24451094,
"DeathStranding": 4768410,
"RoadPorn": 4626098.5,
"dogs": 38086978,
"ClashRoyale": 9650720.5,
"holdmyredbull": 38224386.5,
"ApplyingToCollege": 37149415,
"randomsexygifs": 43994562.5,
"grandpajoehate": 20699552,
"SFr4r": 44600112.5,
"DesirePath": 51130237.5,
"BudgetAudiophile": 29321356.5,
"GamePhysics": 58695959,
"LushCosmetics": 4755474,
"KGATLW": 25922469.5,
"nope": 15999309.5,
"My600lbLife": 25637812,
"PUBG": 60880936,
"DMT": 21941234,
"DarK": 15917361.5,
"nintendo": 31975101,
"shittyrainbow6": 2620678,
"Steam": 66567221,
"EngineeringStudents": 43335149,
"teslainvestorsclub": 246078.5,
"Grimes": 1420868.5,
"kendalljenner": 24872886,
"intj": 26124058.5,
"FalloutMods": 72070204,
"DetroitRedWings": 102419623.5,
"spicy": 12515694.5,
"goodyearwelt": 57487495,
"WrestleWithThePlot": 28690914,
"BanPitBulls": 13243362.5,
"fatFIRE": 15709902,
"Idubbbz": 68218572.5,
"accidentallycommunist": 1553994,
"printSF": 24021957.5,
"farmingsimulator": 25108521.5,
"IncelTears": 17819284,
"GetStudying": 4562912.5,
"RotMG": 26390472.5,
"etymology": 2690621.5,
"Skookum": 32484285.5,
"buildapcforme": 29363399,
"XWingTMG": 16899575.5,
"VaporwaveAesthetics": 44211448.5,
"skiing": 47176893,
"The_Mueller": 35650048.5,
"piano": 29397833,
"DisneyPlus": 3819937.5,
"Patriots": 61720362,
"relationship_advice": 13979729.5,
"SubwayCreatures": 2813012.5,
"Lowes": 16098485.5,
"Jeep": 41077401.5,
"corinnakopf": 13934328,
"nothingeverhappens": 20165543,
"happy": 46136434,
"hardwareswap": 17909428,
"melbourne": 56229860,
"tall": 70654790.5,
"betterCallSaul": 56159743.5,
"ethfinance": 12631541,
"namenerds": 25990718,
"FashionRepsBST": 14520309.5,
"dune": 25417511,
"uberdrivers": 34984286.5,
"IndianSocial": 4373252.5,
"BoomersBeingFools": 4060719,
"PSVR": 25214965.5,
"gwent": 78727550,
"sandiego": 63255215,
"ShaqHoldingThings": 204886685.5,
"desabafos": 3602723,
"Pathfinder_RPG": 41634735.5,
"Edmonton": 27022444,
"IllegalLifeProTips": 36588604,
"itsaunixsystem": 51171089,
"IsItBullshit": 22476989,
"Death_By_SnuSnu": 26552782.5,
"Philippines": 30141398,
"ArcherFX": 62055276,
"awfuleverything": 3386412.5,
"MortalKombat": 20947968,
"starwarsspeculation": 10922310,
"CBD": 22817150.5,
"SoccerBetting": 38459024,
"horror": 53996481,
"Professors": 14569522.5,
"ShermanPosting": 4016187,
"SonyAlpha": 16232736,
"nsfwanimegifs": 20054590.5,
"MapPorn": 13635842.5,
"OSU": 14610060,
"PlasticSurgery": 5578497,
"lgbt": 53898342,
"DiscoElysium": 3217983,
"antiassholedesign": 27523317.5,
"Boomerhumour": 2744700.5,
"eu4": 44437520,
"TeslaModel3": 2195312.5,
"nova": 23061058.5,
"biology": 17950235,
"gaybros": 71131134,
"worldofpvp": 38716436,
"sweden": 66415373.5,
"asexuality": 14334246,
"MuayThai": 19778559,
"wisconsin": 36860766.5,
"Floridar4r": 3803220.5,
"me_irlgbt": 10870739.5,
"ExNoContact": 30698370.5,
"WearOS": 11149194.5,
"exmormon": 68980528.5,
"PaymoneyWubby": 18207184.5,
"gaming": 57581310,
"CoDCompetitive": 26362121,
"harrypotter": 35551956,
"SpecialSnowflake": 507848.5,
"environment": 33752527,
"medizzy": 5592877,
"TapTitans2": 26670042.5,
"dwarffortress": 82221803.5,
"penpals": 31851768.5,
"customhearthstone": 28695762,
"writing": 52240829.5,
"thebachelor": 1352134,
"Nails": 2314642,
"IndoorGarden": 15905266,
"orochinho": 1736401.5,
"YangForPresidentHQ": 2000627.5,
"newjersey": 66661961.5,
"climbing": 75662076.5,
"kde": 12982023.5,
"ANormalDayInRussia": 44636463.5,
"Doom": 18494917.5,
"attackontitan": 16717213,
"AskFeminists": 9526909,
"notlikeothergirls": 17938749,
"TrollYChromosome": 44146082.5,
"vmware": 79126344,
"guns": 77765680.5,
"adventuretime": 67786944,
"SuddenlyIncest": 17420508.5,
"WatchandLearn": 63434327.5,
"KUWTK": 4570525,
"Catholicism": 15452283,
"Health": 150510434,
"HollowKnightMemes": 14341172.5,
"PerfectTiming": 65106475,
"neoliberal": 74244154.5,
"baseball": 4644662.5,
"Psychic": 28936950.5,
"billsimmons": 15924874,
"Sister": 6110299,
"archeage": 86799977,
"Insurance": 15600340.5,
"TeamFourStar": 41669880,
"prettyaltgirls": 3806767.5,
"Kings_Raid": 54783273.5,
"LinusTechTips": 3969138.5,
"MealPrepSunday": 3314546,
"koreanvariety": 2307883,
"ParentsAreFuckingDumb": 20885634.5,
"TheBoys": 12871085.5,
"forwardsfromgrandma": 55079449.5,
"Neverwinter": 210235641,
"OnePunchMan": 13946788,
"HadesTheGame": 385937.5,
"Vermintide": 56593421,
"MonsterHunterWorld": 21118541,
"subaru": 68202021,
"transgender": 28914214,
"SupermodelCats": 25016648.5,
"girlsfrontline": 7316024.5,
"MostBeautiful": 34966476.5,
"njpw": 28200324.5,
"MakeNewFriendsHere": 4342009,
"LoveNikki": 25388997.5,
"futurama": 75331072.5,
"AbruptChaos": 3606070,
"bollywood": 16450921.5,
"crossfit": 39769720,
"DestinyChildGlobal": 13334868,
"rugbyunion": 7544629,
"Watchmen": 2386524,
"web_design": 53556216.5,
"fightporn": 8924057,
"techsupportgore": 64477260,
"NeckbeardNests": 23909908.5,
"roosterteeth": 21975239,
"unixporn": 26402563,
"alexandradaddario": 78909200,
"skyrimmods": 88148969.5,
"GrowCastle": 10239775.5,
"antinatalism": 17942105,
"terriblefacebookmemes": 16343393.5,
"entitledparents": 27840839,
"sploot": 19303261,
"WalmartCelebrities": 13340717,
"socialskills": 34381415.5,
"ontario": 17242694,
"nbadiscussion": 16531366,
"beholdthemasterrace": 53249544,
"respectthreads": 24469193.5,
"UnethicalLifeProTips": 7352422,
"Nievamara": 9053987.5,
"reddeadredemption": 35104872,
"britishproblems": 19571892.5,
"occult": 27563945,
"RobinHoodPennyStocks": 39566072.5,
"R4R30Plus": 16047325,
"raleigh": 28191829,
"facepalm": 52667683.5,
"gamedev": 44512363,
"gonecivil": 9990507.5,
"ottawa": 34552393.5,
"Dallas": 50096983,
"ActLikeYouBelong": 56252161,
"polyamoryR4R": 15069217,
"BoJackHorseman": 42480825.5,
"Edinburgh": 14129059,
"ABCDesis": 17268840,
"PixelArt": 15133135,
"freefolk": 20482131.5,
"DaysGone": 21645654.5,
"rant": 22748677.5,
"jobs": 22759668,
"EkaterinaShiryaeva": 3437552,
"norge": 14924793.5,
"langrisser": 29241404,
"RocketLeagueExchange": 22797282.5,
"nashville": 54068297.5,
"entertainment": 26805688.5,
"Breath_of_the_Wild": 18882653.5,
"TheAdventureZone": 5165323,
"shameless": 23955156,
"powerwashingporn": 39806608.5,
"linuxadmin": 29101078,
"Winnipeg": 22142818,
"CarAV": 21265086.5,
"lotrmemes": 29827247.5,
"ConsumeProduct": 2641440,
"Colts": 46696343,
"morbidquestions": 25847436,
"HighStrangeness": 13592814,
"Ahegaos": 4113930.5,
"WeCantStudy": 3020948,
"FullmetalAlchemist": 5019389,
"jerseyshore": 18511998.5,
"chemistrymemes": 12848391,
"HomeworkHelp": 7320637,
"pathofexile": 21186634,
"homestead": 14563685,
"Kengan_Ashura": 2670980,
"blursedimages": 3353482,
"KitchenConfidential": 36128999.5,
"RachelCook": 33766748.5,
"evangelion": 15287860.5,
"Meditation": 62917337.5,
"murdermittens": 3551434.5,
"linux_gaming": 38749933.5,
"KenM": 64733827,
"RWBY": 32572592,
"f45": 5258961,
"Fallout": 51100085.5,
"science": 31906061,
"medicalschoolanki": 11982020.5,
"ApexOutlands": 27585336,
"asmr": 121686215.5,
"Emo": 33631851,
"piercing": 21166249.5,
"incremental_games": 152900311,
"Celebs": 82838653.5,
"Izlam": 24179456,
"stopsmoking": 31523417,
"drums": 26638794,
"creepyencounters": 15147492.5,
"gaybrosgonemild": 23075047,
"television": 62578373.5,
"Ghosts": 19288406.5,
"wikipedia": 141398974,
"Survival": 55192206,
"RedditForGrownups": 26491409,
"Whatcouldgowrong": 15459787.5,
"PrequelMemes": 37650070.5,
"raining": 63334881,
"headphones": 66657334,
"TwoXSex": 114399574.5,
"gamingpc": 3562540.5,
"HomeServer": 12708305,
"EarthPorn": 70646321.5,
"noveltranslations": 77307574.5,
"FreezingFuckingCold": 4128950,
"FortNiteBR": 46880578.5,
"Minecraftbuilds": 15596090.5,
"spiderbro": 66008656.5,
"Destiny": 22935786.5,
"cincinnati": 32212335.5,
"Guildwars2": 56861016,
"bristol": 27536939.5,
"vikingstv": 12137820,
"SneakyBackgroundFeet": 16817228,
"ElsieHewitt": 20725357,
"OCD": 21862708,
"Tinder": 27864481,
"sousvide": 10357074,
"ironscape": 20866200,
"grime": 30890219.5,
"diabetes": 28614337.5,
"wholesomememes": 26593772,
"killteam": 14877002,
"velvethippos": 2836308.5,
"myfavoritemurder": 23471857.5,
"Fantasy": 63448397,
"engrish": 32623994.5,
"Watches": 69065042.5,
"BoneAppleTea": 22069966,
"NarutoFanfiction": 13964177.5,
"rust": 40811046,
"femboy": 4941756.5,
"archlinux": 61518457.5,
"carporn": 56119391,
"popheads": 18781650,
"msp": 20146588.5,
"penguins": 81131923.5,
"HomeKit": 15898416,
"Spanish": 24939993.5,
"DJs": 14918820.5,
"awwwtf": 57033621,
"climbharder": 32145390,
"EmulationOnAndroid": 33653964,
"halifax": 13325777,
"MachineLearning": 39775278.5,
"MarvelStudiosSpoilers": 18078534.5,
"ambien": 4896859.5,
"iphone": 41714416,
"Handwriting": 49862638,
"Target": 12488397,
"patientgamers": 29334291.5,
"AMA": 37105300.5,
"vegetarian": 39141154.5,
"killthecameraman": 18866714,
"4chan": 71229905,
"HumanPorn": 73949218,
"dndmemes": 2534628.5,
"boxoffice": 11810249,
"SuggestALaptop": 47677626.5,
"maybemaybemaybe": 3789501,
"bindingofisaac": 11176086,
"GalaxyS9": 18088085,
"JRPG": 26540158,
"DecreasinglyVerbose": 14864782.5,
"discworld": 85954819,
"playblackdesert": 14851344.5,
"puzzles": 15312963,
"MonsterHunterMeta": 1412613,
"timberwolves": 54869768.5,
"privacytoolsIO": 4002304,
"SwagBucks": 1501898,
"bourbon": 17293397,
"deadcells": 9565311,
"LiveFromNewYork": 6678144.5,
"MasterReturns": 30288567.5,
"stunfisk": 2880891.5,
"technews": 2972549,
"askgaybros": 24602361,
"HazbinHotel": 3080465.5,
"dauntless": 19120268,
"coaxedintoasnafu": 13450358,
"pettyrevenge": 53665562,
"EatCheapAndHealthy": 31424217.5,
"androidthemes": 68040023,
"homeautomation": 37945586.5,
"nottheonion": 55520559,
"seduction": 25369378.5,
"RedLetterMedia": 36261592.5,
"homegym": 27845803,
"barstoolboners": 14199281.5,
"miraculousladybug": 6141586,
"AskEngineers": 20984530,
"Pete_Buttigieg": 23398749.5,
"TikThots": 4999941.5,
"PhotoshopRequest": 10099180.5,
"dankruto": 12926374.5,
"ComedyNecrophilia": 11142400,
"trap": 42178020,
"RealLifeShinies": 8847522.5,
"tolkienfans": 89926219.5,
"cowboys": 17438880,
"hungary": 20637191,
"therewasanattempt": 11111817.5,
"GoodFakeTexts": 31793096,
"transformers": 18369209,
"nononono": 53309346,
"suicidebywords": 2780475,
"PunPatrol": 12654159,
"PetAfterVet": 13046710.5,
"WritingPrompts": 66770263,
"Boxing": 21882578,
"Buddhism": 6461451.5,
"WarshipPorn": 3946716.5,
"dontflinch": 13908831,
"ObscureMedia": 36492910.5,
"noita": 7892049.5,
"nattyorjuice": 21001631,
"history": 67603045,
"quityourbullshit": 33846221.5,
"lewronggeneration": 27028829,
"Eldenring": 2561359.5,
"XXXTENTACION": 15955378,
"InclusiveOr": 10584284,
"Landlord": 30048420,
"synology": 2900759,
"MtvChallenge": 3013852,
"communism101": 26626096,
"MarkMyWords": 23068047.5,
"rocketbeans": 146939704.5,
"ComedyCemetery": 49575221,
"iamverybadass": 26658392.5,
"SCP": 16974194.5,
"4PanelCringe": 30716911.5,
"birthofasub": 16424288,
"Brawlstars": 26448837,
"DippingTobacco": 118400387,
"TrueOffMyChest": 17907338.5,
"PeopleBeingJerks": 25149229.5,
"BokuNoMetaAcademia": 4047227.5,
"xmen": 10393285.5,
"Switch": 9142631,
"Flyers": 18356585,
"booksuggestions": 25024398,
"HelluvaBoss": 2220557,
"MaddenMobileForums": 4314519.5,
"swtor": 13682330.5,
"oldpeoplefacebook": 57836875,
"gadgets": 68097173.5,
"PokemonROMhacks": 21827821,
"mildlyinteresting": 36538260.5,
"orangecounty": 32362680.5,
"nutrition": 27770743.5,
"Christianity": 35260943,
"ImaginaryWarhammer": 7653773,
"TwoSentenceHorror": 3329622.5,
"TheOCS": 37986855,
"happycryingdads": 30251216.5,
"Spiderman": 20436348.5,
"ffxiv": 3914774,
"MobileLegendsGame": 3306447.5,
"IdleHeroes": 25010975.5,
"lingling40hrs": 2029245.5,
"southpark": 67950814,
"ForzaHorizon": 8920338.5,
"AskElectronics": 22084645,
"mathmemes": 2564599.5,
"democrats": 62010345.5,
"vegan": 68951974,
"painting": 26736417.5,
"Rainmeter": 125135262.5,
"collegehumor": 23618494,
"minecraftsuggestions": 14169948,
"Rabbits": 58320268.5,
"gorillaz": 85000321,
"AmateurRoomPorn": 36145945.5,
"feminineboys": 13607728.5,
"exmuslim": 18580120,
"explainlikeimfive": 79328417.5,
"quotes": 80781651.5,
"Megumin": 14948833,
"Sacramento": 3687393,
"savedyouaclick": 65954296.5,
"BabyBumps": 32474643,
"Hue": 16571973.5,
"FORTnITE": 41971429.5,
"Drizzy": 3243009.5,
"everyfuckingthread": 25625128.5,
"IndieGaming": 27891771,
"MUAontheCheap": 1842305,
"nextfuckinglevel": 6013535.5,
"classicwow": 13162466,
"deadbydaylight": 12651815,
"lastimages": 35143855,
"ps2": 12206376.5,
"HowToHack": 25910906,
"iZone": 18072381.5,
"IllegallySmolCats": 2853092.5,
"Windows10": 74966723,
"CrackWatch": 30265188.5,
"Adelaide": 26172588,
"OrnaRPG": 4614388.5,
"NASCAR": 62010545,
"assassinscreed": 50478236,
"BattlefieldV": 18486137.5,
"Maplestory": 37702752.5,
"fakehistoryporn": 17803988,
"shortcuts": 40933535.5,
"StudentNurse": 31849583,
"scifi": 101852814.5,
"YandhiLeaks": 5968163,
"UCI": 23811118,
"Marvel": 52073692,
"ENFP": 22725622,
"help": 15938111,
"Animedubs": 16667946.5,
"GTAorRussia": 10292882,
"tattoo": 57300142.5,
"Thetruthishere": 8543101,
"Cruise": 16870451,
"granturismo": 10248061,
"ender3": 1271851.5,
"roblox": 16060816,
"pokemongo": 110166946,
"NOLAPelicans": 25097348,
"microsoft": 27879228.5,
"StupidFood": 24056344,
"lostpause": 2920617.5,
"cremposting": 12713800,
"hottiesfortrump": 19359416.5,
"ak47": 14259020,
"DragaliaLost": 6852959,
"OkBubbyRetard": 3676665.5,
"Megturney": 12729293,
"stopdrinking": 19579610.5,
"ScottishFootball": 30408529,
"ihavesex": 11627697.5,
"snapchat": 60647187,
"nhaa": 7530344.5,
"Swingers": 16558579.5,
"marketing": 52615063,
"Catswithjobs": 6207117.5,
"aaaaaaacccccccce": 9555971,
"weightlifting": 13185706,
"ElizabethWarren": 6553873.5,
"Awwducational": 48412909.5,
"RiseofKingdoms": 2585686,
"sewing": 44710906.5,
"oilpen": 15183127.5,
"BanGDream": 12529055,
"BeforeNAfterAdoption": 55067087.5,
"SaltLakeCity": 37371001,
"DenverBroncos": 65405514,
"playboicarti": 4437952,
"ClashOfClans": 87462794.5,
"RimWorld": 15849459,
"DeepIntoYouTube": 41615395.5,
"electronic_cigarette": 135844449,
"dndnext": 3638677.5,
"americandad": 17453996.5,
"Autoflowers": 2446362,
"pansexual": 3454770,
"FanFiction": 10314015,
"Sprint": 24377161.5,
"whoooosh": 17406469,
"ThingsCutInHalfPorn": 61727372.5,
"JustBootThings": 10284511,
"UIUC": 35274092.5,
"DistinctToday": 2509040,
"virginvschad": 17971282,
"ultrawidemasterrace": 4293984.5,
"ENLIGHTENEDCENTRISM": 16738846.5,
"acting": 23893552,
"videos": 59771921,
"fountainpens": 31711039.5,
"uktrees": 36004014,
"stepparents": 8805891,
"AmITheAngel": 1911894.5,
"araragi": 16065398.5,
"SmolBeanSnark": 2724014,
"digimon": 17780119,
"gifsthatendtoosoon": 24544499.5,
"MarriedAtFirstSight": 11300339,
"SmashBrosUltimate": 17219504.5,
"fastfood": 21719655,
"shortcels": 4330609,
"animememes": 1822781.5,
"shittykickstarters": 57408990,
"Bass": 15183818,
"exjw": 23915643,
"GalaxysEdge": 1453545.5,
"ask": 13360456.5,
"sexstories": 24950290.5,
"CongratsLikeImFive": 9590910.5,
"badassanimals": 4068599.5,
"TwoXChromosomes": 26970689.5,
"discordservers": 42637320,
"simpsonsshitposting": 17591889,
"community": 58984844.5,
"AsianLadyboners": 16520302,
"JailyneOjedaOchoa": 1629455.5,
"IndiansWhoMakeYouFap": 5675469.5,
"dayz": 189067613,
"thewalkingdead": 75616675.5,
"footballmanagergames": 21325320.5,
"DayZServers": 229581430.5,
"introvert": 13329935.5,
"poker": 27941607.5,
"DaisyRidley": 32017178.5,
"Ultralight": 53937694.5,
"OkCupid": 111498350.5,
"torontoraptors": 18289562,
"halo": 2932500.5,
"PropagandaPosters": 42627462.5,
"rollercoasters": 28328385.5,
"Beastars": 3771471.5,
"80sdesign": 3410050.5,
"techsupport": 24088982,
"forza": 37855410,
"TrueCrimeDiscussion": 8210494.5,
"CallMeCarson": 6607974,
"AzureLane": 2523851,
"beards": 77284227.5,
"SocialistRA": 21024901,
"MemePiece": 10428910.5,
"nhl": 21263295,
"UberEATS": 25294372.5,
"Deltarune": 36206220.5,
"baldursgate": 18931575,
"castiron": 4924304,
"rance": 4676441,
"submechanophobia": 48322854.5,
"6thForm": 18218276.5,
"verizon": 89346944.5,
"legostarwars": 1716636,
"CasualConversation": 17863013,
"StreetFighter": 39344723,
"NintendoSwitchDeals": 17916680.5,
"Botchedsurgeries": 14222601.5,
"worldpolitics": 1947342,
"AskScienceFiction": 36279008.5,
"csgo": 3225363.5,
"DiWHY": 22765977,
"croatia": 25587503.5,
"MovieDetails": 13465902,
"SSSniperWolf_Pics": 13964659,
"slowcooking": 34475760,
"Jazz": 26996190,
"PokemonSwordAndShield": 3269964,
"HalfLife": 4402472,
"Gamemeneersubmissies": 3749498.5,
"RBI": 44374521.5,
"Nirvana": 18755443,
"rpghorrorstories": 10087230.5,
"FUCKYOUINPARTICULAR": 15257030,
"redditmobile": 57248315,
"montreal": 14449848.5,
"metro": 21399363.5,
"ExtremeCarCrashes": 2928848,
"moderatepolitics": 16790986.5,
"PlantedTank": 27405803,
"Tennesseetitans": 603632.5,
"gameofthrones": 21405509,
"consulting": 16631015,
"rantgrumps": 21581650.5,
"houseplants": 15497693,
"AnimalTextGifs": 40612146.5,
"greenday": 5536929.5,
"AmItheButtface": 8199835.5,
"AskTeenGirls": 13622401.5,
"eagles": 61610971.5,
"aliens": 15518968.5,
"germany": 14575487.5,
"playrust": 17582020.5,
"Instantregret": 12093219.5,
"smalldickproblems": 25211249,
"space": 53818237,
"lostredditors": 19328476,
"conspiracy": 31343498.5,
"Falcom": 18010662.5,
"lightsabers": 326709,
"Rochester": 33091320.5,
"Sims4": 3596633,
"FashionReps": 30057812,
"slaythespire": 38168133,
"mylittlepony": 224954290.5,
"TechNewsToday": 1776630.5,
"chefknives": 20330329,
"CVS": 3227456,
"ElderScrolls": 37068263,
"humblebrag": 20529541.5,
"airpods": 4285712,
"FiftyFifty": 4185728,
"aviation": 60590778,
"yourmomshousepodcast": 2275342.5,
"TheCircleTV": 273689,
"averageredditor": 17417516.5,
"amazonecho": 35993696,
"Norway": 15264596.5,
"CarletonU": 16410577.5,
"awwnverts": 15765695,
"DC_Cinematic": 74689018.5,
"EnoughLibertarianSpam": 7408294,
"BlackPeopleTwitter": 30099319,
"googlehome": 3072464,
"UtahJazz": 28459447,
"DeathByMillennial": 8978795,
"Invisalign": 14231442.5,
"Granblue_en": 21565570.5,
"BitLifeApp": 10889004.5,
"A24": 1718453.5,
"afkarena": 8938563,
"ChurchofMarnie": 1832128.5,
"xboxone": 33798135,
"trippinthroughtime": 5302701,
"PoliticalDiscussion": 86886775.5,
"barstoolsports": 14756537.5,
"Defenders": 33193164,
"untrustworthypoptarts": 21822629,
"Audi": 25463478,
"shockwaveporn": 52400832,
"catsbeingbanks": 29659101,
"indianapolis": 36502304.5,
"mildlyinfuriating": 17883487,
"trashpandas": 64176208,
"Thailand": 16261041,
"Israel": 23259205,
"IndianTeenCleavage": 2978677,
"aws": 12260607,
"FUTMobile": 38460097,
"Scotland": 69923731,
"LearnJapanese": 25088070,
"calvinandhobbes": 60183355.5,
"panthers": 37125553,
"AppHookup": 2218650.5,
"toastme": 1620901.5,
"DomesticGirlfriend": 24601258,
"3d6": 18759797.5,
"dragonquest": 5651442,
"Naturewasmetal": 6967590.5,
"madisonwi": 28564959.5,
"radiohead": 67850182.5,
"Forex": 29402166,
"brushybrushy": 64361256.5,
"UKPersonalFinance": 30368022,
"TheRealJoke": 4562581,
"bakchodi": 15881172.5,
"tf2shitposterclub": 4435165,
"mangadex": 671621.5,
"geopolitics": 5831203.5,
"CallOfDuty": 4827368.5,
"fuckHOA": 25872618.5,
"riddles": 22029497,
"RetroNickelodeon": 248845.5,
"h3h3productions": 69063860,
"excel": 43230206,
"realestateinvesting": 29591676.5,
"TwoSentenceSadness": 3198712.5,
"HailCorporate": 61860256.5,
"hempflowers": 14240713,
"ArtisanVideos": 62713187,
"SpidermanPS4": 33496524,
"SpaceXLounge": 27494095.5,
"TwoDots": 3709413,
"ArianaGrande": 33173447.5,
"donthelpjustfilm": 19963426.5,
"ravens": 5616267.5,
"MeghanMarkle": 21823067.5,
"Battletechgame": 53013332.5,
"farcry": 55900479.5,
"wildbeef": 9614315.5,
"slatestarcodex": 42807260,
"Waxpen": 15522242.5,
"French": 14300378,
"ThatLookedExpensive": 5356908,
"mbti": 2664006.5,
"kpop": 67304288.5,
"LizKatz": 17496089.5,
"pacers": 42825427,
"HaveWeMet": 35087428,
"SocialJusticeInAction": 20570096.5,
"reactiongifs": 61901823,
"Jeopardy": 19198320.5,
"fuckepic": 17729439.5,
"LOONA": 2964571.5,
"fitbit": 16199913,
"camping": 59506398.5,
"IncreasinglyVerbose": 17392047,
"gisellelynette": 3540126,
"HPHogwartsMystery": 32757765,
"ExpandDong": 30940940,
"astrology": 18194677,
"dashcamgifs": 3166688,
"ACMilan": 20152327,
"AsianMasculinity": 29279098,
"GifRecipes": 58064143.5,
"beta": 49408813.5,
"Makeup": 25591046,
"PokemonGoSpoofing": 15429410.5,
"GamingDetails": 19194016,
"amiugly": 16887562.5,
"CatSlaps": 71646440,
"WhitePeopleTwitter": 29335854,
"RepLadies": 27031261,
"wildhearthstone": 14131141,
"ShittyLifeProTips": 33433881,
"Fuckthealtright": 76101593,
"Supernatural": 31758869.5,
"malehairadvice": 55499203.5,
"NoStupidQuestions": 13840422,
"ladyladyboners": 20777202.5,
"UnsolvedMysteries": 37563606.5,
"CollegeBasketball": 43170521,
"AMDHelp": 18776191,
"CrusaderKings": 23960574,
"digitalnomad": 12180130.5,
"Texans": 47490313.5,
"Pineapplebrat": 3667231.5,
"Hawaii": 62889002,
"Angryupvote": 15673217.5,
"musictheory": 28093194,
"confession": 45370547.5,
"sixers": 4284021.5,
"AirBnB": 2922641,
"PenmanshipPorn": 49450564,
"Crushes": 1849121.5,
"formula1": 24588064,
"japan": 31719536.5,
"Borderlands": 24406498.5,
"westworld": 49681692,
"RandomActsOfGaming": 123220606.5,
"raimiprequelmemes": 2162287,
"HelpMeFind": 2972027.5,
"autism": 19448565.5,
"LesbianActually": 9344573,
"SatisfactoryGame": 24739366,
"DokkanBattleCommunity": 9269446,
"WordAvalanches": 49235881,
"criminalminds": 3380461.5,
"reddeadfashion": 4390031.5,
"Semenretention": 16450503,
"average_redditor": 1517202,
"theyknew": 15791464,
"army": 36051316,
"photoshop": 240030945,
"ufl": 3462800.5,
"vexillologycirclejerk": 20517352.5,
"FortniteFashion": 13783553,
"comedyhomicide": 12780375,
"Oxygennotincluded": 17640706,
"visualnovels": 16419932.5,
"indieheads": 25121971,
"AceAttorney": 7613328,
"deepweb": 25162926,
"whatsthisplant": 18908562.5,
"2busty2hide": 19439837.5,
"houston": 74649283,
"beatles": 14739762,
"fitmeals": 132790587.5,
"KingkillerChronicle": 22562492,
"mollyeskamshit": 11224962,
"StLouis": 44145996,
"RealTesla": 15729407,
"Warhammer40k": 23733221.5,
"dating_advice": 33834553,
"Keto_Food": 24119373,
"Undertale": 65157268,
"food": 56715260,
"shittyreactiongifs": 58471609.5,
"urbanexploration": 50387291.5,
"selfhosted": 24576361.5,
"wholesomebpt": 11199474.5,
"Memes_Of_The_Dank": 2649440.5,
"resumes": 16145274.5,
"anno": 22149257.5,
"3DS": 95483013,
"Eve": 76846171.5,
"marijuanaenthusiasts": 71800585,
"BeardedDragons": 29319286.5,
"LodedDiper": 30109146,
"StarWars": 63418986,
"tacobell": 36950424,
"chromeos": 25335628,
"libertarianmeme": 2504516.5,
"Barca": 15669962.5,
"bassnectar": 13719873,
"SophieM": 21840716,
"KansasCityChiefs": 30969013.5,
"WorldofTanks": 1701459,
"northernireland": 12060272.5,
"WarhammerCompetitive": 3986568,
"FireEmblemThreeHouses": 4588132.5,
"diablo2": 20318903,
"ketorecipes": 21088210,
"short": 26362506.5,
"onebag": 11171536,
"AnotherEdenGlobal": 25638720,
"MakeupAddiction": 23250600,
"RPClipsGTA": 13021329.5,
"FundieSnark": 9742272,
"depression_memes": 15582997.5,
"Connecticut": 58819083,
"Physics": 47175420,
"MysteryDungeon": 1631750,
"EA_NHL": 20721723.5,
"TeamfightTactics": 15328125.5,
"Foodforthought": 77203909.5,
"NoahGetTheBoat": 2287988.5,
"California": 83393999,
"DataHoarder": 23809117,
"HongKong": 6841855,
"salmahayek": 14930320,
"FuckYouKaren": 3875531.5,
"Scams": 1944715.5,
"Frat": 53659187,
"AccidentalComedy": 60017692.5,
"MonsterHunter": 59274497,
"IdiotsFightingThings": 52038222.5,
"socialmedia": 52478122.5,
"amiibo": 146393749.5,
"howtonotgiveafuck": 60651100.5,
"BleachBraveSouls": 14445846,
"oddlyterrifying": 4378871.5,
"characterdrawing": 5608380.5,
"Advice": 35407165.5,
"Flume": 20873458,
"Catswhoyell": 2075237,
"Borderlands2": 21722945,
"dadjokes": 46443361,
"KeanuBeingAwesome": 17674792,
"DrStone": 4281202,
"perfectlycutscreams": 22710100,
"InsanePeopleQuora": 3469660.5,
"IdiotsInCars": 26780844,
"jacksepticeye": 1486026.5,
"projecteternity": 34140485,
"lucifer": 19285817,
"13or30": 9151817.5,
"jurassicworldevo": 46551010,
"legodeal": 12686099.5,
"Justfuckmyshitup": 31018863.5,
"GamersRiseUp": 2410336,
"bikewrench": 18050596,
"ScarySigns": 49834026,
"forhonor": 55526239,
"AAAAAAAAAAAAAAAAA": 2300541.5,
"boottoobig": 44247079,
"GreenAndPleasant": 2605030.5,
"dyinglight": 11494856,
"TrueReddit": 62104917.5,
"animenocontext": 17578184,
"ImaginaryCharacters": 21351866,
"puppy101": 18792389.5,
"SnapLenses": 61968431.5,
"justneckbeardthings": 42983678,
"raspberry_pi": 33714525,
"toptalent": 3841518.5,
"cinematography": 11337787,
"INEEEEDIT": 60078960,
"FL_Studio": 26785758.5,
"Xcom": 31225326,
"spicypillows": 1862584,
"SaintSeiyaKOTZ": 7885479.5,
"ABoringDystopia": 7618083,
"TwinCities": 29552753.5,
"lego": 51850025.5,
"GolfClash": 26937668.5,
"minipainting": 23341121.5,
"battlestations": 38193959,
"StockMarket": 33026942.5,
"TheMonkeysPaw": 20580710.5,
"AskUK": 37165525,
"mendrawingwomen": 2893204,
"korea": 28639946.5,
"Sidemen": 1411523.5,
"IRLgirls": 4614304.5,
"EmmaKotos": 11167684,
"brisbane": 27337837,
"Kenshi": 11460754,
"college": 20271795,
"blackmagicfuckery": 24958935,
"MargotRobbie": 17178561.5,
"OLED": 19940724,
"yorku": 3901762,
"GalaxyNote9": 28156416.5,
"JuiceWRLD": 2980666,
"StudentLoans": 13783322,
"razer": 11025113,
"starbucks": 38160687,
"InfinityTrain": 13201628,
"slavelabour": 16702435,
"rareinsults": 5394548.5,
"windows": 140508585,
"PokemonGoFriends": 1820544.5,
"hometheater": 25807632.5,
"NYGiants": 30777381,
"TeslaLounge": 3886109.5,
"redneckengineering": 14768187,
"boneachingjuice": 4208005.5,
"learndota2": 24082673,
"needforspeed": 3630694,
"Naruto": 49923321.5,
"androiddev": 44652218.5,
"ExplainAFilmPlotBadly": 27880408.5,
"rimjob_steve": 15710657.5,
"simpleliving": 2984660.5,
"podcasts": 29880855.5,
"ToiletPaperUSA": 14801166.5,
"VRchat": 63655517.5,
"KHUx": 35887413.5,
"ashkaashh": 3279567,
"preppers": 46485935,
"BirdsArentReal": 4188811,
"runescape": 77098576.5,
"DankMemesFromSite19": 25444166,
"cableporn": 64374961,
"Kaguya_sama": 2899317,
"BeautyBoxes": 10475103.5,
"latterdaysaints": 14959608,
"49ers": 47543211.5,
"MechanicAdvice": 20799882.5,
"PartyParrot": 47805084,
"yiffinhell": 16964812.5,
"DemocraticSocialism": 7429894.5,
"HQDesi": 19304583.5,
"canucks": 68131496,
"Supplements": 33644836.5,
"CFA": 26391098.5,
"AccidentalRenaissance": 65055892,
"AgeGapRelationship": 1641616.5,
"KylieJennerPics": 27269916,
"PresidentialRaceMemes": 14257859.5,
"denvernuggets": 22267833.5,
"Gamingcirclejerk": 35699652,
"beermoney": 135534404.5,
"Dentistry": 29988662.5,
"Market76": 14696396.5,
"Optifine": 9328588,
"albiononline": 75511519.5,
"seriouseats": 15507345,
"nosurf": 13669100.5,
"Marriage": 10305321,
"heroesofthestorm": 39292097.5,
"shieldbro": 18270880,
"CorporateFacepalm": 75775924.5,
"answers": 113563282.5,
"arielwinter": 81830873,
"PremierLeague": 5269328.5,
"rupaulsdragrace": 58283380,
"itookapicture": 59528494,
"OverwatchUniversity": 18773395.5,
"Random_Acts_Of_Amazon": 20343069.5,
"nier": 16037442.5,
"DestinyMemes": 6291102,
"AntiJokes": 43363997.5,
"wholesomegreentext": 4379731.5,
"battlemaps": 12370593,
"homelab": 17336717,
"Paladins": 5049449.5,
"VlogSquadGirls": 23546012.5,
"Whatisthis": 18050190.5,
"Techno": 21677946,
"lawofattraction": 15907664,
"steinsgate": 1795048,
"TanaMongeau": 26101400.5,
"RoastMyCar": 24591480.5,
"pennystocks": 25771126,
"ATT": 19223205.5,
"Persona5": 18018785.5,
"iamverysmart": 60142043,
"AlahnaLy_": 1699751.5,
"Seaofthieves": 56268926.5,
"creepy": 25590640,
"SanJoseSharks": 22473897.5,
"AndroidQuestions": 76690701.5,
"PinkOmega": 21497962.5,
"Ripple": 63244608.5,
"FireEmblemHeroes": 65383547.5,
"MonsterMusume": 9547276,
"FFVIIRemake": 21150142.5,
"rickandmorty": 2980515,
"Redskins": 99348418.5,
"thatHappened": 32826772,
"VolibearMains": 228690,
"swordartonline": 4948520,
"BikiniBottomTwitter": 29097849.5,
"arcticmonkeys": 50905490,
"UpliftingNews": 25292511.5,
"motogp": 25612795,
"hoi4": 20093400,
"rpg_gamers": 48798884.5,
"google": 66334847.5,
"MyChemicalRomance": 4691358.5,
"jeffreestarcosmetics": 6065554,
"Aquariums": 56388518.5,
"weightroom": 18666180,
"ProRevenge": 64826796,
"progmetal": 167650623,
"bigboye": 9509455,
"1500isplenty": 13067465.5,
"CelebrityFeet": 20092113,
"LeagueofFailures": 17547939,
"btd6": 8205912,
"paydaytheheist": 133826673,
"Im15AndThisIsYeet": 3600725.5,
"TheGirlSurvivalGuide": 29811519,
"VitaPiracy": 9559729,
"breakingbad": 32221577,
"fullmoviesonyoutube": 179478840,
"minnesota": 66661580,
"reactjs": 23605166.5,
"uglyduckling": 40677010.5,
"USMC": 26982857.5,
"Rivenmains": 13543322.5,
"AfterTheLoop": 6567771,
"Vaping101": 22033384.5,
"golf": 52425102,
"liberalgunowners": 36497640,
"FigureSkating": 3720115,
"Bitcoin": 64579340.5,
"wiiu": 87231206,
"Pets": 30638193.5,
"newreddits": 230178547,
"OldSchoolCool": 62416129.5,
"PS4Pro": 2087916.5,
"theocho": 53959576.5,
"wicked_edge": 216508686,
"self": 85573903,
"Wizard101": 24431241.5,
"DirtyKIKRoleplay": 3039272.5,
"nvidia": 5498070.5,
"joinsquad": 5875043,
"beatsaber": 2470251,
"vegas": 58296813,
"shittyfoodporn": 48492378.5,
"brasil": 27265249,
"IBO": 35633378,
"OopsDidntMeanTo": 27480604.5,
"mangarockapp": 11056971,
"techsupportmacgyver": 69510557,
"dbxv": 7573717.5,
"Stargate": 48760281,
"Coomer": 1645303,
"Baking": 46426883.5,
"MildlyVandalised": 55688996.5,
"SSBM": 31597368.5,
"ios": 4615268.5,
"bioniclememes": 21158280.5,
"Scrubs": 35915368.5,
"geek": 66687300.5,
"GTAV": 75251011,
"tomorrow": 22864963,
"Anarchism": 76025967.5,
"BollyBlindsNGossip": 4129443,
"samharris": 27533284,
"HunterXHunter": 16979774.5,
"leaves": 21731314.5,
"Bossfight": 23959380,
"Missing411": 4046825.5,
"politics": 36668830.5,
"PioneerMTG": 5712445,
"UnsentLetters": 28790846.5,
"trebuchetmemes": 54518829,
"communism": 26430892,
"IDontWorkHereLady": 65119314.5,
"Brawlhalla": 8229459.5,
"SpaceBuckets": 18455566.5,
"shittyrobots": 69872098.5,
"ChantelJeffries": 42443909,
"bi_irl": 2941500.5,
"Miata": 25606054.5,
"NEET_Life": 392698.5,
"BBQ": 23391601,
"ItHadToBeBrazil": 10891223.5,
"MachinePorn": 53397005,
"2007scape": 35860749.5,
"PanPorn": 24729072,
"AntifascistsofReddit": 4362812,
"TeenMomOGandTeenMom2": 22747360,
"MilitaryGfys": 59177852,
"MakeMeSuffer": 7077431.5,
"Futurology": 31645550.5,
"Catculations": 9762679,
"VictoriaBC": 21057157,
"Denver": 54792244.5,
"phr4r": 18007703.5,
"chadsriseup": 17735000,
"peloton": 14920279,
"vanderpumprules": 20425901,
"dank_meme": 23815198,
"bonnaroo": 17951800,
"AEWOfficial": 2098968,
"EliteDangerous": 45345452,
"equelMemes": 59906337.5,
"Paranormal": 32133568.5,
"UpvoteBecauseButt": 3572200.5,
"datascience": 17136774,
"40kLore": 16254356,
"smashbros": 36092829,
"metacanada": 27771189.5,
"philosophy": 67092482.5,
"TalesFromYourServer": 38480283.5,
"picrequests": 114021803,
"streetwearstartup": 20032366,
"gaymers": 18525491.5,
"TopMindsOfReddit": 54452485,
"delusionalartists": 21109896.5,
"chile": 6451011.5,
"shortscarystories": 27020538,
"whatcouldgoright": 20824020.5,
"xxfitness": 42661755,
"wokekids": 17117111,
"LatinoPeopleTwitter": 61232328.5,
"ChildrenFallingOver": 64806190.5,
"kindle": 8832751.5,
"hearthstone": 8178905,
"milwaukee": 25572021,
"emulation": 64686614,
"modernwarfare": 5861706,
"EmilyRatajkowski": 66645465,
"fo76": 35397873,
"FloridaGators": 25327127,
"recipes": 28262627.5,
"LegalAdviceUK": 34440401,
"realmadrid": 14306150.5,
"suns": 42343154,
"combinedgifs": 49290560,
"videogamedunkey": 37932758,
"mattcolville": 27086493.5,
"blunderyears": 47748041.5,
"ageofsigmar": 2446360,
"horizon": 76060083.5,
"AmirahDymee": 4226466,
"iosgaming": 17126503,
"lockpicking": 25868940.5,
"csMajors": 38787025.5,
"bapcsalescanada": 19771594,
"Shadowverse": 44523812,
"youseeingthisshit": 25305174,
"VietNam": 4837588,
"kateupton": 40359874,
"bladeandsoul": 125148073,
"dadswhodidnotwantpets": 4403221,
"iOSBeta": 18303414,
"Screenwriting": 28793697.5,
"bodybuilding": 85749717.5,
"ofcoursethatsathing": 46458903.5,
"investing": 35120980.5,
"projectcar": 37595327,
"galaxys10": 10355320.5,
"Instagram": 26298921,
"smoking": 86850051,
"pics": 28931328.5,
"jailbreak": 35288959.5,
"apexlegends": 27164872.5,
"nonononoyes": 58654984,
"medicalschool": 33260684.5,
"Competitiveoverwatch": 37957005,
"singing": 6423912.5,
"greece": 18537794.5,
"dankvideos": 16561138,
"MDMA": 27047482.5,
"arduino": 22411544,
"SubsIFellFor": 23962064,
"destiny2": 39174454,
"dontyouknowwhoiam": 16720633,
"delusionalcraigslist": 16662649.5,
"KarmaCourt": 37745177.5,
"Minoxbeards": 27668846.5,
"likeus": 46957273.5,
"Youniqueamua": 17063128,
"JusticeServed": 20465014,
"findapath": 16936939.5,
"Showerthoughts": 30068983.5,
"comics": 31490485.5,
"Agraelus": 16498949.5,
"MEOW_IRL": 27370298,
"niceguys": 36591212,
"Smite": 36715787,
"CatTaps": 61763361,
"Bowling": 17257482,
"twinpeaks": 71822175.5,
"AstralProjection": 21669080,
"MakeupRehab": 40773519,
"absoluteunit": 7753433.5,
"findareddit": 28470864.5,
"iamveryugly": 823251,
"Tekken": 8034537.5,
"HuntShowdown": 11906252.5,
"pointlesslygendered": 3332908.5,
"bestof": 65690568,
"DadReflexes": 64779854.5,
"YouSeeComrade": 59653700.5,
"technology": 66603093,
"TheDepthsBelow": 48345262,
"dontdeadopeninside": 44864813.5,
"ksi": 5432336.5,
"redditbay": 9881864.5,
"DanLeBatardShow": 33000632,
"LeftieZ": 1812323,
"CrappyDesign": 46917847,
"China": 34023506.5,
"Assistance": 126538786,
"Design": 59871110.5,
"Economics": 17354827,
"AskReddit": 39121991.5,
"ItemShop": 2923273.5,
"beetlejuicing": 38579326,
"Pathfinder2e": 14076767.5,
"FrugalMaleFashionCDN": 24407404,
"classicalmusic": 28869729.5,
"SrGrafo": 15777589,
"MBA": 10524814,
"EntitledPeople": 5226505.5,
"ValveIndex": 3278864,
"netsec": 116781828,
"vitahacks": 24496379,
"Trufemcels": 21191136,
"detroitlions": 73368206,
"ClimbingCircleJerk": 25490430.5,
"ImaginarySliceOfLife": 3425908,
"NLSSCircleJerk": 66692947,
"survivor": 29758072,
"BeatMeToIt": 1820733,
"ketamine": 11176071.5,
"realasians": 80942360,
"homestuck": 20819306,
"longrange": 17318855.5,
"apple": 30159564.5,
"Browns": 36802166.5,
"SandersForPresident": 47424359.5,
"japanlife": 32341780.5,
"future_fight": 43304117.5,
"snakes": 28240864.5,
"ultimate": 54992587.5,
"residentevil": 28673810.5,
"Badfaketexts": 43838766,
"grandorder": 16408482,
"cursedvideos": 13781207,
"dotnet": 49361550,
"philadelphia": 57147166.5,
"MarvelStrikeForce": 40378101,
"Pareidolia": 57690437,
"TalesFromTheFrontDesk": 38534874.5,
"bigboobproblems": 21765541.5,
"VideoGameDealsCanada": 3950276.5,
"vidaguerra": 386574,
"Pauper": 18977254,
"annakendrick": 84567409,
"AppleWatch": 50107619,
"ShingekiNoKyojin": 38021323,
"SexyWomanOfTheDay": 23143707.5,
"solotravel": 61779863,
"Feminism": 29483534,
"Atlanta": 78782634,
"japancirclejerk": 53746847,
"MemeEconomy": 41416036,
"photoshopbattles": 70545327,
"ukdrill": 13086512.5,
"ValeryAltamarFans": 2487595.5,
"oblivion": 17061600.5,
"tifu": 27109963.5,
"starcitizen": 63563361,
"MaliciousCompliance": 45988908,
"oneplus": 36593121,
"animalsdoingstuff": 3337607,
"HollowKnight": 15749077,
"gay": 23561769,
"entitledparentsmemes": 3277064.5,
"Mustang": 26918571.5,
"belgium": 18585748.5,
"suggestmeabook": 14504938.5,
"Plumbing": 17568498,
"LeopardsAteMyFace": 2607331,
"reddeadredemption2": 35243757.5,
"lastcloudia": 6910472,
"KissAnime": 45412261.5,
"redditrequest": 144817510.5,
"CallOfDutyMobile": 5622935.5,
"DarkSouls2": 178047391.5,
"thewitcher3": 1705351,
"intermittentfasting": 26209361.5,
"warriors": 32886224,
"postmates": 19251966,
"AskVet": 19464506,
"Testosterone": 35619458,
"Vent": 22489073,
"CCW": 1573968.5,
"progun": 4568844.5,
"AtlantaHawks": 51018333,
"Nootropics": 37263220,
"ClashOfClansRecruit": 40215772,
"tipofmytongue": 21753026.5,
"javascript": 49703055,
"educationalgifs": 28412519,
"DnD": 10313797,
"RepTronics": 4782829.5,
"backpacking": 15323619,
"itsannemoore": 16452951,
"r4rtoronto": 16923400,
"Pacybits": 4487941,
"Louisville": 35868211.5,
"AnimalsBeingDerps": 21133949,
"imsorryjon": 16764374.5,
"CSRRacing2": 26012400.5,
"TalesFromThePharmacy": 47443593.5,
"AnimalsBeingJerks": 33082142.5,
"oddlyspecific": 4811711.5,
"IRLEasterEggs": 16857319,
"ScarlettJohansson": 27040674,
"CasualUK": 11168742.5,
"woosh": 69102532.5,
"TexasCuckoldCommunity": 4855829.5,
"hingeapp": 24573844.5,
"HomeNetworking": 38576095.5,
"Boardgamedeals": 16743948.5,
"doctorwho": 64599992.5,
"AskWomenOver30": 20090552.5,
"cigars": 28571509,
"FreyaNightingale": 16116594.5,
"tiktokthots": 2718496,
"howyoudoin": 31129419,
"elderscrollsonline": 22232093.5,
"uAlberta": 3338346.5,
"MURICA": 71045431,
"Blink182": 136623708.5,
"MxRMods": 2365358.5,
"rickygervais": 2116754.5,
"Finanzen": 8961576.5,
"Currentlytripping": 6138900.5,
"AskOuija": 31829354.5,
"playark": 81248544,
"TheWeeknd": 3773506,
"OreGairuSNAFU": 24906172.5,
"Brogress": 18027117,
"TankPorn": 29844923,
"toddlers": 11781764.5,
"tipofmyjoystick": 16274768.5,
"ihavereddit": 18898066,
"ARK": 16655295.5,
"boardgames": 62498588.5,
"BillBurr": 20035347,
"AskThe_Donald": 23981564,
"CalgaryFlames": 28393861,
"Corsair": 2673223,
"Warhammer": 47325880,
"newzealand": 22238217.5,
"listentothis": 68465339,
"projectzomboid": 6061390.5,
"electronicmusic": 36090958,
"FlashTV": 73537111.5,
"conspiracytheories": 2500110.5,
"thelastofus": 8313366.5,
"reclassified": 19900463,
"ATBGE": 10428581.5,
"Markiplier": 4180170.5,
"csharp": 29978422,
"Idiotswithguns": 16843257.5,
"CelebBattles": 19039260,
"dogswithjobs": 43799974,
"EDM": 39050506.5,
"tmobile": 60610610,
"Chiraqology": 17312962.5,
"BitcoinMarkets": 62906811.5,
"steelseries": 5649784,
"bostonceltics": 77356373.5,
"Trucks": 20066578.5,
"Coachella": 43303229,
"insaneparents": 3160769.5,
"AskAcademia": 21453549,
"StarVStheForcesofEvil": 20310079,
"teefies": 36845892.5,
"AndroidTV": 37422274.5,
"sffpc": 8814955.5,
"spotify": 17747385,
"wasletztepreis": 21262469,
"OutOfTheLoop": 38977989.5,
"HistoryAnimemes": 16118072,
"HardcoreNature": 2258050.5,
"WTF": 28920567,
"MrRobot": 1773521,
"LucidDreaming": 136232901,
"FortniteCompetitive": 12866905.5,
"thanksihateit": 3685021,
"nursing": 29494287.5,
"titanfall": 31689458.5,
"options": 34101426.5,
"90DayFiance": 3318662.5,
"architecture": 72334996,
"DevilMayCry": 25542325,
"VinylDeals": 29917819.5,
"MomForAMinute": 2202843,
"lebanon": 6968916.5,
"Entrepreneur": 75334212,
"MMA": 51490227,
"onejob": 7662419.5,
"Huskers": 50797030.5,
"paradoxplaza": 45974396,
"ketoscience": 28025827,
"kansascity": 29395100,
"daverubin": 30168036,
"PetTheDamnDog": 22490496,
"terracehouse": 36124937.5,
"newtothenavy": 11022713,
"notdisneyvacation": 21284052.5,
"simracing": 22309870.5,
"PleX": 48590242,
"antiMLM": 30966575.5,
"falcons": 92513978.5,
"punk": 38836670,
"dajinism": 20566062,
"graphic_design": 72814401.5,
"ForwardsFromKlandma": 17850362.5,
"AlissaViolet": 29259481.5,
"thesims": 16898685.5,
"GooglePixel": 54247611,
"BarbaraPalvin": 26363485.5,
"askphilosophy": 25313828,
"computerscience": 23692104,
"YouOnLifetime": 521385.5,
"GhostRecon": 7614531,
"suddenlysexoffender": 19776658.5,
"Morrowind": 41658672,
"LetsTalkMusic": 38738619,
"AnadeArmas": 22610727.5,
"whatstheword": 22314782,
"bikecommuting": 7138109,
"asktrp": 38112153,
"steak": 20864560.5,
"AquaticAsFuck": 4855596,
"pussypassdenied": 45370066,
"CompetitiveEDH": 15873926.5,
"Grimdawn": 23210168,
"FemaleDatingStrategy": 4856763,
"YourJokeButWorse": 3867303.5,
"Davie504": 406043,
"WouldYouRather": 27570918.5,
"Kanye": 47757334,
"WorldOfWarships": 2505867.5,
"bartenders": 18222705.5,
"assholetax": 20159456.5,
"TibiaMMO": 24444996.5,
"evilbuildings": 56190968.5,
"AskMen": 8190042,
"gamingsuggestions": 27918348,
"onions": 27183914.5,
"GatekeepingYuri": 1557983,
"imveryedgy": 17358662,
"HomeImprovement": 17674284,
"southafrica": 25465614.5,
"Vive": 117356657.5,
"Cyberpunk": 63943400,
"lanadelrey": 11655822.5,
"COMPLETEANARCHY": 17930964.5,
"meirl": 53637322,
"Loserfruit": 12467530,
"pinkfloyd": 34301383,
"mtgfinance": 52675315,
"laptops": 15780106,
"discord_irl": 8412727,
"brockhampton": 41002950,
"PoliticalHumor": 23619533.5,
"HighHeels": 28427848,
"Stadia": 4322596.5,
"Avengers": 20824932,
"cringe": 59165920,
"steelers": 53016089,
"LeaksByDaylight": 4579642.5,
"thedivision": 21300717.5,
"drawing": 29810880,
"yesyesyesno": 26661445,
"SSBBW_FANS": 5862047.5,
"ussoccer": 16494933.5,
"codevein": 8047990,
"FRC": 25685443.5,
"MkeBucks": 22897266,
"meatcrayon": 2827802.5,
"GameStop": 32399010.5,
"SlyGifs": 66051742,
"mycology": 33805616,
"SelfDrivingCars": 29693136,
"bodyweightfitness": 45486867.5,
"glasgow": 23346702,
"MensLib": 43463953,
"GTAGE": 13117520.5,
"fakealbumcovers": 64575991,
"DeFranco": 79532369,
"aves": 14404764,
"Psychonaut": 53175846.5,
"leagueoflegends": 56161827,
"thinkpad": 23112436,
"reddeadmysteries": 19326784,
"pregnant": 13388919,
"BellaThorne": 42704548,
"WayOfTheBern": 70721239.5,
"PeopleFuckingDying": 28293439,
"Hasan_Piker": 15794219,
"AnimalCrossing": 26138088.5,
"agedlikewine": 3877212,
"sydney": 1680997,
"hardware": 48286581.5,
"AutoDetailing": 37066065.5,
"malaysia": 15901685,
"photocritique": 29636745.5,
"Grimdank": 2464827.5,
"Kikpals": 103113501,
"NHLHUT": 47998349.5,
"Giraffesdontexist": 25303755,
"OnePieceTC": 20030356.5,
"pureasoiaf": 19482304.5,
"barkour": 59089928.5,
"ShinyPokemon": 2972691.5,
"SoulCalibur": 38392912.5,
"trees": 60591438.5,
"FunnyandSad": 24699108.5,
"TsumTsum": 24718025,
"marvelstudios": 33360146,
"india": 43389904.5,
"Chargers": 77536427.5,
"asianamerican": 18082572.5,
"lookatme": 5176301.5,
"CryptoCurrency": 62011969.5,
"kingdomcome": 59494835.5,
"30ROCK": 39858886.5,
"NewOrleans": 85652692,
"HobbyDrama": 38043880,
"learningtocat": 8171810.5,
"ww3memes": 567538,
"rockets": 78281656,
"serbia": 17501310,
"Stellaris": 9424409.5,
"trump": 2582464,
"DavidDobrik": 13782400,
"remnantgame": 11730179.5,
"GarlicBreadMemes": 58785064.5,
"GolfGTI": 22463029.5,
"Seattle": 64128934,
"martialarts": 14352746,
"screenshots": 26356990.5,
"TVDetails": 10499776,
"gratefuldead": 41637749.5,
"ConvenientCop": 11769999,
"indonesia": 10653834,
"berlin": 18076154,
"antimeme": 8155449,
"winnipegjets": 52296280.5,
"godtiersuperpowers": 13008000,
"beer": 67913829.5,
"Anarcho_Capitalism": 34166879.5,
"LightNovels": 23682859.5,
"ScottishPeopleTwitter": 17226411.5,
"AnthemTheGame": 27013396,
"xbox": 6629680,
"HitBoxPorn": 48875616,
"Mavericks": 24361091.5,
"ethereum": 63781960,
"VGC": 2822091,
"dontputyourdickinthat": 16043288,
"CruciblePlaybook": 37256433,
"IDOWORKHERELADY": 6590620.5,
"holdmycosmo": 15971718,
"vfx": 22456873.5,
"WatchPeopleDieInside": 19418308,
"audiobooks": 33587136,
"wholesomegifs": 18665207.5,
"Choices": 17431544,
"internetparents": 15582313.5,
"indianpeoplefacebook": 64329535,
"AskHistorians": 58727163,
"adderall": 16014844.5,
"greysanatomy": 27791222,
"Battlefield": 72325016,
"yesyesyesyesno": 27874633,
"PokiNSFW3": 6075470,
"wedding": 11229473,
"gifsthatkeepongiving": 4297987.5,
"SoulKnight": 3085480,
"IndianTeens": 3488347,
"touhou": 13446603,
"G59": 22651016.5,
"devops": 26008696,
"tarot": 3914868.5,
"catsinpants": 286022.5,
"SuddenlyGay": 39602681,
"JenniferLawrence": 188640271.5,
"darkestdungeon": 25923015,
"Rowing": 28053261.5,
"Dell": 12221490.5,
"PraiseTheCameraMan": 23680129,
"shittymobilegameads": 15128306,
"jesuschristreddit": 66699938.5,
"BrieLarson": 12384113.5,
"Cartalk": 22301359.5,
"PersonalFinanceCanada": 30088077.5,
"gachagaming": 17298611.5,
"NightmareExpo": 13593955.5,
"RoleReversal": 15504890,
"recruitinghell": 15767029.5,
"ImaginaryMonsters": 60644896,
"facebookwins": 64328046.5,
"Conservative": 11762016.5,
"CHICubs": 100718570.5,
"Simulated": 45131335,
"totallynotrobots": 62825197.5,
"DivinityOriginalSin": 14607397.5,
"Minneapolis": 46280045.5,
"lonely": 3782543,
"nevertellmetheodds": 4308988,
"CampingGear": 24470490.5,
"askscience": 63729464.5,
"copypasta": 30415804,
"meme": 3138868.5,
"atheism": 12860495.5,
"gundeals": 51313348.5,
"Warframe": 41656896.5,
"USPS": 23161622,
"TooAfraidToAsk": 24628587,
"Columbus": 69474649.5,
"religiousfruitcake": 13619415,
"linuxmasterrace": 37670588,
"WatchRedditDie": 14258388,
"grindr": 14592890,
"NotHowDrugsWork": 55558887,
"2meirl42meirl4meirl": 17606320.5,
"NoahGetTheDeathStar": 880443.5,
"MMORPG": 26960349.5,
"cars": 62378442,
"hoggit": 4998881,
"FinalFantasy": 64949423.5,
"Catloaf": 55055841,
"BaltimoreAndDCr4r": 34933568,
"freeletics": 11627202,
"rangers": 47035054,
"ShitPoliticsSays": 31719974,
"pewdiepie": 1082861,
"sabaton": 4269678,
"AskCulinary": 26998482.5,
"Silverbugs": 27192824.5,
"Terraria": 8811900,
"unpopularkpopopinions": 2822440,
"keto": 22778936.5,
"Drugs": 76946662,
"perth": 4745386,
"LiverpoolFC": 37522768,
"OurPresident": 4786374.5,
"witcher": 8387620,
"chapotraphouse2": 15354348.5,
"CampingandHiking": 59439499,
"playstation": 25076568.5,
"noisygifs": 49893967,
"ActionFigures": 19078895,
"shrooms": 18993143,
"WitchesVsPatriarchy": 3309501.5,
"navy": 15167747,
"feetpics": 8525657,
"Dogtraining": 12672461.5,
"PokemonLetsGo": 35380103,
"NintendoSwitch": 26681858,
"microgrowery": 34084782.5,
"socialanxiety": 57061371,
"Fishing": 55697980.5,
"KidsAreFuckingStupid": 31870309.5,
"Zoomies": 1976447.5,
"fireemblem": 12698010.5,
"nasa": 40541740,
"Threesome_Dating_Site": 2486560,
"WindowsMR": 8228018.5,
"NoMansSkyTheGame": 107828631,
"Letterkenny": 7032989,
"2b2t": 15373968.5,
"Aliexpress": 3862503.5,
"teenagers": 27338092.5,
"BadMensAnatomy": 3459166,
"rage": 57888990.5,
"Coffee": 27573480,
"CompetitiveTFT": 9063961.5,
"SuccessionTV": 7601882.5,
"InstacartShoppers": 9480783.5,
"KamikazeByWords": 5617635.5,
"eatsandwiches": 40283800.5,
"parrots": 25748071.5,
"vim": 27797409.5,
"asoiaf": 21179060,
"uselessredcircle": 27245255.5,
"grammar": 38593947,
"Onision": 2181320.5,
"SubredditDrama": 71242163.5,
"vagabond": 20678646,
"perfectloops": 56806488,
"victoriajustice": 12167368.5,
"fatestaynight": 2307214.5,
"Shitstatistssay": 28846757.5,
"stevenuniverse": 15617107,
"AskTrumpSupporters": 35109424,
"cookingforbeginners": 11005449,
"CapitalismVSocialism": 29339500,
"NinaDobrev": 26686783,
"Overwatch": 38348276,
"fantasybball": 36545561.5,
"golang": 14684489,
"footballhighlights": 21390579,
"subnautica": 29771641,
"disneymagickingdoms": 20208590,
"linguistics": 39194893.5,
"OTMemes": 24123177.5,
"Gundam": 11136221,
"Overwatch_Memes": 7727435,
"Bumble": 3115574,
"Wellworn": 58735167.5,
"electronics": 36627063,
"antiboomershumor": 14667641,
"Cloud9": 4517692.5,
"Chonkers": 2550723,
"ufc": 52361194.5,
"NatureIsFuckingLit": 11873014.5,
"CatsAreAssholes": 33239226.5,
"Blep": 56188130.5,
"beatMeatToIt": 5164028,
"d100": 4604200.5,
"cscareerquestions": 41948937.5,
"sylasmains": 1294681.5,
"HadToHurt": 32366778,
"bicycling": 66718067.5,
"stalker": 3118324,
"Warthunder": 24699212,
"peopleofwalmart": 14728988.5,
"tea": 58246565.5,
"TrueFilm": 32200616,
"PCRedDead": 5529458.5,
"tumblr": 20901501,
"KingdomHearts": 29027786.5,
"RebornDollCringe": 52822002.5,
"EnoughMuskSpam": 32497150.5,
"lululemon": 2882647.5,
"gamedesign": 48046101.5,
"FreeCompliments": 71100839.5,
"EntitledBitch": 3949236.5,
"pan": 12263790.5,
"UMD": 24259343,
"mcgill": 16069629,
"OverwatchLeague": 11298310,
"DnDHomebrew": 8687413,
"intel": 27266729.5,
"instantpot": 32550930,
"AMD_Stock": 11454837.5,
"fut": 4991868,
"unexpectedcommunism": 7599649.5,
"ConservativeMemes": 497903.5,
"halsey": 22184979,
"GoldandBlack": 18713820,
"buildapcsales": 26587848.5,
"replications": 12607120.5,
"StarWarsCantina": 1196285.5,
"bodymods": 3012328.5,
"MAAU": 20311050.5,
"learnprogramming": 39656889,
"computers": 10257016.5,
"happycowgifs": 47626096.5,
"bustyisraeligirls": 10297803,
"Komi_san": 4800647,
"NYYankees": 70452837.5,
"flicks": 14197238.5,
"Mommit": 3929033.5,
"weed": 12928523.5,
"EDC": 88648435.5,
"StarWarsEU": 3109631,
"Watchexchange": 22609702.5,
"tattoos": 54082455,
"GirlsWithHugePussies": 12654040,
"BatmanArkham": 8697098,
"60daysin": 26214290,
"Stormlight_Archive": 20544075.5,
"SharedBPM": 39544650,
"PlayTemtem": 130636.5,
"SequelMemes": 59016704,
"titlegore": 171114069.5,
"LateStageImperialism": 10976605,
"SteamVR": 3530383,
"alcohol": 17590348,
"R6ProLeague": 10519447.5,
"GakiNoTsukai": 41031013.5,
"wiedzmin": 32252114.5,
"TheExpanse": 51787827,
"Prisonwallet": 23070961.5,
"StrangerThings": 61966170.5,
"offbeat": 65143418.5,
"NMSCoordinateExchange": 7071821,
"Porsche": 28876606.5,
"memes": 19183050.5,
"SweetHomeAlabama": 20990941.5,
"TumblrInAction": 92895600.5,
"ww3": 726237.5,
"Epstein": 13174509.5,
"MTB": 18676432,
"marvelmemes": 15529641.5,
"NoContract": 32506505.5,
"WC3": 4931703,
"Metroid": 17231443,
"pyrocynical": 33454669.5,
"LSAT": 25837144,
"PoliticalCompassMemes": 3356079.5,
"MakeMeSufferMore": 1770415,
"ToolBand": 12643735,
"bisexual": 36572832,
"fakecartridges": 14032769,
"NorthCarolina": 64729139,
"Dachshund": 27994570,
"hearthstonecirclejerk": 27306060,
"Sneks": 78740479.5,
"gtaglitches": 1774882.5,
"CountDankula": 1757283.5,
"ArenaHS": 4739537.5,
"gentlemanboners": 82131162.5,
"JDM": 21963144,
"harrypotterwu": 15417161,
"Metalcore": 41961172,
"SanJose": 24563929,
"freepatterns": 11983413.5,
"iranian": 10535084,
"servant": 2311000,
"catsarefuckingstupid": 2562823,
"NYKnicks": 28178558.5,
"womensstreetwear": 4199074,
"CowChop": 27543067,
"Ghoststories": 979270.5,
"riverdale": 34457140,
"comedyamputation": 20496160,
"canadients": 38965355,
"blackmirror": 44620255,
"selfimprovement": 25143507.5,
"arenaofvalor": 19462992.5,
"canberra": 618263.5,
"fairytail": 7826452.5,
"insurgency": 12006469.5,
"SeishunButaYarou": 3099821,
"Stretched": 10570868,
"everymanshouldknow": 144331726.5,
"misfits": 5087009,
"Sexconfessional": 2376524.5,
"InfowarriorRides": 10480517,
"LegionOfSkanks": 10261145,
"roadtrip": 17386474.5,
"Tokyo": 51486426.5,
"NetflixBestOf": 69529145,
"thepromisedneverland": 24616835,
"truechildfree": 3988679.5,
"bostoncalling": 209415,
"badwomensanatomy": 27276561.5,
"cringepics": 69401255.5,
"Star_Wars_Maps": 205442.5,
"AteTheOnion": 16609694.5,
"Midsommar": 16135415.5,
"femalefashionadvice": 35338309,
"urbanplanning": 22129332,
"postprocessing": 8979956,
"britishcolumbia": 21847281.5,
"CrusadeMemes": 18738602.5,
"GalGadot": 9096113.5,
"Metallica": 21585094,
"subredditcancer": 24868300,
"Barbara": 77659364.5,
"cleanjokes": 21803202,
"TheForest": 2276257,
"saskatoon": 51395763.5,
"Frostpunk": 16373679.5,
"sneakermarket": 39630963.5,
"RedheadedGoddesses": 15803284.5,
"rutgers": 6545574.5,
"FreeGamesOnSteam": 67529369.5,
"arresteddevelopment": 51148857,
"summonerschool": 3251106.5,
"buildapc": 72138014.5,
"bay": 81438.5,
"warcraft3": 6936833.5,
"CrazyIdeas": 66322867,
"skyrim": 26646860.5,
"bostontrees": 23203709,
"MilitaryPorn": 67230747,
"rush": 110416,
"RocketLeagueEsports": 9844201,
"MindHunter": 11992562.5,
"TokyoGhoul": 26507537,
"Enneagram": 2325881,
"doordash": 22749371,
"Bonsai": 23541726.5,
"ThanksManagement": 20867825.5,
"freelance": 16867596,
"whatsthisrock": 18119542.5,
"Unity3D": 48464850,
"heat": 40319846,
"HoldMyKibble": 33776214.5,
"shadowofmordor": 70013117.5,
"DetroitBecomeHuman": 15353801.5,
"redsox": 38055957.5,
"enoughpetersonspam": 26986478,
"ScaryTechnology": 2392911.5,
"ChineseLanguage": 12949446.5,
"Blessed_Images": 236152,
"Vinesauce": 22311625,
"Prematurecelebration": 58623941,
"TechNope": 11566165.5,
"HaloMemes": 2019330.5,
"DeepFriedMemes": 33605144.5,
"Grobbulus": 12214098,
"entitledkids": 10444967,
"TheMandalorianTV": 2115562,
"BabyYoda": 2066176,
"firstworldanarchists": 69950790,
"RedDeadOnline": 3980488.5,
"AssassinsCreedOdyssey": 21559945.5,
"sushi": 3869452,
"1200isfineIGUESSugh": 17817932,
"RoastMe": 70862797,
"DarkHumorAndMemes": 6238933.5,
"NHLStreams": 121532610,
"overlord": 16197611,
"Chipotle": 23908603.5,
"TerrainBuilding": 23215609.5,
"Finland": 16163552,
"chelseafc": 19638355,
"RATS": 20409539,
"MichaelReeves": 2862872.5,
"TargetedShirts": 23264043.5,
"satisfying": 2832363.5,
"Gamermoment": 16497758.5,
"ufo": 10146169,
"Birbs": 54614091,
"Sheismichaela": 3627806.5,
"BobsTavern": 2243660,
"badhistory": 72344596,
"hawks": 86650457,
"youdontsurf": 63317097.5,
"Astroneer": 21116162.5,
"stocks": 35468181.5,
"sexover30": 14755510.5,
"UnexpectedlyWholesome": 17349499,
"AbsoluteUnits": 17789529.5,
"disney": 51882311.5,
"KidsAreFuckingEvil": 13581227.5,
"raiders": 243947,
"StressFreeSeason": 2249996,
"SelenaGomezLust": 27745689,
"AlexisRen": 61999371,
"Predators": 54777807,
"proplifting": 20719063,
"femalehairadvice": 5080933.5,
"Michigan": 66657115,
"ikeahacks": 23491517,
"chomsky": 18619777,
"CatastrophicFailure": 12326498,
"Damnthatsinteresting": 31077746.5,
"PutYourDickInThat": 5878457.5,
"functionalprint": 15227066,
"offlineTV": 31833394.5,
"WeatherGifs": 72881547,
"cosplaybabes": 4320609,
"AgainstHateSubreddits": 69242995.5,
"JusticePorn": 145825882.5,
"natureismetal": 14452911.5,
"spotted": 1896956,
"dbz": 67115672,
"hardcoreaww": 46722139.5,
"WeirdWheels": 4761798,
"shitpostemblem": 1887035,
"Pokemongiveaway": 95580085,
"programminghorror": 12104342,
"NatureIsFuckingCute": 521413.5,
"inthenews": 212618810,
"DissidiaFFOO": 20444749.5,
"The10thDentist": 12940768.5,
"NewYorkMets": 92050071,
"restofthefuckingowl": 54543104,
"SweatyPalms": 25679663,
"uselessnobody": 16462851.5,
"mac": 26386475.5,
"MovieMistakes": 11170830.5,
"berkeley": 20626549.5,
"toarumajutsunoindex": 7926881.5,
"bruhmoment": 10524357,
"funkopop": 18479470.5,
"chargetheyphone": 3787185,
"TipOfMyFork": 223011.5,
"uofmn": 5081745,
"PrettyGirlsUglyFaces": 42577432.5,
"grandrapids": 39813311,
"CodeGeass": 15732404.5,
"wallpaper": 10164302.5,
"BuyItForLife": 60865283,
"Purdue": 29036429,
"fantasybaseball": 23564069,
"TenseiSlime": 4229362,
"hangovereffect": 35204403.5,
"panelshow": 56370657,
"Pikabu": 22893293,
"cocktails": 19714681,
"discordapp": 21688459,
"france": 77630190.5,
"CrossfitGirls": 27544118.5,
"Justrolledintotheshop": 49669395.5,
"IndiaSpeaks": 14458414.5,
"ConanExiles": 22679812,
"WGU": 22478394.5,
"WatchCloakedSombraDie": 6478686.5,
"AreTheStraightsOK": 7450488,
"HTDYL": 1256342.5,
"Instagramreality": 18449131,
"LearnUselessTalents": 65561537,
"AccidentalSlapStick": 12497194,
"indianews": 8523830,
"aznidentity": 23158567,
"DestinyFashion": 6016678.5,
"bonehealingjuice": 2690772,
"prolife": 19192483.5,
"NormMacdonald": 31221849.5,
"ListOfSubreddits": 49703634,
"careerguidance": 12443016,
"ac_newhorizons": 879801.5,
"GenderCynical": 10109114,
"IndianJoker": 549299.5,
"n64": 20703170,
"crossdressing": 14126472.5,
"phish": 35631751,
"Cardinals": 6783405.5,
"MrBeast": 10202473.5,
"WeirdWings": 18224351,
"gamindustri": 10817276,
"bulbasaurmasterrace": 27501192.5,
"RelationshipAdviceNow": 878245,
"CellToSingularity": 2041977.5,
"chairsunderwater": 18954230,
"animegifs": 26227819.5,
"beatlescirclejerk": 14548066.5,
"BlackClover": 2624758.5,
"mildlypenis": 51765691.5,
"SoundsLikeMusic": 33985506,
"LilyMoSheen": 18931935,
"ElectricForest": 17387887,
"mentalhealth": 27294173,
"CaptainSparklez": 13081113.5,
"thesopranos": 31208477.5,
"ProjectRunway": 24146165,
"awakened": 31235021,
"MacOS": 7048051,
"ManufacturingPorn": 3048562.5,
"bellahadid": 49310802.5,
"redditsings": 17820941,
"hisdarkmaterials": 3943413,
"DnDGreentext": 38508427.5,
"linuxmemes": 9076063.5,
"SwitchHacks": 9424947,
"SwitchHaxing": 34534580,
"truerateme": 9802361.5,
"MyPeopleNeedMe": 59696954,
"MadeInAbyss": 20168520.5,
"actuary": 4267974.5,
"FIFA": 63971986,
"ContraPoints": 17615979,
"Ubuntu": 35861804.5,
"blackcats": 39968092.5,
"IMTM": 4312065,
"Pimplepop": 1614285.5,
"tampa": 52092147.5,
"YMS": 22036513,
"YUROP": 36254139.5,
"CarsGivingBirth": 160010367,
"longisland": 28387176,
"firstworldproblems": 193531220,
"BostonBruins": 20716484,
"oddlysatisfying": 16741377,
"WTFgaragesale": 24016902,
"UTAustin": 27660961.5,
"WarplanePorn": 5568246.5,
"pokelawls": 10833128.5,
"pittsburgh": 48207549,
"masterhacker": 16859599,
"googleplaydeals": 64879369,
"INTP": 16640811,
"RaidShadowLegends": 15120858.5,
"GameTheorists": 46246811.5,
"FitAndNatural": 59835006,
"jerma985": 19951577,
"Shoestring": 30628305.5,
"travel": 59925245,
"longboarding": 204269625,
"Astros": 38657761,
"SnapChad": 14836051.5,
"manchester": 33073960,
"fantasyhockey": 20862387.5,
"Floribama": 1127043,
"flying": 25617943,
"AdviceAnimals": 28283509,
"spongebob": 35127378,
"IHateSportsball": 23618252,
"edmproduction": 33459043,
"disneyemojiblitz": 14387358.5,
"Political_Revolution": 90927323.5,
"sportsbetting": 4445003.5,
"creepypasta": 21081395.5,
"firefly": 72542522.5,
"bingingwithbabish": 3434744.5,
"OneyPlays": 18323429.5,
"publix": 13670994.5,
"FuckCaillou": 17865579,
"AskNYC": 18502792,
"illnessfakers": 12059913,
"APStudents": 20942629.5,
"trashy": 29050668.5,
"ElizabethOlsen": 12165587.5,
"Guelph": 19863150.5,
"Bushcraft": 26678053.5,
"ynab": 12493066,
"SubForAnything": 161200.5,
"Hardcore": 1892365,
"cursedcomments": 3087055,
"Chodi": 435666.5,
"blender": 24242785.5,
"Blackops4": 36358728,
"thegabbieshowpics": 22504677,
"wowthanksimcured": 38832695.5,
"RedditInReddit": 11454606.5,
"SkyrimMemes": 3476522.5,
"sbeve": 24752766.5,
"IggyAzalea": 31195532,
"duolingo": 23540812.5,
"that_Poppy": 1289908.5,
"LoveLive": 15885628,
"gamegrumps": 48225993,
"linux": 72679029.5,
"bangtan": 23553120.5,
"SuddenlyNotGay": 33453101.5,
"DelphiMurders": 19181182,
"Otonokizaka": 5570200.5,
"family": 9523249.5,
"Calgary": 26704382.5,
"ProgrammerHumor": 21348268.5,
"totalwarhammer": 7321140,
"mazda": 19030768.5,
"Youtooz": 1673341.5,
"KillLaKill": 8235807,
"netflix": 64563484,
"AubreyPlaza": 13646436,
"StateOfDecay": 51365852,
"ncaaBBallStreams": 5932.5,
"reddit.com": 326309805.5,
"VinylReleases": 22021288,
"MandJTV": 1963287.5,
"SiestaKeyMTV": 28557127,
"Madden": 43487555.5,
"soccercirclejerk": 20481814,
"Beatmatch": 16628898.5
};
renderList()
}
Also see: Tab Triggers