-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacronym.json
More file actions
6511 lines (6511 loc) · 205 KB
/
acronym.json
File metadata and controls
6511 lines (6511 loc) · 205 KB
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
{
"$": "dollar",
"%": "percentage",
"&": "and",
"&": "and",
"*g*": "grin",
"*s*": "smile",
"1st": "first",
"2nd": "second",
"3rd": "third",
"4th": "fourth",
"2MORO": "Tomorrow",
"2MORROW": "Tomorrow",
"2dae": "Today",
"2day": "today",
"2fight": "fight",
"2gether": "Together",
"2gethr": "together",
"2getr": "Together",
"2head": "head",
"2hear": "hear",
"2maro": "Tomorrow",
"2marrow": "tomorrow",
"2mmrw": "Tomorrow",
"2mo": "Tomorrow",
"2mora": "Tomorrow",
"2moro": "Tomorrow",
"2morow": "Tomorrow",
"2morro": "Tomorrow",
"2morrow": "Tommorrow",
"2morrrow": "tomorrow",
"2moz": "Tomorrow",
"2mozz": "Tomorrow",
"2mro": "Tomorrow",
"2mrw": "tomorrow",
"2night": "Tonight",
"2nite": "Tonight",
"2nyt": "Tonight",
"2one": "one",
"2sday": "Tuesday",
"2sum": "sum",
"2tali": "Totally",
"3kids": "kids",
"3weeks": "weeks",
"4ever": "Forever",
"4evr": "Forever",
"4g8": "Forget",
"4gai": "Forget about it",
"4geit": "Forget it",
"4get": "Forget",
"4getu": "Forget you",
"4give": "Forgive",
"4got": "Forgot",
"4gv": "Forgive",
"4head": "Forehead",
"4lunch": "lunch",
"4work": "work",
"5months": "months",
"5others": "others",
"7seconds": "second",
"@": "at",
"A/S/L": "Age/sex/location",
"AAF": "As a matter of fact",
"AAMOF": "As a matter of fact",
"AAMOI": "As a matter of interest",
"AAP": "Always a pleasure",
"AAR": "At any rate",
"ABT": "About",
"ACDNT": "Accident",
"ACK": "Acknowledge",
"ACPT": "Accept",
"ACQSTN": "Acquisition",
"ADAD": "Another day, another dollar",
"ADBB": "All done, bye-bye",
"ADDY": "Address",
"ADIH": "Another day in hell",
"ADIP": "Another day in paradise",
"ADMIN": "Administrator",
"ADMINR": "Administrator",
"ADN": "Any day now",
"ADR": "Address",
"ADRS": "Address",
"AEAP": "As early as possible",
"AFAIAA": "As far as I am aware",
"AFAIC": "As far as I am concerned",
"AFAIK": "As far as I know",
"AFAIUI": "As far as I understand it",
"AFAP": "As far as possible",
"AFK": "Away from keyboard",
"AFZ": "Acronym Free Zone",
"AIGHT": "Alright",
"AKA": "Also known as",
"ALCON": "All concerned",
"ALOL": "Actually laughing out loud",
"AMAP": "As much as possible",
"AMOF": "As a matter of fact",
"ASAP": "As soon as possible",
"ASL": "Age/sex/location",
"ASLA": "Age/sex/location/availability",
"AT": "At your terminal",
"ATB": "All the best",
"ATM": "At the moment",
"ATSITS": "All the stars in the sky",
"ATSL": "Along the same line (or lines)",
"AWC": "After awhile crocodile",
"AWESO": "Awesome",
"AWOL": "Away without leaving",
"AYDY": "Are you done yet?",
"AYEC": "At your earliest convenience",
"AYOR": "At your own risk",
"AYS": "Are you serious?",
"AYSOS": "Are you stupid or something?",
"AYT": "Are you there?",
"AYTMTB": "And you_re telling me this because",
"AYV": "Are you vertical?",
"AZN": "Asian",
"B-DAY": "Birthday",
"B/C": "Because",
"B2W": "Back to work",
"B4": "Before",
"B4N": "Bye for now",
"BAK": "Back at keyboard",
"BASOR": "Breathing a sigh of relief",
"BAU": "Business as usual",
"BAY": "Back at ya",
"BBIAB": "Be back in a bit",
"BBIAF": "Be back in a few",
"BBIAM": "Be back in a minute",
"BBIAS": "Be back in a sec",
"BBL": "Be back later",
"BBN": "Bye, bye now",
"BBQ": "Barbeque, \u00d2Ownage\u00d3, shooting score/frag (online gaming)",
"BBS": "Be back soon",
"BBT": "Be back tomorrow",
"BC": "Be cool",
"BCOS": "Because",
"BCOZ": "Because",
"BD": "Big deal",
"BDAY": "Birthday",
"BDN": "Big darn number",
"BF": "Best friend",
"BFAW": "Best friend at work",
"BFF": "Best friends forever",
"BFFL": "Best friends for life",
"BFN": "Bye for now",
"BGWM": "Be gentle with me",
"BHL8": "Be home late",
"BIB": "Boss is back",
"BIBO": "Beer in, beer out",
"BIF": "Before I forget",
"BIH": "Burn in hell",
"BIL": "Brother in law",
"BION": "Believe it or not",
"BIOYA": "Blow it out your *a*",
"BIOYN": "Blow it out your nose",
"BISFLATM": "Boy, I sure feel like a turquoise monkey! (unverified)",
"BITMT": "But in the meantime",
"BL": "Belly laugh",
"BLNT": "Better luck next time",
"BM": "Bite me",
"BM&Y": "Between me and you",
"BME": "Based on my experience",
"BOB": "Back off *buddy*",
"BOE": "Meaning \u00d2bind on equip\u00d3 (online gaming)",
"BOL": "Best of luck",
"BOLO": "Be on the look out",
"BOOMS": "Bored out of my skull",
"BOP": "Meaning \u00d2bind on pickup\u00d3 (online gaming)",
"BOSMKL": "Bending over smacking my knee laughing",
"BOT": "Back on topic",
"BOYF": "Boyfriend",
"BPLM": "Big person little mind",
"BRB": "Be right back",
"BRBB": "Be right back *babe*",
"BRD": "Bored",
"BRH": "Be right here",
"BRNC": "Be right back, nature calls",
"BRT": "Be right there",
"BSF": "But seriously folks",
"BSOD": "Blue screen of death",
"BSTS": "Better safe than sorry",
"BTW": "By the way",
"BWL": "Bursting with laughter",
"BYOB": "Bring your own beer",
"BYOC": "Bring your own computer",
"BYTM": "Better you than me",
"C4N": "Ciao for now",
"CAM": "Camera (SMS)",
"CB": "Coffee break",
"CFS": "Care for secret?",
"CIAO": "Good-bye (Italian word)",
"CICO": "Coffee in, coffee out",
"CMON": "Come on",
"COS": "Because",
"CR8": "Create",
"CRB": "Come right back",
"CU": "See you",
"CU2": "See you too",
"CUL": "See you later",
"CYA": "See you",
"DC": "Disconnect",
"DIY": "Do it yourself",
"DM": "Direct message",
"DNC": "Do not compute",
"DNR": "Dinner",
"DNT": "Don_t",
"E1": "Everyone",
"EOD": "End of day",
"EOM": "End of message",
"EOS": "End of show",
"EOT": "End of transmission",
"ETA": "Estimated time of arrival",
"F2F": "Face to face",
"FAF": "Funny as *freak*",
"FAQ": "Frequently asked questions",
"FC": "Fingers crossed",
"FOAF": "Friend of a friend",
"FTW": "For the win",
"FWRD": "Forward",
"FYA": "For your amusement",
"FYI": "For your information",
"G/F": "Girlfriend",
"G2CU": "Good to see you",
"G2G": "Got to go",
"G2R": "Got to run",
"GF": "Girl friend",
"GFN": "Gone for now",
"GG": "Gotta Go",
"GNIGHT": "Good night",
"GNITE": "Good night",
"GR8": "Great",
"GRATZ": "Congratulations",
"GRL": "Girl",
"GTG": "Got to go",
"GTRM": "Going to read mail",
"GTSY": "Great (or good) to see you",
"GUD": "Good",
"H-BDAY": "Happy Birthday",
"H8": "Hate",
"H8TTU": "Hate to be you",
"HAG1": "Have a good one",
"HAK": "Hug and kiss",
"HV": "Have",
"IA8": "I already ate",
"IDUNNO": "I don_t know",
"IFYP": "I feel your pain",
"IG2R": "I got to run",
"ILU": "I love you",
"ILUM": "I love you man",
"ILY": "I love you",
"IM": "Instant message",
"IMAO": "In my arrogant opinion",
"IMHO": "In my humble opinion",
"IMO": "In my opinion",
"IMS": "I am sorry",
"IMSB": "I am so bored",
"IMTM": "I am the man",
"IMU": "I miss u (you)",
"IOW": "In other words",
"IRL": "In real life",
"IUSS": "If you say so",
"IWALU": "I will always love you",
"JMO": "Just my opinion",
"JP": "Just playing",
"L8R": "Later",
"LHO": "Laughing head off",
"LIC": "Like I care",
"LIK": "Meaning liquor",
"LMBO": "Laughing my butt off",
"LMFAO": "Laughing my freaking *a* off",
"LMIRL": "Lets meet in real life",
"LMK": "Let me know",
"LOL": "Laughing out loud",
"M8": "Mate",
"MOS": "Mother over shoulder",
"MOSS": "Member of same sex",
"MSG": "Message",
"MTF": "More to follow",
"MUSM": "Miss you so much",
"MYO": "Mind your own (business)",
"MYOB": "Mind your own business",
"N1": "Nice one",
"NE1": "Anyone",
"NLT": "No later than",
"NMH": "Not much here",
"NMU": "Not much, you?",
"NO1": "No one",
"NP": "No problem",
"NTHING": "Nothing (SMS)",
"NVM": "Never mind",
"NVR": "Never",
"NWO": "No way out",
"O4U": "Only for you",
"OIC": "Oh, I see",
"OMG": "Oh my God",
"OMGYG2BK": "Oh my God, you got to be kidding",
"OMW": "On my way",
"ONL": "Online",
"OOC": "Out of character",
"OOH": "Out of here",
"OOTD": "One of these days",
"OOTO": "Out of the office",
"ORLY": "Oh really?",
"OTB": "Off to bed",
"OTFL": "On the floor laughing",
"OTL": "Out to lunch",
"OTOH": "On the other hand",
"OTP": "On the phone",
"OTTOMH": "Off the top of my head",
"OTW": "Off to work",
"OVA": "Over",
"OYO": "On your own",
"P2P": "Peer to peer",
"PCM": "Please call me",
"PIC": "Picture",
"PIP": "Peeing in pants (laughing hard)",
"PISS": "Put in some sugar",
"PL8": "Plate",
"PLD": "Played",
"PLMK": "Please let me know",
"PLS": "Please",
"PLU": "People like us",
"PLZ": "Please",
"PM": "Private Message",
"POV": "Point of view",
"PPL": "People",
"PRT": "Party",
"PRW": "People/parents are watching",
"PSOS": "Parent standing over shoulder",
"PXT": "Please explain that",
"PZA": "Pizza",
"QIK": "Quick",
"R8": "Rate (SMS)",
"RBAY": "Right back at you",
"RIP": "Rest in peace",
"RLY": "Really",
"RME": "Rolling my eyes",
"RMLB": "Read my lips baby",
"ROFL": "Rolling on floor laughing",
"ROFLCOPTER": "Rolling on floor laughing and spinning around",
"ROFLMAO": "Rolling on the floor, laughing my *butt* off",
"ROTFL": "Rolling on the floor laughing",
"ROTFLUTS": "Rolling on the floor laughing unable to speak",
"RU": "Are you?",
"RUOK": "Are you okay?",
"RUT": "Are u (you) there?",
"RX": "Regards",
"S2R": "Send to receive (meaning send me your picture to get mine)",
"S2S": "Sorry to say",
"SK8": "Skate",
"SK8NG": "Skating",
"SK8R": "Skater",
"SOAB": "Son of a *B*",
"SOL": "Sooner or later",
"SOS": "Meaning help",
"SRSLY": "Seriously",
"SRY": "Sorry",
"SSDD": "Same stuff, different day",
"SSIF": "So stupid it_s funny",
"SSINF": "So stupid it_s not funny",
"ST&D": "Stop texting and drive",
"STFU": "Shut the *freak* up",
"STR8": "Straight",
"STW": "Search the Web",
"SYL": "See you later",
"SYS": "See you soon",
"T4BU": "Thanks for being you",
"TBC": "To be continued",
"THNQ": "Thank you",
"THNX": "Thanks",
"THX": "Thanks",
"TOU": "Thinking of you",
"UR": "Your / You're",
"VIP": "Very important person",
"VRY": "Very",
"W3": "WWW",
"W8": "Wait",
"WAH": "Working at home",
"WRK": "Work",
"WTF": "What the *freak* ?",
"WTG": "Way to go",
"WTH": "What the heck?",
"XLNT": "Excellent",
"XME": "Excuse Me",
"XOXOXO": "Hugs & Kisses",
"Y2K": "You_re too kind",
"YA": "Your",
"a$$": "ass",
"a&f;": "always and forever",
"a'ight": "alright",
"a.i.m.": "aol instant messanger",
"a.m.": "am",
"a/l": "age and location",
"a/m": "away message",
"a/s/l": "age,sex,location",
"a/s/l/p": "age/sex/location/picture",
"a/s/l/r": "age, sex, location, race",
"a1supplements": "supplements",
"a1t": "anyone there",
"a3": "anyplace, anywhere, anytime",
"aaaaa": "american assosciation against acronym abuse",
"aabf": "as a best friend",
"aactually": "actually",
"aaf": "as a friend",
"aak": "alive and kicking",
"aamof": "as a matter of fact",
"aatf": "always and totally forever",
"aatw": "all around the world",
"abd": "already been done",
"abend": "absent by enforced net deprivation",
"abft": "about laughing time",
"abooout": "about",
"aboot": "about",
"abouut": "about",
"abreev": "abbreviation",
"absnt": "absent",
"absoulutly": "absolutely",
"abt": "about",
"abwt": "about",
"acc": "account",
"accdg": "accdg",
"acct": "account",
"acgaf": "absolutely couldn't give a laugh",
"ack": "acknowledged",
"ackward": "awkward",
"acounts": "accounts",
"adamsonians": "adamsonians",
"addded": "added",
"addy": "address",
"adhd": "attention deficit hyperactivity disorder",
"adl": "all day long",
"admin": "administrator",
"administr": "administer",
"adn": "any day now",
"adrs": "Address",
"aeap": "as early as possible",
"af": "assface",
"afaiaa": "as far as i am aware",
"afaic": "as far as i'm concerned",
"afaicr": "as far as i can remember",
"afaics": "as far as i can see",
"afaict": "as far as i can tell",
"afaik": "as far as i know",
"afair": "as far as i recall",
"afaiu": "as far as i understand",
"afc": "away from computer",
"afcpmgo": "away from computer parents may go on",
"affectees": "affectees",
"afg": "away from game",
"afk": "away from keyboard",
"afkb": "away from keyboard",
"agn": "again",
"ah": "ass hole",
"ahalf": "half",
"ahole": "asshole",
"ai": "artificial intelligence",
"aiadw": "all in a days work",
"aiamu": "and i'm a monkey's uncle",
"aicmfp": "and i claim my five pounds",
"aight": "alright",
"aightz": "alright",
"aiic": "as if i care",
"aiid": "and if i did",
"aiight": "all right",
"aim": "aol instant messanger",
"ain't": "am not",
"aite": "alright",
"aitr": "adult in the room",
"aiui": "as i understand it",
"aiws": "as i was saying",
"ajax": "asynchronous javascript and xml",
"ajirni": "ajirni",
"aka": "also known as",
"akp": "alexander king project",
"akpcep": "alexander king project cultural engineering project",
"alabam": "alabama",
"alays": "always",
"alaytm": "as long as you tell me",
"albume": "album",
"albumm": "album",
"albumn": "album",
"albumu": "album",
"alhamdhu": "alhamdhu lillah",
"allahumma": "allahumma",
"allerqic": "allergic",
"allowence": "allowance",
"alol": "actually laughing out loud",
"alongg": "along",
"alot": "a lot",
"alotbsol": "always look on the bright side of life",
"alraedy": "already",
"alrdy": "already",
"alright": "all right",
"alrite": "alright",
"alrt": "alright",
"alryt": "alright",
"ama": "ask me anything",
"amamos": "ammo",
"amazinger": "amazing",
"amazinggg": "amazing",
"ambas": "ambassador",
"ambulence": "ambulance",
"amember": "member",
"amf": "adios motherlaugher",
"amiic": "ask me if i care",
"amiigaf": "ask me if i give a laugh",
"aml": "all my love",
"ammounts": "amounts",
"amoung": "among",
"ams": "ask me something",
"amsp": "ask me something personal",
"andersson": "anderson",
"anfgf": "anfgf",
"anim8": "animate",
"anl": "all night long",
"anlsx": "anal sex",
"annoyingg": "annoying",
"anon": "anonymous",
"answerin": "answering",
"antibotics": "antibiotics",
"antigonish": "antagonist",
"anuda": "another",
"anw": "anyways",
"anwwi": "alright now where was i",
"any1": "anyone",
"anythingrt": "anything",
"anywaaay": "anyway",
"anywaz": "anyways",
"anywys": "anyway",
"anyyone": "anyone",
"aob": "any other business",
"aoc": "age of consent",
"aoe": "age of empires",
"aon": "all or nothing",
"aos": "adult over shoulder",
"aota": "all of the above",
"aoto": "amen on that one",
"aoys": "angel on your shoulder",
"aperantly": "apparently",
"api": "application program interface",
"apoc": "apocalypse",
"apod": "another point of discussion",
"apoiam": "apoiam",
"app": "application",
"apparentally": "apparently",
"appened": "happened",
"apprciate": "appreciate",
"approa": "approach",
"appt": "appointment",
"aprece8": "appreciate",
"apreci8": "appreciate",
"aproval": "approval",
"apu": "as per usual",
"aqap": "as quick as possible",
"ar": "are",
"arcserve": "reserve",
"arnd": "around",
"arreee": "are",
"arse": "ass",
"arsed": "bothered",
"arvo": "afternoon",
"asafp": "as soon as laughing possible",
"asaik": "as soon as i know",
"asain": "asian",
"asap": "as soon as possible",
"asarbambtaa": "all submissions are reviewed by a moderator before they are added.",
"asbmaetp": "acronyms should be memorable and easy to pronounce",
"ase": "age, sex, ethnicity",
"asean": "association of southeast asian nations",
"asf": "and so forth",
"ashl": "asshole",
"ashole": "asshole",
"asic": "application specific integrated circuit",
"asl": "age, sex, location",
"aslo": "age sex location orientation",
"aslop": "age sex location orientation picture",
"aslp": "age, sex, location, picture",
"aslr": "age sex location race",
"aslrp": "age, sex, location, race, picture",
"asr": "age sex race",
"assclowns": "assclown",
"asshle": "asshole",
"assholish": "asshole",
"astaghfirullah": "i ask allah forgiveness",
"atb": "all the best",
"ater": "after",
"atfp": "answer the laughing phone",
"atl": "atlanta",
"atlantaa": "atlanta",
"atlantica": "atlantic",
"atm": "at the moment",
"ato": "against the odds",
"atop": "at time of posting",
"atp": "answer the phone",
"atq": "answer the question",
"atracted": "attracted",
"atst": "at the same time",
"attackkk": "attack",
"attitudeee": "attitude",
"attn": "attention",
"attotp": "at the time of this post",
"atw": "all the way",
"aty": "according to you",
"audy": "are you done yet?",
"aufm": "are you laughing mental",
"aufsm": "are you laughing shiting me",
"aup": "acceptable use policy",
"av7x": "avenged sevenfold",
"aven": "avenue",
"avgn": "angry video game nerd",
"avie": "avatar",
"avsb": "a very special boy",
"avtr": "avatar",
"avvie": "avatar",
"avy": "avatar",
"awb": "acquaintance with benefits",
"awes": "awesome",
"aweseome": "awesome",
"awit": "wait",
"awk": "awkward",
"awnsers": "answers",
"awol": "absent without leave",
"awsic": "and why should i care",
"awsm": "awesome",
"awsome": "awesome",
"ayagob": "are you a girl or boy",
"ayb": "all your base",
"aybab2m": "all your base are belong 2 me",
"aybab2u": "all your base are belong to us",
"aybabtg": "all your base are belong to google",
"aybabtu": "all your base are belong to us",
"ayc": "awaiting your comments",
"ayd": "are you done",
"aydy": "are you done yet",
"ayec": "at your earliest convenience",
"ayfk": "are you laughing kidding",
"ayfkm": "are you laughing kidding me",
"ayfr": "are you for real",
"ayfs": "are you laughing serious",
"ayk": "are you kidding",
"aykm": "are you kidding me",
"ayl": "are you listening",
"aymf": "are you my friend",
"ayok": "are you okay",
"aypi": "and your point is",
"ays": "are you serious",
"aysm": "are you shitting me?",
"ayst": "are you still there",
"ayt": "are you there",
"ayte": "alright",
"aytf": "are you there laugher",
"ayty": "are you there yet",
"ayw": "as you wish",
"azhol": "asshole",
"azn": "asian",
"azz": "ass",
"b&": "banned",
"b'day": "birthday",
"b-cuz": "because",
"b-day": "birthday",
"b.f.f.": "best friend forever",
"b.s.": "bullshit",
"b/c": "because",
"b/cos": "because",
"b/g": "background",
"b/s/l": "bisexual/straight/lesbian",
"b/t": "between",
"b/w": "between",
"b00n": "new person",
"b00t": "boot",
"b0rked": "broken",
"b1tch": "bitch",
"b2b": "business to business",
"b2u": "back to you",
"b2w": "back to work",
"b3": "be",
"b4": "before",
"b4n": "bye for now",
"b4u": "before you",
"b4ug": "before you go",
"b4ul": "before you leave",
"b8": "bait",
"b82rez": "batteries",
"b8rez": "batteries",
"b@": "banned",
"bab": "big ass boobs",
"babi": "baby",
"backbreaker": "backpacker",
"backloggery": "backlog",
"bacons": "bacon",
"badhega": "badhega",
"bae": "before anyone else",
"baf": "bring a friend",
"baggkyko": "be a good girl, keep your knickers on",
"bagyo": "bagyo",
"bah": "i don't really care",
"bai": "bye",
"bak": "back",
"bakk": "back",
"balz": "balls",
"bamf": "bad ass mother laugher",
"bamofo": "bitch ass mother laugher",
"bandwaggon": "bandwagon",
"bangalter": "bangalore",
"bann": "ban",
"barelyy": "barely",
"basment": "basement",
"battl": "battle",
"bau": "back at you",
"bb": "bye bye",
"bb4h": "bros before hoes",
"bb4n": "bye-bye for now",
"bbbj": "bare back blow job",
"bbe": "baby",
"bbf": "best boy friend",
"bbfn": "bye bye for now",
"bbfs": "best boyfriends",
"bbfu": "be back for you",
"bbg": "baby girl",
"bbi": "baby",
"bbiab": "be back in a bit",
"bbiaf": "be back in a few",
"bbialb": "be back in a little bit",
"bbiam": "be back in a minute",
"bbias": "be back in a second",
"bbiaw": "be back in a while",
"bbifs": "be back in a few seconds",
"bbilb": "be back in a little bit",
"bbilfm": "be back in like five minutes",
"bbim": "be back in minute",
"bbk": "be back, ok?",
"bbl": "be back later",
"bbl8a": "be back later",
"bblig": "be back later i guess",
"bbm": "blackberry messenger",
"bbml": "be back much later",
"bbn": "be back never",
"bbol": "be back online later",
"bbout": "bout",
"bbp": "banned by parents",
"bbq": "be back quick",
"bbrs": "be back really soon",
"bbs": "be back soon",
"bbsts": "be back some time soon",
"bbt": "be back tomorrow",
"bbtn": "be back tonite",
"bbut": "but",
"bbvl": "be back very later",
"bbw": "be back whenever",
"bbwb": "best buddy with boobs",
"bbwe": "be back whenever",
"bbwl": "be back way later",
"bby": "baby",
"bbz": "babes",
"bc": "because",
"bch": "bitch",
"bck": "back",
"bcnu": "be seeing you",
"bcnul8r": "be seeing you later",
"bcoz": "because",
"bcurl8": "because you're late.",
"bcuz": "because",
"bd": "birthday",
"bday": "birthday",
"bdayy": "day",
"bdfl": "benevolent dictator for life",
"be4": "before",
"beatch": "bitch",
"bebe": "baby",
"becaus": "because",
"becos": "because",
"becoz": "because",
"becuse": "because",
"becuz": "because",
"beech": "bitch",
"beeeautiful": "beautiful",
"beeoch": "bitch",
"beeting": "beating",
"beezy": "bitch",
"beilieve": "believe",
"benfit": "benefit",
"beome": "become",
"beotch": "bitch",
"besos": "kisses",
"bestie": "best friend",
"betch": "bitch",
"betcha": "bet you",
"betches": "bitches",
"bettr": "better",
"bewb": "boob",
"bewbs": "boobs",
"bewbz": "boobs",
"bewt": "boot",
"beyatch": "bitch",
"beyotch": "bitch",
"bezzie": "best friend",
"bf": "boyfriend",
"bf's": "boyfriend's",
"bf+gf": "boyfriend and girlfriend",
"bf4e": "best friends for ever",
"bf4eva": "best friends forever",
"bf4l": "best friends for life",
"bfam": "brother from another mother",
"bfd": "big laughing deal",
"bfe": "bum laugh egypt",
"bff": "best friend forever",
"bffa": "best friends for always",
"bffaa": "best friends forever and always",
"bffae": "best friends forever and ever",
"bffaw": "best friends for a while",
"bffe": "best friends forever",
"bffeae": "best friend for ever and ever",
"bffene": "best friends for ever and ever",
"bffl": "best friends for life",
"bffn": "best friends for now",
"bfftddup": "best friends forever till death do us part",
"bfg": "big laughing gun",
"bfh": "bitch from hell",
"bfhd": "big fat hairy deal",
"bfitww": "best friend in the whole world",
"bfn": "bye for now",
"bfs": "boyfriends",
"bft": "big laughing tits",
"bg": "background",
"bgsoftware": "software",
"bh": "bloody hell",
"bhasa": "bhasa",
"bhattarai": "first minister",
"bhoys": "boys",
"bhwu": "back home with you",
"bi": "bye",
"biab": "back in a bit",
"biach": "bitch",
"biaf": "back in a few",
"biatch": "bitch",
"bibi": "bye bye",
"bibifn": "bye bye for now",
"bicbw": "but i could be wrong",
"bich": "bitch",
"bigd": "big deal",
"biggets": "biggest",
"bii": "bye",
"biiirthday": "birthday",
"bilf": "brother i'd like to laugh",
"bilu": "baby i love you",
"bily": "billy",
"bion": "believe it or not.",
"biotch": "bitch",
"bioya": "blow it out your ass",
"biscuts": "biscuits",
"bish": "bitch",
"bitd": "back in the day",
"bitz": "neighborhood",
"biw": "boss is watching",
"biwm": "bisexual white male",
"biz": "business",
"bizatch": "bitch",
"bizi": "busy",
"biznatch": "bitch",
"biznitch": "bitch",
"bizzle": "bitch",
"bj": "blowjob",
"bk": "back",
"bka": "better known as",
"bl": "bad luck",
"blacke": "black",
"bldgs": "buildings",
"bleme": "blog meme",
"bleve": "believe",
"blg": "blog",
"blh": "bored like hell",
"bling-bling": "jewelry",
"blj": "blowjob",
"bljb": "blowjob",
"blk": "black",
"blkm": "black male",
"blnt": "better luck next time",
"blog": "web log",
"blogger": "web logger",
"blu": "blue",
"blujays": "blujays",
"bm": "bite me",
"bm&y;": "between you and me",
"bm4l": "best mates for life",
"bma": "best mates always",
"bmay": "between me and you",
"bmf": "be my friend",
"bmfe": "best mates forever",
"bmfl": "best mates for life",
"bmha": "bite my hairy ass",
"bml": "bless my life",
"bmoc": "big man on campus",
"bmttveot": "best mates till the very end of time",
"bmvp": "be my valentine please",
"bn": "been",
"bndm3ovr": "bend me over",
"bng": "being",
"bnib": "brand new in box",
"bnol": "be nice or leave",
"bnr": "banner",
"bo": "body odour",
"boati": "bend over and take it",
"bobfoc": "body of baywatch, face of crimewatch",
"bobw": "best of both worlds",
"boffum": "both of them",
"bofh": "b*****d operator from hell",
"bogo": "buy one get one",
"bogof": "buy one get one free",
"bogsatt": "bunch of guys sitting around the table",
"bohic": "bend over here it comes",
"bohica": "bend over, here it comes again",
"boi": "boy",
"boilin": "boiling",
"bol": "barking out loud",
"bollywoods": "hollywood",
"bonr": "boner",
"boomm": "bored out of my mind",
"bootyyy": "booty",
"bord": "bored",
"borring": "boring",
"bos": "boss over shoulder",
"botoh": "but on the other hand",
"bout": "about",
"bovered": "bothered",
"bowt": "about",
"boxor": "box",
"bpot": "big pair of tits",
"br": "bathroom",
"braaazil": "brazil",
"brah": "brother",
"branchless": "branches",
"brb": "be right back",
"brbbrb": "br right back bath room break",
"brbf": "be right back laugher",
"brbg2p": "be right back, got to pee",
"brbigtp": "be right back, i got to pee.",
"brbl": "be right back later",
"brbmf": "be right back mother laugher",
"brbn2gbr": "be right back, i need to go to the bathroom",
"brbs": "be right back soon",
"brbts": "be right back taking shit",
"brd": "bored",
"breaak": "break",
"breah": "breath",
"breakinq": "breaking",
"breas": "breasts",
"breat": "breast",
"brfb": "be right laughing back",
"brgds": "best regards",
"brgy": "barangay",
"brgys": "barangay",
"brh": "be right here",
"bridgepoint": "bridgeport",
"brids": "birds",
"briiing": "bring",
"britis": "british",
"brk": "break",
"bro": "brother",
"bronz": "bronze",
"bros": "brothers",
"broseph": "brother",
"brotheeer": "brother",
"brough": "brought",
"brougt": "brought",
"brover": "brother",
"brt": "be right there",
"bruh": "brother",
"bruhh": "brother",
"brutalll": "brutal",
"bruv": "brother",
"bruva": "brother",
"bruz": "brothers",
"bs": "bullshit",
"bsmfh": "b*****d system manager from hell",
"bsod": "blue screen of death",
"bsomn": "blowing stuff out my nose",
"bstfu": "bitch shut the laugh up",
"bstrd": "b*****d",
"bsx": "bisexual",
"bsxc": "be sexy",
"bt": "bit torrent",
"btb": "by the by",
"btch": "bitch",
"btcn": "better than chuck norris",
"btd": "bored to death",
"btdt": "been there done that",
"btdtgtts": "been there, done that, got the t-shirt",
"btfl": "beautiful",
"btfo": "back the laugh off",
"btfw": "by the laughing way",
"btias": "be there in a second",
"btm": "bottom",
"btr": "better",
"bts": "be there soon",
"btsoom": "beats the shit out of me",
"bttt": "been there, tried that",
"bttyl": "be talking to you later",
"btw": "by the way",
"btween": "between",
"btwilu": "by the way i love you",