pull/166/head
SneedBot 2023-07-03 23:44:22 +00:00
parent 8c526576ad
commit 469d4a8e62
28 changed files with 87 additions and 59 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 KiB

View File

@ -812,6 +812,16 @@ CREATE SEQUENCE public.oauth_apps_id_seq
ALTER SEQUENCE public.oauth_apps_id_seq OWNED BY public.oauth_apps.id;
--
-- Name: orgies; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.orgies (
youtube_id character varying(12) NOT NULL,
title character varying(1000) NOT NULL
);
--
-- Name: pgbench_accounts; Type: TABLE; Schema: public; Owner: -
--
@ -1125,13 +1135,6 @@ CREATE TABLE public.votes (
coins smallint DEFAULT 1 NOT NULL
);
--
-- Name: orgies, Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.orgies (
youtube_id character varying(12) NOT NULL,
title character varying(1000) NOT NULL
);
--
-- Name: award_relationships id; Type: DEFAULT; Schema: public; Owner: -
@ -1330,6 +1333,14 @@ ALTER TABLE ONLY public.banneddomains
ADD CONSTRAINT domain_pkey PRIMARY KEY (domain);
--
-- Name: emojis emoji_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.emojis
ADD CONSTRAINT emoji_pkey PRIMARY KEY (name);
--
-- Name: exiles exiles_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
@ -1394,14 +1405,6 @@ ALTER TABLE ONLY public.lotteries
ADD CONSTRAINT lotteries_pkey PRIMARY KEY (id);
--
-- Name: emojis marseys_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.emojis
ADD CONSTRAINT marseys_pkey PRIMARY KEY (name);
--
-- Name: media media_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
@ -1812,6 +1815,34 @@ CREATE INDEX cvote_user_index ON public.commentvotes USING btree (user_id);
CREATE INDEX emoji_kind ON public.emojis USING btree (kind);
--
-- Name: emojis_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX emojis_idx ON public.emojis USING btree (name);
--
-- Name: emojis_idx2; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX emojis_idx2 ON public.emojis USING btree (author_id);
--
-- Name: emojis_idx3; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX emojis_idx3 ON public.emojis USING btree (count DESC);
--
-- Name: emojis_idx4; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX emojis_idx4 ON public.emojis USING btree (submitter_id);
--
-- Name: fki_comment_approver_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -1987,34 +2018,6 @@ CREATE UNIQUE INDEX lowercase_prelock_username ON public.users USING btree (lowe
CREATE UNIQUE INDEX lowercase_username ON public.users USING btree (lower((username)::text));
--
-- Name: marseys_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX marseys_idx ON public.emojis USING btree (name);
--
-- Name: marseys_idx2; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX marseys_idx2 ON public.emojis USING btree (author_id);
--
-- Name: marseys_idx3; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX marseys_idx3 ON public.emojis USING btree (count DESC);
--
-- Name: marseys_idx4; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX marseys_idx4 ON public.emojis USING btree (submitter_id);
--
-- Name: modaction_action_idx; Type: INDEX; Schema: public; Owner: -
--
@ -2557,6 +2560,22 @@ ALTER TABLE ONLY public.commentvotes
ADD CONSTRAINT commentvote_user_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
--
-- Name: emojis emoji_author_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.emojis
ADD CONSTRAINT emoji_author_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
--
-- Name: emojis emoji_submitter_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.emojis
ADD CONSTRAINT emoji_submitter_fkey FOREIGN KEY (submitter_id) REFERENCES public.users(id);
--
-- Name: exiles exile_exiler_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
@ -2653,22 +2672,6 @@ ALTER TABLE ONLY public.hats
ADD CONSTRAINT hats_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
--
-- Name: emojis marsey_author_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.emojis
ADD CONSTRAINT marsey_author_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
--
-- Name: emojis marsey_submitter_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.emojis
ADD CONSTRAINT marsey_submitter_fkey FOREIGN KEY (submitter_id) REFERENCES public.users(id);
--
-- Name: media media_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--

View File

@ -1625,7 +1625,9 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('carpdisagreefast','Carp',2,'no shakehead wrong'),
('carpdracula','Carp',2,'vampire'),
('carpembrace','Carp',2,'hug love blush fish carpathianflorist'),
('carpemo','Carp',2,'goth teen scene'),
('carperman','Carp',2,'slenderman horror stalk tentacles creepypasta'),
('carpexcited','Carp',2,'animated happy flap stim dance squee'),
('carpfans','Carp',2,'fish fussy onlyfans porn whore thot carpathianflorist fish admin moderator jannie prostitute'),
('carpfisherman','Carp',2,'admin janny bait caught mod sardine srdine carpathianflorist jannie'),
('carpflorist','Carp',2,'jannie admin fish flowers floral carpathianflorist crown'),
@ -1640,6 +1642,7 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('carphug','Carp',2,'love squish squeeze hug squeeze fish carpathianflorist'),
('carphug2','Carp',2,'fish love bottomfeeder carpathianflorist heart blow admin cute'),
('carpincel','Carp',2,'blackops inkwell virgin depressed ugly sexism sexist misogyny'),
('carpisraeliflag','Carp',2,'jewish'),
('carpitsover','Carp',2,'sad loss depressed pendulum'),
('carpitsoverwereback','Carp',2,'smug win victory animated loss win victory pendulum'),
('carpjannie','Carp',2,'carpathianflorist fish crying jannie clean mop bucket mod moderator janny tears administrator janitor moderator'),
@ -1649,6 +1652,8 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('carpkys','Carp',2,'killyourself suicide sign spin'),
('carplazy','Carp',2,'carpathianflorist fish couch sleeping slacker idc antiwork janitor'),
('carpler','Carp',2,'carpathianflorist administrator fascist mustache fish salute jannie nazi armband swastika'),
('carplgbtflag','Carp',2,'gay pride'),
('carplgbtflag2','Carp',2,'gay pride'),
('carplove','Carp',2,'heart'),
('carpmeatgrinder','Carp',2,'kill death dead seafood fish mince woodchipper'),
('carpmerchant','Carp',2,'jewish money redbubble merch carpathianflorist money yid heeb sheeny sheenie greedy handrubbery rubbing hands kike israeli'),
@ -1665,9 +1670,12 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('carppope','Carp',2,'christian catholic carpathianflorist fish priest'),
('carppretty','Carp',2,'cute carpathianflorist fish'),
('carpprotest','Carp',2,'sign fish mad carpathianflorist sign admin jannie'),
('carpprotestno','Carp',2,'sign'),
('carpprotestyes','Carp',2,'sign'),
('carprentfree','Carp',2,'fish bard stochiastic moderator jannie carpathianflorist fish'),
('carpsad','Carp',2,'depressed'),
('carpsalute','Carp',2,'fish army military uniform rank navy marines parade soldier carpathianfloriist'),
('carpscared','Carp',2,'sweat worried panic'),
('carpshapiro','Carp',2,'ben smug logic'),
('carpshy','Carp',2,'embarrassed blush fish carpathianflorist'),
('carpsick2','Carp',2,'fish scarf ill thermometer carpathianflorist'),
@ -1677,10 +1685,12 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('carpsneed','Carp',2,'simpsons'),
('carpsnipe','Carp',2,'shooter shooting gun sniper rifle scope crosshairs carpathianflorist kill murder bullet crosshair ajab'),
('carpsquirtle','Carp',2,'pokemon gaming pixel nintendo carpathian'),
('carpssflag','Carp',2,'super straight pride'),
('carpstack','Carp',2,'repeat comments hidden fast speed'),
('carpstake','Carp',2,'vampire kill heart blood'),
('carpthong','Carp',2,'bussy butt ass sexy sad'),
('carpthumbsup','Carp',2,'fish carpathianflorist goodjob approval'),
('carptransflag','Carp',2,'train pride'),
('carptrollgun','Carp',2,'crazy mad shoot carpathianflorist fish angry antichrist'),
('carptrophy','Carp',2,'carp head decapitated anticarp trophy defeat dead teaparty'),
('carptroublemaker','Carp',2,'evil'),
@ -1718,6 +1728,7 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('chadblack2','Wojak',2,'black chad'),
('chadbrasileiro','Misc',2,'chad chadyes yeschad macaco brazilian brazil brasileiro brasil monkey ricardo'),
('chadcambodian','Wojak',2,'chad cambodian'),
('chadcatyes','Wojak',2,'cat catjak kitten kittenjak cats kitty kittens kitties kittys jak wojak animaljak animal feline meow meowning chad chadyes yes chadcatyes catchad catchadyes chadkitten chadkitty kittenchad kittychad'),
('chadchud','Wojak',2,'chad chud yes chadyes chudyes nazi racist racism autistic autism incel virgin chudjak'),
('chadcopecapy','Capy',2,'capy aevann'),
('chadcryguy','Wojak',2,'cry sad tear chad'),
@ -1794,8 +1805,11 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('chudjakbaldspin','Wojak',2,'incel moid'),
('chudjakdancing','Wojak',2,'chud chudjak dance dancing moves jak wojak chudjakdancing chudjakdance chuddance chuddancing'),
('chudjaktalking','Wojak',2,'racist transphobic homophobic rude pol white cry sob grin teeth'),
('chudmuslim','Wojak',2,'muslimchud chudmuslim chudslim muslimjak muslim islam arab terrorist terrorism alqaeda al osama bin laden binladen explode explosion caliphate has fallen hasfallen caliph inshallah alhamdulillah jihad'),
('chudmutt','Wojak',2,'chud chuds obese racist racism right rightoid fat fatty fatties burger hamburger americans american america obesity race racemixing mutt mutts mixed mixing neckbeard patriot walmart shart in mart'),
('chudnazi','Wojak',2,'chud nazi'),
('chudpanic','Wojak',2,'chud panic scared its over the west has fallen millions must die'),
('chudrage','Wojak',2,'chud chuds chuddy nazi nazis racist racism right rightoid rage anger angry raging reee incel incels virgin manlet virgins permavirgin explode exploding explosive blowup argument debate arguing fury'),
('chudseethe','Wojak',2,'chud chudjak seethe seething cope sneed coping nazi racist nazis nazism racism white aryan thewest hasfallen west has fallen incel nosex incels chuddy chudlet swastika pol poljak 4chan rightoid right'),
('chudsey','Marsey',2,'4chan virgin pol rightoid'),
('chudsmug','Wojak',2,'chud smug'),
@ -2424,6 +2438,7 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('marseyalienfinger','Marsey',2,'ufo martian thebird flipoff'),
('marseyalienpeace','Marsey',2,'ufo martian'),
('marseyalienprobe','Marsey',2,'ufo martian anal probing rectal'),
('marseyallergic','Marsey',2,'reaction swell rash itch anaphylaxis'),
('marseyalucard','Marsey',2,'castlevania dracula vidya'),
('marseyamazon','Marsey',2,'warehouse piss bottle driver wagecuck piss jug pissbottle pissjug wagie'),
('marseyamber','Marsey',2,'dalle2 generated'),
@ -3651,6 +3666,7 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('marseyjam','Marsey',2,'animated bopping excited trippy excitement tejanx dancing rainbow rave happy dance'),
('marseyjamesholmes','Marsey',2,'killer shooter shooting crazy schizo batman capeshit ginger'),
('marseyjamming','Marsey',2,'mp3 headphones beat ipod music happy'),
('marseyjane','Marsey',2,'jane crocker betty homestuck'),
('marseyjanny','Marsey',2,'jannie unpaid volunteer administrator janitor free moderator'),
('marseyjanny2','Marsey',2,'jannie unpaid volunteer administrator janitor free moderator'),
('marseyjannyitsover','Marsey',2,'mod do free mop sweep clean virgin incel jobless unemployed'),
@ -5187,6 +5203,7 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('mjlol','Misc',2,'michael jordan coli thecoli black basketball sport game athlete laugh smile happy grin'),
('mlm','Marsey',2,'marseylivesmatter marsey lives matter blm'),
('models','Marsey Alphabet',2,'⊧ turnstile entails'),
('mods','Misc',2,'ban mods report loser mod help'),
('momblackjak','Wojak',2,'black woman mom mother'),
('moneypile','Classic',2,'rich happy coins currency joyous'),
('mongoljak','Wojak',2,'mongol mongolia genghis asian throat singing'),
@ -5208,12 +5225,14 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('na','Classic',2,'na animated emoticon furry raspberry mock'),
('nabla','Marsey Alphabet',2,'∇ del'),
('nauseous','Classic',2,'nauseous emoticon sick ill green'),
('naziack','Wojak',2,'chud chuds chuddy nazi nazis racist racism right rightoid hang hanging kys ack acking kill yourself killyourself suicide rope roped roping wingcuck agendaposter incel incels virgin manlet cry crying'),
('nazijak','Wojak',2,'nazi fascist'),
('naziseethe','Wojak',2,'nazi seethe fascist upset angry mad enraged'),
('necky','Donkey Kong',2,'donkeykong dk bird vulture'),
('neg','Marsey Alphabet',2,'¬ not negation logical'),
('nerd','Misc',2,'nerd actually ok dork'),
('nervous','Classic',2,'nervous animated emoticon scared worried nail biting'),
('nice','Misc',2,'nice thumbsup up updoot meme emoji'),
('niger','Misc',2,'niger flag'),
('niggaplease','Misc',2,'niggaplease nigga please niggas nibba nibbas nibbaplease nigger niggers niggerplease bruh black ghetto blacks africa african gangster gangsta homie friend friendship bud buddy rap rapping rapper hipho'),
('nikocadoavocadodance','Misc',2,'nick nikocado avocado nikocadoavocado nickavocado fat fatass fatty hambeast obese obesity mukang eat eating fastfood food faggot fag gay dance dancing coin coinslot gem cado youtube youtuber homo'),
@ -5607,6 +5626,8 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('soy4dchess','Wojak',2,'soy maga Q trump chess pawn'),
('soyconsoomer','Wojak',2,''),
('soycry','Wojak',2,''),
('soycrychicken','Wojak',2,'soy jak cry rage chicken rooster run cock'),
('soyegirl','Wojak',2,'soy soyjak soyegirl foidjak soyfoid foid egirl ethot ethot hoe ehoe pornstar porn prostitute prostitution sexwork onlyfans angry woman women moment womanmoment sweaty yikes yall problematic goth goths'),
('soyjackwow','Wojak',2,'wow surprise'),
('soyjak','Wojak',2,'soy'),
('soyjakanimeglasses','Wojak',2,'anime glasses'),
@ -5624,9 +5645,12 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('soyjaktantrum','Wojak',2,'soy tantrum fit crying seething animated'),
('soyjaktantrumfast','Wojak',2,'soy jak soyjak tantrum fast rage angry anger cry'),
('soyjakyell','Wojak',2,''),
('soyjihadi','Wojak',2,'muslimchud chudmuslim chudslim muslimjak muslim islam arab terrorist terrorism alqaeda al osama bin laden binladen explode explosion caliphate has fallen hasfallen caliph inshallah alhamdulillah jihad'),
('soymad','Wojak',2,'mad rage'),
('soymario','Wojak',2,'soy soyjak soyface soylent soys soyboy soycuck cuck cuckface nintendo switch vidya video games super mario bros supermariobros manchild manchildren immature immaturity italy italian pizza mammamia mia'),
('soyquack','Wojak',2,''),
('soyreddit','Wojak',2,'soy reddit'),
('soyruto','Wojak',2,'soyruto soy naruto anime weeb weebshit weeaboo manga japan japanese ninja samurai martial arts soyface neckbeard soylent soyboy cuckface cuck jutsu fight fighting fighter tournament soys soynojutsu'),
('soysnoo','Wojak',2,'soy reddit snoo'),
('soysnoo2','Wojak',2,'soy soyboy soyface soyjak snoo snoojak mascot alien reddit redditor plebbit plebbitor leddit ledditor cuck cuckface soycuck marvel mcu science disney starwars starshit soyence sciencejak'),
('soysnoo3','Wojak',2,'soy soyboy soyface soyjak snoo snoojak mascot alien reddit redditor plebbit plebbitor leddit ledditor cuck cuckface soycuck marvel mcu science disney starwars starshit soyence sciencejak'),
@ -5930,6 +5954,7 @@ INSERT INTO public.emojis (name, kind, author_id, tags) VALUES
('z','Marsey Alphabet',2,'letter'),
('zamn','Misc',2,'zamn damn hot andrew hussie would zoowie mamma heart emoji'),
('zeta','Marsey Alphabet',2,'ζ'),
('ziggerseethe','Wojak',2,'russia russian vatnik vatnig vatnigg vatnigger z zigger ziggers zig ukraine ukrainian war wars conflict soy seethe seething cope coping putin soy soyjak soyface angry anger fury rage seething copium'),
('zoomer','Wojak',2,'zoomie gen z'),
('zoomersoy','Wojak',2,'soyjak'),
('zoomertears','Wojak',2,'zoomer sad crying cry cope seethe'),