mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-27 08:31:44 +08:00
Compare commits
2 Commits
6f6afeffd3
...
41b5a34a17
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41b5a34a17 | ||
|
|
659160b4a9 |
@ -6,12 +6,12 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ddns-go
|
||||
PKG_VERSION:=6.16.2
|
||||
PKG_VERSION:=6.17.1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/jeessy2/ddns-go/tar.gz/v$(PKG_VERSION)?
|
||||
PKG_HASH:=1a92f53e50c8ca81e20c15c6dbaf490544f1a7b7b8c8d1c4c60ad8f1bc890276
|
||||
PKG_HASH:=b1693abe90941d9d6eaf893e73bd05c1e122cd2fff5f69409987b524b12f2ad0
|
||||
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
@ -58,4 +58,4 @@ define Package/ddns-go/install
|
||||
endef
|
||||
|
||||
$(eval $(call GoBinPackage,ddns-go))
|
||||
$(eval $(call BuildPackage,ddns-go))
|
||||
$(eval $(call BuildPackage,ddns-go))
|
||||
|
||||
@ -1610,10 +1610,14 @@ function parse_realm_uri(uri)
|
||||
local scheme, token, server_url, realm_id, query = trim(uri):match("^(realm%+http|realm)://([^@]+)@([^/]+)/([^?]*)%??(.*)$")
|
||||
if not scheme or not token or not server_url or not realm_id then return nil end
|
||||
realm_id = realm_id:gsub("/+$", "")
|
||||
local address, port = server_url:match("^%[?([^%]]+)%]?:?(%d*)$")
|
||||
port = tonumber(port) or (scheme == "realm+http" and 80 or 443)
|
||||
local realm = {
|
||||
scheme = scheme,
|
||||
token = token,
|
||||
server_url = server_url,
|
||||
address = address,
|
||||
port = port,
|
||||
realm_id = realm_id
|
||||
}
|
||||
-- 解析 query 中的 stun=
|
||||
|
||||
@ -586,6 +586,8 @@ function gen_outbound(flag, node, tag, proxy_table)
|
||||
realm.server_url = (realm.scheme == "realm+http" and "http://" or "https://") .. realm.server_url
|
||||
realm.stun_servers = realm.stun_servers or node.hysteria2_realm_stun
|
||||
realm.scheme = nil
|
||||
realm.address = nil
|
||||
realm.port = nil
|
||||
return realm
|
||||
end
|
||||
return nil
|
||||
@ -933,6 +935,8 @@ function gen_config_server(node)
|
||||
realm.server_url = (realm.scheme == "realm+http" and "http://" or "https://") .. realm.server_url
|
||||
realm.stun_servers = realm.stun_servers or node.hysteria2_realm_stun
|
||||
realm.scheme = nil
|
||||
realm.address = nil
|
||||
realm.port = nil
|
||||
realm.stun_domain_resolver = "direct"
|
||||
return realm
|
||||
end
|
||||
|
||||
@ -389,6 +389,14 @@ function gen_outbound(flag, node, tag, proxy_table)
|
||||
}
|
||||
}
|
||||
|
||||
if node.protocol == "hysteria" and node.hysteria2_realms then
|
||||
local realm = api.parse_realm_uri(node.hysteria2_realm_url)
|
||||
if realm then
|
||||
result.settings.address = realm.address
|
||||
result.settings.port = realm.port
|
||||
end
|
||||
end
|
||||
|
||||
if node.protocol == "wireguard" then
|
||||
result.settings.noKernelTun = true
|
||||
if node.finalmask and node.finalmask ~= "" then
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -202,12 +202,11 @@
|
||||
103.125.236.0/22
|
||||
103.126.1.0/24
|
||||
103.126.124.0/22
|
||||
103.13.12.0/24
|
||||
103.13.244.0/22
|
||||
103.130.160.0/23
|
||||
103.131.138.0/23
|
||||
103.131.152.0/22
|
||||
103.131.168.0/22
|
||||
103.131.168.0/23
|
||||
103.132.212.0/23
|
||||
103.132.22.0/23
|
||||
103.133.128.0/23
|
||||
@ -239,7 +238,6 @@
|
||||
103.149.244.0/22
|
||||
103.15.4.0/22
|
||||
103.15.96.0/22
|
||||
103.150.10.0/23
|
||||
103.150.164.0/23
|
||||
103.150.24.0/23
|
||||
103.151.148.0/23
|
||||
@ -265,7 +263,7 @@
|
||||
103.162.10.0/23
|
||||
103.163.180.0/24
|
||||
103.163.46.0/23
|
||||
103.164.32.0/23
|
||||
103.164.32.0/24
|
||||
103.165.110.0/23
|
||||
103.169.50.0/23
|
||||
103.169.62.0/23
|
||||
@ -307,7 +305,6 @@
|
||||
103.197.0.0/22
|
||||
103.197.228.0/22
|
||||
103.198.124.0/22
|
||||
103.198.180.0/23
|
||||
103.198.216.0/21
|
||||
103.198.224.0/20
|
||||
103.198.244.0/22
|
||||
@ -324,6 +321,8 @@
|
||||
103.200.220.0/22
|
||||
103.200.224.0/24
|
||||
103.201.192.0/24
|
||||
103.201.196.0/24
|
||||
103.201.200.0/24
|
||||
103.202.0.0/19
|
||||
103.202.112.0/22
|
||||
103.202.120.0/21
|
||||
@ -362,8 +361,7 @@
|
||||
103.213.144.0/23
|
||||
103.213.148.0/22
|
||||
103.213.160.0/19
|
||||
103.213.48.0/21
|
||||
103.213.60.0/22
|
||||
103.213.48.0/20
|
||||
103.213.64.0/19
|
||||
103.213.96.0/22
|
||||
103.214.48.0/22
|
||||
@ -382,8 +380,6 @@
|
||||
103.219.184.0/22
|
||||
103.219.24.0/21
|
||||
103.219.32.0/21
|
||||
103.219.85.0/24
|
||||
103.219.86.0/23
|
||||
103.219.92.0/24
|
||||
103.22.188.0/22
|
||||
103.22.252.0/22
|
||||
@ -406,7 +402,6 @@
|
||||
103.224.220.0/22
|
||||
103.224.232.0/22
|
||||
103.226.57.0/24
|
||||
103.226.59.0/24
|
||||
103.227.120.0/22
|
||||
103.227.136.0/22
|
||||
103.227.228.0/22
|
||||
@ -433,7 +428,7 @@
|
||||
103.232.144.0/22
|
||||
103.232.166.0/23
|
||||
103.233.128.0/22
|
||||
103.233.136.0/23
|
||||
103.233.136.0/24
|
||||
103.233.138.0/24
|
||||
103.233.162.0/23
|
||||
103.233.4.0/22
|
||||
@ -454,8 +449,7 @@
|
||||
103.236.52.0/22
|
||||
103.236.56.0/21
|
||||
103.236.64.0/19
|
||||
103.236.96.0/23
|
||||
103.236.98.0/24
|
||||
103.236.96.0/22
|
||||
103.237.176.0/20
|
||||
103.237.192.0/19
|
||||
103.237.224.0/20
|
||||
@ -465,6 +459,7 @@
|
||||
103.237.8.0/22
|
||||
103.238.0.0/21
|
||||
103.238.132.0/22
|
||||
103.238.140.0/22
|
||||
103.238.144.0/22
|
||||
103.238.16.0/22
|
||||
103.238.160.0/22
|
||||
@ -521,6 +516,7 @@
|
||||
103.25.36.0/22
|
||||
103.25.64.0/23
|
||||
103.250.104.0/22
|
||||
103.250.124.0/22
|
||||
103.250.192.0/22
|
||||
103.250.216.0/22
|
||||
103.250.248.0/21
|
||||
@ -647,11 +643,11 @@
|
||||
103.48.235.0/24
|
||||
103.49.108.0/22
|
||||
103.49.12.0/22
|
||||
103.49.176.0/24
|
||||
103.5.192.0/23
|
||||
103.5.194.0/24
|
||||
103.5.52.0/24
|
||||
103.52.100.0/22
|
||||
103.52.104.0/23
|
||||
103.52.172.0/22
|
||||
103.52.176.0/22
|
||||
103.52.196.0/22
|
||||
@ -672,7 +668,8 @@
|
||||
103.57.139.0/24
|
||||
103.59.112.0/21
|
||||
103.59.124.0/22
|
||||
103.59.148.0/22
|
||||
103.59.148.0/23
|
||||
103.59.151.0/24
|
||||
103.59.168.0/23
|
||||
103.6.220.0/22
|
||||
103.60.164.0/22
|
||||
@ -725,7 +722,7 @@
|
||||
103.78.228.0/22
|
||||
103.78.60.0/22
|
||||
103.79.200.0/22
|
||||
103.79.228.0/24
|
||||
103.79.228.0/23
|
||||
103.79.24.0/22
|
||||
103.8.220.0/22
|
||||
103.8.32.0/22
|
||||
@ -773,6 +770,7 @@
|
||||
103.96.8.0/22
|
||||
103.97.112.0/23
|
||||
103.97.144.0/22
|
||||
103.97.175.0/24
|
||||
103.97.60.0/24
|
||||
103.98.125.0/24
|
||||
103.98.127.0/24
|
||||
@ -786,6 +784,7 @@
|
||||
103.99.104.0/22
|
||||
104.192.108.0/23
|
||||
104.192.110.0/24
|
||||
104.234.102.0/24
|
||||
106.0.4.0/22
|
||||
106.108.0.0/14
|
||||
106.11.0.0/16
|
||||
@ -806,8 +805,6 @@
|
||||
106.2.112.0/21
|
||||
106.2.124.0/22
|
||||
106.2.128.0/19
|
||||
106.2.224.0/24
|
||||
106.2.232.0/21
|
||||
106.2.37.0/24
|
||||
106.2.40.0/23
|
||||
106.2.42.0/24
|
||||
@ -853,6 +850,7 @@
|
||||
106.80.0.0/13
|
||||
106.88.0.0/14
|
||||
106.92.0.0/16
|
||||
107.158.37.0/24
|
||||
108.165.168.0/24
|
||||
108.165.240.0/24
|
||||
109.244.0.0/16
|
||||
@ -862,8 +860,6 @@
|
||||
110.115.128.0/17
|
||||
110.116.0.0/16
|
||||
110.120.0.0/16
|
||||
110.124.0.0/16
|
||||
110.125.128.0/17
|
||||
110.152.0.0/14
|
||||
110.156.0.0/15
|
||||
110.16.0.0/14
|
||||
@ -911,10 +907,7 @@
|
||||
111.120.0.0/14
|
||||
111.124.0.0/16
|
||||
111.126.0.0/15
|
||||
111.128.0.0/16
|
||||
111.132.0.0/16
|
||||
111.142.0.0/15
|
||||
111.144.0.0/14
|
||||
111.148.0.0/16
|
||||
111.149.0.0/24
|
||||
111.160.0.0/13
|
||||
@ -1057,7 +1050,7 @@
|
||||
114.113.223.0/24
|
||||
114.113.224.0/20
|
||||
114.113.63.0/24
|
||||
114.113.64.0/20
|
||||
114.113.64.0/22
|
||||
114.113.80.0/22
|
||||
114.113.84.0/24
|
||||
114.113.88.0/21
|
||||
@ -1075,7 +1068,6 @@
|
||||
114.135.0.0/16
|
||||
114.138.0.0/15
|
||||
114.141.128.0/18
|
||||
114.142.142.0/23
|
||||
114.196.0.0/15
|
||||
114.212.0.0/14
|
||||
114.216.0.0/13
|
||||
@ -1092,7 +1084,7 @@
|
||||
114.66.240.0/20
|
||||
114.66.64.0/24
|
||||
114.66.72.0/21
|
||||
114.66.80.0/23
|
||||
114.66.81.0/24
|
||||
114.67.128.0/17
|
||||
114.67.16.0/21
|
||||
114.67.48.0/24
|
||||
@ -1146,6 +1138,7 @@
|
||||
115.32.64.0/19
|
||||
115.33.0.0/19
|
||||
115.33.128.0/20
|
||||
115.33.64.0/18
|
||||
115.44.0.0/15
|
||||
115.46.0.0/16
|
||||
115.48.0.0/12
|
||||
@ -1219,6 +1212,10 @@
|
||||
116.214.132.0/23
|
||||
116.214.134.0/24
|
||||
116.214.32.0/19
|
||||
116.218.0.0/18
|
||||
116.218.128.0/20
|
||||
116.218.144.0/21
|
||||
116.218.64.0/19
|
||||
116.224.0.0/12
|
||||
116.242.0.0/16
|
||||
116.246.0.0/15
|
||||
@ -1234,6 +1231,7 @@
|
||||
116.66.123.0/24
|
||||
116.66.36.0/24
|
||||
116.66.48.0/23
|
||||
116.66.50.0/24
|
||||
116.66.53.0/24
|
||||
116.66.54.0/23
|
||||
116.66.98.0/24
|
||||
@ -1437,6 +1435,8 @@
|
||||
119.148.160.0/20
|
||||
119.15.136.0/23
|
||||
119.15.140.0/23
|
||||
119.16.0.0/17
|
||||
119.16.128.0/18
|
||||
119.161.120.0/22
|
||||
119.161.124.0/24
|
||||
119.161.183.0/24
|
||||
@ -1562,6 +1562,8 @@
|
||||
119.91.0.0/16
|
||||
119.96.0.0/13
|
||||
120.0.0.0/12
|
||||
120.130.0.0/18
|
||||
120.130.64.0/19
|
||||
120.131.0.0/19
|
||||
120.131.124.0/22
|
||||
120.131.88.0/21
|
||||
@ -1660,9 +1662,9 @@
|
||||
121.69.0.0/16
|
||||
121.70.0.0/17
|
||||
121.76.0.0/15
|
||||
121.79.128.0/20
|
||||
121.79.144.0/22
|
||||
121.79.148.0/24
|
||||
121.79.131.0/24
|
||||
121.79.132.0/24
|
||||
121.79.134.0/23
|
||||
121.8.0.0/13
|
||||
121.89.0.0/16
|
||||
121.91.104.0/21
|
||||
@ -1766,11 +1768,7 @@
|
||||
122.72.3.0/24
|
||||
122.72.38.0/24
|
||||
122.72.57.0/24
|
||||
122.77.240.0/24
|
||||
122.84.0.0/16
|
||||
122.9.0.0/16
|
||||
122.90.0.0/16
|
||||
122.91.0.0/17
|
||||
122.94.0.0/16
|
||||
122.96.0.0/15
|
||||
123.101.0.0/16
|
||||
@ -1802,6 +1800,7 @@
|
||||
123.244.0.0/14
|
||||
123.249.0.0/17
|
||||
123.253.224.0/23
|
||||
123.253.226.0/24
|
||||
123.254.96.0/21
|
||||
123.4.0.0/14
|
||||
123.49.192.0/23
|
||||
@ -1841,7 +1840,6 @@
|
||||
123.66.0.0/16
|
||||
123.77.0.0/16
|
||||
123.8.0.0/13
|
||||
123.82.0.0/17
|
||||
123.83.128.0/17
|
||||
123.88.0.0/15
|
||||
123.90.0.0/16
|
||||
@ -1851,19 +1849,19 @@
|
||||
124.126.0.0/15
|
||||
124.128.0.0/13
|
||||
124.14.1.0/24
|
||||
124.14.10.0/24
|
||||
124.14.12.0/22
|
||||
124.14.16.0/21
|
||||
124.14.2.0/23
|
||||
124.14.224.0/19
|
||||
124.14.5.0/24
|
||||
124.14.64.0/18
|
||||
124.14.7.0/24
|
||||
124.14.8.0/21
|
||||
124.14.8.0/24
|
||||
124.151.0.0/16
|
||||
124.152.0.0/16
|
||||
124.16.0.0/15
|
||||
124.160.0.0/13
|
||||
124.172.0.0/15
|
||||
124.174.0.0/16
|
||||
124.172.0.0/14
|
||||
124.192.0.0/15
|
||||
124.196.12.0/23
|
||||
124.196.25.0/24
|
||||
@ -1943,13 +1941,13 @@
|
||||
125.98.122.0/23
|
||||
125.98.128.0/17
|
||||
128.108.0.0/16
|
||||
128.14.116.0/24
|
||||
129.204.0.0/16
|
||||
129.211.0.0/16
|
||||
129.28.0.0/16
|
||||
132.232.0.0/16
|
||||
132.237.134.0/24
|
||||
134.175.0.0/16
|
||||
136.0.59.0/24
|
||||
138.252.72.0/23
|
||||
139.129.0.0/16
|
||||
139.148.0.0/16
|
||||
@ -2012,6 +2010,7 @@
|
||||
140.250.0.0/16
|
||||
140.255.0.0/16
|
||||
140.75.0.0/16
|
||||
141.11.219.0/24
|
||||
143.20.246.0/24
|
||||
143.64.0.0/16
|
||||
144.0.0.0/16
|
||||
@ -2065,6 +2064,7 @@
|
||||
150.242.80.0/22
|
||||
150.242.96.0/22
|
||||
150.255.0.0/16
|
||||
151.246.165.0/24
|
||||
151.247.148.0/23
|
||||
152.104.128.0/17
|
||||
152.136.0.0/16
|
||||
@ -2107,7 +2107,8 @@
|
||||
155.102.20.0/24
|
||||
155.102.201.0/24
|
||||
155.102.202.0/24
|
||||
155.102.204.0/22
|
||||
155.102.205.0/24
|
||||
155.102.206.0/23
|
||||
155.102.208.0/21
|
||||
155.102.216.0/22
|
||||
155.102.22.0/23
|
||||
@ -2123,13 +2124,14 @@
|
||||
155.102.43.0/24
|
||||
155.102.44.0/22
|
||||
155.102.48.0/20
|
||||
155.102.65.0/24
|
||||
155.102.64.0/23
|
||||
155.102.67.0/24
|
||||
155.102.68.0/23
|
||||
155.102.70.0/24
|
||||
155.102.74.0/23
|
||||
155.102.76.0/22
|
||||
155.102.72.0/21
|
||||
155.102.8.0/21
|
||||
155.102.91.0/24
|
||||
155.102.92.0/22
|
||||
155.102.98.0/23
|
||||
155.126.176.0/23
|
||||
156.107.160.0/23
|
||||
@ -2141,7 +2143,7 @@
|
||||
156.59.108.0/24
|
||||
157.0.0.0/16
|
||||
157.10.112.0/23
|
||||
157.10.34.0/23
|
||||
157.10.35.0/24
|
||||
157.119.172.0/22
|
||||
157.119.252.0/22
|
||||
157.119.28.0/22
|
||||
@ -2172,7 +2174,6 @@
|
||||
160.22.188.0/24
|
||||
160.22.244.0/23
|
||||
160.25.194.0/23
|
||||
160.250.102.0/23
|
||||
160.250.14.0/23
|
||||
160.250.84.0/23
|
||||
160.30.230.0/23
|
||||
@ -2203,7 +2204,9 @@
|
||||
163.181.131.0/24
|
||||
163.181.132.0/23
|
||||
163.181.135.0/24
|
||||
163.181.136.0/21
|
||||
163.181.136.0/22
|
||||
163.181.140.0/24
|
||||
163.181.142.0/23
|
||||
163.181.144.0/20
|
||||
163.181.15.0/24
|
||||
163.181.16.0/22
|
||||
@ -2217,13 +2220,14 @@
|
||||
163.181.190.0/23
|
||||
163.181.192.0/23
|
||||
163.181.196.0/22
|
||||
163.181.2.0/24
|
||||
163.181.200.0/21
|
||||
163.181.209.0/24
|
||||
163.181.210.0/23
|
||||
163.181.212.0/22
|
||||
163.181.216.0/21
|
||||
163.181.216.0/24
|
||||
163.181.218.0/23
|
||||
163.181.22.0/23
|
||||
163.181.220.0/22
|
||||
163.181.224.0/23
|
||||
163.181.228.0/22
|
||||
163.181.232.0/23
|
||||
@ -2260,6 +2264,7 @@
|
||||
163.181.97.0/24
|
||||
163.181.99.0/24
|
||||
163.204.0.0/16
|
||||
163.223.173.0/24
|
||||
163.223.178.0/23
|
||||
163.227.40.0/23
|
||||
163.228.0.0/16
|
||||
@ -2276,8 +2281,9 @@
|
||||
163.61.178.0/23
|
||||
163.61.202.0/23
|
||||
163.61.214.0/23
|
||||
164.163.236.0/22
|
||||
165.101.208.0/23
|
||||
165.101.70.0/24
|
||||
165.101.70.0/23
|
||||
166.111.0.0/16
|
||||
167.139.0.0/16
|
||||
167.189.0.0/16
|
||||
@ -2330,6 +2336,8 @@
|
||||
175.44.0.0/16
|
||||
175.46.0.0/15
|
||||
178.219.5.0/24
|
||||
178.219.7.0/24
|
||||
178.248.72.0/24
|
||||
180.129.128.0/17
|
||||
180.130.0.0/16
|
||||
180.136.0.0/13
|
||||
@ -2439,21 +2447,39 @@
|
||||
183.91.61.0/24
|
||||
183.91.63.0/24
|
||||
183.92.0.0/14
|
||||
185.116.90.0/24
|
||||
185.39.51.0/24
|
||||
185.75.173.0/24
|
||||
185.75.174.0/24
|
||||
188.131.128.0/17
|
||||
188.221.99.0/24
|
||||
189.12.48.0/24
|
||||
189.73.18.0/24
|
||||
189.75.185.0/24
|
||||
189.75.186.0/24
|
||||
191.217.175.0/24
|
||||
191.219.18.0/24
|
||||
191.222.242.0/24
|
||||
191.222.244.0/24
|
||||
191.222.43.0/24
|
||||
191.44.18.0/24
|
||||
192.140.160.0/19
|
||||
192.140.208.0/21
|
||||
192.144.128.0/17
|
||||
192.163.11.0/24
|
||||
192.232.97.0/24
|
||||
193.112.0.0/16
|
||||
193.168.185.0/24
|
||||
193.233.49.0/24
|
||||
193.8.114.0/24
|
||||
194.127.229.0/24
|
||||
194.138.202.0/23
|
||||
194.138.245.0/24
|
||||
194.179.146.0/24
|
||||
194.231.140.0/24
|
||||
195.162.246.0/24
|
||||
195.40.157.0/24
|
||||
195.40.158.0/24
|
||||
198.208.112.0/23
|
||||
198.208.17.0/24
|
||||
198.208.19.0/24
|
||||
@ -2464,6 +2490,13 @@
|
||||
198.23.195.0/24
|
||||
199.182.239.0/24
|
||||
199.244.144.0/24
|
||||
2.26.167.0/24
|
||||
200.102.180.0/24
|
||||
200.102.183.0/24
|
||||
200.181.87.0/24
|
||||
201.11.233.0/24
|
||||
201.14.219.0/24
|
||||
201.24.195.0/24
|
||||
202.104.0.0/14
|
||||
202.108.0.0/15
|
||||
202.110.0.0/16
|
||||
@ -2490,8 +2523,8 @@
|
||||
202.127.12.0/22
|
||||
202.127.144.0/20
|
||||
202.127.16.0/20
|
||||
202.127.192.0/24
|
||||
202.127.200.0/21
|
||||
202.127.216.0/21
|
||||
202.127.224.0/19
|
||||
202.127.40.0/21
|
||||
202.127.48.0/23
|
||||
@ -2518,14 +2551,19 @@
|
||||
202.149.224.0/19
|
||||
202.150.16.0/20
|
||||
202.153.48.0/20
|
||||
202.153.7.0/24
|
||||
202.158.160.0/19
|
||||
202.158.242.0/24
|
||||
202.160.140.0/22
|
||||
202.164.0.0/20
|
||||
202.168.160.0/19
|
||||
202.170.128.0/19
|
||||
202.170.216.0/21
|
||||
202.171.232.0/24
|
||||
202.172.7.0/24
|
||||
202.173.14.0/23
|
||||
202.173.224.0/19
|
||||
202.173.6.0/24
|
||||
202.173.8.0/22
|
||||
202.179.240.0/20
|
||||
202.181.120.0/21
|
||||
@ -2541,7 +2579,6 @@
|
||||
202.38.132.0/23
|
||||
202.38.134.0/24
|
||||
202.38.140.0/23
|
||||
202.38.146.0/23
|
||||
202.38.152.0/23
|
||||
202.38.164.0/22
|
||||
202.38.184.0/21
|
||||
@ -2552,10 +2589,7 @@
|
||||
202.4.128.0/19
|
||||
202.4.252.0/22
|
||||
202.41.152.0/21
|
||||
202.41.241.0/24
|
||||
202.41.242.0/23
|
||||
202.41.244.0/22
|
||||
202.41.248.0/21
|
||||
202.41.240.0/20
|
||||
202.46.224.0/22
|
||||
202.46.228.0/23
|
||||
202.46.232.0/23
|
||||
@ -2602,6 +2636,7 @@
|
||||
202.96.0.0/13
|
||||
203.0.104.0/21
|
||||
203.100.192.0/20
|
||||
203.100.60.0/24
|
||||
203.100.92.0/22
|
||||
203.104.32.0/20
|
||||
203.107.1.0/24
|
||||
@ -2633,7 +2668,7 @@
|
||||
203.119.26.0/23
|
||||
203.119.28.0/22
|
||||
203.119.33.0/24
|
||||
203.119.80.0/23
|
||||
203.119.80.0/24
|
||||
203.119.83.0/24
|
||||
203.12.91.0/24
|
||||
203.12.93.0/24
|
||||
@ -2643,15 +2678,16 @@
|
||||
203.130.40.0/21
|
||||
203.132.32.0/19
|
||||
203.135.96.0/19
|
||||
203.142.219.0/24
|
||||
203.148.0.0/18
|
||||
203.148.64.0/20
|
||||
203.148.86.0/23
|
||||
203.15.0.0/20
|
||||
203.152.64.0/19
|
||||
203.156.192.0/18
|
||||
203.16.63.0/24
|
||||
203.160.129.0/24
|
||||
203.160.192.0/19
|
||||
203.161.192.0/19
|
||||
203.166.160.0/22
|
||||
203.166.165.0/24
|
||||
203.166.166.0/24
|
||||
@ -2661,8 +2697,10 @@
|
||||
203.166.188.0/23
|
||||
203.166.191.0/24
|
||||
203.168.0.0/19
|
||||
203.17.249.0/24
|
||||
203.170.58.0/23
|
||||
203.174.4.0/24
|
||||
203.174.6.0/24
|
||||
203.174.96.0/19
|
||||
203.175.128.0/19
|
||||
203.176.168.0/24
|
||||
@ -2670,14 +2708,15 @@
|
||||
203.176.92.0/22
|
||||
203.187.160.0/19
|
||||
203.189.0.0/23
|
||||
203.189.113.0/24
|
||||
203.189.115.0/24
|
||||
203.189.192.0/19
|
||||
203.189.240.0/22
|
||||
203.189.6.0/23
|
||||
203.19.1.0/24
|
||||
203.190.100.0/23
|
||||
203.191.0.0/23
|
||||
203.191.144.0/21
|
||||
203.191.2.0/24
|
||||
203.191.7.0/24
|
||||
203.192.1.0/24
|
||||
203.192.16.0/24
|
||||
203.192.2.0/23
|
||||
@ -2696,7 +2735,9 @@
|
||||
203.2.112.0/21
|
||||
203.2.160.0/21
|
||||
203.2.64.0/21
|
||||
203.201.181.0/24
|
||||
203.202.236.0/23
|
||||
203.205.88.0/24
|
||||
203.207.104.0/22
|
||||
203.207.112.0/20
|
||||
203.207.128.0/18
|
||||
@ -3019,7 +3060,7 @@
|
||||
211.145.64.0/20
|
||||
211.146.0.0/16
|
||||
211.147.0.0/18
|
||||
211.147.128.0/18
|
||||
211.147.128.0/19
|
||||
211.147.208.0/20
|
||||
211.147.224.0/19
|
||||
211.147.64.0/19
|
||||
@ -3043,8 +3084,6 @@
|
||||
211.154.0.0/19
|
||||
211.154.128.0/17
|
||||
211.154.64.0/19
|
||||
211.155.108.0/22
|
||||
211.155.112.0/20
|
||||
211.155.128.0/19
|
||||
211.155.16.0/20
|
||||
211.155.160.0/20
|
||||
@ -3056,6 +3095,7 @@
|
||||
211.155.240.0/20
|
||||
211.155.32.0/19
|
||||
211.155.80.0/20
|
||||
211.155.96.0/19
|
||||
211.156.0.0/19
|
||||
211.156.128.0/19
|
||||
211.156.176.0/20
|
||||
@ -3108,7 +3148,6 @@
|
||||
211.161.32.0/20
|
||||
211.161.60.0/23
|
||||
211.161.62.0/24
|
||||
211.161.97.0/24
|
||||
211.162.0.0/21
|
||||
211.162.119.0/24
|
||||
211.162.120.0/21
|
||||
@ -3156,12 +3195,7 @@
|
||||
211.95.0.0/17
|
||||
211.95.128.0/19
|
||||
211.95.192.0/18
|
||||
211.96.0.0/16
|
||||
211.97.0.0/17
|
||||
211.97.128.0/19
|
||||
211.97.160.0/21
|
||||
211.97.176.0/20
|
||||
211.97.192.0/18
|
||||
211.96.0.0/15
|
||||
211.98.0.0/16
|
||||
211.99.128.0/18
|
||||
211.99.16.0/23
|
||||
@ -3171,7 +3205,10 @@
|
||||
211.99.64.0/18
|
||||
211.99.8.0/21
|
||||
212.129.128.0/17
|
||||
212.134.159.0/24
|
||||
212.189.97.0/24
|
||||
212.64.0.0/17
|
||||
213.210.55.0/24
|
||||
218.0.0.0/11
|
||||
218.100.88.0/21
|
||||
218.104.0.0/15
|
||||
@ -3238,7 +3275,9 @@
|
||||
218.98.111.0/24
|
||||
218.98.112.0/20
|
||||
218.98.160.0/24
|
||||
218.98.176.0/21
|
||||
218.98.176.0/22
|
||||
218.98.180.0/23
|
||||
218.98.182.0/24
|
||||
218.98.192.0/24
|
||||
218.98.96.0/21
|
||||
219.128.0.0/12
|
||||
@ -3507,6 +3546,7 @@
|
||||
27.8.0.0/13
|
||||
27.98.224.0/19
|
||||
31.56.124.0/24
|
||||
31.77.184.0/22
|
||||
36.1.0.0/16
|
||||
36.112.0.0/15
|
||||
36.114.0.0/16
|
||||
@ -3541,6 +3581,7 @@
|
||||
38.134.58.0/23
|
||||
38.247.24.0/22
|
||||
38.247.32.0/23
|
||||
38.247.35.0/24
|
||||
38.247.36.0/22
|
||||
38.84.220.0/24
|
||||
38.95.118.0/23
|
||||
@ -3614,21 +3655,45 @@
|
||||
43.102.128.0/21
|
||||
43.102.136.0/22
|
||||
43.102.144.0/20
|
||||
43.109.0.0/22
|
||||
43.109.0.0/23
|
||||
43.109.10.0/24
|
||||
43.109.100.0/23
|
||||
43.109.102.0/24
|
||||
43.109.105.0/24
|
||||
43.109.107.0/24
|
||||
43.109.111.0/24
|
||||
43.109.108.0/22
|
||||
43.109.112.0/24
|
||||
43.109.114.0/23
|
||||
43.109.116.0/23
|
||||
43.109.118.0/24
|
||||
43.109.12.0/22
|
||||
43.109.133.0/24
|
||||
43.109.134.0/23
|
||||
43.109.136.0/22
|
||||
43.109.143.0/24
|
||||
43.109.144.0/23
|
||||
43.109.146.0/24
|
||||
43.109.148.0/24
|
||||
43.109.156.0/24
|
||||
43.109.16.0/22
|
||||
43.109.160.0/22
|
||||
43.109.164.0/24
|
||||
43.109.167.0/24
|
||||
43.109.169.0/24
|
||||
43.109.170.0/24
|
||||
43.109.172.0/22
|
||||
43.109.184.0/23
|
||||
43.109.191.0/24
|
||||
43.109.192.0/21
|
||||
43.109.2.0/24
|
||||
43.109.200.0/23
|
||||
43.109.202.0/24
|
||||
43.109.206.0/24
|
||||
43.109.208.0/24
|
||||
43.109.21.0/24
|
||||
43.109.22.0/24
|
||||
43.109.223.0/24
|
||||
43.109.224.0/24
|
||||
43.109.24.0/23
|
||||
43.109.26.0/24
|
||||
43.109.28.0/24
|
||||
@ -3643,8 +3708,7 @@
|
||||
43.109.46.0/24
|
||||
43.109.48.0/23
|
||||
43.109.51.0/24
|
||||
43.109.53.0/24
|
||||
43.109.54.0/23
|
||||
43.109.52.0/22
|
||||
43.109.57.0/24
|
||||
43.109.58.0/23
|
||||
43.109.60.0/22
|
||||
@ -3671,6 +3735,8 @@
|
||||
43.194.0.0/20
|
||||
43.194.16.0/24
|
||||
43.195.0.0/20
|
||||
43.195.16.0/22
|
||||
43.195.20.0/23
|
||||
43.196.0.0/16
|
||||
43.224.12.0/22
|
||||
43.224.24.0/22
|
||||
@ -3835,6 +3901,8 @@
|
||||
43.255.84.0/22
|
||||
43.255.96.0/22
|
||||
44.30.120.0/24
|
||||
44.30.130.0/23
|
||||
44.30.152.0/24
|
||||
44.31.216.0/24
|
||||
44.31.28.0/24
|
||||
44.31.43.0/24
|
||||
@ -3882,9 +3950,11 @@
|
||||
45.126.120.0/22
|
||||
45.127.129.0/24
|
||||
45.127.144.0/21
|
||||
45.132.80.0/24
|
||||
45.137.97.0/24
|
||||
45.146.82.0/24
|
||||
45.248.108.0/22
|
||||
45.248.108.0/23
|
||||
45.248.110.0/24
|
||||
45.248.204.0/22
|
||||
45.248.8.0/22
|
||||
45.249.212.0/22
|
||||
@ -3896,7 +3966,6 @@
|
||||
45.250.32.0/21
|
||||
45.250.40.0/22
|
||||
45.251.120.0/22
|
||||
45.251.2.0/23
|
||||
45.251.20.0/22
|
||||
45.251.8.0/22
|
||||
45.251.88.0/21
|
||||
@ -3927,10 +3996,11 @@
|
||||
45.65.24.0/22
|
||||
45.82.239.0/24
|
||||
45.86.73.0/24
|
||||
45.9.11.0/24
|
||||
46.37.112.0/24
|
||||
47.112.0.0/13
|
||||
47.120.0.0/14
|
||||
47.246.0.0/23
|
||||
47.246.0.0/22
|
||||
47.246.12.0/23
|
||||
47.246.15.0/24
|
||||
47.246.20.0/24
|
||||
@ -3938,7 +4008,6 @@
|
||||
47.246.24.0/24
|
||||
47.246.26.0/24
|
||||
47.246.28.0/22
|
||||
47.246.3.0/24
|
||||
47.246.36.0/22
|
||||
47.246.4.0/24
|
||||
47.246.41.0/24
|
||||
@ -3948,6 +4017,7 @@
|
||||
47.246.48.0/23
|
||||
47.246.50.0/24
|
||||
47.246.57.0/24
|
||||
47.246.58.0/24
|
||||
47.246.6.0/23
|
||||
47.246.60.0/22
|
||||
47.246.64.0/24
|
||||
@ -4129,16 +4199,10 @@
|
||||
61.128.0.0/10
|
||||
61.232.0.0/14
|
||||
61.236.112.0/21
|
||||
61.236.248.0/24
|
||||
61.236.251.0/24
|
||||
61.236.80.0/20
|
||||
61.236.96.0/20
|
||||
61.237.0.0/16
|
||||
61.240.0.0/16
|
||||
61.241.0.0/17
|
||||
61.241.128.0/18
|
||||
61.241.192.0/19
|
||||
61.242.0.0/15
|
||||
61.240.0.0/14
|
||||
61.28.108.0/24
|
||||
61.28.112.0/20
|
||||
61.28.20.0/24
|
||||
@ -4153,6 +4217,7 @@
|
||||
62.72.171.0/24
|
||||
63.140.0.0/24
|
||||
63.140.3.0/24
|
||||
65.86.192.0/24
|
||||
66.102.240.0/21
|
||||
66.102.248.0/22
|
||||
66.102.252.0/24
|
||||
@ -4169,6 +4234,9 @@
|
||||
71.132.0.0/18
|
||||
71.136.64.0/18
|
||||
71.137.0.0/18
|
||||
78.105.147.0/24
|
||||
78.105.182.0/23
|
||||
78.154.108.0/24
|
||||
79.133.176.0/24
|
||||
8.128.32.0/19
|
||||
8.128.4.0/22
|
||||
@ -4182,8 +4250,7 @@
|
||||
8.148.0.0/19
|
||||
8.148.128.0/17
|
||||
8.148.36.0/22
|
||||
8.148.41.0/24
|
||||
8.148.43.0/24
|
||||
8.148.40.0/22
|
||||
8.148.64.0/18
|
||||
8.149.0.0/16
|
||||
8.150.0.0/20
|
||||
@ -4205,9 +4272,16 @@
|
||||
81.173.20.0/22
|
||||
81.173.28.0/24
|
||||
81.68.0.0/14
|
||||
82.108.198.0/23
|
||||
82.109.96.0/23
|
||||
82.110.234.0/23
|
||||
82.110.98.0/24
|
||||
82.156.0.0/15
|
||||
82.22.30.0/23
|
||||
82.38.7.0/24
|
||||
82.38.92.0/24
|
||||
86.38.235.0/24
|
||||
87.76.221.0/24
|
||||
87.76.222.0/24
|
||||
93.95.117.0/24
|
||||
87.83.2.0/24
|
||||
94.191.0.0/17
|
||||
|
||||
@ -5,7 +5,6 @@
|
||||
2001:4510:400::/40
|
||||
2001:4511:1480::/41
|
||||
2001:678:53c::/48
|
||||
2001:7fa:5::/48
|
||||
2001:c68::/32
|
||||
2001:cc0::/32
|
||||
2001:da8::/32
|
||||
@ -16,12 +15,12 @@
|
||||
2001:dc7::/32
|
||||
2001:dd8:1::/48
|
||||
2001:dd9::/48
|
||||
2001:df5:4740::/48
|
||||
2001:df6:40::/48
|
||||
2400:1160::/32
|
||||
2400:3200::/32
|
||||
2400:5280:f803::/48
|
||||
2400:5a00::/32
|
||||
2400:5a60:100::/48
|
||||
2400:5a60:2::/48
|
||||
2400:6000::/32
|
||||
2400:6600::/32
|
||||
@ -63,7 +62,6 @@
|
||||
2400:9380:9001::/48
|
||||
2400:9380:9009::/48
|
||||
2400:9380:9020::/47
|
||||
2400:9380:9040::/48
|
||||
2400:9380:9050::/47
|
||||
2400:9380:9060::/48
|
||||
2400:9380:9071::/48
|
||||
@ -73,7 +71,6 @@
|
||||
2400:9380:90b4::/46
|
||||
2400:9380:9121::/48
|
||||
2400:9380:9220::/47
|
||||
2400:9380:9240::/48
|
||||
2400:9380:9250::/47
|
||||
2400:9380:9260::/48
|
||||
2400:9380:9271::/48
|
||||
@ -108,6 +105,9 @@
|
||||
2401:1200::/48
|
||||
2401:1320::/32
|
||||
2401:1d40::/32
|
||||
2401:20:1330::/46
|
||||
2401:20:2104::/46
|
||||
2401:20::/40
|
||||
2401:2780::/32
|
||||
2401:2a00:f000::/43
|
||||
2401:2e00::/32
|
||||
@ -135,7 +135,6 @@
|
||||
2401:4a80::/32
|
||||
2401:5560:1000::/48
|
||||
2401:5c20:10::/48
|
||||
2401:70e0::/32
|
||||
2401:71c0::/48
|
||||
2401:7660::/48
|
||||
2401:7700::/32
|
||||
@ -145,7 +144,7 @@
|
||||
2401:8be0::/48
|
||||
2401:8d00:12::/48
|
||||
2401:8d00:3::/48
|
||||
2401:8d00:4::/48
|
||||
2401:8d00:4::/47
|
||||
2401:8d00:7::/48
|
||||
2401:8d00:8::/47
|
||||
2401:8d00::/47
|
||||
@ -182,20 +181,17 @@
|
||||
2401:ec00::/32
|
||||
2401:f860:100::/40
|
||||
2401:f860:85::/48
|
||||
2401:f860:87::/48
|
||||
2401:f860:88::/47
|
||||
2401:f860:90::/46
|
||||
2401:f860:90::/48
|
||||
2401:f860:92::/47
|
||||
2401:f860:94::/48
|
||||
2401:f860:96::/47
|
||||
2401:fa00:40::/43
|
||||
2401:f860:97::/48
|
||||
2401:fa00:40::/48
|
||||
2402:1440::/32
|
||||
2402:18a0::/32
|
||||
2402:2000::/32
|
||||
2402:2620::/48
|
||||
2402:2e60::/39
|
||||
2402:34e0::/32
|
||||
2402:36e0::/44
|
||||
2402:3c00::/32
|
||||
2402:3f80:1400::/40
|
||||
2402:4440:9000::/39
|
||||
2402:4440:9200::/48
|
||||
@ -217,7 +213,7 @@
|
||||
2402:5e40::/32
|
||||
2402:5ec0::/32
|
||||
2402:6e80::/32
|
||||
2402:6f40:2::/48
|
||||
2402:6f40:2::/47
|
||||
2402:6f40::/48
|
||||
2402:6fc0::/48
|
||||
2402:7040::/32
|
||||
@ -228,8 +224,6 @@
|
||||
2402:840:e000::/46
|
||||
2402:840:f000::/38
|
||||
2402:8bc0::/32
|
||||
2402:8cc0:200::/40
|
||||
2402:8cc0::/40
|
||||
2402:92c0::/48
|
||||
2402:93c0:100::/48
|
||||
2402:93c0:20::/48
|
||||
@ -291,129 +285,31 @@
|
||||
2403:f4c0::/48
|
||||
2403:ffc0:1100::/40
|
||||
2403:ffc0:1200::/39
|
||||
2404:1c40:503::/48
|
||||
2404:1c80::/32
|
||||
2404:2280:105::/48
|
||||
2404:2280:106::/47
|
||||
2404:2280:109::/48
|
||||
2404:2280:10a::/47
|
||||
2404:2280:10b::/48
|
||||
2404:2280:10d::/48
|
||||
2404:2280:10f::/48
|
||||
2404:2280:112::/47
|
||||
2404:2280:112::/48
|
||||
2404:2280:115::/48
|
||||
2404:2280:116::/47
|
||||
2404:2280:11a::/47
|
||||
2404:2280:11c::/46
|
||||
2404:2280:11c::/48
|
||||
2404:2280:123::/48
|
||||
2404:2280:125::/48
|
||||
2404:2280:126::/47
|
||||
2404:2280:128::/46
|
||||
2404:2280:127::/48
|
||||
2404:2280:12b::/48
|
||||
2404:2280:12e::/48
|
||||
2404:2280:130::/48
|
||||
2404:2280:134::/48
|
||||
2404:2280:136::/47
|
||||
2404:2280:138::/48
|
||||
2404:2280:13b::/48
|
||||
2404:2280:13c::/47
|
||||
2404:2280:142::/48
|
||||
2404:2280:147::/48
|
||||
2404:2280:14f::/48
|
||||
2404:2280:150::/48
|
||||
2404:2280:154::/46
|
||||
2404:2280:159::/48
|
||||
2404:2280:15d::/48
|
||||
2404:2280:15e::/47
|
||||
2404:2280:160::/48
|
||||
2404:2280:170::/48
|
||||
2404:2280:177::/48
|
||||
2404:2280:17a::/47
|
||||
2404:2280:17c::/46
|
||||
2404:2280:156::/47
|
||||
2404:2280:17b::/48
|
||||
2404:2280:180::/47
|
||||
2404:2280:183::/48
|
||||
2404:2280:187::/48
|
||||
2404:2280:18a::/47
|
||||
2404:2280:18c::/46
|
||||
2404:2280:190::/48
|
||||
2404:2280:193::/48
|
||||
2404:2280:18a::/48
|
||||
2404:2280:18d::/48
|
||||
2404:2280:18e::/47
|
||||
2404:2280:196::/48
|
||||
2404:2280:198::/45
|
||||
2404:2280:1a4::/46
|
||||
2404:2280:1a8::/47
|
||||
2404:2280:1b0::/48
|
||||
2404:2280:1b2::/48
|
||||
2404:2280:1b4::/46
|
||||
2404:2280:1b8::/47
|
||||
2404:2280:1ba::/48
|
||||
2404:2280:1bf::/48
|
||||
2404:2280:1c1::/48
|
||||
2404:2280:1c2::/47
|
||||
2404:2280:1c4::/46
|
||||
2404:2280:1c8::/48
|
||||
2404:2280:1cb::/48
|
||||
2404:2280:1cc::/48
|
||||
2404:2280:1cf::/48
|
||||
2404:2280:1d0::/47
|
||||
2404:2280:1d3::/48
|
||||
2404:2280:1d4::/48
|
||||
2404:2280:1d6::/47
|
||||
2404:2280:1d8::/45
|
||||
2404:2280:1e0::/45
|
||||
2404:2280:1e8::/46
|
||||
2404:2280:1ec::/47
|
||||
2404:2280:1ee::/48
|
||||
2404:2280:1f0::/45
|
||||
2404:2280:1f8::/46
|
||||
2404:2280:201::/48
|
||||
2404:2280:202::/47
|
||||
2404:2280:204::/46
|
||||
2404:2280:208::/46
|
||||
2404:2280:20c::/47
|
||||
2404:2280:20e::/48
|
||||
2404:2280:210::/46
|
||||
2404:2280:214::/48
|
||||
2404:2280:217::/48
|
||||
2404:2280:218::/46
|
||||
2404:2280:21d::/48
|
||||
2404:2280:21e::/48
|
||||
2404:2280:221::/48
|
||||
2404:2280:259::/48
|
||||
2404:2280:25a::/47
|
||||
2404:2280:25c::/48
|
||||
2404:2280:265::/48
|
||||
2404:2280:266::/47
|
||||
2404:2280:268::/45
|
||||
2404:2280:270::/45
|
||||
2404:2280:278::/47
|
||||
2404:2280:27b::/48
|
||||
2404:2280:27c::/46
|
||||
2404:2280:282::/47
|
||||
2404:2280:284::/47
|
||||
2404:2280:288::/46
|
||||
2404:2280:28c::/48
|
||||
2404:2280:291::/48
|
||||
2404:2280:292::/48
|
||||
2404:2280:296::/47
|
||||
2404:2280:298::/46
|
||||
2404:2280:29c::/47
|
||||
2404:2280:2a0::/47
|
||||
2404:2280:2a4::/46
|
||||
2404:2280:2a9::/48
|
||||
2404:2280:2aa::/48
|
||||
2404:2280:2ad::/48
|
||||
2404:2280:2ae::/47
|
||||
2404:2280:2b1::/48
|
||||
2404:2280:2b2::/47
|
||||
2404:2280:2b5::/48
|
||||
2404:2280:2b6::/47
|
||||
2404:2280:2b8::/47
|
||||
2404:2280:2ba::/48
|
||||
2404:2280:2bc::/46
|
||||
2404:2280:2c2::/47
|
||||
2404:2280:2c5::/48
|
||||
2404:2280:2c9::/48
|
||||
2404:2280:2ca::/47
|
||||
2404:2280:2cd::/48
|
||||
2404:2280:2cf::/48
|
||||
2404:2280:19a::/47
|
||||
2404:2280:19c::/48
|
||||
2404:2280:277::/48
|
||||
2404:3700::/48
|
||||
2404:4dc0::/32
|
||||
2404:6380:1000::/48
|
||||
@ -436,8 +332,6 @@
|
||||
2404:7240::/33
|
||||
2404:7600::/32
|
||||
2404:7940::/32
|
||||
2404:8d02:28c8::/48
|
||||
2404:8d02:4881::/48
|
||||
2404:bc0:1::/48
|
||||
2404:bc0:4000::/43
|
||||
2404:bc0:4100::/43
|
||||
@ -445,7 +339,6 @@
|
||||
2404:bc0:4300::/44
|
||||
2404:bc0:4400::/43
|
||||
2404:bc0:4500::/43
|
||||
2404:bc0:4620::/44
|
||||
2404:bc0:4f00::/43
|
||||
2404:c2c0:240::/44
|
||||
2404:c2c0:280::/44
|
||||
@ -466,10 +359,10 @@
|
||||
2405:1480:1000::/48
|
||||
2405:1480:2000::/48
|
||||
2405:1480:3000::/47
|
||||
2405:1640:6::/48
|
||||
2405:3140:11::/48
|
||||
2405:3140:21::/48
|
||||
2405:3140:31::/48
|
||||
2405:3140:3a::/48
|
||||
2405:68c0:21::/48
|
||||
2405:6940::/48
|
||||
2405:6c0:2::/48
|
||||
@ -480,6 +373,8 @@
|
||||
2405:6f00:c602::/48
|
||||
2405:7040:6000::/47
|
||||
2405:78c0:6e00::/43
|
||||
2405:80:10::/48
|
||||
2405:80:13::/48
|
||||
2405:8280::/32
|
||||
2405:8a40::/32
|
||||
2405:a900:ffee::/48
|
||||
@ -488,6 +383,7 @@
|
||||
2405:b7c0::/32
|
||||
2405:d900::/32
|
||||
2405:e000::/32
|
||||
2405:e600:2::/48
|
||||
2405:f940::/32
|
||||
2406:1080::/48
|
||||
2406:1e40:f012::/47
|
||||
@ -507,25 +403,21 @@
|
||||
2406:840:10::/45
|
||||
2406:840:110::/48
|
||||
2406:840:1800::/48
|
||||
2406:840:180::/48
|
||||
2406:840:1::/48
|
||||
2406:840:20::/48
|
||||
2406:840:2380::/48
|
||||
2406:840:2600::/48
|
||||
2406:840:2800::/48
|
||||
2406:840:2880::/47
|
||||
2406:840:2::/48
|
||||
2406:840:2e0::/48
|
||||
2406:840:3800::/48
|
||||
2406:840:380::/48
|
||||
2406:840:3c1::/48
|
||||
2406:840:3c2::/48
|
||||
2406:840:3e0::/48
|
||||
2406:840:4100::/47
|
||||
2406:840:410::/47
|
||||
2406:840:412::/48
|
||||
2406:840:420::/48
|
||||
2406:840:42::/48
|
||||
2406:840:43c0::/47
|
||||
2406:840:43e0::/47
|
||||
2406:840:44::/48
|
||||
2406:840:46::/48
|
||||
@ -538,23 +430,19 @@
|
||||
2406:840:5860::/47
|
||||
2406:840:5880::/47
|
||||
2406:840:5c00::/47
|
||||
2406:840:600::/48
|
||||
2406:840:680::/48
|
||||
2406:840:6c1::/48
|
||||
2406:840:710::/48
|
||||
2406:840:78::/47
|
||||
2406:840:7::/48
|
||||
2406:840:800::/46
|
||||
2406:840:805::/48
|
||||
2406:840:806::/48
|
||||
2406:840:80::/47
|
||||
2406:840:8100::/40
|
||||
2406:840:840::/47
|
||||
2406:840:842::/48
|
||||
2406:840:860::/48
|
||||
2406:840:880::/47
|
||||
2406:840:882::/48
|
||||
2406:840:880::/46
|
||||
2406:840:90::/48
|
||||
2406:840:9178::/48
|
||||
2406:840:9200::/40
|
||||
2406:840:9680::/44
|
||||
2406:840:9700::/40
|
||||
@ -565,37 +453,41 @@
|
||||
2406:840:9966::/48
|
||||
2406:840:996c::/48
|
||||
2406:840:9970::/44
|
||||
2406:840:a10::/48
|
||||
2406:840:a31::/48
|
||||
2406:840:c02::/48
|
||||
2406:840:c60::/48
|
||||
2406:840:cb8::/48
|
||||
2406:840:cc2::/48
|
||||
2406:840:e072::/48
|
||||
2406:840:e080::/44
|
||||
2406:840:e0cf::/48
|
||||
2406:840:e0e0::/46
|
||||
2406:840:e0e4::/47
|
||||
2406:840:e0e8::/48
|
||||
2406:840:e10f::/48
|
||||
2406:840:e14f::/48
|
||||
2406:840:e260::/48
|
||||
2406:840:e280::/44
|
||||
2406:840:e301::/48
|
||||
2406:840:e302::/48
|
||||
2406:840:e304::/48
|
||||
2406:840:e306::/48
|
||||
2406:840:e330::/44
|
||||
2406:840:e57e::/48
|
||||
2406:840:e600::/44
|
||||
2406:840:e620::/47
|
||||
2406:840:e80f::/48
|
||||
2406:840:eb00::/46
|
||||
2406:840:eb01::/48
|
||||
2406:840:eb02::/47
|
||||
2406:840:eb04::/47
|
||||
2406:840:eb07::/48
|
||||
2406:840:eb08::/48
|
||||
2406:840:eb0b::/48
|
||||
2406:840:eb0f::/48
|
||||
2406:840:eb80::/42
|
||||
2406:840:ee40::/47
|
||||
2406:840:ee44::/48
|
||||
2406:840:ee4b::/48
|
||||
2406:840:ee4d::/48
|
||||
2406:840:eee5::/48
|
||||
2406:840:f0a1::/48
|
||||
2406:840:f0aa::/48
|
||||
2406:840:f380::/44
|
||||
@ -603,26 +495,60 @@
|
||||
2406:840:f402::/48
|
||||
2406:840:f44f::/48
|
||||
2406:840:f680::/44
|
||||
2406:840:f860::/46
|
||||
2406:840:f868::/47
|
||||
2406:840:f86c::/48
|
||||
2406:840:f889::/48
|
||||
2406:840:fa01::/48
|
||||
2406:840:fa40::/48
|
||||
2406:840:fa60::/44
|
||||
2406:840:fc10::/44
|
||||
2406:840:fc20::/43
|
||||
2406:840:fc40::/42
|
||||
2406:840:fc90::/44
|
||||
2406:840:fca0::/43
|
||||
2406:840:fc10::/47
|
||||
2406:840:fc12::/48
|
||||
2406:840:fc20::/47
|
||||
2406:840:fc22::/48
|
||||
2406:840:fc30::/47
|
||||
2406:840:fc32::/48
|
||||
2406:840:fc40::/47
|
||||
2406:840:fc42::/48
|
||||
2406:840:fc50::/47
|
||||
2406:840:fc52::/48
|
||||
2406:840:fc60::/47
|
||||
2406:840:fc62::/48
|
||||
2406:840:fc70::/47
|
||||
2406:840:fc72::/48
|
||||
2406:840:fc90::/47
|
||||
2406:840:fc92::/48
|
||||
2406:840:fca0::/47
|
||||
2406:840:fca2::/48
|
||||
2406:840:fcb0::/47
|
||||
2406:840:fcb2::/48
|
||||
2406:840:fcd0::/48
|
||||
2406:840:fd40::/43
|
||||
2406:840:fcf0::/46
|
||||
2406:840:fcf4::/47
|
||||
2406:840:fd30::/44
|
||||
2406:840:fd40::/48
|
||||
2406:840:fd46::/47
|
||||
2406:840:fd48::/48
|
||||
2406:840:fd50::/48
|
||||
2406:840:fd56::/47
|
||||
2406:840:fd58::/48
|
||||
2406:840:fd60::/48
|
||||
2406:840:fd67::/48
|
||||
2406:840:fd66::/47
|
||||
2406:840:fd68::/48
|
||||
2406:840:fd70::/48
|
||||
2406:840:fd77::/48
|
||||
2406:840:fd76::/47
|
||||
2406:840:fd78::/48
|
||||
2406:840:fd80::/48
|
||||
2406:840:fd87::/48
|
||||
2406:840:fd90::/44
|
||||
2406:840:fda0::/43
|
||||
2406:840:fdc0::/44
|
||||
2406:840:fd86::/47
|
||||
2406:840:fd88::/48
|
||||
2406:840:fd90::/47
|
||||
2406:840:fd92::/48
|
||||
2406:840:fd9f::/48
|
||||
2406:840:fda0::/48
|
||||
2406:840:fda7::/48
|
||||
2406:840:fdb0::/48
|
||||
2406:840:fdb7::/48
|
||||
2406:840:fdc0::/48
|
||||
2406:840:fdc7::/48
|
||||
2406:840:fe50::/47
|
||||
2406:840:fe73::/48
|
||||
2406:840:fe90::/46
|
||||
@ -631,6 +557,7 @@
|
||||
2406:840:fe98::/46
|
||||
2406:840:fe9d::/48
|
||||
2406:840:fe9e::/48
|
||||
2406:840:fea1::/48
|
||||
2406:840:fea2::/47
|
||||
2406:840:fea4::/46
|
||||
2406:840:fea8::/48
|
||||
@ -646,7 +573,7 @@
|
||||
2406:840:fed4::/48
|
||||
2406:840:fed8::/48
|
||||
2406:840:fedb::/48
|
||||
2406:840:fedc::/48
|
||||
2406:840:fedc::/47
|
||||
2406:840:feed::/48
|
||||
2406:840:fef2::/47
|
||||
2406:840:fef4::/46
|
||||
@ -674,6 +601,7 @@
|
||||
2407:6c40:1210::/48
|
||||
2407:6c40:1500::/48
|
||||
2407:6c40:1600::/40
|
||||
2407:7d00:1::/48
|
||||
2407:8f40:2::/48
|
||||
2407:9f00::/32
|
||||
2407:ad80::/32
|
||||
@ -694,29 +622,19 @@
|
||||
2408:8000:8000::/33
|
||||
2408:8000::/48
|
||||
2408:8001::/32
|
||||
2408:8020::/30
|
||||
2408:8024::/31
|
||||
2408:8024:8000::/33
|
||||
2408:8025::/32
|
||||
2408:8026::/32
|
||||
2408:802a:8000::/33
|
||||
2408:802c::/32
|
||||
2408:803e::/32
|
||||
2408:8056::/32
|
||||
2408:805c::/30
|
||||
2408:8060::/33
|
||||
2408:80c2::/33
|
||||
2408:80c5::/33
|
||||
2408:80ca:8000::/34
|
||||
2408:80ca::/33
|
||||
2408:80da:8000::/34
|
||||
2408:80da::/33
|
||||
2408:80e0:4000::/34
|
||||
2408:80e0:8000::/33
|
||||
2408:80e0:4000::/36
|
||||
2408:80e2::/33
|
||||
2408:80e9:4000::/34
|
||||
2408:80ea:4000::/34
|
||||
2408:80ea:8000::/33
|
||||
2408:80f0:4000::/34
|
||||
2408:80f0:8000::/33
|
||||
2408:80f0:4000::/36
|
||||
2408:80f1:100::/43
|
||||
2408:80f1:120::/44
|
||||
2408:80f1:160::/43
|
||||
@ -731,8 +649,6 @@
|
||||
2408:80f1::/42
|
||||
2408:80f5:4000::/34
|
||||
2408:80f9:4000::/34
|
||||
2408:80fa:4000::/34
|
||||
2408:80fa:8000::/33
|
||||
2408:8120:1::/48
|
||||
2408:8120:2::/48
|
||||
2408:8120:7000::/36
|
||||
@ -809,50 +725,34 @@
|
||||
2408:837a::/32
|
||||
2408:8406:100::/41
|
||||
2408:8406:180::/42
|
||||
2408:8406:18c0::/42
|
||||
2408:8406:1900::/41
|
||||
2408:8406:1980::/42
|
||||
2408:8406:24c0::/42
|
||||
2408:8406:2500::/41
|
||||
2408:8406:2580::/42
|
||||
2408:8406:30c0::/42
|
||||
2408:8406:3100::/41
|
||||
2408:8406:3180::/42
|
||||
2408:8406:3cc0::/42
|
||||
2408:8406:3d00::/41
|
||||
2408:8406:3d80::/42
|
||||
2408:8406:48c0::/42
|
||||
2408:8406:4900::/41
|
||||
2408:8406:4980::/42
|
||||
2408:8406:54c0::/42
|
||||
2408:8406:5500::/41
|
||||
2408:8406:5580::/42
|
||||
2408:8406:60c0::/42
|
||||
2408:8406:6100::/41
|
||||
2408:8406:6180::/42
|
||||
2408:8406:6cc0::/42
|
||||
2408:8406:6d00::/41
|
||||
2408:8406:6d80::/42
|
||||
2408:8406:78c0::/42
|
||||
2408:8406:7900::/41
|
||||
2408:8406:7980::/42
|
||||
2408:8406:84c0::/42
|
||||
2408:8406:8500::/41
|
||||
2408:8406:8580::/42
|
||||
2408:8406:90c0::/42
|
||||
2408:8406:9100::/41
|
||||
2408:8406:9180::/42
|
||||
2408:8406:9cc0::/42
|
||||
2408:8406:9d00::/41
|
||||
2408:8406:9d80::/42
|
||||
2408:8406:a8c0::/42
|
||||
2408:8406:a900::/41
|
||||
2408:8406:a980::/42
|
||||
2408:8406:b4c0::/42
|
||||
2408:8406:b500::/41
|
||||
2408:8406:b580::/42
|
||||
2408:8406:c0::/42
|
||||
2408:8406:cc0::/42
|
||||
2408:8406:d00::/41
|
||||
2408:8406:d80::/42
|
||||
2408:8407:500::/42
|
||||
@ -974,82 +874,99 @@
|
||||
2408:840d:1140::/43
|
||||
2408:840d:1300::/42
|
||||
2408:840d:1a00::/42
|
||||
2408:840d:1a40::/43
|
||||
2408:840d:1c00::/42
|
||||
2408:840d:1e00::/42
|
||||
2408:840d:1e40::/43
|
||||
2408:840d:2000::/42
|
||||
2408:840d:200::/42
|
||||
2408:840d:2700::/42
|
||||
2408:840d:2740::/43
|
||||
2408:840d:2900::/42
|
||||
2408:840d:2b00::/42
|
||||
2408:840d:2b40::/43
|
||||
2408:840d:2d00::/42
|
||||
2408:840d:3400::/42
|
||||
2408:840d:3440::/43
|
||||
2408:840d:3600::/42
|
||||
2408:840d:3800::/42
|
||||
2408:840d:3840::/43
|
||||
2408:840d:3a00::/42
|
||||
2408:840d:400::/42
|
||||
2408:840d:40::/43
|
||||
2408:840d:440::/43
|
||||
2408:840d:4e00::/42
|
||||
2408:840d:4e40::/43
|
||||
2408:840d:5000::/42
|
||||
2408:840d:5200::/42
|
||||
2408:840d:5240::/43
|
||||
2408:840d:5400::/42
|
||||
2408:840d:5b00::/42
|
||||
2408:840d:5b40::/43
|
||||
2408:840d:5d00::/42
|
||||
2408:840d:5f00::/42
|
||||
2408:840d:5f40::/43
|
||||
2408:840d:600::/42
|
||||
2408:840d:6100::/42
|
||||
2408:840d:6800::/42
|
||||
2408:840d:6840::/43
|
||||
2408:840d:6a00::/42
|
||||
2408:840d:6c00::/42
|
||||
2408:840d:6c40::/43
|
||||
2408:840d:6e00::/42
|
||||
2408:840d:7500::/42
|
||||
2408:840d:7540::/43
|
||||
2408:840d:7700::/42
|
||||
2408:840d:7900::/42
|
||||
2408:840d:7940::/43
|
||||
2408:840d:7b00::/42
|
||||
2408:840d:8200::/42
|
||||
2408:840d:8240::/43
|
||||
2408:840d:8400::/42
|
||||
2408:840d:8600::/42
|
||||
2408:840d:8640::/43
|
||||
2408:840d:8800::/42
|
||||
2408:840d:8f00::/42
|
||||
2408:840d:8f40::/43
|
||||
2408:840d:9100::/42
|
||||
2408:840d:9300::/42
|
||||
2408:840d:9340::/43
|
||||
2408:840d:9500::/42
|
||||
2408:840d:9c00::/42
|
||||
2408:840d:9c40::/43
|
||||
2408:840d:9e00::/42
|
||||
2408:840d::/42
|
||||
2408:840d:a000::/42
|
||||
2408:840d:a040::/43
|
||||
2408:840d:a200::/42
|
||||
2408:840d:a900::/42
|
||||
2408:840d:a940::/43
|
||||
2408:840d:ab00::/42
|
||||
2408:840d:ad00::/42
|
||||
2408:840d:ad40::/43
|
||||
2408:840d:af00::/42
|
||||
2408:840d:b600::/42
|
||||
2408:840d:b640::/43
|
||||
2408:840d:b800::/42
|
||||
2408:840d:ba00::/42
|
||||
2408:840d:ba40::/43
|
||||
2408:840d:bc00::/42
|
||||
2408:840d:c300::/42
|
||||
2408:840d:c340::/43
|
||||
2408:840d:c500::/42
|
||||
2408:840d:c700::/42
|
||||
2408:840d:c740::/43
|
||||
2408:840d:c900::/42
|
||||
2408:840d:d000::/42
|
||||
2408:840d:d00::/42
|
||||
2408:840d:d040::/43
|
||||
2408:840d:d200::/42
|
||||
2408:840d:d400::/42
|
||||
2408:840d:d40::/43
|
||||
2408:840d:d440::/43
|
||||
2408:840d:d600::/42
|
||||
2408:840d:dd00::/42
|
||||
2408:840d:dd40::/43
|
||||
2408:840d:de00::/42
|
||||
2408:840d:f00::/42
|
||||
2408:840e:dd00::/40
|
||||
@ -1192,6 +1109,7 @@
|
||||
2408:8878::/31
|
||||
2408:887e::/32
|
||||
2408:8906:20::/44
|
||||
2408:8906:40::/43
|
||||
2408:8907:9000::/44
|
||||
2408:890c::/31
|
||||
2408:8912::/31
|
||||
@ -1228,13 +1146,9 @@
|
||||
2408:8a05:8000::/36
|
||||
2408:8a06:100::/47
|
||||
2408:8a06::/47
|
||||
2408:8a07::/40
|
||||
2408:8a21:4000::/35
|
||||
2408:8a22:9200::/39
|
||||
2408:8a22:9400::/38
|
||||
2408:8a22:9800::/40
|
||||
2408:8a22:9a00::/39
|
||||
2408:8a22:9c00::/38
|
||||
2408:8a22:a000::/37
|
||||
2408:8a22::/35
|
||||
2408:8a23:4000::/34
|
||||
2408:8a24:4000::/34
|
||||
2408:8a26:c000::/34
|
||||
@ -1358,13 +1272,20 @@
|
||||
240d:4000::/21
|
||||
240e::/20
|
||||
2602:f46d:6::/48
|
||||
2602:f92a:a460::/48
|
||||
2602:f92a:a462::/48
|
||||
2602:f92a:a468::/48
|
||||
2602:f92a:a46d::/48
|
||||
2602:f92a:a46f::/48
|
||||
2602:f92a:a474::/48
|
||||
2602:f92a:a47d::/48
|
||||
2602:f9ba:10c::/48
|
||||
2602:f9ba:a8::/48
|
||||
2602:f9f6:400::/47
|
||||
2602:f9f6::/48
|
||||
2602:f9f6:402::/48
|
||||
2602:f9f6:450::/48
|
||||
2602:faa8:702::/48
|
||||
2602:faa8:708::/47
|
||||
2602:faa8:70c::/47
|
||||
2602:faa8:70f::/48
|
||||
2602:fbda:600::/48
|
||||
2602:fbda:610::/48
|
||||
2602:fbda:620::/48
|
||||
@ -1382,7 +1303,6 @@
|
||||
2605:9d80:9042::/48
|
||||
2605:9d80:9071::/48
|
||||
2605:9d80:9092::/48
|
||||
2620:57:4004::/48
|
||||
2804:1e48:9001::/48
|
||||
2804:1e48:9002::/48
|
||||
2a04:3e00:1002::/48
|
||||
@ -1416,92 +1336,118 @@
|
||||
2a06:3600:fc00::/38
|
||||
2a06:3605::/32
|
||||
2a06:3606::/31
|
||||
2a06:9f81:4600::/43
|
||||
2a06:9f81:4620::/44
|
||||
2a06:9f81:4640::/43
|
||||
2a06:a005:260::/43
|
||||
2a06:a005:280::/43
|
||||
2a06:a005:2a0::/44
|
||||
2a06:de00:de00::/48
|
||||
2a07:54c1:2200::/46
|
||||
2a07:54c1:2205::/48
|
||||
2a0a:d680:8100::/47
|
||||
2a0a:d680:a31::/48
|
||||
2a0a:d681:e000::/40
|
||||
2a0a:d681:fb00::/40
|
||||
2a0a:d681:fc00::/38
|
||||
2a0a:d685:1ff::/48
|
||||
2a0a:d685:200::/48
|
||||
2a0a:d687:f001::/48
|
||||
2a0a:d687:f008::/48
|
||||
2a0b:4340:90::/48
|
||||
2a0b:4340:97::/48
|
||||
2a0c:b641:570::/47
|
||||
2a0c:b641:573::/48
|
||||
2a0d:c7c7:400::/38
|
||||
2a0e:aa06:400::/44
|
||||
2a0e:aa06:440::/48
|
||||
2a0e:aa06:450::/44
|
||||
2a0e:aa06:490::/44
|
||||
2a0e:aa07:e025::/48
|
||||
2a0e:aa07:e200::/44
|
||||
2a0e:aa06:4ea::/48
|
||||
2a0e:aa06::/40
|
||||
2a0e:aa07:e144::/48
|
||||
2a0e:aa07:e146::/48
|
||||
2a0e:aa07:e148::/48
|
||||
2a0e:aa07:e280::/47
|
||||
2a0e:aa07:e284::/46
|
||||
2a0e:aa07:e288::/46
|
||||
2a0e:aa07:e28d::/48
|
||||
2a0e:aa07:e28e::/48
|
||||
2a0e:aa07:f0d0::/46
|
||||
2a0e:aa07:f0d4::/47
|
||||
2a0e:aa07:f0d8::/48
|
||||
2a0e:aa07:f0de::/47
|
||||
2a0e:b107:14a0::/44
|
||||
2a0e:b107:1522::/48
|
||||
2a0e:b107:2440::/44
|
||||
2a0e:b107:740::/44
|
||||
2a0e:b107:da0::/44
|
||||
2a0f:1cc5:1000::/48
|
||||
2a0f:1cc5:1010::/44
|
||||
2a0f:1cc5:1032::/47
|
||||
2a0f:1cc5:1034::/47
|
||||
2a0f:1cc5:1041::/48
|
||||
2a0f:1cc5:110::/44
|
||||
2a0f:1cc5:130::/44
|
||||
2a0f:1cc5:140::/44
|
||||
2a0f:1cc5:140::/42
|
||||
2a0f:1cc5:14::/46
|
||||
2a0f:1cc5:1600::/44
|
||||
2a0f:1cc5:1c00::/47
|
||||
2a0f:1cc5:1c02::/48
|
||||
2a0f:1cc5:1c20::/48
|
||||
2a0f:1cc5:1c30::/48
|
||||
2a0f:1cc5:1cc0::/48
|
||||
2a0f:1cc5:1d10::/47
|
||||
2a0f:1cc5:1d14::/48
|
||||
2a0f:1cc5:1f::/48
|
||||
2a0f:1cc5:2000::/40
|
||||
2a0f:1cc5:2510::/44
|
||||
2a0f:1cc5:2520::/44
|
||||
2a0f:1cc5:2600::/40
|
||||
2a0f:1cc5:2600::/41
|
||||
2a0f:1cc5:2680::/42
|
||||
2a0f:1cc5:2d01::/48
|
||||
2a0f:1cc5:2d03::/48
|
||||
2a0f:1cc5:3203::/48
|
||||
2a0f:1cc5:3222::/48
|
||||
2a0f:1cc5:3700::/43
|
||||
2a0f:1cc5:40::/48
|
||||
2a0f:1cc5:600::/47
|
||||
2a0f:1cc5:603::/48
|
||||
2a0f:1cc5:645::/48
|
||||
2a0f:1cc5:661::/48
|
||||
2a0f:1cc5:662::/48
|
||||
2a0f:1cc5:690::/48
|
||||
2a0f:1cc5:6a0::/48
|
||||
2a0f:1cc5:f00::/45
|
||||
2a0f:1cc5:f01::/48
|
||||
2a0f:1cc5:f02::/47
|
||||
2a0f:1cc5:f04::/46
|
||||
2a0f:1cc5:f08::/47
|
||||
2a0f:1cc5:fff::/48
|
||||
2a0f:1cc6:b110::/47
|
||||
2a0f:1cc6:b210::/47
|
||||
2a0f:1cc6:b212::/48
|
||||
2a0f:2706::/32
|
||||
2a0f:6284:4c00::/44
|
||||
2a0f:6284:4c20::/44
|
||||
2a0f:6284:4c30::/48
|
||||
2a0f:6284:4c40::/43
|
||||
2a0f:6284:4c60::/44
|
||||
2a0f:6284:4c80::/43
|
||||
2a0f:6284:4ca0::/44
|
||||
2a0f:6284:4cd0::/44
|
||||
2a0f:7803:fc00::/39
|
||||
2a0f:85c1:bfe::/48
|
||||
2a0f:9400:6110::/48
|
||||
2a10:ccc0:cc1::/48
|
||||
2a10:ccc0:cc2::/48
|
||||
2a10:ccc0:ccc0::/48
|
||||
2a10:ccc0:ccc::/48
|
||||
2a12:cb46:6000::/44
|
||||
2a12:cb41:1200::/44
|
||||
2a12:cb41:1300::/44
|
||||
2a12:cb41:13f0::/44
|
||||
2a12:cb41::/44
|
||||
2a12:cb46::/36
|
||||
2a12:cb47:ffff::/48
|
||||
2a13:1800:10::/48
|
||||
2a13:1800:300::/44
|
||||
2a13:1800:80::/44
|
||||
2a13:1800::/48
|
||||
2a13:1801:180::/43
|
||||
2a13:1801:200::/44
|
||||
2a13:1802::/43
|
||||
2a13:8c87::/32
|
||||
2a13:a5c3:f000::/40
|
||||
2a13:a5c3:ff41::/48
|
||||
2a13:a5c3:ff50::/44
|
||||
2a13:a5c5::/48
|
||||
2a13:aac4:f000::/44
|
||||
2a13:b487:1200::/42
|
||||
2a14:67c1:a110::/44
|
||||
2a14:67c1:b500::/47
|
||||
2a14:67c1:b500::/48
|
||||
2a14:67c1:b511::/48
|
||||
2a14:67c1:b514::/48
|
||||
2a14:67c1:b530::/44
|
||||
2a14:67c1:b561::/48
|
||||
2a14:67c1:b563::/48
|
||||
2a14:67c1:b578::/48
|
||||
2a14:67c1:b586::/47
|
||||
@ -1509,19 +1455,32 @@
|
||||
2a14:67c1:b590::/48
|
||||
2a14:67c1:b599::/48
|
||||
2a14:67c1:b5e0::/44
|
||||
2a14:67c3:30::/44
|
||||
2a14:67c3:6668::/45
|
||||
2a14:67c2:519::/48
|
||||
2a14:67c2:a10::/47
|
||||
2a14:67c2:a21::/48
|
||||
2a14:67c2:a22::/47
|
||||
2a14:67c2:a2f::/48
|
||||
2a14:67c2:a30::/48
|
||||
2a14:67c2:a41::/48
|
||||
2a14:67c2:a50::/48
|
||||
2a14:67c2:a70::/47
|
||||
2a14:67c2:a80::/47
|
||||
2a14:67c2:a90::/48
|
||||
2a14:67c3:1100::/47
|
||||
2a14:67c3:9990::/44
|
||||
2a14:67c3:c0::/48
|
||||
2a14:7580:740::/44
|
||||
2a14:7580:7a0::/48
|
||||
2a14:7580:d00::/43
|
||||
2a14:7580:d20::/46
|
||||
2a14:7580:d41::/48
|
||||
2a14:7580:d42::/47
|
||||
2a14:7580:dff::/48
|
||||
2a14:7580:fffa::/48
|
||||
2a14:7581:3810::/47
|
||||
2a14:7581:3814::/48
|
||||
2a14:7581:3818::/47
|
||||
2a14:7581:381b::/48
|
||||
2a14:7581:ffb::/48
|
||||
2a14:7583:f220::/43
|
||||
2a14:7583:f240::/42
|
||||
2a14:7583:f411::/48
|
||||
2a14:7583:f4f0::/48
|
||||
2a14:7583:f4f4::/48
|
||||
@ -1534,12 +1493,16 @@
|
||||
2a14:7583:f743::/48
|
||||
2a14:7583:f744::/48
|
||||
2a14:7583:f764::/48
|
||||
2a14:7586:6100::/46
|
||||
2a14:7586:6104::/48
|
||||
2a14:7586:6107::/48
|
||||
2a14:7586:6100::/47
|
||||
2a14:7586:6103::/48
|
||||
2a14:7586:6104::/47
|
||||
2a14:7586:6106::/48
|
||||
2a14:7586:6110::/48
|
||||
2a14:7586:6113::/48
|
||||
2a14:7586:6300::/44
|
||||
2a14:7586:6500::/48
|
||||
2a14:7dc0:506::/48
|
||||
2a14:ae00:50::/44
|
||||
2c0f:f7a8:8011::/48
|
||||
2c0f:f7a8:8050::/48
|
||||
2c0f:f7a8:805f::/48
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
cn
|
||||
apple.com
|
||||
microsoft.com
|
||||
dyndns.com
|
||||
|
||||
@ -13,6 +13,7 @@
|
||||
173ng.com
|
||||
18board.com
|
||||
18comic.org
|
||||
18mh.net
|
||||
1984bbs.com
|
||||
1991way.com
|
||||
1e100.net
|
||||
@ -25,6 +26,7 @@
|
||||
2047.one
|
||||
2049bbs.xyz
|
||||
233abc.com
|
||||
24hbook.com
|
||||
24hrs.ca
|
||||
32red.com
|
||||
36rain.com
|
||||
@ -72,6 +74,7 @@
|
||||
9cache.com
|
||||
9gag.com
|
||||
9news.com.au
|
||||
9oju31.launches.appsflyersdk.com
|
||||
a-normal-day.com
|
||||
a248.e.akamai.net
|
||||
aamacau.com
|
||||
@ -86,8 +89,10 @@ about.gitlab.com
|
||||
about.me
|
||||
abplive.com
|
||||
acast.com
|
||||
accountboy.com
|
||||
accountkit.com
|
||||
acevpn.com
|
||||
acg.mn
|
||||
acg.rip
|
||||
acg18.me
|
||||
acgbox.org
|
||||
@ -205,13 +210,18 @@ aoxvpn.com
|
||||
apartmentratings.com
|
||||
apartments.com
|
||||
apat1989.org
|
||||
api-gl.lbkrs.com
|
||||
api-secure.recaptcha.net
|
||||
api-verify.recaptcha.net
|
||||
api.ai
|
||||
api.futunn.com
|
||||
api.lbkrs.com
|
||||
api.moomoobull.com
|
||||
api.palworldgame.com
|
||||
api.pureapk.com
|
||||
api.recaptcha.net
|
||||
api.steampowered.com
|
||||
api5.futunn.com
|
||||
apiary.io
|
||||
apigee.com
|
||||
apk.support
|
||||
@ -257,6 +267,7 @@ arte.tv
|
||||
artstation.com
|
||||
arvanstorage.ir
|
||||
arweave.org
|
||||
as.mr
|
||||
asacp.org
|
||||
asiaharvest.org
|
||||
asianage.com
|
||||
@ -321,6 +332,7 @@ bangchen.net
|
||||
bangdream.space
|
||||
bangkokpost.com
|
||||
bangumi.moe
|
||||
bangumi.tv
|
||||
bangyoulater.com
|
||||
bankmobilevibe.com
|
||||
bannedbook.org
|
||||
@ -376,6 +388,7 @@ bettween.com
|
||||
betvictor.com
|
||||
bfnn.org
|
||||
bfsh.hk
|
||||
bgm.tv
|
||||
bgme.me
|
||||
bgvpn.com
|
||||
biblesforamerica.org
|
||||
@ -386,6 +399,7 @@ bigjapanesesex.com
|
||||
bignews.org
|
||||
bigone.com
|
||||
bild.de
|
||||
bilinovel.com
|
||||
biliworld.com
|
||||
binance.com
|
||||
binance.org
|
||||
@ -413,6 +427,7 @@ bl-doujinsouko.com
|
||||
blacked.com
|
||||
blackmagicdesign.com
|
||||
blackvpn.com
|
||||
bleepingcomputer.com
|
||||
blinkx.com
|
||||
blip.tv
|
||||
blockcast.it
|
||||
@ -525,6 +540,7 @@ bookdepository.com
|
||||
books.com.tw
|
||||
booktopia.com.au
|
||||
bookwalker.com.tw
|
||||
boomplay.com
|
||||
bootstrapcdn.com
|
||||
borgenmagazine.com
|
||||
botanwang.com
|
||||
@ -648,6 +664,7 @@ cdjp.org
|
||||
cdn-images.mailchimp.com
|
||||
cdn-telegram.org
|
||||
cdn.arstechnica.net
|
||||
cdn.futustatic.com
|
||||
cdn.jwplayer.com
|
||||
cdn.printfriendly.com
|
||||
cdn.seatguru.com
|
||||
@ -671,6 +688,7 @@ centurys.net
|
||||
certificate-transparency.org
|
||||
certificate.revocationcheck.com
|
||||
cfr.org
|
||||
cg.play-analytics.com
|
||||
cgdepot.org
|
||||
change.org
|
||||
changp.com
|
||||
@ -692,6 +710,7 @@ chenpokongvip.com
|
||||
chenshan20042005.wordpress.com
|
||||
cherrysave.com
|
||||
chhongbi.org
|
||||
chii.in
|
||||
china-mmm.net
|
||||
china-review.com.ua
|
||||
china-week.com
|
||||
@ -736,6 +755,7 @@ chineseupress.com
|
||||
chingcheong.com
|
||||
chinman.net
|
||||
chobit.cc
|
||||
chonglangtv.org
|
||||
chrdnet.com
|
||||
christianfreedom.org
|
||||
christianstudy.com
|
||||
@ -871,6 +891,7 @@ csw.org.uk
|
||||
ct.org.tw
|
||||
ctinets.com
|
||||
ctinews.com
|
||||
ctinsider.com
|
||||
ctitv.com.tw
|
||||
ctowc.org
|
||||
cts.com.tw
|
||||
@ -913,6 +934,7 @@ darpa.mil
|
||||
darrenliuwei.com
|
||||
dashlane.com
|
||||
data-vocabulary.org
|
||||
data18.com
|
||||
daum.net
|
||||
david-kilgour.com
|
||||
dawangidc.com
|
||||
@ -1011,7 +1033,9 @@ doublethinklab.org
|
||||
douchi.space
|
||||
dougscripts.com
|
||||
doujincafe.com
|
||||
dowjones.io
|
||||
download.dappcdn.com
|
||||
download.futunn.com
|
||||
dpool.top
|
||||
dpp.org.tw
|
||||
dpr.info
|
||||
@ -1024,6 +1048,7 @@ dropboxapi.com
|
||||
dropboxusercontent.com
|
||||
dscn.info
|
||||
dstk.dk
|
||||
dt18.com
|
||||
dtiblog.com
|
||||
dtic.mil
|
||||
dubox.com
|
||||
@ -1065,6 +1090,7 @@ ecfa.org.tw
|
||||
ecimg.tw
|
||||
economist.com
|
||||
edgecastcdn.net
|
||||
edigest.hk
|
||||
edubridge.com
|
||||
edx-cdn.org
|
||||
eesti.ee
|
||||
@ -1143,6 +1169,7 @@ eyny.com
|
||||
f-droid.org
|
||||
f2pool.com
|
||||
f8.com
|
||||
f95zone.to
|
||||
facebook.com
|
||||
facebook.de
|
||||
facebook.design
|
||||
@ -1324,12 +1351,42 @@ funkyimg.com
|
||||
furbo.org
|
||||
furinkan.com
|
||||
furrybar.com
|
||||
futu.cn
|
||||
futu.com
|
||||
futu.link
|
||||
futu0.com
|
||||
futu1.com
|
||||
futu2.com
|
||||
futu3.com
|
||||
futu4.com
|
||||
futu5.com
|
||||
futu6.com
|
||||
futu7.com
|
||||
futu8.com
|
||||
futu9.com
|
||||
futuau.com
|
||||
futubull.cn
|
||||
futuchain.com
|
||||
futuesop.com
|
||||
futufin.com
|
||||
futuhk.com
|
||||
futuhk2.com
|
||||
futuhkapp.com
|
||||
futuhn.com
|
||||
futuholdings.com
|
||||
futuinc.com
|
||||
futuniuniu.com
|
||||
futunn.com
|
||||
futuremessage.org
|
||||
futustatic.com
|
||||
fututrade.com
|
||||
fututrustee.com
|
||||
fw.cm
|
||||
fxcm-chinese.com
|
||||
fxnetworks.com
|
||||
g-area.org
|
||||
g-queen.com
|
||||
g.ai
|
||||
g.co
|
||||
g0v.social
|
||||
g6hentai.com
|
||||
@ -1361,6 +1418,7 @@ gdaily.org
|
||||
geek-art.net
|
||||
gekikame.com
|
||||
gelbooru.com
|
||||
gencraft.com
|
||||
generated.photos
|
||||
genius.com
|
||||
geph.io
|
||||
@ -1774,6 +1832,7 @@ heyuedi.com
|
||||
hicairo.com
|
||||
hiccears.com
|
||||
hidden-advent.org
|
||||
hiddify.com
|
||||
hide.me
|
||||
hideipvpn.com
|
||||
hideman.net
|
||||
@ -1789,6 +1848,7 @@ hindustantimes.com
|
||||
hinet.net
|
||||
hitbtc.com
|
||||
hitomi.la
|
||||
hive.blog
|
||||
hiveon.net
|
||||
hk-pub.com
|
||||
hk.gradconnection.com
|
||||
@ -1963,6 +2023,7 @@ indiatoday.in
|
||||
indiemerch.com
|
||||
inews-api.tvb.com
|
||||
info-graf.fr
|
||||
infosec.exchange
|
||||
infura.io
|
||||
inherit.live
|
||||
initiativesforchina.org
|
||||
@ -2022,6 +2083,7 @@ itasoftware.com
|
||||
itch.io
|
||||
itemfix.com
|
||||
itiger.com
|
||||
itigerup.com
|
||||
itshidden.com
|
||||
itweet.net
|
||||
iuhrdf.org
|
||||
@ -2101,6 +2163,7 @@ kanshifang.com
|
||||
kantie.org
|
||||
kaotic.com
|
||||
karayou.com
|
||||
kathmandupost.com
|
||||
kawaiikawaii.jp
|
||||
kawase.com
|
||||
kb.monitorware.com
|
||||
@ -2159,12 +2222,15 @@ landofhope.tv
|
||||
lantern.io
|
||||
laogai.org
|
||||
laogairesearch.org
|
||||
laohu8.com
|
||||
laqingdan.net
|
||||
larsgeorge.com
|
||||
lastcombat.com
|
||||
lastfm.es
|
||||
lausan.hk
|
||||
lbank.info
|
||||
lbctrl.com
|
||||
lbkrs.com
|
||||
ldplayer.net
|
||||
ldplayer.tw
|
||||
le-vpn.com
|
||||
@ -2175,7 +2241,9 @@ left21.hk
|
||||
legra.ph
|
||||
leisurepro.com
|
||||
lematin.ch
|
||||
lemonde.fr
|
||||
lenwhite.com
|
||||
leonardo.ai
|
||||
lesoir.be
|
||||
letscorp.net
|
||||
lexica.art
|
||||
@ -2187,6 +2255,7 @@ liaowangxizang.net
|
||||
liberal.org.hk
|
||||
libertysculpturepark.com
|
||||
libertytimes.com.tw
|
||||
libgen.is
|
||||
library-access.sk
|
||||
library.usc.cuhk.edu.hk
|
||||
libredd.it
|
||||
@ -2230,6 +2299,15 @@ localdomain.ws
|
||||
lockestek.com
|
||||
login.target.com
|
||||
logos.com.hk
|
||||
longbridge.cloud
|
||||
longbridge.com
|
||||
longbridge.global
|
||||
longbridge.hk
|
||||
longbridge.sg
|
||||
longbridgeapp.com
|
||||
longbridgehk.com
|
||||
longportapp.cn
|
||||
longportapp.com
|
||||
longtermly.net
|
||||
longtoes.com
|
||||
lookpic.com
|
||||
@ -2282,6 +2360,7 @@ martau.com
|
||||
martsangkagyuofficial.org
|
||||
marxist.net
|
||||
marxists.org
|
||||
mas.to
|
||||
mash.to
|
||||
mastodon.cloud
|
||||
mastodon.host
|
||||
@ -2308,6 +2387,7 @@ meansys.com
|
||||
media.nu.nl
|
||||
mediachinese.com
|
||||
mediafreakcity.com
|
||||
mediamatters.org
|
||||
mediawiki.org
|
||||
medium.com
|
||||
meee.com.tw
|
||||
@ -2387,6 +2467,7 @@ mixx.com
|
||||
mizzmona.com
|
||||
mji.rip
|
||||
mjj.rip
|
||||
mjj.today
|
||||
mjlsh.usc.cuhk.edu.hk
|
||||
mlc.ai
|
||||
mlzs.work
|
||||
@ -2413,6 +2494,9 @@ monitorchina.org
|
||||
monocloud.me
|
||||
monster.com
|
||||
moodyz.com
|
||||
moomoo.com
|
||||
moomooequity.com
|
||||
moomootrustee.com
|
||||
moon.fm
|
||||
moonbbs.com
|
||||
moonbingo.com
|
||||
@ -2424,6 +2508,7 @@ mosavi.io
|
||||
motherless.com
|
||||
movements.org
|
||||
moviefap.com
|
||||
mozilla.ai
|
||||
mpettis.com
|
||||
mpfinance.com
|
||||
mpinews.com
|
||||
@ -2436,6 +2521,7 @@ mthruf.com
|
||||
mubi.com
|
||||
mullvad.net
|
||||
multiply.com
|
||||
music.amazon.com
|
||||
musixmatch.com
|
||||
muzi.com
|
||||
muzi.net
|
||||
@ -2486,6 +2572,7 @@ ncn.org
|
||||
ndi.org
|
||||
nekoslovakia.net
|
||||
neo-miracle.com
|
||||
neodb.social
|
||||
neowin.net
|
||||
nephobox.com
|
||||
netalert.me
|
||||
@ -2509,10 +2596,12 @@ news1.kr
|
||||
news18.com
|
||||
newsancai.com
|
||||
newsblur.com
|
||||
newshub.co.nz
|
||||
newsmax.com
|
||||
newstamago.com
|
||||
newstapa.org
|
||||
newstatesman.com
|
||||
newstimes.com
|
||||
newsweek.com
|
||||
newtalk.tw
|
||||
newthuhole.com
|
||||
@ -2527,6 +2616,8 @@ nflximg.com
|
||||
nflximg.net
|
||||
nflxso.net
|
||||
nflxvideo.net
|
||||
nfsc.press
|
||||
nfscofficial.com
|
||||
nftstorage.link
|
||||
nga.mil
|
||||
nhentai.net
|
||||
@ -2646,6 +2737,13 @@ ooni.io
|
||||
ooni.org
|
||||
open.firstory.me
|
||||
openai.com
|
||||
openapi-quote.longbridge.cn
|
||||
openapi-quote.longbridge.com
|
||||
openapi-trade.longbridge.cn
|
||||
openapi-trade.longbridge.com
|
||||
openapi.futunn.com
|
||||
openapi.longbridge.cn
|
||||
openapi.longbridge.com
|
||||
openart.ai
|
||||
opencritic.com
|
||||
opendemocracy.net
|
||||
@ -2672,6 +2770,7 @@ oursteps.com.au
|
||||
ourtv.hk
|
||||
overcast.fm
|
||||
overdaily.org
|
||||
overdrive.com
|
||||
overplay.net
|
||||
oversea.istarshine.com
|
||||
ovpn.com
|
||||
@ -2684,7 +2783,6 @@ pachosting.com
|
||||
pacom.mil
|
||||
pacopacomama.com
|
||||
page.link
|
||||
pages.dev
|
||||
paimon.moe
|
||||
pancakeswap.finance
|
||||
pandafan.pub
|
||||
@ -2723,6 +2821,7 @@ pekingduck.org
|
||||
pemulihan.or.id
|
||||
pen.io
|
||||
pendrivelinux.com
|
||||
penguin.com.au
|
||||
pentoy.hk
|
||||
peoplenews.tw
|
||||
peopo.org
|
||||
@ -2899,12 +2998,15 @@ qmp4.com
|
||||
qoos.com
|
||||
qq.co.za
|
||||
qstatus.com
|
||||
qtcard.futunn.com
|
||||
qtcardfthk.futufin.com
|
||||
qtrac.eu
|
||||
questvisual.com
|
||||
quitccp.org
|
||||
quiz.directory
|
||||
quora.com
|
||||
quoracdn.net
|
||||
quote.longbridge.global
|
||||
quran.com
|
||||
qz.com
|
||||
r-pool.net
|
||||
@ -2930,6 +3032,7 @@ raindrop.io
|
||||
raizoji.or.jp
|
||||
rakuten.co.jp
|
||||
ramcity.com.au
|
||||
raphael.app
|
||||
rapidmoviez.com
|
||||
rapidvpn.com
|
||||
rarbgprx.org
|
||||
@ -3008,6 +3111,8 @@ rthk.org.hk
|
||||
rti.org.tw
|
||||
rti.tw
|
||||
rtm.tnt-ea.com
|
||||
rts.ch
|
||||
rule34.us
|
||||
rule34.xxx
|
||||
rule34video.com
|
||||
rumble.com
|
||||
@ -3042,10 +3147,11 @@ savetibetstore.org
|
||||
saveuighur.org
|
||||
sbme.me
|
||||
sbti.unun.dev
|
||||
scache.vzw.com
|
||||
scache1.vzw.com
|
||||
scache2.vzw.com
|
||||
schema.org
|
||||
schwab.co.uk
|
||||
schwab.com
|
||||
schwab.com.cn
|
||||
schwab.com.hk
|
||||
scmp.com
|
||||
scramble.io
|
||||
scratch.mit.edu
|
||||
@ -3084,6 +3190,7 @@ sexinsex.net
|
||||
sf.net
|
||||
sfshibao.com
|
||||
sftuk.org
|
||||
sgqt0j.launches.appsflyersdk.com
|
||||
shadeyouvpn.com
|
||||
shadowsocks.be
|
||||
shadowsocks.com.hk
|
||||
@ -3108,11 +3215,13 @@ shodanhq.com
|
||||
shooshtime.com
|
||||
shopee.tw
|
||||
shopping.yahoo.co.jp
|
||||
shortconn.im.qcloud.com
|
||||
showwe.tw
|
||||
shutterstock.com
|
||||
shwchurch.org
|
||||
shwchurch3.com
|
||||
sidelinesnews.com
|
||||
sider.ai
|
||||
signal.org
|
||||
silvergatebank.com
|
||||
simbolostwitter.com
|
||||
@ -3122,6 +3231,7 @@ simplecd.org
|
||||
simpleswap.io
|
||||
simplex.chat
|
||||
sina.com.hk
|
||||
sinchew.com.my
|
||||
singaporepools.com.sg
|
||||
singlelogin.se
|
||||
singtao.com
|
||||
@ -3130,6 +3240,7 @@ sinoants.com
|
||||
sinoca.com
|
||||
sinocast.com
|
||||
sinoinsider.com
|
||||
sinyalee.com
|
||||
sipml5.org
|
||||
sis001.com
|
||||
site.new
|
||||
@ -3165,7 +3276,7 @@ socialblade.com
|
||||
socks-proxy.net
|
||||
sockslist.net
|
||||
socrec.org
|
||||
softether-download.com
|
||||
softether.co.jp
|
||||
softether.org
|
||||
softfamous.com
|
||||
softwarebychuck.com
|
||||
@ -3186,6 +3297,7 @@ sorting-algorithms.com
|
||||
sos.org
|
||||
sosad.fun
|
||||
sosreader.com
|
||||
sotwe.com
|
||||
soubory.com
|
||||
soulcaliburhentai.net
|
||||
soundcloud.com
|
||||
@ -3224,7 +3336,6 @@ springwood.me
|
||||
sproutcore.com
|
||||
squirrelvpn.com
|
||||
ss-link.com
|
||||
ss7.vzw.com
|
||||
ssglobal.co
|
||||
ssl.webpack.de
|
||||
sspanel.net
|
||||
@ -3289,11 +3400,13 @@ supchina.com
|
||||
superpages.com
|
||||
supervpn.net
|
||||
superzooi.com
|
||||
support.futunn.com
|
||||
suprememastertv.com
|
||||
surfeasy.com
|
||||
surfeasy.com.au
|
||||
surfshark.com
|
||||
surrenderat20.net
|
||||
suyingtv.com
|
||||
swagbucks.com
|
||||
swapspace.co
|
||||
swissinfo.ch
|
||||
@ -3343,6 +3456,7 @@ tbsec.org
|
||||
tbsn.org
|
||||
tbssqh.org
|
||||
teachparentstech.org
|
||||
techbang.com
|
||||
technews.tw
|
||||
techviz.net
|
||||
teck.in
|
||||
@ -3373,6 +3487,8 @@ tfhub.dev
|
||||
tfiflve.com
|
||||
tg-me.com
|
||||
tg.dev
|
||||
tgstat.com
|
||||
the-sun.com
|
||||
theatlantic.com
|
||||
theatrum-belli.com
|
||||
thebcomplex.com
|
||||
@ -3405,6 +3521,7 @@ thestandnews.com
|
||||
thetatoken.org
|
||||
thetibetpost.com
|
||||
thetvdb.com
|
||||
theweek.com
|
||||
thewgo.org
|
||||
thewirechina.com
|
||||
theync.com
|
||||
@ -3472,6 +3589,12 @@ tibettelegraph.com
|
||||
tibettimes.net
|
||||
tibettruth.com
|
||||
tibetwrites.org
|
||||
tigerbbs.cn
|
||||
tigerbbs.com
|
||||
tigerbrokers.com
|
||||
tigerbrokers.net
|
||||
tigerbrokers.nz
|
||||
tigerfintech.com
|
||||
tigervpn.com
|
||||
tiktok.com
|
||||
tiktokcdn-eu.com
|
||||
@ -3534,6 +3657,9 @@ totalvpn.com
|
||||
tou.tv
|
||||
tpi.org.tw
|
||||
tracfone.com
|
||||
trade.futunn.com
|
||||
trade.longportapp.com
|
||||
tradeup.com
|
||||
tradingview.com
|
||||
translate.goog
|
||||
transparency.org
|
||||
@ -3578,6 +3704,7 @@ tv.com
|
||||
tv.jtbc.joins.com
|
||||
tvbanywhere.com
|
||||
tvboxnow.com
|
||||
tvdy1.com
|
||||
tvunetworks.com
|
||||
tw-blog.com
|
||||
tw.jiepang.com
|
||||
@ -3664,6 +3791,7 @@ ulop.net
|
||||
ultrasurf.us
|
||||
ultravpn.com
|
||||
ultravpn.fr
|
||||
umap.openstreetmap.fr
|
||||
unblock-us.com
|
||||
unblock.cn.com
|
||||
unblockdmm.com
|
||||
@ -3687,6 +3815,7 @@ upghsbc.com
|
||||
upmedia.mg
|
||||
upornia.com
|
||||
uproxy.org
|
||||
upsangel.com
|
||||
uptodown.com
|
||||
uraban.me
|
||||
urbandictionary.com
|
||||
@ -3734,6 +3863,7 @@ vaticannews.va
|
||||
vatn.org
|
||||
vcf-online.org
|
||||
vcfbuilder.org
|
||||
veed.io
|
||||
vegas.williamhill.com
|
||||
vegasred.com
|
||||
venetianmacao.com
|
||||
@ -3785,6 +3915,7 @@ vod.wwe.com
|
||||
voicettank.org
|
||||
vot.org
|
||||
vovo2000.com
|
||||
vox.com
|
||||
voxer.com
|
||||
vpl.bibliocommons.com
|
||||
vpn.ac
|
||||
@ -3854,6 +3985,7 @@ wav.tv
|
||||
waveprotocol.org
|
||||
waybig.com
|
||||
waymo.com
|
||||
wbrks.com
|
||||
wd.bible
|
||||
wealth.com.tw
|
||||
wearn.com
|
||||
@ -3960,12 +4092,14 @@ work2icu.org
|
||||
workatruna.com
|
||||
workerempowerment.org
|
||||
workers.dev
|
||||
worldjournal.com
|
||||
worldvpn.net
|
||||
wowgirls.com
|
||||
wowhead.com
|
||||
wowporn.com
|
||||
woyaolian.org
|
||||
wp.com
|
||||
wplace.live
|
||||
wpoforum.com
|
||||
writesonic.com
|
||||
wsj.com
|
||||
@ -4029,6 +4163,7 @@ xgmyd.com
|
||||
xhamster.com
|
||||
xianjian.tw
|
||||
xiaohexie.com
|
||||
xiaohu8.com
|
||||
xiaolan.me
|
||||
xiaoma.org
|
||||
xiaomi.eu
|
||||
@ -4053,6 +4188,7 @@ xn--noss43i.com
|
||||
xn--oiq.cc
|
||||
xn--p8j9a0d9c9a.xn--q9jyb4c
|
||||
xn--u2u927b.com
|
||||
xn--vuqv2cf7wzyig79c.com
|
||||
xnpool.com
|
||||
xnxx.com
|
||||
xpud.org
|
||||
@ -4099,7 +4235,6 @@ yeyeclub.com
|
||||
yfsp.tv
|
||||
yhcw.net
|
||||
yibaochina.com
|
||||
yidio.com
|
||||
yigeni.com
|
||||
yipub.com
|
||||
yizhihongxing.com
|
||||
@ -4162,11 +4297,14 @@ zh.ecdm.wikia.com
|
||||
zh.pokerstrategy.com
|
||||
zh.wikiquote.org
|
||||
zhangtianliang.com
|
||||
zhangzhehan.net
|
||||
zhanlve.org
|
||||
zhao.1984.city
|
||||
zhengjian.org
|
||||
zhengwunet.org
|
||||
zhenxiang.biz
|
||||
zhijianfengyi.cn
|
||||
zhijianfengyi.com
|
||||
zhizhu.top
|
||||
zhongguo.ca
|
||||
zhongguotese.net
|
||||
|
||||
@ -21,13 +21,13 @@ define Download/geoip
|
||||
HASH:=a322dfb6bfd8987c83453c39582a07771c9deddf9f8f7d2d19c7927ebd5e76c8
|
||||
endef
|
||||
|
||||
GEOSITE_VER:=20260621074522
|
||||
GEOSITE_VER:=20260623060549
|
||||
GEOSITE_FILE:=dlc.dat.$(GEOSITE_VER)
|
||||
define Download/geosite
|
||||
URL:=https://github.com/v2fly/domain-list-community/releases/download/$(GEOSITE_VER)/
|
||||
URL_FILE:=dlc.dat
|
||||
FILE:=$(GEOSITE_FILE)
|
||||
HASH:=680b8a378b94b69e6398cd05d5b5b016cb0809fad30f385211ce91a5a0f74815
|
||||
HASH:=fb8671dca2b1124d737a425a26c3c9165b201d395ecda0d3c09bd0889962a10d
|
||||
endef
|
||||
|
||||
GEOSITE_IRAN_VER:=202606220211
|
||||
|
||||
Loading…
Reference in New Issue
Block a user