-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy path01-memes.sql
2490 lines (2481 loc) · 83.4 KB
/
01-memes.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CREATE TABLE public.category (
id serial NOT NULL PRIMARY KEY,
name text NOT NULL
);
-- Fake policies
grant select, update(name)
on category
to postgres;
create policy categories_update_policy
on category for update
to postgres
using(current_setting('my.username') IN (name));
INSERT INTO public.category (id, name) VALUES
(1, 'Funny'),
(2, 'Weird'),
(3, 'Dumb'),
(4, 'Cute'),
(5, 'Interesting');
CREATE TYPE meme_status AS ENUM ('new', 'old', 'retired');
CREATE TABLE public.memes (
id serial NOT NULL PRIMARY KEY,
name text NOT NULL,
category INTEGER REFERENCES category(id),
metadata jsonb,
other_check_metadata jsonb,
json_metadata json,
free_metadata jsonb,
created_at TIMESTAMP NOT NULL,
status meme_status DEFAULT 'old'
);
ALTER TABLE public.memes ADD CONSTRAINT json_metadata_schema_check
CHECK (
(json_matches_schema('{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"popularity_score": {
"type": "integer"
},
"name": {
"type": "string"
}
},
"additionalProperties": false
}', json_metadata))
);
ALTER TABLE public.memes ADD CONSTRAINT metadata_schema_check
CHECK (
(jsonb_matches_schema('{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"popularity_score": {
"type": "integer"
},
"name": {
"type": "string"
},
"address": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"street": {
"type": "string"
}
},
"required": [
"city",
"street"
]
}
},
"required": [
"popoularity_score"
]
}', metadata))
);
ALTER TABLE public.memes ADD CONSTRAINT other_check_metadata_schema_check
CHECK (
(other_check_metadata <> '{}'::jsonb)
);
INSERT INTO public.memes (name, category, created_at) VALUES
('NO. Rage Face', 5, NOW()),
('"Not Bad" Obama Face', 5, NOW()),
('You Know I Had to Do It to Em', 5, NOW()),
('Rage Comics', 1, NOW()),
('Okay Guy', 4, NOW()),
('Derp', 2, NOW()),
('Jessi Slaughter', 2, NOW()),
('Brazzers', 3, NOW()),
('Dat Boi', 1, NOW()),
('Bad Luck Brian', 4, NOW()),
('Lemon Party', 1, NOW()),
('Philosoraptor', 4, NOW()),
('Fuck Yea', 3, NOW()),
('Harambe the Gorilla', 4, NOW()),
('Press F to Pay Respects', 1, NOW()),
('GamerGate', 4, NOW()),
('60''s Spider-Man', 1, NOW()),
('MonkaS', 2, NOW()),
('Dick Butt', 3, NOW()),
('Rage Guy (FFFFFUUUUUUUU-)', 4, NOW()),
('Blue Whale Challenge', 5, NOW()),
('Ricardo Milos', 3, NOW()),
('[10] Guy', 1, NOW()),
('Wat', 3, NOW()),
('Big Chungus', 1, NOW()),
('Haters Gonna Hate', 3, NOW()),
('Do You Even Lift?', 1, NOW()),
('Kappa', 5, NOW()),
('Sad Keanu', 5, NOW()),
('"You Are Already Dead" / "Omae Wa Mou Shindeiru"', 1, NOW()),
('Mega Milk / Titty Monster', 4, NOW()),
('Annoying Facebook Girl', 3, NOW()),
('Raise Your Dongers', 3, NOW()),
('Successful Black Man', 5, NOW()),
('Bear Grylls / Better Drink My Own Piss', 4, NOW()),
('Fight Club: 5/7 Movie', 5, NOW()),
('друг', 3, NOW()),
('Reaction Images', 2, NOW()),
('I Hope Senpai Will Notice Me', 1, NOW()),
('Cereal Guy', 4, NOW()),
('Serbia Strong / Remove Kebab', 3, NOW()),
('High Expectations Asian Father', 4, NOW()),
('PTSD Clarinet Boy', 2, NOW()),
('Homophobic Seal', 4, NOW()),
('Fus Ro Dah', 4, NOW()),
('Zalgo', 3, NOW()),
('Aww Yea Guy', 2, NOW()),
('Copypasta', 5, NOW()),
('Futurama Fry / Not Sure If', 2, NOW()),
('I Sexually Identify as an Attack Helicopter', 1, NOW()),
('Are You Serious Face / Seriously?', 4, NOW()),
('One Does Not Simply Walk into Mordor', 4, NOW()),
('Gangnam Style', 1, NOW()),
('Cool Story, Bro', 2, NOW()),
('True Story', 2, NOW()),
('Sweet Brown / Ain''t Nobody Got Time for That', 4, NOW()),
('Darude - Sandstorm', 4, NOW()),
('Creepypasta', 2, NOW()),
('Fuck Her Right in the Pussy / FHRITP', 2, NOW()),
('Based God', 3, NOW()),
('All the Things', 4, NOW()),
('Kek', 1, NOW()),
('Meatspin', 5, NOW()),
('Waifu', 3, NOW()),
('Belle Delphine', 5, NOW()),
('Facepalm', 5, NOW()),
('If You Know What I Mean', 4, NOW()),
('Bye Felicia', 3, NOW()),
('Emergence (Metamorphosis)', 3, NOW()),
('Hide The Pain Harold', 2, NOW()),
('Rule 63', 3, NOW()),
('I Know That Feel Bro', 2, NOW()),
('Cash Me Ousside / Howbow Dah', 2, NOW()),
('Deal With It', 3, NOW()),
('Momo Challenge', 1, NOW()),
('Socially Awkward Penguin', 2, NOW()),
('Nope! Chuck Testa', 3, NOW()),
('To Be Fair, You Have To Have a Very High IQ to Understand Rick and Morty', 5, NOW()),
('First World Problems', 2, NOW()),
('Fap', 4, NOW()),
('That Really Rustled My Jimmies', 1, NOW()),
('Moon Moon', 4, NOW()),
('The Most Interesting Man in the World', 5, NOW()),
('Dank Memes', 5, NOW()),
('Challenge Accepted', 3, NOW()),
('Xzibit Yo Dawg', 4, NOW()),
('Ayy LMAO', 5, NOW()),
('Grumpy Cat', 1, NOW()),
('Nyan Cat', 2, NOW()),
('''Dat Ass', 5, NOW()),
('Boxxy', 3, NOW()),
('2 Girls 1 Cup', 2, NOW()),
('Mr. Hands', 1, NOW()),
('Joseph Ducreux / Archaic Rap', 1, NOW()),
('Harlem Shake', 1, NOW()),
('Oh Crap / OMG Rage Face', 5, NOW()),
('Shrek Is Love, Shrek Is Life', 3, NOW()),
('Delete System32', 1, NOW()),
('Musically Oblivious 8th Grader', 2, NOW()),
('2/10 Would Not Bang', 5, NOW()),
('Insanity Wolf', 2, NOW()),
('Mocking SpongeBob', 4, NOW()),
('Success Kid / I Hate Sandcastles', 2, NOW()),
('JoJo''s Bizarre Adventure', 3, NOW()),
('The Tragedy of Darth Plagueis The Wise', 2, NOW()),
('What People Think I Do / What I Really Do', 2, NOW()),
('Rebecca Black - Friday', 3, NOW()),
('Tide POD Challenge', 2, NOW()),
('Look At All The Fucks I Give', 2, NOW()),
('U WOT M8', 4, NOW()),
('Tubgirl', 3, NOW()),
('Smile.jpg', 2, NOW()),
('Dafuq', 3, NOW()),
('Yaranaika? (やらないか)', 2, NOW()),
('The Fappening / Celebgate', 3, NOW()),
('That''s Racist!', 4, NOW()),
('Genius', 5, NOW()),
('I See What You Did There', 5, NOW()),
('Roll Safe', 3, NOW()),
('Rape Sloth', 3, NOW()),
('PewDiePie', 4, NOW()),
('Weird Flex But Ok', 3, NOW()),
('My Body Is Ready', 1, NOW()),
('Billy Herrington / Gachimuchi', 2, NOW()),
('Don''t Talk To Me Or My Son Ever Again', 2, NOW()),
('Disaster Girl', 3, NOW()),
('Cheeki Breeki', 1, NOW()),
('That Escalated Quickly', 5, NOW()),
('Son, I Am Disappoint', 5, NOW()),
('Nyannyancosplay / Hit or Miss', 3, NOW()),
('Jet Fuel Can''t Melt Steel Beams', 4, NOW()),
('Your Argument Is Invalid', 5, NOW()),
('B Button Emoji 🅱', 5, NOW()),
('Chubby Bubbles Girl', 3, NOW()),
('Miley Cyrus Sex Tape Facebook Scams', 1, NOW()),
('Homestuck', 2, NOW()),
('This Is So Sad Alexa Play Despacito', 3, NOW()),
('Majora''s Mask Creepypasta (BEN DROWNED)', 1, NOW()),
('Sweet Jesus Face', 2, NOW()),
('Come At Me Bro', 5, NOW()),
('Inglip', 5, NOW()),
('Swag', 2, NOW()),
('I Have No Idea What I''m Doing', 1, NOW()),
('Shut Up And Take My Money!', 2, NOW()),
('Neil deGrasse Tyson Reaction', 2, NOW()),
('"Y U NO" Guy', 4, NOW()),
('Rule 34', 5, NOW()),
('Overly Attached Girlfriend', 2, NOW()),
('Scumbag Steve', 2, NOW()),
('I Took an Arrow in the Knee', 1, NOW()),
('Rules of the Internet', 2, NOW()),
('You Don''t Say?', 1, NOW()),
('The Mandela Effect', 4, NOW()),
('Woman Yelling at a Cat', 2, NOW()),
('Good Guy Greg', 2, NOW()),
('ಠ_ಠ Look of Disapproval', 1, NOW()),
('Pepe the Frog', 5, NOW()),
('Ridiculously Photogenic Guy', 3, NOW()),
('Ancient Aliens', 1, NOW()),
('Has Anyone Really Been Far Even as Decided to Use Even Go Want to do Look More Like?', 5, NOW()),
('Slender Man', 2, NOW()),
('Doge', 1, NOW()),
('( ͡° ͜ʖ ͡°) / Lenny Face', 1, NOW()),
('Navy Seal Copypasta', 2, NOW()),
('Forever Alone', 4, NOW()),
('Zerg Rush', 2, NOW()),
('Trollface', 3, NOW()),
('My Little Pony: Friendship is Magic', 4, NOW()),
('Me Gusta', 5, NOW()),
('Do A Barrel Roll', 5, NOW()),
('Flipping Tables / (╯°□°)╯︵ ┻━┻', 2, NOW()),
('Ermahgerd', 4, NOW()),
('Loss', 2, NOW()),
('Dolan', 4, NOW()),
('Ugandan Knuckles', 4, NOW()),
('Yao Ming Face / Bitch Please', 1, NOW()),
('Duck Face', 3, NOW()),
('Boku no Pico', 2, NOW()),
('Senor Chang''s "Ha, Gay!"', 2, NOW()),
('Rickroll', 5, NOW()),
('Bowsette', 3, NOW()),
('Poker Face', 3, NOW()),
('And Not a Single Fuck Was Given That Day', 3, NOW()),
('Twitch Plays Pokemon', 3, NOW()),
('Desu', 3, NOW()),
('What Are Those?', 3, NOW()),
('TheLegend27', 5, NOW()),
('Karen', 5, NOW()),
('Keep Calm and Carry On', 5, NOW()),
('Katy t3h PeNgU1N oF d00m', 2, NOW()),
('Oh God Why', 2, NOW()),
('Polandball', 4, NOW()),
('Ahegaokin - アヘ顔菌', 4, NOW()),
('Slowpoke', 2, NOW()),
('Stonks', 5, NOW()),
('Instagram Quote Rebuttals / Hipster Edits', 3, NOW()),
('Shock Sites', 1, NOW()),
('Shoop Da Whoop', 4, NOW()),
('I Can Count to Potato', 2, NOW()),
('Spaghetti Stories', 3, NOW()),
('Advice Dog', 5, NOW()),
('420 Blaze It', 5, NOW()),
('James Doakes'' "Surprise Motherfucker"', 1, NOW()),
('Business Cat', 3, NOW()),
('Trolling', 5, NOW()),
('Side Eyeing Chloe', 5, NOW()),
('Tendies Stories', 3, NOW()),
('What Is This I Don''t Even', 2, NOW()),
('I''m Twelve Years Old and What is This?', 2, NOW()),
('This Is Fine', 3, NOW()),
('The Narwhal Bacons at Midnight', 4, NOW()),
('Mother of God', 2, NOW()),
('''Murica', 1, NOW()),
('I Came', 4, NOW()),
('ME!ME!ME!', 5, NOW()),
('Draw Me Like One of Your French Girls', 1, NOW()),
('Virgin vs. Chad', 2, NOW()),
('Ahegao', 5, NOW()),
('Are You A Wizard', 5, NOW()),
('Feels', 1, NOW()),
('Pokémon', 5, NOW()),
('Strutting Leo', 4, NOW()),
('Troll Science / Troll Physics', 5, NOW()),
('Sanic Hegehog', 4, NOW()),
('Kekistan', 2, NOW()),
('Mom''s Spaghetti', 2, NOW()),
('I Lied', 2, NOW()),
('Freddie Mercury Rage Pose', 2, NOW()),
('Conspiracy Keanu', 1, NOW()),
('Five Nights at Freddy''s', 1, NOW()),
('Indestructible Nokia 3310', 4, NOW()),
('Distracted Boyfriend', 4, NOW()),
('Piper Perri Surrounded', 3, NOW()),
('Shadman / Shadbase', 1, NOW()),
('LOL Guy', 4, NOW()),
('It''s A Trap!', 1, NOW()),
('Staredad', 3, NOW()),
('Feels Good Man', 3, NOW()),
('ZONE-sama', 1, NOW()),
('Me and the Boys', 4, NOW()),
('Trap', 1, NOW()),
('Confused Black Girl', 5, NOW()),
('WE WUZ KINGS', 4, NOW()),
('Ryan Gosling', 4, NOW()),
('Notices Bulge / OwO What''s This?', 5, NOW()),
('???? PROFIT!!!!', 4, NOW()),
('30-Year-Old Boomer', 4, NOW()),
('Galaxy Brain', 4, NOW()),
('Idiot Nerd Girl', 1, NOW()),
('Pool''s Closed', 4, NOW()),
('Kony 2012', 2, NOW()),
('Video 1444', 1, NOW()),
('Pepega', 3, NOW()),
('Huahuehuahue', 1, NOW()),
('O RLY?', 2, NOW()),
('Feel Like a Sir', 2, NOW()),
('Absolute Unit', 3, NOW()),
('An Hero', 5, NOW()),
('SOON', 1, NOW()),
('Stahp', 5, NOW()),
('Weeaboo', 3, NOW()),
('The Cake Is a Lie', 2, NOW()),
('Lord Marquaad E', 5, NOW()),
('"Miracles" / Fucking Magnets, How Do They Work?', 2, NOW()),
('THEN WHO WAS PHONE?', 2, NOW()),
('Work-Safe Porn', 1, NOW()),
('Logan Paul''s Suicide Forest Video', 2, NOW()),
('Yes, This is Dog', 1, NOW()),
('Chris-Chan / CWC / Christian Weston Chandler', 4, NOW()),
('REEEEEEE', 5, NOW()),
('Honey Badger', 3, NOW()),
('Tree Fiddy', 2, NOW()),
('Greentext Stories', 3, NOW()),
('Minecraft Creeper', 1, NOW()),
('Surprised Pikachu', 1, NOW()),
('Big Smoke''s Order', 3, NOW()),
('College Freshman', 4, NOW()),
('All Your Base Are Belong to Us', 1, NOW()),
('Like A Boss', 3, NOW()),
('Jeff the Killer', 1, NOW()),
('I Herd U Liek Mudkips', 1, NOW()),
('Thicc', 4, NOW()),
('Hover Hand', 3, NOW()),
('The Bongcheon-Dong Ghost', 2, NOW()),
('Lavender Town Syndrome Creepypasta', 2, NOW()),
('Foul Bachelor Frog', 1, NOW()),
('John is Kill', 1, NOW()),
('College Liberal', 2, NOW()),
('Impossibru', 4, NOW()),
('I Accidentally', 2, NOW()),
('U MAD?', 4, NOW()),
('It''s Over 9000!', 5, NOW()),
('Ligma', 5, NOW()),
('Newfags Can''t Triforce', 3, NOW()),
('He Protec but He Also Attac', 1, NOW()),
('Feels Bad Man / Sad Frog', 2, NOW()),
('Are You Fucking Kidding Me?', 5, NOW()),
('Leeroy Jenkins', 2, NOW()),
('I Don''t Want to Live on This Planet Anymore', 2, NOW()),
('Courage Wolf', 1, NOW()),
('Cinnamon Challenge', 5, NOW()),
('But That''s None of My Business', 1, NOW()),
('Goatse', 3, NOW()),
('4chan', 1, NOW()),
('241543903 / Heads In Freezers', 1, NOW()),
('Half-Life 3 Confirmed', 4, NOW()),
('Antoine Dodson / Bed Intruder', 5, NOW()),
('9GAG', 4, NOW()),
('Bobs and Vegana', 1, NOW()),
('The Circle Game', 2, NOW()),
('Is This a Pigeon?', 3, NOW()),
('Good Luck, I''m Behind 7 Proxies', 3, NOW()),
('FAIL / Epic Fail', 2, NOW()),
('Hey Girls, Did You Know...', 5, NOW()),
('Virgin-Killing Sweater', 4, NOW()),
('NPC Wojak', 3, NOW()),
('Deez Nuts', 4, NOW()),
('Handsome Face', 1, NOW()),
('Reaction Guys / Gaijin 4Koma', 2, NOW()),
('In Soviet Russia...', 5, NOW()),
('Scumbag Stacy', 1, NOW()),
('Moth Lamp', 1, NOW()),
('OK Symbol 👌', 1, NOW()),
('Cuck', 1, NOW()),
('Lazy College Senior', 1, NOW()),
('T-Pose', 3, NOW()),
('Filthy Frank', 3, NOW()),
('My Brain is Full of Fuck', 1, NOW()),
('Third World Success', 1, NOW()),
('Rain Drop Drop Top', 3, NOW()),
('Scarlett Johansson Leaked Nudes', 3, NOW()),
('Hugh Mungus', 3, NOW()),
('Hentai Quotes', 4, NOW()),
('Trigger', 2, NOW()),
('Technoviking', 5, NOW()),
('YOLO', 5, NOW()),
('They Don''t Think It Be Like It Is But It Do', 5, NOW()),
('I Came Out to Have a Good Time and I''m Honestly Feeling So Attacked Right Now', 1, NOW()),
('Condescending Wonka / Creepy Wonka', 1, NOW()),
('Trash Doves', 2, NOW()),
('Wojak / Feels Guy', 1, NOW()),
('Electric Boogaloo', 3, NOW()),
('*Tips Fedora*', 3, NOW()),
('I''m Already Tracer', 4, NOW()),
('Epic Sax Guy', 2, NOW()),
('Yes - Roundabout / To Be Continued', 2, NOW()),
('How Is Babby Formed?', 4, NOW()),
('POMF =3', 5, NOW()),
('Some Men Just Want to Watch the World Burn', 4, NOW()),
('Minecraft', 1, NOW()),
('Honey Boo Boo Child', 3, NOW()),
('I Dunno LOL ¯\(°_o)/¯', 2, NOW()),
('Spider-Man Pointing at Spider-Man', 4, NOW()),
('Zyzz', 4, NOW()),
('Wood Sitting on a Bed', 2, NOW()),
('X, X Everywhere', 3, NOW()),
('Clown Pepe / Honk Honk / Clown World', 2, NOW()),
('Computer Reaction Faces', 2, NOW()),
('Git Gud', 1, NOW()),
('He-Man Sings / HEYYEYAAEYAAAEYAEYAA', 5, NOW()),
('Ultra Instinct Shaggy', 2, NOW()),
('Za Warudo / WRYYYYY', 5, NOW()),
('Ruined Childhood', 1, NOW()),
('fsjal', 5, NOW()),
('Giovanna Plowman / Tampon Girl', 3, NOW()),
('Steven Crowder''s "Change My Mind" Campus Sign', 4, NOW()),
('Tumblr', 5, NOW()),
('Jesus is a Jerk', 5, NOW()),
('Wombo Combo', 2, NOW()),
('Yee', 5, NOW()),
('This Kills The Crab', 4, NOW()),
('BME Pain Olympics', 1, NOW()),
('Crying Cat', 2, NOW()),
('Trypophobia', 2, NOW()),
('Brent Rambo', 3, NOW()),
('Tenso', 5, NOW()),
('Duwang', 3, NOW()),
('Johny Johny Yes Papa', 1, NOW()),
('Thot', 3, NOW()),
('Butthurt Dweller / Gordo Granudo', 3, NOW()),
('Didn''t Read LOL', 4, NOW()),
('Russian Sleep Experiment', 3, NOW()),
('Trigglypuff', 4, NOW()),
('Puking Rainbows', 3, NOW()),
('Coldsteel The Hedgeheg', 3, NOW()),
('Moon Man', 3, NOW()),
('Wingboner & Clopping', 2, NOW()),
('Sharkeisha Fight Video', 2, NOW()),
('In This Moment I Am Euphoric', 1, NOW()),
('This Isn''t Even My Final Form', 4, NOW()),
('Dashcon', 3, NOW()),
('Vivian James', 4, NOW()),
('Squidward''s Suicide', 2, NOW()),
('Hail Hydra', 5, NOW()),
('Mormon Porn / Bubble Porn', 4, NOW()),
('Vengeance Dad', 4, NOW()),
('Everybody Walk the Dinosaur', 1, NOW()),
('Puts On Sunglasses / YEEEEAAAHHH', 5, NOW()),
('Casually Pepper Spray Everything Cop', 3, NOW()),
('The Dab', 1, NOW()),
('Carl!', 3, NOW()),
('You Must Construct Additional Pylons!', 2, NOW()),
('Expand Dong', 4, NOW()),
('1 Guy 1 Jar', 2, NOW()),
('PROTIP', 1, NOW()),
('Longcat', 5, NOW()),
('Thanks, Obama!', 2, NOW()),
('Shooting Stars', 4, NOW()),
('Ash Pedreiro / Dat Ash', 2, NOW()),
('Awesome Face / Epic Smiley', 1, NOW()),
('My Immortal / The Worst Fanfiction Ever', 2, NOW()),
('Almost Politically Correct Redneck', 3, NOW()),
('Overly Manly Man', 2, NOW()),
('Natalia Poklonskaya', 3, NOW()),
('Coomer', 5, NOW()),
('CSI 4 Pane Comics', 2, NOW()),
('Skull Trumpet / Doot Doot', 5, NOW()),
('SpongeGar / Primitive Sponge / Caveman Spongebob', 3, NOW()),
('Confused Nick Young', 1, NOW()),
('Gamer Joker / Gamers Rise Up / We Live in a Society', 1, NOW()),
('Prepare Your Anus', 3, NOW()),
('Creepy Chan (Allison Harvard)', 1, NOW()),
('Nothing To Do Here / Jet Pack Guy', 3, NOW()),
('Pretty Cool Guy', 2, NOW()),
('Zoë Quinn', 3, NOW()),
('Mr. Bones'' Wild Ride', 1, NOW()),
('Hitler''s "Downfall" Parodies', 5, NOW()),
('Divide By Zero', 1, NOW()),
('48÷2(9+3) = ?', 3, NOW()),
('Baneposting', 2, NOW()),
('The Grifter', 5, NOW()),
('Unexpected John Cena / And His Name is John Cena', 2, NOW()),
('Check Your Privilege', 2, NOW()),
('It Is Wednesday My Dudes', 3, NOW()),
('We Live In a Society Social Media Reactions', 5, NOW()),
('Friendship Ended With Mudasir', 3, NOW()),
('Neckbeard', 5, NOW()),
('tl;dr', 4, NOW()),
('Trololo Guy', 2, NOW()),
('Hentai Woody / 変態ウッディー', 2, NOW()),
('Cupcakes', 3, NOW()),
('OP is a Faggot', 3, NOW()),
('Cats', 3, NOW()),
('Super Smash Brothers', 4, NOW()),
('Earth-chan', 1, NOW()),
('Derpy Hooves', 3, NOW()),
('Unhelpful High School Teacher', 5, NOW()),
('Nicolas Cage', 1, NOW()),
('Dubs Guy / “Check ’Em”', 5, NOW()),
('Burger King Foot Lettuce', 5, NOW()),
('Brian Peppers', 2, NOW()),
('Arthur''s Fist', 1, NOW()),
('Horse Head Mask', 2, NOW()),
('Deus Vult', 3, NOW()),
('Smudge the Cat', 2, NOW()),
('You Know Nothing, Jon Snow', 3, NOW()),
('The Rake', 3, NOW()),
('Herobrine', 3, NOW()),
('Salt Bae', 3, NOW()),
('Horrifying House-guest / Shadowlurker', 1, NOW()),
('Caught Me Sleeping / Bae Caught Me Slippin', 4, NOW()),
('Math Lady / Confused Lady', 4, NOW()),
('KEKW', 4, NOW()),
('Shitposting', 2, NOW()),
('Warlizard Gaming Forum', 4, NOW()),
('It Was Me, Dio!', 3, NOW()),
('Blue Waffle', 5, NOW()),
('Memes', 1, NOW()),
('Super S Stussy', 5, NOW()),
('Reddit', 4, NOW()),
('Guile''s Theme Goes with Everything', 5, NOW()),
('Alternate Universe', 4, NOW()),
('Yoshi Committed Tax Fraud', 1, NOW()),
('Somebody Toucha My Spaghet', 1, NOW()),
('Bone Hurting Juice', 5, NOW()),
('Why Not Both? / Why Don''t We Have Both?', 4, NOW()),
('Nope.avi', 1, NOW()),
('Steven Universe', 3, NOW()),
('Cave Johnson / Combustible Lemons', 5, NOW()),
('Kanye Interrupts / Imma Let You Finish', 5, NOW()),
('*Record Scratch* *Freeze Frame*', 4, NOW()),
('Old Gregg', 3, NOW()),
('I, For One, Welcome Our New Insect Overlords', 2, NOW()),
('Goodnight Sweet Prince', 2, NOW()),
('Padoru', 4, NOW()),
('"Anime Was a Mistake"', 2, NOW()),
('>Shadman', 1, NOW()),
('Finger Boxes', 4, NOW()),
('Feeling Cute, Might Delete Later', 2, NOW()),
('Peachette / Super Crown', 4, NOW()),
('Imminent Ned / Brace Yourselves, Winter is Coming', 5, NOW()),
('Trollestia / Molestia / Tyrant Celestia', 5, NOW()),
('Seems Legit / Sounds Legit', 3, NOW()),
('Potato Jesus', 3, NOW()),
('*Teleports Behind You* Nothing Personal, Kid', 3, NOW()),
('McKayla is Not Impressed', 5, NOW()),
('Now Kiss!', 4, NOW()),
('Donde Esta La Biblioteca / Spanish Rap', 2, NOW()),
('Candle Cove', 2, NOW()),
('The Glorious PC Gaming Master Race', 1, NOW()),
('The Dress / What Color Is This Dress?', 2, NOW()),
('Waffles? Don''t You Mean Carrots?', 4, NOW()),
('Karate Kyle', 4, NOW()),
('Spoderman / Spodermen', 5, NOW()),
('Steamed Hams', 2, NOW()),
('Too Much Water', 1, NOW()),
('Slaps Roof of Car', 3, NOW()),
('Bitches Love Smiley Faces', 4, NOW()),
('Phteven / Tuna the Dog', 1, NOW()),
('Sudden Clarity Clarence', 5, NOW()),
('The Backrooms', 5, NOW()),
('Mereana Mordegard Glesgorv', 1, NOW()),
('Dear Sister Parodies / "Mmm Whatcha'' Say"', 5, NOW()),
('Tourette''s Guy', 1, NOW()),
('Begone, Thot', 1, NOW()),
('A Cat Is Fine Too', 4, NOW()),
('There Are No Girls on the Internet', 2, NOW()),
('Go Home, You Are Drunk', 1, NOW()),
('Pawn Stars', 1, NOW()),
('Spoopy', 1, NOW()),
('Gotta Go Fast', 1, NOW()),
('Kill Yourself', 1, NOW()),
('Banana For Scale', 4, NOW()),
('My Parents Are Dead / Batman Slapping Robin', 1, NOW()),
('uwu', 1, NOW()),
('Gary Oak', 1, NOW()),
('The Main Difference Between Europe and USA', 3, NOW()),
('9 + 10 = 21', 4, NOW()),
('Shit Was So Cash', 4, NOW()),
('Name Puns', 4, NOW()),
('Wonderwall', 3, NOW()),
('Pokeparents / Pokedads', 4, NOW()),
('THE GAME', 3, NOW()),
('Chad Thundercock', 2, NOW()),
('Eyebrows on Fleek', 1, NOW()),
('Weegee', 2, NOW()),
('Montage Parodies', 1, NOW()),
('Actual Advice Mallard', 1, NOW()),
('Inception', 2, NOW()),
('You''re Doing It Wrong', 3, NOW()),
('This Looks Shopped', 2, NOW()),
('Advice Animals', 3, NOW()),
('He Will Not Divide Us', 3, NOW()),
('Close Enough', 1, NOW()),
('"This Is the Ideal Male Body"', 4, NOW()),
('Battletoads Pre-order', 5, NOW()),
('Boardroom Suggestion', 2, NOW()),
('Cocaine Bear', 3, NOW()),
('Carl the Cuck and AIDS Skrillex', 5, NOW()),
('Oh, You', 4, NOW()),
('Epic Beard Man', 2, NOW()),
('Everything Went Better Than Expected', 2, NOW()),
('Ah Shit, Here We Go Again', 4, NOW()),
('Limes Guy / Why Can''t I Hold All These Limes?', 1, NOW()),
('"Mitochondria is the Powerhouse of the Cell"', 2, NOW()),
('Normie', 3, NOW()),
('Alt + F4', 5, NOW()),
('Download More RAM', 3, NOW()),
('Confused Travolta', 2, NOW()),
('Troll Quotes', 4, NOW()),
('Nigel Thornberry Remixes', 1, NOW()),
('Hipster Mermaid / Hipster Ariel', 4, NOW()),
('My Name Is Jeff', 2, NOW()),
('Daily Dose / Piccolo Dick', 4, NOW()),
('X Grab My Y', 3, NOW()),
('Cory in the House', 5, NOW()),
('Doomer', 3, NOW()),
('Zangief Kid', 4, NOW()),
('Descriptive Noise', 1, NOW()),
('Jebaited', 4, NOW()),
('How Can She Slap?', 5, NOW()),
('Cracking Open a Cold One With the Boys', 4, NOW()),
('Release The Kraken!', 2, NOW()),
('What Has Been Seen Cannot Be Unseen', 1, NOW()),
('Nobody:', 4, NOW()),
('Yeah Science, Bitch', 4, NOW()),
('Diabeetus', 4, NOW()),
('Cake Farts', 3, NOW()),
('Ted Cruz Zodiac Killer', 2, NOW()),
('Anti-Joke Chicken', 2, NOW()),
('spritecranberry.net', 5, NOW()),
('Pacha Edits / When The Sun Hits That Ridge Just Right', 1, NOW()),
('Sonic.exe', 1, NOW()),
('That''s What She Said', 4, NOW()),
('Bee Movie Script / According To All Known Laws Of Aviation', 1, NOW()),
('JonTron', 2, NOW()),
('Girls Laughing', 3, NOW()),
('YouTube Poop / YTP', 5, NOW()),
('It''s Something', 3, NOW()),
('U Jelly?', 2, NOW()),
('Trolldad', 4, NOW()),
('Gabe Newell', 5, NOW()),
('Wololo', 1, NOW()),
('Stefán Karl Stefánsson / Robbie Rotten', 3, NOW()),
('Dragon Dildos', 5, NOW()),
('PINGAS', 4, NOW()),
('Oh Stop It, You', 2, NOW()),
('This Ain''t It, Chief', 4, NOW()),
('Who''s Getting the Best Head?', 4, NOW()),
('Feels Good', 1, NOW()),
('Sam Hyde', 3, NOW()),
('What in Tarnation', 1, NOW()),
('This Nigga Eating Beans', 1, NOW()),
('We Are Number One', 2, NOW()),
('Happy Merchant', 1, NOW()),
('Netflix and Chill', 1, NOW()),
('Right In Front Of My Salad', 4, NOW()),
('You Keep Using That Word, I Do Not Think It Means What You Think It Means', 1, NOW()),
('Om Nom Nom Nom', 4, NOW()),
('The Rock Driving', 1, NOW()),
('RIP in Peace', 3, NOW()),
('SCP Foundation', 1, NOW()),
('Hipster Kitty', 4, NOW()),
('What''s All This Racket? / Mirada Fija', 1, NOW()),
('BORN TO DIE / WORLD IS A FUCK / Kill Em All 1989 / I am trash man / 410,757,864,530 DEAD COPS', 3, NOW()),
('Bepis', 2, NOW()),
('Why Do Slavs Squat? / Slav Squat', 3, NOW()),
('Ken Bone', 4, NOW()),
('Team Fortress 2', 5, NOW()),
('Butthurt', 5, NOW()),
('It''s Free Real Estate', 5, NOW()),
('Tits or GTFO', 2, NOW()),
('Cult of Kek', 3, NOW()),
('Gabe the Dog / Bork Remixes', 2, NOW()),
('Forced to Drink Milk', 4, NOW()),
('Meme Man', 3, NOW()),
('Interior Semiotics', 2, NOW()),
('YouTube', 5, NOW()),
('Rekt', 1, NOW()),
('I Put on My Robe and Wizard Hat', 1, NOW()),
('Thai Political Crisis Breakup', 3, NOW()),
('Furries', 5, NOW()),
('The Wadsworth Constant', 3, NOW()),
('Bogdanoff Twins', 1, NOW()),
('Do Want / Do Not Want', 4, NOW()),
('Brendan Fraser''s Alimony / Just Fuck My Shit Up', 5, NOW()),
('Actual Cannibal Shia LaBeouf', 5, NOW()),
('Ah, I See You''re a Man of Culture As Well', 5, NOW()),
('RWBY', 1, NOW()),
('It''s Dangerous to Go Alone! Take This', 3, NOW()),
('Double Rainbow', 2, NOW()),
('You Just Activated My Trap Card!', 3, NOW()),
('Oh Fuck Yeah Spread It', 5, NOW()),
('Adalia Rose', 3, NOW()),
('Dark Souls', 4, NOW()),
('Guys Literally Only Want One Thing And It''s Fucking Disgusting', 4, NOW()),
('Zuckerberg Note Pass', 4, NOW()),
('Asians in the Library', 4, NOW()),
('Conceited Reaction', 4, NOW()),
('Undertale', 2, NOW()),
('Ben Swolo', 3, NOW()),
('This Is Why We Can''t Have Nice Things', 3, NOW()),
('Bee Movie', 2, NOW()),
('Ted the Caver', 2, NOW()),
('Give Her The Dick', 5, NOW()),
('Why Are We Still Here? Just To Suffer?', 3, NOW()),
('Boruto''s Dad', 2, NOW()),
('Suh Dude', 5, NOW()),
('The Casting Couch', 4, NOW()),
('Soy Boy', 1, NOW()),
('Deep Fried Memes', 4, NOW()),
('They Told Me I Could Be Anything I Wanted', 3, NOW()),
('Wew Lad', 1, NOW()),
('Put Your Finger Here', 2, NOW()),
('Gaben', 3, NOW()),
('Internet Husband', 5, NOW()),
('Did He Died?', 4, NOW()),
('Rare Pepe', 3, NOW()),
('The Song of My People!', 4, NOW()),
('Ladies and Gentlemen, We Got Him', 5, NOW()),
('Justin Bieber', 2, NOW()),
('SO HARDCORE', 5, NOW()),
('Shit Tyrone, Get It Together', 1, NOW()),
('Chonk / Oh Lawd He Comin''', 5, NOW()),
('Le Monke / Uh Oh Stinky', 2, NOW()),
('Costanza.jpg / George Costanza Reaction Face', 1, NOW()),
('"I Saw Flying Lotus in a Grocery Store..." Copypasta', 2, NOW()),
('Does Bruno Mars Is Gay?', 4, NOW()),
('Daquan', 5, NOW()),
('Pokémon Creepy Black', 5, NOW()),
('Ebola-chan', 2, NOW()),
('Katawa Shoujo', 4, NOW()),
('Candlejack', 1, NOW()),
('They''re Good Dogs Brent', 5, NOW()),
('Kreygasm', 5, NOW()),
('Three Wolf Moon', 3, NOW()),
('Dating Site Murderer', 2, NOW()),
('Supa Hot Fire', 1, NOW()),
('Full Retard', 4, NOW()),
('"It''s Gonna Be May"', 1, NOW()),
('Futurama Zoidberg / Why Not Zoidberg?', 1, NOW()),
('Yeet', 3, NOW()),
('Skeleton War', 5, NOW()),
('Gonna Cry? Gonna Piss Your Pants Maybe?', 2, NOW()),
('I''m Here To Kick Ass And Chew Bubblegum', 4, NOW()),
('Edgy', 4, NOW()),
('2Spooky', 1, NOW()),
('Dindu Nuffin', 3, NOW()),
('No Fap September / No Fap Months', 3, NOW()),
('Aesthetic', 2, NOW()),
('Make Me a Sandwich', 5, NOW()),
('Chemistry Cat', 4, NOW()),
('Ainsley Harriott', 3, NOW()),
('Soy Boy Face', 5, NOW()),
('I Like Turtles', 3, NOW()),
('Dog Fort', 1, NOW()),
('SpongeBob SquarePants', 4, NOW()),
('JoJo''s Pose', 3, NOW()),
('Crying Michael Jordan', 2, NOW()),
('Doom Paul / It''s Happening', 3, NOW()),
('PogChamp', 2, NOW()),
('hunter2', 4, NOW()),
('Oh Fuck, Put It Back In', 3, NOW()),
('Whomst', 1, NOW()),
('This Man (Ever Dream This Man)', 1, NOW()),
('Agar.io', 1, NOW()),
('The Undertaker Threw Mankind Off Hell in a Cell', 2, NOW()),
('Suicide Mouse', 5, NOW()),
('People Die If They Are Killed', 3, NOW()),
('I Should Buy a Boat Cat', 3, NOW()),
('Amber Lamps', 2, NOW()),
('My Faggot Dog', 4, NOW()),
('Keemstar', 4, NOW()),
('Fukouna Shoujo 03', 1, NOW()),
('Damn Daniel', 1, NOW()),
('Overwatch', 5, NOW()),
('Dub the Dew', 3, NOW()),
('Kill It With Fire', 1, NOW()),
('Instructions Unclear', 5, NOW()),
('Black Guy on the Phone', 4, NOW()),
('Adventure Time', 4, NOW()),
('Sheltered College Freshman', 1, NOW()),
('Didney Worl', 4, NOW()),
('Bruh', 3, NOW()),
('It''s So Fucking Big', 4, NOW()),
('8chan / 8kun', 2, NOW()),
('iPhone Whale', 1, NOW()),
('This Is Sparta!', 5, NOW()),
('My Name Is Yoshikage Kira', 2, NOW()),
('Is This a JoJo Reference?', 3, NOW()),
('Aww Yiss', 1, NOW()),
('Succ', 2, NOW()),
('Persian Cat Room Guardian', 1, NOW()),
('Ight Imma Head Out', 3, NOW()),
('GachiGASM / GachiBASS', 3, NOW()),
('Emoticons', 5, NOW()),
('Cats Wanting Fruit Loops', 4, NOW()),
('Eggplant Emoji 🍆', 5, NOW()),
('Dummy Thicc', 5, NOW()),
('You''ve Been Gnomed', 3, NOW()),
('Drake The Type Of...', 1, NOW()),
('Ramirez, Do Everything!', 1, NOW()),
('ROFLcopter', 1, NOW()),
('Florida Man', 4, NOW()),
('Fap Guy', 4, NOW()),
('LOLWUT', 5, NOW()),
('Understandable, Have a Nice Day', 3, NOW()),
('Crab Rave', 5, NOW()),
('What You Think You Look Like vs. What You Actually Look Like', 5, NOW()),
('OK Boomer', 5, NOW()),
('Pokéfusion / Pokémon Fusion', 3, NOW()),
('INB4', 4, NOW()),
('Emo Dad', 1, NOW()),
('FrankerZ', 2, NOW()),
('Godwin''s Law', 3, NOW()),
('Hello Darkness, My Old Friend', 2, NOW()),
('[Intensifies]', 1, NOW()),
('Snowclone', 1, NOW()),
('3 Guys 1 Hammer', 1, NOW()),
('MULTI-TRACK DRIFTING', 1, NOW()),
('Impact', 3, NOW()),
('Brother, May I Have Some Oats', 2, NOW()),
('Menacing / ゴゴゴゴ', 2, NOW()),
('Demotivational Posters', 4, NOW()),
('I Have The Weirdest Boner', 5, NOW()),
('You Had One Job', 4, NOW()),
('Doki Doki Literature Club', 2, NOW()),
('Oh? You''re Approaching Me? / JoJo Approach', 3, NOW()),
('Harp Darp / Herp Derp', 3, NOW()),
('Shut Down Everything', 5, NOW()),
('Designated Shitting Streets / Poo in the Loo', 3, NOW()),
('Woll Smoth', 3, NOW()),
('First Day on the Internet Kid', 4, NOW()),
('Wheaton''s Law', 5, NOW()),
('Fedora Shaming', 1, NOW()),
('I Crave That Mineral', 3, NOW()),
('I''m Rick Harrison and This Is My Pawn Shop', 3, NOW()),
('Obedece a la morsa / Obey the walrus', 3, NOW()),
('Confession Bear', 3, NOW()),
('Roof Koreans', 1, NOW()),
('Brother Sharp (犀利哥)', 3, NOW()),
('Grammar Nazi', 2, NOW()),
('Delet This', 4, NOW()),
('I Must Go', 2, NOW()),
('Pokepuns', 4, NOW()),
('Vaporwave', 4, NOW()),
('Tony Kornheiser''s "Why"', 4, NOW()),
('My Face When (MFW) / That Face When (TFW)', 1, NOW()),
('Cringeworthy', 4, NOW()),
('Pepperidge Farm Remembers', 2, NOW()),
('Solaire of Astora', 2, NOW()),
('Kyubey', 5, NOW()),
('Nigga Stole My Bike', 1, NOW()),
('HNNNNNNG', 3, NOW()),
('Coffin Dance / Dancing Pallbearers', 4, NOW()),
('It''s Goofy Time!', 2, NOW()),
('Let''s Get This Bread', 3, NOW()),
('Derpina', 1, NOW()),
('fortniteburger.net', 1, NOW()),
('Crying Laughing Emoji 😂', 4, NOW()),
('Loli-chan', 2, NOW()),
('Hipster Barista', 1, NOW()),
('Friend Zone', 2, NOW()),
('Marauder Shields', 3, NOW()),
('Falcon Punch', 2, NOW()),
('"Tunak Tunak Tun" Dance', 2, NOW()),
('The Illuminati', 1, NOW()),
('You Gonna Get Raped', 5, NOW()),
('Destroy Dick December', 4, NOW()),
('I Will Survive', 1, NOW()),
('Increasingly Verbose Memes', 4, NOW()),
('Gnome Child', 1, NOW()),
('Thanos Car', 2, NOW()),
('I Didn''t Choose The Thug Life, The Thug Life Chose Me', 2, NOW()),
('Exploitables', 3, NOW()),
('Autonomous Sensory Meridian Response (ASMR)', 5, NOW()),
('Luke, I am Your Father', 1, NOW()),
('Gold Membership Trolling', 1, NOW()),
('Matrix Morpheus', 2, NOW()),
('They See Me Rollin''', 3, NOW()),
('Anime / Manga', 5, NOW()),
('Cthulhu', 4, NOW()),
('YTMND', 1, NOW()),
('Face Swap', 1, NOW()),
('I''m The Goddamn Batman', 3, NOW()),
('The Barber', 3, NOW()),
('Hackerman', 4, NOW()),
('Pepe Silvia', 3, NOW()),
('Cole Sprouse''s Tumblr Experiment', 3, NOW()),
('Gremlin D.Va', 4, NOW()),
('Mariah Mallad (Momokun)', 1, NOW()),
('Best Cry Ever', 3, NOW()),
('Shrek', 3, NOW()),
('Goth GF', 4, NOW()),
('Rose / randytaylor69', 4, NOW()),
('League of Legends', 3, NOW()),
('Women Logic', 5, NOW()),
('Queensland Rail Etiquette Posters', 4, NOW()),
('/r9k/', 4, NOW()),
('Do It Faggot', 5, NOW()),
('When I''m Bored', 1, NOW()),
('Dimitri Finds Out', 3, NOW()),
('Disintegration Effect / I Don''t Feel So Good', 2, NOW()),
('Give Pikachu a Face', 4, NOW()),
('Sonic the Hedgehog', 1, NOW()),
('Mesothelioma Ad Copypasta', 4, NOW()),
('2014 Tumblr-4chan Raids', 5, NOW()),
('Amy''s Baking Company PR Scandal', 1, NOW()),
('Donald Trump', 5, NOW()),
('NO U', 1, NOW()),
('Sonichu', 5, NOW()),
('QUALITY', 2, NOW()),
('Lyra Plushie', 3, NOW()),
('*breath in* Boi', 4, NOW()),
('Doggo', 2, NOW()),
('Everything Changed When The Fire Nation Attacked', 1, NOW()),
('Big Man Tyrone', 1, NOW()),
('Autistic Screeching', 4, NOW()),
('Cleganebowl', 4, NOW()),
('When You See it...', 1, NOW()),
('Unflattering Beyonce', 3, NOW()),
('Apply Cold Water To That Burn', 4, NOW()),
('COMBO BREAKER', 4, NOW()),
('Put Shoe on Head', 5, NOW()),
('It Will Be Fun, They Said', 3, NOW()),
('Trumpet Boy', 3, NOW()),
('Blinking White Guy', 2, NOW()),
('TR-8R the Stormtrooper', 2, NOW()),
('QWOP', 3, NOW()),
('Touhou Project (東方Project)', 3, NOW()),
('Anti-Zombie Fortress', 4, NOW()),
('This is Bob', 2, NOW()),
('Planking', 3, NOW()),
('Poot Lovato', 4, NOW()),
('Giga Pudding', 4, NOW()),
('I''m Ethan Bradberry', 4, NOW()),
('Pun Dog', 4, NOW()),
('We''re a Culture, Not a Costume', 4, NOW()),
('Rape Face', 1, NOW()),
('Racists On 4chan', 4, NOW()),
('Ceiling Cat', 5, NOW()),
('"How Do You Do, Fellow Kids?"', 4, NOW()),
('Boonk Gang', 5, NOW()),
('Henlo', 4, NOW()),
('Commit Sudoku', 5, NOW()),
('iDubbbz', 3, NOW()),
('Chocolate Bird', 4, NOW()),
('The Room', 1, NOW()),
('Surprised Patrick', 1, NOW()),
('If It Fits I Sits', 2, NOW()),
('Big Red', 5, NOW()),
('Gentlemen', 4, NOW()),
('Send Nudes', 4, NOW()),
('Pootis', 5, NOW()),
('Dipper Goes To Taco Bell', 2, NOW()),
('Splatoon', 4, NOW()),
('Nuclear Gandhi', 1, NOW()),