4736
Comments (220)
sorted by:
324
Pinpatch 324 points ago +324 / -0

Even finding dead registered voters that didnt vote helps as this changes the turnout figures.

It may push the votes received vs registered voters to an unbelievable figure.

141
Centipede9001 [S] 141 points ago +143 / -2

THIS!

121
PeaceThroughStrength 121 points ago +121 / -0

/pol/ Bureau of Investigation.

Autists lead the way.

Spez: repost this with (please sticky) and add a flair

45
firstpitchthrow 45 points ago +45 / -0

Serious question: why the fuck do we pay the FBI? We could save so much money just firing all of them and replacing them with /pol/

40
TRUMPet_of_GOD 40 points ago +40 / -0

Lol first thing /pol/ would do is find a way to use ancient runes to resurrect Hitler.

13
PeaceThroughStrength 13 points ago +13 / -0

There was that joke going around regarding/pol/ being a containment board for autistic geniuses.

Like if the autists went to /v/ then we start summoning literal demons and Cthulu,

We go to /his/, then we find the perfect pattern to recreate unavoidable WW1 war acceleration and end this mess.

4
Monkeybeardontcare 4 points ago +4 / -0

What is v vs pol or his?

3
KriMe 3 points ago +3 / -0

Where the hacker known as 4chan hangs out

2
PeaceThroughStrength 2 points ago +2 / -0

Different boards on 4chan focusing on different stuff.

V is horror related stuff, His is history.

5
DeepDMingDeep 5 points ago +5 / -0

FBI exists to control and protect politicians.

84
TonsOfSalt 84 points ago +84 / -0

Everyone should have been donating to Judicial Watch over the last 4 years. They have been suing the states and clearing out these bogus voter rolls.

36
HistoryInvestigator 36 points ago +36 / -0

you can do it through amazon smile if you're a lazy fuck too!

15
DCdeplorable 15 points ago +15 / -0

You shouldn't use amazon... but if you do, then do this.

5
SJWsHateUs 5 points ago +5 / -0

People who use Amazon knowingly kill small businesses and support slave wages in Chyna.

32
deleted 32 points ago +32 / -0
10
Balzenburg 10 points ago +10 / -0

Milwaukee is probably the worst offender with their insane turnout. would be a good spot to target. Every dead voter on their register would expose their fraud even more.

1
testingonetwothree 1 point ago +1 / -0

not sure they have the same easily accessible voter database to verify

20
CantStumpTheTrump 20 points ago +20 / -0

It doesn't matter, they added votes, without knowing which ones are credible they all need to be thrown out and the state needs to run an emergency election staffed by members from all other states.

3
deleted 3 points ago +3 / -0
10
TheBigKahuna 10 points ago +10 / -0

Exactly. Those are their reserve voters that they will call up if they need even more votes to steal the election.

145
TheBaconStopsHere 145 points ago +145 / -0

I wrote a Python script that loops over months and tests if it was registered:

import requests

first_name = 'Eleanor'
last_name = 'Guest'
birth_year = 1900
zip_code = 48239

for i in range(12):
    payload = {
        'FirstName': first_name,
        'LastName': last_name,
        'NameBirthMonth': i + 1,
        'NameBirthYear': birth_year,
        'ZipCode': zip_code,
        'Dln': '',
        'DlnBirthMonth': 0,
        'DlnBirthYear': '',
        'DpaID': 0,
        'Month': '',
        'VoterNotFound': 'false',
        'TransitionVoter': 'false'
    }

    response = requests.post('https://vote.michigan.gov/Voter/SearchByName', data=payload)

    if 'Yes, you are registered!' in response.text:
        print('found registration in month {}'.format(i + 1))
        break

If anyone can figure out how to scrape the results from Google then it could be built into this and we could maybe pull a data dump.

33
TheBaconStopsHere 33 points ago +33 / -0

This also appears in the page if an absentee ballot wasn't received: "Your clerk has not recorded receiving your AV Application." We could search for that to get a better data set. Not sure what it says if a ballot was received yet.

28
Charliecharlie 28 points ago +28 / -0

So update for the code.. It looks like the michiganvoters info site categorizes its pages like this: f100001 for the first page of last names starting with F. similarly, for every letter of the alphabet you can do a100001 dot html alll the way to z100001 dot html. Using this I was able to iterate through the list confidently. You can count the number 100001 up until no page is found and thats how you know no one else has a last name starting at that point in the alphabet.

Here is some regex python code you can use that will give you the name of everyone on the list for whatever page you are at. Add this to your code and then you can search each person whos year is whatever you want.

import pandas as pd import requests import re import string

test = requests.get("https://michiganvoters.info/by_name/pages/f100001.html") new = str(test.content).replace("<br>", '\n')

response = requests.get("https://michiganvoters.info/by_name/pages/f100001.html") new = str(test.content).replace("<br>", '\n') person_list = re.findall("\n.*\swas\sborn\sin\s\d{4}\sand\she.*United\sStates\s",new)

for person in person_list:

person_nfo = re.findall("\n\w[a-zA-Z]*,\s\w[a-zA-Z]*",person)

name = person_nfo[0].replace("\n","")

year = re.findall("in\s\d{4}",person)


print(name)
print(year)
16
LetoAtreides 16 points ago +16 / -0

You can download the whole database as a csv. Am I missing something? Did that thisorning and loaded it to MariaDB to make it easier to search.

29
TheBaconStopsHere 29 points ago +29 / -0

I have downloaded it and am running it against the ballot search now.

15
briwire 15 points ago +15 / -0

I love you guys

5
Seret 5 points ago +5 / -0

Can this be applied to every state? I doubt that Michigan is the only state with this cheating in it.

2
Charliecharlie 2 points ago +2 / -0

Technically yes. Anybody have voter registries of other states I can talk e a crack at it. I work in cyber so querying against sites that don’t intend for that is something I have to do often do often

12
Racist 12 points ago +12 / -0

Pull names from local obits.

10
MehNahMehNah 10 points ago +10 / -0

That's good for cross reference. More tedious stuff like finding the same likely voter at multiple addresses would require mastering whitepages dot com and being able to parse data. Too much for my brain on a large scale.

2
Undo1913 2 points ago +2 / -0

You guys are fucking heros!

22
deleted 22 points ago +22 / -0
2
deleted 2 points ago +2 / -0
19
pokeman 19 points ago +20 / -1

Is it weird I can read code but can’t write shit. No wonder I couldn’t land a tech job

13
deleted 13 points ago +13 / -0
9
Frixwar 9 points ago +9 / -0

No its not. I was the same way before I actually went to college to learn to write it. I could never teach myself lol. I might be able to help with this too. Ill pull it and post my results.

6
mkdir-not-war 6 points ago +6 / -0

python is basically english. Check out codecademy.com, then codingbat.com

6
pokeman 6 points ago +7 / -1

I did a course called automate the boring stuff

1
deleted 1 point ago +1 / -0
1
deleted 1 point ago +1 / -0
1
FluhanWu 1 point ago +1 / -0

start with copy+pasting. Pick them apart then make something. Next thing you could have a job. I did.

9
deleted 9 points ago +9 / -0
89
Centipede9001 [S] 89 points ago +90 / -1

MODS PLEASE PIN THIS COMMENT TO THE TOP OF THE THREAD

HERE ARE THE LINKS AND SEARCH TERMS FOR FASTER WORK PEDES:

Step 1) Search term: "site:https://michiganvoters.info was born in 1900" (without the " ")

Step 2) Step Two: Copy/Paste the first name, last name and zip code into the following site: https://vote.michigan.gov/Voter/index

Step 3) Report vote fraud here: https://defendyourballot.formstack.com/forms/voter_fraud

26
MAGA_4EVER 26 points ago +26 / -0

Can anyone create a web scraped or powershell program to do this automatically???

30
TheBaconStopsHere 30 points ago +30 / -0

Started a script in Python. See above. I need help from others to scrape from Google.

6
deleted 6 points ago +6 / -0
4
deleted 4 points ago +4 / -0
9
deleted 9 points ago +9 / -0
5
deleted 5 points ago +5 / -0
2
FluhanWu 2 points ago +2 / -0

Learn to Coal?

8
TheBaconStopsHere 8 points ago +8 / -0

I've already downloaded the data set. 2.6 GB that I filtered down to 3.9 MB (only people born on or before 1920).

6
deleted 6 points ago +6 / -0
2
deleted 2 points ago +2 / -0
4
Charliecharlie 4 points ago +4 / -0

you dont have to just add one to each page based on last name letter. For example: A would be a100001.html and then add one until you get page not found

1
Mayhem 1 point ago +1 / -0

Selenium

4
LetoAtreides 4 points ago +4 / -0

You can script this out with Selenium. Look into it. It's not that difficult

52
BidenCrimeFamily 52 points ago +52 / -0

Can we do this for all states?

36
Centipede9001 [S] 36 points ago +38 / -2

YES! you must find the voter registry in that state and replace the search for the michigan registry site URL with "site:http://YourStateVoterRegistry.com was born in 1900". RINSE AND REPEAT! GOD SPEED FELLOW PEDE!

18
Centipede9001 [S] 18 points ago +19 / -1

Also don't forget to change years to 1901, 1902, etc!

3
ProfessorOak 3 points ago +3 / -0

I'm trying to get the Georgia database to work, but nothing is coming up. I'm using "site:https://georgia.ballottrax.net/voter/ was born in 1950" without quotations. Am I doing something wrong or does this not work for that database?

0
TrumpTrainChoooChoo2 0 points ago +2 / -2

That website doesn’t work

5
Racist 5 points ago +5 / -0

It's an example sir. You have to put a real state registry in the URL.

8
TrumpTrainChoooChoo2 8 points ago +8 / -0

Ha totally read your comment too fast. Thank you.

5
smfrnz 5 points ago +5 / -0

Minnesota requires:

  • Name
  • DOB
  • License/Last 4 SS#

I hate where I live... can’t even find dead voters.

2
andarm16 2 points ago +2 / -0

For someone who has been dead since before 2014, there is the ancestry.com's version of the social security master death file. That will give you the data you need to do this. (There is a fee attached, but it costs less than getting it from the SSA, and it doesn't require you to have a legitimate need for it)

2
deleted 2 points ago +2 / -0
1
SideOBeef2016 1 point ago +1 / -0

Chicago too

43
deleted 43 points ago +43 / -0
34
flanders 34 points ago +34 / -0

You mean a sudden error will pop up, and for the safety of all users, the feature has been disabled while staff look into the issue.

9
deleted 9 points ago +9 / -0
5
Balzenburg 5 points ago +5 / -0

I'm in. Just brute forcing through Google randomly by born in year for now. Saving to a spreadsheet.

9
Racist 9 points ago +9 / -0

This is directly banging the state registry websites. We can do this without Google.

37
namaste_trump 37 points ago +37 / -0

sticky now. tested it an its real.

28
MoreDoeJohn 28 points ago +28 / -0

Mods, please sticky this!

22
deleted 22 points ago +22 / -0
5
Rusty_Bungus 5 points ago +5 / -0

Excessive vaccinations came in handy after all...

4
deleted 4 points ago +4 / -0
2
deleted 2 points ago +2 / -0
22
Racist 22 points ago +22 / -0

Surely somebody can write a script to scrape each state's info programmatically.

26
TheBaconStopsHere 26 points ago +26 / -0

Started it. See above. Need someone to help pulling the lists from Google. Also probably need to throttle the requests so the system doesn't boot us.

16
Centipede9001 [S] 16 points ago +17 / -1

WE NEED THE CYBER FORCE IN HERE ASAP PEDES!

1
deleted 1 point ago +1 / -0
10
Centipede9001 [S] 10 points ago +11 / -1

the user "brainphreeze" has pointed out in the comments that there are downloads for the data on the michiganvoters.info site here, this will remove the need for a throttle!

make sure to download "12 October 2020"

4
RussianSkynet 4 points ago +4 / -0

I worked with google searches in another project... setting delay to 60 seconds was a sure fire way to keep from getting blocked. Might not be most time effective thougth... Otherwise you need a vpn or rotating ip addresses (these a relatively cheap (for programmers with a job))

2
deleted 2 points ago +2 / -0
3
DirtyName 3 points ago +3 / -0

If that's possible then the states themselves have zero excuse why dead people aren't removed automatically.

15
brainphreeze 15 points ago +15 / -0

There are dumps here:

https://michiganvoters.info/download.html

I'm not sure what's in them as I'm not on a PC, can someone please PLEASE check and if it's voter rolls, DOwNLOAD EVERYTHING NOW

I can help in scripting something to cross reference against ssdi or the voter index.

edit: work is taking place here - https://thedonald.win/p/11PpFtEkTK/mi-voter-fraud-investigation-con/

14
Charliecharlie 14 points ago +14 / -0

Legitimately thinking about automating this

9
deleted 9 points ago +9 / -0
3
Rusty_Bungus 3 points ago +3 / -0

Really need all 50 states automated then turn it over by hand to all major news networks. Ignore that MOTHERFUCKERS!

13
gottapoop 13 points ago +13 / -0

the website says its not official and puchased voter roll info from michigan in october of 2020. Not saying this is false, but how can we know this is real?

12
deleted 12 points ago +12 / -0
9
Aspielogic2 9 points ago +9 / -0

I just found HOPE MARILYN WAALKES born 1932 and registered under 4 different Registration numbers at 4 different addresses in four different towns - all showing Active, and all requesting Absentee voter card be sent out. Hope Marilyn Waalkes died August 1, 2019.

Wondering: do different registration numbers all trigger an individual Absentee ballot to be sent out in Michigan?

5
Cindy_Lou_62 5 points ago +5 / -0

Here's her husband; https://www.findagrave.com/memorial/163612240/william-j.-waalkes May be able to match addresses with him if he is in the database too.

2
Aspielogic2 2 points ago +2 / -0

He's in the database as Active and Yes-Absentee ballot

5
DirtyName 5 points ago +5 / -0

Have to be careful with potential doxxing on the site.

Recommend removing her name...

Also, DM me. I have a few additional leads on addresses...let's run this down and see if there's anything real here.

2
Aspielogic2 2 points ago +2 / -0

That's why I only posted a name I could confirm was deceased. I have 12 other 87-94 year olds that I haven't found an obit for. Pretty sure it's not doxxing if the person(s) are dead. LMK if I've got that wrong.

3
deleted 3 points ago +3 / -0
3
Balzenburg 3 points ago +3 / -0

Can you publish this please?

4
deleted 4 points ago +4 / -0
11
VinceVonVroom 11 points ago +11 / -0

Do you have a link to this thread?

12
Centipede9001 [S] 12 points ago +13 / -1

Here is the thread link

I've also commented the URLs for faster searching. GOD SPEED FELLOW PEDE!

4
VinceVonVroom 4 points ago +4 / -0

Thanks, that was informative. They're on it!

9
TheBaconStopsHere 9 points ago +9 / -0

UPDATE:

Ok guys, I've downloaded the October 2020 data.

I filtered it down to voters with a birth year less than or equal to 1930, and I'm running it now against the registration/ballot information. I'll let you know the results.

So far I've found three voters born in 1919 that submitted absentee ballots.

2
deleted 2 points ago +2 / -0
2
deleted 2 points ago +2 / -0
1
Balzenburg 1 point ago +1 / -0

MAGA! Let us know!

7
Nogozone 7 points ago +7 / -0

STICKY STICKY STICKY

7
deleted 7 points ago +7 / -0
7
kleindropper 7 points ago +7 / -0

Yay! I have something useful to do!

6
DRKMSTR 6 points ago +6 / -0

THE SITE IS BEING STERILIZED! USE CACHED WEB PAGES TO PULL DATA!

6
Mintap 6 points ago +6 / -0

Try:

William Bradley March 1902 48207

https://vote.michigan.gov/Voter/index

2
Balzenburg 2 points ago +2 / -0

Wilson Lavina 1901 January 49454

6
Charliecharlie 6 points ago +6 / -0

MAJOR RED FLAG: https://michiganvoters.info/by_name/pages/f102735.html This guy was 1899 and registered in October THIS YEAR. THE MICHIGAN SITE WONT LET YOU SEARCH HIM

7
TheBaconStopsHere 7 points ago +7 / -0

The website probably doesn't support searching for years less than 1900.

So cool, voters from 2 or older centuries ago are still voting.

5
HumbleMemeFarmer 5 points ago +5 / -0

Every 1900 - 1903 birth year registered voter in Michigan

https://f.maga.host/Pt5n08w.pdf

4
Balzenburg 4 points ago +4 / -0

LOL look how many of them registered in October of 2000 when they were 100 years old.

3
SJWsHateUs 3 points ago +3 / -0

Wow. Seems like we a have a few past elections that aren’t legit.

3
Balzenburg 3 points ago +3 / -0

What is your source for this? I found two that are not on here. Can't verify 1 I tried had to back into the zip code.

Wilson Lavina 1901 49454 Osborn Martin 1901 49337

2
HumbleMemeFarmer 2 points ago +2 / -0

"WILSON","LAVINA","J","","1901","F","1993-05-07","","400","","W","3RD","ST","","","SCOTTVILLE","MI","49454","","","","","","6467372","53","MASON","72080","SCOTTVILLE CITY","01001","01","23130","MASON COUNTY CENTRAL SCHOOLS","101","101st District","35","35th District","02","2nd District","5305 ","5th District","","","","","N","V","N","NON-UOCAVA"

1
Balzenburg 1 point ago +1 / -0

nice! I have been doing this manually you rock!!

5
deleted 5 points ago +5 / -0
5
HumbleMemeFarmer 5 points ago +5 / -0

All Michigan voters born in 1900 through 1920 on the registry as of october 2020

https://f.maga.host/rqfmT3E.pdf

I'm working on pre 1900. There are 139 still active voter registrations for folks born before 1900.

Example - Check out Leonard Shutts, still an active voter as of 2017 when he was 124 years old.

https://michiganvoters.info/by_number/00019800/02278_leonard_shutts.html - https://archive.is/LDiwT

He's so old that the Michigan voter website says his birth year is invalid!

https://i.maga.host/ym9TlDT.png

1
deleted 1 point ago +1 / -0
4
TheBaconStopsHere 4 points ago +4 / -0

UPDATE I have downloaded the October 2020 data and filtered by birth year less than 1920. There are 15,360 entries. Have not validated them against the registration data yet.

1
TheBaconStopsHere 1 point ago +1 / -0

Is it worth running the analysis with that number of entries?

4
bitchlasagna 4 points ago +4 / -0

I got a FIOA registered voters database from 2017. I have it python parsing it, and using the functions above.

Running through and logging the results, currently am looking for people over 100 years old. Got one person who's older than the oldest person alive who got a ballot, and a quite a few people over 100 who are still registered.

The script takes a while because it's interacting with the servers brute forcing birth months, so I expanded the birth range from over 115 years old to 100 just to get more results.

What is interesting is there are voters from the 1800s on the roles, 1850 was the oldest I saw.

Voater Info https://michiganvoters.info/download.html

Data Preview .... Notice the one with the ballot received is from 1916. Who can check death certs?

first_name last_name birth_year birth_month zip_code ballot_received THERESA STEVENS 1919 12 49040 is_registered MARY BARTZ 1919 11 48180 is_registered RALPH BROWN 1915 3 48180 is_registered LINDA MASTROIANNI 1920 1 48170 is_registered LIVIA BARKAI 1915 3 48180 is_registered GENEVIEVE OVERTON 1914 6 49078 is_registered VALERIA NOWACZEWSKI 1918 3 48015 is_registered ILA BIXLER 1920 2 48180 is_registered MARIE BEAUCHEMIN 1915 4 48043 is_registered JOYCE SMITH 1919 7 49203 is_registered MARGUERITE DEARMOND 1918 3 48066 is_registered EVELYNE JONES 1916 12 49203 ballot_received THEODA SANDERS 1914 7 49203 is_registered ANGELA LASOTA 1919 4 49201 is_registered CECIL BANKS 1918 8 48180 is_registered

1
Balzenburg 1 point ago +1 / -0

Heres the few I found 115 years old or older;

Last Name X First Name X Year Born X Birth Month X Zip Junkune x Mark x 1905 x - x 48390 Gilchriest x Eugene x 1903 x - x 48203 Wilson x Lavina x 1901 x January x 49454 Osborn x Martin x 1901 x - x 49337 Slowikowski x Bertha x 1903 x December x 48218

All registered. None requested absentee.

3
bitchlasagna 3 points ago +3 / -0

Registered votes, born on or before 1900: https://files.catbox.moe/zq14p3.csv

The kicker is that the MI website wont let you go before 1900.

I'm iterating every voter born before 1920 still.

4
Nogozone 4 points ago +4 / -0

It’s asking for a birthday month. How do you figure that out?

6
Centipede9001 [S] 6 points ago +7 / -1

User "TheBaconStopsHere" writes:

I wrote a Python script that loops over months and tests if it was registered:

import requests

first_name = 'Eleanor' last_name = 'Guest' birth_year = 1900 zip_code = 48239

for i in range(12): payload = { 'FirstName': first_name, 'LastName': last_name, 'NameBirthMonth': i + 1, 'NameBirthYear': birth_year, 'ZipCode': zip_code, 'Dln': '', 'DlnBirthMonth': 0, 'DlnBirthYear': '', 'DpaID': 0, 'Month': '', 'VoterNotFound': 'false', 'TransitionVoter': 'false' }

response = requests.post('https://vote.michigan.gov/Voter/SearchByName', data=payload)

if 'Yes, you are registered!' in response.text:
    print('found registration in month {}'.format(i + 1))
    break

Otherwise it's a guess until you find the right month, luckily there are only 12 months in a year and millions of us centipedes!

4
Mintap 4 points ago +4 / -0

A script could run through this. Can someone program one?

4
DRKMSTR 4 points ago +4 / -0

I have the file, it's 2.7GB, excel won't work with it for some reason.

I'll toss it into matlab and see what happens.

1
deleted 1 point ago +1 / -0
4
1
Sagan 1 point ago +1 / -0

Very important. To the top!

4
Shrillary 4 points ago +4 / -0

Can anyone write an AutoHotkey or Python script to automate this out? EDIT: FOUND ONE!

https://thedonald.win/p/11PpFwdNbQ/x/c/1ASGELjJ7H

1
deleted 1 point ago +1 / -0
3
deleted 3 points ago +3 / -0
3
kleindropper 3 points ago +3 / -0

Holy shit, I put 1930 in and to 16,900 results.

2
Winrar_ChiknDinr 2 points ago +2 / -0

Well 90 year old people exist right....

2
kleindropper 2 points ago +2 / -0

Well I started high since everybody else was likely starting at 1900

2
deleted 2 points ago +2 / -0
3
VonBustacap 3 points ago +3 / -0

How has some pede not worked this into some kind of script?

edit: I now see pedes are working on it. MAGA!

1
deleted 1 point ago +1 / -0
3
Mintap 3 points ago +3 / -0

I've tried few. Has anyone found one that received an absentee ballot?

1
Balzenburg 1 point ago +1 / -0

Not yet but I am up to 5 115 years old or older doing using the manual 4 chan method

1
Carlos142857 1 point ago +1 / -0

I found 2 with absentee ballots. One guy was born in 1900, the other guy born in 1920

3
UnbowedUncucked 3 points ago +3 / -0

Watch that website suddenly have "technical issues".

3
NPC01001101010000010 3 points ago +3 / -0

Someone good with webscraping needs to script this.

3
ProtectFreedom 3 points ago +3 / -0

Supposedly 1900 is the placeholder value. If you can find dead voters that are 1901 and later, those would be a much more compelling case.

2
Balzenburg 2 points ago +2 / -0

2 from 1901;

Wilson Lavina 1901 49454 Osborn Martin 1901 49337

3
BetaODork 3 points ago +3 / -0

STICKY. AND UPVOTE.

2
Carlos142857 2 points ago +2 / -0

I found a dead person vote in MI. Where do I post it?

2
DJT_JR6544 2 points ago +2 / -0

All new levels of autism!

2
EtTuRINO 2 points ago +2 / -0

Isn't a 1/1/1900 entry in a voter database just lazy entry and not necessarily maleficence?

This is why Judicial Watch is great but sadly seems alone in keeping voter rolls updated. It's astounding how both the DNC and the RNC care so little to keep these updated.

2
deleted 2 points ago +2 / -0
2
ATortillaBoi 2 points ago +2 / -0

Here is a dump that another person posted with spreadsheets showing the voter rolls detailed out with 90+, 100+, 110+ aged voters as well as voters that were registered prior to their DOB. Someone smarter than me may be able to utilize it.

https://u.pcloud.link/publink/show?code=kZ0grHXZwbzzbd8aPNbDG9lQHVnwT5DNGkMX

2
MehNahMehNah 2 points ago +2 / -0

I see work for Tom Fitten of Judicial Watch here. He's filed to have voter roles purged in other states, looks like it's a common failure of voter registrars.

2
tuaris 2 points ago +2 / -0

hmm, you'd think these states would have taken those sites offline by now to prevent people from uncovering this information.

1
zippy3 1 point ago +1 / -0

never interrupt your enemy when they're making a mistake

2
Aboyslife 2 points ago +2 / -0

You magnificent bastards! Need to do this with AZ, NV, GA, WI. In 2020, the future of our country was saved by weaponized autism.

2
deleted 2 points ago +2 / -0
2
tub4lc41n 2 points ago +2 / -0

Long life to the autist Pepes!

2
The_Big_Guy 2 points ago +2 / -0

We love you, 4chan!

1
deleted 1 point ago +1 / -0