-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcombined_proxies.yaml
More file actions
4790 lines (4790 loc) ยท 97.6 KB
/
combined_proxies.yaml
File metadata and controls
4790 lines (4790 loc) ยท 97.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
proxies:
- name: ๐ฆ๐ช 001
type: ss
server: du.acxylm.top
port: 55645
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฆ๐ช 002
type: ss
server: series-a2-mec.varzesh360.co
port: 443
cipher: chacha20-ietf-poly1305
password: u17T3BvpYaaiuW2c
- name: ๐ฆ๐บ 001
type: trojan
server: customer-45-142-215-88.stark-industries.solutions
port: 443
password: c5691b8f-d833-41e4-9295-769f3edb4cd2
skip-cert-verify: true
- name: ๐ฆ๐บ 002
type: trojan
server: in01.trojanyyds.xyz
port: 443
password: 4a39dba7-463b-4c8a-a804-758282c11c62
skip-cert-verify: true
sni: in01.trojanyyds.xyz
- name: ๐ฆ๐บ 003
type: trojan
server: 34618.kuajing.buzz
port: 34618
password: cd30052f-f1b2-35df-9773-bd586e72f67a
skip-cert-verify: false
sni: eplcgame.com
- name: ๐ฆ๐บ 004
type: trojan
server: tw02.trojanyyds.xyz
port: 443
password: 8d1e94cd-23cf-4267-b630-c6894e6e1b4d
skip-cert-verify: true
- name: ๐ฆ๐บ 005
type: vmess
server: 183.236.48.163
port: 58831
alterId: 64
cipher: auto
client-fingerprint: chrome
skip-cert-verify: false
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐ฆ๐บ 006
type: trojan
server: 36.151.192.239
port: 36442
password: lNOcIAxy
skip-cert-verify: true
sni: wrmelmwxlf.gktevlrqznwqqozy.fabpfs66gizmnojhcvqxwl.kytrcfzqla87gvgvs6c7kjnrubuh.cc
- name: ๐ฆ๐บ 007
type: ss
server: au.acxylm.top
port: 12343
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฆ๐ฟ 001
type: ss
server: 193.124.22.253
port: 33068
cipher: chacha20-ietf-poly1305
password: 3MgIhqwp4pjM8SKwixNkYZ
- name: ๐ง๐ญ 001
type: ss
server: series-a2-me.varzesh360.co
port: 443
cipher: chacha20-ietf-poly1305
password: Bog0ELmMM9DSxDdQ
- name: ๐ง๐ท 001
type: ss
server: br.acxylm.top
port: 41829
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐จ๐ฆ 001
type: trojan
server: free.6vczxw.xyz
port: 41199
password: 40c9871b-74af-45f5-ac2c-12597587dc98
skip-cert-verify: true
sni: sg15.bluemixnet.xyz
- name: ๐จ๐ฆ 002
type: vmess
server: 47.92.152.169
port: 50002
alterId: 64
cipher: none
skip-cert-verify: false
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐จ๐ฆ 003
type: trojan
server: 20.89.130.227
port: 443
password: 9995cc0e-2e9d-4c80-8c81-4fdbb6322a3a
skip-cert-verify: true
sni: fscus.fscloud123456789.com
- name: ๐จ๐ฆ 004
type: trojan
server: customer-45-89-55-150.stark-industries.solutions
port: 443
password: c5691b8f-d833-41e4-9295-769f3edb4cd2
skip-cert-verify: true
- name: ๐จ๐ฆ 005
type: trojan
server: my01.trojanyyds.xyz
port: 443
password: 93ec7261-1c92-4149-848a-26b6fb9fc4ce
skip-cert-verify: true
- name: ๐จ๐ฆ 006
type: trojan
server: free.6vczxw.xyz
port: 41239
password: f4a08f9d-1fb0-4cd3-a8e3-b0a561f9c44b
skip-cert-verify: true
sni: us15.t8l1n9k.link
- name: ๐จ๐ฆ 007
type: trojan
server: ar.mjt000.com
port: 443
password: 8993fa1c-342e-41fc-b01e-8719abde1324
skip-cert-verify: true
sni: ar.mjt000.com
- name: ๐จ๐ฆ 008
type: vmess
server: 104.19.45.50
port: 2082
alterId: 0
cipher: auto
network: ws
skip-cert-verify: false
tls: false
uuid: 5f3f09ad-89cb-4e94-a7ad-aa8239913555
- name: ๐จ๐ฆ 009
type: vmess
server: 104.20.25.146
port: 2095
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: false
uuid: 18d96190-c10f-448f-a82a-2d36df5c3cde
- name: ๐จ๐ฆ 010
type: trojan
server: jp1.jjzgy.live
port: 443
password: f10d81d8-ad4b-300a-825b-f54f515bd06e
skip-cert-verify: true
sni: jp1.jjzgy.live
- name: ๐จ๐ฆ 012
type: ss
server: us07.bfyrek.top
port: 34468
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐จ๐ฆ 013
type: ss
server: 103.36.90.195
port: 8388
cipher: chacha20-ietf
password: asd123456
- name: ๐จ๐ฆ 014
type: trojan
server: ru.mjt000.com
port: 443
password: bc90fb72-0b2c-45b4-a8d8-c9baa4eaaef3
skip-cert-verify: true
sni: ru.mjt000.com
- name: ๐จ๐ญ 001
type: trojan
server: ent1.imyourdaddy.top
port: 20980
password: 64f33df2-4f9d-4cf3-bb69-b82b08cf149a
skip-cert-verify: true
- name: ๐จ๐ณ 001
type: vmess
server: hn.xn--wlqw1swrj04ju56d.com
port: 80
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: false
uuid: f9ddefc5-d121-486f-9e2f-0c2cd1a3decc
- name: ๐จ๐ณ 002
type: vmess
server: 112.132.212.19
port: 50004
alterId: 64
cipher: auto
network: tcp
skip-cert-verify: true
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐จ๐ณ 003
type: vmess
server: 112.132.215.12
port: 50002
alterId: 64
cipher: auto
network: tcp
skip-cert-verify: true
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐จ๐ณ 004
type: vmess
server: 114.55.132.202
port: 50002
alterId: 64
cipher: auto
skip-cert-verify: false
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐จ๐ณ 005
type: vmess
server: 120.210.205.59
port: 50002
alterId: 64
cipher: none
network: tcp
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐จ๐ณ 006
type: vmess
server: 120.226.29.105
port: 8888
alterId: 0
cipher: auto
network: ws
uuid: 8645841f-23fb-47e2-9dae-33580c96b49e
- name: ๐จ๐ณ 007
type: vmess
server: 183.236.51.36
port: 59003
alterId: 64
cipher: auto
network: tcp
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐จ๐ณ 008
type: vmess
server: 47.104.186.133
port: 50002
alterId: 64
cipher: auto
skip-cert-verify: true
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐จ๐ณ 009
type: vmess
server: 47.116.173.76
port: 50002
alterId: 64
cipher: auto
network: tcp
skip-cert-verify: true
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐ฉ๐ช 001
type: trojan
server: ent1.imyourdaddy.top
port: 20992
password: 061a01f1-704b-4712-8e12-6d3fc95a127d
skip-cert-verify: true
- name: ๐ฉ๐ช 002
type: ss
server: de01.acxylm.top
port: 27684
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฉ๐ช 003
type: vmess
server: 2.189.59.2
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: false
tls: true
uuid: 05641cf5-58d2-4ba4-a9f1-b3cda0b1fb1d
- name: ๐ฉ๐ช 004
type: vmess
server: 45.149.12.79
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: 05641cf5-58d2-4ba4-a9f1-b3cda0b1fb1d
- name: ๐ฉ๐ช 005
type: ss
server: de03.acxylm.top
port: 55504
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฉ๐ช 006
type: ss
server: de02.acxylm.top
port: 44944
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ซ๐ฎ 001
type: trojan
server: ent1.imyourdaddy.top
port: 20982
password: 64f33df2-4f9d-4cf3-bb69-b82b08cf149a
skip-cert-verify: true
sni: sale.alibaba.com
- name: ๐ซ๐ท 001
type: vmess
server: 2.189.59.3
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: 05641cf5-58d2-4ba4-a9f1-b3cda0b1fb1d
- name: ๐ซ๐ท 002
type: vmess
server: www.baldengineer.com
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: f584de15-2034-4170-a723-f48c2bae5e0f
- name: ๐ซ๐ท 004
type: vmess
server: tradegdt.ai
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: 39cec18f-a439-427c-9a4e-aeb6fcdf6f53
- name: ๐ซ๐ท 006
type: vmess
server: 104.21.24.170
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: b321fd5d-e6ec-4293-a644-164e3885f52e
- name: ๐ซ๐ท 008
type: ss
server: fr03.acxylm.top
port: 61287
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ซ๐ท 009
type: ss
server: fr01.acxylm.top
port: 20109
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ซ๐ท 010
type: vmess
server: 23.162.152.177
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: 03fcc618-b93d-6796-6aed-8a38c975d581
- name: ๐ซ๐ท 011
type: vmess
server: 2.189.59.6
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: 05641cf5-58d2-4ba4-a9f1-b3cda0b1fb1d
- name: ๐ฌ๐ง 001
type: vmess
server: 16.724064.xyz
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: b7cf4466-956a-4639-b861-0cf78cbb6f8f
- name: ๐ฌ๐ง 002
type: ss
server: series-a1.samanehha.co
port: 443
cipher: chacha20-ietf-poly1305
password: W74XFALLLuw6m5IA
- name: ๐ฌ๐ง 003
type: ss
server: uk.acxylm.top
port: 19262
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฌ๐ง 004
type: vmess
server: 2.189.59.7
port: 443
alterId: 0
cipher: auto
network: ws
tls: true
uuid: 05641cf5-58d2-4ba4-a9f1-b3cda0b1fb1d
- name: ๐ฌ๐ง 005
type: ss
server: hl.acxylm.top
port: 48465
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฌ๐ง 006
type: ss
server: hk01.acxylm.top
port: 55268
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฌ๐ง 007
type: vmess
server: 57.128.184.127
port: 443
alterId: 0
cipher: auto
client-fingerprint: chrome
network: ws
skip-cert-verify: true
tls: true
uuid: 03fcc618-b93d-6796-6aed-8a38c975d581
- name: ๐ฌ๐ง 008
type: ss
server: hk07.bfyrek.top
port: 36605
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ญ๐ฐ 001
type: trojan
server: 36.151.192.242
port: 14505
password: QwwHvrnN
skip-cert-verify: true
- name: ๐ญ๐ฐ 002
type: trojan
server: 36.151.192.196
port: 42395
password: QwwHvrnN
skip-cert-verify: true
- name: ๐ญ๐ฐ 003
type: vmess
server: 183.236.51.23
port: 46602
alterId: 64
cipher: none
network: tcp
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐ญ๐ฐ 004
type: vmess
server: 183.236.51.23
port: 56601
alterId: 64
cipher: auto
network: tcp
skip-cert-verify: true
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐ญ๐ฐ 005
type: vmess
server: 183.236.51.23
port: '53002'
alterId: 64
cipher: auto
network: tcp
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐ญ๐ฐ 006
type: vmess
server: 120.232.153.27
port: 58002
alterId: 64
cipher: auto
network: tcp
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐ญ๐ฐ 007
type: ss
server: 58.63.250.61
port: 15011
cipher: aes-256-gcm
password: Z1K84W4D8G5KO54J
- name: ๐ญ๐ฐ 008
type: ss
server: 36.141.40.92
port: 15016
cipher: aes-256-gcm
password: MAADD8JLM8XKVW56
- name: ๐ญ๐ฐ 009
type: ss
server: 4.api-catssr.catcloud.host
port: 32184
cipher: chacha20-ietf-poly1305
password: bb741d28-cd11-4ce8-8799-459407bacde8
- name: ๐ญ๐ฐ 010
type: ss
server: hk03.acxylm.top
port: 31452
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ญ๐ฐ 011
type: ss
server: hk04.acxylm.top
port: 20177
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ญ๐ฐ 012
type: vmess
server: yd2.ainivp.com
port: 33416
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: 9204afcd-023e-781f-1abc-c12efccd1344
- name: ๐ญ๐ฐ 013
type: ss
server: 120.232.81.50
port: 16088
cipher: aes-256-cfb
password: hGkQ6915tD
- name: ๐ญ๐ฐ 014
type: vmess
server: 120.232.81.14
port: 22300
alterId: 0
cipher: auto
uuid: 8cd69cef-002a-4f66-9ff6-48fbb7c2e2c7
- name: ๐ญ๐ฐ 015
type: vmess
server: hk0067.alibabaokz.com
port: 60066
alterId: 0
cipher: auto
uuid: e50e453f-04f5-4c31-b962-bff22b152410
- name: ๐ญ๐ฐ 016
type: ss
server: gy.666666222.shop
port: 34338
cipher: chacha20-ietf-poly1305
password: f337e72a-be9a-4ea1-8332-7cbc88f0006f
- name: ๐ญ๐ฐ 017
type: ss
server: us3.acxylm.top
port: 45567
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ญ๐ฐ 018
type: ss
server: hk02.acxylm.top
port: 10473
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ญ๐ฐ 019
type: ss
server: gychun.ccdox.icu
port: 34001
cipher: aes-256-gcm
password: 486c819c-dc4a-4981-8949-a02a6b327287
- name: ๐ฎ๐น 001
type: trojan
server: ent1.imyourdaddy.top
port: 20983
password: 64f33df2-4f9d-4cf3-bb69-b82b08cf149a
skip-cert-verify: true
sni: sale.alibaba.com
- name: ๐ฏ๐ต 001
type: trojan
server: 43.153.175.137
port: 443
password: FLorg
skip-cert-verify: true
sni: trojan.tcorg.filegear-sg.me
- name: ๐ฏ๐ต 003
type: ss
server: 120.232.81.50
port: 15084
cipher: aes-256-cfb
password: hGkQ6915tD
- name: ๐ฏ๐ต 004
type: vmess
server: yd2.ainivp.com
port: 33202
alterId: 0
cipher: auto
network: ws
skip-cert-verify: false
tls: true
uuid: 9204afcd-023e-781f-1abc-c12efccd1344
- name: ๐ฏ๐ต 005
type: ss
server: 18.183.217.223
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฏ๐ต 006
type: ss
server: jp01.acxylm.top
port: 19428
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฏ๐ต 007
type: ss
server: gy.666666222.shop
port: 20002
cipher: chacha20-ietf-poly1305
password: f337e72a-be9a-4ea1-8332-7cbc88f0006f
- name: ๐ฏ๐ต 008
type: ss
server: gy.666666222.shop
port: 20004
cipher: chacha20-ietf-poly1305
password: f337e72a-be9a-4ea1-8332-7cbc88f0006f
- name: ๐ฏ๐ต 009
type: ss
server: 3.112.215.69
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฏ๐ต 010
type: ss
server: jp02.acxylm.top
port: 43787
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฏ๐ต 011
type: ss
server: 54.95.5.168
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฏ๐ต 012
type: ss
server: 57.180.42.246
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฏ๐ต 013
type: trojan
server: 36.151.192.239
port: 17806
password: QwwHvrnN
skip-cert-verify: true
- name: ๐ฏ๐ต 014
type: ss
server: gy.666666222.shop
port: 20008
cipher: chacha20-ietf-poly1305
password: f337e72a-be9a-4ea1-8332-7cbc88f0006f
- name: ๐ฏ๐ต 015
type: vmess
server: hk0106.alibabaokz.com
port: 60126
alterId: 0
cipher: auto
uuid: e50e453f-04f5-4c31-b962-bff22b152410
- name: ๐ฏ๐ต 016
type: vmess
server: jp0160.alibabaokz.com
port: 60034
alterId: 0
cipher: auto
uuid: e50e453f-04f5-4c31-b962-bff22b152410
- name: ๐ฐ๐ท 001
type: ss
server: 13.209.16.115
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฐ๐ท 002
type: trojan
server: naiu-other.05vr9nyqg5.download
port: 13036
password: ad6e2bae-d580-4117-aa37-a8c111100740
skip-cert-verify: true
sni: cloudflare.node-ssl.cdn-alibaba.com
- name: ๐ฐ๐ท 003
type: trojan
server: 36.151.192.198
port: 36900
password: QwwHvrnN
skip-cert-verify: true
- name: ๐ฐ๐ท 004
type: ss
server: 221.139.79.57
port: 54345
cipher: aes-256-cfb
password: qwerREWQ@@
- name: ๐ฐ๐ท 005
type: ss
server: 3.35.137.32
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฐ๐ท 006
type: ss
server: 3.39.240.246
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฐ๐ท 007
type: ss
server: 43.202.57.197
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ฐ๐ท 008
type: ss
server: kr01.acxylm.top
port: 59988
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ฒ๐ฝ 001
type: ss
server: mx.acxylm.top
port: 61258
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ณ๐ฑ 001
type: ss
server: 45.87.175.188
port: 8080
cipher: chacha20-ietf-poly1305
password: 1RWwXhwfAB5gAEozU4G2Pg
- name: ๐ณ๐ฑ 002
type: ss
server: 45.87.175.199
port: 8080
cipher: chacha20-ietf-poly1305
password: 1RWwXhwfAB5gAEozU4G2Pg
- name: ๐ณ๐ฑ 003
type: ss
server: 194.87.82.28
port: 12224
cipher: chacha20-ietf-poly1305
password: 2fwufOmJ9ELfN4umzcHBfV
- name: ๐ณ๐ฑ 004
type: ss
server: id.acxylm.top
port: 25806
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ต๐ญ 001
type: ss
server: ph.acxylm.top
port: 56433
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ท๐บ 002
type: trojan
server: ru0195.alibabaokz.com
port: 60194
password: 38571ca6-6692-4559-b901-0bc5826b7661
skip-cert-verify: true
sni: ru0195.alibabaokz.com
- name: ๐ธ๐ฌ 001
type: trojan
server: naiu-sg.05vr9nyqg5.download
port: 13028
password: ad6e2bae-d580-4117-aa37-a8c111100740
skip-cert-verify: false
sni: cloudflare.node-ssl.cdn-alibaba.com
- name: ๐ธ๐ฌ 002
type: ss
server: 13.229.238.238
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ธ๐ฌ 004
type: vmess
server: 183.236.51.23
port: 53002
alterId: 64
cipher: auto
network: tcp
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐ธ๐ฌ 006
type: ss
server: sgp3.acxylm.top
port: 29321
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ธ๐ฌ 007
type: ss
server: sgp5.acxylm.top
port: 20923
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ธ๐ฌ 008
type: ss
server: 47.128.215.67
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ธ๐ฌ 009
type: ss
server: sgp1.acxylm.top
port: 46417
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐ธ๐ฌ 010
type: ss
server: 52.77.209.61
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐ธ๐ฌ 011
type: ss
server: 52.77.236.51
port: 443
cipher: aes-256-cfb
password: amazonskr05
- name: ๐น๐ญ 001
type: ss
server: th.acxylm.top
port: 50948
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐น๐ท 001
type: trojan
server: ent1.imyourdaddy.top
port: 20987
password: 64f33df2-4f9d-4cf3-bb69-b82b08cf149a
skip-cert-verify: true
- name: ๐น๐ท 002
type: ss
server: tr.acxylm.top
port: 55691
cipher: aes-256-gcm
password: f8017657-aa43-43e1-830a-e1b2bcdbeeef
- name: ๐บ๐ธ 001
type: trojan
server: 104.18.12.229
port: 8443
password: trojan
skip-cert-verify: true
sni: mav2flyng.pages.dev
- name: ๐บ๐ธ 004
type: trojan
server: free.6vczxw.xyz
port: 41139
password: 7cb80b97-119b-4704-a036-5b67fceb3aac
skip-cert-verify: true
sni: jp15.bluemixnet.xyz
- name: ๐บ๐ธ 005
type: trojan
server: 63.141.128.254
port: 443
password: dns68
skip-cert-verify: true
sni: trojan.putata.us.kg
- name: ๐บ๐ธ 006
type: trojan
server: 135.84.79.80
port: 443
password: dns68
skip-cert-verify: true
sni: trojan.putata.us.kg
- name: ๐บ๐ธ 007
type: trojan
server: 199.68.156.68
port: 443
password: dns68
skip-cert-verify: true
sni: trojan.putata.us.kg
- name: ๐บ๐ธ 008
type: trojan
server: 103.168.154.7
port: 889
password: LYaOvuNXdQGTZNonhlRUKqOJcKVihzKY
skip-cert-verify: true
sni: cdn.cjhh.lol
- name: ๐บ๐ธ 009
type: trojan
server: 18.179.44.127
port: 443
password: e3fee3b6-fca1-3985-99dc-da7ca03260ea
skip-cert-verify: true
sni: akamai.cdn.steampipe.steamcontent.com
- name: ๐บ๐ธ 013
type: vmess
server: 104.26.5.145
port: 2082
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: false
uuid: 5f3f09ad-89cb-4e94-a7ad-aa8239913555
- name: ๐บ๐ธ 014
type: vmess
server: 104.19.45.11
port: 2095
alterId: 0
cipher: auto
network: ws
uuid: 18d96190-c10f-448f-a82a-2d36df5c3cde
- name: ๐บ๐ธ 015
type: vmess
server: 183.236.51.23
port: 40434
alterId: 64
cipher: auto
network: tcp
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐บ๐ธ 018
type: trojan
server: ent1.imyourdaddy.top
port: 21005
password: 64f33df2-4f9d-4cf3-bb69-b82b08cf149a
skip-cert-verify: true
sni: alibabashop.com
- name: ๐บ๐ธ 019
type: ss
server: gy.666666222.shop
port: 20013
cipher: chacha20-ietf-poly1305
password: f337e72a-be9a-4ea1-8332-7cbc88f0006f
- name: ๐บ๐ธ 021
type: vmess
server: 183.236.48.143
port: 41490
alterId: 64
cipher: auto
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐บ๐ธ 022
type: vmess
server: 183.236.48.143
port: 31878
alterId: 64
cipher: auto
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐บ๐ธ 023
type: vmess
server: 183.240.253.23
port: 52482
alterId: 64
cipher: auto
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐บ๐ธ 024
type: vmess
server: 183.240.253.20
port: 42055
alterId: 64
cipher: auto
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐บ๐ธ 025
type: vmess
server: 183.240.253.20
port: 37614
alterId: 64
cipher: auto
skip-cert-verify: true
tls: false
uuid: 418048af-a293-4b99-9b0c-98ca3580dd24
- name: ๐บ๐ธ 026
type: vmess
server: 2.189.59.4
port: 443
alterId: 0
cipher: auto
network: ws
skip-cert-verify: true
tls: true
uuid: 05641cf5-58d2-4ba4-a9f1-b3cda0b1fb1d
- name: ๐บ๐ธ 027
type: ss
server: zhuliu.zhenxunwudi.top
port: 38045
cipher: aes-256-gcm
password: 2MkHPhqUTQKK7N7D
- name: ๐บ๐ธ 028
type: vmess