Compare commits
6 Commits
2020120922
...
2021030922
Author | SHA1 | Date | |
---|---|---|---|
86a7c719b5 | |||
c210a589f0 | |||
5441d199cf | |||
49f7eb8a57 | |||
1e7b435701 | |||
7f13203f06 |
16
.github/workflows/run.yml
vendored
16
.github/workflows/run.yml
vendored
@ -18,6 +18,7 @@ jobs:
|
|||||||
echo "TAG_NAME=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV
|
echo "TAG_NAME=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV
|
||||||
echo "custom_icloud=https://raw.githubusercontent.com/Loyalsoldier/domain-list-custom/release/icloud.txt" >> $GITHUB_ENV
|
echo "custom_icloud=https://raw.githubusercontent.com/Loyalsoldier/domain-list-custom/release/icloud.txt" >> $GITHUB_ENV
|
||||||
echo "custom_tld_not_cn=https://raw.githubusercontent.com/Loyalsoldier/domain-list-custom/release/tld-!cn.txt" >> $GITHUB_ENV
|
echo "custom_tld_not_cn=https://raw.githubusercontent.com/Loyalsoldier/domain-list-custom/release/tld-!cn.txt" >> $GITHUB_ENV
|
||||||
|
echo "custom_private=https://raw.githubusercontent.com/Loyalsoldier/domain-list-custom/release/private.txt" >> $GITHUB_ENV
|
||||||
echo "Loyalsoldier_reject=https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" >> $GITHUB_ENV
|
echo "Loyalsoldier_reject=https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" >> $GITHUB_ENV
|
||||||
echo "Loyalsoldier_proxy=https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/proxy-list.txt" >> $GITHUB_ENV
|
echo "Loyalsoldier_proxy=https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/proxy-list.txt" >> $GITHUB_ENV
|
||||||
echo "Loyalsoldier_direct=https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/direct-list.txt" >> $GITHUB_ENV
|
echo "Loyalsoldier_direct=https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/direct-list.txt" >> $GITHUB_ENV
|
||||||
@ -49,15 +50,23 @@ jobs:
|
|||||||
echo "payload:" > apple.txt
|
echo "payload:" > apple.txt
|
||||||
curl -sSL ${felixonmars_apple} | perl -ne '/^server=\/([^\/]+)\// && print " - |+.$1|\n"' | sed "s/|/'/g" >> apple.txt
|
curl -sSL ${felixonmars_apple} | perl -ne '/^server=\/([^\/]+)\// && print " - |+.$1|\n"' | sed "s/|/'/g" >> apple.txt
|
||||||
|
|
||||||
|
- name: Generate private.txt file
|
||||||
|
run: |
|
||||||
|
echo "payload:" > private.txt
|
||||||
|
curl -sSL ${custom_private} | awk -F ':' '/^full:/ {printf " - |%s|\n", $2}' | sed "s/|/'/g" >> private.txt
|
||||||
|
curl -sSL ${custom_private} | awk -F ':' '/^domain:/ {printf " - |+.%s|\n", $2}' | sed "s/|/'/g" >> private.txt
|
||||||
|
|
||||||
- name: Generate direct.txt file
|
- name: Generate direct.txt file
|
||||||
run: |
|
run: |
|
||||||
echo "payload:" > direct.txt
|
echo "payload:" > direct.txt
|
||||||
curl -sSL ${Loyalsoldier_direct} | grep -Ev "^(regexp|keyword):" | perl -ne '/^(domain:|full:)?([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$2|\n"' | sed "s/|/'/g" >> direct.txt
|
curl -sSL ${Loyalsoldier_direct} | grep -Ev "^(regexp|keyword):" | perl -ne '/^(full:)([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |$2|\n"' | sed "s/|/'/g" >> direct.txt
|
||||||
|
curl -sSL ${Loyalsoldier_direct} | grep -Ev "^(regexp|keyword|full):" | perl -ne '/^(domain:)?([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$2|\n"' | sed "s/|/'/g" >> direct.txt
|
||||||
|
|
||||||
- name: Generate proxy.txt file
|
- name: Generate proxy.txt file
|
||||||
run: |
|
run: |
|
||||||
echo "payload:" > proxy.txt
|
echo "payload:" > proxy.txt
|
||||||
curl -sSL ${Loyalsoldier_proxy} | grep -Ev "^(regexp|keyword):" | perl -ne '/^(domain:|full:)?([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$2|\n"' | sed "s/|/'/g" >> proxy.txt
|
curl -sSL ${Loyalsoldier_proxy} | grep -Ev "^(regexp|keyword):" | perl -ne '/^(full:)([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |$2|\n"' | sed "s/|/'/g" >> proxy.txt
|
||||||
|
curl -sSL ${Loyalsoldier_proxy} | grep -Ev "^(regexp|keyword|full):" | perl -ne '/^(domain:)?([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$2|\n"' | sed "s/|/'/g" >> proxy.txt
|
||||||
|
|
||||||
- name: Generate reject.txt file
|
- name: Generate reject.txt file
|
||||||
run: |
|
run: |
|
||||||
@ -86,13 +95,12 @@ jobs:
|
|||||||
|
|
||||||
- name: Generate telegramcidr.txt file
|
- name: Generate telegramcidr.txt file
|
||||||
run: |
|
run: |
|
||||||
echo "payload:" > telegramcidr.txt
|
|
||||||
curl -sSL ${telegram_cidr} | perl -ne '/(.+\/\d+)/ && print " - |$1|\n"' | sed "s/|/'/g" >> telegramcidr.txt
|
curl -sSL ${telegram_cidr} | perl -ne '/(.+\/\d+)/ && print " - |$1|\n"' | sed "s/|/'/g" >> telegramcidr.txt
|
||||||
|
|
||||||
- name: Move files to publish directory
|
- name: Move files to publish directory
|
||||||
run: |
|
run: |
|
||||||
mkdir -p publish
|
mkdir -p publish
|
||||||
install -p {apple,icloud,google,proxy,direct,reject,gfw,greatfire,tld-not-cn,cncidr,lancidr,telegramcidr}.txt ./publish/
|
install -p {apple,icloud,google,proxy,direct,reject,private,gfw,greatfire,tld-not-cn,cncidr,lancidr,telegramcidr}.txt ./publish/
|
||||||
|
|
||||||
- name: Release and upload assets
|
- name: Release and upload assets
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
|
128
README.md
128
README.md
@ -1,6 +1,6 @@
|
|||||||
# 简介
|
# 简介
|
||||||
|
|
||||||
本项目生成适用于 [**Clash Premium**](https://github.com/Dreamacro/clash/releases/tag/premium) 的规则集(RULE-SET)。使用 GitHub Actions 北京时间每天早上 6:30 自动构建,保证规则最新。
|
本项目生成适用于 [**Clash Premium 内核**](https://github.com/Dreamacro/clash/releases/tag/premium) 的规则集(RULE-SET),同时适用于所有使用 Clash Premium 内核的 Clash GUI 客户端。使用 GitHub Actions 北京时间每天早上 6:30 自动构建,保证规则最新。
|
||||||
|
|
||||||
## 说明
|
## 说明
|
||||||
|
|
||||||
@ -8,11 +8,13 @@
|
|||||||
|
|
||||||
本项目的规则集(RULE-SET)只适用于 Clash **Premium** 版本。Clash Premium 相对于普通版,增加了 **TUN 增强模式**,能接管设备所有 TCP 和 UDP 流量,类似 [Surge for Mac](https://nssurge.com) 的增强模式。更多高级特性请看[官方 wiki](https://github.com/Dreamacro/clash/wiki/premium-core-features)。
|
本项目的规则集(RULE-SET)只适用于 Clash **Premium** 版本。Clash Premium 相对于普通版,增加了 **TUN 增强模式**,能接管设备所有 TCP 和 UDP 流量,类似 [Surge for Mac](https://nssurge.com) 的增强模式。更多高级特性请看[官方 wiki](https://github.com/Dreamacro/clash/wiki/premium-core-features)。
|
||||||
|
|
||||||
### Clash 各版本下载地址
|
### Clash Premium 各版本下载地址
|
||||||
|
|
||||||
- Clash Premium **命令行**版(兼容 Windows、macOS、Linux、OpenWRT 等多种平台):[https://github.com/Dreamacro/clash/releases/tag/premium](https://github.com/Dreamacro/clash/releases/tag/premium)
|
- Clash Premium **命令行**版(适用于 Windows、macOS、Linux、OpenWRT 等多种平台):[https://github.com/Dreamacro/clash/releases/tag/premium](https://github.com/Dreamacro/clash/releases/tag/premium)
|
||||||
- Clash Premium **图形用户界面**版(ClashX Pro,兼容 macOS):[https://install.appcenter.ms/users/clashx/apps/clashx-pro/distribution_groups/public](https://install.appcenter.ms/users/clashx/apps/clashx-pro/distribution_groups/public)
|
- Clash Premium **图形用户界面**版:
|
||||||
- Clash Premium **图形用户界面**版(Clash for Windows,兼容 Windows、macOS):[https://github.com/Fndroid/clash_for_windows_pkg/releases](https://github.com/Fndroid/clash_for_windows_pkg/releases)
|
- [ClashX Pro](https://install.appcenter.ms/users/clashx/apps/clashx-pro/distribution_groups/public)(适用于 macOS)
|
||||||
|
- [Clash for Windows](https://github.com/Fndroid/clash_for_windows_pkg/releases)(适用于 Windows、macOS)
|
||||||
|
- [Clash for Android](https://github.com/Kr328/ClashForAndroid/releases)(适用于 Android)
|
||||||
|
|
||||||
## 规则文件地址及使用方式
|
## 规则文件地址及使用方式
|
||||||
|
|
||||||
@ -29,6 +31,9 @@
|
|||||||
- **广告域名列表 reject.txt**:
|
- **广告域名列表 reject.txt**:
|
||||||
- [https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/reject.txt](https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/reject.txt)
|
- [https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/reject.txt](https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/reject.txt)
|
||||||
- [https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/reject.txt](https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/reject.txt)
|
- [https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/reject.txt](https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/reject.txt)
|
||||||
|
- **私有网络专用域名列表 private.txt**:
|
||||||
|
- [https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/private.txt](https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/private.txt)
|
||||||
|
- [https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/private.txt](https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/private.txt)
|
||||||
- **Apple 域名列表 apple.txt**:
|
- **Apple 域名列表 apple.txt**:
|
||||||
- [https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/apple.txt](https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/apple.txt)
|
- [https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/apple.txt](https://raw.githubusercontent.com/Loyalsoldier/clash-rules/release/apple.txt)
|
||||||
- [https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/apple.txt](https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/apple.txt)
|
- [https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/apple.txt](https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/apple.txt)
|
||||||
@ -109,6 +114,13 @@ rule-providers:
|
|||||||
path: ./ruleset/direct.yaml
|
path: ./ruleset/direct.yaml
|
||||||
interval: 86400
|
interval: 86400
|
||||||
|
|
||||||
|
private:
|
||||||
|
type: http
|
||||||
|
behavior: domain
|
||||||
|
url: "https://cdn.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/private.txt"
|
||||||
|
path: ./ruleset/private.yaml
|
||||||
|
interval: 86400
|
||||||
|
|
||||||
gfw:
|
gfw:
|
||||||
type: http
|
type: http
|
||||||
behavior: domain
|
behavior: domain
|
||||||
@ -162,12 +174,28 @@ rule-providers:
|
|||||||
```yaml
|
```yaml
|
||||||
rules:
|
rules:
|
||||||
- PROCESS-NAME,v2ray,DIRECT
|
- PROCESS-NAME,v2ray,DIRECT
|
||||||
- PROCESS-NAME,Surge%203,DIRECT
|
- PROCESS-NAME,xray,DIRECT
|
||||||
- PROCESS-NAME,ss-local,DIRECT
|
- PROCESS-NAME,naive,DIRECT
|
||||||
- PROCESS-NAME,privoxy,DIRECT
|
|
||||||
- PROCESS-NAME,trojan,DIRECT
|
- PROCESS-NAME,trojan,DIRECT
|
||||||
- PROCESS-NAME,trojan-go,DIRECT
|
- PROCESS-NAME,trojan-go,DIRECT
|
||||||
- PROCESS-NAME,naive,DIRECT
|
- PROCESS-NAME,ss-local,DIRECT
|
||||||
|
- PROCESS-NAME,privoxy,DIRECT
|
||||||
|
- PROCESS-NAME,leaf,DIRECT
|
||||||
|
- PROCESS-NAME,v2ray.exe,DIRECT
|
||||||
|
- PROCESS-NAME,xray.exe,DIRECT
|
||||||
|
- PROCESS-NAME,naive.exe,DIRECT
|
||||||
|
- PROCESS-NAME,trojan.exe,DIRECT
|
||||||
|
- PROCESS-NAME,trojan-go.exe,DIRECT
|
||||||
|
- PROCESS-NAME,ss-local.exe,DIRECT
|
||||||
|
- PROCESS-NAME,privoxy.exe,DIRECT
|
||||||
|
- PROCESS-NAME,leaf.exe,DIRECT
|
||||||
|
- PROCESS-NAME,Surge,DIRECT
|
||||||
|
- PROCESS-NAME,Surge 2,DIRECT
|
||||||
|
- PROCESS-NAME,Surge 3,DIRECT
|
||||||
|
- PROCESS-NAME,Surge 4,DIRECT
|
||||||
|
- PROCESS-NAME,Surge%202,DIRECT
|
||||||
|
- PROCESS-NAME,Surge%203,DIRECT
|
||||||
|
- PROCESS-NAME,Surge%204,DIRECT
|
||||||
- PROCESS-NAME,Thunder,DIRECT
|
- PROCESS-NAME,Thunder,DIRECT
|
||||||
- PROCESS-NAME,DownloadService,DIRECT
|
- PROCESS-NAME,DownloadService,DIRECT
|
||||||
- PROCESS-NAME,qBittorrent,DIRECT
|
- PROCESS-NAME,qBittorrent,DIRECT
|
||||||
@ -178,8 +206,20 @@ rules:
|
|||||||
- PROCESS-NAME,NetTransport,DIRECT
|
- PROCESS-NAME,NetTransport,DIRECT
|
||||||
- PROCESS-NAME,uTorrent,DIRECT
|
- PROCESS-NAME,uTorrent,DIRECT
|
||||||
- PROCESS-NAME,WebTorrent,DIRECT
|
- PROCESS-NAME,WebTorrent,DIRECT
|
||||||
|
- PROCESS-NAME,aria2c.exe,DIRECT
|
||||||
|
- PROCESS-NAME,BitComet.exe,DIRECT
|
||||||
|
- PROCESS-NAME,fdm.exe,DIRECT
|
||||||
|
- PROCESS-NAME,NetTransport.exe,DIRECT
|
||||||
|
- PROCESS-NAME,qbittorrent.exe,DIRECT
|
||||||
|
- PROCESS-NAME,Thunder.exe,DIRECT
|
||||||
|
- PROCESS-NAME,ThunderVIP.exe,DIRECT
|
||||||
|
- PROCESS-NAME,transmission-daemon.exe,DIRECT
|
||||||
|
- PROCESS-NAME,transmission-qt.exe,DIRECT
|
||||||
|
- PROCESS-NAME,uTorrent.exe,DIRECT
|
||||||
|
- PROCESS-NAME,WebTorrent.exe,DIRECT
|
||||||
- DOMAIN,clash.razord.top,DIRECT
|
- DOMAIN,clash.razord.top,DIRECT
|
||||||
- DOMAIN,yacd.haishan.me,DIRECT
|
- DOMAIN,yacd.haishan.me,DIRECT
|
||||||
|
- RULE-SET,private,DIRECT
|
||||||
- RULE-SET,reject,REJECT
|
- RULE-SET,reject,REJECT
|
||||||
- RULE-SET,icloud,DIRECT
|
- RULE-SET,icloud,DIRECT
|
||||||
- RULE-SET,apple,DIRECT
|
- RULE-SET,apple,DIRECT
|
||||||
@ -200,12 +240,28 @@ rules:
|
|||||||
```yaml
|
```yaml
|
||||||
rules:
|
rules:
|
||||||
- PROCESS-NAME,v2ray,DIRECT
|
- PROCESS-NAME,v2ray,DIRECT
|
||||||
- PROCESS-NAME,Surge%203,DIRECT
|
- PROCESS-NAME,xray,DIRECT
|
||||||
- PROCESS-NAME,ss-local,DIRECT
|
- PROCESS-NAME,naive,DIRECT
|
||||||
- PROCESS-NAME,privoxy,DIRECT
|
|
||||||
- PROCESS-NAME,trojan,DIRECT
|
- PROCESS-NAME,trojan,DIRECT
|
||||||
- PROCESS-NAME,trojan-go,DIRECT
|
- PROCESS-NAME,trojan-go,DIRECT
|
||||||
- PROCESS-NAME,naive,DIRECT
|
- PROCESS-NAME,ss-local,DIRECT
|
||||||
|
- PROCESS-NAME,privoxy,DIRECT
|
||||||
|
- PROCESS-NAME,leaf,DIRECT
|
||||||
|
- PROCESS-NAME,v2ray.exe,DIRECT
|
||||||
|
- PROCESS-NAME,xray.exe,DIRECT
|
||||||
|
- PROCESS-NAME,naive.exe,DIRECT
|
||||||
|
- PROCESS-NAME,trojan.exe,DIRECT
|
||||||
|
- PROCESS-NAME,trojan-go.exe,DIRECT
|
||||||
|
- PROCESS-NAME,ss-local.exe,DIRECT
|
||||||
|
- PROCESS-NAME,privoxy.exe,DIRECT
|
||||||
|
- PROCESS-NAME,leaf.exe,DIRECT
|
||||||
|
- PROCESS-NAME,Surge,DIRECT
|
||||||
|
- PROCESS-NAME,Surge 2,DIRECT
|
||||||
|
- PROCESS-NAME,Surge 3,DIRECT
|
||||||
|
- PROCESS-NAME,Surge 4,DIRECT
|
||||||
|
- PROCESS-NAME,Surge%202,DIRECT
|
||||||
|
- PROCESS-NAME,Surge%203,DIRECT
|
||||||
|
- PROCESS-NAME,Surge%204,DIRECT
|
||||||
- PROCESS-NAME,Thunder,DIRECT
|
- PROCESS-NAME,Thunder,DIRECT
|
||||||
- PROCESS-NAME,DownloadService,DIRECT
|
- PROCESS-NAME,DownloadService,DIRECT
|
||||||
- PROCESS-NAME,qBittorrent,DIRECT
|
- PROCESS-NAME,qBittorrent,DIRECT
|
||||||
@ -216,47 +272,25 @@ rules:
|
|||||||
- PROCESS-NAME,NetTransport,DIRECT
|
- PROCESS-NAME,NetTransport,DIRECT
|
||||||
- PROCESS-NAME,uTorrent,DIRECT
|
- PROCESS-NAME,uTorrent,DIRECT
|
||||||
- PROCESS-NAME,WebTorrent,DIRECT
|
- PROCESS-NAME,WebTorrent,DIRECT
|
||||||
|
- PROCESS-NAME,aria2c.exe,DIRECT
|
||||||
|
- PROCESS-NAME,BitComet.exe,DIRECT
|
||||||
|
- PROCESS-NAME,fdm.exe,DIRECT
|
||||||
|
- PROCESS-NAME,NetTransport.exe,DIRECT
|
||||||
|
- PROCESS-NAME,qbittorrent.exe,DIRECT
|
||||||
|
- PROCESS-NAME,Thunder.exe,DIRECT
|
||||||
|
- PROCESS-NAME,ThunderVIP.exe,DIRECT
|
||||||
|
- PROCESS-NAME,transmission-daemon.exe,DIRECT
|
||||||
|
- PROCESS-NAME,transmission-qt.exe,DIRECT
|
||||||
|
- PROCESS-NAME,uTorrent.exe,DIRECT
|
||||||
|
- PROCESS-NAME,WebTorrent.exe,DIRECT
|
||||||
- DOMAIN,clash.razord.top,DIRECT
|
- DOMAIN,clash.razord.top,DIRECT
|
||||||
- DOMAIN,yacd.haishan.me,DIRECT
|
- DOMAIN,yacd.haishan.me,DIRECT
|
||||||
|
- RULE-SET,private,DIRECT
|
||||||
- RULE-SET,reject,REJECT
|
- RULE-SET,reject,REJECT
|
||||||
- RULE-SET,tld-not-cn,PROXY
|
- RULE-SET,tld-not-cn,PROXY
|
||||||
- RULE-SET,gfw,PROXY
|
- RULE-SET,gfw,PROXY
|
||||||
- RULE-SET,greatfire,PROXY
|
- RULE-SET,greatfire,PROXY
|
||||||
- RULE-SET,telegramcidr,PROXY
|
- RULE-SET,telegramcidr,PROXY
|
||||||
- GEOIP,AE,PROXY
|
|
||||||
- GEOIP,AU,PROXY
|
|
||||||
- GEOIP,BR,PROXY
|
|
||||||
- GEOIP,CA,PROXY
|
|
||||||
- GEOIP,DE,PROXY
|
|
||||||
- GEOIP,DK,PROXY
|
|
||||||
- GEOIP,ES,PROXY
|
|
||||||
- GEOIP,FI,PROXY
|
|
||||||
- GEOIP,FR,PROXY
|
|
||||||
- GEOIP,GB,PROXY
|
|
||||||
- GEOIP,GR,PROXY
|
|
||||||
- GEOIP,HK,PROXY
|
|
||||||
- GEOIP,ID,PROXY
|
|
||||||
- GEOIP,IL,PROXY
|
|
||||||
- GEOIP,IN,PROXY
|
|
||||||
- GEOIP,IQ,PROXY
|
|
||||||
- GEOIP,IR,PROXY
|
|
||||||
- GEOIP,IT,PROXY
|
|
||||||
- GEOIP,JP,PROXY
|
|
||||||
- GEOIP,KR,PROXY
|
|
||||||
- GEOIP,MO,PROXY
|
|
||||||
- GEOIP,MY,PROXY
|
|
||||||
- GEOIP,NL,PROXY
|
|
||||||
- GEOIP,NO,PROXY
|
|
||||||
- GEOIP,NZ,PROXY
|
|
||||||
- GEOIP,PH,PROXY
|
|
||||||
- GEOIP,RU,PROXY
|
|
||||||
- GEOIP,SA,PROXY
|
|
||||||
- GEOIP,SG,PROXY
|
|
||||||
- GEOIP,TH,PROXY
|
|
||||||
- GEOIP,TR,PROXY
|
|
||||||
- GEOIP,TW,PROXY
|
|
||||||
- GEOIP,US,PROXY
|
|
||||||
- GEOIP,VN,PROXY
|
|
||||||
- MATCH,DIRECT
|
- MATCH,DIRECT
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user