-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOmegaProfile__.pac
8438 lines (8438 loc) · 616 KB
/
OmegaProfile__.pac
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
var FindProxyForURL = function(init, profiles) {
return function(url, host) {
"use strict";
var result = init, scheme = url.substr(0, url.indexOf(":"));
do {
result = profiles[result];
if (typeof result === "function") result = result(url, host, scheme);
} while (typeof result !== "string" || result.charCodeAt(0) === 43);
return result;
};
}("+\u81ea\u52a8\u5207\u6362", {
"+\u81ea\u52a8\u5207\u6362": function(url, host, scheme) {
"use strict";
if (/(?:^|\.)gstatic\.com$/.test(host)) return "+clash";
if (/(?:^|\.)googletagmanager\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gitbook\.io$/.test(host)) return "+clash";
if (/(?:^|\.)spankbang\.party$/.test(host)) return "+clash";
if (/(?:^|\.)xsijishe\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xmorex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)53sb\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tasexy\.com$/.test(host)) return "+clash";
if (/(?:^|\.)exoclick\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cloudflare\.com$/.test(host)) return "+clash";
if (/(?:^|\.)porn87\.com$/.test(host)) return "+clash";
if (/(?:^|\.)liliav\.com$/.test(host)) return "+clash";
if (/(?:^|\.)porn87\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)someav\.com$/.test(host)) return "+clash";
if (/(?:^|\.)69tang\.org$/.test(host)) return "+clash";
if (/(?:^|\.)punishworld\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornfind\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)pornbest\.org$/.test(host)) return "+clash";
if (/(?:^|\.)51cg1\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tktube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wpadmngr\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xasiat\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xascdn\.li$/.test(host)) return "+clash";
if (/(?:^|\.)yasetube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)36717\.info$/.test(host)) return "+clash";
if (/(?:^|\.)xsz-av\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vjav\.tube$/.test(host)) return "+clash";
if (/(?:^|\.)tube4world\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ddyunbo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wvclimbing\.com$/.test(host)) return "+clash";
if (/(?:^|\.)qinav\.com$/.test(host)) return "+clash";
if (/(?:^|\.)heihd\.com$/.test(host)) return "+clash";
if (/(?:^|\.)javrate\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mrtoss03\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vvcdn\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)5xsq\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chichi-pui\.com$/.test(host)) return "+clash";
if (/(?:^|\.)clashforwindows\.org$/.test(host)) return "+clash";
if (/(?:^|\.)docker\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jiuchisu\.net$/.test(host)) return "+clash";
if (/(?:^|\.)youtube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)epochtimes\.com$/.test(host)) return "+clash";
if (/(?:^|\.)eporner\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xnxx-cdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)google-analytics\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sb-cd\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornlulu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mitrade\.com$/.test(host)) return "+clash";
if (/(?:^|\.)google\.com$/.test(host)) return "+clash";
if (/(?:^|\.)girldir\.com$/.test(host)) return "+clash";
if (/(?:^|\.)highperformancecpmgate\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tuta\.com$/.test(host)) return "+clash";
if (/(?:^|\.)henduohao\.com$/.test(host)) return "+clash";
if (/(?:^|\.)office365\.com$/.test(host)) return "+clash";
if (/(?:^|\.)afdian\.net$/.test(host)) return "+clash";
if (/(?:^|\.)storage\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)typekit\.net$/.test(host)) return "+clash";
if (/(?:^|\.)jsdelivr\.net$/.test(host)) return "+clash";
if (/(?:^|\.)toolgg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)yht\.com$/.test(host)) return "+clash";
if (/(?:^|\.)houbb\.github\.io$/.test(host)) return "+clash";
if (/(?:^|\.)redsex\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)reddit\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bigbig\.ai$/.test(host)) return "+clash";
if (/(?:^|\.)kmdn\.gov\.tw$/.test(host)) return "+clash";
if (/(?:^|\.)haoshuo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)seaart\.ai$/.test(host)) return "+clash";
if (/(?:^|\.)kemono\.su$/.test(host)) return "+clash";
if (/(?:^|\.)fbcdn\.net$/.test(host)) return "+clash";
if (/(?:^|\.)hayo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)majinai\.art$/.test(host)) return "+clash";
if (/(?:^|\.)chilloutai\.com$/.test(host)) return "+clash";
if (/(?:^|\.)r3456\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)cat77\.org$/.test(host)) return "+clash";
if (/(?:^|\.)gradio\.s3-us-west-2\.amazonaws\.com$/.test(host)) return "+clash";
if (/(?:^|\.)translate\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)arca\.live$/.test(host)) return "+clash";
if (/(?:^|\.)freenode\.me$/.test(host)) return "+clash";
if (/(?:^|\.)renzhe\.cloud$/.test(host)) return "+clash";
if (/(?:^|\.)civitai\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jquery\.com$/.test(host)) return "+clash";
if (/(?:^|\.)redian\.news$/.test(host)) return "+clash";
if (/(?:^|\.)avatars\.githubusercontent\.com$/.test(host)) return "+clash";
if (/(?:^|\.)stripe\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xuexi123\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)yuuyuublog\.org$/.test(host)) return "+clash";
if (/(?:^|\.)mammothinteractive\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xnn6\.com$/.test(host)) return "+clash";
if (/(?:^|\.)fanqiangdang\.com$/.test(host)) return "+clash";
if (/(?:^|\.)clashios\.com$/.test(host)) return "+clash";
if (/(?:^|\.)github\.com$/.test(host)) return "+clash";
if (/(?:^|\.)flirt4free\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xvideos-cdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)macbookporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)befuck\.net$/.test(host)) return "+clash";
if (/(?:^|\.)git-scm\.com$/.test(host)) return "+clash";
if (/(?:^|\.)midjourney\.com$/.test(host)) return "+clash";
if (/(?:^|\.)madou\.club$/.test(host)) return "+clash";
if (/(?:^|\.)w27\.rocks$/.test(host)) return "+clash";
if (/(?:^|\.)nbys\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)pplah\.com$/.test(host)) return "+clash";
if (/(?:^|\.)fuqqt\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xvideosxl\.com$/.test(host)) return "+clash";
if (/(?:^|\.)4kporn\.tube$/.test(host)) return "+clash";
if (/(?:^|\.)xecce\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nbys1\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)thepornbest\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xvideos\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornkai\.com$/.test(host)) return "+clash";
if (/(?:^|\.)etahub\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xzylm\.com$/.test(host)) return "+clash";
if (/(?:^|\.)caiji04\.com$/.test(host)) return "+clash";
if (/(?:^|\.)apiabzy\.com$/.test(host)) return "+clash";
if (/(?:^|\.)elemecdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)saejeuj\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hanime1\.me$/.test(host)) return "+clash";
if (/(?:^|\.)ddhft18\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pigav\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ysjdm\.net$/.test(host)) return "+clash";
if (/(?:^|\.)onetag-sys\.com$/.test(host)) return "+clash";
if (/(?:^|\.)segment\.com$/.test(host)) return "+clash";
if (/(?:^|\.)loveplay123\.com$/.test(host)) return "+clash";
if (/(?:^|\.)123moviesfoxs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)statically\.io$/.test(host)) return "+clash";
if (/(?:^|\.)rollingfhr\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)kanhkmoov\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mixily\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zenodo\.org$/.test(host)) return "+clash";
if (/(?:^|\.)wuyadianying\.com$/.test(host)) return "+clash";
if (/(?:^|\.)githubusercontent\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bootcss\.com$/.test(host)) return "+clash";
if (/(?:^|\.)007ts\.me$/.test(host)) return "+clash";
if (/(?:^|\.)4kdyw\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)leancloud\.app$/.test(host)) return "+clash";
if (/(?:^|\.)bit\.ly$/.test(host)) return "+clash";
if (/(?:^|\.)biggggg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mudvod\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)7dax\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hkdy168\.com$/.test(host)) return "+clash";
if (/(?:^|\.)3434\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)jihepan\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zhuoju\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)sssoou\.com$/.test(host)) return "+clash";
if (/(?:^|\.)telegram\.org$/.test(host)) return "+clash";
if (/(?:^|\.)nessbyte\.com$/.test(host)) return "+clash";
if (/(?:^|\.)249999\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)aoxtv\.com$/.test(host)) return "+clash";
if (/(?:^|\.)picmeta2022\.top$/.test(host)) return "+clash";
if (/(?:^|\.)css\.lc$/.test(host)) return "+clash";
if (/(?:^|\.)newpppp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zhenbuka\.fun$/.test(host)) return "+clash";
if (/(?:^|\.)nfmovies\.com$/.test(host)) return "+clash";
if (/(?:^|\.)555dsv\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nbyy\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)wmsio\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)yekong\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)7caa\.com$/.test(host)) return "+clash";
if (/(?:^|\.)yanetflix\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vercel\.app$/.test(host)) return "+clash";
if (/(?:^|\.)bitgravity\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mfrjz\.com$/.test(host)) return "+clash";
if (/(?:^|\.)caiji26\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xjjzyapi\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xiaoya\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)w3schools\.com$/.test(host)) return "+clash";
if (/(?:^|\.)alicdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)notion\.site$/.test(host)) return "+clash";
if (/(?:^|\.)plot\.ly$/.test(host)) return "+clash";
if (/(?:^|\.)eversql\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)huijia18\.com$/.test(host)) return "+clash";
if (/(?:^|\.)shixiu\.org$/.test(host)) return "+clash";
if (/(?:^|\.)aiuys\.com$/.test(host)) return "+clash";
if (/(?:^|\.)fonts\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)teamviewer\.com$/.test(host)) return "+clash";
if (/(?:^|\.)1wei\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pinterest\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pixnet\.net$/.test(host)) return "+clash";
if (/(?:^|\.)twitter\.com$/.test(host)) return "+clash";
if (/(?:^|\.)twimg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gkoef\.com$/.test(host)) return "+clash";
if (/(?:^|\.)spankbang\.com$/.test(host)) return "+clash";
if (/(?:^|\.)v2ex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zeranoe\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornhub\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wenshibaowenbei\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wanningyly\.com$/.test(host)) return "+clash";
if (/(?:^|\.)laihuluwa\.com$/.test(host)) return "+clash";
if (/(?:^|\.)v2rayse\.com$/.test(host)) return "+clash";
if (/(?:^|\.)qiang999\.blogspot\.com$/.test(host)) return "+clash";
if (/(?:^|\.)91porn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nhentai\.xxx$/.test(host)) return "+clash";
if (/(?:^|\.)bigmacporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xchina\.co$/.test(host)) return "+clash";
if (/(?:^|\.)freepornroute\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vscdns\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xnxx\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)papalah\.pw$/.test(host)) return "+clash";
if (/(?:^|\.)1ka\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xnxx\.com$/.test(host)) return "+clash";
if (/(?:^|\.)launchdarkly\.com$/.test(host)) return "+clash";
if (/(?:^|\.)postman\.com$/.test(host)) return "+clash";
if (/(?:^|\.)telemetr\.io$/.test(host)) return "+clash";
if (/(?:^|\.)chineseteenporn\.com\.es$/.test(host)) return "+clash";
if (/(?:^|\.)addthis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mypornvid\.fun$/.test(host)) return "+clash";
if (/(?:^|\.)xxx18\.uno$/.test(host)) return "+clash";
if (/(?:^|\.)bbavio\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xnxx3\.com$/.test(host)) return "+clash";
if (/(?:^|\.)rapeporn\.name$/.test(host)) return "+clash";
if (/(?:^|\.)2beeg\.me$/.test(host)) return "+clash";
if (/(?:^|\.)wwwxxx\.uno$/.test(host)) return "+clash";
if (/(?:^|\.)girlpornhd\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ahcdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)txxx\.tube$/.test(host)) return "+clash";
if (/(?:^|\.)xv-videos1\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xvideos91\.com\.es$/.test(host)) return "+clash";
if (/(?:^|\.)freepornc\.com$/.test(host)) return "+clash";
if (/(?:^|\.)freexvideos\.org$/.test(host)) return "+clash";
if (/(?:^|\.)aaav\.win$/.test(host)) return "+clash";
if (/(?:^|\.)av4all\.com$/.test(host)) return "+clash";
if (/(?:^|\.)91chinesesex\.com\.es$/.test(host)) return "+clash";
if (/(?:^|\.)deepfakeporn\.net$/.test(host)) return "+clash";
if (/(?:^|\.)yase661\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hdsex\.org$/.test(host)) return "+clash";
if (/(?:^|\.)pornve\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ghfeva\.com$/.test(host)) return "+clash";
if (/(?:^|\.)deepfakesporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mrdeepfakes\.com$/.test(host)) return "+clash";
if (/(?:^|\.)androidappsapk\.co$/.test(host)) return "+clash";
if (/(?:^|\.)apkleecher\.com$/.test(host)) return "+clash";
if (/(?:^|\.)crifan\.com$/.test(host)) return "+clash";
if (/(?:^|\.)appadvice\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jetbrains\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gvt1\.com$/.test(host)) return "+clash";
if (/(?:^|\.)android\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bluebox\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xfeiyu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cnzz\.com$/.test(host)) return "+clash";
if (/(?:^|\.)lncld\.net$/.test(host)) return "+clash";
if (/(?:^|\.)cn-sec\.com$/.test(host)) return "+clash";
if (/(?:^|\.)evecalm\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pythonanywhere\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gm7\.org$/.test(host)) return "+clash";
if (/(?:^|\.)xn--org-ge9d94sd8a2no27gyp1fda0772b\.assets$/.test(host)) return "+clash";
if (/(?:^|\.)zcfy\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)zh188\.net$/.test(host)) return "+clash";
if (/(?:^|\.)thefatherofsalmon\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wujiys\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zhihu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)lywdoo\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)neko\.re$/.test(host)) return "+clash";
if (/(?:^|\.)sexu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hog\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)mxpnl\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bobolj\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cnljpic\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gxeut\.com$/.test(host)) return "+clash";
if (/(?:^|\.)asiantube\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)sexcelebrity\.net$/.test(host)) return "+clash";
if (/(?:^|\.)stripchat\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kenxxx\.com$/.test(host)) return "+clash";
if (/(?:^|\.)managementtube\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)pornjapanesesex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cdn19tube\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)cdngangsta\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pussyspace\.net$/.test(host)) return "+clash";
if (/(?:^|\.)video888\.net$/.test(host)) return "+clash";
if (/(?:^|\.)e-x\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)javteentube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xhamster19\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xhcdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)silver-movies\.com$/.test(host)) return "+clash";
if (/(?:^|\.)yadro\.ru$/.test(host)) return "+clash";
if (/(?:^|\.)redwap\.me$/.test(host)) return "+clash";
if (/(?:^|\.)cdn69\.net$/.test(host)) return "+clash";
if (/(?:^|\.)pornhdfilm\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornsex16\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xiaobi200\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hellporn\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)sezhanxo\.net$/.test(host)) return "+clash";
if (/(?:^|\.)bookmark\.xxx$/.test(host)) return "+clash";
if (/(?:^|\.)chinesepron\.com\.es$/.test(host)) return "+clash";
if (/(?:^|\.)histats\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tecdn\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)theporn\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)chinaporn24\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sexvid\.xxx$/.test(host)) return "+clash";
if (/^178\.128\.220\.28$/.test(host)) return "+clash";
if (/(?:^|\.)xnxx-downloader\.net$/.test(host)) return "+clash";
if (/(?:^|\.)iporntv\.net$/.test(host)) return "+clash";
if (/^178\.128\.25\.172$/.test(host)) return "+clash";
if (/(?:^|\.)fewporn\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)avidolpics\.com$/.test(host)) return "+clash";
if (/(?:^|\.)merlinblog\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)pypi\.org$/.test(host)) return "+clash";
if (/(?:^|\.)googlevideo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)rvwab\.com$/.test(host)) return "+clash";
if (/(?:^|\.)btp\.ac\.id$/.test(host)) return "+clash";
if (/(?:^|\.)lanzous\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vi-mm\.eu$/.test(host)) return "+clash";
if (/(?:^|\.)furry\.top$/.test(host)) return "+clash";
if (/(?:^|\.)vmos\.com$/.test(host)) return "+clash";
if (/(?:^|\.)githubmemory\.com$/.test(host)) return "+clash";
if (/(?:^|\.)alpinelinux\.org$/.test(host)) return "+clash";
if (/(?:^|\.)ravenjs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nz\.lu$/.test(host)) return "+clash";
if (/(?:^|\.)shuzhiduo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)discourse-cdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gitpress\.io$/.test(host)) return "+clash";
if (/(?:^|\.)python\.org$/.test(host)) return "+clash";
if (/(?:^|\.)mattkaydiary\.com$/.test(host)) return "+clash";
if (/(?:^|\.)win10set\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cookiefirst\.com$/.test(host)) return "+clash";
if (/(?:^|\.)usenet\.nl$/.test(host)) return "+clash";
if (/(?:^|\.)t\.co$/.test(host)) return "+clash";
if (/(?:^|\.)pmadata\.org$/.test(host)) return "+clash";
if (/(?:^|\.)bootstrapcdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)clustermapping\.us$/.test(host)) return "+clash";
if (/(?:^|\.)stackoverflow\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cxyzjd\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tube\.bz$/.test(host)) return "+clash";
if (/(?:^|\.)undefined\.undefined$/.test(host)) return "+clash";
if (/(?:^|\.)pornfreemovies\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)sweetpornhub\.com$/.test(host)) return "+clash";
if (/(?:^|\.)porntw\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)tryasiansex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wapbold\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wapka\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)highwebmedia\.com$/.test(host)) return "+clash";
if (/(?:^|\.)adcccj\.com$/.test(host)) return "+clash";
if (/(?:^|\.)haocai1688\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pytgo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)91pron\.com\.es$/.test(host)) return "+clash";
if (/(?:^|\.)8kpornvids\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sextubes2u\.com$/.test(host)) return "+clash";
if (/(?:^|\.)asianssex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gravatar\.com$/.test(host)) return "+clash";
if (/(?:^|\.)homemadeporn\.com\.es$/.test(host)) return "+clash";
if (/(?:^|\.)b-cdn\.net$/.test(host)) return "+clash";
if (/(?:^|\.)fluidplayer\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kliqz\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tapioni\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sureporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kanzhen666\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vf201\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chinesepornvideos\.com\.es$/.test(host)) return "+clash";
if (/(?:^|\.)ruvideos\.net$/.test(host)) return "+clash";
if (/(?:^|\.)images-dnxlive\.com$/.test(host)) return "+clash";
if (/(?:^|\.)fapster\.xxx$/.test(host)) return "+clash";
if (/(?:^|\.)dcyate\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornvideosuhd\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kissjav\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xxx2019\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)x-videos\.club$/.test(host)) return "+clash";
if (/(?:^|\.)128100\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)jav-pics\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cableav\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)xvideos3\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bhabhiporn\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)naked-asian-porn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)4kporn\.xxx$/.test(host)) return "+clash";
if (/(?:^|\.)srcdn\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)fuckinfo\.mobi$/.test(host)) return "+clash";
if (/(?:^|\.)pornlivenews\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xvideos2\.com$/.test(host)) return "+clash";
if (/(?:^|\.)japanesexxx\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)chinese-porn\.me$/.test(host)) return "+clash";
if (/(?:^|\.)msauth\.net$/.test(host)) return "+clash";
if (/(?:^|\.)visualstudio\.com$/.test(host)) return "+clash";
if (/(?:^|\.)google\.com\.hk$/.test(host)) return "+clash";
if (/(?:^|\.)areaaperta\.com$/.test(host)) return "+clash";
if (/(?:^|\.)y2mate\.com$/.test(host)) return "+clash";
if (/(?:^|\.)repaik\.com$/.test(host)) return "+clash";
if (/(?:^|\.)div\.io$/.test(host)) return "+clash";
if (/(?:^|\.)laucyun\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tinyurl\.com$/.test(host)) return "+clash";
if (/(?:^|\.)virt4me\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xhamster13\.com$/.test(host)) return "+clash";
if (/(?:^|\.)aida2w\.me$/.test(host)) return "+clash";
if (/(?:^|\.)buysellads\.com$/.test(host)) return "+clash";
if (/(?:^|\.)codepen\.io$/.test(host)) return "+clash";
if (/(?:^|\.)speedcurve\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sketch-vue\.firebaseapp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mmstat\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jetbrains-license-server$/.test(host)) return "+clash";
if (/(?:^|\.)liuhaihua\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)marketo\.net$/.test(host)) return "+clash";
if (/(?:^|\.)facebook\.net$/.test(host)) return "+clash";
if (/(?:^|\.)licdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)googleadservices\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mouseflow\.com$/.test(host)) return "+clash";
if (/(?:^|\.)adsymptotic\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xtom\.com\.hk$/.test(host)) return "+clash";
if (/(?:^|\.)chinapress\.com\.my$/.test(host)) return "+clash";
if (/(?:^|\.)zxzjs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wenxuecity\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ntdtv\.com$/.test(host)) return "+clash";
if (/(?:^|\.)firebaseinstallations\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chimpstatic\.com$/.test(host)) return "+clash";
if (/(?:^|\.)snapchat\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hk01\.com$/.test(host)) return "+clash";
if (/(?:^|\.)alexametrics\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ipify\.org$/.test(host)) return "+clash";
if (/(?:^|\.)goodytech\.io$/.test(host)) return "+clash";
if (/(?:^|\.)nst\.com\.my$/.test(host)) return "+clash";
if (/(?:^|\.)euronews\.com$/.test(host)) return "+clash";
if (/(?:^|\.)straitstimes\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wsj\.net$/.test(host)) return "+clash";
if (/(?:^|\.)nyt\.com$/.test(host)) return "+clash";
if (/(?:^|\.)s-nbcnews\.com$/.test(host)) return "+clash";
if (/(?:^|\.)soka\.wang$/.test(host)) return "+clash";
if (/(?:^|\.)fanqiang\.network$/.test(host)) return "+clash";
if (/(?:^|\.)maven\.org$/.test(host)) return "+clash";
if (/(?:^|\.)secretchina\.com$/.test(host)) return "+clash";
if (/(?:^|\.)d31qbv1cthcecs\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)youmaker\.com$/.test(host)) return "+clash";
if (/(?:^|\.)daum\.net$/.test(host)) return "+clash";
if (/(?:^|\.)loongese\.com$/.test(host)) return "+clash";
if (/(?:^|\.)h-cdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dw\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bbc\.co\.uk$/.test(host)) return "+clash";
if (/(?:^|\.)bbci\.co\.uk$/.test(host)) return "+clash";
if (/(?:^|\.)bbc\.com$/.test(host)) return "+clash";
if (/(?:^|\.)rfi\.fr$/.test(host)) return "+clash";
if (/(?:^|\.)bdsmlr\.com$/.test(host)) return "+clash";
if (/(?:^|\.)assets$/.test(host)) return "+clash";
if (/(?:^|\.)an-aha\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wemp\.app$/.test(host)) return "+clash";
if (/(?:^|\.)1977zy-youku\.com$/.test(host)) return "+clash";
if (/(?:^|\.)oyohyee\.com$/.test(host)) return "+clash";
if (/(?:^|\.)alvisu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)on\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)youku\.com$/.test(host)) return "+clash";
if (/(?:^|\.)carrotchou\.blog$/.test(host)) return "+clash";
if (/(?:^|\.)spring4u\.info$/.test(host)) return "+clash";
if (/(?:^|\.)padsblue\.com$/.test(host)) return "+clash";
if (/(?:^|\.)revolvy\.com$/.test(host)) return "+clash";
if (/(?:^|\.)flyzy2005\.com$/.test(host)) return "+clash";
if (/(?:^|\.)freev2ray\.org$/.test(host)) return "+clash";
if (/(?:^|\.)javgogogo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornplaybb\.com$/.test(host)) return "+clash";
if (/(?:^|\.)disquscdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chenmin\.info$/.test(host)) return "+clash";
if (/(?:^|\.)theporndude\.com$/.test(host)) return "+clash";
if (/(?:^|\.)trafficjunky\.net$/.test(host)) return "+clash";
if (/(?:^|\.)contentabc\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gamesofdesire\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nnfile\.net$/.test(host)) return "+clash";
if (/(?:^|\.)danjiyx\.com$/.test(host)) return "+clash";
if (/(?:^|\.)instagram\.com$/.test(host)) return "+clash";
if (/^38\.103\.161\.157$/.test(host)) return "+clash";
if (/(?:^|\.)fgrpgs\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)6parkbbs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)apkpure\.com$/.test(host)) return "+clash";
if (/(?:^|\.)useso\.com$/.test(host)) return "+clash";
if (/(?:^|\.)rfa\.org$/.test(host)) return "+clash";
if (/(?:^|\.)workers\.dev$/.test(host)) return "+clash";
if (/(?:^|\.)nih\.gov$/.test(host)) return "+clash";
if (/(?:^|\.)report-uri\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ycombinator\.com$/.test(host)) return "+clash";
if (/(?:^|\.)online-reader\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vuejs\.org$/.test(host)) return "+clash";
if (/(?:^|\.)d36jcksde1wxzq\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)wootric\.com$/.test(host)) return "+clash";
if (/(?:^|\.)facebook\.com$/.test(host)) return "+clash";
if (/(?:^|\.)heikejilaila\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)xiaosonglog\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wikiwand\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vcbeat\.net$/.test(host)) return "+clash";
if (/(?:^|\.)hit\.edu\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)scootersoftware\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tortoisegit\.org$/.test(host)) return "+clash";
if (/(?:^|\.)xinjipin\.com$/.test(host)) return "+clash";
if (/(?:^|\.)starcracked\.com$/.test(host)) return "+clash";
if (/(?:^|\.)itefix\.net$/.test(host)) return "+clash";
if (/(?:^|\.)xlmb\.tk$/.test(host)) return "+clash";
if (/(?:^|\.)bettercallpaul\.info$/.test(host)) return "+clash";
if (/(?:^|\.)typora\.io$/.test(host)) return "+clash";
if (/(?:^|\.)coursehero\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wjzydg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)coms\.hk$/.test(host)) return "+clash";
if (/(?:^|\.)cskaoyan\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ypncdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)imaios\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ssrtool\.com$/.test(host)) return "+clash";
if (/(?:^|\.)beijingprice\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)donews\.com$/.test(host)) return "+clash";
if (/(?:^|\.)roomsbyliv\.com$/.test(host)) return "+clash";
if (/(?:^|\.)aycan\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dicomlibrary\.com$/.test(host)) return "+clash";
if (/(?:^|\.)barre\.nom\.fr$/.test(host)) return "+clash";
if (/(?:^|\.)pixmeo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)deepcs\.me$/.test(host)) return "+clash";
if (/(?:^|\.)datamind\.ru$/.test(host)) return "+clash";
if (/(?:^|\.)1dmp\.io$/.test(host)) return "+clash";
if (/(?:^|\.)aishangshahua\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dplayer\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)cartoonporno\.xxx$/.test(host)) return "+clash";
if (/(?:^|\.)52nlp\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)ytimg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)uptodown\.com$/.test(host)) return "+clash";
if (/(?:^|\.)lrshuai\.top$/.test(host)) return "+clash";
if (/(?:^|\.)kali\.org$/.test(host)) return "+clash";
if (/(?:^|\.)porn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)youporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)haitum\.com$/.test(host)) return "+clash";
if (/(?:^|\.)trafficshop\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tube2017\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xsexvideos\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)javhd\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cartoonpornvideos\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dbbp1\.com$/.test(host)) return "+clash";
if (/(?:^|\.)deviantart\.com$/.test(host)) return "+clash";
if (/(?:^|\.)t\.me$/.test(host)) return "+clash";
if (/(?:^|\.)watchmygf\.me$/.test(host)) return "+clash";
if (/(?:^|\.)youramateurporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hotmovs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)new131\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mlog\.club$/.test(host)) return "+clash";
if (/(?:^|\.)usyiyi\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)glassbeam\.com$/.test(host)) return "+clash";
if (/(?:^|\.)porn18sex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)onlyanimalporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mediacnt\.pro$/.test(host)) return "+clash";
if (/(?:^|\.)f-vids\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)letmejerk\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sciowl\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)v2ray\.cat$/.test(host)) return "+clash";
if (/(?:^|\.)maying\.co$/.test(host)) return "+clash";
if (/(?:^|\.)neohope\.org$/.test(host)) return "+clash";
if (/(?:^|\.)tumblr\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nsimg\.net$/.test(host)) return "+clash";
if (/(?:^|\.)porn\.biz$/.test(host)) return "+clash";
if (/(?:^|\.)salda\.ws$/.test(host)) return "+clash";
if (/(?:^|\.)olevod\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chachexinxi\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)geotoolkit\.org$/.test(host)) return "+clash";
if (/(?:^|\.)nlpcn\.org$/.test(host)) return "+clash";
if (/(?:^|\.)cvtron\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)itread01\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nssm\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)imgur\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ajax\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sstatic\.net$/.test(host)) return "+clash";
if (/(?:^|\.)urlteam\.org$/.test(host)) return "+clash";
if (/(?:^|\.)einverne\.info$/.test(host)) return "+clash";
if (/(?:^|\.)jinshunqing\.com$/.test(host)) return "+clash";
if (/(?:^|\.)distiltag\.com$/.test(host)) return "+clash";
if (/(?:^|\.)amung\.us$/.test(host)) return "+clash";
if (/(?:^|\.)homefilm\.com$/.test(host)) return "+clash";
if (/(?:^|\.)motherlessmedia\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xhamster\.one$/.test(host)) return "+clash";
if (/(?:^|\.)18asiansex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)24porn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)by-clips\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wuwweb\.com$/.test(host)) return "+clash";
if (/(?:^|\.)lncn\.org$/.test(host)) return "+clash";
if (/(?:^|\.)thumbzilla\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ssrshare\.us$/.test(host)) return "+clash";
if (/(?:^|\.)stru\.ml$/.test(host)) return "+clash";
if (/(?:^|\.)springide\.org$/.test(host)) return "+clash";
if (/(?:^|\.)porndroids\.com$/.test(host)) return "+clash";
if (/(?:^|\.)porn555\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pinkholetube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)oracle\.com$/.test(host)) return "+clash";
if (/(?:^|\.)telesco\.pe$/.test(host)) return "+clash";
if (/(?:^|\.)updrv\.com$/.test(host)) return "+clash";
if (/(?:^|\.)160\.com$/.test(host)) return "+clash";
if (/(?:^|\.)atas\.io$/.test(host)) return "+clash";
if (/(?:^|\.)imglnkc\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dcm4che\.org$/.test(host)) return "+clash";
if (/(?:^|\.)wanfangdata\.com\.hk$/.test(host)) return "+clash";
if (/(?:^|\.)nlp-bigdatalab\.org$/.test(host)) return "+clash";
if (/(?:^|\.)mopaas\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chengweiyang\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)wxrym\.com$/.test(host)) return "+clash";
if (/(?:^|\.)handsontable\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cowmanchiang\.me$/.test(host)) return "+clash";
if (/(?:^|\.)zhentaoo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)firestore\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wikimedia\.org$/.test(host)) return "+clash";
if (/(?:^|\.)devtalking\.com$/.test(host)) return "+clash";
if (/(?:^|\.)blogger\.com$/.test(host)) return "+clash";
if (/(?:^|\.)blogblog\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nanbing\.me$/.test(host)) return "+clash";
if (/(?:^|\.)outofmemory\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)x-berry\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mifengtd\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)ideassea\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wordpress\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mindview\.net$/.test(host)) return "+clash";
if (/(?:^|\.)haitaozj\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bahamut\.com\.tw$/.test(host)) return "+clash";
if (/(?:^|\.)getpostman\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ggpht\.com$/.test(host)) return "+clash";
if (/(?:^|\.)breaktime\.com\.tw$/.test(host)) return "+clash";
if (/(?:^|\.)azofreeware\.com$/.test(host)) return "+clash";
if (/(?:^|\.)codicode\.com$/.test(host)) return "+clash";
if (/(?:^|\.)instructure-uploads\.s3\.amazonaws\.com$/.test(host)) return "+clash";
if (/(?:^|\.)du11hjcvx0uqb\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)www\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)v2ray\.com$/.test(host)) return "+clash";
if (/(?:^|\.)s3-us-west-2\.amazonaws\.com$/.test(host)) return "+clash";
if (/(?:^|\.)anyproxy\.io$/.test(host)) return "+clash";
if (/(?:^|\.)ifttt\.com$/.test(host)) return "+clash";
if (/(?:^|\.)penguindreams\.org$/.test(host)) return "+clash";
if (/(?:^|\.)fightthefuture\.org$/.test(host)) return "+clash";
if (/(?:^|\.)khanism\.org$/.test(host)) return "+clash";
if (/(?:^|\.)journeyofkhan\.us$/.test(host)) return "+clash";
if (/(?:^|\.)java3z\.com$/.test(host)) return "+clash";
if (/(?:^|\.)rawgit\.com$/.test(host)) return "+clash";
if (/(?:^|\.)disqus\.com$/.test(host)) return "+clash";
if (/(?:^|\.)d1jyvh0kxilfa7\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)amazonaws\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gitter\.im$/.test(host)) return "+clash";
if (/(?:^|\.)lyuehh\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wangbin26\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ssr\.tools$/.test(host)) return "+clash";
if (/(?:^|\.)smallsfe\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dremio\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xuehua\.us$/.test(host)) return "+clash";
if (/(?:^|\.)dudodiprj2sv7\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)qlik\.com$/.test(host)) return "+clash";
if (/(?:^|\.)slicy\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)jobbole\.com$/.test(host)) return "+clash";
if (/(?:^|\.)f2er\.club$/.test(host)) return "+clash";
if (/(?:^|\.)atlassian\.com$/.test(host)) return "+clash";
if (/(?:^|\.)securetoken\.googleapis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sassmeister\.com$/.test(host)) return "+clash";
if (/(?:^|\.)iloveimg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hangyexia\.com$/.test(host)) return "+clash";
if (/(?:^|\.)yunpanjingling\.com$/.test(host)) return "+clash";
if (/(?:^|\.)d2sl9eawlu179j\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)npmjs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sihaidy\.com$/.test(host)) return "+clash";
if (/(?:^|\.)gitbooks\.io$/.test(host)) return "+clash";
if (/(?:^|\.)tsyndicate\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zuoyan\.space$/.test(host)) return "+clash";
if (/(?:^|\.)ezcrawler\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)wangye\.io$/.test(host)) return "+clash";
if (/(?:^|\.)dicom-standard\.it$/.test(host)) return "+clash";
if (/(?:^|\.)dicom-viewer\.eu$/.test(host)) return "+clash";
if (/(?:^|\.)boxdicom\.com$/.test(host)) return "+clash";
if (/(?:^|\.)qnap\.com$/.test(host)) return "+clash";
if (/(?:^|\.)synology\.com$/.test(host)) return "+clash";
if (/(?:^|\.)consensu\.org$/.test(host)) return "+clash";
if (/(?:^|\.)redtube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hentai\.fm$/.test(host)) return "+clash";
if (/(?:^|\.)zbporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sharethis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cdn13\.com$/.test(host)) return "+clash";
if (/(?:^|\.)stripcdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xhamster\.com$/.test(host)) return "+clash";
if (/(?:^|\.)3dsexvilla\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mega\.nz$/.test(host)) return "+clash";
if (/(?:^|\.)abdwap2\.com$/.test(host)) return "+clash";
if (/(?:^|\.)atgfw\.org$/.test(host)) return "+clash";
if (/(?:^|\.)http$/.test(host)) return "+clash";
if (/(?:^|\.)samucs\.blogspot\.com$/.test(host)) return "+clash";
if (/(?:^|\.)openuserjs\.org$/.test(host)) return "+clash";
if (/(?:^|\.)idrsolutions\.com$/.test(host)) return "+clash";
if (/(?:^|\.)procedurego\.com$/.test(host)) return "+clash";
if (/(?:^|\.)d2uowa935fr33t\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)d1okpoprma61ms\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)stackoverflow\.org\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)sourceforge\.net$/.test(host)) return "+clash";
if (/(?:^|\.)wikipedia\.org$/.test(host)) return "+clash";
if (/(?:^|\.)mozilla\.org$/.test(host)) return "+clash";
if (/(?:^|\.)selinayu\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)stumpclocks\.com$/.test(host)) return "+clash";
if (/(?:^|\.)simonsarris\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pixijs\.download$/.test(host)) return "+clash";
if (/(?:^|\.)pokrenipromjenu\.hr$/.test(host)) return "+clash";
if (/(?:^|\.)tool\.lu$/.test(host)) return "+clash";
if (/(?:^|\.)mzggzy\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dwv6i237vhjwj\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)freeoutline\.org$/.test(host)) return "+clash";
if (/(?:^|\.)konvajs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jshell\.net$/.test(host)) return "+clash";
if (/(?:^|\.)jsfiddle\.net$/.test(host)) return "+clash";
if (/(?:^|\.)porn300\.com$/.test(host)) return "+clash";
if (/(?:^|\.)fullcalendar\.io$/.test(host)) return "+clash";
if (/(?:^|\.)w2bc\.com$/.test(host)) return "+clash";
if (/(?:^|\.)geoffzhu\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)wuxubj\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)ybdu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)outdoreality\.com$/.test(host)) return "+clash";
if (/(?:^|\.)eamonn\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)chromebeat\.com$/.test(host)) return "+clash";
if (/(?:^|\.)getmdl\.io$/.test(host)) return "+clash";
if (/(?:^|\.)kagura\.me$/.test(host)) return "+clash";
if (/(?:^|\.)getweapp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)studiofow\.com$/.test(host)) return "+clash";
if (/(?:^|\.)openshiftapps\.com$/.test(host)) return "+clash";
if (/(?:^|\.)darrenliuwei\.com$/.test(host)) return "+clash";
if (/(?:^|\.)lastwarm\.com$/.test(host)) return "+clash";
if (/(?:^|\.)diveng\.io$/.test(host)) return "+clash";
if (/(?:^|\.)oulafen\.com$/.test(host)) return "+clash";
if (/(?:^|\.)lutizi\.com$/.test(host)) return "+clash";
if (/(?:^|\.)libraries\.io$/.test(host)) return "+clash";
if (/(?:^|\.)v2raypro\.com$/.test(host)) return "+clash";
if (/(?:^|\.)3030consultores\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jsshare\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xadtjg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xiami\.la$/.test(host)) return "+clash";
if (/(?:^|\.)znds\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mm126\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)baolimoha\.com$/.test(host)) return "+clash";
if (/(?:^|\.)apache\.org$/.test(host)) return "+clash";
if (/(?:^|\.)geetry\.com$/.test(host)) return "+clash";
if (/(?:^|\.)joyk\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tsky\.cc$/.test(host)) return "+clash";
if (/^104\.245\.8\.176$/.test(host)) return "+clash";
if (/(?:^|\.)medium\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tiny\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)85porn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)knockporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)trafficstars\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nvdst\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kookporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chinapornmovie\.com$/.test(host)) return "+clash";
if (/(?:^|\.)txxx\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jerk\.porn$/.test(host)) return "+clash";
if (/(?:^|\.)nuvid\.com$/.test(host)) return "+clash";
if (/(?:^|\.)porngrace\.com$/.test(host)) return "+clash";
if (/(?:^|\.)chinagcdxyjng\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)yyoyyu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)haiwaiyy\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bbuseruploads\.s3\.amazonaws\.com$/.test(host)) return "+clash";
if (/(?:^|\.)surveymonkey\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xuxiaobo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jtvnw\.net$/.test(host)) return "+clash";
if (/(?:^|\.)imasdk\.googleapis\.com$/.test(host)) return "+clash";
if (/^185\.38\.13\.130$/.test(host)) return "+clash";
if (/(?:^|\.)la4ji\.blogspot\.com$/.test(host)) return "+clash";
if (/(?:^|\.)t66y\.com$/.test(host)) return "+clash";
if (/(?:^|\.)girl-atlas\.com$/.test(host)) return "+clash";
if (/(?:^|\.)golang\.org$/.test(host)) return "+clash";
if (/(?:^|\.)foxporns\.com$/.test(host)) return "+clash";
if (/(?:^|\.)colliderporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dobbyporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)busters\.porn$/.test(host)) return "+clash";
if (/(?:^|\.)vporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cdn2-youku\.com$/.test(host)) return "+clash";
if (/(?:^|\.)itmyhome\.com$/.test(host)) return "+clash";
if (/(?:^|\.)scriptoj\.com$/.test(host)) return "+clash";
if (/(?:^|\.)appetize\.io$/.test(host)) return "+clash";
if (/(?:^|\.)xiaoleilu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)flatsparkskin\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jikefriend\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ohoporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jequel\.de$/.test(host)) return "+clash";
if (/(?:^|\.)clipeu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)heavy-r\.com$/.test(host)) return "+clash";
if (/(?:^|\.)youngpornvideos\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hclips\.com$/.test(host)) return "+clash";
if (/(?:^|\.)buawdshes\.ru$/.test(host)) return "+clash";
if (/(?:^|\.)sexy-asian-online\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pinimg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)steamcommunity\.com$/.test(host)) return "+clash";
if (/(?:^|\.)appledaily\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sydneytoday\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xuite\.net$/.test(host)) return "+clash";
if (/(?:^|\.)udn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)weappdev\.com$/.test(host)) return "+clash";
if (/(?:^|\.)haiyun\.me$/.test(host)) return "+clash";
if (/(?:^|\.)learnxinyminutes\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zaoduke\.net$/.test(host)) return "+clash";
if (/(?:^|\.)openq\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)connoratherton\.com$/.test(host)) return "+clash";
if (/(?:^|\.)d22wsyl1zemnyu\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)frontendfront\.com$/.test(host)) return "+clash";
if (/(?:^|\.)amazon\.com$/.test(host)) return "+clash";
if (/(?:^|\.)artlimes\.com$/.test(host)) return "+clash";
if (/(?:^|\.)toobigdata\.com$/.test(host)) return "+clash";
if (/(?:^|\.)maxket\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pixfs\.net$/.test(host)) return "+clash";
if (/(?:^|\.)mandrillapp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sparanoid\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xiaochengxuyingxiao\.com$/.test(host)) return "+clash";
if (/(?:^|\.)comtopcoder\.com$/.test(host)) return "+clash";
if (/(?:^|\.)say-move\.org$/.test(host)) return "+clash";
if (/(?:^|\.)media-imdb\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kankandou\.com$/.test(host)) return "+clash";
if (/(?:^|\.)phptalker\.com$/.test(host)) return "+clash";
if (/(?:^|\.)html5rocks\.com$/.test(host)) return "+clash";
if (/(?:^|\.)meiwenting\.com$/.test(host)) return "+clash";
if (/(?:^|\.)j11y\.io$/.test(host)) return "+clash";
if (/(?:^|\.)d33wubrfki0l68\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)easyporn\.xxx$/.test(host)) return "+clash";
if (/(?:^|\.)18dreams\.net$/.test(host)) return "+clash";
if (/(?:^|\.)naughtymachinima\.com$/.test(host)) return "+clash";
if (/(?:^|\.)fastwebcn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vpnsg\.net$/.test(host)) return "+clash";
if (/(?:^|\.)vuejsfeed\.com$/.test(host)) return "+clash";
if (/(?:^|\.)dzone\.com$/.test(host)) return "+clash";
if (/(?:^|\.)web-tinker\.com$/.test(host)) return "+clash";
if (/(?:^|\.)woshipm\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ipv6test\.net$/.test(host)) return "+clash";
if (/(?:^|\.)ipv6test\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nyaa\.si$/.test(host)) return "+clash";
if (/(?:^|\.)egtch\.com$/.test(host)) return "+clash";
if (/(?:^|\.)d6vtbcy3ong79\.cloudfront\.net$/.test(host)) return "+clash";
if (/(?:^|\.)android-x86\.org$/.test(host)) return "+clash";
if (/(?:^|\.)weiot\.net$/.test(host)) return "+clash";
if (/(?:^|\.)laibili\.com\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)now\.sh$/.test(host)) return "+clash";
if (/(?:^|\.)benfarrell\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kintosoft\.com$/.test(host)) return "+clash";
if (/(?:^|\.)geluu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)obsidian\.co\.za$/.test(host)) return "+clash";
if (/(?:^|\.)lithium\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mixpanelexport\.com$/.test(host)) return "+clash";
if (/(?:^|\.)webcomponents\.org$/.test(host)) return "+clash";
if (/(?:^|\.)hellosunnyge\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hotoo\.me$/.test(host)) return "+clash";
if (/(?:^|\.)opendigg\.com$/.test(host)) return "+clash";
if (/(?:^|\.)firefoxfan\.org$/.test(host)) return "+clash";
if (/(?:^|\.)leg\.ninja$/.test(host)) return "+clash";
if (/(?:^|\.)pea3nut\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sudodev\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)stripe\.network$/.test(host)) return "+clash";
if (/(?:^|\.)processon\.com$/.test(host)) return "+clash";
if (/(?:^|\.)janmyler\.ninja$/.test(host)) return "+clash";
if (/(?:^|\.)uponeup\.tk$/.test(host)) return "+clash";
if (/(?:^|\.)rorinonaha\.com$/.test(host)) return "+clash";
if (/(?:^|\.)heyzo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)blogself\.com$/.test(host)) return "+clash";
if (/(?:^|\.)www11qqzz\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sezuzu\.com$/.test(host)) return "+clash";
if (/(?:^|\.)5v20\.com$/.test(host)) return "+clash";
if (/(?:^|\.)zhuangbihai\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sdwpwp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)airav\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)supcms\.com$/.test(host)) return "+clash";
if (/(?:^|\.)llnwd\.net$/.test(host)) return "+clash";
if (/(?:^|\.)rncdn3\.com$/.test(host)) return "+clash";
if (/(?:^|\.)4porn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornxxxxtube\.net$/.test(host)) return "+clash";
if (/(?:^|\.)paxtube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kongdikongxian\.com$/.test(host)) return "+clash";
if (/(?:^|\.)picdy\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)bizman\.com\.tw$/.test(host)) return "+clash";
if (/(?:^|\.)agro-labs\.ac\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)singlove\.com$/.test(host)) return "+clash";
if (/^118\.184\.84\.150$/.test(host)) return "+clash";
if (/(?:^|\.)lw78\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)hdroom\.xxx$/.test(host)) return "+clash";
if (/(?:^|\.)luckyporn\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)different\.porn$/.test(host)) return "+clash";
if (/(?:^|\.)wq6m\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vv68v\.com$/.test(host)) return "+clash";
if (/(?:^|\.)shink\.in$/.test(host)) return "+clash";
if (/(?:^|\.)vpnask\.com$/.test(host)) return "+clash";
if (/(?:^|\.)resilio\.com$/.test(host)) return "+clash";
if (/(?:^|\.)loyalsoldier\.me$/.test(host)) return "+clash";
if (/(?:^|\.)headway-widget\.net$/.test(host)) return "+clash";
if (/(?:^|\.)togetherjs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cmgine\.net$/.test(host)) return "+clash";
if (/(?:^|\.)suxiaolin\.studio$/.test(host)) return "+clash";
if (/(?:^|\.)enenba\.com$/.test(host)) return "+clash";
if (/(?:^|\.)btlibrary\.ws$/.test(host)) return "+clash";
if (/(?:^|\.)peuland\.com$/.test(host)) return "+clash";
if (/(?:^|\.)520cc\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)5278\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)htmonster\.com$/.test(host)) return "+clash";
if (/(?:^|\.)namesakeoscilloscopemarquis\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hilltopads\.net$/.test(host)) return "+clash";
if (/(?:^|\.)laravel\.band$/.test(host)) return "+clash";
if (/(?:^|\.)zhaduitech\.com$/.test(host)) return "+clash";
if (/(?:^|\.)laravel\.so$/.test(host)) return "+clash";
if (/(?:^|\.)publicsoftwareproject\.org$/.test(host)) return "+clash";
if (/(?:^|\.)aayan\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)saily\.top$/.test(host)) return "+clash";
if (/(?:^|\.)awaker\.org$/.test(host)) return "+clash";
if (/(?:^|\.)chromecj\.com$/.test(host)) return "+clash";
if (/(?:^|\.)slideshare\.net$/.test(host)) return "+clash";
if (/(?:^|\.)jikexueyuan\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)cbwgt\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)apple\.com$/.test(host)) return "+clash";
if (/(?:^|\.)aotu\.io$/.test(host)) return "+clash";
if (/(?:^|\.)raymondhill\.net$/.test(host)) return "+clash";
if (/(?:^|\.)w3\.org$/.test(host)) return "+clash";
if (/(?:^|\.)github\.io$/.test(host)) return "+clash";
if (/(?:^|\.)pencilscoop\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jporn\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)zhouyiyc\.com$/.test(host)) return "+clash";
if (/(?:^|\.)620222\.com\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)pornolaba\.com$/.test(host)) return "+clash";
if (/(?:^|\.)maopron\.com$/.test(host)) return "+clash";
if (/(?:^|\.)caopronsp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)yugreat\.com$/.test(host)) return "+clash";
if (/(?:^|\.)livetubez\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornbigtime\.com$/.test(host)) return "+clash";
if (/(?:^|\.)allplayer\.tk$/.test(host)) return "+clash";
if (/(?:^|\.)nyaa\.eu$/.test(host)) return "+clash";
if (/(?:^|\.)nyaa\.se$/.test(host)) return "+clash";
if (/(?:^|\.)pkbeta\.com$/.test(host)) return "+clash";
if (/(?:^|\.)s3\.amazonaws\.com$/.test(host)) return "+clash";
if (/(?:^|\.)wlwr\.net$/.test(host)) return "+clash";
if (/(?:^|\.)upyun\.com$/.test(host)) return "+clash";
if (/(?:^|\.)loldytt\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mozillademos\.org$/.test(host)) return "+clash";
if (/(?:^|\.)mozilla\.net$/.test(host)) return "+clash";
if (/(?:^|\.)vlooke\.com$/.test(host)) return "+clash";
if (/(?:^|\.)yinyuetai\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sis001\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ye32100\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)rns50u\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)17shulihua\.com$/.test(host)) return "+clash";
if (/(?:^|\.)usinfo\.me$/.test(host)) return "+clash";
if (/(?:^|\.)yeyeqi\.us$/.test(host)) return "+clash";
if (/(?:^|\.)5729122\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hust\.cc$/.test(host)) return "+clash";
if (/(?:^|\.)51edy\.com$/.test(host)) return "+clash";
if (/(?:^|\.)oywine\.com$/.test(host)) return "+clash";
if (/^58\.83\.217\.230$/.test(host)) return "+clash";
if (/(?:^|\.)pornfruit\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xxxtubenote\.com$/.test(host)) return "+clash";
if (/(?:^|\.)complex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)brkmd\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mademan\.com$/.test(host)) return "+clash";
if (/(?:^|\.)freepornx\.org$/.test(host)) return "+clash";
if (/(?:^|\.)duopapa\.me$/.test(host)) return "+clash";
if (/(?:^|\.)github-cloud\.s3\.amazonaws\.com$/.test(host)) return "+clash";
if (/(?:^|\.)upfitness\.com$/.test(host)) return "+clash";
if (/(?:^|\.)getcomposer\.org$/.test(host)) return "+clash";
if (/(?:^|\.)redotheweb\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tubekittysex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jizzbunker\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pornvideos\.rs$/.test(host)) return "+clash";
if (/(?:^|\.)nesaporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)runporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hdzog\.com$/.test(host)) return "+clash";
if (/(?:^|\.)woxcdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)broadchalkehall\.co\.uk$/.test(host)) return "+clash";
if (/(?:^|\.)tubevintageporn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hardjapanesetube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pussyspace\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xnxxmovs\.net$/.test(host)) return "+clash";
if (/^151\.80\.31\.220$/.test(host)) return "+clash";
if (/(?:^|\.)japanpornovideo\.com$/.test(host)) return "+clash";
if (/(?:^|\.)lovejapanesetube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)alliancetube\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)xxxjapanesevideos\.com$/.test(host)) return "+clash";
if (/(?:^|\.)playercdn\.com$/.test(host)) return "+clash";
if (/(?:^|\.)bigtubethumbs\.com$/.test(host)) return "+clash";
if (/(?:^|\.)goldasiantube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)good-fuck\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xxx-yes\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vod25\.com$/.test(host)) return "+clash";
if (/(?:^|\.)andygod\.com$/.test(host)) return "+clash";
if (/(?:^|\.)hd-porn-free\.com$/.test(host)) return "+clash";
if (/(?:^|\.)jinshizhimeng\.com$/.test(host)) return "+clash";
if (/(?:^|\.)ugetyar\.co\.uk$/.test(host)) return "+clash";
if (/(?:^|\.)yobt\.tv$/.test(host)) return "+clash";
if (/(?:^|\.)drtuber\.com$/.test(host)) return "+clash";
if (/(?:^|\.)drtst\.com$/.test(host)) return "+clash";
if (/(?:^|\.)condomfish\.com$/.test(host)) return "+clash";
if (/(?:^|\.)my1tube\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mylovedasians\.com$/.test(host)) return "+clash";
if (/(?:^|\.)webclicks24\.com$/.test(host)) return "+clash";
if (/(?:^|\.)goldpornfilms\.com$/.test(host)) return "+clash";
if (/(?:^|\.)tppx\.win$/.test(host)) return "+clash";
if (/(?:^|\.)boopoli\.com\.cn$/.test(host)) return "+clash";
if (/(?:^|\.)38ga\.net$/.test(host)) return "+clash";
if (/(?:^|\.)best-adult-site\.net$/.test(host)) return "+clash";
if (/(?:^|\.)hinet\.net$/.test(host)) return "+clash";
if (/(?:^|\.)18avday\.com$/.test(host)) return "+clash";
if (/(?:^|\.)xxxtubedot\.com$/.test(host)) return "+clash";
if (/(?:^|\.)forbes\.com$/.test(host)) return "+clash";
if (/(?:^|\.)vido\.ws$/.test(host)) return "+clash";
if (/(?:^|\.)jav2be\.com$/.test(host)) return "+clash";
if (/(?:^|\.)doublepimp\.com$/.test(host)) return "+clash";
if (/(?:^|\.)mediaver\.com$/.test(host)) return "+clash";
if (/(?:^|\.)cam4\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sex210\.com$/.test(host)) return "+clash";
if (/(?:^|\.)kanporno\.com$/.test(host)) return "+clash";
if (/^94\.75\.237\.41$/.test(host)) return "+clash";
if (/(?:^|\.)wild-slut\.com$/.test(host)) return "+clash";
if (/(?:^|\.)nicexvideos\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sendmad\.com$/.test(host)) return "+clash";
if (/(?:^|\.)pussytube\.xyz$/.test(host)) return "+clash";
if (/(?:^|\.)youxxxsex\.com$/.test(host)) return "+clash";
if (/(?:^|\.)sexvideoshot\.com$/.test(host)) return "+clash";
if (/(?:^|\.)buzong\.net$/.test(host)) return "+clash";