├── .github └── workflows │ ├── sgfdip.yml │ ├── sgip_speed_test.yml │ └── yx_ips.yml ├── CloudflareST ├── CloudflareST ├── CloudflareST.tar.gz ├── cfst_hosts.sh ├── ip.txt ├── ipv6.txt ├── sg.csv ├── sg.txt ├── sgcs.txt └── 使用+错误+反馈说明.txt ├── FDIP-cesu.sh ├── FDIP └── all.txt ├── README.md ├── sgfd_ips.txt ├── sgfdip.py ├── yx_ips.py └── yx_ips.txt /.github/workflows/sgfdip.yml: -------------------------------------------------------------------------------- 1 | name: Update Singapore IPs and DNS 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: '10 8,20 * * *' # 每12小时运行一次,可以根据需求调整 7 | 8 | jobs: 9 | update_ips_and_dns: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - name: Checkout repository 14 | uses: actions/checkout@v4 15 | 16 | - name: Set up Python 17 | uses: actions/setup-python@v4 18 | with: 19 | python-version: '3.x' 20 | 21 | - name: Install dependencies 22 | run: | 23 | python -m pip install --upgrade pip 24 | pip install ipwhois requests 25 | 26 | - name: Run Python script to update sgfd_ips.txt and DNS 27 | env: 28 | CF_API_KEY: ${{ secrets.CF_API_KEY }} 29 | CF_ZONE_YID: ${{ secrets.CF_ZONE_YID }} 30 | CF_DNS_NAME: ${{ secrets.CF_DNS_NAME }} 31 | run: python sgfdip.py 32 | 33 | - name: Configure Git 34 | run: | 35 | git config --global user.email "github-actions@github.com" 36 | git config --global user.name "GitHub Actions" 37 | 38 | - name: Pull latest changes 39 | run: | 40 | git pull origin main 41 | 42 | - name: Commit and push changes to repository 43 | run: | 44 | git add sgfd_ips.txt 45 | git commit -m "Update sgfd_ips.txt with new Singapore IPs" || echo "No changes to commit" 46 | git pull --rebase origin main || echo "No rebase necessary" 47 | git push origin main || echo "Nothing to push" 48 | -------------------------------------------------------------------------------- /.github/workflows/sgip_speed_test.yml: -------------------------------------------------------------------------------- 1 | name: SGIP Speed Test 2 | 3 | on: 4 | workflow_dispatch: # 手动触发 5 | schedule: 6 | - cron: '0 8,20 * * *' # 每12小时运行一次,可以根据需求调整 7 | 8 | jobs: 9 | ip-speed-test: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - name: Checkout repository 14 | uses: actions/checkout@v2 15 | 16 | - name: Set up Node.js 17 | uses: actions/setup-node@v2 18 | with: 19 | node-version: '14' 20 | 21 | - name: Set up Python 22 | uses: actions/setup-python@v2 23 | with: 24 | python-version: '3.x' 25 | 26 | - name: Install dependencies 27 | run: sudo apt-get update && sudo apt-get install -y curl && sudo apt-get install -y bash 28 | 29 | - name: Run shell script 30 | run: | 31 | chmod +x FDIP-cesu.sh 32 | ./FDIP-cesu.sh 33 | 34 | - name: Commit and push results 35 | run: | 36 | git config --global user.name 'github-actions[bot]' 37 | git config --global user.email 'github-actions[bot]@users.noreply.github.com' 38 | git add FDIP/all.txt CloudflareST/sg.txt CloudflareST/sgcs.txt CloudflareST/sg.csv 39 | git commit -m "Add SG fdIPs with speed > 5mb/s" 40 | git push 41 | -------------------------------------------------------------------------------- /.github/workflows/yx_ips.yml: -------------------------------------------------------------------------------- 1 | name: YX IPs and DNS 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: '0 8,20 * * *' # 每12小时运行一次 7 | #workflow_dispatch: # 手动触发 8 | 9 | jobs: 10 | run-and-commit: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Checkout repository 15 | uses: actions/checkout@v2 16 | 17 | - name: Set up Python 18 | uses: actions/setup-python@v2 19 | with: 20 | python-version: '3.x' 21 | 22 | - name: Install dependencies 23 | run: | 24 | python -m pip install --upgrade pip 25 | pip install requests beautifulsoup4 26 | 27 | - name: Run the yx_ips script 28 | env: 29 | CF_API_KEY: ${{ secrets.CF_API_KEY }} 30 | CF_ZONE_ID: ${{ secrets.CF_ZONE_ID }} 31 | CF_DOMAIN_NAME: ${{ secrets.CF_DOMAIN_NAME }} 32 | CF_API_EMAIL: ${{ secrets.CF_API_EMAIL }} 33 | run: python yx_ips.py 34 | 35 | - name: Commit and push changes 36 | run: | 37 | git config --global user.email "actions@github.com" 38 | git config --global user.name "GitHub Actions" 39 | git add yx_ips.txt 40 | git commit -m "Update yx_ips.txt" || echo "No changes to commit" 41 | git push origin main 42 | -------------------------------------------------------------------------------- /CloudflareST/CloudflareST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackbrownsu/CFCDN-Auto/181ae037ae4994aeddd59581217fca8cfbb0eb1e/CloudflareST/CloudflareST -------------------------------------------------------------------------------- /CloudflareST/CloudflareST.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackbrownsu/CFCDN-Auto/181ae037ae4994aeddd59581217fca8cfbb0eb1e/CloudflareST/CloudflareST.tar.gz -------------------------------------------------------------------------------- /CloudflareST/cfst_hosts.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin 3 | export PATH 4 | # -------------------------------------------------------------- 5 | # 项目: CloudflareSpeedTest 自动更新 Hosts 6 | # 版本: 1.0.4 7 | # 作者: XIU2 8 | # 项目: https://github.com/XIU2/CloudflareSpeedTest 9 | # -------------------------------------------------------------- 10 | 11 | _CHECK() { 12 | while true 13 | do 14 | if [[ ! -e "nowip_hosts.txt" ]]; then 15 | echo -e "该脚本的作用为 CloudflareST 测速后获取最快 IP 并替换 Hosts 中的 Cloudflare CDN IP。\n使用前请先阅读:https://github.com/XIU2/CloudflareSpeedTest/issues/42#issuecomment-768273848" 16 | echo -e "第一次使用,请先将 Hosts 中所有 Cloudflare CDN IP 统一改为一个 IP。" 17 | read -e -p "输入该 Cloudflare CDN IP 并回车(后续不再需要该步骤):" NOWIP 18 | if [[ ! -z "${NOWIP}" ]]; then 19 | echo ${NOWIP} > nowip_hosts.txt 20 | break 21 | else 22 | echo "该 IP 不能是空!" 23 | fi 24 | else 25 | break 26 | fi 27 | done 28 | } 29 | 30 | _UPDATE() { 31 | echo -e "开始测速..." 32 | NOWIP=$(head -1 nowip_hosts.txt) 33 | 34 | # 这里可以自己添加、修改 CloudflareST 的运行参数 35 | ./CloudflareST -o "result_hosts.txt" 36 | 37 | # 如果需要 "找不到满足条件的 IP 就一直循环测速下去",那么可以将下面的两个 exit 0 改为 _UPDATE 即可 38 | [[ ! -e "result_hosts.txt" ]] && echo "CloudflareST 测速结果 IP 数量为 0,跳过下面步骤..." && exit 0 39 | 40 | # 下面这行代码是 "找不到满足条件的 IP 就一直循环测速下去" 才需要的代码 41 | # 考虑到当指定了下载速度下限,但一个满足全部条件的 IP 都没找到时,CloudflareST 就会输出所有 IP 结果 42 | # 因此当你指定 -sl 参数时,需要移除下面这段代码开头的 # 井号注释符,来做文件行数判断(比如下载测速数量:10 个,那么下面的值就设在为 11) 43 | #[[ $(cat result_hosts.txt|wc -l) > 11 ]] && echo "CloudflareST 测速结果没有找到一个完全满足条件的 IP,重新测速..." && _UPDATE 44 | 45 | 46 | BESTIP=$(sed -n "2,1p" result_hosts.txt | awk -F, '{print $1}') 47 | if [[ -z "${BESTIP}" ]]; then 48 | echo "CloudflareST 测速结果 IP 数量为 0,跳过下面步骤..." 49 | exit 0 50 | fi 51 | echo ${BESTIP} > nowip_hosts.txt 52 | echo -e "\n旧 IP 为 ${NOWIP}\n新 IP 为 ${BESTIP}\n" 53 | 54 | echo "开始备份 Hosts 文件(hosts_backup)..." 55 | \cp -f /etc/hosts /etc/hosts_backup 56 | 57 | echo -e "开始替换..." 58 | sed -i 's/'${NOWIP}'/'${BESTIP}'/g' /etc/hosts 59 | echo -e "完成..." 60 | } 61 | 62 | _CHECK 63 | _UPDATE -------------------------------------------------------------------------------- /CloudflareST/ip.txt: -------------------------------------------------------------------------------- 1 | 173.245.48.0/20 2 | 103.21.244.0/22 3 | 103.22.200.0/22 4 | 103.31.4.0/22 5 | 141.101.64.0/18 6 | 108.162.192.0/18 7 | 190.93.240.0/20 8 | 188.114.96.0/20 9 | 197.234.240.0/22 10 | 198.41.128.0/17 11 | 162.158.0.0/15 12 | 104.16.0.0/12 13 | 172.64.0.0/17 14 | 172.64.128.0/18 15 | 172.64.192.0/19 16 | 172.64.224.0/22 17 | 172.64.229.0/24 18 | 172.64.230.0/23 19 | 172.64.232.0/21 20 | 172.64.240.0/21 21 | 172.64.248.0/21 22 | 172.65.0.0/16 23 | 172.66.0.0/16 24 | 172.67.0.0/16 25 | 131.0.72.0/22 -------------------------------------------------------------------------------- /CloudflareST/ipv6.txt: -------------------------------------------------------------------------------- 1 | 2400:cb00:2049::/48 2 | 2400:cb00:f00e::/48 3 | 2606:4700::/32 4 | 2606:4700:10::/48 5 | 2606:4700:130::/48 6 | 2606:4700:3000::/48 7 | 2606:4700:3001::/48 8 | 2606:4700:3002::/48 9 | 2606:4700:3003::/48 10 | 2606:4700:3004::/48 11 | 2606:4700:3005::/48 12 | 2606:4700:3006::/48 13 | 2606:4700:3007::/48 14 | 2606:4700:3008::/48 15 | 2606:4700:3009::/48 16 | 2606:4700:3010::/48 17 | 2606:4700:3011::/48 18 | 2606:4700:3012::/48 19 | 2606:4700:3013::/48 20 | 2606:4700:3014::/48 21 | 2606:4700:3015::/48 22 | 2606:4700:3016::/48 23 | 2606:4700:3017::/48 24 | 2606:4700:3018::/48 25 | 2606:4700:3019::/48 26 | 2606:4700:3020::/48 27 | 2606:4700:3021::/48 28 | 2606:4700:3022::/48 29 | 2606:4700:3023::/48 30 | 2606:4700:3024::/48 31 | 2606:4700:3025::/48 32 | 2606:4700:3026::/48 33 | 2606:4700:3027::/48 34 | 2606:4700:3028::/48 35 | 2606:4700:3029::/48 36 | 2606:4700:3030::/48 37 | 2606:4700:3031::/48 38 | 2606:4700:3032::/48 39 | 2606:4700:3033::/48 40 | 2606:4700:3034::/48 41 | 2606:4700:3035::/48 42 | 2606:4700:3036::/48 43 | 2606:4700:3037::/48 44 | 2606:4700:3038::/48 45 | 2606:4700:3039::/48 46 | 2606:4700:a0::/48 47 | 2606:4700:a1::/48 48 | 2606:4700:a8::/48 49 | 2606:4700:a9::/48 50 | 2606:4700:a::/48 51 | 2606:4700:b::/48 52 | 2606:4700:c::/48 53 | 2606:4700:d0::/48 54 | 2606:4700:d1::/48 55 | 2606:4700:d::/48 56 | 2606:4700:e0::/48 57 | 2606:4700:e1::/48 58 | 2606:4700:e2::/48 59 | 2606:4700:e3::/48 60 | 2606:4700:e4::/48 61 | 2606:4700:e5::/48 62 | 2606:4700:e6::/48 63 | 2606:4700:e7::/48 64 | 2606:4700:e::/48 65 | 2606:4700:f1::/48 66 | 2606:4700:f2::/48 67 | 2606:4700:f3::/48 68 | 2606:4700:f4::/48 69 | 2606:4700:f5::/48 70 | 2606:4700:f::/48 71 | 2803:f800:50::/48 72 | 2803:f800:51::/48 73 | 2a06:98c1:3100::/48 74 | 2a06:98c1:3101::/48 75 | 2a06:98c1:3102::/48 76 | 2a06:98c1:3103::/48 77 | 2a06:98c1:3104::/48 78 | 2a06:98c1:3105::/48 79 | 2a06:98c1:3106::/48 80 | 2a06:98c1:3107::/48 81 | 2a06:98c1:3108::/48 82 | 2a06:98c1:3109::/48 83 | 2a06:98c1:310a::/48 84 | 2a06:98c1:310b::/48 85 | 2a06:98c1:310c::/48 86 | 2a06:98c1:310d::/48 87 | 2a06:98c1:310e::/48 88 | 2a06:98c1:310f::/48 89 | 2a06:98c1:3120::/48 90 | 2a06:98c1:3121::/48 91 | 2a06:98c1:3122::/48 92 | 2a06:98c1:3123::/48 93 | 2a06:98c1:3200::/48 94 | 2a06:98c1:50::/48 95 | 2a06:98c1:51::/48 96 | 2a06:98c1:54::/48 97 | 2a06:98c1:58::/48 -------------------------------------------------------------------------------- /CloudflareST/sg.csv: -------------------------------------------------------------------------------- 1 | IP 地址,已发送,已接收,丢包率,平均延迟,下载速度 (MB/s) 2 | 168.138.185.234,4,4,0.00,173.96,15.81 3 | 129.150.37.203,4,4,0.00,173.88,15.70 4 | 138.2.75.91,4,4,0.00,173.87,0.00 5 | 129.150.51.134,4,4,0.00,173.94,0.00 6 | 129.150.51.134,4,4,0.00,173.96,0.00 7 | -------------------------------------------------------------------------------- /CloudflareST/sg.txt: -------------------------------------------------------------------------------- 1 | 8.219.51.211 2 | 8.219.78.1 3 | 8.219.98.13 4 | 8.219.66.156 5 | 8.219.84.214 6 | 8.219.109.183 7 | 8.219.70.151 8 | 8.219.50.180 9 | 8.219.5.10 10 | 8.219.222.98 11 | 8.219.110.248 12 | 8.219.193.202 13 | 8.219.190.62 14 | 8.219.164.237 15 | 8.219.161.129 16 | 8.219.111.147 17 | 8.219.170.232 18 | 8.219.126.240 19 | 8.219.144.168 20 | 8.222.175.6 21 | 8.222.164.209 22 | 8.222.181.139 23 | 8.222.204.128 24 | 8.222.226.92 25 | 47.241.209.61 26 | 47.245.86.230 27 | 138.2.104.102 28 | 138.2.99.97 29 | 8.219.51.211 30 | 8.219.78.1 31 | 8.219.98.13 32 | 8.219.66.156 33 | 8.219.84.214 34 | 8.219.109.183 35 | 8.219.70.151 36 | 8.219.50.180 37 | 8.219.5.10 38 | 8.219.222.98 39 | 8.219.110.248 40 | 8.219.193.202 41 | 8.219.190.62 42 | 8.219.164.237 43 | 8.219.161.129 44 | 8.219.111.147 45 | 8.219.170.232 46 | 8.219.126.240 47 | 8.219.144.168 48 | 8.222.175.6 49 | 8.222.164.209 50 | 8.222.181.139 51 | 8.222.204.128 52 | 8.222.226.92 53 | 47.241.209.61 54 | 47.245.86.230 55 | 138.2.104.102 56 | 138.2.99.97 57 | 8.219.111.175 58 | 8.219.199.220 59 | 8.219.126.240 60 | 47.241.209.61 61 | 8.222.181.139 62 | 8.219.237.250 63 | 8.219.84.214 64 | 8.219.42.72 65 | 8.219.54.203 66 | 8.219.103.65 67 | 47.245.86.230 68 | 138.2.75.91 69 | 138.2.104.102 70 | 152.69.219.32 71 | 168.138.162.187 72 | 168.138.177.109 73 | 8.219.111.175 74 | 8.219.199.220 75 | 8.219.126.240 76 | 47.241.209.61 77 | 8.222.181.139 78 | 8.219.237.250 79 | 8.219.84.214 80 | 8.219.42.72 81 | 8.219.54.203 82 | 8.219.103.65 83 | 47.245.86.230 84 | 8.219.161.129 85 | 8.219.198.34 86 | 8.219.111.175 87 | 8.219.201.8 88 | 8.219.200.145 89 | 8.219.4.122 90 | 8.219.1.169 91 | 8.222.226.92 92 | 8.222.193.65 93 | 8.222.137.192 94 | 8.222.175.6 95 | 8.219.210.64 96 | 8.219.237.250 97 | 8.219.248.47 98 | 8.219.66.156 99 | 8.219.68.162 100 | 8.219.70.151 101 | 8.219.161.129 102 | 8.219.198.34 103 | 8.219.111.175 104 | 8.219.201.8 105 | 8.219.200.145 106 | 8.219.4.122 107 | 8.219.1.169 108 | 8.222.226.92 109 | 8.222.193.65 110 | 8.222.137.192 111 | 8.222.175.6 112 | 8.219.210.64 113 | 8.219.237.250 114 | 8.219.248.47 115 | 8.219.66.156 116 | 8.219.68.162 117 | 8.219.70.151 118 | 138.2.99.97 119 | 152.69.219.32 120 | 8.219.201.8 121 | 8.219.124.227 122 | 8.219.161.129 123 | 8.219.174.213 124 | 8.219.199.220 125 | 8.219.190.62 126 | 8.219.164.237 127 | 47.241.209.61 128 | 8.222.222.64 129 | 8.222.226.92 130 | 8.219.98.13 131 | 8.219.103.65 132 | 8.219.60.54 133 | 8.219.68.162 134 | 8.219.5.10 135 | 8.219.1.169 136 | 8.219.0.162 137 | 8.219.4.122 138 | 8.222.137.192 139 | 47.245.86.230 140 | 138.2.99.97 141 | 152.69.219.32 142 | 8.219.201.8 143 | 8.219.124.227 144 | 8.219.161.129 145 | 8.219.174.213 146 | 8.219.199.220 147 | 8.219.190.62 148 | 8.219.164.237 149 | 47.241.209.61 150 | 8.222.222.64 151 | 8.222.226.92 152 | 8.219.98.13 153 | 8.219.103.65 154 | 8.219.60.54 155 | 8.219.68.162 156 | 8.219.5.10 157 | 8.219.1.169 158 | 8.219.0.162 159 | 8.219.4.122 160 | 8.222.137.192 161 | 47.245.86.230 162 | 8.219.4.122 163 | 8.219.1.169 164 | 8.219.5.10 165 | 8.222.175.6 166 | 8.222.164.209 167 | 8.222.181.139 168 | 47.241.209.61 169 | 8.219.51.211 170 | 8.219.70.151 171 | 8.219.42.72 172 | 8.219.50.180 173 | 8.219.78.1 174 | 8.219.66.156 175 | 8.219.60.54 176 | 8.219.67.133 177 | 8.222.193.65 178 | 8.222.204.128 179 | 8.222.222.64 180 | 8.219.222.98 181 | 8.219.248.47 182 | 8.219.237.250 183 | 8.219.240.160 184 | 8.219.210.64 185 | 8.219.200.145 186 | 8.219.161.129 187 | 8.219.114.201 188 | 8.219.111.175 189 | 8.219.199.220 190 | 8.219.4.122 191 | 8.219.1.169 192 | 8.219.5.10 193 | 8.222.175.6 194 | 8.222.164.209 195 | 8.222.181.139 196 | 47.241.209.61 197 | 8.219.51.211 198 | 8.219.70.151 199 | 8.219.42.72 200 | 8.219.50.180 201 | 8.219.78.1 202 | 8.219.66.156 203 | 8.219.60.54 204 | 8.219.67.133 205 | 8.222.193.65 206 | 8.222.204.128 207 | 8.222.222.64 208 | 8.219.222.98 209 | 8.219.248.47 210 | 8.219.237.250 211 | 8.219.240.160 212 | 8.219.210.64 213 | 8.219.200.145 214 | 8.219.161.129 215 | 8.219.114.201 216 | 8.219.111.175 217 | 8.219.199.220 218 | 152.69.219.32 219 | 8.219.0.162 220 | 8.219.106.156 221 | 8.219.84.214 222 | 8.219.78.1 223 | 8.219.70.151 224 | 8.219.103.65 225 | 8.219.60.54 226 | 8.219.109.183 227 | 8.219.67.133 228 | 8.219.54.203 229 | 8.222.193.65 230 | 8.222.222.64 231 | 8.222.226.92 232 | 8.222.204.128 233 | 8.219.210.64 234 | 8.219.248.47 235 | 8.219.222.98 236 | 8.219.237.250 237 | 47.245.86.230 238 | 47.241.209.61 239 | 8.222.181.139 240 | 8.222.137.192 241 | 8.222.181.117 242 | 8.222.175.6 243 | 8.219.199.220 244 | 8.219.174.142 245 | 8.219.190.62 246 | 8.219.124.227 247 | 8.219.200.145 248 | 8.219.193.202 249 | 8.219.201.8 250 | 8.219.111.175 251 | 8.219.201.245 252 | 8.219.114.201 253 | 8.219.198.34 254 | 152.69.219.32 255 | 8.219.0.162 256 | 8.219.106.156 257 | 8.219.84.214 258 | 8.219.78.1 259 | 8.219.70.151 260 | 8.219.103.65 261 | 8.219.60.54 262 | 8.219.109.183 263 | 8.219.67.133 264 | 8.219.54.203 265 | 8.222.193.65 266 | 8.222.222.64 267 | 8.222.226.92 268 | 8.222.204.128 269 | 8.219.210.64 270 | 8.219.248.47 271 | 8.219.222.98 272 | 8.219.237.250 273 | 47.245.86.230 274 | 47.241.209.61 275 | 8.222.181.139 276 | 8.222.137.192 277 | 8.222.181.117 278 | 8.222.175.6 279 | 8.219.199.220 280 | 8.219.174.142 281 | 8.219.190.62 282 | 8.219.124.227 283 | 8.219.200.145 284 | 8.219.193.202 285 | 8.219.201.8 286 | 8.219.111.175 287 | 8.219.201.245 288 | 8.219.114.201 289 | 8.219.198.34 290 | 138.2.104.102 291 | 8.219.4.122 292 | 8.219.0.162 293 | 8.219.5.10 294 | 8.219.60.54 295 | 8.219.54.203 296 | 8.219.109.183 297 | 8.219.106.156 298 | 8.219.51.211 299 | 8.219.50.180 300 | 8.219.70.151 301 | 8.219.68.162 302 | 8.219.103.65 303 | 8.219.248.47 304 | 8.219.210.64 305 | 8.219.240.160 306 | 8.219.222.98 307 | 8.219.237.250 308 | 8.222.204.128 309 | 8.222.193.65 310 | 8.222.181.117 311 | 8.222.164.209 312 | 8.222.175.6 313 | 8.219.193.202 314 | 8.219.198.34 315 | 8.219.170.232 316 | 8.219.114.201 317 | 8.219.164.237 318 | 8.219.201.245 319 | 8.219.201.8 320 | 8.219.111.175 321 | 8.219.144.168 322 | 8.219.174.213 323 | 8.219.174.142 324 | 8.219.124.227 325 | 8.219.200.145 326 | 138.2.104.102 327 | 8.219.4.122 328 | 8.219.0.162 329 | 8.219.5.10 330 | 8.219.60.54 331 | 8.219.54.203 332 | 8.219.109.183 333 | 8.219.106.156 334 | 8.219.51.211 335 | 8.219.50.180 336 | 8.219.70.151 337 | 8.219.68.162 338 | 8.219.103.65 339 | 8.219.248.47 340 | 8.219.210.64 341 | 8.219.240.160 342 | 8.219.222.98 343 | 8.219.237.250 344 | 8.222.204.128 345 | 8.222.193.65 346 | 8.222.181.117 347 | 8.222.164.209 348 | 8.222.175.6 349 | 8.219.193.202 350 | 8.219.198.34 351 | 8.219.170.232 352 | 8.219.114.201 353 | 8.219.164.237 354 | 8.219.201.245 355 | 8.219.201.8 356 | 8.219.111.175 357 | 8.219.144.168 358 | 8.219.174.213 359 | 8.219.174.142 360 | 8.219.124.227 361 | 8.219.200.145 362 | 138.2.104.102 363 | 168.138.184.172 364 | 8.219.237.250 365 | 8.219.248.47 366 | 8.219.222.98 367 | 8.222.137.192 368 | 8.222.181.117 369 | 8.222.181.139 370 | 47.241.209.61 371 | 8.219.114.201 372 | 8.219.161.129 373 | 8.219.170.232 374 | 8.219.174.142 375 | 8.219.111.175 376 | 8.219.124.227 377 | 8.219.193.202 378 | 8.219.126.240 379 | 8.219.198.34 380 | 8.219.144.168 381 | 8.219.198.139 382 | 8.219.84.214 383 | 8.219.51.211 384 | 8.219.106.156 385 | 8.219.67.133 386 | 8.219.60.54 387 | 8.222.208.38 388 | 8.222.204.128 389 | 8.219.5.10 390 | 138.2.104.102 391 | 168.138.184.172 392 | 8.219.237.250 393 | 8.219.248.47 394 | 8.219.222.98 395 | 8.222.137.192 396 | 8.222.181.117 397 | 8.222.181.139 398 | 47.241.209.61 399 | 8.219.114.201 400 | 8.219.161.129 401 | 8.219.170.232 402 | 8.219.174.142 403 | 8.219.111.175 404 | 8.219.124.227 405 | 8.219.193.202 406 | 8.219.126.240 407 | 8.219.198.34 408 | 8.219.144.168 409 | 8.219.198.139 410 | 8.219.84.214 411 | 8.219.51.211 412 | 8.219.106.156 413 | 8.219.67.133 414 | 8.219.60.54 415 | 8.222.208.38 416 | 8.222.204.128 417 | 8.219.5.10 418 | 138.2.104.102 419 | 168.138.182.37 420 | 168.138.177.109 421 | 8.219.106.156 422 | 8.219.51.211 423 | 8.219.70.151 424 | 8.219.109.183 425 | 8.219.84.214 426 | 8.219.60.54 427 | 8.219.98.13 428 | 8.219.78.1 429 | 8.219.42.72 430 | 47.241.209.61 431 | 8.219.237.250 432 | 8.219.210.64 433 | 8.219.248.47 434 | 8.219.240.160 435 | 8.219.161.129 436 | 8.219.198.139 437 | 8.219.110.248 438 | 8.219.111.175 439 | 8.219.200.145 440 | 8.219.144.168 441 | 8.219.201.245 442 | 8.219.114.201 443 | 8.219.126.240 444 | 8.222.175.6 445 | 8.222.181.139 446 | 8.222.226.92 447 | 8.222.208.38 448 | 138.2.104.102 449 | 168.138.182.37 450 | 8.219.106.156 451 | 8.219.51.211 452 | 8.219.70.151 453 | 8.219.109.183 454 | 8.219.84.214 455 | 8.219.60.54 456 | 8.219.98.13 457 | 8.219.78.1 458 | 8.219.42.72 459 | 47.241.209.61 460 | 8.219.237.250 461 | 8.219.210.64 462 | 8.219.248.47 463 | 8.219.240.160 464 | 8.219.161.129 465 | 8.219.198.139 466 | 8.219.110.248 467 | 8.219.111.175 468 | 8.219.200.145 469 | 8.219.144.168 470 | 8.219.201.245 471 | 8.219.114.201 472 | 8.219.126.240 473 | 8.222.175.6 474 | 8.222.181.139 475 | 8.222.226.92 476 | 8.222.208.38 477 | 8.219.51.211 478 | 8.219.237.250 479 | 8.219.51.211 480 | 8.219.237.250 481 | 8.222.204.128 482 | 47.245.86.230 483 | 8.219.4.122 484 | 8.219.1.169 485 | 8.219.84.214 486 | 8.219.50.180 487 | 8.219.54.203 488 | 8.219.109.183 489 | 8.222.181.139 490 | 8.222.175.6 491 | 8.222.181.117 492 | 8.219.248.47 493 | 8.219.210.64 494 | 8.219.222.98 495 | 47.241.209.61 496 | 8.219.170.232 497 | 8.219.174.213 498 | 8.219.198.34 499 | 8.219.114.201 500 | 8.222.204.128 501 | 47.245.86.230 502 | 8.219.4.122 503 | 8.219.1.169 504 | 8.219.84.214 505 | 8.219.50.180 506 | 8.219.54.203 507 | 8.219.109.183 508 | 8.222.181.139 509 | 8.222.175.6 510 | 8.222.181.117 511 | 8.219.248.47 512 | 8.219.210.64 513 | 8.219.222.98 514 | 47.241.209.61 515 | 8.219.170.232 516 | 8.219.174.213 517 | 8.219.198.34 518 | 8.219.114.201 519 | 8.219.54.203 520 | 8.219.42.72 521 | 8.219.50.180 522 | 8.219.51.211 523 | 8.219.0.162 524 | 8.219.4.122 525 | 8.219.198.139 526 | 8.219.170.232 527 | 8.219.201.8 528 | 8.219.110.248 529 | 8.219.198.34 530 | 8.219.111.147 531 | 8.219.174.213 532 | 8.219.164.237 533 | 8.222.181.117 534 | 8.222.181.139 535 | 8.222.193.65 536 | 8.222.204.128 537 | 8.222.226.92 538 | 8.219.248.47 539 | 8.219.222.98 540 | 8.219.237.250 541 | 8.219.54.203 542 | 8.219.42.72 543 | 8.219.50.180 544 | 8.219.51.211 545 | 8.219.0.162 546 | 8.219.4.122 547 | 8.219.198.139 548 | 8.219.170.232 549 | 8.219.201.8 550 | 8.219.110.248 551 | 8.219.198.34 552 | 8.219.111.147 553 | 8.219.174.213 554 | 8.219.164.237 555 | 8.222.181.117 556 | 8.222.181.139 557 | 8.222.193.65 558 | 8.222.204.128 559 | 8.222.226.92 560 | 8.219.248.47 561 | 8.219.222.98 562 | 8.219.237.250 563 | 8.219.237.250 564 | 8.219.248.47 565 | 8.219.240.160 566 | 8.219.210.64 567 | 8.222.164.209 568 | 8.222.181.139 569 | 8.219.126.240 570 | 8.219.161.129 571 | 8.219.110.248 572 | 8.219.114.201 573 | 8.219.199.220 574 | 47.241.209.61 575 | 8.219.4.122 576 | 8.222.193.65 577 | 8.222.222.64 578 | 8.222.208.38 579 | 8.219.54.203 580 | 8.219.109.183 581 | 8.219.106.156 582 | 8.219.42.72 583 | 8.219.51.211 584 | 8.219.67.133 585 | 8.219.84.214 586 | 8.219.237.250 587 | 8.219.248.47 588 | 8.219.240.160 589 | 8.219.210.64 590 | 8.222.164.209 591 | 8.222.181.139 592 | 8.219.126.240 593 | 8.219.161.129 594 | 8.219.110.248 595 | 8.219.114.201 596 | 8.219.199.220 597 | 47.241.209.61 598 | 8.219.4.122 599 | 8.222.193.65 600 | 8.222.222.64 601 | 8.222.208.38 602 | 8.219.54.203 603 | 8.219.109.183 604 | 8.219.106.156 605 | 8.219.42.72 606 | 8.219.51.211 607 | 8.219.67.133 608 | 8.219.84.214 609 | 8.219.240.160 610 | 8.219.237.250 611 | 8.222.222.64 612 | 8.222.193.65 613 | 8.222.204.128 614 | 8.222.226.92 615 | 8.219.54.203 616 | 8.219.70.151 617 | 8.219.109.183 618 | 8.219.98.13 619 | 8.219.106.156 620 | 8.219.51.211 621 | 8.219.103.65 622 | 8.222.137.192 623 | 8.222.181.117 624 | 8.219.114.201 625 | 8.219.193.202 626 | 8.219.198.139 627 | 8.219.174.213 628 | 8.219.201.245 629 | 8.219.111.147 630 | 8.219.164.237 631 | 8.219.190.62 632 | 47.241.209.61 633 | 8.219.240.160 634 | 8.219.237.250 635 | 8.222.222.64 636 | 8.222.193.65 637 | 8.222.204.128 638 | 8.222.226.92 639 | 8.219.54.203 640 | 8.219.70.151 641 | 8.219.109.183 642 | 8.219.98.13 643 | 8.219.106.156 644 | 8.219.51.211 645 | 8.219.103.65 646 | 8.222.137.192 647 | 8.222.181.117 648 | 8.219.114.201 649 | 8.219.193.202 650 | 8.219.198.139 651 | 8.219.174.213 652 | 8.219.201.245 653 | 8.219.111.147 654 | 8.219.164.237 655 | 8.219.190.62 656 | 47.241.209.61 657 | 47.245.86.230 658 | 8.219.164.237 659 | 8.219.199.220 660 | 8.219.124.227 661 | 8.219.161.129 662 | 8.219.170.232 663 | 8.219.144.168 664 | 8.222.164.209 665 | 8.222.181.117 666 | 8.222.204.128 667 | 8.222.226.92 668 | 8.219.70.151 669 | 8.219.60.54 670 | 8.219.67.133 671 | 8.219.109.183 672 | 8.219.106.156 673 | 8.219.51.211 674 | 8.219.98.13 675 | 8.219.103.65 676 | 8.219.42.72 677 | 8.219.78.1 678 | 8.219.237.250 679 | 8.219.248.47 680 | 8.219.210.64 681 | 8.219.0.162 682 | 8.219.4.122 683 | 8.219.5.10 684 | 47.245.86.230 685 | 8.219.164.237 686 | 8.219.199.220 687 | 8.219.124.227 688 | 8.219.161.129 689 | 8.219.170.232 690 | 8.219.144.168 691 | 8.222.164.209 692 | 8.222.181.117 693 | 8.222.204.128 694 | 8.222.226.92 695 | 8.219.70.151 696 | 8.219.60.54 697 | 8.219.67.133 698 | 8.219.109.183 699 | 8.219.106.156 700 | 8.219.51.211 701 | 8.219.98.13 702 | 8.219.103.65 703 | 8.219.42.72 704 | 8.219.78.1 705 | 8.219.237.250 706 | 8.219.248.47 707 | 8.219.210.64 708 | 8.219.0.162 709 | 8.219.4.122 710 | 8.219.5.10 711 | 8.219.237.250 712 | 8.219.210.64 713 | 8.219.103.65 714 | 8.219.70.151 715 | 8.219.67.133 716 | 8.219.54.203 717 | 8.219.109.183 718 | 8.219.60.54 719 | 8.219.5.10 720 | 8.219.0.162 721 | 47.241.209.61 722 | 8.219.193.202 723 | 8.219.190.62 724 | 8.219.164.237 725 | 8.219.126.240 726 | 8.219.144.168 727 | 8.219.114.201 728 | 8.219.198.139 729 | 8.219.170.232 730 | 8.219.201.8 731 | 8.219.110.248 732 | 8.219.111.175 733 | 8.222.208.38 734 | 8.222.226.92 735 | 8.222.222.64 736 | 8.222.193.65 737 | 8.219.237.250 738 | 8.219.210.64 739 | 8.219.103.65 740 | 8.219.70.151 741 | 8.219.67.133 742 | 8.219.54.203 743 | 8.219.109.183 744 | 8.219.60.54 745 | 8.219.5.10 746 | 8.219.0.162 747 | 47.241.209.61 748 | 8.219.193.202 749 | 8.219.190.62 750 | 8.219.164.237 751 | 8.219.126.240 752 | 8.219.144.168 753 | 8.219.114.201 754 | 8.219.198.139 755 | 8.219.170.232 756 | 8.219.201.8 757 | 8.219.110.248 758 | 8.219.111.175 759 | 8.222.208.38 760 | 8.222.226.92 761 | 8.222.222.64 762 | 8.222.193.65 763 | 168.138.184.172 764 | 8.222.181.117 765 | 8.219.68.162 766 | 8.219.78.1 767 | 8.219.222.98 768 | 47.245.86.230 769 | 8.219.4.122 770 | 8.219.1.169 771 | 8.219.0.162 772 | 47.241.209.61 773 | 8.219.110.248 774 | 8.219.200.145 775 | 8.219.161.129 776 | 168.138.184.172 777 | 8.222.181.117 778 | 8.219.68.162 779 | 8.219.78.1 780 | 8.219.222.98 781 | 47.245.86.230 782 | 8.219.4.122 783 | 8.219.1.169 784 | 8.219.0.162 785 | 47.241.209.61 786 | 8.219.110.248 787 | 8.219.200.145 788 | 8.219.161.129 789 | 8.222.208.38 790 | 8.222.222.64 791 | 8.222.204.128 792 | 8.222.226.92 793 | 47.241.209.61 794 | 8.219.248.47 795 | 8.219.222.98 796 | 8.219.210.64 797 | 8.219.237.250 798 | 8.219.124.227 799 | 8.219.199.220 800 | 8.219.198.139 801 | 8.219.4.122 802 | 47.245.86.230 803 | 8.219.68.162 804 | 8.219.84.214 805 | 8.219.54.203 806 | 8.219.78.1 807 | 8.219.109.183 808 | 8.219.70.151 809 | 8.219.103.65 810 | 8.219.67.133 811 | 8.219.50.180 812 | 8.219.42.72 813 | 8.222.175.6 814 | 8.222.181.139 815 | 8.222.208.38 816 | 8.222.222.64 817 | 8.222.204.128 818 | 8.222.226.92 819 | 47.241.209.61 820 | 8.219.248.47 821 | 8.219.222.98 822 | 8.219.210.64 823 | 8.219.237.250 824 | 8.219.124.227 825 | 8.219.199.220 826 | 8.219.198.139 827 | 8.219.4.122 828 | 47.245.86.230 829 | 8.219.68.162 830 | 8.219.84.214 831 | 8.219.54.203 832 | 8.219.78.1 833 | 8.219.109.183 834 | 8.219.70.151 835 | 8.219.103.65 836 | 8.219.67.133 837 | 8.219.50.180 838 | 8.219.42.72 839 | 8.222.175.6 840 | 8.222.181.139 841 | 47.241.209.61 842 | 8.222.181.117 843 | 8.222.137.192 844 | 8.222.175.6 845 | 8.219.60.54 846 | 8.219.98.13 847 | 8.219.84.214 848 | 8.219.42.72 849 | 8.219.222.98 850 | 8.219.248.47 851 | 8.219.210.64 852 | 8.219.240.160 853 | 8.219.237.250 854 | 8.222.193.65 855 | 8.222.222.64 856 | 8.219.201.8 857 | 8.219.198.34 858 | 8.219.174.213 859 | 47.241.209.61 860 | 8.222.181.117 861 | 8.222.137.192 862 | 8.222.175.6 863 | 8.219.60.54 864 | 8.219.98.13 865 | 8.219.84.214 866 | 8.219.42.72 867 | 8.219.222.98 868 | 8.219.248.47 869 | 8.219.210.64 870 | 8.219.240.160 871 | 8.219.237.250 872 | 8.222.193.65 873 | 8.222.222.64 874 | 8.219.201.8 875 | 8.219.198.34 876 | 8.219.174.213 877 | 8.219.248.47 878 | 8.219.222.98 879 | 8.219.210.64 880 | 8.219.237.250 881 | 8.219.193.202 882 | 8.219.164.237 883 | 8.219.110.248 884 | 8.219.198.34 885 | 8.219.190.62 886 | 8.219.170.232 887 | 47.245.86.230 888 | 8.219.106.156 889 | 8.219.42.72 890 | 8.219.67.133 891 | 8.219.84.214 892 | 8.219.70.151 893 | 47.241.209.61 894 | 8.222.137.192 895 | 8.222.175.6 896 | 8.222.181.139 897 | 8.222.164.209 898 | 8.219.5.10 899 | 8.219.4.122 900 | 8.222.222.64 901 | 8.222.226.92 902 | 8.222.193.65 903 | 152.69.219.32 904 | 152.69.218.55 905 | 8.219.248.47 906 | 8.219.222.98 907 | 8.219.210.64 908 | 8.219.237.250 909 | 8.219.193.202 910 | 8.219.164.237 911 | 8.219.110.248 912 | 8.219.198.34 913 | 8.219.190.62 914 | 8.219.170.232 915 | 47.245.86.230 916 | 8.219.106.156 917 | 8.219.42.72 918 | 8.219.67.133 919 | 8.219.84.214 920 | 8.219.70.151 921 | 47.241.209.61 922 | 8.222.137.192 923 | 8.222.175.6 924 | 8.222.181.139 925 | 8.222.164.209 926 | 8.219.5.10 927 | 8.219.4.122 928 | 8.222.222.64 929 | 8.222.226.92 930 | 8.222.193.65 931 | 168.138.185.234 932 | 168.138.165.174 933 | 152.69.218.55 934 | 138.2.75.91 935 | 138.2.99.97 936 | 8.222.208.38 937 | 47.245.86.230 938 | 8.219.198.34 939 | 8.219.164.237 940 | 8.219.190.62 941 | 8.219.199.220 942 | 8.219.170.232 943 | 8.219.200.145 944 | 8.219.144.168 945 | 47.241.209.61 946 | 8.219.4.122 947 | 8.222.181.139 948 | 8.222.181.117 949 | 8.219.222.98 950 | 8.219.240.160 951 | 8.219.106.156 952 | 8.219.98.13 953 | 8.219.42.72 954 | 8.219.54.203 955 | 8.219.78.1 956 | 8.219.67.133 957 | 8.219.60.54 958 | 8.219.70.151 959 | 152.69.218.55 960 | 138.2.75.91 961 | 138.2.99.97 962 | 8.222.208.38 963 | 47.245.86.230 964 | 8.219.198.34 965 | 8.219.164.237 966 | 8.219.190.62 967 | 8.219.199.220 968 | 8.219.170.232 969 | 8.219.200.145 970 | 8.219.144.168 971 | 47.241.209.61 972 | 8.219.4.122 973 | 8.222.181.139 974 | 8.222.181.117 975 | 8.219.222.98 976 | 8.219.240.160 977 | 8.219.106.156 978 | 8.219.98.13 979 | 8.219.42.72 980 | 8.219.54.203 981 | 8.219.78.1 982 | 8.219.67.133 983 | 8.219.60.54 984 | 8.219.70.151 985 | 168.138.162.187 986 | 138.2.75.91 987 | 138.2.75.36 988 | 8.219.210.64 989 | 8.219.222.98 990 | 8.219.4.122 991 | 8.222.181.117 992 | 8.222.175.6 993 | 8.222.181.139 994 | 8.222.222.64 995 | 8.222.208.38 996 | 8.219.54.203 997 | 8.219.68.162 998 | 8.219.67.133 999 | 8.219.51.211 1000 | 8.219.42.72 1001 | 8.219.109.183 1002 | 8.219.198.139 1003 | 8.219.111.147 1004 | 8.219.174.142 1005 | 8.219.198.34 1006 | 8.219.111.175 1007 | 8.219.126.240 1008 | 8.219.124.227 1009 | 47.245.86.230 1010 | 47.241.209.61 1011 | 168.138.162.187 1012 | 138.2.75.91 1013 | 138.2.75.36 1014 | 8.219.210.64 1015 | 8.219.222.98 1016 | 8.219.4.122 1017 | 8.222.181.117 1018 | 8.222.175.6 1019 | 8.222.181.139 1020 | 8.222.222.64 1021 | 8.222.208.38 1022 | 8.219.54.203 1023 | 8.219.68.162 1024 | 8.219.67.133 1025 | 8.219.51.211 1026 | 8.219.42.72 1027 | 8.219.109.183 1028 | 8.219.198.139 1029 | 8.219.111.147 1030 | 8.219.174.142 1031 | 8.219.198.34 1032 | 8.219.111.175 1033 | 8.219.126.240 1034 | 8.219.124.227 1035 | 47.245.86.230 1036 | 47.241.209.61 1037 | 138.2.99.97 1038 | 138.2.75.36 1039 | 138.2.104.102 1040 | 129.150.51.134 1041 | 129.150.34.198 1042 | 129.150.37.203 1043 | 152.69.219.32 1044 | 168.138.185.234 1045 | 168.138.165.174 1046 | 8.222.181.117 1047 | 8.219.210.64 1048 | 8.219.222.98 1049 | 8.219.248.47 1050 | 8.219.4.122 1051 | 8.219.98.13 1052 | 8.219.106.156 1053 | 8.222.222.64 1054 | 8.222.193.65 1055 | 8.222.208.38 1056 | 8.219.198.139 1057 | 8.219.144.168 1058 | 8.219.170.232 1059 | 8.219.198.34 1060 | 8.219.126.240 1061 | 8.219.193.202 1062 | 8.219.164.237 1063 | 8.219.190.62 1064 | 8.219.174.213 1065 | 138.2.99.97 1066 | 138.2.75.36 1067 | 138.2.104.102 1068 | 129.150.51.134 1069 | 129.150.34.198 1070 | 129.150.37.203 1071 | 152.69.219.32 1072 | 168.138.185.234 1073 | 168.138.165.174 1074 | 8.222.181.117 1075 | 8.219.210.64 1076 | 8.219.222.98 1077 | 8.219.248.47 1078 | 8.219.4.122 1079 | 8.219.98.13 1080 | 8.219.106.156 1081 | 8.222.222.64 1082 | 8.222.193.65 1083 | 8.222.208.38 1084 | 8.219.198.139 1085 | 8.219.144.168 1086 | 8.219.170.232 1087 | 8.219.198.34 1088 | 8.219.126.240 1089 | 8.219.193.202 1090 | 8.219.164.237 1091 | 8.219.190.62 1092 | 8.219.174.213 1093 | 138.2.99.97 1094 | 129.150.34.198 1095 | 129.150.50.63 1096 | 8.219.190.62 1097 | 8.219.124.227 1098 | 8.219.170.232 1099 | 8.219.111.175 1100 | 8.219.164.237 1101 | 8.219.144.168 1102 | 8.219.201.245 1103 | 8.219.174.142 1104 | 8.219.198.34 1105 | 8.219.198.139 1106 | 8.219.199.220 1107 | 8.219.78.1 1108 | 8.219.42.72 1109 | 8.219.84.214 1110 | 8.219.106.156 1111 | 8.219.50.180 1112 | 8.219.54.203 1113 | 8.219.109.183 1114 | 8.219.1.169 1115 | 8.222.164.209 1116 | 8.219.240.160 1117 | 47.245.86.230 1118 | 168.138.185.234 1119 | 138.2.99.97 1120 | 129.150.34.198 1121 | 129.150.50.63 1122 | 152.69.219.32 1123 | 8.219.190.62 1124 | 8.219.124.227 1125 | 8.219.170.232 1126 | 8.219.111.175 1127 | 8.219.164.237 1128 | 8.219.144.168 1129 | 8.219.201.245 1130 | 8.219.174.142 1131 | 8.219.198.34 1132 | 8.219.198.139 1133 | 8.219.199.220 1134 | 8.219.78.1 1135 | 8.219.42.72 1136 | 8.219.84.214 1137 | 8.219.106.156 1138 | 8.219.50.180 1139 | 8.219.54.203 1140 | 8.219.109.183 1141 | 8.219.1.169 1142 | 8.222.164.209 1143 | 8.219.240.160 1144 | 47.245.86.230 1145 | 138.2.109.58 1146 | 138.2.99.97 1147 | 138.2.72.153 1148 | 129.150.37.203 1149 | 129.150.50.63 1150 | 168.138.165.174 1151 | 8.219.240.160 1152 | 8.222.164.209 1153 | 8.222.181.117 1154 | 47.245.86.230 1155 | 8.219.84.214 1156 | 8.219.103.65 1157 | 8.219.109.183 1158 | 8.219.78.1 1159 | 8.219.70.151 1160 | 8.219.50.180 1161 | 8.219.42.72 1162 | 8.219.106.156 1163 | 8.219.4.122 1164 | 8.219.0.162 1165 | 8.219.198.139 1166 | 8.219.144.168 1167 | 8.219.124.227 1168 | 138.2.109.58 1169 | 138.2.99.97 1170 | 138.2.72.153 1171 | 129.150.37.203 1172 | 129.150.50.63 1173 | 168.138.165.174 1174 | 168.138.177.109 1175 | 8.219.240.160 1176 | 8.222.164.209 1177 | 8.222.181.117 1178 | 47.245.86.230 1179 | 8.219.84.214 1180 | 8.219.103.65 1181 | 8.219.109.183 1182 | 8.219.78.1 1183 | 8.219.70.151 1184 | 8.219.50.180 1185 | 8.219.42.72 1186 | 8.219.106.156 1187 | 8.219.4.122 1188 | 8.219.0.162 1189 | 8.219.198.139 1190 | 8.219.144.168 1191 | 8.219.124.227 1192 | 168.138.177.109 1193 | 138.2.72.153 1194 | 152.69.219.32 1195 | 8.222.137.192 1196 | 8.219.1.169 1197 | 8.219.5.10 1198 | 8.219.0.162 1199 | 8.219.4.122 1200 | 8.219.111.175 1201 | 8.219.199.220 1202 | 8.219.114.201 1203 | 8.219.170.232 1204 | 8.219.164.237 1205 | 8.219.201.245 1206 | 8.219.111.147 1207 | 8.219.198.139 1208 | 8.219.144.168 1209 | 8.219.210.64 1210 | 8.219.237.250 1211 | 8.219.248.47 1212 | 8.219.42.72 1213 | 8.219.109.183 1214 | 8.219.50.180 1215 | 8.219.60.54 1216 | 8.219.78.1 1217 | 8.219.70.151 1218 | 168.138.177.109 1219 | 138.2.72.153 1220 | 152.69.219.32 1221 | 8.222.137.192 1222 | 8.219.1.169 1223 | 8.219.5.10 1224 | 8.219.0.162 1225 | 8.219.4.122 1226 | 8.219.111.175 1227 | 8.219.199.220 1228 | 8.219.114.201 1229 | 8.219.170.232 1230 | 8.219.164.237 1231 | 8.219.201.245 1232 | 8.219.111.147 1233 | 8.219.198.139 1234 | 8.219.144.168 1235 | 8.219.210.64 1236 | 8.219.237.250 1237 | 8.219.248.47 1238 | 8.219.42.72 1239 | 8.219.109.183 1240 | 8.219.50.180 1241 | 8.219.60.54 1242 | 8.219.78.1 1243 | 8.219.70.151 1244 | 129.150.50.63 1245 | 129.150.37.203 1246 | 138.2.109.58 1247 | 138.2.104.102 1248 | 138.2.75.91 1249 | 168.138.177.109 1250 | 168.138.165.174 1251 | 8.219.50.180 1252 | 8.219.98.13 1253 | 8.219.106.156 1254 | 8.219.60.54 1255 | 8.219.42.72 1256 | 8.219.70.151 1257 | 8.219.174.142 1258 | 8.219.198.139 1259 | 8.219.201.8 1260 | 8.219.114.201 1261 | 8.219.199.220 1262 | 8.219.200.145 1263 | 8.219.161.129 1264 | 8.219.111.147 1265 | 8.219.193.202 1266 | 8.222.208.38 1267 | 8.222.226.92 1268 | 8.222.137.192 1269 | 8.222.164.209 1270 | 8.219.237.250 1271 | 8.219.210.64 1272 | 8.219.4.122 1273 | 8.219.1.169 1274 | 129.150.50.63 1275 | 129.150.37.203 1276 | 138.2.109.58 1277 | 138.2.104.102 1278 | 138.2.75.91 1279 | 168.138.177.109 1280 | 168.138.165.174 1281 | 8.219.50.180 1282 | 8.219.98.13 1283 | 8.219.106.156 1284 | 8.219.60.54 1285 | 8.219.42.72 1286 | 8.219.70.151 1287 | 8.219.174.142 1288 | 8.219.198.139 1289 | 8.219.201.8 1290 | 8.219.114.201 1291 | 8.219.199.220 1292 | 8.219.200.145 1293 | 8.219.161.129 1294 | 8.219.111.147 1295 | 8.219.193.202 1296 | 8.222.208.38 1297 | 8.222.226.92 1298 | 8.222.137.192 1299 | 8.222.164.209 1300 | 8.219.237.250 1301 | 8.219.210.64 1302 | 8.219.4.122 1303 | 8.219.1.169 1304 | 168.138.184.172 1305 | 168.138.177.109 1306 | 8.219.111.175 1307 | 8.219.198.34 1308 | 8.219.144.168 1309 | 8.219.174.142 1310 | 8.219.200.145 1311 | 8.219.199.220 1312 | 8.219.198.139 1313 | 8.219.164.237 1314 | 8.219.4.122 1315 | 8.219.5.10 1316 | 8.219.54.203 1317 | 8.219.67.133 1318 | 8.219.70.151 1319 | 8.219.78.1 1320 | 8.219.103.65 1321 | 8.219.42.72 1322 | 8.222.226.92 1323 | 8.222.204.128 1324 | 8.222.164.209 1325 | 8.219.222.98 1326 | 8.219.248.47 1327 | 168.138.184.172 1328 | 168.138.177.109 1329 | 152.69.219.32 1330 | 129.150.37.203 1331 | 8.219.111.175 1332 | 8.219.198.34 1333 | 8.219.144.168 1334 | 8.219.174.142 1335 | 8.219.200.145 1336 | 8.219.199.220 1337 | 8.219.198.139 1338 | 8.219.164.237 1339 | 8.219.4.122 1340 | 8.219.5.10 1341 | 8.219.54.203 1342 | 8.219.67.133 1343 | 8.219.70.151 1344 | 8.219.78.1 1345 | 8.219.103.65 1346 | 8.219.42.72 1347 | 8.222.226.92 1348 | 8.222.204.128 1349 | 8.222.164.209 1350 | 8.219.222.98 1351 | 8.219.248.47 1352 | 138.2.75.91 1353 | 138.2.104.102 1354 | 129.150.50.63 1355 | 168.138.165.174 1356 | 8.222.208.38 1357 | 8.222.204.128 1358 | 8.222.137.192 1359 | 8.219.54.203 1360 | 8.219.84.214 1361 | 8.219.106.156 1362 | 8.219.70.151 1363 | 8.219.200.145 1364 | 8.219.124.227 1365 | 8.219.161.129 1366 | 8.219.193.202 1367 | 8.219.164.237 1368 | 8.219.190.62 1369 | 47.245.86.230 1370 | 8.219.5.10 1371 | 138.2.75.91 1372 | 138.2.104.102 1373 | 129.150.50.63 1374 | 8.222.208.38 1375 | 8.222.204.128 1376 | 8.222.137.192 1377 | 8.219.54.203 1378 | 8.219.84.214 1379 | 8.219.106.156 1380 | 8.219.70.151 1381 | 8.219.200.145 1382 | 8.219.124.227 1383 | 8.219.161.129 1384 | 8.219.193.202 1385 | 8.219.164.237 1386 | 8.219.190.62 1387 | 47.245.86.230 1388 | 8.219.5.10 1389 | 168.138.165.174 1390 | 168.138.162.187 1391 | 138.2.72.153 1392 | 152.69.219.32 1393 | 129.150.50.63 1394 | 129.150.37.203 1395 | 8.219.110.248 1396 | 8.219.193.202 1397 | 8.219.201.245 1398 | 8.219.199.220 1399 | 8.219.126.240 1400 | 8.219.170.232 1401 | 8.219.198.139 1402 | 8.219.174.213 1403 | 8.222.137.192 1404 | 8.222.181.117 1405 | 8.219.4.122 1406 | 8.219.5.10 1407 | 8.219.0.162 1408 | 8.219.248.47 1409 | 8.219.240.160 1410 | 8.219.237.250 1411 | 8.219.210.64 1412 | 8.219.222.98 1413 | 8.222.193.65 1414 | 8.222.226.92 1415 | 8.222.222.64 1416 | 8.219.109.183 1417 | 8.219.78.1 1418 | 8.219.84.214 1419 | 8.219.51.211 1420 | 8.219.68.162 1421 | 47.245.86.230 1422 | 168.138.165.174 1423 | 168.138.162.187 1424 | 138.2.72.153 1425 | 152.69.219.32 1426 | 129.150.50.63 1427 | 129.150.37.203 1428 | 8.219.110.248 1429 | 8.219.193.202 1430 | 8.219.201.245 1431 | 8.219.199.220 1432 | 8.219.126.240 1433 | 8.219.170.232 1434 | 8.219.198.139 1435 | 8.219.174.213 1436 | 8.222.137.192 1437 | 8.222.181.117 1438 | 8.219.4.122 1439 | 8.219.5.10 1440 | 8.219.0.162 1441 | 8.219.248.47 1442 | 8.219.240.160 1443 | 8.219.237.250 1444 | 8.219.210.64 1445 | 8.219.222.98 1446 | 8.222.193.65 1447 | 8.222.226.92 1448 | 8.222.222.64 1449 | 8.219.109.183 1450 | 8.219.78.1 1451 | 8.219.84.214 1452 | 8.219.51.211 1453 | 8.219.68.162 1454 | 47.245.86.230 1455 | 138.2.109.58 1456 | 168.138.185.234 1457 | 168.138.165.174 1458 | 168.138.177.109 1459 | 129.150.37.203 1460 | 129.150.50.63 1461 | 8.222.181.117 1462 | 47.245.86.230 1463 | 8.219.50.180 1464 | 8.219.84.214 1465 | 8.219.109.183 1466 | 8.219.106.156 1467 | 8.219.161.129 1468 | 8.219.144.168 1469 | 8.219.114.201 1470 | 8.219.159.151 1471 | 8.219.164.237 1472 | 8.219.198.34 1473 | 8.219.124.227 1474 | 8.219.110.248 1475 | 8.219.199.220 1476 | 8.219.111.175 1477 | 8.222.193.65 1478 | 8.222.226.92 1479 | 8.222.204.128 1480 | 8.219.222.98 1481 | 8.219.237.250 1482 | 8.219.210.64 1483 | 8.219.0.162 1484 | 8.219.1.169 1485 | 138.2.109.58 1486 | 168.138.185.234 1487 | 168.138.165.174 1488 | 168.138.177.109 1489 | 129.150.37.203 1490 | 129.150.50.63 1491 | 8.222.181.117 1492 | 47.245.86.230 1493 | 8.219.50.180 1494 | 8.219.84.214 1495 | 8.219.109.183 1496 | 8.219.106.156 1497 | 8.219.161.129 1498 | 8.219.144.168 1499 | 8.219.114.201 1500 | 8.219.159.151 1501 | 8.219.164.237 1502 | 8.219.198.34 1503 | 8.219.124.227 1504 | 8.219.110.248 1505 | 8.219.199.220 1506 | 8.219.111.175 1507 | 8.222.193.65 1508 | 8.222.226.92 1509 | 8.222.204.128 1510 | 8.219.222.98 1511 | 8.219.237.250 1512 | 8.219.210.64 1513 | 8.219.0.162 1514 | 8.219.1.169 1515 | 138.2.75.36 1516 | 138.2.72.153 1517 | 168.138.185.234 1518 | 152.69.219.32 1519 | 8.222.137.192 1520 | 8.222.181.117 1521 | 8.219.126.240 1522 | 8.219.114.201 1523 | 8.219.190.62 1524 | 8.219.111.175 1525 | 8.222.204.128 1526 | 8.222.226.92 1527 | 8.222.193.65 1528 | 8.219.98.13 1529 | 8.219.42.72 1530 | 8.219.248.47 1531 | 47.245.86.230 1532 | 129.150.50.63 1533 | 152.69.219.32 1534 | 138.2.109.58 1535 | 138.2.104.102 1536 | 168.138.184.172 1537 | 168.138.162.187 1538 | 8.219.248.47 1539 | 8.219.210.64 1540 | 8.219.237.250 1541 | 8.222.226.92 1542 | 8.222.193.65 1543 | 8.222.164.209 1544 | 8.222.137.192 1545 | 8.222.181.117 1546 | 8.219.164.237 1547 | 8.219.114.201 1548 | 8.219.201.8 1549 | 8.219.159.151 1550 | 8.219.190.62 1551 | 8.219.199.220 1552 | 8.219.111.147 1553 | 8.219.198.139 1554 | 8.219.110.248 1555 | 8.219.67.133 1556 | 8.219.109.183 1557 | 8.219.5.10 1558 | 129.150.50.63 1559 | 152.69.219.32 1560 | 138.2.109.58 1561 | 8.219.248.47 1562 | 8.219.210.64 1563 | 8.219.237.250 1564 | 8.222.226.92 1565 | 8.222.193.65 1566 | 8.222.164.209 1567 | 8.222.137.192 1568 | 8.222.181.117 1569 | 8.219.164.237 1570 | 8.219.114.201 1571 | 8.219.201.8 1572 | 8.219.159.151 1573 | 8.219.190.62 1574 | 8.219.199.220 1575 | 8.219.111.147 1576 | 8.219.198.139 1577 | 8.219.110.248 1578 | 8.219.67.133 1579 | 8.219.109.183 1580 | 8.219.5.10 1581 | 168.138.185.234 1582 | 138.2.99.97 1583 | 8.219.248.47 1584 | 8.219.210.64 1585 | 8.219.222.98 1586 | 8.219.237.250 1587 | 8.219.60.54 1588 | 8.219.70.151 1589 | 8.219.109.183 1590 | 8.219.98.13 1591 | 8.219.42.72 1592 | 8.219.51.211 1593 | 8.222.137.192 1594 | 8.219.161.129 1595 | 8.219.199.220 1596 | 8.219.111.175 1597 | 8.219.159.151 1598 | 8.219.110.248 1599 | 8.219.114.201 1600 | 8.219.201.8 1601 | 8.219.170.232 1602 | 8.219.198.139 1603 | 8.219.198.34 1604 | 8.219.126.240 1605 | 8.219.193.202 1606 | 8.219.174.213 1607 | 8.219.164.237 1608 | 8.219.144.168 1609 | 8.222.226.92 1610 | 8.222.204.128 1611 | 8.222.193.65 1612 | 47.245.86.230 1613 | 8.219.1.169 1614 | 8.219.5.10 1615 | 168.138.185.234 1616 | 138.2.99.97 1617 | 138.2.75.91 1618 | 152.69.219.32 1619 | 8.219.248.47 1620 | 8.219.210.64 1621 | 8.219.222.98 1622 | 8.219.237.250 1623 | 8.219.60.54 1624 | 8.219.70.151 1625 | 8.219.109.183 1626 | 8.219.98.13 1627 | 8.219.42.72 1628 | 8.219.51.211 1629 | 8.222.137.192 1630 | 8.219.161.129 1631 | 8.219.199.220 1632 | 8.219.111.175 1633 | 8.219.159.151 1634 | 8.219.110.248 1635 | 8.219.114.201 1636 | 8.219.201.8 1637 | 8.219.170.232 1638 | 8.219.198.139 1639 | 8.219.198.34 1640 | 8.219.126.240 1641 | 8.219.193.202 1642 | 8.219.174.213 1643 | 8.219.164.237 1644 | 8.219.144.168 1645 | 8.222.226.92 1646 | 8.222.204.128 1647 | 8.222.193.65 1648 | 47.245.86.230 1649 | 8.219.1.169 1650 | 8.219.5.10 1651 | 168.138.185.234 1652 | 168.138.177.109 1653 | 129.150.50.63 1654 | 129.150.37.203 1655 | 138.2.75.36 1656 | 8.219.248.47 1657 | 8.219.222.98 1658 | 8.219.198.34 1659 | 8.219.193.202 1660 | 8.219.174.213 1661 | 8.219.164.237 1662 | 8.219.199.220 1663 | 8.219.201.245 1664 | 8.219.114.201 1665 | 8.219.144.168 1666 | 8.219.126.240 1667 | 8.219.111.175 1668 | 8.219.111.147 1669 | 8.219.68.162 1670 | 8.219.103.65 1671 | 8.219.106.156 1672 | 8.219.54.203 1673 | 8.219.78.1 1674 | 8.219.84.214 1675 | 8.222.193.65 1676 | 8.222.222.64 1677 | 8.222.204.128 1678 | 8.222.208.38 1679 | 8.219.4.122 1680 | 8.219.0.162 1681 | 8.222.181.117 1682 | 168.138.165.174 1683 | 168.138.185.234 1684 | 168.138.177.109 1685 | 129.150.50.63 1686 | 129.150.37.203 1687 | 138.2.99.97 1688 | 138.2.75.36 1689 | 8.219.248.47 1690 | 8.219.222.98 1691 | 8.219.198.34 1692 | 8.219.193.202 1693 | 8.219.174.213 1694 | 8.219.164.237 1695 | 8.219.199.220 1696 | 8.219.201.245 1697 | 8.219.114.201 1698 | 8.219.144.168 1699 | 8.219.126.240 1700 | 8.219.111.175 1701 | 8.219.111.147 1702 | 8.219.68.162 1703 | 8.219.103.65 1704 | 8.219.106.156 1705 | 8.219.54.203 1706 | 8.219.78.1 1707 | 8.219.84.214 1708 | 8.222.193.65 1709 | 8.222.222.64 1710 | 8.222.204.128 1711 | 8.222.208.38 1712 | 8.219.4.122 1713 | 8.219.0.162 1714 | 8.222.181.117 1715 | 129.150.51.134 1716 | 129.150.50.63 1717 | 129.150.37.203 1718 | 168.138.184.172 1719 | 168.138.165.174 1720 | 8.219.164.237 1721 | 8.219.190.62 1722 | 8.219.198.139 1723 | 8.219.110.248 1724 | 8.219.170.232 1725 | 8.219.111.147 1726 | 8.219.161.129 1727 | 8.219.201.8 1728 | 8.219.0.162 1729 | 8.219.5.10 1730 | 8.219.1.169 1731 | 8.222.226.92 1732 | 8.219.98.13 1733 | 8.219.50.180 1734 | 8.219.78.1 1735 | 8.219.106.156 1736 | 8.219.84.214 1737 | 8.219.54.203 1738 | 8.219.67.133 1739 | 8.219.60.54 1740 | 8.219.51.211 1741 | 8.219.103.65 1742 | 8.219.237.250 1743 | 8.219.248.47 1744 | 8.219.222.98 1745 | 8.222.137.192 1746 | 8.222.181.117 1747 | 47.245.86.230 1748 | 129.150.51.134 1749 | 129.150.50.63 1750 | 129.150.37.203 1751 | 168.138.184.172 1752 | 168.138.165.174 1753 | 8.219.164.237 1754 | 8.219.190.62 1755 | 8.219.198.139 1756 | 8.219.110.248 1757 | 8.219.170.232 1758 | 8.219.111.147 1759 | 8.219.161.129 1760 | 8.219.201.8 1761 | 8.219.0.162 1762 | 8.219.5.10 1763 | 8.219.1.169 1764 | 8.222.226.92 1765 | 8.219.98.13 1766 | 8.219.50.180 1767 | 8.219.78.1 1768 | 8.219.106.156 1769 | 8.219.84.214 1770 | 8.219.54.203 1771 | 8.219.67.133 1772 | 8.219.60.54 1773 | 8.219.51.211 1774 | 8.219.103.65 1775 | 8.219.237.250 1776 | 8.219.248.47 1777 | 8.219.222.98 1778 | 8.222.137.192 1779 | 8.222.181.117 1780 | 47.245.86.230 1781 | 129.150.50.63 1782 | 129.150.51.134 1783 | 168.138.185.234 1784 | 152.69.219.32 1785 | 138.2.104.102 1786 | 138.2.99.97 1787 | 8.222.193.65 1788 | 8.222.208.38 1789 | 8.222.204.128 1790 | 8.219.199.220 1791 | 8.219.193.202 1792 | 8.219.124.227 1793 | 8.219.164.237 1794 | 8.219.174.213 1795 | 8.219.170.232 1796 | 8.219.190.62 1797 | 8.219.198.34 1798 | 8.219.159.151 1799 | 8.219.126.240 1800 | 8.219.114.201 1801 | 47.245.86.230 1802 | 8.219.67.133 1803 | 8.219.70.151 1804 | 8.219.78.1 1805 | 8.219.50.180 1806 | 8.219.42.72 1807 | 8.219.106.156 1808 | 8.219.54.203 1809 | 8.219.51.211 1810 | 8.219.103.65 1811 | 8.219.84.214 1812 | 8.219.240.160 1813 | 8.219.248.47 1814 | 8.219.237.250 1815 | 8.219.222.98 1816 | 8.219.4.122 1817 | 8.219.0.162 1818 | 8.222.181.117 1819 | 8.222.137.192 1820 | 129.150.51.134 1821 | 168.138.185.234 1822 | 152.69.219.32 1823 | 8.222.193.65 1824 | 8.222.208.38 1825 | 8.222.204.128 1826 | 8.219.199.220 1827 | 8.219.193.202 1828 | 8.219.124.227 1829 | 8.219.164.237 1830 | 8.219.174.213 1831 | 8.219.170.232 1832 | 8.219.190.62 1833 | 8.219.198.34 1834 | 8.219.159.151 1835 | 8.219.126.240 1836 | 8.219.114.201 1837 | 47.245.86.230 1838 | 8.219.67.133 1839 | 8.219.70.151 1840 | 8.219.78.1 1841 | 8.219.50.180 1842 | 8.219.42.72 1843 | 8.219.106.156 1844 | 8.219.54.203 1845 | 8.219.51.211 1846 | 8.219.103.65 1847 | 8.219.84.214 1848 | 8.219.240.160 1849 | 8.219.248.47 1850 | 8.219.237.250 1851 | 8.219.222.98 1852 | 8.219.4.122 1853 | 8.219.0.162 1854 | 8.222.181.117 1855 | 8.222.137.192 1856 | 168.138.165.174 1857 | 129.150.51.134 1858 | 129.150.50.63 1859 | 8.219.5.10 1860 | 8.222.164.209 1861 | 8.222.137.192 1862 | 8.219.84.214 1863 | 8.219.109.183 1864 | 8.219.98.13 1865 | 8.219.103.65 1866 | 8.219.78.1 1867 | 8.219.60.54 1868 | 8.219.248.47 1869 | 8.219.199.220 1870 | 8.219.198.34 1871 | 8.219.110.248 1872 | 8.219.111.175 1873 | 8.219.198.139 1874 | 8.222.193.65 1875 | 8.222.208.38 1876 | 8.222.204.128 1877 | 168.138.165.174 1878 | 129.150.51.134 1879 | 129.150.50.63 1880 | 8.219.5.10 1881 | 8.222.164.209 1882 | 8.222.137.192 1883 | 8.219.84.214 1884 | 8.219.109.183 1885 | 8.219.98.13 1886 | 8.219.103.65 1887 | 8.219.78.1 1888 | 8.219.60.54 1889 | 8.219.248.47 1890 | 8.219.199.220 1891 | 8.219.198.34 1892 | 8.219.110.248 1893 | 8.219.111.175 1894 | 8.219.198.139 1895 | 8.222.193.65 1896 | 8.222.208.38 1897 | 8.222.204.128 1898 | 138.2.75.36 1899 | 138.2.75.91 1900 | 129.150.50.63 1901 | 129.150.51.134 1902 | 168.138.162.187 1903 | 168.138.165.174 1904 | 168.138.177.109 1905 | 152.69.219.32 1906 | 8.222.181.117 1907 | 8.219.222.98 1908 | 47.245.86.230 1909 | 8.219.4.122 1910 | 8.219.70.151 1911 | 8.219.54.203 1912 | 8.219.42.72 1913 | 8.219.60.54 1914 | 8.219.67.133 1915 | 8.219.98.13 1916 | 8.219.51.211 1917 | 8.219.106.156 1918 | 8.222.193.65 1919 | 8.219.124.227 1920 | 8.219.111.147 1921 | 8.219.198.139 1922 | 8.219.126.240 1923 | 8.219.114.201 1924 | 8.219.161.129 1925 | 8.219.199.220 1926 | 8.219.110.248 1927 | 8.219.193.202 1928 | 138.2.75.36 1929 | 138.2.75.91 1930 | 129.150.50.63 1931 | 129.150.51.134 1932 | 168.138.162.187 1933 | 168.138.165.174 1934 | 168.138.177.109 1935 | 152.69.219.32 1936 | 8.222.181.117 1937 | 8.219.222.98 1938 | 47.245.86.230 1939 | 8.219.4.122 1940 | 8.219.70.151 1941 | 8.219.54.203 1942 | 8.219.42.72 1943 | 8.219.60.54 1944 | 8.219.67.133 1945 | 8.219.98.13 1946 | 8.219.51.211 1947 | 8.219.106.156 1948 | 8.222.193.65 1949 | 8.219.124.227 1950 | 8.219.111.147 1951 | 8.219.198.139 1952 | 8.219.126.240 1953 | 8.219.114.201 1954 | 8.219.161.129 1955 | 8.219.199.220 1956 | 8.219.110.248 1957 | 8.219.193.202 1958 | 152.69.219.32 1959 | 138.2.75.36 1960 | 138.2.75.91 1961 | 138.2.99.97 1962 | 168.138.177.109 1963 | 168.138.184.172 1964 | 8.222.164.209 1965 | 8.222.181.117 1966 | 8.222.137.192 1967 | 8.219.193.202 1968 | 8.219.201.245 1969 | 8.219.111.175 1970 | 8.219.159.151 1971 | 8.219.190.62 1972 | 8.219.111.147 1973 | 8.219.198.139 1974 | 8.219.198.34 1975 | 8.219.161.129 1976 | 8.219.200.145 1977 | 8.219.174.213 1978 | 8.219.144.168 1979 | 8.219.210.64 1980 | 8.219.237.250 1981 | 8.219.68.162 1982 | 8.219.60.54 1983 | 8.219.42.72 1984 | 8.219.98.13 1985 | 8.219.51.211 1986 | 8.219.50.180 1987 | 8.219.78.1 1988 | 8.219.67.133 1989 | 8.222.208.38 1990 | 8.222.222.64 1991 | 8.222.204.128 1992 | 152.69.219.32 1993 | 138.2.75.36 1994 | 138.2.99.97 1995 | 8.222.164.209 1996 | 8.222.181.117 1997 | 8.222.137.192 1998 | 8.219.193.202 1999 | 8.219.201.245 2000 | 8.219.111.175 2001 | 8.219.159.151 2002 | 8.219.190.62 2003 | 8.219.111.147 2004 | 8.219.198.139 2005 | 8.219.198.34 2006 | 8.219.161.129 2007 | 8.219.200.145 2008 | 8.219.174.213 2009 | 8.219.144.168 2010 | 8.219.210.64 2011 | 8.219.237.250 2012 | 8.219.68.162 2013 | 8.219.60.54 2014 | 8.219.42.72 2015 | 8.219.98.13 2016 | 8.219.51.211 2017 | 8.219.50.180 2018 | 8.219.78.1 2019 | 8.219.67.133 2020 | 8.222.208.38 2021 | 8.222.222.64 2022 | 8.222.204.128 2023 | 168.138.184.172 2024 | 152.69.219.32 2025 | 129.150.37.203 2026 | 138.2.99.97 2027 | 138.2.75.36 2028 | 8.222.222.64 2029 | 8.222.193.65 2030 | 8.219.5.10 2031 | 8.219.4.122 2032 | 8.219.84.214 2033 | 8.219.67.133 2034 | 8.219.103.65 2035 | 8.219.50.180 2036 | 8.219.78.1 2037 | 8.219.106.156 2038 | 8.219.109.183 2039 | 8.219.222.98 2040 | 8.219.248.47 2041 | 8.219.237.250 2042 | 8.222.181.117 2043 | 8.219.164.237 2044 | 8.219.198.34 2045 | 8.219.111.175 2046 | 8.219.174.142 2047 | 8.219.201.8 2048 | 168.138.184.172 2049 | 152.69.219.32 2050 | 138.2.99.97 2051 | 138.2.75.36 2052 | 8.222.222.64 2053 | 8.222.193.65 2054 | 8.219.5.10 2055 | 8.219.4.122 2056 | 8.219.84.214 2057 | 8.219.67.133 2058 | 8.219.103.65 2059 | 8.219.50.180 2060 | 8.219.78.1 2061 | 8.219.106.156 2062 | 8.219.109.183 2063 | 8.219.222.98 2064 | 8.219.248.47 2065 | 8.219.237.250 2066 | 8.222.181.117 2067 | 8.219.164.237 2068 | 8.219.198.34 2069 | 8.219.111.175 2070 | 8.219.174.142 2071 | 8.219.201.8 2072 | 168.138.177.109 2073 | 138.2.99.97 2074 | 138.2.75.91 2075 | 8.219.4.122 2076 | 8.219.5.10 2077 | 8.222.226.92 2078 | 8.222.233.183 2079 | 8.222.193.65 2080 | 8.222.222.64 2081 | 8.219.193.202 2082 | 8.219.198.34 2083 | 8.219.200.145 2084 | 8.219.161.129 2085 | 8.219.111.175 2086 | 8.219.144.168 2087 | 8.222.137.192 2088 | 8.222.164.209 2089 | 8.222.181.117 2090 | 8.219.42.72 2091 | 8.219.67.133 2092 | 8.219.70.151 2093 | 8.219.54.203 2094 | 8.219.106.156 2095 | 8.219.50.180 2096 | 8.219.84.214 2097 | 8.219.210.64 2098 | 8.219.248.47 2099 | 168.138.177.109 2100 | 138.2.99.97 2101 | 138.2.75.91 2102 | 8.219.4.122 2103 | 8.219.5.10 2104 | 8.222.226.92 2105 | 8.222.233.183 2106 | 8.222.193.65 2107 | 8.222.222.64 2108 | 8.219.193.202 2109 | 8.219.198.34 2110 | 8.219.200.145 2111 | 8.219.161.129 2112 | 8.219.111.175 2113 | 8.219.144.168 2114 | 8.222.137.192 2115 | 8.222.164.209 2116 | 8.222.181.117 2117 | 8.219.42.72 2118 | 8.219.67.133 2119 | 8.219.70.151 2120 | 8.219.54.203 2121 | 8.219.106.156 2122 | 8.219.50.180 2123 | 8.219.84.214 2124 | 8.219.210.64 2125 | 8.219.248.47 2126 | 138.2.99.97 2127 | 129.150.50.63 2128 | 129.150.37.203 2129 | 129.150.51.134 2130 | 8.219.68.162 2131 | 8.219.67.133 2132 | 8.219.51.211 2133 | 8.219.98.13 2134 | 8.219.109.183 2135 | 8.219.60.54 2136 | 8.219.110.248 2137 | 8.219.190.62 2138 | 8.219.170.232 2139 | 8.219.201.245 2140 | 8.219.174.142 2141 | 8.219.126.240 2142 | 8.219.111.147 2143 | 8.219.198.34 2144 | 8.219.124.227 2145 | 8.219.144.168 2146 | 8.219.201.8 2147 | 8.222.181.117 2148 | 8.222.128.75 2149 | 8.222.222.64 2150 | 8.222.226.92 2151 | 8.222.204.128 2152 | 8.222.208.38 2153 | 8.219.237.250 2154 | 8.219.248.47 2155 | 8.219.0.162 2156 | 8.219.4.122 2157 | 8.219.5.10 2158 | 8.219.1.169 2159 | 138.2.99.97 2160 | 129.150.50.63 2161 | 129.150.37.203 2162 | 129.150.51.134 2163 | 168.138.165.174 2164 | 8.219.68.162 2165 | 8.219.67.133 2166 | 8.219.51.211 2167 | 8.219.98.13 2168 | 8.219.109.183 2169 | 8.219.60.54 2170 | 8.219.110.248 2171 | 8.219.190.62 2172 | 8.219.170.232 2173 | 8.219.201.245 2174 | 8.219.174.142 2175 | 8.219.126.240 2176 | 8.219.111.147 2177 | 8.219.198.34 2178 | 8.219.124.227 2179 | 8.219.144.168 2180 | 8.219.201.8 2181 | 8.222.181.117 2182 | 8.222.128.75 2183 | 8.222.222.64 2184 | 8.222.226.92 2185 | 8.222.204.128 2186 | 8.222.208.38 2187 | 8.219.237.250 2188 | 8.219.248.47 2189 | 8.219.0.162 2190 | 8.219.4.122 2191 | 8.219.5.10 2192 | 8.219.1.169 2193 | 138.2.104.102 2194 | 138.2.75.91 2195 | 138.2.99.97 2196 | 129.150.37.203 2197 | 129.150.50.63 2198 | 168.138.177.109 2199 | 8.219.4.122 2200 | 8.219.0.162 2201 | 8.219.5.10 2202 | 8.219.237.250 2203 | 8.219.222.98 2204 | 47.245.86.230 2205 | 8.219.170.232 2206 | 8.219.201.245 2207 | 8.219.161.129 2208 | 8.219.114.201 2209 | 8.219.111.147 2210 | 8.219.164.237 2211 | 8.219.159.151 2212 | 8.222.164.209 2213 | 8.222.128.75 2214 | 8.219.109.183 2215 | 8.219.51.211 2216 | 8.219.98.13 2217 | 8.219.78.1 2218 | 8.219.70.151 2219 | 8.219.106.156 2220 | 8.222.226.92 2221 | 8.222.208.38 2222 | 8.222.193.65 2223 | 138.2.104.102 2224 | 138.2.75.91 2225 | 138.2.99.97 2226 | 129.150.37.203 2227 | 129.150.50.63 2228 | 168.138.177.109 2229 | 8.219.4.122 2230 | 8.219.0.162 2231 | 8.219.5.10 2232 | 8.219.237.250 2233 | 8.219.222.98 2234 | 47.245.86.230 2235 | 8.219.170.232 2236 | 8.219.201.245 2237 | 8.219.161.129 2238 | 8.219.114.201 2239 | 8.219.111.147 2240 | 8.219.164.237 2241 | 8.219.159.151 2242 | 8.222.164.209 2243 | 8.222.128.75 2244 | 8.219.109.183 2245 | 8.219.51.211 2246 | 8.219.98.13 2247 | 8.219.78.1 2248 | 8.219.70.151 2249 | 8.219.106.156 2250 | 8.222.226.92 2251 | 8.222.208.38 2252 | 8.222.193.65 2253 | 129.150.50.63 2254 | 129.150.37.203 2255 | 138.2.99.97 2256 | 138.2.75.91 2257 | 138.2.104.102 2258 | 168.138.177.109 2259 | 8.222.128.32 2260 | 8.222.128.75 2261 | 8.219.124.227 2262 | 8.219.198.34 2263 | 8.219.170.232 2264 | 8.219.110.248 2265 | 8.219.190.62 2266 | 8.219.200.145 2267 | 8.219.164.237 2268 | 8.219.210.64 2269 | 8.219.248.47 2270 | 8.219.84.214 2271 | 8.219.60.54 2272 | 8.219.98.13 2273 | 8.219.106.156 2274 | 8.219.51.211 2275 | 8.219.109.183 2276 | 8.219.1.169 2277 | 8.219.4.122 2278 | 129.150.50.63 2279 | 129.150.37.203 2280 | 138.2.75.91 2281 | 168.138.177.109 2282 | 8.222.128.32 2283 | 8.222.128.75 2284 | 8.219.124.227 2285 | 8.219.198.34 2286 | 8.219.170.232 2287 | 8.219.110.248 2288 | 8.219.190.62 2289 | 8.219.200.145 2290 | 8.219.164.237 2291 | 8.219.210.64 2292 | 8.219.248.47 2293 | 8.219.84.214 2294 | 8.219.60.54 2295 | 8.219.98.13 2296 | 8.219.106.156 2297 | 8.219.51.211 2298 | 8.219.109.183 2299 | 8.219.1.169 2300 | 8.219.4.122 2301 | 129.150.51.134 2302 | 129.150.37.203 2303 | 129.150.50.63 2304 | 168.138.177.109 2305 | 152.69.219.32 2306 | 138.2.104.102 2307 | 8.219.210.64 2308 | 8.219.237.250 2309 | 8.219.248.47 2310 | 8.219.84.214 2311 | 8.219.42.72 2312 | 8.219.106.156 2313 | 8.219.60.54 2314 | 8.219.103.65 2315 | 8.222.181.117 2316 | 8.222.137.192 2317 | 8.219.126.240 2318 | 8.219.200.145 2319 | 8.219.174.213 2320 | 8.219.114.201 2321 | 8.219.201.8 2322 | 8.219.190.62 2323 | 47.245.86.230 2324 | 8.222.222.64 2325 | 8.222.193.65 2326 | 8.222.208.38 2327 | 129.150.51.134 2328 | 129.150.37.203 2329 | 129.150.50.63 2330 | 168.138.177.109 2331 | 152.69.219.32 2332 | 138.2.104.102 2333 | 8.219.210.64 2334 | 8.219.237.250 2335 | 8.219.248.47 2336 | 8.219.84.214 2337 | 8.219.42.72 2338 | 8.219.106.156 2339 | 8.219.60.54 2340 | 8.219.103.65 2341 | 8.222.181.117 2342 | 8.222.137.192 2343 | 8.219.126.240 2344 | 8.219.200.145 2345 | 8.219.174.213 2346 | 8.219.114.201 2347 | 8.219.201.8 2348 | 8.219.190.62 2349 | 47.245.86.230 2350 | 8.222.222.64 2351 | 8.222.193.65 2352 | 8.222.208.38 2353 | 138.2.75.36 2354 | 138.2.75.91 2355 | 168.138.177.109 2356 | 168.138.162.187 2357 | 8.219.4.122 2358 | 8.219.0.162 2359 | 47.245.86.230 2360 | 8.222.208.38 2361 | 8.219.54.203 2362 | 8.219.70.151 2363 | 8.219.50.180 2364 | 8.219.51.211 2365 | 8.222.128.75 2366 | 8.219.199.220 2367 | 8.219.126.240 2368 | 8.219.201.8 2369 | 8.219.190.62 2370 | 8.219.193.202 2371 | 168.138.162.187 2372 | 8.219.4.122 2373 | 8.219.0.162 2374 | 47.245.86.230 2375 | 8.222.208.38 2376 | 8.219.54.203 2377 | 8.219.70.151 2378 | 8.219.50.180 2379 | 8.219.51.211 2380 | 8.222.128.75 2381 | 8.219.199.220 2382 | 8.219.126.240 2383 | 8.219.201.8 2384 | 8.219.190.62 2385 | 8.219.193.202 2386 | 129.150.50.63 2387 | 129.150.51.134 2388 | 129.150.37.203 2389 | 168.138.162.187 2390 | 138.2.75.91 2391 | 152.69.219.32 2392 | 8.219.5.10 2393 | 8.219.4.122 2394 | 8.219.0.162 2395 | 47.245.86.230 2396 | 8.222.128.32 2397 | 8.222.164.209 2398 | 8.222.204.128 2399 | 8.222.233.183 2400 | 8.219.78.1 2401 | 8.219.84.214 2402 | 8.219.103.65 2403 | 8.219.60.54 2404 | 8.219.144.168 2405 | 8.219.198.34 2406 | 8.219.199.220 2407 | 8.219.170.232 2408 | 8.219.174.213 2409 | 8.219.198.139 2410 | 8.219.210.64 2411 | 8.219.237.250 2412 | 129.150.50.63 2413 | 129.150.51.134 2414 | 129.150.37.203 2415 | 168.138.162.187 2416 | 8.219.5.10 2417 | 8.219.4.122 2418 | 8.219.0.162 2419 | 47.245.86.230 2420 | 8.222.128.32 2421 | 8.222.164.209 2422 | 8.222.204.128 2423 | 8.222.233.183 2424 | 8.219.78.1 2425 | 8.219.84.214 2426 | 8.219.103.65 2427 | 8.219.60.54 2428 | 8.219.144.168 2429 | 8.219.198.34 2430 | 8.219.199.220 2431 | 8.219.170.232 2432 | 8.219.174.213 2433 | 8.219.198.139 2434 | 8.219.210.64 2435 | 8.219.237.250 2436 | 129.150.50.63 2437 | 129.150.51.134 2438 | 129.150.37.203 2439 | 168.138.162.187 2440 | 138.2.75.91 2441 | 152.69.219.32 2442 | 8.219.5.10 2443 | 8.219.4.122 2444 | 8.219.0.162 2445 | 47.245.86.230 2446 | 8.222.128.32 2447 | 8.222.164.209 2448 | 8.222.204.128 2449 | 8.222.233.183 2450 | 8.219.78.1 2451 | 8.219.84.214 2452 | 8.219.103.65 2453 | 8.219.60.54 2454 | 8.219.144.168 2455 | 8.219.198.34 2456 | 8.219.199.220 2457 | 8.219.170.232 2458 | 8.219.174.213 2459 | 8.219.198.139 2460 | 8.219.210.64 2461 | 8.219.237.250 2462 | 129.150.50.63 2463 | 168.138.165.174 2464 | 168.138.177.109 2465 | 8.222.222.64 2466 | 8.222.233.183 2467 | 8.222.226.92 2468 | 8.222.193.65 2469 | 8.219.111.175 2470 | 8.219.170.232 2471 | 8.219.198.139 2472 | 8.219.174.142 2473 | 8.219.126.240 2474 | 8.219.5.10 2475 | 8.219.0.162 2476 | 8.219.98.13 2477 | 8.219.67.133 2478 | 8.219.54.203 2479 | 8.219.50.180 2480 | 8.219.106.156 2481 | 8.219.51.211 2482 | 8.219.240.160 2483 | 8.219.210.64 2484 | 8.219.222.98 2485 | 8.222.164.209 2486 | 8.222.128.75 2487 | 8.222.137.192 2488 | 129.150.50.63 2489 | 168.138.165.174 2490 | 168.138.177.109 2491 | 8.222.222.64 2492 | 8.222.233.183 2493 | 8.222.226.92 2494 | 8.222.193.65 2495 | 8.219.111.175 2496 | 8.219.170.232 2497 | 8.219.198.139 2498 | 8.219.174.142 2499 | 8.219.126.240 2500 | 8.219.5.10 2501 | 8.219.0.162 2502 | 8.219.98.13 2503 | 8.219.67.133 2504 | 8.219.54.203 2505 | 8.219.50.180 2506 | 8.219.106.156 2507 | 8.219.51.211 2508 | 8.219.240.160 2509 | 8.219.210.64 2510 | 8.219.222.98 2511 | 8.222.164.209 2512 | 8.222.128.75 2513 | 8.222.137.192 2514 | 129.150.50.63 2515 | 168.138.177.109 2516 | 8.222.222.64 2517 | 8.222.233.183 2518 | 8.222.226.92 2519 | 8.222.193.65 2520 | 8.219.111.175 2521 | 8.219.170.232 2522 | 8.219.198.139 2523 | 8.219.174.142 2524 | 8.219.126.240 2525 | 8.219.5.10 2526 | 8.219.0.162 2527 | 8.219.98.13 2528 | 8.219.67.133 2529 | 8.219.54.203 2530 | 8.219.50.180 2531 | 8.219.106.156 2532 | 8.219.51.211 2533 | 8.219.240.160 2534 | 8.219.210.64 2535 | 8.219.222.98 2536 | 8.222.164.209 2537 | 8.222.128.75 2538 | 8.222.137.192 2539 | 129.150.50.63 2540 | 168.138.165.174 2541 | 138.2.104.102 2542 | 138.2.99.97 2543 | 8.219.126.240 2544 | 8.219.110.248 2545 | 8.219.164.237 2546 | 8.219.124.227 2547 | 8.219.111.147 2548 | 8.219.114.201 2549 | 8.219.190.62 2550 | 8.219.174.213 2551 | 8.219.201.8 2552 | 8.219.103.65 2553 | 8.219.78.1 2554 | 8.219.67.133 2555 | 8.219.60.54 2556 | 8.219.51.211 2557 | 8.222.128.75 2558 | 8.222.233.183 2559 | 8.222.222.64 2560 | 8.222.226.92 2561 | 8.222.204.128 2562 | 8.219.237.250 2563 | 8.219.210.64 2564 | 8.219.248.47 2565 | 8.219.222.98 2566 | 8.219.0.162 2567 | 8.219.1.169 2568 | 8.219.4.122 2569 | 47.245.86.230 2570 | 129.150.37.203 2571 | 129.150.50.63 2572 | 168.138.165.174 2573 | 138.2.99.97 2574 | 8.219.126.240 2575 | 8.219.110.248 2576 | 8.219.164.237 2577 | 8.219.124.227 2578 | 8.219.111.147 2579 | 8.219.114.201 2580 | 8.219.190.62 2581 | 8.219.174.213 2582 | 8.219.201.8 2583 | 8.219.103.65 2584 | 8.219.78.1 2585 | 8.219.67.133 2586 | 8.219.60.54 2587 | 8.219.51.211 2588 | 8.222.128.75 2589 | 8.222.233.183 2590 | 8.222.222.64 2591 | 8.222.226.92 2592 | 8.222.204.128 2593 | 8.219.237.250 2594 | 8.219.210.64 2595 | 8.219.248.47 2596 | 8.219.222.98 2597 | 8.219.0.162 2598 | 8.219.1.169 2599 | 8.219.4.122 2600 | 47.245.86.230 2601 | 152.69.219.32 2602 | 129.150.50.63 2603 | 168.138.165.174 2604 | 168.138.177.109 2605 | 138.2.99.97 2606 | 8.222.222.64 2607 | 8.222.193.65 2608 | 8.222.204.128 2609 | 8.222.208.38 2610 | 8.219.190.62 2611 | 8.219.164.237 2612 | 8.219.124.227 2613 | 8.219.198.139 2614 | 8.219.201.245 2615 | 8.219.144.168 2616 | 8.219.161.129 2617 | 8.219.114.201 2618 | 8.219.159.151 2619 | 8.219.198.34 2620 | 8.219.174.213 2621 | 8.222.137.192 2622 | 8.219.4.122 2623 | 8.219.5.10 2624 | 8.219.248.47 2625 | 47.245.86.230 2626 | 8.219.109.183 2627 | 8.219.84.214 2628 | 8.219.50.180 2629 | 8.219.42.72 2630 | 8.219.60.54 2631 | 8.219.54.203 2632 | 8.219.106.156 2633 | 8.219.103.65 2634 | 8.219.70.151 2635 | 152.69.219.32 2636 | 129.150.50.63 2637 | 168.138.165.174 2638 | 138.2.99.97 2639 | 8.222.222.64 2640 | 8.222.193.65 2641 | 8.222.204.128 2642 | 8.222.208.38 2643 | 8.219.190.62 2644 | 8.219.164.237 2645 | 8.219.124.227 2646 | 8.219.198.139 2647 | 8.219.201.245 2648 | 8.219.144.168 2649 | 8.219.161.129 2650 | 8.219.114.201 2651 | 8.219.159.151 2652 | 8.219.198.34 2653 | 8.219.174.213 2654 | 8.222.137.192 2655 | 8.219.4.122 2656 | 8.219.5.10 2657 | 8.219.248.47 2658 | 47.245.86.230 2659 | 8.219.109.183 2660 | 8.219.84.214 2661 | 8.219.50.180 2662 | 8.219.42.72 2663 | 8.219.60.54 2664 | 8.219.54.203 2665 | 8.219.106.156 2666 | 8.219.103.65 2667 | 8.219.70.151 2668 | 129.150.37.203 2669 | 168.138.177.109 2670 | 8.219.170.232 2671 | 8.219.159.151 2672 | 8.219.110.248 2673 | 8.219.111.147 2674 | 8.219.198.139 2675 | 8.219.198.34 2676 | 8.219.4.122 2677 | 8.222.226.92 2678 | 8.222.193.65 2679 | 8.222.204.128 2680 | 8.222.233.183 2681 | 8.219.78.1 2682 | 8.219.66.156 2683 | 8.219.70.151 2684 | 8.219.50.180 2685 | 8.219.51.211 2686 | 8.219.68.162 2687 | 8.219.60.54 2688 | 8.219.84.214 2689 | 8.219.248.47 2690 | 8.222.137.192 2691 | 8.222.128.32 2692 | 129.150.37.203 2693 | 8.219.170.232 2694 | 8.219.159.151 2695 | 8.219.110.248 2696 | 8.219.111.147 2697 | 8.219.198.139 2698 | 8.219.198.34 2699 | 8.219.4.122 2700 | 8.222.226.92 2701 | 8.222.193.65 2702 | 8.222.204.128 2703 | 8.222.233.183 2704 | 8.219.78.1 2705 | 8.219.66.156 2706 | 8.219.70.151 2707 | 8.219.50.180 2708 | 8.219.51.211 2709 | 8.219.68.162 2710 | 8.219.60.54 2711 | 8.219.84.214 2712 | 8.219.248.47 2713 | 8.222.137.192 2714 | 8.222.128.32 2715 | 129.150.37.203 2716 | 129.150.51.134 2717 | 138.2.75.91 2718 | 168.138.177.109 2719 | 47.245.86.230 2720 | 8.219.240.160 2721 | 8.222.226.92 2722 | 8.222.208.38 2723 | 8.222.204.128 2724 | 8.222.193.65 2725 | 8.219.199.220 2726 | 8.219.111.175 2727 | 8.219.144.168 2728 | 8.219.159.151 2729 | 8.219.190.62 2730 | 8.219.170.232 2731 | 8.219.174.142 2732 | 8.222.181.117 2733 | 8.219.51.211 2734 | 8.219.70.151 2735 | 8.219.50.180 2736 | 8.219.42.72 2737 | 129.150.37.203 2738 | 129.150.51.134 2739 | 168.138.177.109 2740 | 47.245.86.230 2741 | 8.219.240.160 2742 | 8.222.226.92 2743 | 8.222.208.38 2744 | 8.222.204.128 2745 | 8.222.193.65 2746 | 8.219.199.220 2747 | 8.219.111.175 2748 | 8.219.144.168 2749 | 8.219.159.151 2750 | 8.219.190.62 2751 | 8.219.170.232 2752 | 8.219.174.142 2753 | 8.222.181.117 2754 | 8.219.51.211 2755 | 8.219.70.151 2756 | 8.219.50.180 2757 | 8.219.42.72 2758 | 138.2.75.91 2759 | 138.2.75.36 2760 | 152.69.219.32 2761 | 168.138.165.174 2762 | 168.138.177.109 2763 | 129.150.37.203 2764 | 47.245.86.230 2765 | 8.219.67.133 2766 | 8.219.51.211 2767 | 8.219.70.151 2768 | 8.219.109.183 2769 | 8.219.98.13 2770 | 8.219.103.65 2771 | 8.219.50.180 2772 | 8.222.164.209 2773 | 8.222.128.32 2774 | 8.222.181.117 2775 | 8.222.137.192 2776 | 8.219.200.145 2777 | 8.219.114.201 2778 | 8.219.144.168 2779 | 8.219.198.139 2780 | 8.222.226.92 2781 | 8.222.193.65 2782 | 8.219.4.122 2783 | 8.219.0.162 2784 | 138.2.75.91 2785 | 138.2.75.36 2786 | 152.69.219.32 2787 | 168.138.165.174 2788 | 168.138.177.109 2789 | 129.150.37.203 2790 | 47.245.86.230 2791 | 8.219.67.133 2792 | 8.219.51.211 2793 | 8.219.70.151 2794 | 8.219.109.183 2795 | 8.219.98.13 2796 | 8.219.103.65 2797 | 8.219.50.180 2798 | 8.222.164.209 2799 | 8.222.128.32 2800 | 8.222.181.117 2801 | 8.222.137.192 2802 | 8.219.200.145 2803 | 8.219.114.201 2804 | 8.219.144.168 2805 | 8.219.198.139 2806 | 8.222.226.92 2807 | 8.222.193.65 2808 | 8.219.4.122 2809 | 8.219.0.162 2810 | 129.150.37.203 2811 | 47.245.86.230 2812 | 8.219.103.65 2813 | 8.219.78.1 2814 | 8.219.98.13 2815 | 8.219.67.133 2816 | 8.219.198.139 2817 | 8.219.193.202 2818 | 8.219.161.129 2819 | 8.219.126.240 2820 | 8.219.200.145 2821 | 8.219.201.8 2822 | 8.219.199.220 2823 | 8.219.111.147 2824 | 8.219.237.250 2825 | 8.219.222.98 2826 | 8.219.5.10 2827 | 8.222.181.117 2828 | 8.222.137.192 2829 | 8.222.164.209 2830 | 8.222.233.183 2831 | 8.222.204.128 2832 | 8.222.226.92 2833 | 8.222.193.65 2834 | 47.245.86.230 2835 | 8.219.103.65 2836 | 8.219.78.1 2837 | 8.219.98.13 2838 | 8.219.67.133 2839 | 8.219.198.139 2840 | 8.219.193.202 2841 | 8.219.161.129 2842 | 8.219.126.240 2843 | 8.219.200.145 2844 | 8.219.201.8 2845 | 8.219.199.220 2846 | 8.219.111.147 2847 | 8.219.237.250 2848 | 8.219.222.98 2849 | 8.219.5.10 2850 | 8.222.181.117 2851 | 8.222.137.192 2852 | 8.222.164.209 2853 | 8.222.233.183 2854 | 8.222.204.128 2855 | 8.222.226.92 2856 | 8.222.193.65 2857 | 152.69.219.32 2858 | 129.150.37.203 2859 | 138.2.75.36 2860 | 8.219.0.162 2861 | 8.219.4.122 2862 | 8.219.5.10 2863 | 8.222.164.209 2864 | 8.219.199.220 2865 | 8.219.126.240 2866 | 8.219.174.142 2867 | 8.219.110.248 2868 | 8.219.201.245 2869 | 8.219.124.227 2870 | 8.219.111.175 2871 | 8.219.144.168 2872 | 8.219.114.201 2873 | 8.219.170.232 2874 | 47.245.86.230 2875 | 8.219.237.250 2876 | 8.219.222.98 2877 | 8.219.210.216 2878 | 8.219.240.160 2879 | 8.219.210.64 2880 | 8.222.193.65 2881 | 8.222.204.128 2882 | 8.222.226.92 2883 | 8.219.60.54 2884 | 8.219.68.162 2885 | 8.219.109.183 2886 | 8.219.103.65 2887 | 8.219.42.72 2888 | 8.219.106.156 2889 | 8.219.98.13 2890 | 152.69.219.32 2891 | 129.150.37.203 2892 | 8.219.0.162 2893 | 8.219.4.122 2894 | 8.219.5.10 2895 | 8.222.164.209 2896 | 8.219.199.220 2897 | 8.219.126.240 2898 | 8.219.174.142 2899 | 8.219.110.248 2900 | 8.219.201.245 2901 | 8.219.124.227 2902 | 8.219.111.175 2903 | 8.219.144.168 2904 | 8.219.114.201 2905 | 8.219.170.232 2906 | 47.245.86.230 2907 | 8.219.237.250 2908 | 8.219.222.98 2909 | 8.219.210.216 2910 | 8.219.240.160 2911 | 8.219.210.64 2912 | 8.222.193.65 2913 | 8.222.204.128 2914 | 8.222.226.92 2915 | 8.219.60.54 2916 | 8.219.68.162 2917 | 8.219.109.183 2918 | 8.219.103.65 2919 | 8.219.42.72 2920 | 8.219.106.156 2921 | 8.219.98.13 2922 | 138.2.75.91 2923 | 129.150.37.203 2924 | 129.150.51.134 2925 | 168.138.177.109 2926 | 168.138.165.174 2927 | 8.219.42.72 2928 | 8.219.84.214 2929 | 8.219.66.156 2930 | 8.219.109.183 2931 | 8.219.1.169 2932 | 8.219.5.10 2933 | 8.222.222.64 2934 | 8.222.193.65 2935 | 8.219.170.232 2936 | 8.219.174.142 2937 | 8.219.144.168 2938 | 8.219.159.151 2939 | 8.219.248.47 2940 | 138.2.75.91 2941 | 129.150.37.203 2942 | 129.150.51.134 2943 | 168.138.177.109 2944 | 168.138.165.174 2945 | 8.219.42.72 2946 | 8.219.84.214 2947 | 8.219.66.156 2948 | 8.219.109.183 2949 | 8.219.1.169 2950 | 8.219.5.10 2951 | 8.222.222.64 2952 | 8.222.193.65 2953 | 8.219.170.232 2954 | 8.219.174.142 2955 | 8.219.144.168 2956 | 8.219.159.151 2957 | 8.219.248.47 2958 | 138.2.75.91 2959 | 152.69.219.32 2960 | 8.219.50.180 2961 | 8.219.70.151 2962 | 8.219.67.133 2963 | 8.219.51.211 2964 | 8.219.98.13 2965 | 8.219.54.203 2966 | 8.219.210.64 2967 | 8.219.248.47 2968 | 47.245.86.230 2969 | 8.219.4.122 2970 | 8.219.190.62 2971 | 8.219.198.34 2972 | 8.219.170.232 2973 | 8.219.199.220 2974 | 8.219.201.8 2975 | 129.150.50.63 2976 | 138.2.75.36 2977 | 168.138.191.166 2978 | 47.245.86.230 2979 | 8.219.210.64 2980 | 8.222.164.209 2981 | 8.222.137.192 2982 | 8.219.50.180 2983 | 8.219.54.203 2984 | 8.219.98.13 2985 | 8.219.70.151 2986 | 8.219.78.1 2987 | 8.219.68.162 2988 | 8.219.84.214 2989 | 8.219.60.54 2990 | 8.219.126.240 2991 | 8.219.198.139 2992 | 8.219.159.151 2993 | 8.219.164.237 2994 | 8.219.111.147 2995 | 8.219.193.202 2996 | 8.219.114.201 2997 | 8.219.124.227 2998 | 8.219.170.232 2999 | 8.219.111.175 3000 | 8.222.193.65 3001 | 8.222.204.128 3002 | 8.219.5.10 3003 | 8.219.4.122 3004 | 168.138.177.109 3005 | 168.138.185.234 3006 | 168.138.191.166 3007 | 129.150.37.203 3008 | 8.222.233.183 3009 | 8.222.226.92 3010 | 8.222.208.38 3011 | 8.222.193.65 3012 | 8.222.222.64 3013 | 8.219.170.232 3014 | 8.219.124.227 3015 | 8.222.128.32 3016 | 8.219.78.1 3017 | 8.219.70.151 3018 | 8.219.54.203 3019 | 8.219.66.156 3020 | 138.2.94.123 3021 | 129.150.51.134 3022 | 168.138.165.174 3023 | 168.138.162.187 3024 | 8.219.4.122 3025 | 8.219.0.162 3026 | 8.219.5.10 3027 | 8.219.70.151 3028 | 8.219.78.1 3029 | 8.219.42.72 3030 | 8.219.67.133 3031 | 8.219.103.65 3032 | 8.219.109.183 3033 | 8.219.50.180 3034 | 8.219.51.211 3035 | 8.219.174.142 3036 | 8.219.198.139 3037 | 8.219.201.8 3038 | 8.219.201.245 3039 | 8.222.164.209 3040 | 8.222.137.192 3041 | 8.222.222.64 3042 | 8.222.193.65 3043 | 138.2.94.123 3044 | 129.150.51.134 3045 | 168.138.165.174 3046 | 8.219.4.122 3047 | 8.219.0.162 3048 | 8.219.5.10 3049 | 8.219.70.151 3050 | 8.219.78.1 3051 | 8.219.42.72 3052 | 8.219.67.133 3053 | 8.219.103.65 3054 | 8.219.109.183 3055 | 8.219.50.180 3056 | 8.219.51.211 3057 | 8.219.174.142 3058 | 8.219.198.139 3059 | 8.219.201.8 3060 | 8.219.201.245 3061 | 8.222.164.209 3062 | 8.222.137.192 3063 | 8.222.222.64 3064 | 8.222.193.65 3065 | 138.2.75.91 3066 | 138.2.75.36 3067 | 129.150.50.63 3068 | 47.245.86.230 3069 | 8.219.106.156 3070 | 8.219.98.13 3071 | 8.219.78.1 3072 | 8.219.248.47 3073 | 8.222.137.192 3074 | 8.222.170.131 3075 | 8.219.114.201 3076 | 8.219.161.129 3077 | 8.219.201.8 3078 | 8.219.159.151 3079 | 8.219.193.202 3080 | 8.219.124.227 3081 | 8.219.199.220 3082 | 8.219.110.248 3083 | 8.219.201.245 3084 | 8.219.174.213 3085 | 8.222.204.128 3086 | 8.222.233.183 3087 | 8.222.208.38 3088 | 8.219.4.122 3089 | 8.219.5.10 3090 | 8.219.0.162 3091 | 138.2.75.91 3092 | 138.2.75.36 3093 | 129.150.50.63 3094 | 47.245.86.230 3095 | 8.219.106.156 3096 | 8.219.98.13 3097 | 8.219.78.1 3098 | 8.219.248.47 3099 | 8.222.137.192 3100 | 8.222.170.131 3101 | 8.219.114.201 3102 | 8.219.161.129 3103 | 8.219.201.8 3104 | 8.219.159.151 3105 | 8.219.193.202 3106 | 8.219.124.227 3107 | 8.219.199.220 3108 | 8.219.110.248 3109 | 8.219.201.245 3110 | 8.219.174.213 3111 | 8.222.204.128 3112 | 8.222.233.183 3113 | 8.222.208.38 3114 | 8.219.4.122 3115 | 8.219.5.10 3116 | 8.219.0.162 3117 | 129.150.50.63 3118 | 129.150.51.134 3119 | 129.150.37.203 3120 | 138.2.75.91 3121 | 168.138.165.174 3122 | 168.138.177.109 3123 | 168.138.191.166 3124 | 152.69.219.32 3125 | 8.219.0.162 3126 | 8.219.4.122 3127 | 8.219.210.64 3128 | 8.219.222.98 3129 | 8.222.164.209 3130 | 8.222.170.131 3131 | 8.222.181.117 3132 | 8.219.54.203 3133 | 8.219.103.65 3134 | 8.219.109.183 3135 | 8.219.106.156 3136 | 8.219.98.13 3137 | 8.219.78.1 3138 | 8.219.124.227 3139 | 8.219.161.129 3140 | 8.219.164.237 3141 | 8.219.199.220 3142 | 8.219.0.162 3143 | 8.219.4.122 3144 | 8.219.210.64 3145 | 8.219.222.98 3146 | 8.222.164.209 3147 | 8.222.170.131 3148 | 8.222.181.117 3149 | 8.219.54.203 3150 | 8.219.103.65 3151 | 8.219.109.183 3152 | 8.219.106.156 3153 | 8.219.98.13 3154 | 8.219.78.1 3155 | 8.222.208.38 3156 | 8.222.204.128 3157 | 8.219.124.227 3158 | 8.219.110.248 3159 | 8.219.201.8 3160 | 8.219.174.142 3161 | 8.219.161.129 3162 | 8.219.164.237 3163 | 8.219.199.220 3164 | 8.219.201.245 3165 | 129.150.50.63 3166 | 129.150.37.203 3167 | 152.69.219.32 3168 | 168.138.177.109 3169 | 168.138.162.187 3170 | 168.138.191.166 3171 | 168.138.185.234 3172 | 138.2.75.91 3173 | 138.2.94.123 3174 | 8.222.155.206 3175 | 8.222.128.32 3176 | 8.222.164.209 3177 | 8.222.137.192 3178 | 8.219.51.211 3179 | 8.219.66.156 3180 | 8.219.103.65 3181 | 8.219.70.151 3182 | 8.219.50.180 3183 | 8.219.109.183 3184 | 8.219.126.240 3185 | 8.219.174.213 3186 | 8.219.124.227 3187 | 8.219.111.175 3188 | 8.219.114.201 3189 | 8.219.200.145 3190 | 8.222.193.65 3191 | 8.219.237.250 3192 | 8.219.248.47 3193 | 129.150.50.63 3194 | 129.150.37.203 3195 | 152.69.219.32 3196 | 168.138.177.109 3197 | 168.138.162.187 3198 | 168.138.191.166 3199 | 168.138.185.234 3200 | 138.2.75.91 3201 | 138.2.94.123 3202 | 8.222.155.206 3203 | 8.222.128.32 3204 | 8.222.164.209 3205 | 8.222.137.192 3206 | 8.219.51.211 3207 | 8.219.66.156 3208 | 8.219.103.65 3209 | 8.219.70.151 3210 | 8.219.50.180 3211 | 8.219.109.183 3212 | 8.219.126.240 3213 | 8.219.174.213 3214 | 8.219.124.227 3215 | 8.219.111.175 3216 | 8.219.114.201 3217 | 8.219.200.145 3218 | 8.222.193.65 3219 | 8.219.237.250 3220 | 8.219.248.47 3221 | 129.150.51.134 3222 | 129.150.37.203 3223 | 168.138.177.109 3224 | 138.2.75.36 3225 | 152.69.219.32 3226 | 8.219.1.169 3227 | 129.150.51.134 3228 | 129.150.37.203 3229 | 168.138.177.109 3230 | 138.2.75.36 3231 | 152.69.219.32 3232 | 8.219.1.169 3233 | 168.138.177.109 3234 | 168.138.191.166 3235 | 138.2.75.91 3236 | 129.150.37.203 3237 | 129.150.50.63 3238 | 152.69.219.32 3239 | 8.222.128.32 3240 | 168.138.177.109 3241 | 168.138.191.166 3242 | 138.2.75.91 3243 | 129.150.37.203 3244 | 129.150.50.63 3245 | 8.222.128.32 3246 | 129.150.37.203 3247 | 168.138.165.174 3248 | 8.222.155.206 3249 | 129.150.37.203 3250 | 168.138.165.174 3251 | 8.222.155.206 3252 | 129.150.51.134 3253 | 168.138.191.166 3254 | 168.138.177.109 3255 | 168.138.184.172 3256 | 138.2.75.36 3257 | 138.2.79.156 3258 | 8.222.155.206 3259 | 8.222.233.183 3260 | 129.150.51.134 3261 | 168.138.191.166 3262 | 168.138.177.109 3263 | 168.138.184.172 3264 | 138.2.75.36 3265 | 138.2.79.156 3266 | 8.222.155.206 3267 | 8.222.233.183 3268 | 152.69.219.32 3269 | 129.150.37.203 3270 | 168.138.191.166 3271 | -------------------------------------------------------------------------------- /CloudflareST/sgcs.txt: -------------------------------------------------------------------------------- 1 | 168.138.185.234#15.81mb/s 2 | 129.150.37.203#15.70mb/s 3 | -------------------------------------------------------------------------------- /CloudflareST/使用+错误+反馈说明.txt: -------------------------------------------------------------------------------- 1 | 详细使用说明请看: 2 | 3 | Github:https://github.com/XIU2/CloudflareSpeedTest 4 | 5 | 可以去这里向我 [反馈问题、提供建议、询问使用方法] ! 6 | 7 | =================================== 8 | 9 | 提示:MAC 系统下如果遇到提示:open ip.txt: no such file or directory 说明你没有在软件所在目录下运行。 10 | 11 | # 如果平均延迟非常低(如 0.xx),则说明 CloudflareST 测速时走了代理,请先关闭代理软件后再测速。 12 | # 如果在路由器上运行,请先关闭路由器内的代理(或将其排除),否则测速结果可能会不准确/无法使用。 13 | 14 | # 因为每次测速都是在每个 IP 段中随机 IP,所以每次的测速结果都不可能相同,这是正常的! 15 | 16 | # 注意!我发现电脑开机后第一次测速延迟会明显偏高(手动 TCPing 也一样),后续测速都正常 17 | # 因此建议大家开机后第一次正式测速前,先随便测几个 IP(无需等待延迟测速完成,只要进度条动了就可以直接关了) 18 | 19 | =================================== 20 | 21 | # 脚本【cfst_host.sh】的作用是 CloudflareST 测速后获取最快 IP 并替换 Hosts 中的 Cloudflare CDN IP。 22 | # 使用前请先阅读:https://github.com/XIU2/CloudflareSpeedTest/discussions/312#discussioncomment-5161577 23 | 24 | =================================== 25 | 26 | ip.txt 为 IPv4 数据文件 27 | ipv6.txt 为 IPv6 数据文件 28 | 29 | 可以使用 -f xx.txt 参数来指定不同的 IP 数据文件(支持 IPv4 + IPv6 混合测速),如: 30 | ./CloudflareST -f ipv6.txt 31 | 32 | 也可以直接通过参数指定要测速的 IP,如: 33 | ./CloudflareST -ip 1.1.1.1,2606:4700::/32 -------------------------------------------------------------------------------- /FDIP-cesu.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # 设置语言 4 | export LANG=zh_CN.UTF-8 5 | 6 | # 配置目录 7 | BASE_DIR=$(pwd) 8 | FDIP_DIR="${BASE_DIR}/FDIP" 9 | CFST_DIR="${BASE_DIR}/CloudflareST" 10 | URL="https://spurl.api.030101.xyz/50mb" 11 | SAVE_PATH="${FDIP_DIR}/txt.zip" 12 | 13 | # 创建所需目录 14 | mkdir -p "${FDIP_DIR}" 15 | mkdir -p "${CFST_DIR}" 16 | 17 | # 1. 下载 txt.zip 文件 18 | echo "============================开始下载txt.zip=============================" 19 | download_url="https://zip.baipiao.eu.org/" 20 | wget "${download_url}" -O "${SAVE_PATH}" 21 | if [ $? -ne 0 ]; then 22 | echo "下载失败,脚本终止。" 23 | exit 1 24 | fi 25 | 26 | # 2. 解压 txt.zip 文件到 FDIP 文件夹 27 | echo "===============================解压txt.zip===============================" 28 | unzip -o "${SAVE_PATH}" -d "${FDIP_DIR}" 29 | 30 | # 3. 合并并去重指定的文件 31 | echo "==============================合并和去重文件=============================" 32 | #cat "${FDIP_DIR}/45102-1-443.txt" "${FDIP_DIR}/31898-1-443.txt" | sort -u > "${FDIP_DIR}/all.txt" 33 | awk '!seen[$0]++' "${FDIP_DIR}/45102-1-443.txt" "${FDIP_DIR}/31898-1-443.txt" > "${FDIP_DIR}/all.txt" 34 | 35 | # 4. 读取 all.txt 并查询归属地,保留 SG(新加坡)的IP地址到 sg.txt 36 | echo "=========================筛选国家代码为SG的IP地址==========================" 37 | while IFS= read -r ip; do 38 | country_code=$(curl -s "https://ipapi.co/$ip/country/" | tr -d '[:space:]') 39 | if [ "$country_code" == "SG" ]; then 40 | echo $ip >> "${CFST_DIR}/sg.txt" 41 | fi 42 | done < "${FDIP_DIR}/all.txt" 43 | 44 | # 5. 删除 FDIP 文件夹中除了 all.txt 文件之外的所有文件 45 | echo "============================清理不必要的文件=============================" 46 | find "${FDIP_DIR}" -type f ! -name 'all.txt' -delete 47 | 48 | # 6. 下载 CloudflareST_linux_amd64.tar.gz 文件到 CloudflareST 文件夹 49 | echo "=========================下载和解压CloudflareST==========================" 50 | if [ ! -f "${CFST_DIR}/CloudflareST" ]; then 51 | echo "CloudflareST文件不存在,开始下载..." 52 | wget -O "${CFST_DIR}/CloudflareST_linux_amd64.tar.gz" https://github.com/XIU2/CloudflareSpeedTest/releases/download/v2.2.5/CloudflareST_linux_amd64.tar.gz 53 | tar -xzf "${CFST_DIR}/CloudflareST_linux_amd64.tar.gz" -C "${CFST_DIR}" 54 | chmod +x "${CFST_DIR}/CloudflareST" 55 | else 56 | echo "CloudflareST文件已存在,跳过下载步骤。" 57 | fi 58 | 59 | # 7. 执行 CloudflareST 进行测速 60 | echo "======================运行 CloudflareSpeedTest =========================" 61 | "${CFST_DIR}/CloudflareST" -tp 443 -f "${CFST_DIR}/sg.txt" -n 500 -dn 5 -tl 250 -tll 10 -o "${CFST_DIR}/sg.csv" -url "$URL" 62 | 63 | # 8. 从 sg.csv 文件中筛选下载速度高于 5 的 IP地址,并删除重复的 IP 地址行,生成 sgcs.txt 64 | echo "==================筛选下载速度高于 10mb/s 的IP地址并去重====================" 65 | awk -F, '!seen[$1]++' "${CFST_DIR}/sg.csv" | awk -F, 'NR>1 && $6 > 10 {print $1 "#" $6 "mb/s"}' > "${CFST_DIR}/sgcs.txt" 66 | 67 | echo "===============================脚本执行完成===============================" 68 | -------------------------------------------------------------------------------- /FDIP/all.txt: -------------------------------------------------------------------------------- 1 | 8.209.217.106 2 | 8.210.92.27 3 | 47.88.15.127 4 | 47.253.105.131 5 | 47.90.141.204 6 | 8.222.155.206 7 | 8.222.233.183 8 | 8.211.54.130 9 | 47.254.65.110 10 | 129.154.217.98 11 | 129.154.59.235 12 | 129.154.195.33 13 | 150.230.22.124 14 | 150.230.44.13 15 | 150.230.22.37 16 | 150.230.21.108 17 | 129.146.134.77 18 | 129.146.133.33 19 | 129.146.139.227 20 | 129.146.111.62 21 | 144.21.35.195 22 | 144.21.49.243 23 | 144.21.52.250 24 | 144.21.38.69 25 | 144.21.58.49 26 | 144.21.37.207 27 | 144.21.38.243 28 | 144.21.49.16 29 | 144.21.54.165 30 | 144.21.34.196 31 | 144.21.43.202 32 | 144.21.36.134 33 | 144.21.50.121 34 | 132.145.152.194 35 | 132.145.81.117 36 | 141.147.186.227 37 | 141.147.185.215 38 | 141.147.116.29 39 | 141.147.98.16 40 | 141.147.112.74 41 | 141.147.102.138 42 | 141.147.100.133 43 | 141.147.103.21 44 | 141.147.184.160 45 | 141.147.163.68 46 | 141.147.190.128 47 | 141.147.180.146 48 | 155.248.196.123 49 | 132.145.231.148 50 | 132.145.248.107 51 | 141.144.201.115 52 | 141.144.203.81 53 | 141.144.253.109 54 | 141.144.198.182 55 | 141.144.253.239 56 | 141.145.214.176 57 | 141.144.251.58 58 | 141.144.242.39 59 | 141.144.205.174 60 | 141.144.202.49 61 | 141.144.234.194 62 | 141.144.194.193 63 | 141.144.199.102 64 | 141.144.197.111 65 | 141.144.192.159 66 | 141.144.197.88 67 | 141.144.224.109 68 | 138.2.12.215 69 | 143.47.226.50 70 | 143.47.249.13 71 | 143.47.187.51 72 | 143.47.180.116 73 | 143.47.191.234 74 | 143.47.242.178 75 | 143.47.242.195 76 | 143.47.176.218 77 | 144.21.32.64 78 | 143.47.251.15 79 | 143.47.244.56 80 | 143.47.254.155 81 | 143.47.184.95 82 | 152.69.219.32 83 | 152.67.249.123 84 | 130.61.170.78 85 | 144.22.252.124 86 | 150.230.221.148 87 | 158.101.71.60 88 | 158.101.88.190 89 | 158.101.91.79 90 | 158.101.202.190 91 | 158.101.203.144 92 | 158.101.193.166 93 | 158.101.202.159 94 | 158.101.211.98 95 | 158.101.203.189 96 | 158.101.204.78 97 | 158.101.214.80 98 | 158.101.205.86 99 | 158.101.213.116 100 | 158.101.210.110 101 | 158.101.215.51 102 | 158.101.175.51 103 | 158.101.204.68 104 | 158.101.204.63 105 | 158.101.218.78 106 | 132.226.135.150 107 | 132.226.193.6 108 | 132.226.204.171 109 | 138.3.254.39 110 | 138.3.240.46 111 | 138.3.222.33 112 | 140.238.45.139 113 | 140.238.28.86 114 | 152.67.78.184 115 | 152.67.44.30 116 | 140.83.61.244 117 | 140.83.32.93 118 | 140.83.86.166 119 | 146.56.119.252 120 | 141.148.240.162 121 | 141.148.236.187 122 | 141.148.228.199 123 | 141.148.226.85 124 | 141.148.234.255 125 | 141.148.229.106 126 | 141.148.235.2 127 | 150.136.61.148 128 | 193.123.235.170 129 | 168.138.13.201 130 | 64.110.98.49 131 | 64.110.101.125 132 | 64.110.103.69 133 | 64.110.104.30 134 | 164.152.17.14 135 | 158.180.231.216 136 | 129.150.37.203 137 | 140.238.83.184 138 | 140.238.123.26 139 | 129.80.26.68 140 | 152.70.54.171 141 | 152.70.57.246 142 | 152.70.54.51 143 | 152.70.54.168 144 | 152.70.54.71 145 | 152.69.230.10 146 | 152.70.59.9 147 | 152.70.51.67 148 | 152.70.63.181 149 | 152.70.51.3 150 | 152.70.52.215 151 | 152.70.59.66 152 | 152.70.63.215 153 | 129.159.254.43 154 | 129.159.242.3 155 | 129.159.244.175 156 | 129.159.241.55 157 | 129.153.119.97 158 | 130.61.23.77 159 | 130.61.13.225 160 | 129.159.84.71 161 | 129.159.47.255 162 | 138.2.94.123 163 | 138.2.56.246 164 | 138.2.122.191 165 | 138.2.134.182 166 | 138.2.142.10 167 | 138.2.79.156 168 | 129.154.50.159 169 | 129.154.46.115 170 | 155.248.161.108 171 | 152.70.234.188 172 | 158.101.223.170 173 | 158.180.68.56 174 | 140.238.195.98 175 | 140.238.201.118 176 | 140.238.158.238 177 | 144.24.80.56 178 | 144.24.72.124 179 | 144.24.85.158 180 | 144.24.90.107 181 | 144.24.73.164 182 | 131.186.38.109 183 | 131.186.33.175 184 | 131.186.57.251 185 | 129.146.254.39 186 | 129.146.248.140 187 | 144.24.243.207 188 | 193.122.197.111 189 | 193.122.110.171 190 | 138.2.148.137 191 | 138.2.158.238 192 | 138.2.149.95 193 | 138.2.171.95 194 | 138.2.178.47 195 | 138.2.169.143 196 | 138.2.161.196 197 | 138.2.171.47 198 | 152.70.167.245 199 | 152.70.175.95 200 | 152.70.112.158 201 | 152.70.93.127 202 | 152.70.176.110 203 | 152.70.166.114 204 | 152.70.168.106 205 | 152.70.90.168 206 | 141.147.24.137 207 | 141.147.75.81 208 | 141.147.70.161 209 | 141.147.18.216 210 | 141.147.84.127 211 | 141.147.58.171 212 | 141.147.41.217 213 | 141.147.73.208 214 | 141.147.71.126 215 | 141.147.29.16 216 | 141.147.92.122 217 | 141.147.35.200 218 | 141.147.89.162 219 | 141.147.73.148 220 | 141.147.54.4 221 | 141.147.20.184 222 | 150.136.121.64 223 | 150.136.87.192 224 | 168.138.66.11 225 | 129.159.206.161 226 | 129.159.199.200 227 | 129.159.198.174 228 | 129.159.130.38 229 | 132.226.215.78 230 | 132.226.215.232 231 | 132.226.215.116 232 | 134.65.59.100 233 | 150.136.240.243 234 | 150.230.6.108 235 | 150.136.169.72 236 | 130.61.87.219 237 | 192.18.159.129 238 | 152.67.141.238 239 | 152.67.216.255 240 | 152.67.220.47 241 | 152.67.190.105 242 | 152.67.134.173 243 | 152.67.131.43 244 | 150.230.149.208 245 | 150.230.196.248 246 | 150.230.127.1 247 | 150.230.123.153 248 | 150.230.117.21 249 | 150.230.122.76 250 | 150.230.118.106 251 | 129.213.165.166 252 | 129.213.136.180 253 | 130.162.184.173 254 | 130.162.168.246 255 | 130.162.222.60 256 | 130.162.166.85 257 | 130.162.245.57 258 | 130.162.167.248 259 | 130.162.170.211 260 | 130.162.212.150 261 | 130.162.183.116 262 | 130.162.171.124 263 | 130.162.247.158 264 | 130.162.182.0 265 | 130.162.226.233 266 | 130.162.175.158 267 | 130.162.252.159 268 | 130.162.248.112 269 | 192.9.157.76 270 | 192.9.250.241 271 | 192.9.159.65 272 | 204.216.218.114 273 | 132.226.7.217 274 | 132.226.10.246 275 | 144.24.164.201 276 | 144.24.161.133 277 | 144.24.183.11 278 | 130.162.60.147 279 | 168.138.212.87 280 | 168.138.191.166 281 | 168.138.223.86 282 | 168.138.185.234 283 | 168.138.212.80 284 | 168.138.219.157 285 | 193.123.36.225 286 | 193.123.39.186 287 | 193.123.33.235 288 | 193.123.61.136 289 | 193.123.81.105 290 | 193.122.11.139 291 | 193.122.57.225 292 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## yx_ips.py功能 2 | 3 | 1. 从五个公开的网页抓取ip、线路、延迟数据 4 | https://cf.090227.xyz 5 | https://stock.hostmonit.com/CloudFlareYes 6 | https://ip.164746.xyz 7 | https://monitor.gacjie.cn/page/cloudflare/ipv4.html 8 | https://345673.xyz 9 | 10 | 3. 将获取的数据进行筛选、去重,按国家命名,并在仓库内生成`yx.ips.txt`文件 11 | 12 | 4. 从`yx.ips.txt`文件中提取ip地址,将延迟低于100ms的IP自动更新到cf子域名的dns记录中(先清空再更新,不影响根域名) 13 | 14 | 6. 配置`github actions`脚本`yx_ips.yml`实现每12小时更新一次`yx_ips.txt`文件 15 | 16 | ## FDIP-cesu.sh功能 17 | 18 | 1. 从`白嫖哥的反代ip库`下载数据包 [下载地址](https://zip.baipiao.eu.org/) 19 | 20 | 2. 对ip库进行删选,只保留`45102-1-443.txt`和`31898-1-443.txt` 21 | 22 | 3. 合并、去重,对合并后的IP进行归属地查询,只保留归属为`新加坡`的IP地址 23 | 24 | 4. 对筛选出的新加坡反代IP进行测速,测速工具为`CloudflareST` 25 | 26 | 6. 保留下载速度高于`6mb/s`的ip,写入到`sgcs.txt`文件中 27 | 28 | 7. 配置`github actions`每6小时自动运行一次 29 | 30 | ## sgfd_ips.py功能 31 | 32 | 1. 从获取ip地址,[项目地址](https://github.com/ymyuuu/IPDB) 33 | 34 | 2. 筛选其中归属地为`SG`的ip,并按照`IP#SG`的格式写入`sgfd_ips.txt`文件中 35 | 36 | 3. 将上述测速过的`sgcs.txt`文件中的IP地址按照`IP#SG`的格式合并到`sgfd_ips.txt`文件中 37 | 38 | 4. 将获取到的IP地址更新到cf的子域名dns记录中(先清空再更新,不影响根域名) 39 | 40 | 5. 配置`github actions`脚本`sgfd_ips.yml`实现每6小时更新一次`sgfd_ips.txt`文件 41 | 42 | ## Github Actions的部署方式 43 | 44 | ### 首先添加环境变量 45 | > 需要脚本中代码支持才能生效 46 | 47 | - 依次点击`Settings`-->`Secrets and variables`-->`Secrets and variables`-->`Actions`,添加以下环境变量 48 | - `CF_API_EMAIL` = 你的cf邮箱用户名 49 | - `CF_API_KEY` = 你的cf API,不能使用全局API,新建一个具有dns读写权限的API。如何新建请自行谷歌 50 | - `CF_ZONE_ID` = 你域名的区域ID,在你的cf域名主页右下角可以找到 51 | - `CF_DOMAIN_NAME` = 你需要更新dns的子域名,如`cdn.yutian.xyz` 52 | 53 | - 依次点击`Settings`-->`Actions`-->`General`,找到`Workflow permissions`,选择`Read and write permissions`可读写权限 54 | 55 | ### 修改自动运行频率 56 | 57 | - 打开`.github/workflows/`文件夹中的`yml`文件 58 | 59 | - 修改第5行`- cron: '0 0/12 * * *' # 每12小时运行一次`中的参数 60 | 61 | ## 其他说明 62 | 63 | 可以添加同类型的其他网页抓取更多数据,自行在`py`文件的`urls`参数中添加, 64 | 65 | 但是必须注意:*网页内容必须是可以直接获取ip数据的直链API地址,如果不是,需要解析网页数据结构,请自行修改代码。* 66 | 67 | **将你已更新DNS的域名设置到cm大佬的的edge项目中的`ADD`变量,享受大佬们的成果吧** 68 | 69 | [CM项目地址](https://github.com/cmliu/edgetunnel) 70 | 71 | [CM订阅器地址](https://github.com/cmliu/WorkerVless2sub) 72 | 73 | [测速工具CloudflareST](https://github.com/XIU2/CloudflareSpeedTest) 74 | 75 | -------------------------------------------------------------------------------- /sgfd_ips.txt: -------------------------------------------------------------------------------- 1 | 8.212.41.98#SG 2 | -------------------------------------------------------------------------------- /sgfdip.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import os 3 | from ipwhois import IPWhois 4 | 5 | # 配置 6 | CF_API_KEY = os.getenv('CF_API_KEY') 7 | CF_ZONE_YID = os.getenv('CF_ZONE_YID') 8 | CF_DNS_NAME = os.getenv('CF_DNS_NAME') 9 | FILE_PATH = 'sgfd_ips.txt' 10 | SGCS_FILE_PATH = 'CloudflareST/sgcs.txt' 11 | 12 | # 第一步:从URL和本地文件获取IP数据 13 | def get_ip_data(): 14 | url1 = 'https://raw.githubusercontent.com/ymyuuu/IPDB/main/bestproxy.txt' 15 | 16 | response1 = requests.get(url1) 17 | ip_list1 = response1.text.splitlines() 18 | 19 | # 从本地文件获取IP数据 20 | ip_list2 = [] 21 | if os.path.exists(SGCS_FILE_PATH): 22 | with open(SGCS_FILE_PATH, 'r') as f: 23 | ip_list2 = f.read().splitlines() 24 | 25 | # 合并IP地址列表 26 | ip_list = ip_list1 + ip_list2 27 | return ip_list 28 | 29 | # 新步骤:去除IP地址中的速度信息 30 | def clean_ip_data(ip_list): 31 | cleaned_ips = [] 32 | for ip in ip_list: 33 | cleaned_ip = ip.split('#')[0] # 去除速度信息,只保留IP地址 34 | cleaned_ips.append(cleaned_ip) 35 | return cleaned_ips 36 | 37 | # 第二步:过滤新加坡IP地址,并格式化为IP#SG的形式 38 | def filter_and_format_ips(ip_list): 39 | singapore_ips = [] 40 | for ip in ip_list: 41 | ip = ip.split('#')[0] # 再次确保去除速度信息 42 | try: 43 | obj = IPWhois(ip) 44 | results = obj.lookup_rdap() 45 | if results['network']['country'] == 'SG': 46 | singapore_ips.append(f"{ip}#SG") 47 | except Exception as e: 48 | print(f"Error processing IP {ip}: {e}") 49 | return singapore_ips 50 | 51 | # 新步骤:去除重复的IP地址 52 | def remove_duplicate_ips(ip_addresses): 53 | seen_ips = set() 54 | unique_ips = [] 55 | for ip in ip_addresses: 56 | ip_base = ip.split('#')[0] 57 | if ip_base not in seen_ips: 58 | seen_ips.add(ip_base) 59 | unique_ips.append(ip) 60 | return unique_ips 61 | 62 | # 第三步:将格式化后的新加坡IP地址写入到sgfd_ips.txt文件 63 | def write_to_file(ip_addresses): 64 | with open(FILE_PATH, 'w') as f: 65 | for ip in ip_addresses: 66 | f.write(ip + '\n') 67 | 68 | # 第四步:清除指定Cloudflare域名的所有DNS记录 69 | def clear_dns_records(): 70 | headers = { 71 | 'Authorization': f'Bearer {CF_API_KEY}', 72 | 'Content-Type': 'application/json', 73 | } 74 | 75 | # 获取现有的DNS记录 76 | dns_records_url = f'https://api.cloudflare.com/client/v4/zones/{CF_ZONE_YID}/dns_records' 77 | dns_records = requests.get(dns_records_url, headers=headers).json() 78 | 79 | # 删除旧的DNS记录 80 | for record in dns_records['result']: 81 | if record['name'] == CF_DNS_NAME: 82 | delete_url = f'https://api.cloudflare.com/client/v4/zones/{CF_ZONE_YID}/dns_records/{record["id"]}' 83 | requests.delete(delete_url, headers=headers) 84 | 85 | # 第五步:更新Cloudflare域名的DNS记录为sgfd_ips.txt文件中的IP地址 86 | def update_dns_records(): 87 | with open(FILE_PATH, 'r') as f: 88 | ips_to_update = [line.split('#')[0].strip() for line in f] 89 | 90 | headers = { 91 | 'Authorization': f'Bearer {CF_API_KEY}', 92 | 'Content-Type': 'application/json', 93 | } 94 | 95 | dns_records_url = f'https://api.cloudflare.com/client/v4/zones/{CF_ZONE_YID}/dns_records' 96 | for ip in ips_to_update: 97 | data = { 98 | 'type': 'A', 99 | 'name': CF_DNS_NAME, 100 | 'content': ip, 101 | 'ttl': 60, 102 | 'proxied': False, 103 | } 104 | response = requests.post(dns_records_url, headers=headers, json=data) 105 | if response.status_code == 200: 106 | print(f"Successfully updated DNS record for {CF_DNS_NAME} to {ip}") 107 | else: 108 | print(f"Failed to update DNS record for {CF_DNS_NAME} to {ip}. Status code: {response.status_code}") 109 | 110 | # 主函数:按顺序执行所有步骤 111 | def main(): 112 | # 第一步:获取IP数据 113 | ip_list = get_ip_data() 114 | 115 | # 新步骤:去除IP地址中的速度信息 116 | cleaned_ip_list = clean_ip_data(ip_list) 117 | 118 | # 第二步:过滤并格式化新加坡IP地址 119 | singapore_ips = filter_and_format_ips(cleaned_ip_list) 120 | 121 | # 新步骤:去除重复的IP地址 122 | unique_singapore_ips = remove_duplicate_ips(singapore_ips) 123 | 124 | # 如果没有找到符合条件的新加坡IP,则不执行任何操作 125 | if not unique_singapore_ips: 126 | print("No Singapore IPs found. Keeping existing sgfd_ips.txt file.") 127 | return 128 | 129 | # 第三步:将格式化后的新加坡IP地址写入文件 130 | write_to_file(unique_singapore_ips) 131 | 132 | # 第四步:清除指定Cloudflare域名的所有DNS记录 133 | clear_dns_records() 134 | 135 | # 第五步:更新Cloudflare域名的DNS记录为sgfd_ips.txt文件中的IP地址 136 | update_dns_records() 137 | 138 | if __name__ == "__main__": 139 | main() 140 | -------------------------------------------------------------------------------- /yx_ips.py: -------------------------------------------------------------------------------- 1 | import os 2 | import requests 3 | from bs4 import BeautifulSoup 4 | import re 5 | 6 | # Cloudflare API配置信息 7 | CF_API_KEY = os.getenv('CF_API_KEY') 8 | CF_ZONE_ID = os.getenv('CF_ZONE_ID') 9 | CF_DOMAIN_NAME = os.getenv('CF_DOMAIN_NAME') 10 | CF_API_EMAIL = os.getenv('CF_API_EMAIL') 11 | 12 | # 定义请求头 13 | headers = { 14 | 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' 15 | } 16 | 17 | # 定义五个网址 18 | urls = [ 19 | "https://cf.090227.xyz/", 20 | "https://stock.hostmonit.com/CloudFlareYes", 21 | "https://ip.164746.xyz/", 22 | "https://monitor.gacjie.cn/page/cloudflare/ipv4.html", 23 | "https://345673.xyz/" 24 | ] 25 | 26 | # 解析延迟数据的正则表达式 27 | latency_pattern = re.compile(r'(\d+(\.\d+)?)\s*(ms|毫秒)?') 28 | 29 | # 提取表格数据的函数 30 | def extract_table_data(url): 31 | try: 32 | response = requests.get(url, headers=headers) 33 | if response.status_code == 200: 34 | soup = BeautifulSoup(response.content, 'html.parser') 35 | return soup 36 | else: 37 | print(f"Failed to fetch data from {url}. Status code: {response.status_code}") 38 | except requests.RequestException as e: 39 | print(f"Request failed for {url}: {e}") 40 | return None 41 | 42 | # 处理每个网址的数据 43 | def process_site_data(url): 44 | soup = extract_table_data(url) 45 | if not soup: 46 | return [] 47 | 48 | data = [] 49 | if "cf.090227.xyz" in url: 50 | rows = soup.find_all('tr') 51 | for row in rows: 52 | columns = row.find_all('td') 53 | if len(columns) >= 3: 54 | line_name = columns[0].text.strip() 55 | ip_address = columns[1].text.strip() 56 | latency_text = columns[2].text.strip() 57 | latency_match = latency_pattern.match(latency_text) 58 | if latency_match: 59 | latency_value = latency_match.group(1) 60 | latency_unit = 'ms' 61 | data.append(f"{ip_address}#{line_name}-{latency_value}{latency_unit}") 62 | 63 | elif "stock.hostmonit.com" in url: 64 | rows = soup.find_all('tr', class_=re.compile(r'el-table__row')) 65 | for row in rows: 66 | columns = row.find_all('td') 67 | if len(columns) >= 3: 68 | line_name = columns[0].text.strip() 69 | ip_address = columns[1].text.strip() 70 | latency_text = columns[2].text.strip() 71 | latency_match = latency_pattern.match(latency_text) 72 | if latency_match: 73 | latency_value = latency_match.group(1) 74 | latency_unit = 'ms' 75 | data.append(f"{ip_address}#{line_name}-{latency_value}{latency_unit}") 76 | 77 | elif "ip.164746.xyz" in url: 78 | rows = soup.find_all('tr') 79 | for row in rows: 80 | columns = row.find_all('td') 81 | if len(columns) >= 5: 82 | ip_address = columns[0].text.strip() 83 | latency_text = columns[4].text.strip() 84 | latency_match = latency_pattern.match(latency_text) 85 | if latency_match: 86 | latency_value = latency_match.group(1) 87 | latency_unit = 'ms' 88 | data.append(f"{ip_address}-{latency_value}{latency_unit}") 89 | 90 | elif "monitor.gacjie.cn" in url: 91 | rows = soup.find_all('tr') 92 | for row in rows: 93 | tds = row.find_all('td') 94 | if len(tds) >= 5: 95 | line_name = tds[0].text.strip() 96 | ip_address = tds[1].text.strip() 97 | latency_text = tds[4].text.strip() 98 | latency_match = latency_pattern.match(latency_text) 99 | if latency_match: 100 | latency_value = latency_match.group(1) 101 | latency_unit = 'ms' 102 | data.append(f"{ip_address}#{line_name}-{latency_value}{latency_unit}") 103 | 104 | elif "345673.xyz" in url: 105 | rows = soup.find_all('tr', class_=re.compile(r'line-cm|line-ct|line-cu')) 106 | for row in rows: 107 | tds = row.find_all('td') 108 | if len(tds) >= 4: 109 | line_name = tds[0].text.strip() 110 | ip_address = tds[1].text.strip() 111 | latency_text = tds[3].text.strip() 112 | latency_match = latency_pattern.match(latency_text) 113 | if latency_match: 114 | latency_value = latency_match.group(1) 115 | latency_unit = 'ms' 116 | data.append(f"{ip_address}#{line_name}-{latency_value}{latency_unit}") 117 | 118 | return data 119 | 120 | # 主函数,处理所有网站的数据 121 | def main(): 122 | all_data = [] 123 | for url in urls: 124 | site_data = process_site_data(url) 125 | all_data.extend(site_data) 126 | 127 | # 去除重复的IP地址行 128 | unique_data = list(set(all_data)) 129 | 130 | # 过滤延迟数据低于100ms的行 131 | filtered_data = [line for line in unique_data if float(line.split('-')[-1].replace('ms', '')) < 100] 132 | 133 | # 写入到yx_ips.txt文件 134 | with open('yx_ips.txt', 'w', encoding='utf-8') as f: 135 | for line in filtered_data: 136 | f.write(line + '\n') 137 | 138 | # 执行清空DNS记录的操作 139 | clear_dns_records() 140 | 141 | # 从yx_ips.txt文件中提取IPv4地址 142 | with open("yx_ips.txt", "r") as file: 143 | ipv4 = [line.split('#')[0] for line in file if '#' in line] 144 | 145 | # 执行添加DNS记录的操作 146 | for ip in ipv4: 147 | add_dns_record(ip) 148 | 149 | # 清空CF_DOMAIN_NAME的所有DNS记录 150 | def clear_dns_records(): 151 | url = f"https://api.cloudflare.com/client/v4/zones/{CF_ZONE_ID}/dns_records?name={CF_DOMAIN_NAME}" 152 | headers = { 153 | "Authorization": f"Bearer {CF_API_KEY}", 154 | "X-Auth-Email": CF_API_EMAIL, 155 | "Content-Type": "application/json" 156 | } 157 | 158 | response = requests.get(url, headers=headers) 159 | if response.status_code == 200: 160 | records = response.json().get('result', []) 161 | for record in records: 162 | delete_url = f"https://api.cloudflare.com/client/v4/zones/{CF_ZONE_ID}/dns_records/{record['id']}" 163 | delete_response = requests.delete(delete_url, headers=headers) 164 | if delete_response.status_code == 200: 165 | print(f"Successfully deleted DNS record: {record['id']}") 166 | else: 167 | print(f"Failed to delete DNS record: {record['id']}, status code: {delete_response.status_code}, response: {delete_response.text}") 168 | else: 169 | print(f"Failed to fetch DNS records, status code: {response.status_code}, response: {response.text}") 170 | 171 | # 添加新的IPv4地址为DNS记录,在 add_dns_record 函数中添加调试输出 172 | def add_dns_record(ip): 173 | # 重新获取 ipv4 地址 174 | with open("yx_ips.txt", "r") as file: 175 | ipv4 = [line.split('#')[0] for line in file if '#' in line] 176 | 177 | print(f"Adding DNS record for IP: {ip}") 178 | url = f"https://api.cloudflare.com/client/v4/zones/{CF_ZONE_ID}/dns_records" 179 | headers = { 180 | "Authorization": f"Bearer {CF_API_KEY}", 181 | "X-Auth-Email": CF_API_EMAIL, 182 | "Content-Type": "application/json" 183 | } 184 | data = { 185 | "type": "A", 186 | "name": CF_DOMAIN_NAME, 187 | "content": ip, 188 | "ttl": 60, # 设置TTL为1分钟 189 | "proxied": False 190 | } 191 | response = requests.post(url, headers=headers, json=data) 192 | if response.status_code == 200: 193 | print(f"Successfully created DNS record for IP: {ip}") 194 | else: 195 | print(f"Failed to create DNS record for IP: {ip}, status code: {response.status_code}, response: {response.text}") 196 | 197 | if __name__ == "__main__": 198 | main() 199 | -------------------------------------------------------------------------------- /yx_ips.txt: -------------------------------------------------------------------------------- 1 | 104.19.34.21#移动-43.68ms 2 | 104.19.32.105#移动-43.69ms 3 | 104.19.56.105#移动-59.93ms 4 | 104.19.34.22#移动-43.30ms 5 | 104.19.35.95#移动-44.19ms 6 | 104.19.32.174#移动-43.87ms 7 | 104.19.33.145#移动-43.25ms 8 | 104.19.35.76#移动-43.32ms 9 | 104.19.33.181#移动-43.37ms 10 | 104.19.32.151#移动-44.00ms 11 | 162.159.134.142#国内-94ms 12 | 104.19.32.146#移动-43.41ms 13 | 104.18.91.231#移动-74ms 14 | 104.16.13.144#移动-57.87ms 15 | 104.19.35.128#移动-44.15ms 16 | 104.19.48.61#移动-59.93ms 17 | 104.26.4.213#移动-57.22ms 18 | 104.19.32.108#移动-43.59ms 19 | 104.19.32.153#移动-43.68ms 20 | 104.19.32.96#移动-43.47ms 21 | 104.19.34.24#移动-43.73ms 22 | 104.19.33.172#移动-44.26ms 23 | 162.159.134.153#移动-66ms 24 | 104.25.246.246#移动-59.59ms 25 | 104.19.32.150#移动-43.67ms 26 | 104.19.32.97#移动-42.98ms 27 | 104.19.32.106#移动-43.77ms 28 | 104.19.33.154#移动-43.19ms 29 | --------------------------------------------------------------------------------