-
Notifications
You must be signed in to change notification settings - Fork 938
/
swearwords.go
76 lines (75 loc) · 1.64 KB
/
swearwords.go
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
package automod_legacy
// These words are listed in in alphabethical order.
var BuiltinSwearWords = map[string]bool{
"anal": true,
"anus": true,
"arse": true,
"ass": true,
"b1tch": true,
"ballsack": true,
"bastard": true,
"bitch": true,
"biatch": true,
"blowjob": true,
"bollock": true,
"bollok": true,
"boner": true,
"boob": true,
"boobs": true,
"buttplug": true,
"clitoris": true,
"cock": true,
"cum": true,
"cunt": true,
"dick": true,
"dildo": true,
"dyke": true,
"erection": true,
"fag": true,
"faggot": true,
"feck": true,
"fellate": true,
"fellatio": true,
"felching": true,
"fuck": true,
"fucks": true,
"fudgepacker": true,
"genitals": true,
"hell": true,
"jerk": true,
"jizz": true,
"knobend": true,
"labia": true,
"masturbate": true,
"muff": true,
"nigger": true,
"nigga": true,
"penis": true,
"piss": true,
"poop": true,
"pube": true,
"pussy": true,
"scrotum": true,
"sex": true,
"shit": true,
"sh1t": true,
"slut": true,
"smegma": true,
"spunk": true,
"tit": true,
"tranny": true,
"trannies": true,
"tosser": true,
"turd": true,
"twat": true,
"vagina": true,
"wank": true,
"whore": true,
"tits": true,
"titty": true,
"asshole": true,
"fvck": true,
"asshat": true,
"pu55y": true,
"pen1s": true,
}