-
Notifications
You must be signed in to change notification settings - Fork 7
/
clash.yaml
994 lines (994 loc) · 27.8 KB
/
clash.yaml
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
mixed-port: 7890
socks-port: 7891
allow-lan: true
bind-address: '*'
mode: rule
log-level: info
external-controller: 127.0.0.1:9090
external-ui: ui
external-ui-url: https://github.com/MetaCubeX/metacubexd/archive/refs/heads/gh-pages.zip
geox-url:
geoip: https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/geoip.dat
geosite: https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/geosite.dat
mmdb: https://testingcf.jsdelivr.net/gh/MetaCubeX/meta-rules-dat@release/country.mmdb
asn: https://github.com/xishang0128/geoip/releases/download/latest/GeoLite2-ASN.mmdb
geo-auto-update: true
geo-update-interval: 24
profile:
store-selected: true
store-fake-ip: true
find-process-mode: strict
global-client-fingerprint: chrome
tcp-concurrent: true
unified-delay: true
sniffer:
enable: true
parse-pure-ip: true
override-destination: true
sniff:
TLS:
ports:
- 443
- 8443
HTTP:
ports:
- 80
- 8080-8880
override-destination: true
QUIC:
ports:
- 443
- 8443
force-domain:
- +.v2ex.com
- www.google.com
- google.com
skip-domain:
- Mijia Cloud
- dlg.io.mi.com
- +.apple.com
tun:
enable: true
stack: mixed
strict_route: true
auto-route: true
auto-redirect: true
auto-detect-interface: true
dns-hijack:
- any:53
- tcp://any:53
dns:
enable: true
prefer-h3: true
ipv6: true
listen: 0.0.0.0:53
fake-ip-range: 198.18.0.1/16
enhanced-mode: fake-ip
fake-ip-filter:
- rule-set:fakeip-filter,private,cn
nameserver:
- https://223.5.5.5/dns-query
- https://doh.pub/dns-query
- https://dns.alidns.com/dns-query
proxies:
- cipher: aes-256-gcm
name: 142.202.48.105_OpenAI_Claude
password: Y6R9pAtvxxzmGC
port: 3389
server: 142.202.48.105
type: ss
- name: 18.199.108.131_Claude
network: tcp
password: telegram-id-privatevpns
port: 22222
server: 18.199.108.131
sni: trojan.burgerip.co.uk
type: trojan
- cipher: chacha20-ietf-poly1305
name: 193.29.139.138_OpenAI_Claude
password: QCXDxuDlTTMD7jtgHUjIoj
port: 8080
server: beesyar.org
type: ss
- cipher: chacha20-ietf-poly1305
name: 193.29.139.173_OpenAI_Claude
password: 1RWwXhwfAB5gAEozU4G2Pg
port: 8080
server: beesyar.org
type: ss
- name: 34.250.198.44_OpenAI_Claude
network: tcp
password: telegram-id-privatevpns
port: 22222
server: 34.250.198.44
sni: trojan.burgerip.co.uk
type: trojan
- cipher: aes-128-gcm
name: CA_Vancouver_Datacamp Limited_OpenAI_Claude
password: shadowsocks
port: 443
server: 149.22.95.183
type: ss
- name: Euro😈github.com/Ruk1ng001_
network: tcp
password: telegram-id-privatevpns
port: 22222
server: 18.194.92.223
sni: trojan.burgerip.co.uk
type: trojan
- cipher: chacha20-ietf-poly1305
name: HK_Hong Kong_Akile LTD_OpenAI1
password: 86b2bbb5-deac-4068-9669-9d85c7fbffce
port: 117
server: vip.cwy-water.filegear-sg.me
type: ss
- cipher: chacha20-ietf-poly1305
name: HK_Hong Kong_Akile LTD_OpenAI2
password: 86b2bbb5-deac-4068-9669-9d85c7fbffce
port: 100
server: vip.cwy-water.filegear-sg.me
type: ss
- cipher: aes-256-cfb
name: JP_Tokyo_Amazon Technologies Inc._Claude
password: amazonskr05
port: 443
server: 13.230.104.31
type: ss
- cipher: aes-128-gcm
name: JP_Tokyo_Datacamp Limited_OpenAI_Claude1
password: shadowsocks
port: 443
server: 149.22.87.241
type: ss
- cipher: aes-128-gcm
name: JP_Tokyo_Datacamp Limited_OpenAI_Claude2
password: shadowsocks
port: 443
server: 149.22.87.240
type: ss
- name: JP_Tokyo_Shenzhen Tencent Computer Systems Company Limited_OpenAI_Claude
password: JH9NEZKTib
port: 17748
server: djvp.sywk.com.cn
sni: djvp.sywk.com.cn
type: trojan
- cipher: aes-256-cfb
name: KR_Seoul_Amazon Technologies Inc._OpenAI_Claude
password: amazonskr05
port: 443
server: 13.125.37.249
type: ss
- cipher: aes-256-cfb
name: KR_Seoul_Amazon.com, Inc._OpenAI_Claude
password: amazonskr05
port: 443
server: 3.35.137.32
type: ss
- cipher: chacha20-ietf-poly1305
name: KR_Seoul_Kaopu Cloud HK Limited_OpenAI_Claude
password: f8f7aCzcPKbsF8p3
port: 990
server: 154.90.63.193
type: ss
- cipher: chacha20-ietf-poly1305
name: MY_Kuala Lumpur_Akile LTD_OpenAI1
password: 86b2bbb5-deac-4068-9669-9d85c7fbffce
port: 101
server: vip.hwwater.filegear-sg.me
type: ss
- cipher: chacha20-ietf-poly1305
name: MY_Kuala Lumpur_Akile LTD_OpenAI2
password: 86b2bbb5-deac-4068-9669-9d85c7fbffce
port: 100
server: vip.hwwater.filegear-sg.me
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI
password: cvII85TrW6n0OGyfpHVS1u
port: 8080
server: beesyar.org
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude1
password: cvII85TrW6n0OGyfpHVS1u
port: 8080
server: 45.87.175.166
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude2
password: 4a2rfixophdjffa8KVA4Aa
port: 8080
server: 45.87.175.166
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude3
password: 1RWwXhwfAB5gAEozU4G2Pg
port: 8080
server: 45.87.175.166
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude4
password: cvII85TrW6n0OGyfpHVS1u
port: 8080
server: 45.87.175.178
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude5
password: 4a2rfixophdjffa8KVA4Aa
port: 8080
server: 45.87.175.157
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude6
password: cvII85TrW6n0OGyfpHVS1u
port: 8080
server: 45.87.175.157
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude7
password: oZIoA69Q8yhcQV8ka3Pa3A
port: 8080
server: 193.29.139.202
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude8
password: 1RWwXhwfAB5gAEozU4G2Pg
port: 8080
server: 45.87.175.178
type: ss
- cipher: chacha20-ietf-poly1305
name: NL_Amsterdam_Greenhost BV_OpenAI_Claude9
password: 4a2rfixophdjffa8KVA4Aa
port: 8080
server: beesyar.org
type: ss
- cipher: aes-256-gcm
name: US_Ashburn_GTHost_OpenAI_Claude1
password: e4FCWrgpkji3QY
port: 9102
server: 142.202.49.122
type: ss
- cipher: aes-256-gcm
name: US_Ashburn_GTHost_OpenAI_Claude2
password: cdBIDV42DCwnfIN
port: 8118
server: 142.202.49.122
type: ss
- cipher: aes-256-gcm
name: US_Ashburn_GTHost_OpenAI_Claude3
password: XKFKl2rULjIp74
port: 8008
server: 142.202.49.122
type: ss
- cipher: aes-256-gcm
name: US_Ashburn_GTHost_OpenAI_Claude4
password: e4FCWrgpkji3QY
port: 9101
server: 142.202.49.122
type: ss
- cipher: aes-256-gcm
name: US_Ashburn_GTHost_OpenAI_Claude5
password: FoOiGlkAA9yPEGP
port: 7306
server: 142.202.49.122
type: ss
- cipher: aes-256-gcm
name: US_Ashburn_GTHost_OpenAI_Claude6
password: KixLvKzwjekG00rm
port: 5500
server: 142.202.49.122
type: ss
- cipher: aes-256-gcm
name: US_Atlanta_GTHost_OpenAI_Claude1
password: cdBIDV42DCwnfIN
port: 8118
server: 38.121.43.204
type: ss
- cipher: aes-256-gcm
name: US_Atlanta_GTHost_OpenAI_Claude2
password: PCnnH6SQSnfoS27
port: 8090
server: 38.121.43.204
type: ss
- cipher: aes-128-gcm
name: US_Dallas_Datacamp Limited_OpenAI_Claude
password: shadowsocks
port: 443
server: 156.146.38.168
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude1
password: cdBIDV42DCwnfIN
port: 8118
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude10
password: KixLvKzwjekG00rm
port: 5500
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude11
password: zDNVedRFPQexG9v
port: 6379
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude12
password: pKEW8JPByTVTLtM
port: 443
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude13
password: TEzjfAYq2IjtuoS
port: 6697
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude2
password: lGqs95QkFHo2NV
port: 5498
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude3
password: FoOiGlkAA9yPEGP
port: 7307
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude4
password: Y6R9pAtvxxzmGC
port: 3306
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude5
password: kDWvXYZoTBcGkC4
port: 8882
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude6
password: cdBIDV42DCwnfIN
port: 8119
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude7
password: kDWvXYZoTBcGkC4
port: 8881
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude8
password: PCnnH6SQSnfoS27
port: 8091
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Denver_GTHost_OpenAI_Claude9
password: Y6R9pAtvxxzmGC
port: 3389
server: 69.50.95.53
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude1
password: RexnBgU7EV5ADxG
port: 7002
server: 38.114.114.143
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude2
password: pKEW8JPByTVTLtM
port: 443
server: 38.114.114.143
type: ss
- cipher: aes-256-gcm
name: US_Los Angeles_GTHost_OpenAI_Claude3
password: faBAoD54k87UJG7
port: 2376
server: 38.114.114.143
type: ss
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude1
network: ws
port: 2095
server: 104.19.32.216
servername: ip23.6016725.xyz
tls: false
type: vmess
udp: true
uuid: 18d96190-c10f-448f-a82a-2d36df5c3cde
ws-opts:
headers:
Host: ip23.6016725.xyz
path: github.com/Alvin9999
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude2
network: ws
port: 2082
server: 104.26.5.112
servername: ip30.6929198.xyz
tls: false
type: vmess
udp: true
uuid: 5f3f09ad-89cb-4e94-a7ad-aa8239913555
ws-opts:
headers:
Host: ip30.6929198.xyz
path: github.com/Alvin9999
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude3
network: ws
port: 2082
server: 162.159.140.56
servername: ip30.6929198.xyz
tls: false
type: vmess
udp: true
uuid: 5f3f09ad-89cb-4e94-a7ad-aa8239913555
ws-opts:
headers:
Host: ip30.6929198.xyz
path: github.com/Alvin9999
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude4
network: ws
port: 2086
server: 104.21.238.37
skip-cert-verify: true
tls: false
type: vmess
uuid: ee420fda-efb7-48a8-9249-8987e36ebd9e
ws-opts:
headers:
host: ip33.9447609.xyz
path: github.com/Alvin9999
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude5
network: ws
port: 2086
server: 104.21.238.36
skip-cert-verify: true
tls: false
type: vmess
uuid: ee420fda-efb7-48a8-9249-8987e36ebd9e
ws-opts:
headers:
host: ip33.9447609.xyz
path: github.com/Alvin9999
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude6
network: ws
port: 2095
server: 162.159.140.56
servername: ip23.6016725.xyz
tls: false
type: vmess
udp: true
uuid: 18d96190-c10f-448f-a82a-2d36df5c3cde
ws-opts:
headers:
Host: ip23.6016725.xyz
path: github.com/Alvin9999
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude7
network: ws
port: 2095
server: 172.64.166.2
servername: ip23.6016725.xyz
tls: false
type: vmess
udp: true
uuid: 18d96190-c10f-448f-a82a-2d36df5c3cde
ws-opts:
headers:
Host: ip23.6016725.xyz
path: github.com/Alvin9999
- alterId: 0
cipher: auto
name: US_Los Angeles_Psychz Networks_OpenAI_Claude8
network: ws
port: 2086
server: 104.21.238.38
skip-cert-verify: true
tls: false
type: vmess
uuid: ee420fda-efb7-48a8-9249-8987e36ebd9e
ws-opts:
headers:
host: ip33.9447609.xyz
path: github.com/Alvin9999
- cipher: aes-256-gcm
name: US_Miami_GTHost_OpenAI_Claude
password: g5MeD6Ft3CWlJId
port: 5003
server: 38.110.1.197
type: ss
- cipher: aes-128-gcm
name: US_New York_Datacamp Limited_OpenAI_Claude
password: shadowsocks
port: 443
server: 37.19.198.160
type: ss
- cipher: aes-256-gcm
name: US_Newark_GTHost_OpenAI_Claude
password: g5MeD6Ft3CWlJId
port: 5004
server: 142.202.48.105
type: ss
- cipher: chacha20-ietf-poly1305
name: US_Purcellville_American Information Network_OpenAI_Claude
password: 5cp9Z3iWnJZ2
port: 443
server: 205.134.180.150
type: ss
- cipher: aes-128-gcm
name: US_Seattle_Datacamp Limited_OpenAI_Claude
password: shadowsocks
port: 443
server: 212.102.47.131
type: ss
- cipher: aes-256-gcm
name: US_Washington_GTHost_OpenAI_Claude
password: faBAoD54k87UJG7
port: 2376
server: 23.154.136.247
type: ss
proxy-groups:
- name: PROXY
type: select
proxies:
- Fallback
- Select
- HK
- TW
- JP
- SG
- US
- OpenAI
- Claude
- name: Select
type: select
filter: .*
proxies:
- 142.202.48.105_OpenAI_Claude
- 18.199.108.131_Claude
- 193.29.139.138_OpenAI_Claude
- 193.29.139.173_OpenAI_Claude
- 34.250.198.44_OpenAI_Claude
- CA_Vancouver_Datacamp Limited_OpenAI_Claude
- Euro😈github.com/Ruk1ng001_
- HK_Hong Kong_Akile LTD_OpenAI1
- HK_Hong Kong_Akile LTD_OpenAI2
- JP_Tokyo_Amazon Technologies Inc._Claude
- JP_Tokyo_Datacamp Limited_OpenAI_Claude1
- JP_Tokyo_Datacamp Limited_OpenAI_Claude2
- JP_Tokyo_Shenzhen Tencent Computer Systems Company Limited_OpenAI_Claude
- KR_Seoul_Amazon Technologies Inc._OpenAI_Claude
- KR_Seoul_Amazon.com, Inc._OpenAI_Claude
- KR_Seoul_Kaopu Cloud HK Limited_OpenAI_Claude
- MY_Kuala Lumpur_Akile LTD_OpenAI1
- MY_Kuala Lumpur_Akile LTD_OpenAI2
- NL_Amsterdam_Greenhost BV_OpenAI
- NL_Amsterdam_Greenhost BV_OpenAI_Claude1
- NL_Amsterdam_Greenhost BV_OpenAI_Claude2
- NL_Amsterdam_Greenhost BV_OpenAI_Claude3
- NL_Amsterdam_Greenhost BV_OpenAI_Claude4
- NL_Amsterdam_Greenhost BV_OpenAI_Claude5
- NL_Amsterdam_Greenhost BV_OpenAI_Claude6
- NL_Amsterdam_Greenhost BV_OpenAI_Claude7
- NL_Amsterdam_Greenhost BV_OpenAI_Claude8
- NL_Amsterdam_Greenhost BV_OpenAI_Claude9
- US_Ashburn_GTHost_OpenAI_Claude1
- US_Ashburn_GTHost_OpenAI_Claude2
- US_Ashburn_GTHost_OpenAI_Claude3
- US_Ashburn_GTHost_OpenAI_Claude4
- US_Ashburn_GTHost_OpenAI_Claude5
- US_Ashburn_GTHost_OpenAI_Claude6
- US_Atlanta_GTHost_OpenAI_Claude1
- US_Atlanta_GTHost_OpenAI_Claude2
- US_Dallas_Datacamp Limited_OpenAI_Claude
- US_Denver_GTHost_OpenAI_Claude1
- US_Denver_GTHost_OpenAI_Claude10
- US_Denver_GTHost_OpenAI_Claude11
- US_Denver_GTHost_OpenAI_Claude12
- US_Denver_GTHost_OpenAI_Claude13
- US_Denver_GTHost_OpenAI_Claude2
- US_Denver_GTHost_OpenAI_Claude3
- US_Denver_GTHost_OpenAI_Claude4
- US_Denver_GTHost_OpenAI_Claude5
- US_Denver_GTHost_OpenAI_Claude6
- US_Denver_GTHost_OpenAI_Claude7
- US_Denver_GTHost_OpenAI_Claude8
- US_Denver_GTHost_OpenAI_Claude9
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude1
- US_Los Angeles_Psychz Networks_OpenAI_Claude2
- US_Los Angeles_Psychz Networks_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude4
- US_Los Angeles_Psychz Networks_OpenAI_Claude5
- US_Los Angeles_Psychz Networks_OpenAI_Claude6
- US_Los Angeles_Psychz Networks_OpenAI_Claude7
- US_Los Angeles_Psychz Networks_OpenAI_Claude8
- US_Miami_GTHost_OpenAI_Claude
- US_New York_Datacamp Limited_OpenAI_Claude
- US_Newark_GTHost_OpenAI_Claude
- US_Purcellville_American Information Network_OpenAI_Claude
- US_Seattle_Datacamp Limited_OpenAI_Claude
- US_Washington_GTHost_OpenAI_Claude
- name: Fallback
type: fallback
url: http://www.google.com/generate_204
interval: 600
proxies:
- HK
- TW
- JP
- SG
- US
- name: HK
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- HK_Hong Kong_Akile LTD_OpenAI1
- HK_Hong Kong_Akile LTD_OpenAI2
- KR_Seoul_Kaopu Cloud HK Limited_OpenAI_Claude
filter: (?i)港|HK|HongKong|hong kong
- name: TW
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- DIRECT
filter: 台湾|TW|Tw|Taiwan|新北|彰化|CHT|HINET
- name: JP
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- JP_Tokyo_Amazon Technologies Inc._Claude
- JP_Tokyo_Datacamp Limited_OpenAI_Claude1
- JP_Tokyo_Datacamp Limited_OpenAI_Claude2
- JP_Tokyo_Shenzhen Tencent Computer Systems Company Limited_OpenAI_Claude
filter: (?i)日|东京|大阪|JP|Japan|Tokyo|Osaka|Saitama
- name: SG
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- DIRECT
filter: (?i)新|狮城|SG|Singapore
- name: US
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- US_Ashburn_GTHost_OpenAI_Claude1
- US_Ashburn_GTHost_OpenAI_Claude2
- US_Ashburn_GTHost_OpenAI_Claude3
- US_Ashburn_GTHost_OpenAI_Claude4
- US_Ashburn_GTHost_OpenAI_Claude5
- US_Ashburn_GTHost_OpenAI_Claude6
- US_Atlanta_GTHost_OpenAI_Claude1
- US_Atlanta_GTHost_OpenAI_Claude2
- US_Dallas_Datacamp Limited_OpenAI_Claude
- US_Denver_GTHost_OpenAI_Claude1
- US_Denver_GTHost_OpenAI_Claude10
- US_Denver_GTHost_OpenAI_Claude11
- US_Denver_GTHost_OpenAI_Claude12
- US_Denver_GTHost_OpenAI_Claude13
- US_Denver_GTHost_OpenAI_Claude2
- US_Denver_GTHost_OpenAI_Claude3
- US_Denver_GTHost_OpenAI_Claude4
- US_Denver_GTHost_OpenAI_Claude5
- US_Denver_GTHost_OpenAI_Claude6
- US_Denver_GTHost_OpenAI_Claude7
- US_Denver_GTHost_OpenAI_Claude8
- US_Denver_GTHost_OpenAI_Claude9
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude1
- US_Los Angeles_Psychz Networks_OpenAI_Claude2
- US_Los Angeles_Psychz Networks_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude4
- US_Los Angeles_Psychz Networks_OpenAI_Claude5
- US_Los Angeles_Psychz Networks_OpenAI_Claude6
- US_Los Angeles_Psychz Networks_OpenAI_Claude7
- US_Los Angeles_Psychz Networks_OpenAI_Claude8
- US_Miami_GTHost_OpenAI_Claude
- US_New York_Datacamp Limited_OpenAI_Claude
- US_Newark_GTHost_OpenAI_Claude
- US_Purcellville_American Information Network_OpenAI_Claude
- US_Seattle_Datacamp Limited_OpenAI_Claude
- US_Washington_GTHost_OpenAI_Claude
filter: (?i)美|洛杉矶|芝加哥|西雅图|America|US|United.*?States
- name: OpenAI
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- 142.202.48.105_OpenAI_Claude
- 193.29.139.138_OpenAI_Claude
- 193.29.139.173_OpenAI_Claude
- 34.250.198.44_OpenAI_Claude
- CA_Vancouver_Datacamp Limited_OpenAI_Claude
- HK_Hong Kong_Akile LTD_OpenAI1
- HK_Hong Kong_Akile LTD_OpenAI2
- JP_Tokyo_Datacamp Limited_OpenAI_Claude1
- JP_Tokyo_Datacamp Limited_OpenAI_Claude2
- JP_Tokyo_Shenzhen Tencent Computer Systems Company Limited_OpenAI_Claude
- KR_Seoul_Amazon Technologies Inc._OpenAI_Claude
- KR_Seoul_Amazon.com, Inc._OpenAI_Claude
- KR_Seoul_Kaopu Cloud HK Limited_OpenAI_Claude
- MY_Kuala Lumpur_Akile LTD_OpenAI1
- MY_Kuala Lumpur_Akile LTD_OpenAI2
- NL_Amsterdam_Greenhost BV_OpenAI
- NL_Amsterdam_Greenhost BV_OpenAI_Claude1
- NL_Amsterdam_Greenhost BV_OpenAI_Claude2
- NL_Amsterdam_Greenhost BV_OpenAI_Claude3
- NL_Amsterdam_Greenhost BV_OpenAI_Claude4
- NL_Amsterdam_Greenhost BV_OpenAI_Claude5
- NL_Amsterdam_Greenhost BV_OpenAI_Claude6
- NL_Amsterdam_Greenhost BV_OpenAI_Claude7
- NL_Amsterdam_Greenhost BV_OpenAI_Claude8
- NL_Amsterdam_Greenhost BV_OpenAI_Claude9
- US_Ashburn_GTHost_OpenAI_Claude1
- US_Ashburn_GTHost_OpenAI_Claude2
- US_Ashburn_GTHost_OpenAI_Claude3
- US_Ashburn_GTHost_OpenAI_Claude4
- US_Ashburn_GTHost_OpenAI_Claude5
- US_Ashburn_GTHost_OpenAI_Claude6
- US_Atlanta_GTHost_OpenAI_Claude1
- US_Atlanta_GTHost_OpenAI_Claude2
- US_Dallas_Datacamp Limited_OpenAI_Claude
- US_Denver_GTHost_OpenAI_Claude1
- US_Denver_GTHost_OpenAI_Claude10
- US_Denver_GTHost_OpenAI_Claude11
- US_Denver_GTHost_OpenAI_Claude12
- US_Denver_GTHost_OpenAI_Claude13
- US_Denver_GTHost_OpenAI_Claude2
- US_Denver_GTHost_OpenAI_Claude3
- US_Denver_GTHost_OpenAI_Claude4
- US_Denver_GTHost_OpenAI_Claude5
- US_Denver_GTHost_OpenAI_Claude6
- US_Denver_GTHost_OpenAI_Claude7
- US_Denver_GTHost_OpenAI_Claude8
- US_Denver_GTHost_OpenAI_Claude9
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude1
- US_Los Angeles_Psychz Networks_OpenAI_Claude2
- US_Los Angeles_Psychz Networks_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude4
- US_Los Angeles_Psychz Networks_OpenAI_Claude5
- US_Los Angeles_Psychz Networks_OpenAI_Claude6
- US_Los Angeles_Psychz Networks_OpenAI_Claude7
- US_Los Angeles_Psychz Networks_OpenAI_Claude8
- US_Miami_GTHost_OpenAI_Claude
- US_New York_Datacamp Limited_OpenAI_Claude
- US_Newark_GTHost_OpenAI_Claude
- US_Purcellville_American Information Network_OpenAI_Claude
- US_Seattle_Datacamp Limited_OpenAI_Claude
- US_Washington_GTHost_OpenAI_Claude
filter: (?i)OpenAI
- name: Claude
type: url-test
url: http://www.google.com/generate_204
interval: 600
tolerance: 500
proxies:
- 142.202.48.105_OpenAI_Claude
- 18.199.108.131_Claude
- 193.29.139.138_OpenAI_Claude
- 193.29.139.173_OpenAI_Claude
- 34.250.198.44_OpenAI_Claude
- CA_Vancouver_Datacamp Limited_OpenAI_Claude
- JP_Tokyo_Amazon Technologies Inc._Claude
- JP_Tokyo_Datacamp Limited_OpenAI_Claude1
- JP_Tokyo_Datacamp Limited_OpenAI_Claude2
- JP_Tokyo_Shenzhen Tencent Computer Systems Company Limited_OpenAI_Claude
- KR_Seoul_Amazon Technologies Inc._OpenAI_Claude
- KR_Seoul_Amazon.com, Inc._OpenAI_Claude
- KR_Seoul_Kaopu Cloud HK Limited_OpenAI_Claude
- NL_Amsterdam_Greenhost BV_OpenAI_Claude1
- NL_Amsterdam_Greenhost BV_OpenAI_Claude2
- NL_Amsterdam_Greenhost BV_OpenAI_Claude3
- NL_Amsterdam_Greenhost BV_OpenAI_Claude4
- NL_Amsterdam_Greenhost BV_OpenAI_Claude5
- NL_Amsterdam_Greenhost BV_OpenAI_Claude6
- NL_Amsterdam_Greenhost BV_OpenAI_Claude7
- NL_Amsterdam_Greenhost BV_OpenAI_Claude8
- NL_Amsterdam_Greenhost BV_OpenAI_Claude9
- US_Ashburn_GTHost_OpenAI_Claude1
- US_Ashburn_GTHost_OpenAI_Claude2
- US_Ashburn_GTHost_OpenAI_Claude3
- US_Ashburn_GTHost_OpenAI_Claude4
- US_Ashburn_GTHost_OpenAI_Claude5
- US_Ashburn_GTHost_OpenAI_Claude6
- US_Atlanta_GTHost_OpenAI_Claude1
- US_Atlanta_GTHost_OpenAI_Claude2
- US_Dallas_Datacamp Limited_OpenAI_Claude
- US_Denver_GTHost_OpenAI_Claude1
- US_Denver_GTHost_OpenAI_Claude10
- US_Denver_GTHost_OpenAI_Claude11
- US_Denver_GTHost_OpenAI_Claude12
- US_Denver_GTHost_OpenAI_Claude13
- US_Denver_GTHost_OpenAI_Claude2
- US_Denver_GTHost_OpenAI_Claude3
- US_Denver_GTHost_OpenAI_Claude4
- US_Denver_GTHost_OpenAI_Claude5
- US_Denver_GTHost_OpenAI_Claude6
- US_Denver_GTHost_OpenAI_Claude7
- US_Denver_GTHost_OpenAI_Claude8
- US_Denver_GTHost_OpenAI_Claude9
- US_Los Angeles_GTHost_OpenAI_Claude1
- US_Los Angeles_GTHost_OpenAI_Claude2
- US_Los Angeles_GTHost_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude1
- US_Los Angeles_Psychz Networks_OpenAI_Claude2
- US_Los Angeles_Psychz Networks_OpenAI_Claude3
- US_Los Angeles_Psychz Networks_OpenAI_Claude4
- US_Los Angeles_Psychz Networks_OpenAI_Claude5
- US_Los Angeles_Psychz Networks_OpenAI_Claude6
- US_Los Angeles_Psychz Networks_OpenAI_Claude7
- US_Los Angeles_Psychz Networks_OpenAI_Claude8
- US_Miami_GTHost_OpenAI_Claude
- US_New York_Datacamp Limited_OpenAI_Claude
- US_Newark_GTHost_OpenAI_Claude
- US_Purcellville_American Information Network_OpenAI_Claude
- US_Seattle_Datacamp Limited_OpenAI_Claude
- US_Washington_GTHost_OpenAI_Claude
filter: (?i)Claude
rules:
- RULE-SET,ads,REJECT
- RULE-SET,applications,DIRECT
- RULE-SET,private,DIRECT
- RULE-SET,apple-cn,DIRECT
- RULE-SET,games-cn,DIRECT
- RULE-SET,google-cn,DIRECT
- RULE-SET,bilibili,DIRECT
- RULE-SET,cn,DIRECT
- RULE-SET,claude,Claude
- RULE-SET,ai,OpenAI
- RULE-SET,youtube,PROXY
- RULE-SET,telegramip,PROXY,no-resolve
- RULE-SET,privateip,DIRECT,no-resolve
- RULE-SET,cnip,DIRECT,no-resolve
- GEOIP,LAN,DIRECT,no-resolve
- GEOIP,CN,DIRECT,no-resolve
- MATCH,PROXY
rule-providers:
fakeip-filter:
type: http
behavior: domain
format: mrs
path: ./rules/fakeip-filter.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/fakeip-filter.mrs
interval: 86400
ads:
type: http
behavior: domain
format: mrs
path: ./rules/ads.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/ads.mrs
interval: 86400
applications:
type: http
behavior: classical
format: text
path: ./rules/applications.list
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/applications.list
interval: 86400
private:
type: http
behavior: domain
format: mrs
path: ./rules/private.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/private.mrs
interval: 86400
games-cn:
type: http
behavior: domain
format: mrs
path: ./rules/games-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/games-cn.mrs
interval: 86400
microsoft-cn:
type: http
behavior: domain
format: mrs
path: ./rules/microsoft-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/microsoft-cn.mrs
interval: 86400
apple-cn:
type: http
behavior: domain
format: mrs
path: ./rules/apple-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/apple-cn.mrs
interval: 86400
google-cn:
type: http
behavior: domain
format: mrs
path: ./rules/google-cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/google-cn.mrs
interval: 86400
bilibili:
type: http
behavior: domain
format: mrs
path: ./rules/bilibili.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/bilibili.mrs
interval: 86400
ai:
type: http
behavior: domain
format: mrs
path: ./rules/ai.mrs
url: https://github.com/ReaJason/Clash-Butler/raw/refs/heads/master/rules/ai/ai.mrs
interval: 86400
claude:
type: http
behavior: domain
format: mrs
path: ./rules/claude.mrs
url: https://github.com/ReaJason/Clash-Butler/raw/refs/heads/master/rules/claude/claude.mrs
interval: 86400
youtube:
type: http
behavior: domain
format: mrs
path: ./rules/youtube.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/youtube.mrs
interval: 86400
cn:
type: http
behavior: domain
format: mrs
path: ./rules/cn.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/cn.mrs
interval: 86400
telegramip:
type: http
behavior: ipcidr
format: mrs
path: ./rules/telegramip.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/telegramip.mrs
interval: 86400
privateip:
type: http
behavior: ipcidr
format: mrs
path: ./rules/privateip.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/privateip.mrs
interval: 86400
cnip:
type: http
behavior: ipcidr
format: mrs
path: ./rules/cnip.mrs
url: https://github.com/DustinWin/ruleset_geodata/releases/download/clash-ruleset/cnip.mrs
interval: 86400