-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathSiteList.json
1022 lines (1022 loc) · 37 KB
/
SiteList.json
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
{
"Sites": {
"0": {
"0": [ "Brazzers", "https://www.brazzers.com", "https://site-api.project1service.com" ],
"1": [ "Asses In Public" ],
"2": [ "Baby Got Boobs" ],
"3": [ "Big Butts Like It Big" ],
"4": [ "Big Tits at School" ],
"5": [ "Big Tits at Work" ],
"6": [ "Big Tits in Sports" ],
"7": [ "Big Tits in Uniform" ],
"8": [ "Big Wet Butts" ],
"9": [ "Busty and Real" ],
"10": [ "Busty Z" ],
"11": [ "Butts and Blacks" ],
"12": [ "CFNM Clothed Female Male Nude" ],
"13": [ "Day With A Porn Star" ],
"14": [ "Dirty Masseur" ],
"15": [ "Doctor Adventures" ],
"16": [ "Brazzers Exxtra" ],
"17": [ "Hot and Mean" ],
"18": [ "Hot Chicks Big Asses" ],
"19": [ "Milfs Like It Big" ],
"20": [ "Mommy Got Boobs" ],
"21": [ "Moms in Control" ],
"22": [ "Pornstars Like It Big" ],
"23": [ "Racks and Blacks" ],
"24": [ "Real Wife Stories" ],
"25": [ "Shes Gonna Squirt" ],
"26": [ "Teens Like It Big" ],
"27": [ "Teens Like It Black" ],
"28": [ "ZZ Series" ],
},
"1": {
"0": [ "Bang", "https://www.bang.com", "https://617fb597b659459bafe6472470d9073a.us-east-1.aws.found.io/videos/video/_search" ],
},
"2": {
"0": [ "Bellesa Films", "https://www.bellesafilms.com", "https://site-api.project1service.com" ],
"1": [ "Bellesa House" ],
"2": [ "Property Sex", "https://www.propertysex.com" ],
"3": [ "TransAngels", "https://www.transangels.com" ],
"4": [ "FamilyHookups", "https://www.familyhookups.com" ],
"5": [ "Erito", "https://www.erito.com" ],
"6": [ "Look At Her Now", "https://www.lookathernow.com" ],
"7": [ "Bi Empire", "https://www.biempire.com" ],
"8": [ "Deviant Hardcore", "https://www.devianthardcore.com" ],
"9": [ "She Will Cheat", "https://www.shewillcheat.com" ],
"10": [ "Kinky Spa", "https://www.kinkyspa.com" ],
"11": [ "Transsensual", "https://www.transsensual.com" ],
"12": [ "Lil Humpers", "https://www.lilhumpers.com" ],
"13": [ "Family Sinners", "https://www.familysinners.com" ],
"14": [ "DigitalPlayground", "https://www.digitalplayground.com" ],
"15": [ "Why Not Bi", "https://whynotbi.com" ],
"16": [ "HentaiPros", "https://hentaipros.com" ],
"17": [ "Milfed", "https://milfed.com" ],
},
"3": {
"0": [ "Reality Kings", "https://www.realitykings.com", "https://site-api.project1service.com" ],
"1": [ "40 Inch Plus" ],
"2": [ "8th Street Latinas" ],
"3": [ "Bad Tow Truck" ],
"4": [ "Big Naturals" ],
"5": [ "Big Tits Boss" ],
"6": [ "Bikini Crashers" ],
"7": [ "Captain Stabbin" ],
"8": [ "CFNM Secret" ],
"9": [ "Cum Fiesta" ],
"10": [ "Cum Girls" ],
"11": [ "Dangerous Dongs" ],
"12": [ "Euro Sex Parties" ],
"13": [ "Extreme Asses" ],
"14": [ "Extreme Naturals" ],
"15": [ "First Time Auditions" ],
"16": [ "Flower Tucci" ],
"17": [ "Girls of Naked" ],
"18": [ "Happy Tugs" ],
"19": [ "HD Love" ],
"20": [ "Hot Bush" ],
"21": [ "In the VIP" ],
"22": [ "Mike in Brazil" ],
"23": [ "Mikes Apartment" ],
"24": [ "Milf Hunter" ],
"25": [ "Milf Next Door" ],
"26": [ "Moms Bang Teens" ],
"27": [ "Moms Lick Teens" ],
"28": [ "Money Talks" ],
"29": [ "Monster Curves" ],
"30": [ "No Faces" ],
"31": [ "Pure 18" ],
"32": [ "Real Orgasms" ],
"33": [ "RK Prime" ],
"34": [ "Round and Brown" ],
"35": [ "Saturday Night Latinas" ],
"36": [ "See My Wife" ],
"37": [ "Sneaky Sex" ],
"38": [ "Street BlowJobs" ],
"39": [ "Team Squirt" ],
"40": [ "Teens Love Huge Cocks" ],
"41": [ "Top Shelf Pussy" ],
"42": [ "Tranny Surprise" ],
"43": [ "VIP Crew" ],
"44": [ "We Live Together" ],
"45": [ "Wives in Pantyhose" ],
"46": [ "GF Revenge" ],
"47": [ "Black GFs" ],
"48": [ "Dare Dorm" ],
"49": [ "Crazy Asian GFs" ],
"50": [ "Crazy College GFs" ],
"51": [ "Horny Birds" ],
"52": [ "Reckless in Miami" ],
},
"4": {
"0": [ "Mofos", "https://www.mofos.com", "https://site-api.project1service.com" ],
"1": [ "Share My BF" ],
"2": [ "Don't Break Me" ],
"3": [ "I Know That Girl" ],
"4": [ "Let's Try Anal" ],
"5": [ "Pervs On Patrol" ],
"6": [ "Stranded Teens" ],
"7": [ "Mofos B Sides" ],
"8": [ "Shes a Freak" ],
"9": [ "Public Pickups" ],
"10": [ "Latina Sex Tapes" ],
"11": [ "Girls Gone Pink" ],
"12": [ "Real Slut Party" ],
"13": [ "Mofos Lab" ],
"14": [ "Pornstar Vote" ],
"15": [ "The Sex Scout" ],
"16": [ "Project RV" ],
"17": [ "Milfs Like It Black" ],
"18": [ "Ebony Sex Tapes" ],
"19": [ "Busted Babysitters" ],
},
"5": {
"0": [ "Twistys", "https://www.twistys.com", "https://site-api.project1service.com" ],
"1": [ "WhenGirlsPlay" ],
"2": [ "MomKnowsBest" ],
"3": [ "TwistysHard" ],
"4": [ "TurningTwistys" ],
},
"6": {
"0": [ "Babes", "https://www.babes.com", "https://site-api.project1service.com" ],
"1": [ "Babes Unleashed" ],
"2": [ "Black is Better" ],
"3": [ "Elegant Anal" ],
"4": [ "Office Obsession" ],
"5": [ "Stepmom Lessons" ],
},
"7": {
"0": [ "SexyHub", "https://www.sexyhub.com", "https://site-api.project1service.com" ],
"1": [ "Dane Jones" ],
"2": [ "Fitness Rooms" ],
"3": [ "Girlfriends.xxx" ],
"4": [ "Lesbea" ],
"5": [ "Massage Rooms" ],
"6": [ "MomXXX" ],
},
"8": {
"0": [ "FakeHub", "https://www.fakehub.com", "https://site-api.project1service.com" ],
"1": [ "Fake Taxi" ],
"2": [ "Fakehub Originals" ],
"3": [ "Public Agent" ],
"4": [ "Fake Agent" ],
"5": [ "Female Agent" ],
"6": [ "Fake Hospital" ],
"7": [ "Fake Agent UK" ],
"8": [ "Fake Cop" ],
"9": [ "Female Fake Taxi" ],
"10": [ "Fake Driving School" ],
"11": [ "Fake Hostel" ],
},
"9": {
"0": [ "Mile High Media", "https://www.milehighmedia.com", "https://site-api.project1service.com" ],
"1": [ "Sweetheart Video" ],
"2": [ "Reality Junkies" ],
"3": [ "SweetSinner" ],
"4": [ "Doghouse Digital" ],
},
"10": {
"0": [ "Naughty America", "https://www.naughtyamerica.com", "https://i6p9q9r18e-dsn.algolia.net/1/indexes/*/queries" ],
"1": [ "My Friends Hot Mom" ],
"2": [ "My First Sex Teacher" ],
"3": [ "Seduced By A Cougar" ],
"4": [ "My Daughters Hot Friend" ],
"5": [ "My Wife is My Pornstar" ],
"6": [ "Tonights Girlfriend Classic" ],
"7": [ "Wives on Vacation" ],
"8": [ "My Sisters Hot Friend" ],
"9": [ "Naughty Weddings" ],
"10": [ "Dirty Wives Club" ],
"11": [ "My Dads Hot Girlfriend" ],
"12": [ "My Girl Loves Anal" ],
"13": [ "Lesbian Girl on Girl" ],
"14": [ "Naughty Office" ],
"15": [ "I have a Wife" ],
"16": [ "Naughty Bookworms" ],
"17": [ "Housewife 1 on 1" ],
"18": [ "My Wifes Hot Friend" ],
"19": [ "Latin Adultery" ],
"20": [ "Ass Masterpiece" ],
"21": [ "2 Chicks Same Time" ],
"22": [ "My Friends Hot Girl" ],
"23": [ "Neighbor Affair" ],
"24": [ "My Girlfriends Busty Friend" ],
"25": [ "Naughty Athletics" ],
"26": [ "My Naughty Massage" ],
"27": [ "Fast Times" ],
"28": [ "The Passenger" ],
"29": [ "Milf Sugar Babes Classic" ],
"30": [ "Perfect Fucking Strangers Classic" ],
"31": [ "Asian 1 on 1" ],
"32": [ "American Daydreams" ],
"33": [ "SoCal Coeds" ],
"34": [ "Naughty Country Girls" ],
"35": [ "Diary of a Milf" ],
"36": [ "Naughty Rich Girls" ],
"37": [ "My Naughty Latin Maid" ],
"38": [ "Diary of a Nanny" ],
"39": [ "Naughty Flipside" ],
"40": [ "Live Party Girl" ],
"41": [ "Live Naughty Student" ],
"42": [ "Live Naughty Secretary" ],
"43": [ "Live Gym Cam" ],
"44": [ "Live Naughty Teacher" ],
"45": [ "Live Naughty Milf" ],
"46": [ "Live Naughty Nurse" ],
"47": [ "Big Cock Bully" ],
"48": [ "LA Sluts" ],
"49": [ "Slut Stepsister" ],
"50": [ "Teens Love Cream" ],
"51": [ "Latina Stepmom" ],
"52": [ "Anal College" ],
"53": [ "Watch Your Wife" ],
"54": [ "Slut Stepmom" ],
"55": [ "Sleazy Stepdad" ],
"56": [ "Open Family" ],
"57": [ "Watch Your Mom" ],
"58": [ "Show My BF" ],
"59": [ "Naughty America VR" ],
},
"11": {
"0": [ "Adult Time", "https://freetour.adulttime.com", "https://tsmkfa364q-3.algolianet.com/1/indexes/*/queries" ],
"1": [ "Evil Angel", "https://www.evilangel.com" ],
"2": [ "Pure Taboo", "https://www.puretaboo.com" ],
"3": [ "Burning Angel", "https://www.burningangel.com" ],
"4": [ "Devil's Film", "https://www.devilsfilm.com" ],
"5": [ "Rocco Siffredi", "https://www.roccosiffredi.com" ],
"6": [ "Gender X", "https://www.genderxfilms.com" ],
"7": [ "Girlfriends Films", "http://www.girlfriendsfilms.com" ],
"8": [ "Wicked", "http://www.wicked.com" ],
"9": [ "Blowpass", "https://www.blowpass.com" ],
"10": [ "Throated", "https://www.throated.com" ],
"11": [ "Only Teen Blowjobs", "https://www.onlyteenblowjobs.com" ],
"12": [ "Immoral Live", "https://www.immorallive.com" ],
"13": [ "Mommy Blows Best", "https://www.mommyblowsbest.com" ],
"14": [ "My Pervy Family", "https://www.mypervyfamily.com" ],
"15": [ "XEmpire", "https://www.xempire.com" ],
},
"12": {
"0": [ "Girlsway", "https://www.girlsway.com", "https://tsmkfa364q-3.algolianet.com/1/indexes/*/queries" ],
"1": [ "Mommys Girl" ],
"2": [ "Web Young" ],
"3": [ "Girls Try Anal" ],
"4": [ "Sextape Lesbians" ],
"5": [ "Girlsway Originals" ],
"6": [ "GirlCore" ],
"7": [ "Moms On Moms" ],
"8": [ "We Like Girls" ],
},
"13": {
"0": [ "21Naturals", "https://www.21naturals.com", "https://tsmkfa364q-3.algolianet.com/1/indexes/*/queries" ],
"1": [ "21FootArt" ],
"2": [ "21EroticAnal" ],
},
"14": {
"0": [ "21Sextury", "https://www.21sextury.com", "https://tsmkfa364q-3.algolianet.com/1/indexes/*/queries" ],
"1": [ "Anal Teen Angels" ],
"2": [ "Deepthroat Frenzy" ],
"3": [ "DP Fanatics" ],
"4": [ "Footsie Babes" ],
"5": [ "Gapeland" ],
"6": [ "Lez Cuties" ],
"7": [ "Pix and Video" ],
"8": [ "Asshole Fever" ],
"9": [ "Butt Plays" ],
},
"15": {
"0": [ "21Sextreme", "https://www.21sextreme.com", "https://tsmkfa364q-3.algolianet.com/1/indexes/*/queries" ],
"1": [ "LustyGrandmas" ],
"2": [ "GrandpasFuckTeens" ],
"3": [ "TeachMeFisting" ],
"4": [ "Zoliboy" ],
"5": [ "DominatedGirls" ],
},
"16": {
"0": [ "Kink", "https://www.kink.com", "/search?q=" ],
"1": [ "Brutal Sessions" ],
"2": [ "Device Bondage" ],
"3": [ "Families Tied" ],
"4": [ "Hardcore Gangbang" ],
"5": [ "Hogtied" ],
"6": [ "Kink Features" ],
"7": [ "Kink University" ],
"8": [ "Public Disgrace" ],
"9": [ "Sadistic Rope" ],
"10": [ "Sex and Submission" ],
"11": [ "The Training of O" ],
"12": [ "The Upper Floor" ],
"13": [ "Water Bondage" ],
"14": [ "Everything Butt" ],
"15": [ "Foot Worship" ],
"16": [ "Fucking Machines" ],
"17": [ "TS Pussy Hunters" ],
"18": [ "TS Seduction" ],
"19": [ "Ultimate Surrender" ],
"20": [ "30 Minutes of Torment" ],
"21": [ "Bound Gods" ],
"22": [ "Bound in Public" ],
"23": [ "Butt Machine Boys" ],
"24": [ "Men on Edge" ],
"25": [ "Naked Kombat" ],
"26": [ "Divine Bitches" ],
"27": [ "Electrosluts" ],
"28": [ "Men in Pain" ],
"29": [ "Whipped Ass" ],
"30": [ "Wired Pussy" ],
"31": [ "Bound Gang Bangs" ],
"32": [ "Chantas Bitches" ],
"33": [ "Fucked and Bound" ],
"34": [ "Captive Male" ],
"35": [ "SubmissiveX" ],
"36": [ "Filthy Femdom" ],
},
"17": {
"0": [ "R18", "https://www.r18.com", "/common/search/searchword=" ],
},
"18": {
"0": [ "Femdom Empire", "https://femdomempire.com", "/tour/search.php?st=advanced&qany=" ],
"1": [ "Feminized", "http://feminized.com" ],
},
"19": {
"0": [ "Dogfart", "https://www.dogfartnetwork.com", "/tour/search.php?search=" ],
"1": [ "BlacksOnBlondes" ],
"2": [ "CuckoldSessions" ],
"3": [ "GloryHole" ],
"4": [ "BlacksOnCougars" ],
"5": [ "WeFuckBlackGirls" ],
"6": [ "WatchingMyMomGoBlack" ],
"7": [ "InterracialBlowbang" ],
"8": [ "CumBang" ],
"9": [ "InterracialPickups" ],
"10": [ "WatchingMyDaughterGoBlack" ],
"11": [ "ZebraGirls" ],
"12": [ "GloryHoleInitiations" ],
"13": [ "DogfartBehindTheScenes" ],
"14": [ "BlackMeatWhiteFeet" ],
"15": [ "SpringThomas" ],
"16": [ "KatieThomas" ],
"17": [ "RuthBlackwell" ],
"18": [ "CandyMonroe" ],
"19": [ "WifeWriting" ],
"20": [ "BarbCummings" ],
"21": [ "TheMinion" ],
"22": [ "BlacksOnBoys" ],
"23": [ "GloryholesAndHandjobs" ],
},
"20": {
"0": [ "PornPros", "https://www.pornpros.com", "/video/" ],
"1": [ "18YearsOld" ],
"2": [ "RealExGirlfriends" ],
"3": [ "MassageCreep" ],
"4": [ "DeepThroatLove" ],
"5": [ "TeenBFF" ],
"6": [ "ShadyPi" ],
"7": [ "CrueltyParty" ],
"8": [ "Disgraced18" ],
"9": [ "MilfHumiliation" ],
"10": [ "CumshotSurprise" ],
"11": [ "40ozBounce" ],
"12": [ "JurassicCock" ],
"13": [ "FreaksOfCock" ],
"14": [ "EuroHumpers" ],
"15": [ "FreaksOfBoobs" ],
"16": [ "CumDisgrace" ],
"17": [ "CockCompetition" ],
"18": [ "PimpParade" ],
"19": [ "SquirtDisgrace" ],
},
"21": {
"0": [ "POVD", "https://www.povd.com", "/video/" ],
"1": [ "Cum4K", "https://www.cum4k.com" ],
"2": [ "Exotic4k", "https://www.exotic4k.com" ],
"3": [ "Tiny4k", "https://www.tiny4k.com" ],
"4": [ "Lubed", "https://www.lubed.com" ],
"5": [ "PureMature", "https://www.puremature.com" ],
"6": [ "NannySpy", "https://www.nannyspy.com" ],
"7": [ "Holed", "https://www.holed.com" ],
"8": [ "CastingCouch-X", "https://www.castingcouch-x.com" ],
"9": [ "SpyFam", "https://www.spyfam.com" ],
"10": [ "MyVeryFirstTime", "https://www.myveryfirsttime.com" ],
"11": [ "Baeb", "https://www.baeb.com" ],
"12": [ "GirlCum", "https://www.girlcum.com" ],
"13": [ "BBCPie", "https://bbcpie.com" ],
},
"22": {
"0": [ "Bang Bros", "https://bangbros.com", "/search/" ],
"1": [ "Ass Parade" ],
"2": [ "AvaSpice" ],
"3": [ "Back Room Facials" ],
"4": [ "Backroom MILF" ],
"5": [ "Ball Honeys" ],
"6": [ "Bang Bus" ],
"7": [ "Bang Casting" ],
"8": [ "Bang POV" ],
"9": [ "Bang Tryouts" ],
"10": [ "BangBros 18" ],
"11": [ "BangBros Angels" ],
"12": [ "Bangbros Clips" ],
"13": [ "BangBros Remastered" ],
"14": [ "Big Mouthfuls" ],
"15": [ "Big Tit Cream Pie" ],
"16": [ "Big Tits Round Asses" ],
"17": [ "BlowJob Fridays" ],
"18": [ "Blowjob Ninjas" ],
"19": [ "Boob Squad" ],
"20": [ "Brown Bunnies" ],
"21": [ "Can He Score" ],
"22": [ "Bang Casting" ],
"23": [ "Chongas" ],
"24": [ "Colombia Fuck Fest" ],
"25": [ "Dirty World Tour" ],
"26": [ "Dorm Invasion" ],
"27": [ "Facial Fest" ],
"28": [ "Fuck Team Five" ],
"29": [ "Glory Hole Loads" ],
"30": [ "Latina Rampage" ],
"31": [ "Living With Anna" ],
"32": [ "Magical Feet" ],
"33": [ "MILF Lessons" ],
"34": [ "Milf Soup" ],
"35": [ "MomIsHorny" ],
"36": [ "Monsters of Cock" ],
"37": [ "Mr CamelToe" ],
"38": [ "Mr Anal" ],
"39": [ "My Dirty Maid" ],
"40": [ "My Life In Brazil" ],
"41": [ "Newbie Black" ],
"42": [ "Party of 3" ],
"43": [ "Pawg" ],
"44": [ "Penny Show" ],
"45": [ "Porn Star Spa" ],
"46": [ "Power Munch" ],
"47": [ "Public Bang" ],
"48": [ "Slutty White Girls" ],
"49": [ "Stepmom Videos" ],
"50": [ "Street Ranger" ],
"51": [ "Tugjobs" ],
"52": [ "Working Latinas" ],
},
"23": {
"0": [ "Mylf", "https://mylf.com", "/movies/" ],
"1": [ "MylfBoss" ],
"2": [ "MylfBlows" ],
"3": [ "Milfty" ],
"4": [ "Got Mylf" ],
"5": [ "Mom Drips" ],
"6": [ "Mylfed" ],
"7": [ "Milf Body" ],
"8": [ "Lone Milf" ],
"9": [ "Full Of JOI" ],
"10": [ "Mylfwood" ],
"11": [ "ShoplyfterMylf", "https://www.shoplyftermylf.com" ],
"12": [ "Mylf x Joybear" ],
"13": [ "Mylf x Teamskeet" ],
"14": [ "Mylf x Hussie Pass" ],
"15": [ "Mylf Of The Month" ],
"16": [ "Mylfselects" ],
"17": [ "Mylf x Lady Fyre" ],
"18": [ "Mylf X CamSoda" ],
"19": [ "Mylf X Fucking Awesome" ],
"20": [ "Mylf X James Deen" ],
"21": [ "Mylf X Mindi Mink" ],
"22": [ "Mylf X Owen Gray" ],
"23": [ "Mylf X SpankMonster" ],
"24": [ "StayHomeMilf" ],
"25": [ "Mylfdom", "https://www.mylfdom.com" ],
"26": [ "Anal Mom", "https://www.analmom.com" ],
},
"24": {
"0": [ "TeamSkeet", "https://www.teamskeet.com", "/movies/" ],
"1": [ "Exxxtra Small", "https://www.exxxtrasmall.com" ],
"2": [ "Teen Pies", "https://www.teenpies.com" ],
"3": [ "Innocent High", "https://www.innocenthigh.com" ],
"4": [ "Teen Curves", "https://www.teencurves.com" ],
"5": [ "CFNM Teens" ],
"6": [ "Teens Love Anal", "https://www.teensloveanal.com" ],
"7": [ "My Babysitters Club", "https://www.mybabysittersclub.com" ],
"8": [ "She's New" ],
"9": [ "Teens Do Porn" ],
"10": [ "POV Life" ],
"11": [ "The Real Workout" ],
"12": [ "This Girl Sucks" ],
"13": [ "Teens Love Money" ],
"14": [ "Oye Loca" ],
"15": [ "Titty Attack" ],
"16": [ "Teeny Black" ],
"17": [ "Lust HD" ],
"18": [ "Rub A Teen" ],
"19": [ "Her Freshman Year" ],
"20": [ "Self Desire" ],
"21": [ "Solo Interviews" ],
"22": [ "Team Skeet Extras" ],
"23": [ "Dyked", "https://www.dyked.com" ],
"24": [ "Badmilfs", "https://www.badmilfs.com" ],
"25": [ "Gingerpatch" ],
"26": [ "BraceFaced" ],
"27": [ "TeenJoi", "https://www.teenjoi.com" ],
"28": [ "StepSiblings", "https://www.stepsiblings.com" ],
"29": [ "Black Valley Girls", "https://www.blackvalleygirls.com" ],
"30": [ "Sis Loves Me", "https://www.sislovesme.com" ],
"31": [ "Family Strokes", "https://www.familystrokes.com" ],
"32": [ "PervMom", "https://www.pervmom.com" ],
"33": [ "DadCrush", "https://www.dadcrush.com" ],
"34": [ "DaughterSwap", "https://www.daughterswap.com" ],
"35": [ "Foster Tapes", "https://www.fostertapes.com" ],
"36": [ "BFFs", "https://www.bffs.com" ],
"37": [ "Shoplyfter", "https://www.shoplyfter.com" ],
"38": [ "Little Asians", "https://www.littleasians.com" ],
"39": [ "Thickumz", "https://www.thickumz.com" ],
"40": [ "Teens Love Black Cocks", "https://www.teensloveblackcocks.com" ],
"41": [ "BBC Paradise", "https://www.bbcparadise.com" ],
"42": [ "Shes New" ],
"43": [ "TeamSkeet X BAEB" ],
"44": [ "TeamSkeet X Banana Fever" ],
"45": [ "TeamSkeet X CamSoda" ],
"46": [ "TeamSkeet X Club Sweethearts" ],
"47": [ "TeamSkeet X Eva Elfie" ],
"48": [ "TeamSkeet X Flora Rodgers" ],
"49": [ "TeamSkeet X Fucking Awesome" ],
"50": [ "TeamSkeet X James Deen" ],
"51": [ "TeamSkeet X Joy Bear" ],
"52": [ "TeamSkeet X Layna Landry" ],
"53": [ "TeamSkeet X LunaXJames" ],
"54": [ "TeamSkeet X Mickey Mod" ],
"55": [ "TeamSkeet X OG" ],
"56": [ "TeamSkeet X Reislin" ],
"57": [ "TeamSkeet X SpankMonster" ],
"58": [ "Freeuse Fantasy", "https://www.freeusefantasy.com" ],
"59": [ "Not My Grandpa", "https://www.notmygrandpa.com" ],
"60": [ "Perv Doctor", "http://pervdoctor.com" ],
"61": [ "Mom Swap", "http://momswap.com" ],
"62": [ "Freeuse MILF", "http://freeusemilf.com" ],
"63": [ "Sis Swap", "https://www.sisswap.com" ],
"64": [ "I Made Porn" ],
"65": [ "Perv Therapy", "http://www.pervtherapy.com" ],
"66": [ "Hijab Hookup", "http://www.hijabhookup.com" ],
"67": [ "Kissing Sis" ],
"68": [ "Tiny Sis", "https://www.tinysis.com" ],
},
"25": {
"0": [ "Jules Jordan", "https://www.julesjordan.com", "/trial/search.php?query=" ],
"1": [ "Manuel Ferrara", "https://www.manuelferrara.com" ],
"2": [ "The Ass Factory", "https://www.theassfactory.com" ],
"3": [ "Sperm Swallowers", "https://www.spermswallowers.com" ],
"4": [ "GirlGirl", "https://www.girlgirl.com" ],
},
"26": {
"0": [ "LegalPorno", "https://www.legalporno.com", "/search/?query=" ],
},
"27": {
"0": [ "Pornhub", "https://www.pornhub.com", "/video/search?search=" ],
},
"28": {
"0": [ "Nubile Films", "https://nubilefilms.com", "/video/" ],
"1": [ "Nubiles", "https://nubiles.net" ],
"2": [ "Bratty Sis", "https://brattysis.com", "/video/gallery/" ],
"3": [ "Anilos", "https://anilos.com" ],
"4": [ "Hot Crazy Mess", "https://hotcrazymess.com" ],
"5": [ "NF Busty", "https://nfbusty.com" ],
"6": [ "That Sitcom Show", "https://thatsitcomshow.com" ],
"7": [ "Nubiles ET", "https://nubileset.com" ],
"8": [ "Detention Girls", "https://detentiongirls.com" ],
"9": [ "Deep Lush", "https://deeplush.com" ],
"10": [ "FamilySwapXXX", "https://familyswap.xxx", "/video/watch/" ],
"11": [ "GirlsOnlyPorn", "https://girlsonlyporn.com", "/video/watch/" ],
},
"29": {
"0": [ "Let's Doe It", "https://letsdoeit.com", "/search.en.html?q=" ],
"1": [ "The White Boxxx" ],
"2": [ "Scam Angels" ],
"3": [ "Her Limit" ],
"4": [ "A Girl Knows" ],
"5": [ "Porno Academie" ],
"6": [ "Xchimera" ],
"7": [ "XXX Shades" ],
"8": [ "Bums Bus" ],
"10": [ "Bitches Abroad" ],
"11": [ "Relaxxxed" ],
"12": [ "My Naughty Album" ],
"13": [ "Bums Buero" ],
"14": [ "Quest for Orgasm" ],
"15": [ "Horny Hostel" ],
"16": [ "Kinky Inlaws" ],
"17": [ "Doe Projects" ],
"18": [ "Bums Besuch" ],
},
"30": {
"0": [ "Nubiles Porn", "https://nubiles-porn.com", "/video/" ],
"1": [ "Step Siblings Caught", "", "/video/website/16/" ],
"2": [ "Moms Teach Sex", "", "/video/website/8/" ],
"3": [ "Bad Teens Punished", "", "/video/website/18/" ],
"4": [ "Princess Cum", "", "/video/website/17/" ],
"5": [ "Nubiles Unscripted", "", "/video/website/22/" ],
"6": [ "Nubiles Casting", "", "/video/website/6/" ],
"7": [ "Petite HD Porn", "", "/video/website/9/" ],
"8": [ "Driver XXX", "", "/video/website/13/" ],
"9": [ "Petite Ballerinas Fucked", "", "/video/website/14/" ],
"10": [ "Teacher Fucks Teens", "", "/video/website/15/" ],
"11": [ "Bountyhunter Porn", "", "/video/website/23/" ],
"12": [ "Daddy's Lil Angel", "", "/video/website/25/" ],
"13": [ "My Family Pies", "", "/video/website/26/" ],
},
"31": {
"0": [ "Chicas Loca", "https://mamacitaz.com", "/search.en.html?q=" ],
"1": [ "Carne Del Mercado" ],
"2": [ "Tu Venganza" ],
"3": [ "Her Big Ass" ],
"4": [ "Operacion Limpieza" ],
},
"32": {
"0": [ "La Cochonne", "https://amateureuro.com", "/search.en.html?q=" ],
"1": [ "Las Folladoras" ],
"2": [ "Casting Francais" ],
"3": [ "La Novice" ],
"4": [ "Casting Alla Italiana" ],
"5": [ "Hausfrau Ficken" ],
"6": [ "Deutschland Report" ],
"7": [ "Reife Swinger" ],
"8": [ "Scambisti Maturi" ],
"9": [ "Sextape Germany" ],
"10": [ "XXX Omas" ],
},
"33": {
"0": [ "Crowd Bondage", "https://forbondage.com", "/search.en.html?q=" ],
"1": [ "Badtime Stories" ],
"2": [ "Special Feet Force" ],
},
"34": {
"0": [ "Los Consoladores", "https://vipsexvault.com", "/search.en.html?q=" ],
"1": [ "Fucked In Traffic" ],
"2": [ "Exposed Casting" ],
"3": [ "Porndoepedia" ],
"4": [ "PinUp Sex" ],
},
"35": {
"0": [ "Trans Bella", "https://transbella.com", "/search.en.html?q=" ],
"1": [ "Trans Taboo" ],
},
"36": {
"0": [ "Doe Girls", "https://doegirls.com", "/search.en.html?q=" ],
},
"37": {
"0": [ "Hegre", "http://www.hegre.com", "/search?q=" ],
},
"38": {
"0": [ "JAVLibrary", "http://www.javlibrary.com", "/en/vl_searchbyid.php?keyword=" ],
"1": [ "", "http://www.f50q.com" ],
},
"39": {
"0": [ "Caribbeancom", "https://en.caribbeancom.com", "/eng/search/?q=" ],
"1": [ "CaribbeancomPR", "https://en.caribbeancompr.com" ],
},
"40": {
"0": [ "Heyzo", "https://en.heyzo.com", "/search/{0}/1.html" ],
},
"41": {
"0": [ "PornCZ", "https://www.porncz.com", "/en/search-results?value=" ],
"1": [ "Czech Sex Casting", "https://czechsexcasting.com" ],
"2": [ "Sex With Muslims", "https://sexwithmuslims.com" ],
"3": [ "Sex in Taxi", "https://sexintaxi.com" ],
"4": [ "Fuckingstreet", "https://fuckingstreet.com" ],
"5": [ "Hunter POV", "https://hunterpov.com" ],
"6": [ "Czech Gypsies", "https://czechgypsies.com" ],
"7": [ "Dick On Trip", "https://dickontrip.com" ],
"8": [ "Czech Boobs", "https://czechboobs.com" ],
"9": [ "Czech Deviant", "https://czechdeviant.com" ],
"10": [ "Amateri Premium", "https://amateripremium.com" ],
"11": [ "Fuckingoffice", "https://fuckingoffice.com" ],
"12": [ "Czech Executor", "https://czechexecutor.com" ],
"13": [ "Czech HitchHikers", "https://czechhitchhikers.com" ],
"14": [ "Girls Take Away", "https://girlstakeaway.com" ],
"15": [ "Czech Escort Girls", "https://czechescortgirls.com" ],
"16": [ "Horny Doctor", "https://hornydoctor.com" ],
"17": [ "Lady Dee", "https://ladydee.xxx" ],
"18": [ "Teen From Bohemia", "https://teenfrombohemia.com" ],
"19": [ "Czech Real Dolls", "https://czechrealdolls.com" ],
"20": [ "Amateurs From Bohemia", "https://amateursfrombohemia.com" ],
"21": [ "Czech Anal Sex", "https://czechanalsex.com" ],
"22": [ "Dellai Twins", "https://dellaitwins.com" ],
"23": [ "Chloe Lamour", "https://chloelamour.com" ],
"24": [ "Public From Bohemia", "https://publicfrombohemia.com" ],
"25": [ "Susan Ayn", "https://susanayn.com" ],
"26": [ "Horny Girls CZ", "https://hornygirlscz.com" ],
"27": [ "Czech Sex Party", "https://czechsexparty.com" ],
"28": [ "Retro Porn VZ", "https://retroporncz.com" ],
"29": [ "Boys Fuck Milfs", "https://boysfuckmilfs.com" ],
"30": [ "Czech Bi Porn", "https://czechbiporn.com" ],
"31": [ "Czech Shemale", "https://czechshemale.com" ],
"32": [ "Czech Gay City", "https://czechgaycity.com" ],
},
"42": {
"0": [ "JAV" ],
},
"43": {
"0": [ "Freeones", "https://www.freeones.com", "/babes?q=" ],
},
"44": {
"0": [ "BlackedRaw", "https://www.blackedraw.com", "/graphql" ],
"1": [ "Blacked", "https://www.blacked.com" ],
"2": [ "Vixen", "http://www.vixen.com" ],
"3": [ "Tushy", "https://www.tushy.com" ],
"4": [ "TushyRaw", "https://www.tushyraw.com" ],
"5": [ "Deeper", "https://www.deeper.com" ],
},
"45": {
"0": [ "AdultDVDEmpire", "https://www.adultdvdempire.com", "/allsearch/search?fq=media_id:2&q=" ],
"1": [ "AdultEmpire", "https://www.adultempire.com" ],
},
"46": {
"0": [ "Deviante", "https://www.deviante.com", "https://site-api.project1service.com" ],
"1": [ "Forgive Me Father", "https://www.forgivemefather.com" ],
"2": [ "Sex Working", "https://www.sexworking.com" ],
"3": [ "Pretty Dirty Teens", "https://www.prettydirtyteens.com" ],
"4": [ "Love Her Ass", "https://www.loveherass.com" ],
"5": [ "Erotic Spice", "https://www.eroticspice.com" ],
},
"47": {
"0": [ "PornPortal", "https://pornportal.com", "https://site-api.project1service.com" ],
"1": [ "3dxstar Channel PornPortal", "https://3dxstar-channel.pornportal.com" ],
"2": [ "Cosplay Channel PornPortal", "https://cosplay-channel.pornportal.com" ],
"3": [ "Ebony Channel PornPortal", "https://ebony-channel.pornportal.com" ],
"4": [ "Latina Channel PornPortal", "https://latina-channel.pornportal.com" ],
"5": [ "Teen Channel PornPortal", "https://teen-channel.pornportal.com" ],
"6": [ "Milf Channel PornPortal", "https://milf-channel.pornportal.com" ],
"7": [ "Stepfamily Channel PornPortal", "https://stepfamily-channel.pornportal.com" ],
"8": [ "Lesbian Channel PornPortal", "https://lesbian-channel.pornportal.com" ],
"9": [ "RealityGang Channel PornPortal", "https://realitygang-channel.pornportal.com" ],
"10": [ "Anal Channel PornPortal", "https://anal-channel.pornportal.com" ],
"11": [ "BBW Channel PornPortal", "https://bbw-channel.pornportal.com" ],
"12": [ "VR Channel PornPortal", "https://vr-channel.pornportal.com" ],
},
"48": {
"0": [ "MetadataAPI", "https://theporndb.net", "https://api.theporndb.net" ],
"1": [ "ThePornDB", "https://theporndb.net", "https://api.theporndb.net" ],
},
"49": {
"0": [ "Clips4Sale", "https://www.clips4sale.com", "/studio/" ],
},
"50": {
"0": [ "Manyvids", "https://www.manyvids.com", "/video/" ],
},
"51": {
"0": [ "Data18", "http://www.data18.com", "/search/?k=" ],
},
},
"SiteIDList": {
"0": "Network1service",
"1": "NetworkBang",
"2": "Network1service",
"3": "Network1service",
"4": "Network1service",
"5": "Network1service",
"6": "Network1service",
"7": "Network1service",
"8": "Network1service",
"9": "Network1service",
"10": "SiteNaughtyAmerica",
"11": "NetworkGammaEnt",
"12": "NetworkGammaEnt",
"13": "NetworkGammaEnt",
"14": "NetworkGammaEnt",
"15": "NetworkGammaEnt",
"16": "NetworkKink",
"17": "NetworkR18",
"18": "NetworkFemdomEmpire",
"19": "NetworkDogfart",
"20": "NetworkPornPros",
"21": "NetworkPornPros",
"22": "SiteBangBros",
"23": "NetworkMylf",
"24": "NetworkMylf",
"25": "SiteJulesJordan",
"26": "SiteLegalPorno",
"27": "SitePornhub",
"28": "NetworkNubiles",
"29": "NetworkPorndoe",
"30": "NetworkNubiles",
"31": "NetworkPorndoe",
"32": "NetworkPorndoe",
"33": "NetworkPorndoe",
"34": "NetworkPorndoe",
"35": "NetworkPorndoe",
"36": "NetworkPorndoe",
"37": "SiteHegre",
"38": "NetworkJAVLibrary",
"39": "NetworkCaribbeancom",
"40": "NetworkHeyzo",
"41": "NetworkPornCZ",
"42": "NetworkJAV",
"43": "ActorFreeones",
"44": "NetworkStrike3",
"45": "NetworkAdultEmpire",
"46": "Network1service",
"47": "Network1service",
"48": "NetworkMetadataAPI",
"49": "SiteClips4Sale",
"50": "SiteManyVids",
"51": "SiteData18",
},
"Abbrieviations": {
"^18og": "18OnlyGirls",
"^18yo": "18YearsOld",
"^1kf": "1000Facials",
"^21ea": "21EroticAnal",
"^21fa": "21FootArt",
"^21n": "21Naturals",
"^2cst": "2ChicksSameTime",
"^a1o1": "Asian1on1",
"^aa": "AmateurAllure",
"^ad": "AmericanDaydreams",
"^agm": "AllGirlMassage",
"^am": "AssMasterpiece",
"^analb": "AnalBeauty",
"^ap": "AssParade",
"^baebz": "Baeb",
"^bblib": "BigButtsLikeItBig",
"^bcasting": "BangCasting",
"^bcb": "BigCockBully",
"^bch": "BigCockHero",
"^bconfessions": "BangConfessions",
"^bdpov": "BadDaddyPOV",
"^bex": "BrazzersExxtra",
"^bgb": "BabyGotBoobs",
"^bgbs": "BoundGangbangs",
"^bglamkore": "BangGlamkore",
"^bgonzo": "BangGonzo",
"^bin": "BigNaturals",
"^bjf": "BlowjobFridays",
"^bp": "ButtPlays",
"^brealteens": "BangRealTeens",
"^btas": "BigTitsatSchool",
"^btaw": "BigTitsatWork",
"^btc": "BigTitCreampie",
"^btis": "BigTitsinSports",
"^btiu": "BigTitsinUniform",
"^btlbd": "BigTitsLikeBigDicks",
"^btra": "BigTitsRoundAsses",
"^burna": "BurningAngel",
"^bwb": "BigWetButts",
"^c4s": "Clips4Sale",
"^carib": "Caribbeancom",
"^caribpr": "CaribbeancomPR",
"^clip": "LegalPorno",
"^cps": "CherryPimps",
"^css": "CzechStreets",
"^cuf": "CumFiesta",
"^cws": "CzechWifeSwap",
"^da": "DoctorAdventures",
"^daughter": "DaughterSwap",
"^daughters": "DaughterSwap",
"^dbm": "DontBreakMe",
"^dc": "DorcelVision",
"^ddfb": "DDFBusty",
"^dm": "DirtyMasseur",
"^dnj": "DaneJones",
"^dpg": "DigitalPlayground",
"^dsw": "DaughterSwap",
"^dwc": "DirtyWivesClub",
"^dwp": "DayWithAPornstar",
"^esp": "EuroSexParties",
"^ete": "EuroTeenErotica",
"^ext": "ExxxtraSmall",
"^fams": "FamilyStrokes",
"^faq": "FirstAnalQuest",
"^fds": "FakeDrivingSchool",
"^fft": "FemaleFakeTaxi",
"^fhd": "FantasyHD",
"^fhl": "FakeHostel",
"^fho": "FakehubOriginals",
"^fka": "FakeAgent",
"^fm": "FuckingMachines",
"^fms": "FantasyMassage",
"^frs": "FitnessRooms",
"^ft": "FastTimes",
"^ftx": "FakeTaxi",
"^gbcp": "GangbangCreampie",
"^gft": "GrandpasFuckTeens",
"^gta": "GirlsTryAnal",
"^gw": "GirlsWay",
"^h1o1": "Housewife1on1",
"^ham": "HotAndMean",
"^hart": "Hegre",
"^hcm": "HotCrazyMess",
"^hegre-art": "Hegre",
"^hoh": "HandsOnHardcore",
"^hotab": "HouseofTaboo",
"^ht": "Hogtied",
"^hustl3r": "Hustler",
"^ihaw": "IHaveAWife",
"^iktg": "IKnowThatGirl",
"^il": "ImmoralLive",
"^kha": "KarupsHA",
"^kow": "KarupsOW",
"^kpc": "KarupsPC",
"^la": "LatinAdultery",
"^latn": "LookAtHerNow",
"^lcd": "LittleCaprice",
"^lhf": "LoveHerFeet",
"^lsb": "Lesbea",
"^lst": "LatinaSexTapes",
"^lta": "LetsTryAnal",
"^maj": "ManoJob",
"^mav": "Manyvids",
"^mbb": "MommyBlowsBest",
"^mbt": "MomsBangTeens",
"^mc": "MassageCreep",
"^mcu": "MonsterCurves",
"^mdhf": "MyDaughtersHotFriend",
"^mdhg": "MyDadsHotGirlfriend",
"^mfa": "ManuelFerrara",
"^mfhg": "MyFriendsHotGirl",
"^mfhm": "MyFriendsHotMom",
"^mfl": "Mofos",
"^mfst": "MyFirstSexTeacher",
"^mgb": "MommyGotBoobs",
"^mgbf": "MyGirlfriendsBustyFriend",
"^mic": "MomsInControl",
"^mih": "MilfHunter",
"^mj": "ManoJob",
"^mlib": "MilfsLikeItBig",
"^mlt": "MomsLickTeens",
"^mmgs": "MommysGirl",
"^mmts": "MomsTeachSex",
"^mnm": "MyNaughtyMassage",
"^mom": "MomXXX",
"^mpov": "MrPOV",
"^mr": "MassageRooms",
"^mrs": "MassageRooms",
"^mshf": "MySistersHotFriend",
"^mts": "MomsTeachSex",
"^mvft": "MyVeryFirstTime",
"^mwhf": "MyWifesHotFriend",
"^na": "NaughtyAthletics",
"^naf": "NeighborAffair",
"^nam": "NaughtyAmerica",
"^nb": "NaughtyBookworms",
"^news": "NewSensations",
"^nf": "NubileFilms",
"^no": "NaughtyOffice",
"^nrg": "NaughtyRichGirls",
"^nubilef": "NubileFilms",
"^num": "NuruMassage",
"^nw": "NaughtyWeddings",
"^obj": "OnlyBlowjob",
"^otb": "OnlyTeenBlowjobs",
"^pav": "PixAndVideo",
"^pba": "PublicAgent",
"^pc": "PrincessCum",
"^pdmcl": "ChicasLoca",
"^pf": "PornFidelity",
"^phd": "PassionHD",
"^phdp": "PetiteHDPorn",
"^plib": "PornstarsLikeitBig",
"^pop": "PervsOnPatrol",
"^ppu": "PublicPickups",
"^prdi": "PrettyDirty",
"^ps": "PropertySex",
"^ptt": "Petite",
"^pud": "PublicDisgrace",
"^reg": "RealExGirlfriends",
"^rkp": "RKPrime",
"^rws": "RealWifeStories",
"^saf": "ShesAFreak",
"^sart": "SexArt",
"^sas": "SexandSubmission",
"^sbj": "StreetBlowjobs",
"^sins": "SinsLife",
"^sislove": "SisLovesMe",
"^smb": "ShareMyBF",
"^ssc": "StepSiblingsCaught",
"^ssn": "ShesNew",
"^sts": "StrandedTeens",
"^swsn": "SwallowSalon",
"^tdp": "TeensDoPorn",
"^tds": "TheDickSuckers",
"^ted": "Throated",
"^tf": "TeenFidelity",
"^tgs": "ThisGirlSucks",
"^these": "TheStripperExperience",
"^tla": "TeensLoveAnal",