forked from mirkancal/hosts-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xelement.txt
3211 lines (3209 loc) · 116 KB
/
xelement.txt
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
# Title: nurcan Türk element-ad-list
# Format: Element Bloklist
# Released: 31.05.2020
# Entries: 3196
# Details: https://github.com/xorcan/hosts/
# Issues: https://github.com/xorcan/hosts/issues
# Source: https://raw.githubusercontent.com/xorcan/hosts/master/xelement.txt
# License: https://raw.githubusercontent.com/xorcan/hosts/master/LICENSE
# Copyright 2020 xorcan
# Reklam bildirimi / iletişim: [email protected]
# Report an ad / contact: [email protected]
# xorcan/hosts başla #
###adContentWrapper
###adv-link
###bet-kayan2
###head > div.adsLoad.akAds
###header-reklam
###iv-kayan
###ivr-bar
###jg-reklam
###jopjvde12qo
###preRollBd
###preRollVideoAd
###preRollVideoAdTimer
###reklam-video-yani
###reklamCodeiframe
###videoreklam
###vrs-alert
###vrs-Alert
###vrsalert
###vrsAlert
##.articleContent > .adsbygoogle
##.bc-single-headerrek3
##.code-block-0.code-block > .adsbygoogle
##.code-block-1.code-block > .adsbygoogle
##.code-block-2.code-block > .adsbygoogle
##.code-block-3.code-block > .adsbygoogle
##.code-block-4.code-block > .adsbygoogle
##.code-block-5.code-block > .adsbygoogle
##.code-block-6.code-block > .adsbygoogle
##.code-block-7.code-block > .adsbygoogle
##.code-block-8.code-block > .adsbygoogle
##.code-block-9.code-block > .adsbygoogle
##.code-block.code-block > .adsbygoogle
##.container.footerFixedAdWrapper
##.headreklam
##.hide-mobile > .adsbygoogle
##.hrknReklam
##.m-b-10.ad_300x250
##.m-b-10.ad_300x300
##.main-content.col-1 > .adsbygoogle
##.main-content.col-2 > .adsbygoogle
##.main-content.col-3 > .adsbygoogle
##.main-content.col-4 > .adsbygoogle
##.main-content.col-5 > .adsbygoogle
##.main-content.col-6 > .adsbygoogle
##.main-content.col-7 > .adsbygoogle
##.main-content.col-8 > .adsbygoogle
##.main-content.col-9 > .adsbygoogle
##.middle.ad
##.midsites
##.mngez_download1 > .adsbygoogle
##.once-reklam
##.rek300
##.rekivr1
##.rekivr2
##.reklam-t
##.reklamblur
##.reklamblur0
##.reklamblur1
##.reklamblur2
##.reklamblur3
##.reklamcontainer
##.rnews > div:nth-of-type(1) > div.adsLoad.akAds
##.rnews > div:nth-of-type(10) > div.adsLoad.akAds
##.rnews > div:nth-of-type(11) > div.adsLoad.akAds
##.rnews > div:nth-of-type(2) > div.adsLoad.akAds
##.rnews > div:nth-of-type(3) > div.adsLoad.akAds
##.rnews > div:nth-of-type(4) > div.adsLoad.akAds
##.rnews > div:nth-of-type(5) > div.adsLoad.akAds
##.rnews > div:nth-of-type(6) > div.adsLoad.akAds
##.rnews > div:nth-of-type(7) > div.adsLoad.akAds
##.rnews > div:nth-of-type(8) > div.adsLoad.akAds
##.rnews > div:nth-of-type(9) > div.adsLoad.akAds
##.side > div.adsLoad.akAds
##.ss-ic.s_stk
##[href="bestdatingclubs.com"]
##[href="betonbetaffiliates.com"]
##[href="betonbetaffiliates.com/"]
##[href="bit.ly/2InAbq9"]
##[href="bit.ly/2InAbq9/"]
##[href="bit.ly/393D1MF"]
##[href="bit.ly/393D1MF/"]
##[href="bit.ly/3ay8bwh"]
##[href="bit.ly/3bE14T4"]
##[href="gndrglsn.com"]
##[href="gndrglsn.com/"]
##[href="http://betonbetaffiliates.com"]
##[href="http://betonbetaffiliates.com/"]
##[href="http://bit.ly/2InAbq9"]
##[href="http://bit.ly/2InAbq9/"]
##[href="http://bit.ly/393D1MF"]
##[href="http://bit.ly/393D1MF/"]
##[href="http://bit.ly/3ay8bwh"]
##[href="http://bit.ly/3ay8bwh/"]
##[href="http://bit.ly/3bE14T4"]
##[href="http://gndrglsn.com"]
##[href="http://gndrglsn.com/"]
##[href="http://ncmfck.com"]
##[href="http://ncmfck.com/"]
##[href="http://www.betonbetaffiliates.com"]
##[href="http://www.betonbetaffiliates.com/"]
##[href="http://www.doeda.com/zero/"]
##[href="http://www.gndrglsn.com"]
##[href="http://www.gndrglsn.com/"]
##[href="http://www.ncmfck.com"]
##[href="http://www.ncmfck.com/"]
##[href="https://betonbetaffiliates.com"]
##[href="https://betonbetaffiliates.com/"]
##[href="https://bit.ly/2InAbq9"]
##[href="https://bit.ly/2InAbq9/"]
##[href="https://bit.ly/2xS37Va"]
##[href="https://bit.ly/393D1MF"]
##[href="https://bit.ly/393D1MF/"]
##[href="https://bit.ly/3ay8bwh"]
##[href="https://bit.ly/3ay8bwh/"]
##[href="https://bit.ly/3bE14T4"]
##[href="https://gndrglsn.com"]
##[href="https://gndrglsn.com/"]
##[href="https://ncmfck.com"]
##[href="https://ncmfck.com/"]
##[href="https://rebrand.ly/9be06"]
##[href="https://tanisma.supermesaj.tv/"]
##[href="https://www.ardream.world"]
##[href="https://www.betonbetaffiliates.com"]
##[href="https://www.betonbetaffiliates.com/"]
##[href="https://www.gndrglsn.com"]
##[href="https://www.gndrglsn.com/"]
##[href="https://www.ncmfck.com"]
##[href="https://www.ncmfck.com/"]
##[href="https://www.peple.com.tr/"]
##[href="ncmfck.com"]
##[href="ncmfck.com/"]
##[href="www.betonbetaffiliates.com"]
##[href="www.betonbetaffiliates.com/"]
##[href="www.gndrglsn.com"]
##[href="www.gndrglsn.com/"]
##[href="www.ncmfck.com"]
##[href="www.ncmfck.com/"]
##[href^="10dfjhvbdfhv.xyz"]
##[href^="1xbet-won.com"]
##[href^="4club.reisen/landing"]
##[href^="4club.reisen/policy"]
##[href^="ad.admitad.com/"]
##[href^="adbetnetwork.com"]
##[href^="adbooks.ru"]
##[href^="adbooks.ru/am.html"]
##[href^="affibtm.com"]
##[href^="affibtm.com/"]
##[href^="airartapt.site"]
##[href^="airartapt.site/"]
##[href^="amorenetwork.com"]
##[href^="anamimyjyp.tk/"]
##[href^="b.findyourpleasure1.life"]
##[href^="b.findyourpleasure1.life/"]
##[href^="bahsegel189.com"]
##[href^="basvuruformu.ml"]
##[href^="basvuruformu1.ml"]
##[href^="basvuruformu10.ml"]
##[href^="basvuruformu11.ml"]
##[href^="basvuruformu12.ml"]
##[href^="basvuruformu13.ml"]
##[href^="basvuruformu14.ml"]
##[href^="basvuruformu15.ml"]
##[href^="basvuruformu16.ml"]
##[href^="basvuruformu17.ml"]
##[href^="basvuruformu18.ml"]
##[href^="basvuruformu19.ml"]
##[href^="basvuruformu2.ml"]
##[href^="basvuruformu20.ml"]
##[href^="basvuruformu21.ml"]
##[href^="basvuruformu22.ml"]
##[href^="basvuruformu3.ml"]
##[href^="basvuruformu4.ml"]
##[href^="basvuruformu4.tk"]
##[href^="basvuruformu5.ml"]
##[href^="basvuruformu6.ml"]
##[href^="basvuruformu7.ml"]
##[href^="basvuruformu8.ml"]
##[href^="basvuruformu9.ml"]
##[href^="baysansli14.com"]
##[href^="baysansliortaklik.com"]
##[href^="baysansliortaklik.com/"]
##[href^="baysansliortaklik.com/click.php"]
##[href^="bc.vc/jAf6Eh4"]
##[href^="bc.vc/WRrYdnR"]
##[href^="bestdataresu1ts.com"]
##[href^="bestdataresu1ts.com/mmd/"]
##[href^="betonbet1.com"]
##[href^="betticket.biz"]
##[href^="bgel.ncmfck.com"]
##[href^="bgel.ncmfck.com/"]
##[href^="bigblacksharkoil.com"]
##[href^="bit.ly/2Ctslt0"]
##[href^="bit.ly/2E7mIAS"]
##[href^="bit.ly/2FE4A5g"]
##[href^="bit.ly/2GXyQ8u"]
##[href^="bit.ly/2HxwkWC"]
##[href^="bit.ly/2KInzej"]
##[href^="bit.ly/2KppeZi"]
##[href^="bit.ly/2L5R1ea"]
##[href^="bit.ly/2MylV32"]
##[href^="bit.ly/2NVHjft"]
##[href^="bit.ly/2OiCyAu"]
##[href^="bit.ly/2Qcu9yq"]
##[href^="bit.ly/2qK6f2z"]
##[href^="bit.ly/2QmI8BT"]
##[href^="bit.ly/2SNGMyD"]
##[href^="bit.ly/2UPmIPR"]
##[href^="bit.ly/2WDvCys"]
##[href^="bit.ly/2X2tjnI"]
##[href^="bit.ly/2x9cHmp"]
##[href^="bit.ly/2YcmD7N"]
##[href^="bit.ly/2yxDkm6"]
##[href^="bit.ly/2Yy1T9O"]
##[href^="bit.ly/2Z35P3p"]
##[href^="bit.ly/30ueOuT"]
##[href^="bit.ly/30ZvMlu"]
##[href^="bit.ly/38tqwJT"]
##[href^="bit.ly/38tqwJT/"]
##[href^="bit.ly/3a11LFE"]
##[href^="bit.ly/3arpK0S"]
##[href^="bit.ly/3avkmun"]
##[href^="bit.ly/3ay8bwh"]
##[href^="bit.ly/720pizleme-efsane-kampanya-turksatkablo"]
##[href^="bit.ly/gencofilm0"]
##[href^="bit.ly/gencofilm1"]
##[href^="bit.ly/gencofilm2"]
##[href^="bit.ly/gencofilm3"]
##[href^="bit.ly/gencofilm4"]
##[href^="bit.ly/gencofilm5"]
##[href^="blok.link"]
##[href^="bluefilmizle.com"]
##[href^="booksurfers.co.uk"]
##[href^="booksurfers.co.uk/"]
##[href^="buywanted.com"]
##[href^="buywanted.com/"]
##[href^="c.findyourpleasure1.life"]
##[href^="c.findyourpleasure1.life/"]
##[href^="canlialem.com"]
##[href^="canlialem.com/"]
##[href^="clbanners1.com/"]
##[href^="commissionwall1.com"]
##[href^="d.findyourpleasure1.life"]
##[href^="d.findyourpleasure1.life/"]
##[href^="direktgiris.com"]
##[href^="dosya-indirici.online"]
##[href^="download-free.site"]
##[href^="duerkopellyana85.files.wordpress.com"]
##[href^="duerkopellyana85.files.wordpress.com/"]
##[href^="duerkopellyana85.wordpress.com"]
##[href^="duerkopellyana85.wordpress.com/"]
##[href^="edebiyatkitabi.com"]
##[href^="edebiyatkitabi.com/"]
##[href^="ekitap-indir.net/mkn2pn"]
##[href^="ekitap-indir.net/mkn2pn/"]
##[href^="ekitap.telreh.com"]
##[href^="ekitap.telreh.com/ara"]
##[href^="endirom.com"]
##[href^="evlenirim.com"]
##[href^="filekeeper.topupload.ru"]
##[href^="filmmoz.net"]
##[href^="filmmoz.net/"]
##[href^="findyourpleasure1.life"]
##[href^="findyourpleasure1.life/"]
##[href^="friennity.com"]
##[href^="ganfoninjomo.files.wordpress.com"]
##[href^="getyourprz14.live"]
##[href^="getyourprz14.live/"]
##[href^="gmgreklam.com"]
##[href^="gmgreklam.com/click/1"]
##[href^="gmgreklam.com/click/10"]
##[href^="gmgreklam.com/click/100"]
##[href^="gmgreklam.com/click/11"]
##[href^="gmgreklam.com/click/12"]
##[href^="gmgreklam.com/click/13"]
##[href^="gmgreklam.com/click/14"]
##[href^="gmgreklam.com/click/15"]
##[href^="gmgreklam.com/click/16"]
##[href^="gmgreklam.com/click/17"]
##[href^="gmgreklam.com/click/18"]
##[href^="gmgreklam.com/click/19"]
##[href^="gmgreklam.com/click/2"]
##[href^="gmgreklam.com/click/20"]
##[href^="gmgreklam.com/click/21"]
##[href^="gmgreklam.com/click/22"]
##[href^="gmgreklam.com/click/23"]
##[href^="gmgreklam.com/click/24"]
##[href^="gmgreklam.com/click/25"]
##[href^="gmgreklam.com/click/26"]
##[href^="gmgreklam.com/click/27"]
##[href^="gmgreklam.com/click/28"]
##[href^="gmgreklam.com/click/29"]
##[href^="gmgreklam.com/click/3"]
##[href^="gmgreklam.com/click/30"]
##[href^="gmgreklam.com/click/31"]
##[href^="gmgreklam.com/click/32"]
##[href^="gmgreklam.com/click/33"]
##[href^="gmgreklam.com/click/34"]
##[href^="gmgreklam.com/click/35"]
##[href^="gmgreklam.com/click/36"]
##[href^="gmgreklam.com/click/37"]
##[href^="gmgreklam.com/click/38"]
##[href^="gmgreklam.com/click/39"]
##[href^="gmgreklam.com/click/4"]
##[href^="gmgreklam.com/click/40"]
##[href^="gmgreklam.com/click/41"]
##[href^="gmgreklam.com/click/42"]
##[href^="gmgreklam.com/click/43"]
##[href^="gmgreklam.com/click/44"]
##[href^="gmgreklam.com/click/45"]
##[href^="gmgreklam.com/click/46"]
##[href^="gmgreklam.com/click/47"]
##[href^="gmgreklam.com/click/48"]
##[href^="gmgreklam.com/click/49"]
##[href^="gmgreklam.com/click/5"]
##[href^="gmgreklam.com/click/50"]
##[href^="gmgreklam.com/click/51"]
##[href^="gmgreklam.com/click/52"]
##[href^="gmgreklam.com/click/53"]
##[href^="gmgreklam.com/click/54"]
##[href^="gmgreklam.com/click/55"]
##[href^="gmgreklam.com/click/56"]
##[href^="gmgreklam.com/click/57"]
##[href^="gmgreklam.com/click/58"]
##[href^="gmgreklam.com/click/59"]
##[href^="gmgreklam.com/click/6"]
##[href^="gmgreklam.com/click/60"]
##[href^="gmgreklam.com/click/61"]
##[href^="gmgreklam.com/click/62"]
##[href^="gmgreklam.com/click/63"]
##[href^="gmgreklam.com/click/64"]
##[href^="gmgreklam.com/click/65"]
##[href^="gmgreklam.com/click/66"]
##[href^="gmgreklam.com/click/67"]
##[href^="gmgreklam.com/click/68"]
##[href^="gmgreklam.com/click/69"]
##[href^="gmgreklam.com/click/7"]
##[href^="gmgreklam.com/click/70"]
##[href^="gmgreklam.com/click/71"]
##[href^="gmgreklam.com/click/72"]
##[href^="gmgreklam.com/click/73"]
##[href^="gmgreklam.com/click/74"]
##[href^="gmgreklam.com/click/75"]
##[href^="gmgreklam.com/click/76"]
##[href^="gmgreklam.com/click/77"]
##[href^="gmgreklam.com/click/78"]
##[href^="gmgreklam.com/click/79"]
##[href^="gmgreklam.com/click/8"]
##[href^="gmgreklam.com/click/80"]
##[href^="gmgreklam.com/click/81"]
##[href^="gmgreklam.com/click/82"]
##[href^="gmgreklam.com/click/83"]
##[href^="gmgreklam.com/click/84"]
##[href^="gmgreklam.com/click/85"]
##[href^="gmgreklam.com/click/86"]
##[href^="gmgreklam.com/click/87"]
##[href^="gmgreklam.com/click/88"]
##[href^="gmgreklam.com/click/89"]
##[href^="gmgreklam.com/click/9"]
##[href^="gmgreklam.com/click/90"]
##[href^="gmgreklam.com/click/91"]
##[href^="gmgreklam.com/click/92"]
##[href^="gmgreklam.com/click/93"]
##[href^="gmgreklam.com/click/94"]
##[href^="gmgreklam.com/click/95"]
##[href^="gmgreklam.com/click/96"]
##[href^="gmgreklam.com/click/97"]
##[href^="gmgreklam.com/click/98"]
##[href^="gmgreklam.com/click/99"]
##[href^="good4all.ru"]
##[href^="gozatar.com"]
##[href^="gplinks.in/advertising/campaign.php"]
##[href^="hendico.com"]
##[href^="hendico.com/"]
##[href^="henry-james.site"]
##[href^="http://10dfjhvbdfhv.xyz"]
##[href^="http://4club.reisen/landing"]
##[href^="http://4club.reisen/policy"]
##[href^="http://ad.admitad.com/"]
##[href^="http://adbetnetwork.com"]
##[href^="http://adbooks.ru"]
##[href^="http://adbooks.ru/am.html"]
##[href^="http://affibtm.com"]
##[href^="http://affibtm.com/"]
##[href^="http://affiliate.rusvpn.com"]
##[href^="http://affiliate.rusvpn.com/"]
##[href^="http://affiliate.rusvpn.com/click"]
##[href^="http://affiliate.rusvpn.com/click.php"]
##[href^="http://airartapt.site"]
##[href^="http://airartapt.site/"]
##[href^="http://amorenetwork.com"]
##[href^="http://anamimyjyp.tk/"]
##[href^="http://b.findyourpleasure1.life"]
##[href^="http://b.findyourpleasure1.life/"]
##[href^="http://bahsegel189.com"]
##[href^="http://basvuruformu.ml"]
##[href^="http://basvuruformu1.ml"]
##[href^="http://basvuruformu10.ml"]
##[href^="http://basvuruformu11.ml"]
##[href^="http://basvuruformu12.ml"]
##[href^="http://basvuruformu13.ml"]
##[href^="http://basvuruformu14.ml"]
##[href^="http://basvuruformu15.ml"]
##[href^="http://basvuruformu16.ml"]
##[href^="http://basvuruformu17.ml"]
##[href^="http://basvuruformu18.ml"]
##[href^="http://basvuruformu19.ml"]
##[href^="http://basvuruformu2.ml"]
##[href^="http://basvuruformu20.ml"]
##[href^="http://basvuruformu21.ml"]
##[href^="http://basvuruformu22.ml"]
##[href^="http://basvuruformu3.ml"]
##[href^="http://basvuruformu4.ml"]
##[href^="http://basvuruformu4.tk"]
##[href^="http://basvuruformu5.ml"]
##[href^="http://basvuruformu6.ml"]
##[href^="http://basvuruformu7.ml"]
##[href^="http://basvuruformu8.ml"]
##[href^="http://basvuruformu9.ml"]
##[href^="http://baysansli14.com"]
##[href^="http://baysansliortaklik.com"]
##[href^="http://baysansliortaklik.com/"]
##[href^="http://baysansliortaklik.com/click.php"]
##[href^="http://bc.vc/jAf6Eh4"]
##[href^="http://bc.vc/WRrYdnR"]
##[href^="http://bestdataresu1ts.com"]
##[href^="http://bestdataresu1ts.com/mmd/"]
##[href^="http://betonbet1.com"]
##[href^="http://betticket.biz"]
##[href^="http://bgel.ncmfck.com"]
##[href^="http://bgel.ncmfck.com/"]
##[href^="http://bigblacksharkoil.com"]
##[href^="http://bit.ly/2Ctslt0"]
##[href^="http://bit.ly/2E7mIAS"]
##[href^="http://bit.ly/2FE4A5g"]
##[href^="http://bit.ly/2GXyQ8u"]
##[href^="http://bit.ly/2HxwkWC"]
##[href^="http://bit.ly/2KInzej"]
##[href^="http://bit.ly/2KppeZi"]
##[href^="http://bit.ly/2L5R1ea"]
##[href^="http://bit.ly/2MylV32"]
##[href^="http://bit.ly/2NVHjft"]
##[href^="http://bit.ly/2OiCyAu"]
##[href^="http://bit.ly/2Qcu9yq"]
##[href^="http://bit.ly/2qK6f2z"]
##[href^="http://bit.ly/2QmI8BT"]
##[href^="http://bit.ly/2SNGMyD"]
##[href^="http://bit.ly/2UPmIPR"]
##[href^="http://bit.ly/2WDvCys"]
##[href^="http://bit.ly/2X2tjnI"]
##[href^="http://bit.ly/2x9cHmp"]
##[href^="http://bit.ly/2YcmD7N"]
##[href^="http://bit.ly/2yxDkm6"]
##[href^="http://bit.ly/2Yy1T9O"]
##[href^="http://bit.ly/2Z35P3p"]
##[href^="http://bit.ly/30ueOuT"]
##[href^="http://bit.ly/30ZvMlu"]
##[href^="http://bit.ly/38tqwJT"]
##[href^="http://bit.ly/38tqwJT/"]
##[href^="http://bit.ly/3a11LFE"]
##[href^="http://bit.ly/3arpK0S"]
##[href^="http://bit.ly/3avkmun"]
##[href^="http://bit.ly/3ay8bwh"]
##[href^="http://bit.ly/gencofilm0"]
##[href^="http://bit.ly/gencofilm1"]
##[href^="http://bit.ly/gencofilm2"]
##[href^="http://bit.ly/gencofilm3"]
##[href^="http://bit.ly/gencofilm4"]
##[href^="http://bit.ly/gencofilm5"]
##[href^="http://blok.link"]
##[href^="http://booksurfers.co.uk"]
##[href^="http://booksurfers.co.uk/"]
##[href^="http://buywanted.com"]
##[href^="http://buywanted.com/"]
##[href^="http://c.findyourpleasure1.life"]
##[href^="http://c.findyourpleasure1.life/"]
##[href^="http://canlialem.com"]
##[href^="http://canlialem.com/"]
##[href^="http://clbanners1.com/"]
##[href^="http://commissionwall1.com"]
##[href^="http://d.findyourpleasure1.life"]
##[href^="http://d.findyourpleasure1.life/"]
##[href^="http://direktgiris.com"]
##[href^="http://dosya-indirici.online"]
##[href^="http://download-free.site"]
##[href^="http://duerkopellyana85.files.wordpress.com"]
##[href^="http://duerkopellyana85.files.wordpress.com/"]
##[href^="http://duerkopellyana85.wordpress.com"]
##[href^="http://duerkopellyana85.wordpress.com/"]
##[href^="http://edebiyatkitabi.com"]
##[href^="http://edebiyatkitabi.com/"]
##[href^="http://ekitap-indir.net/mkn2pn"]
##[href^="http://ekitap-indir.net/mkn2pn/"]
##[href^="http://ekitap.telreh.com"]
##[href^="http://ekitap.telreh.com/ara"]
##[href^="http://endirom.com"]
##[href^="http://filekeeper.topupload.ru"]
##[href^="http://filmmoz.net"]
##[href^="http://filmmoz.net/"]
##[href^="http://findyourpleasure1.life"]
##[href^="http://findyourpleasure1.life/"]
##[href^="http://friennity.com"]
##[href^="http://ganfoninjomo.files.wordpress.com"]
##[href^="http://getyourprz14.live"]
##[href^="http://getyourprz14.live/"]
##[href^="http://good4all.ru"]
##[href^="http://gozatar.com"]
##[href^="http://gplinks.in/advertising/campaign.php"]
##[href^="http://hendico.com"]
##[href^="http://hendico.com/"]
##[href^="http://henry-james.site"]
##[href^="http://i.findyourpleasure1.life"]
##[href^="http://i.findyourpleasure1.life/"]
##[href^="http://instazero.com"]
##[href^="http://instazero.com/"]
##[href^="http://is.gd/vd4fv"]
##[href^="http://jigolo-olmak-kaydi.sohbetara69.xyz"]
##[href^="http://jigolo-olmak-kaydi.sohbetara69.xyz/tur2/"]
##[href^="http://justpaste.it/redirect/4npnz/https://rublacklist.net/rutracker_redirect"]
##[href^="http://kamuevlilik.com"]
##[href^="http://kamuevlilik.com/"]
##[href^="http://keycdn.info"]
##[href^="http://keycdn.info/"]
##[href^="http://keycdn.info/whatsapp.php"]
##[href^="http://keycdn.info/whatsapp.php/"]
##[href^="http://kisalink.xyz"]
##[href^="http://kisalink.xyz/"]
##[href^="http://kisalink.xyz/a"]
##[href^="http://kisalink.xyz/a/"]
##[href^="http://kisalink.xyz/aj"]
##[href^="http://kisalink.xyz/aj/"]
##[href^="http://kisalink.xyz/h"]
##[href^="http://kisalink.xyz/h/"]
##[href^="http://kisalink.xyz/i"]
##[href^="http://kisalink.xyz/i/"]
##[href^="http://kisaltma.link"]
##[href^="http://kitapindir.pw"]
##[href^="http://link-redirect.xyz"]
##[href^="http://link.tl/1LtUi"]
##[href^="http://liragadin.over-blog.com"]
##[href^="http://luckyforbet.com"]
##[href^="http://mesaj-geldi.blok.link"]
##[href^="http://mesaj-geldi.blok.link/"]
##[href^="http://mesaj-geldi.blok.link/bnnr"]
##[href^="http://mesaj-geldi.blok.link/ex1"]
##[href^="http://mesaj-geldi.blok.link/msj"]
##[href^="http://mesaj-geldi.blok.link/msj2"]
##[href^="http://mesaj-geldi.blok.link/wpr"]
##[href^="http://mesaj-geldi.blok.link/x"]
##[href^="http://mesaj-geldi.blok.link/x10"]
##[href^="http://mesaj-geldi.blok.link/xx"]
##[href^="http://mesaj-geldi.blok.link/xx0"]
##[href^="http://mesaj-geldi.blok.link/xx1"]
##[href^="http://mesaj-geldi.blok.link/xx2"]
##[href^="http://mesaj-geldi.blok.link/xx3"]
##[href^="http://mesaj-geldi.blok.link/xx4"]
##[href^="http://mesaj-geldi.blok.link/xx5"]
##[href^="http://mesaj-geldi.blok.link/xx6"]
##[href^="http://mesaj-geldi.blok.link/xx7"]
##[href^="http://mesaj-geldi.blok.link/xx8"]
##[href^="http://mesaj-geldi.blok.link/xx9"]
##[href^="http://mindfullnora.hatenablog.com"]
##[href^="http://mindfullnora.hatenablog.com/"]
##[href^="http://mobil-izle.xyz"]
##[href^="http://mobil-izle.xyz/"]
##[href^="http://nabcity.com"]
##[href^="http://omareeper.com"]
##[href^="http://omareeper.com/afu.phP"]
##[href^="http://openshare.topupload.ru"]
##[href^="http://pampikcim.xyz"]
##[href^="http://pampikcim.xyz/"]
##[href^="http://pampikcim.xyz/adr"]
##[href^="http://pampikcim.xyz/adr/"]
##[href^="http://pdf.iskysoft.com/promotion"]
##[href^="http://pdf.iskysoft.com/promotion/"]
##[href^="http://pdf.iskysoft.com/promotion/easter-sale.html"]
##[href^="http://pdf.iskysoft.com/promotion/easter-sale.html/"]
##[href^="http://pdfizy.com"]
##[href^="http://pdfizy.com/"]
##[href^="http://pdfkitapdunyam.com host"]
##[href^="http://pdfkitapdunyam.com host/"]
##[href^="http://pdfkitapdunyam.com"]
##[href^="http://pdfkitapdunyam.com/"]
##[href^="http://pdfkitapp.com"]
##[href^="http://pdfkitapp.com/"]
##[href^="http://piehead.com"]
##[href^="http://pin.redirect750.us"]
##[href^="http://pin.redirect750.us/"]
##[href^="http://player.fm"]
##[href^="http://plugrush.com"]
##[href^="http://plugrush.com/"]
##[href^="http://pnbtour.com"]
##[href^="http://press-here-to-continue.com"]
##[href^="http://press-here-to-continue.com/"]
##[href^="http://promosultan3.com"]
##[href^="http://redirect750.us/sl"]
##[href^="http://redirect750.us/sl/"]
##[href^="http://refpabei.top"]
##[href^="http://refpafdqzc.top"]
##[href^="http://rlink.live"]
##[href^="http://rlink.xyz"]
##[href^="http://rotabetlink.com"]
##[href^="http://rotatemediajoin.win"]
##[href^="http://saskatoon.ca"]
##[href^="http://setrabet.com"]
##[href^="http://setrabet.com/"]
##[href^="http://setrabet.com/affiliates"]
##[href^="http://setrabet.com/affiliates/"]
##[href^="http://sexfindyou25.com"]
##[href^="http://sexfindyou25.com/"]
##[href^="http://shake.silkbasket.icu"]
##[href^="http://shake.silkbasket.icu/"]
##[href^="http://silkbasket.icu"]
##[href^="http://silkbasket.icu/"]
##[href^="http://siracasino.com"]
##[href^="http://site-2298918-9622-3459.mystrikingly.com"]
##[href^="http://sitfathatronve.pro"]
##[href^="http://softob.com"]
##[href^="http://sohbetara69.xyz"]
##[href^="http://sportingcupmp.com"]
##[href^="http://sportingcupmp.com/"]
##[href^="http://srr.thedragonbahis.com"]
##[href^="http://srr.thedragonbahis.com/"]
##[href^="http://sweetriturce.over-blog.com"]
##[href^="http://tanisma.supermesaj.tv"]
##[href^="http://tanisma.supermesaj.tv/"]
##[href^="http://teklinkdvdfilm.blogspot.com"]
##[href^="http://telegramchannels.me/gopr/75"]
##[href^="http://telegramchannels.me/gopr/75/"]
##[href^="http://telreh.com"]
##[href^="http://tgiruyelik.com"]
##[href^="http://thebestgame2020.com"]
##[href^="http://thebestgame2020.com/"]
##[href^="http://thedragonbahis.com"]
##[href^="http://thedragonbahis.com/"]
##[href^="http://tnewurl2.com"]
##[href^="http://tnewurl2.com/"]
##[href^="http://topupload.ru"]
##[href^="http://torrentsafeguard.com/"]
##[href^="http://tr.englishtorrent.com"]
##[href^="http://tr.link/29LRD"]
##[href^="http://tr.link/99ba"]
##[href^="http://tr.link/mkn2pn"]
##[href^="http://tr.link/mkn2pn/"]
##[href^="http://tr.ucretsiz-ekitaplar.site"]
##[href^="http://tracker-pm2.rioaffiliates.com"]
##[href^="http://trendbet42.com"]
##[href^="http://trendbet42.com/"]
##[href^="http://trendbet42.com/#/"]
##[href^="http://u21drwj6mp.com"]
##[href^="http://u21drwj6mp.com/"]
##[href^="http://ucretsiz-ekitaplar.site"]
##[href^="http://ultrabet113.com"]
##[href^="http://ultrabet113.com/"]
##[href^="http://ultrabet113.com/#"]
##[href^="http://ultrabet113.com/#/"]
##[href^="http://ultrabet120.com"]
##[href^="http://ultrabet120.com/"]
##[href^="http://ultrabet120.com/#"]
##[href^="http://ultrabet120.com/#/"]
##[href^="http://verzekeringenvandermeulen.be"]
##[href^="http://viopytisri.over-blog.com"]
##[href^="http://whatsapp.rlink.live"]
##[href^="http://wlthebetend.adsrv.eacdn.com"]
##[href^="http://wlthebetend.adsrv.eacdn.com/"]
##[href^="http://wlthebetend.adsrv.eacdn.com/C.ashx"]
##[href^="http://wlthebetend.adsrv.eacdn.com/C.ashx?"]
##[href^="http://www.adbetnetwork.com"]
##[href^="http://www.adbetnetwork.com/"]
##[href^="http://www.affibtm.com"]
##[href^="http://www.affibtm.com/"]
##[href^="http://www.akbet60.co/m"
##[href^="http://www.akbet60.com"
##[href^="http://www.akbet60.com/"]
##[href^="http://www.akbet60.com/affiliates/"]
##[href^="http://www.amorenetwork.com"]
##[href^="http://www.bahsegel189.com"]
##[href^="http://www.baysansli14.com"]
##[href^="http://www.baysansliortaklik.com"]
##[href^="http://www.baysansliortaklik.com/"]
##[href^="http://www.baysansliortaklik.com/click.php"]
##[href^="http://www.betonbet1.com"]
##[href^="http://www.bgel.ncmfck.com"]
##[href^="http://www.bgel.ncmfck.com/"]
##[href^="http://www.bit.ly/2x9cHmp"]
##[href^="http://www.bit.ly/2x9cHmp/"]
##[href^="http://www.bit.ly/2YcmD7N"]
##[href^="http://www.bit.ly/2YcmD7N/"]
##[href^="http://www.bit.ly/2yxDkm6"]
##[href^="http://www.bit.ly/2Yy1T9O"]
##[href^="http://www.bit.ly/2Yy1T9O/"]
##[href^="http://www.bit.ly/2Z35P3p"]
##[href^="http://www.bit.ly/2Z35P3p/"]
##[href^="http://www.bit.ly/30ueOuT"]
##[href^="http://www.bit.ly/30ueOuT/"]
##[href^="http://www.bit.ly/30ZvMlu"]
##[href^="http://www.bit.ly/30ZvMlu/"]
##[href^="http://www.bit.ly/38tqwJT"]
##[href^="http://www.bit.ly/38tqwJT/"]
##[href^="http://www.bit.ly/3a11LFE"]
##[href^="http://www.bit.ly/3arpK0S"]
##[href^="http://www.bit.ly/3arpK0S/"]
##[href^="http://www.bit.ly/3avkmun"]
##[href^="http://www.bit.ly/3avkmun/"]
##[href^="http://www.bit.ly/3ay8bwh"]
##[href^="http://www.bit.ly/3ay8bwh/"]
##[href^="http://www.bit.ly/gencofilm0"]
##[href^="http://www.bit.ly/gencofilm0/"]
##[href^="http://www.bit.ly/gencofilm1"]
##[href^="http://www.bit.ly/gencofilm1/"]
##[href^="http://www.bit.ly/gencofilm2"]
##[href^="http://www.bit.ly/gencofilm2/"]
##[href^="http://www.booksurfers.co.uk"]
##[href^="http://www.booksurfers.co.uk/"]
##[href^="http://www.buywanted.com"]
##[href^="http://www.buywanted.com/"]
##[href^="http://www.canlialem.com"]
##[href^="http://www.canlialem.com/"]
##[href^="http://www.clbanners1.com/"]
##[href^="http://www.commissionwall1.com"]
##[href^="http://www.commissionwall1.com/"]
##[href^="http://www.direktgiris.com"]
##[href^="http://www.direktgiris.com/"]
##[href^="http://www.dosya-indirici.online"]
##[href^="http://www.dosya-indirici.online/"]
##[href^="http://www.download-free.site"]
##[href^="http://www.download-free.site/"]
##[href^="http://www.edebiyatkitabi.com"]
##[href^="http://www.edebiyatkitabi.com/"]
##[href^="http://www.ekitap.telreh.com"]
##[href^="http://www.ekitap.telreh.com/"]
##[href^="http://www.ekitap.telreh.com/ara"]
##[href^="http://www.ekitap.telreh.com/ara/"]
##[href^="http://www.endirom.com"]
##[href^="http://www.filekeeper.topupload.ru"]
##[href^="http://www.filekeeper.topupload.ru/"]
##[href^="http://www.filmmoz.net"]
##[href^="http://www.filmmoz.net/"]
##[href^="http://www.friennity.com"]
##[href^="http://www.ganfoninjomo.files.wordpress.com"]
##[href^="http://www.getyourprz14.live"]
##[href^="http://www.getyourprz14.live/"]
##[href^="http://www.good4all.ru"]
##[href^="http://www.gozatar.com"]
##[href^="http://www.gozatar.com/"]
##[href^="http://www.gplinks.in/advertising/campaign.php"]
##[href^="http://www.gplinks.in/advertising/campaign.php/"]
##[href^="http://www.hendico.com"]
##[href^="http://www.hendico.com/"]
##[href^="http://www.henry-james.site"]
##[href^="http://www.instazero.com"]
##[href^="http://www.instazero.com/"]
##[href^="http://www.kamuevlilik.com"]
##[href^="http://www.kamuevlilik.com/"]
##[href^="http://www.keycdn.info"]
##[href^="http://www.keycdn.info/"]
##[href^="http://www.keycdn.info/url3.php"]
##[href^="http://www.keycdn.info/whatsapp.php"]
##[href^="http://www.keycdn.info/whatsapp.php/"]
##[href^="http://www.kisaltma.link"]
##[href^="http://www.kisaltma.link/papaz.php"]
##[href^="http://www.kisaltma.link/vale.php"]
##[href^="http://www.liragadin.over-blog.com"]
##[href^="http://www.luckyforbet.com"]
##[href^="http://www.megdexchange.com"]
##[href^="http://www.megdexchange.com/"]
##[href^="http://www.mesaj-geldi.blok.link/xx9"]
##[href^="http://www.mesaj-geldi.blok.link/xx9/"]
##[href^="http://www.mindfullnora.hatenablog.com"]
##[href^="http://www.mindfullnora.hatenablog.com/"]
##[href^="http://www.mobil-izle.xyz"]
##[href^="http://www.mobil-izle.xyz/"]
##[href^="http://www.nabcity.com"]
##[href^="http://www.nabcity.com/"]
##[href^="http://www.omareeper.com"]
##[href^="http://www.omareeper.com/"]
##[href^="http://www.omareeper.com/afu.phP"]
##[href^="http://www.omareeper.com/afu.phP/"]
##[href^="http://www.onclickmega.com"]
##[href^="http://www.onclickmega.com/"]
##[href^="http://www.openshare.topupload.ru"]
##[href^="http://www.openshare.topupload.ru/"]
##[href^="http://www.pdfizy.com"]
##[href^="http://www.pdfizy.com/"]
##[href^="http://www.pdfkitapdunyam.com"]
##[href^="http://www.pdfkitapdunyam.com/"]
##[href^="http://www.pdfkitapp.com"]
##[href^="http://www.pdfkitapp.com/"]
##[href^="http://www.peple.com.tr/"]
##[href^="http://www.piehead.com"]
##[href^="http://www.player.fm"]
##[href^="http://www.plugrush.com"]
##[href^="http://www.plugrush.com/"]
##[href^="http://www.pnbtour.com"]
##[href^="http://www.pnbtour.com/"]
##[href^="http://www.rlink.xyz"]
##[href^="http://www.rlink.xyz/"]
##[href^="http://www.rotabetlink.com"]
##[href^="http://www.rotabetlink.com/"]
##[href^="http://www.rotabetlink.com/yd-hdr"]
##[href^="http://www.rotabetlink.com/yd-hdr/"]
##[href^="http://www.rotabetlink.com/yd-va"]
##[href^="http://www.rotabetlink.com/yd-va/"]
##[href^="http://www.rotatemediajoin.win"]
##[href^="http://www.rotatemediajoin.win/"]
##[href^="http://www.saskatoon.ca"]
##[href^="http://www.setrabet.com"]
##[href^="http://www.setrabet.com/"]
##[href^="http://www.setrabet.com/affiliates"]
##[href^="http://www.setrabet.com/affiliates/"]
##[href^="http://www.siracasino.com"]
##[href^="http://www.siracasino.com/"]
##[href^="http://www.site-2298918-9622-3459.mystrikingly.com"]
##[href^="http://www.sitfathatronve.pro"]
##[href^="http://www.sitfathatronve.pro/"]
##[href^="http://www.softob.com"]
##[href^="http://www.softob.com/"]
##[href^="http://www.sohbetara69.xyz"]
##[href^="http://www.sohbetara69.xyz/"]
##[href^="http://www.sportingcupmp.com"]
##[href^="http://www.srr.thedragonbahis.com"]
##[href^="http://www.srr.thedragonbahis.com/"]
##[href^="http://www.supermesaj.tv"]
##[href^="http://www.supermesaj.tv/"]
##[href^="http://www.sweetriturce.over-blog.com"]
##[href^="http://www.tanisma.supermesaj.tv"]
##[href^="http://www.tanisma.supermesaj.tv/"]
##[href^="http://www.teklinkdvdfilm.blogspot.com"]
##[href^="http://www.telreh.com"]
##[href^="http://www.telreh.com/"]
##[href^="http://www.tgiruyelik.com"]
##[href^="http://www.thebestgame2020.com"]
##[href^="http://www.thebestgame2020.com/"]
##[href^="http://www.thedragonbahis.com"]
##[href^="http://www.thedragonbahis.com/"]
##[href^="http://www.tnewurl2.com"]
##[href^="http://www.tnewurl2.com/"]
##[href^="http://www.topupload.ru"]
##[href^="http://www.topupload.ru/"]
##[href^="http://www.torrentsafeguard.com/"]
##[href^="http://www.tr.englishtorrent.com"]
##[href^="http://www.tr.link/29LRD"]
##[href^="http://www.tr.link/29LRD/"]
##[href^="http://www.tr.link/99ba"]
##[href^="http://www.tr.link/99ba/"]
##[href^="http://www.tr.ucretsiz-ekitaplar.site"]
##[href^="http://www.tr.ucretsiz-ekitaplar.site/"]
##[href^="http://www.tracker-pm2.rioaffiliates.com"]
##[href^="http://www.tracker-pm2.rioaffiliates.com/"]
##[href^="http://www.trendbet42.com"]
##[href^="http://www.trendbet42.com/"]
##[href^="http://www.trendbet42.com/#/"]
##[href^="http://www.u21drwj6mp.com"]
##[href^="http://www.u21drwj6mp.com/"]
##[href^="http://www.ucretsiz-ekitaplar.site"]
##[href^="http://www.ucretsiz-ekitaplar.site/"]
##[href^="http://www.ultrabet113.com"]
##[href^="http://www.ultrabet113.com/"]
##[href^="http://www.ultrabet113.com/#"]
##[href^="http://www.ultrabet113.com/#/"]
##[href^="http://www.ultrabet120.com"]
##[href^="http://www.ultrabet120.com/"]
##[href^="http://www.ultrabet120.com/#"]
##[href^="http://www.ultrabet120.com/#/"]
##[href^="http://www.verzekeringenvandermeulen.be"]
##[href^="http://www.viopytisri.over-blog.com"]
##[href^="http://www.whatsapp.rlink.live"]
##[href^="http://www.whatsapp.rlink.live/"]
##[href^="http://www.wlthebetend.adsrv.eacdn.com"]
##[href^="http://www.wlthebetend.adsrv.eacdn.com/"]
##[href^="http://www.wlthebetend.adsrv.eacdn.com/C.ashx"]
##[href^="http://www.wlthebetend.adsrv.eacdn.com/C.ashx/"]
##[href^="http://www.wlthebetend.adsrv.eacdn.com/C.ashx?"]
##[href^="http://www.wlthebetend.adsrv.eacdn.com/C.ashx?/"]
##[href^="http://www.yadi.sk/d/IYlwOV9SDA6Q"]
##[href^="http://www.yadi.sk/d/IYlwOV9SDA6Q/"]
##[href^="http://www.yon.ir/1Il0w"]
##[href^="http://www.yon.ir/1Il0w/"]
##[href^="http://www.yon.ir/MocNq"]
##[href^="http://www.yon.ir/MocNq/"]
##[href^="http://yadi.sk/d/IYlwOV9SDA6Q"]
##[href^="http://yon.ir/1Il0w"]
##[href^="http://yon.ir/MocNq"]
##[href^="http://yon.ir/mUxSx"]
##[href^="http://yuridepalo85.files.wordpress.com"]
##[href^="http://yuridepalo85.wordpress.com"]
##[href^="http://z.cdn.ftd.agency/go"]
##[href^="https://10dfjhvbdfhv.xyz"]
##[href^="https://4club.reisen/landing"]
##[href^="https://4club.reisen/policy"]
##[href^="https://ad.admitad.com/"]
##[href^="https://adbetnetwork.com"]
##[href^="https://adbetnetwork.com/"]
##[href^="https://adbooks.ru"]
##[href^="https://adbooks.ru/am.html"]
##[href^="https://affibtm.com"]
##[href^="https://affibtm.com/"]
##[href^="https://affiliate.rusvpn.com"]
##[href^="https://affiliate.rusvpn.com/"]
##[href^="https://affiliate.rusvpn.com/click"]
##[href^="https://affiliate.rusvpn.com/click.php"]
##[href^="https://airartapt.site"]
##[href^="https://airartapt.site/"]
##[href^="https://akbet60.co/m"
##[href^="https://amorenetwork.com"]
##[href^="https://anamimyjyp.tk/"]
##[href^="https://b.findyourpleasure1.life"]
##[href^="https://b.findyourpleasure1.life/"]
##[href^="https://bahsegel189.com"]
##[href^="https://basvuruformu.ml"]
##[href^="https://basvuruformu1.ml"]
##[href^="https://basvuruformu10.ml"]
##[href^="https://basvuruformu11.ml"]
##[href^="https://basvuruformu12.ml"]
##[href^="https://basvuruformu13.ml"]
##[href^="https://basvuruformu14.ml"]
##[href^="https://basvuruformu15.ml"]
##[href^="https://basvuruformu16.ml"]
##[href^="https://basvuruformu17.ml"]
##[href^="https://basvuruformu18.ml"]
##[href^="https://basvuruformu19.ml"]
##[href^="https://basvuruformu2.ml"]
##[href^="https://basvuruformu20.ml"]
##[href^="https://basvuruformu21.ml"]
##[href^="https://basvuruformu22.ml"]
##[href^="https://basvuruformu3.ml"]
##[href^="https://basvuruformu4.ml"]
##[href^="https://basvuruformu4.tk"]
##[href^="https://basvuruformu5.ml"]
##[href^="https://basvuruformu6.ml"]
##[href^="https://basvuruformu7.ml"]
##[href^="https://basvuruformu8.ml"]
##[href^="https://basvuruformu9.ml"]
##[href^="https://baysansli14.com"]
##[href^="https://baysansliortaklik.com"]
##[href^="https://baysansliortaklik.com/"]
##[href^="https://baysansliortaklik.com/click.php"]
##[href^="https://bc.vc/jAf6Eh4"]
##[href^="https://bc.vc/WRrYdnR"]
##[href^="https://bestdataresu1ts.com"]
##[href^="https://bestdataresu1ts.com/mmd/"]
##[href^="https://betonbet1.com"]
##[href^="https://betticket.biz"]
##[href^="https://bgel.ncmfck.com"]
##[href^="https://bgel.ncmfck.com/"]
##[href^="https://bigblacksharkoil.com"]
##[href^="https://bit.ly/2Ctslt0"]
##[href^="https://bit.ly/2E7mIAS"]
##[href^="https://bit.ly/2FE4A5g"]
##[href^="https://bit.ly/2GXyQ8u"]
##[href^="https://bit.ly/2HxwkWC"]
##[href^="https://bit.ly/2KInzej"]
##[href^="https://bit.ly/2KppeZi"]
##[href^="https://bit.ly/2L5R1ea"]
##[href^="https://bit.ly/2MylV32"]
##[href^="https://bit.ly/2NVHjft"]
##[href^="https://bit.ly/2OiCyAu"]
##[href^="https://bit.ly/2Qcu9yq"]
##[href^="https://bit.ly/2qK6f2z"]
##[href^="https://bit.ly/2QmI8BT"]
##[href^="https://bit.ly/2SNGMyD"]
##[href^="https://bit.ly/2UPmIPR"]
##[href^="https://bit.ly/2WDvCys"]
##[href^="https://bit.ly/2Whacr2"]
##[href^="https://bit.ly/2X2tjnI"]
##[href^="https://bit.ly/2x9cHmp"]
##[href^="https://bit.ly/2x9cHmp/"]
##[href^="https://bit.ly/2YcmD7N"]
##[href^="https://bit.ly/2YcmD7N/"]
##[href^="https://bit.ly/2yxDkm6"]
##[href^="https://bit.ly/2Yy1T9O"]
##[href^="https://bit.ly/2Yy1T9O/"]
##[href^="https://bit.ly/2Z35P3p"]
##[href^="https://bit.ly/2Z35P3p/"]
##[href^="https://bit.ly/30ueOuT"]
##[href^="https://bit.ly/30ueOuT/"]
##[href^="https://bit.ly/30ZvMlu"]
##[href^="https://bit.ly/30ZvMlu/"]
##[href^="https://bit.ly/38tqwJT"]
##[href^="https://bit.ly/38tqwJT/"]
##[href^="https://bit.ly/3a11LFE"]
##[href^="https://bit.ly/3arpK0S"]
##[href^="https://bit.ly/3arpK0S/"]
##[href^="https://bit.ly/3avkmun"]
##[href^="https://bit.ly/3avkmun/"]
##[href^="https://bit.ly/3ay8bwh"]
##[href^="https://bit.ly/3ay8bwh/"]