LuCI - OpenWrt Configuration Interface
Revisión | aa50598ac6aa1a155d1f5e985f977c935fbcaea6 (tree) |
---|---|
Tiempo | 2023-03-19 21:02:22 |
Autor | Tianling Shen <cnsztl@immo...> |
Commiter | Tianling Shen |
luci-app-homeproxy: sync mainline
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
@@ -218,8 +218,7 @@ return view.extend({ | ||
218 | 218 | o = s.taboption('routing', form.ListValue, 'proxy_mode', _('Proxy mode')); |
219 | 219 | o.value('redirect', _('Redirect TCP')); |
220 | 220 | o.value('redirect_tproxy', _('Redirect TCP + TProxy UDP')); |
221 | - /* This detection is required as the `system` stack doesn't work currently */ | |
222 | - if (features.with_gvisor || features.with_lwip) { | |
221 | + if (features.hp_has_tun) { | |
223 | 222 | o.value('redirect_tun', _('Redirect TCP + Tun UDP')); |
224 | 223 | o.value('tun', _('Tun TCP/UDP')); |
225 | 224 | } |
@@ -242,13 +241,8 @@ return view.extend({ | ||
242 | 241 | so.value('gvisor', _('gVisor')); |
243 | 242 | if (features.with_lwip) |
244 | 243 | so.value('lwip', _('LWIP')); |
245 | - /* | |
246 | - * The `system` stack doesn't work properly on OpenWrt, so hide it | |
247 | - * until it gets fixed. | |
248 | - * | |
249 | - * o.value('system', _('System')); | |
250 | - */ | |
251 | - so.default = 'gvisor'; | |
244 | + so.value('system', _('System')); | |
245 | + so.default = 'system'; | |
252 | 246 | so.depends('homeproxy.config.proxy_mode', 'redirect_tun'); |
253 | 247 | so.depends('homeproxy.config.proxy_mode', 'tun'); |
254 | 248 | so.rmempty = false; |
@@ -266,7 +260,6 @@ return view.extend({ | ||
266 | 260 | _('Performance may degrade slightly, so it is not recommended to enable on when it is not needed.')); |
267 | 261 | so.default = so.enabled; |
268 | 262 | so.depends('tcpip_stack', 'gvisor'); |
269 | - so.depends('tcpip_stack', 'gvisor'); | |
270 | 263 | so.rmempty = false; |
271 | 264 | |
272 | 265 | so = ss.option(form.Flag, 'bypass_cn_traffic', _('Bypass CN traffic'), |
@@ -442,18 +442,6 @@ return view.extend({ | ||
442 | 442 | so.value('vless', _('VLESS')); |
443 | 443 | so.value('vmess', _('VMess')); |
444 | 444 | so.rmempty = false; |
445 | - so.onchange = function(ev, section_id, value) { | |
446 | - var tls_element = this.map.findElement('id', 'cbid.homeproxy.%s.tls'.format(section_id)).firstElementChild; | |
447 | - if (['hysteria', 'shadowtls'].includes(value)) { | |
448 | - var event = document.createEvent('HTMLEvents'); | |
449 | - event.initEvent('change', true, true); | |
450 | - | |
451 | - tls_element.checked = true; | |
452 | - tls_element.dispatchEvent(event); | |
453 | - tls_element.disabled = true; | |
454 | - } else | |
455 | - tls_element.disabled = null; | |
456 | - } | |
457 | 445 | |
458 | 446 | so = ss.option(form.Value, 'address', _('Address')); |
459 | 447 | so.datatype = 'host'; |
@@ -753,8 +741,8 @@ return view.extend({ | ||
753 | 741 | else |
754 | 742 | desc.innerHTML = _('No TCP transport, plain HTTP is merged into the HTTP transport.'); |
755 | 743 | |
756 | - var tls_element = this.map.findElement('id', 'cbid.homeproxy.%s.tls'.format(section_id)).firstElementChild; | |
757 | - if ((value === 'http' && tls_element.checked) || (value === 'grpc' && !features.with_grpc)) { | |
744 | + var tls = this.map.findElement('id', 'cbid.homeproxy.%s.tls'.format(section_id)).firstElementChild; | |
745 | + if ((value === 'http' && tls.checked) || (value === 'grpc' && !features.with_grpc)) { | |
758 | 746 | this.map.findElement('id', 'cbid.homeproxy.%s.http_idle_timeout'.format(section_id)).nextElementSibling.innerHTML = |
759 | 747 | _('Specifies the period of time after which a health check will be performed using a ping frame if no frames have been received on the connection.<br/>' + |
760 | 748 | 'Please note that a ping response is considered a received frame, so if there is no other traffic on the connection, the health check will be executed every interval.'); |
@@ -937,6 +925,20 @@ return view.extend({ | ||
937 | 925 | so.depends('type', 'trojan'); |
938 | 926 | so.depends('type', 'vless'); |
939 | 927 | so.depends('type', 'vmess'); |
928 | + so.validate = function(section_id, value) { | |
929 | + if (section_id) { | |
930 | + var type = this.map.lookupOption('type', section_id)[0].formvalue(section_id); | |
931 | + var tls = this.map.findElement('id', 'cbid.homeproxy.%s.tls'.format(section_id)).firstElementChild; | |
932 | + | |
933 | + if (['hysteria', 'shadowtls'].includes(type)) { | |
934 | + tls.checked = true; | |
935 | + tls.disabled = true; | |
936 | + } else | |
937 | + tls.disabled = null; | |
938 | + } | |
939 | + | |
940 | + return true; | |
941 | + } | |
940 | 942 | so.modalonly = true; |
941 | 943 | |
942 | 944 | so = ss.option(form.Value, 'tls_sni', _('TLS SNI'), |
@@ -1039,11 +1041,11 @@ return view.extend({ | ||
1039 | 1041 | so.value('random', _('Random')); |
1040 | 1042 | so.value('randomized', _('Randomized')); |
1041 | 1043 | so.value('safari', _('Safari')); |
1042 | - so.depends('tls', '1'); | |
1044 | + so.depends({'tls': '1', 'type': /^((?!hysteria$).)+$/}); | |
1043 | 1045 | so.validate = function(section_id, value) { |
1044 | 1046 | if (section_id) { |
1045 | 1047 | let tls_reality = this.map.lookupOption('tls_reality', section_id)[0].formvalue(section_id); |
1046 | - if (tls_reality && !value) | |
1048 | + if (tls_reality.checked && !value) | |
1047 | 1049 | return _('Expecting: %s').format(_('non-empty value')); |
1048 | 1050 | } |
1049 | 1051 |
@@ -1084,6 +1086,13 @@ return view.extend({ | ||
1084 | 1086 | so.depends('type', 'socks'); |
1085 | 1087 | so.depends({'type': 'shadowsocks', 'multiplex': '0'}); |
1086 | 1088 | so.modalonly = true; |
1089 | + | |
1090 | + so = ss.option(form.ListValue, 'udp_over_tcp_version', _('SUoT version')); | |
1091 | + so.value('1', _('v1')); | |
1092 | + so.value('2', _('v2')); | |
1093 | + so.default = '2'; | |
1094 | + so.depends('udp_over_tcp', '1'); | |
1095 | + so.modalonly = true; | |
1087 | 1096 | /* Extra settings end */ |
1088 | 1097 | /* Nodes settings end */ |
1089 | 1098 |
@@ -5,19 +5,19 @@ msgstr "Content-Type: text/plain; charset=UTF-8" | ||
5 | 5 | msgid "%s log" |
6 | 6 | msgstr "" |
7 | 7 | |
8 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1213 | |
8 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1222 | |
9 | 9 | msgid "%s nodes removed" |
10 | 10 | msgstr "" |
11 | 11 | |
12 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1032 | |
12 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1034 | |
13 | 13 | msgid "360" |
14 | 14 | msgstr "" |
15 | 15 | |
16 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:400 | |
16 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:393 | |
17 | 17 | msgid "4 or 6. Not limited if empty." |
18 | 18 | msgstr "" |
19 | 19 | |
20 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:999 | |
20 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1001 | |
21 | 21 | #: htdocs/luci-static/resources/view/homeproxy/server.js:450 |
22 | 22 | #: htdocs/luci-static/resources/view/homeproxy/server.js:466 |
23 | 23 | msgid "<strong>Save your configuration before uploading files!</strong>" |
@@ -31,15 +31,15 @@ msgstr "" | ||
31 | 31 | msgid "Accept no header" |
32 | 32 | msgstr "" |
33 | 33 | |
34 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:808 | |
34 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:801 | |
35 | 35 | msgid "Access Control" |
36 | 36 | msgstr "" |
37 | 37 | |
38 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:656 | |
38 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:649 | |
39 | 39 | msgid "Add a DNS rule" |
40 | 40 | msgstr "" |
41 | 41 | |
42 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:568 | |
42 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:561 | |
43 | 43 | msgid "Add a DNS server" |
44 | 44 | msgstr "" |
45 | 45 |
@@ -47,11 +47,11 @@ msgstr "" | ||
47 | 47 | msgid "Add a node" |
48 | 48 | msgstr "" |
49 | 49 | |
50 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:310 | |
50 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:303 | |
51 | 51 | msgid "Add a routing node" |
52 | 52 | msgstr "" |
53 | 53 | |
54 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:385 | |
54 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:378 | |
55 | 55 | msgid "Add a routing rule" |
56 | 56 | msgstr "" |
57 | 57 |
@@ -59,16 +59,16 @@ msgstr "" | ||
59 | 59 | msgid "Add a server" |
60 | 60 | msgstr "" |
61 | 61 | |
62 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:582 | |
63 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:458 | |
62 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:575 | |
63 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:446 | |
64 | 64 | msgid "Address" |
65 | 65 | msgstr "" |
66 | 66 | |
67 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:586 | |
67 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:579 | |
68 | 68 | msgid "Address resolver" |
69 | 69 | msgstr "" |
70 | 70 | |
71 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:617 | |
71 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:610 | |
72 | 72 | msgid "Address strategy" |
73 | 73 | msgstr "" |
74 | 74 |
@@ -80,20 +80,20 @@ msgstr "" | ||
80 | 80 | msgid "All ports" |
81 | 81 | msgstr "" |
82 | 82 | |
83 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:952 | |
84 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1139 | |
83 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:954 | |
84 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1148 | |
85 | 85 | msgid "Allow insecure" |
86 | 86 | msgstr "" |
87 | 87 | |
88 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:953 | |
88 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:955 | |
89 | 89 | msgid "Allow insecure connection at TLS client." |
90 | 90 | msgstr "" |
91 | 91 | |
92 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1140 | |
92 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1149 | |
93 | 93 | msgid "Allow insecure connection by default when add nodes from subscriptions." |
94 | 94 | msgstr "" |
95 | 95 | |
96 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:832 | |
96 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:820 | |
97 | 97 | #: htdocs/luci-static/resources/view/homeproxy/server.js:296 |
98 | 98 | msgid "Allowed payload size is in the request." |
99 | 99 | msgstr "" |
@@ -106,7 +106,7 @@ msgstr "" | ||
106 | 106 | msgid "Already in updating." |
107 | 107 | msgstr "" |
108 | 108 | |
109 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:704 | |
109 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:692 | |
110 | 110 | #: htdocs/luci-static/resources/view/homeproxy/server.js:212 |
111 | 111 | msgid "Alter ID" |
112 | 112 | msgstr "" |
@@ -119,15 +119,15 @@ msgstr "" | ||
119 | 119 | msgid "Alternative TLS port" |
120 | 120 | msgstr "" |
121 | 121 | |
122 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1176 | |
122 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1185 | |
123 | 123 | msgid "An error occurred during updating subscriptions: %s" |
124 | 124 | msgstr "" |
125 | 125 | |
126 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1033 | |
126 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1035 | |
127 | 127 | msgid "Android" |
128 | 128 | msgstr "" |
129 | 129 | |
130 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:985 | |
130 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:987 | |
131 | 131 | msgid "Append self-signed certificate" |
132 | 132 | msgstr "" |
133 | 133 |
@@ -144,16 +144,16 @@ msgstr "" | ||
144 | 144 | msgid "Are you sure to allow insecure?" |
145 | 145 | msgstr "" |
146 | 146 | |
147 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:728 | |
147 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:716 | |
148 | 148 | msgid "Authenticated length" |
149 | 149 | msgstr "" |
150 | 150 | |
151 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:534 | |
151 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:522 | |
152 | 152 | #: htdocs/luci-static/resources/view/homeproxy/server.js:153 |
153 | 153 | msgid "Authentication payload" |
154 | 154 | msgstr "" |
155 | 155 | |
156 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:525 | |
156 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:513 | |
157 | 157 | #: htdocs/luci-static/resources/view/homeproxy/server.js:144 |
158 | 158 | msgid "Authentication type" |
159 | 159 | msgstr "" |
@@ -162,56 +162,56 @@ msgstr "" | ||
162 | 162 | msgid "Auto configure firewall" |
163 | 163 | msgstr "" |
164 | 164 | |
165 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1093 | |
165 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1102 | |
166 | 166 | msgid "Auto update" |
167 | 167 | msgstr "" |
168 | 168 | |
169 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1094 | |
169 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1103 | |
170 | 170 | msgid "Auto update subscriptions, GeoIP and GeoSite." |
171 | 171 | msgstr "" |
172 | 172 | |
173 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:527 | |
173 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:515 | |
174 | 174 | #: htdocs/luci-static/resources/view/homeproxy/server.js:146 |
175 | 175 | msgid "Base64" |
176 | 176 | msgstr "" |
177 | 177 | |
178 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:258 | |
178 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:252 | |
179 | 179 | msgid "Based on google/gvisor (recommended)." |
180 | 180 | msgstr "" |
181 | 181 | |
182 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:337 | |
183 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:821 | |
182 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:330 | |
183 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:814 | |
184 | 184 | msgid "Bind interface" |
185 | 185 | msgstr "" |
186 | 186 | |
187 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:822 | |
187 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:815 | |
188 | 188 | msgid "" |
189 | 189 | "Bind outbound traffic to specific interface. Leave empty to auto detect." |
190 | 190 | msgstr "" |
191 | 191 | |
192 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1129 | |
192 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1138 | |
193 | 193 | msgid "Blacklist mode" |
194 | 194 | msgstr "" |
195 | 195 | |
196 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:289 | |
197 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:511 | |
198 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:772 | |
196 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:282 | |
197 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:504 | |
198 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:765 | |
199 | 199 | msgid "Block" |
200 | 200 | msgstr "" |
201 | 201 | |
202 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:540 | |
203 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:789 | |
202 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:533 | |
203 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:782 | |
204 | 204 | msgid "Block DNS queries" |
205 | 205 | msgstr "" |
206 | 206 | |
207 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:403 | |
208 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:424 | |
209 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:688 | |
207 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:396 | |
208 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:417 | |
209 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:681 | |
210 | 210 | #: htdocs/luci-static/resources/view/homeproxy/server.js:512 |
211 | 211 | msgid "Both" |
212 | 212 | msgstr "" |
213 | 213 | |
214 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:272 | |
214 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:265 | |
215 | 215 | msgid "Bypass CN traffic" |
216 | 216 | msgstr "" |
217 | 217 |
@@ -219,7 +219,7 @@ msgstr "" | ||
219 | 219 | msgid "Bypass mainland China" |
220 | 220 | msgstr "" |
221 | 221 | |
222 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:273 | |
222 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:266 | |
223 | 223 | msgid "Bypass mainland China traffic via firewall rules by default." |
224 | 224 | msgstr "" |
225 | 225 |
@@ -231,7 +231,7 @@ msgstr "" | ||
231 | 231 | msgid "Cancel" |
232 | 232 | msgstr "" |
233 | 233 | |
234 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:991 | |
234 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:993 | |
235 | 235 | #: htdocs/luci-static/resources/view/homeproxy/server.js:441 |
236 | 236 | msgid "Certificate path" |
237 | 237 | msgstr "" |
@@ -252,11 +252,11 @@ msgstr "" | ||
252 | 252 | msgid "China list version" |
253 | 253 | msgstr "" |
254 | 254 | |
255 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1034 | |
255 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1036 | |
256 | 256 | msgid "Chrome" |
257 | 257 | msgstr "" |
258 | 258 | |
259 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:977 | |
259 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:979 | |
260 | 260 | #: htdocs/luci-static/resources/view/homeproxy/server.js:351 |
261 | 261 | msgid "Cipher suites" |
262 | 262 | msgstr "" |
@@ -290,60 +290,60 @@ msgstr "" | ||
290 | 290 | msgid "Custom routing" |
291 | 291 | msgstr "" |
292 | 292 | |
293 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:695 | |
293 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:688 | |
294 | 294 | msgid "DNS" |
295 | 295 | msgstr "" |
296 | 296 | |
297 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:648 | |
297 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:641 | |
298 | 298 | msgid "DNS Rules" |
299 | 299 | msgstr "" |
300 | 300 | |
301 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:560 | |
301 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:553 | |
302 | 302 | msgid "DNS Servers" |
303 | 303 | msgstr "" |
304 | 304 | |
305 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:524 | |
305 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:517 | |
306 | 306 | msgid "DNS Settings" |
307 | 307 | msgstr "" |
308 | 308 | |
309 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:656 | |
309 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:649 | |
310 | 310 | msgid "DNS rule" |
311 | 311 | msgstr "" |
312 | 312 | |
313 | 313 | #: htdocs/luci-static/resources/view/homeproxy/client.js:155 |
314 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:568 | |
314 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:561 | |
315 | 315 | msgid "DNS server" |
316 | 316 | msgstr "" |
317 | 317 | |
318 | 318 | #: htdocs/luci-static/resources/homeproxy.js:17 |
319 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:411 | |
320 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:675 | |
319 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:404 | |
320 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:668 | |
321 | 321 | msgid "Default" |
322 | 322 | msgstr "" |
323 | 323 | |
324 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:539 | |
325 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:593 | |
326 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:788 | |
324 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:532 | |
325 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:586 | |
326 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:781 | |
327 | 327 | msgid "Default DNS (issued by WAN)" |
328 | 328 | msgstr "" |
329 | 329 | |
330 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:534 | |
330 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:527 | |
331 | 331 | msgid "Default DNS server" |
332 | 332 | msgstr "" |
333 | 333 | |
334 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:529 | |
334 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:522 | |
335 | 335 | msgid "Default DNS strategy" |
336 | 336 | msgstr "" |
337 | 337 | |
338 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:624 | |
338 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:617 | |
339 | 339 | msgid "Default domain strategy for resolving the domain names." |
340 | 340 | msgstr "" |
341 | 341 | |
342 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:282 | |
342 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:275 | |
343 | 343 | msgid "Default outbound" |
344 | 344 | msgstr "" |
345 | 345 | |
346 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1147 | |
346 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1156 | |
347 | 347 | msgid "Default packet encoding" |
348 | 348 | msgstr "" |
349 | 349 |
@@ -351,42 +351,42 @@ msgstr "" | ||
351 | 351 | msgid "Default server name" |
352 | 352 | msgstr "" |
353 | 353 | |
354 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:288 | |
355 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:350 | |
356 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:510 | |
357 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:634 | |
358 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:771 | |
354 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:281 | |
355 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:343 | |
356 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:503 | |
357 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:627 | |
358 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:764 | |
359 | 359 | #: htdocs/luci-static/resources/view/homeproxy/node.js:430 |
360 | 360 | msgid "Direct" |
361 | 361 | msgstr "" |
362 | 362 | |
363 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:957 | |
363 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:950 | |
364 | 364 | msgid "Direct Domain List" |
365 | 365 | msgstr "" |
366 | 366 | |
367 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:851 | |
368 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:919 | |
367 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:844 | |
368 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:912 | |
369 | 369 | msgid "Direct IPv4 IP-s" |
370 | 370 | msgstr "" |
371 | 371 | |
372 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:858 | |
373 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:922 | |
372 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:851 | |
373 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:915 | |
374 | 374 | msgid "Direct IPv6 IP-s" |
375 | 375 | msgstr "" |
376 | 376 | |
377 | 377 | #: htdocs/luci-static/resources/view/homeproxy/client.js:139 |
378 | 378 | #: htdocs/luci-static/resources/view/homeproxy/client.js:147 |
379 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:287 | |
380 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:845 | |
381 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:507 | |
382 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:526 | |
383 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1031 | |
384 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1128 | |
379 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:280 | |
380 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:838 | |
381 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:495 | |
382 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:514 | |
383 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1033 | |
384 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1137 | |
385 | 385 | #: htdocs/luci-static/resources/view/homeproxy/server.js:145 |
386 | 386 | msgid "Disable" |
387 | 387 | msgstr "" |
388 | 388 | |
389 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:551 | |
389 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:544 | |
390 | 390 | msgid "Disable DNS cache" |
391 | 391 | msgstr "" |
392 | 392 |
@@ -394,7 +394,7 @@ msgstr "" | ||
394 | 394 | msgid "Disable HTTP challenge" |
395 | 395 | msgstr "" |
396 | 396 | |
397 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:568 | |
397 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:556 | |
398 | 398 | #: htdocs/luci-static/resources/view/homeproxy/server.js:184 |
399 | 399 | msgid "Disable Path MTU discovery" |
400 | 400 | msgstr "" |
@@ -403,51 +403,51 @@ msgstr "" | ||
403 | 403 | msgid "Disable TLS ALPN challenge" |
404 | 404 | msgstr "" |
405 | 405 | |
406 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:801 | |
406 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:794 | |
407 | 407 | msgid "Disable cache and save cache in this query." |
408 | 408 | msgstr "" |
409 | 409 | |
410 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:554 | |
410 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:547 | |
411 | 411 | msgid "Disable cache expire" |
412 | 412 | msgstr "" |
413 | 413 | |
414 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:800 | |
414 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:793 | |
415 | 415 | msgid "Disable dns cache" |
416 | 416 | msgstr "" |
417 | 417 | |
418 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1013 | |
418 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1015 | |
419 | 419 | msgid "Disable dynamic record sizing" |
420 | 420 | msgstr "" |
421 | 421 | |
422 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:569 | |
422 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:557 | |
423 | 423 | #: htdocs/luci-static/resources/view/homeproxy/server.js:185 |
424 | 424 | msgid "" |
425 | 425 | "Disables Path MTU Discovery (RFC 8899). Packets will then be at most 1252 " |
426 | 426 | "(IPv4) / 1232 (IPv6) bytes in size." |
427 | 427 | msgstr "" |
428 | 428 | |
429 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:442 | |
430 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:707 | |
429 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:435 | |
430 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:700 | |
431 | 431 | msgid "Domain keyword" |
432 | 432 | msgstr "" |
433 | 433 | |
434 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:433 | |
435 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:698 | |
434 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:426 | |
435 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:691 | |
436 | 436 | msgid "Domain name" |
437 | 437 | msgstr "" |
438 | 438 | |
439 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:446 | |
440 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:711 | |
439 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:439 | |
440 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:704 | |
441 | 441 | msgid "Domain regex" |
442 | 442 | msgstr "" |
443 | 443 | |
444 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:331 | |
444 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:324 | |
445 | 445 | #: htdocs/luci-static/resources/view/homeproxy/server.js:491 |
446 | 446 | msgid "Domain strategy" |
447 | 447 | msgstr "" |
448 | 448 | |
449 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:438 | |
450 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:703 | |
449 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:431 | |
450 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:696 | |
451 | 451 | msgid "Domain suffix" |
452 | 452 | msgstr "" |
453 | 453 |
@@ -455,14 +455,14 @@ msgstr "" | ||
455 | 455 | msgid "Domains" |
456 | 456 | msgstr "" |
457 | 457 | |
458 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1135 | |
458 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1144 | |
459 | 459 | msgid "" |
460 | 460 | "Drop/keep nodes that contain the specific keywords. <a target=\"_blank\" " |
461 | 461 | "href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/" |
462 | 462 | "Regular_Expressions\">Regex</a> is supported." |
463 | 463 | msgstr "" |
464 | 464 | |
465 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1127 | |
465 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1136 | |
466 | 466 | msgid "Drop/keep specific nodes from subscriptions." |
467 | 467 | msgstr "" |
468 | 468 |
@@ -474,22 +474,22 @@ msgid "" | ||
474 | 474 | "a non-ACME system, such as a CA customer database." |
475 | 475 | msgstr "" |
476 | 476 | |
477 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1008 | |
477 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1010 | |
478 | 478 | msgid "" |
479 | 479 | "ECH (Encrypted Client Hello) is a TLS extension that allows a client to " |
480 | 480 | "encrypt the first part of its ClientHello message." |
481 | 481 | msgstr "" |
482 | 482 | |
483 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1023 | |
483 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1025 | |
484 | 484 | msgid "ECH config" |
485 | 485 | msgstr "" |
486 | 486 | |
487 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:831 | |
487 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:819 | |
488 | 488 | #: htdocs/luci-static/resources/view/homeproxy/server.js:295 |
489 | 489 | msgid "Early data" |
490 | 490 | msgstr "" |
491 | 491 | |
492 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:838 | |
492 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:826 | |
493 | 493 | #: htdocs/luci-static/resources/view/homeproxy/server.js:302 |
494 | 494 | msgid "Early data header name" |
495 | 495 | msgstr "" |
@@ -498,7 +498,7 @@ msgstr "" | ||
498 | 498 | msgid "Early data is sent in path instead of header by default." |
499 | 499 | msgstr "" |
500 | 500 | |
501 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1035 | |
501 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1037 | |
502 | 502 | msgid "Edge" |
503 | 503 | msgstr "" |
504 | 504 |
@@ -514,10 +514,10 @@ msgstr "" | ||
514 | 514 | msgid "Email" |
515 | 515 | msgstr "" |
516 | 516 | |
517 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:319 | |
518 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:394 | |
519 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:577 | |
520 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:665 | |
517 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:312 | |
518 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:387 | |
519 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:570 | |
520 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:658 | |
521 | 521 | #: htdocs/luci-static/resources/view/homeproxy/server.js:30 |
522 | 522 | #: htdocs/luci-static/resources/view/homeproxy/server.js:51 |
523 | 523 | msgid "Enable" |
@@ -527,20 +527,20 @@ msgstr "" | ||
527 | 527 | msgid "Enable ACME" |
528 | 528 | msgstr "" |
529 | 529 | |
530 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1007 | |
530 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1009 | |
531 | 531 | msgid "Enable ECH" |
532 | 532 | msgstr "" |
533 | 533 | |
534 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1018 | |
534 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1020 | |
535 | 535 | msgid "Enable PQ signature schemes" |
536 | 536 | msgstr "" |
537 | 537 | |
538 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1077 | |
538 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1079 | |
539 | 539 | #: htdocs/luci-static/resources/view/homeproxy/server.js:482 |
540 | 540 | msgid "Enable UDP fragmentation." |
541 | 541 | msgstr "" |
542 | 542 | |
543 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:265 | |
543 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:259 | |
544 | 544 | msgid "Enable endpoint-independent NAT" |
545 | 545 | msgstr "" |
546 | 546 |
@@ -548,14 +548,14 @@ msgstr "" | ||
548 | 548 | msgid "Enable tcp fast open for listener." |
549 | 549 | msgstr "" |
550 | 550 | |
551 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1082 | |
551 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1084 | |
552 | 552 | msgid "" |
553 | 553 | "Enable the SUoT protocol, requires server support. Conflict with multiplex." |
554 | 554 | msgstr "" |
555 | 555 | |
556 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:576 | |
557 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:608 | |
558 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:710 | |
556 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:564 | |
557 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:596 | |
558 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:698 | |
559 | 559 | #: htdocs/luci-static/resources/view/homeproxy/server.js:192 |
560 | 560 | msgid "Encrypt method" |
561 | 561 | msgstr "" |
@@ -572,13 +572,13 @@ msgstr "" | ||
572 | 572 | #: htdocs/luci-static/resources/view/homeproxy/client.js:175 |
573 | 573 | #: htdocs/luci-static/resources/view/homeproxy/client.js:203 |
574 | 574 | #: htdocs/luci-static/resources/view/homeproxy/client.js:208 |
575 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:950 | |
576 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:979 | |
575 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:943 | |
576 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:972 | |
577 | 577 | #: htdocs/luci-static/resources/view/homeproxy/node.js:385 |
578 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:496 | |
579 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1047 | |
580 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1116 | |
581 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1119 | |
578 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:484 | |
579 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1049 | |
580 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1125 | |
581 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1128 | |
582 | 582 | #: htdocs/luci-static/resources/view/homeproxy/server.js:113 |
583 | 583 | #: htdocs/luci-static/resources/view/homeproxy/server.js:384 |
584 | 584 | #: htdocs/luci-static/resources/view/homeproxy/server.js:386 |
@@ -601,24 +601,24 @@ msgstr "" | ||
601 | 601 | msgid "Failed to upload %s, error: %s." |
602 | 602 | msgstr "" |
603 | 603 | |
604 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1134 | |
604 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1143 | |
605 | 605 | msgid "Filter keywords" |
606 | 606 | msgstr "" |
607 | 607 | |
608 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1126 | |
608 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1135 | |
609 | 609 | msgid "Filter nodes" |
610 | 610 | msgstr "" |
611 | 611 | |
612 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1036 | |
612 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1038 | |
613 | 613 | msgid "Firefox" |
614 | 614 | msgstr "" |
615 | 615 | |
616 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:698 | |
616 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:686 | |
617 | 617 | #: htdocs/luci-static/resources/view/homeproxy/server.js:206 |
618 | 618 | msgid "Flow" |
619 | 619 | msgstr "" |
620 | 620 | |
621 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:800 | |
621 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:788 | |
622 | 622 | msgid "GET" |
623 | 623 | msgstr "" |
624 | 624 |
@@ -630,15 +630,15 @@ msgstr "" | ||
630 | 630 | msgid "GFWList" |
631 | 631 | msgstr "" |
632 | 632 | |
633 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:881 | |
633 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:874 | |
634 | 634 | msgid "Gaming mode IPv4 IP-s" |
635 | 635 | msgstr "" |
636 | 636 | |
637 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:887 | |
637 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:880 | |
638 | 638 | msgid "Gaming mode IPv6 IP-s" |
639 | 639 | msgstr "" |
640 | 640 | |
641 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:458 | |
641 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:451 | |
642 | 642 | msgid "GeoIP" |
643 | 643 | msgstr "" |
644 | 644 |
@@ -650,8 +650,8 @@ msgstr "" | ||
650 | 650 | msgid "GeoSite version" |
651 | 651 | msgstr "" |
652 | 652 | |
653 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:450 | |
654 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:715 | |
653 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:443 | |
654 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:708 | |
655 | 655 | msgid "Geosite" |
656 | 656 | msgstr "" |
657 | 657 |
@@ -659,11 +659,11 @@ msgstr "" | ||
659 | 659 | msgid "Global" |
660 | 660 | msgstr "" |
661 | 661 | |
662 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:894 | |
662 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:887 | |
663 | 663 | msgid "Global proxy IPv4 IP-s" |
664 | 664 | msgstr "" |
665 | 665 | |
666 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:901 | |
666 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:894 | |
667 | 667 | msgid "Global proxy IPv6 IP-s" |
668 | 668 | msgstr "" |
669 | 669 |
@@ -679,10 +679,10 @@ msgstr "" | ||
679 | 679 | msgid "Grant access to homeproxy configuration" |
680 | 680 | msgstr "" |
681 | 681 | |
682 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:428 | |
683 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:692 | |
682 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:421 | |
683 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:685 | |
684 | 684 | #: htdocs/luci-static/resources/view/homeproxy/node.js:431 |
685 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:741 | |
685 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:729 | |
686 | 686 | #: htdocs/luci-static/resources/view/homeproxy/server.js:57 |
687 | 687 | #: htdocs/luci-static/resources/view/homeproxy/server.js:224 |
688 | 688 | msgid "HTTP" |
@@ -695,8 +695,8 @@ msgstr "" | ||
695 | 695 | msgid "HomeProxy" |
696 | 696 | msgstr "" |
697 | 697 | |
698 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:790 | |
699 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:823 | |
698 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:778 | |
699 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:811 | |
700 | 700 | #: htdocs/luci-static/resources/view/homeproxy/server.js:257 |
701 | 701 | #: htdocs/luci-static/resources/view/homeproxy/server.js:287 |
702 | 702 | msgid "Host" |
@@ -707,16 +707,16 @@ msgstr "" | ||
707 | 707 | msgid "Hysteria" |
708 | 708 | msgstr "" |
709 | 709 | |
710 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:467 | |
711 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:728 | |
710 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:460 | |
711 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:721 | |
712 | 712 | msgid "IP CIDR" |
713 | 713 | msgstr "" |
714 | 714 | |
715 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:399 | |
715 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:392 | |
716 | 716 | msgid "IP version" |
717 | 717 | msgstr "" |
718 | 718 | |
719 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:401 | |
719 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:394 | |
720 | 720 | msgid "IPv4" |
721 | 721 | msgstr "" |
722 | 722 |
@@ -724,7 +724,7 @@ msgstr "" | ||
724 | 724 | msgid "IPv4 only" |
725 | 725 | msgstr "" |
726 | 726 | |
727 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:402 | |
727 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:395 | |
728 | 728 | msgid "IPv6" |
729 | 729 | msgstr "" |
730 | 730 |
@@ -732,16 +732,16 @@ msgstr "" | ||
732 | 732 | msgid "IPv6 only" |
733 | 733 | msgstr "" |
734 | 734 | |
735 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:229 | |
735 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:228 | |
736 | 736 | msgid "IPv6 support" |
737 | 737 | msgstr "" |
738 | 738 | |
739 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:805 | |
739 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:793 | |
740 | 740 | #: htdocs/luci-static/resources/view/homeproxy/server.js:270 |
741 | 741 | msgid "Idle timeout" |
742 | 742 | msgstr "" |
743 | 743 | |
744 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:782 | |
744 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:770 | |
745 | 745 | msgid "" |
746 | 746 | "If enabled, the client transport sends keepalive pings even with no active " |
747 | 747 | "connections." |
@@ -752,20 +752,20 @@ msgid "" | ||
752 | 752 | "If set, the requested domain name will be resolved to IP before routing." |
753 | 753 | msgstr "" |
754 | 754 | |
755 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:332 | |
755 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:325 | |
756 | 756 | msgid "" |
757 | 757 | "If set, the server domain name will be resolved to IP before connecting.<br/" |
758 | 758 | ">dns.strategy will be used if empty." |
759 | 759 | msgstr "" |
760 | 760 | |
761 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:767 | |
761 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:755 | |
762 | 762 | #: htdocs/luci-static/resources/view/homeproxy/server.js:242 |
763 | 763 | msgid "" |
764 | 764 | "If the transport doesn't see any activity after a duration of this time, it " |
765 | 765 | "pings the client to check if the connection is still active." |
766 | 766 | msgstr "" |
767 | 767 | |
768 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:986 | |
768 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:988 | |
769 | 769 | msgid "" |
770 | 770 | "If you have the root certificate, use this option instead of allowing " |
771 | 771 | "insecure." |
@@ -781,17 +781,17 @@ msgstr "" | ||
781 | 781 | msgid "Import share links" |
782 | 782 | msgstr "" |
783 | 783 | |
784 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:814 | |
784 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:807 | |
785 | 785 | msgid "Interface Control" |
786 | 786 | msgstr "" |
787 | 787 | |
788 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:416 | |
789 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:680 | |
788 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:409 | |
789 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:673 | |
790 | 790 | msgid "Invert" |
791 | 791 | msgstr "" |
792 | 792 | |
793 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:417 | |
794 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:681 | |
793 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:410 | |
794 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:674 | |
795 | 795 | msgid "Invert match result." |
796 | 796 | msgstr "" |
797 | 797 |
@@ -799,31 +799,31 @@ msgstr "" | ||
799 | 799 | msgid "Key path" |
800 | 800 | msgstr "" |
801 | 801 | |
802 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:828 | |
802 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:821 | |
803 | 803 | msgid "LAN IP Policy" |
804 | 804 | msgstr "" |
805 | 805 | |
806 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:244 | |
806 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:243 | |
807 | 807 | msgid "LWIP" |
808 | 808 | msgstr "" |
809 | 809 | |
810 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:314 | |
811 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:389 | |
812 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:572 | |
813 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:660 | |
810 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:307 | |
811 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:382 | |
812 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:565 | |
813 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:653 | |
814 | 814 | #: htdocs/luci-static/resources/view/homeproxy/node.js:424 |
815 | 815 | #: htdocs/luci-static/resources/view/homeproxy/server.js:45 |
816 | 816 | msgid "Label" |
817 | 817 | msgstr "" |
818 | 818 | |
819 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:705 | |
819 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:693 | |
820 | 820 | #: htdocs/luci-static/resources/view/homeproxy/server.js:213 |
821 | 821 | msgid "" |
822 | 822 | "Legacy protocol support (VMess MD5 Authentication) is provided for " |
823 | 823 | "compatibility purposes only, use of alterId > 1 is not recommended." |
824 | 824 | msgstr "" |
825 | 825 | |
826 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:262 | |
826 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:256 | |
827 | 827 | msgid "Less compatibility and sometimes better performance." |
828 | 828 | msgstr "" |
829 | 829 |
@@ -831,17 +831,17 @@ msgstr "" | ||
831 | 831 | msgid "Let's Encrypt" |
832 | 832 | msgstr "" |
833 | 833 | |
834 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:855 | |
834 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:843 | |
835 | 835 | msgid "" |
836 | 836 | "List of IP (v4 or v6) addresses prefixes to be assigned to the interface." |
837 | 837 | msgstr "" |
838 | 838 | |
839 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:948 | |
839 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:950 | |
840 | 840 | #: htdocs/luci-static/resources/view/homeproxy/server.js:331 |
841 | 841 | msgid "List of supported application level protocols, in order of preference." |
842 | 842 | msgstr "" |
843 | 843 | |
844 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:816 | |
844 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:809 | |
845 | 845 | msgid "Listen interfaces" |
846 | 846 | msgstr "" |
847 | 847 |
@@ -849,7 +849,7 @@ msgstr "" | ||
849 | 849 | msgid "Loading" |
850 | 850 | msgstr "" |
851 | 851 | |
852 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:854 | |
852 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:842 | |
853 | 853 | msgid "Local address" |
854 | 854 | msgstr "" |
855 | 855 |
@@ -861,7 +861,7 @@ msgstr "" | ||
861 | 861 | msgid "Log is empty." |
862 | 862 | msgstr "" |
863 | 863 | |
864 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:881 | |
864 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:869 | |
865 | 865 | msgid "MTU" |
866 | 866 | msgstr "" |
867 | 867 |
@@ -873,158 +873,158 @@ msgstr "" | ||
873 | 873 | msgid "Main node" |
874 | 874 | msgstr "" |
875 | 875 | |
876 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:459 | |
876 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:452 | |
877 | 877 | msgid "Match GeoIP." |
878 | 878 | msgstr "" |
879 | 879 | |
880 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:468 | |
881 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:729 | |
880 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:461 | |
881 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:722 | |
882 | 882 | msgid "Match IP CIDR." |
883 | 883 | msgstr "" |
884 | 884 | |
885 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:439 | |
886 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:704 | |
885 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:432 | |
886 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:697 | |
887 | 887 | msgid "Match domain suffix." |
888 | 888 | msgstr "" |
889 | 889 | |
890 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:443 | |
891 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:708 | |
890 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:436 | |
891 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:701 | |
892 | 892 | msgid "Match domain using keyword." |
893 | 893 | msgstr "" |
894 | 894 | |
895 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:447 | |
896 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:712 | |
895 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:440 | |
896 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:705 | |
897 | 897 | msgid "Match domain using regular expression." |
898 | 898 | msgstr "" |
899 | 899 | |
900 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:434 | |
901 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:699 | |
900 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:427 | |
901 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:692 | |
902 | 902 | msgid "Match full domain." |
903 | 903 | msgstr "" |
904 | 904 | |
905 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:451 | |
906 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:716 | |
905 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:444 | |
906 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:709 | |
907 | 907 | msgid "Match geosite." |
908 | 908 | msgstr "" |
909 | 909 | |
910 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:766 | |
910 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:759 | |
911 | 911 | msgid "Match outbound." |
912 | 912 | msgstr "" |
913 | 913 | |
914 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:488 | |
915 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:749 | |
914 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:481 | |
915 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:742 | |
916 | 916 | msgid "Match port range. Format as START:/:END/START:END." |
917 | 917 | msgstr "" |
918 | 918 | |
919 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:483 | |
920 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:744 | |
919 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:476 | |
920 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:737 | |
921 | 921 | msgid "Match port." |
922 | 922 | msgstr "" |
923 | 923 | |
924 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:493 | |
925 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:754 | |
924 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:486 | |
925 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:747 | |
926 | 926 | msgid "Match process name." |
927 | 927 | msgstr "" |
928 | 928 | |
929 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:497 | |
930 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:758 | |
929 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:490 | |
930 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:751 | |
931 | 931 | msgid "Match process path." |
932 | 932 | msgstr "" |
933 | 933 | |
934 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:455 | |
935 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:720 | |
934 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:448 | |
935 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:713 | |
936 | 936 | msgid "Match source GeoIP." |
937 | 937 | msgstr "" |
938 | 938 | |
939 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:463 | |
940 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:724 | |
939 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:456 | |
940 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:717 | |
941 | 941 | msgid "Match source IP CIDR." |
942 | 942 | msgstr "" |
943 | 943 | |
944 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:478 | |
945 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:739 | |
944 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:471 | |
945 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:732 | |
946 | 946 | msgid "Match source port range. Format as START:/:END/START:END." |
947 | 947 | msgstr "" |
948 | 948 | |
949 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:473 | |
950 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:734 | |
949 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:466 | |
950 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:727 | |
951 | 951 | msgid "Match source port." |
952 | 952 | msgstr "" |
953 | 953 | |
954 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:501 | |
955 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:762 | |
954 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:494 | |
955 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:755 | |
956 | 956 | msgid "Match user name." |
957 | 957 | msgstr "" |
958 | 958 | |
959 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:544 | |
959 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:532 | |
960 | 960 | #: htdocs/luci-static/resources/view/homeproxy/server.js:132 |
961 | 961 | msgid "Max download speed" |
962 | 962 | msgstr "" |
963 | 963 | |
964 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:545 | |
964 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:533 | |
965 | 965 | #: htdocs/luci-static/resources/view/homeproxy/server.js:133 |
966 | 966 | msgid "Max download speed in Mbps." |
967 | 967 | msgstr "" |
968 | 968 | |
969 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:550 | |
969 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:538 | |
970 | 970 | #: htdocs/luci-static/resources/view/homeproxy/server.js:138 |
971 | 971 | msgid "Max upload speed" |
972 | 972 | msgstr "" |
973 | 973 | |
974 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:551 | |
974 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:539 | |
975 | 975 | #: htdocs/luci-static/resources/view/homeproxy/server.js:139 |
976 | 976 | msgid "Max upload speed in Mbps." |
977 | 977 | msgstr "" |
978 | 978 | |
979 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:969 | |
979 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:971 | |
980 | 980 | #: htdocs/luci-static/resources/view/homeproxy/server.js:343 |
981 | 981 | msgid "Maximum TLS version" |
982 | 982 | msgstr "" |
983 | 983 | |
984 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:908 | |
984 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:896 | |
985 | 985 | msgid "Maximum connections" |
986 | 986 | msgstr "" |
987 | 987 | |
988 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:924 | |
988 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:912 | |
989 | 989 | msgid "" |
990 | 990 | "Maximum multiplexed streams in a connection before opening a new connection." |
991 | 991 | "<br/>Conflict with <code>Maximum connections</code> and <code>Minimum " |
992 | 992 | "streams</code>." |
993 | 993 | msgstr "" |
994 | 994 | |
995 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:923 | |
995 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:911 | |
996 | 996 | msgid "Maximum streams" |
997 | 997 | msgstr "" |
998 | 998 | |
999 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:799 | |
999 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:787 | |
1000 | 1000 | #: htdocs/luci-static/resources/view/homeproxy/server.js:266 |
1001 | 1001 | msgid "Method" |
1002 | 1002 | msgstr "" |
1003 | 1003 | |
1004 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:961 | |
1004 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:963 | |
1005 | 1005 | #: htdocs/luci-static/resources/view/homeproxy/server.js:335 |
1006 | 1006 | msgid "Minimum TLS version" |
1007 | 1007 | msgstr "" |
1008 | 1008 | |
1009 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:916 | |
1009 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:904 | |
1010 | 1010 | msgid "" |
1011 | 1011 | "Minimum multiplexed streams in a connection before opening a new connection." |
1012 | 1012 | msgstr "" |
1013 | 1013 | |
1014 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:915 | |
1014 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:903 | |
1015 | 1015 | msgid "Minimum streams" |
1016 | 1016 | msgstr "" |
1017 | 1017 | |
1018 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:406 | |
1019 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:670 | |
1018 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:399 | |
1019 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:663 | |
1020 | 1020 | msgid "Mode" |
1021 | 1021 | msgstr "" |
1022 | 1022 | |
1023 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:890 | |
1023 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:878 | |
1024 | 1024 | msgid "Multiplex" |
1025 | 1025 | msgstr "" |
1026 | 1026 | |
1027 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:898 | |
1027 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:886 | |
1028 | 1028 | msgid "Multiplex protocol." |
1029 | 1029 | msgstr "" |
1030 | 1030 |
@@ -1032,7 +1032,7 @@ msgstr "" | ||
1032 | 1032 | msgid "NOT RUNNING" |
1033 | 1033 | msgstr "" |
1034 | 1034 | |
1035 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1153 | |
1035 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1162 | |
1036 | 1036 | msgid "NOTE: Save current settings before updating subscriptions." |
1037 | 1037 | msgstr "" |
1038 | 1038 |
@@ -1040,29 +1040,29 @@ msgstr "" | ||
1040 | 1040 | msgid "NaïveProxy" |
1041 | 1041 | msgstr "" |
1042 | 1042 | |
1043 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:421 | |
1044 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:685 | |
1043 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:414 | |
1044 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:678 | |
1045 | 1045 | #: htdocs/luci-static/resources/view/homeproxy/server.js:509 |
1046 | 1046 | msgid "Network" |
1047 | 1047 | msgstr "" |
1048 | 1048 | |
1049 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:738 | |
1050 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:754 | |
1049 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:726 | |
1050 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:742 | |
1051 | 1051 | #: htdocs/luci-static/resources/view/homeproxy/server.js:221 |
1052 | 1052 | #: htdocs/luci-static/resources/view/homeproxy/server.js:234 |
1053 | 1053 | msgid "No TCP transport, plain HTTP is merged into the HTTP transport." |
1054 | 1054 | msgstr "" |
1055 | 1055 | |
1056 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:752 | |
1056 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:740 | |
1057 | 1057 | #: htdocs/luci-static/resources/view/homeproxy/server.js:232 |
1058 | 1058 | msgid "No additional encryption support: It's basically duplicate encryption." |
1059 | 1059 | msgstr "" |
1060 | 1060 | |
1061 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1169 | |
1061 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1178 | |
1062 | 1062 | msgid "No subscription available" |
1063 | 1063 | msgstr "" |
1064 | 1064 | |
1065 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1194 | |
1065 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1203 | |
1066 | 1066 | msgid "No subscription node" |
1067 | 1067 | msgstr "" |
1068 | 1068 |
@@ -1070,7 +1070,7 @@ msgstr "" | ||
1070 | 1070 | msgid "No valid share link found." |
1071 | 1071 | msgstr "" |
1072 | 1072 | |
1073 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:324 | |
1073 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:317 | |
1074 | 1074 | #: htdocs/luci-static/resources/view/homeproxy/node.js:310 |
1075 | 1075 | msgid "Node" |
1076 | 1076 | msgstr "" |
@@ -1083,28 +1083,28 @@ msgstr "" | ||
1083 | 1083 | msgid "Nodes" |
1084 | 1084 | msgstr "" |
1085 | 1085 | |
1086 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:592 | |
1087 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:699 | |
1088 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:739 | |
1086 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:585 | |
1087 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:687 | |
1088 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:727 | |
1089 | 1089 | #: htdocs/luci-static/resources/view/homeproxy/server.js:207 |
1090 | 1090 | #: htdocs/luci-static/resources/view/homeproxy/server.js:222 |
1091 | 1091 | msgid "None" |
1092 | 1092 | msgstr "" |
1093 | 1093 | |
1094 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:656 | |
1094 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:644 | |
1095 | 1095 | msgid "Obfs" |
1096 | 1096 | msgstr "" |
1097 | 1097 | |
1098 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:666 | |
1098 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:654 | |
1099 | 1099 | msgid "Obfs param" |
1100 | 1100 | msgstr "" |
1101 | 1101 | |
1102 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:540 | |
1102 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:528 | |
1103 | 1103 | #: htdocs/luci-static/resources/view/homeproxy/server.js:159 |
1104 | 1104 | msgid "Obfuscate password" |
1105 | 1105 | msgstr "" |
1106 | 1106 | |
1107 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:817 | |
1107 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:810 | |
1108 | 1108 | msgid "Only process traffic from specific interfaces. Leave empty for all." |
1109 | 1109 | msgstr "" |
1110 | 1110 |
@@ -1112,32 +1112,32 @@ msgstr "" | ||
1112 | 1112 | msgid "Only proxy mainland China" |
1113 | 1113 | msgstr "" |
1114 | 1114 | |
1115 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:344 | |
1116 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:504 | |
1117 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:628 | |
1118 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:765 | |
1115 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:337 | |
1116 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:497 | |
1117 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:621 | |
1118 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:758 | |
1119 | 1119 | msgid "Outbound" |
1120 | 1120 | msgstr "" |
1121 | 1121 | |
1122 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:325 | |
1122 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:318 | |
1123 | 1123 | msgid "Outbound node" |
1124 | 1124 | msgstr "" |
1125 | 1125 | |
1126 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:277 | |
1126 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:270 | |
1127 | 1127 | #: htdocs/luci-static/resources/view/homeproxy/server.js:487 |
1128 | 1128 | msgid "Override destination" |
1129 | 1129 | msgstr "" |
1130 | 1130 | |
1131 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:278 | |
1131 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:271 | |
1132 | 1132 | #: htdocs/luci-static/resources/view/homeproxy/server.js:488 |
1133 | 1133 | msgid "Override the connection destination address with the sniffed domain." |
1134 | 1134 | msgstr "" |
1135 | 1135 | |
1136 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:801 | |
1136 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:789 | |
1137 | 1137 | msgid "PUT" |
1138 | 1138 | msgstr "" |
1139 | 1139 | |
1140 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:844 | |
1140 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:832 | |
1141 | 1141 | msgid "Packet encoding" |
1142 | 1142 | msgstr "" |
1143 | 1143 |
@@ -1145,44 +1145,44 @@ msgstr "" | ||
1145 | 1145 | msgid "Parse Proxy Protocol in the connection header." |
1146 | 1146 | msgstr "" |
1147 | 1147 | |
1148 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:471 | |
1148 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:459 | |
1149 | 1149 | #: htdocs/luci-static/resources/view/homeproxy/server.js:93 |
1150 | 1150 | msgid "Password" |
1151 | 1151 | msgstr "" |
1152 | 1152 | |
1153 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:795 | |
1154 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:827 | |
1153 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:783 | |
1154 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:815 | |
1155 | 1155 | #: htdocs/luci-static/resources/view/homeproxy/server.js:262 |
1156 | 1156 | #: htdocs/luci-static/resources/view/homeproxy/server.js:291 |
1157 | 1157 | msgid "Path" |
1158 | 1158 | msgstr "" |
1159 | 1159 | |
1160 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:868 | |
1160 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:856 | |
1161 | 1161 | msgid "Peer pubkic key" |
1162 | 1162 | msgstr "" |
1163 | 1163 | |
1164 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:266 | |
1164 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:260 | |
1165 | 1165 | msgid "" |
1166 | 1166 | "Performance may degrade slightly, so it is not recommended to enable on when " |
1167 | 1167 | "it is not needed." |
1168 | 1168 | msgstr "" |
1169 | 1169 | |
1170 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:813 | |
1170 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:801 | |
1171 | 1171 | #: htdocs/luci-static/resources/view/homeproxy/server.js:278 |
1172 | 1172 | msgid "Ping timeout" |
1173 | 1173 | msgstr "" |
1174 | 1174 | |
1175 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:594 | |
1175 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:582 | |
1176 | 1176 | msgid "Plugin" |
1177 | 1177 | msgstr "" |
1178 | 1178 | |
1179 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:601 | |
1179 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:589 | |
1180 | 1180 | msgid "Plugin opts" |
1181 | 1181 | msgstr "" |
1182 | 1182 | |
1183 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:482 | |
1184 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:743 | |
1185 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:462 | |
1183 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:475 | |
1184 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:736 | |
1185 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:450 | |
1186 | 1186 | #: htdocs/luci-static/resources/view/homeproxy/server.js:81 |
1187 | 1187 | msgid "Port" |
1188 | 1188 | msgstr "" |
@@ -1191,12 +1191,12 @@ msgstr "" | ||
1191 | 1191 | msgid "Port %s alrealy exists!" |
1192 | 1192 | msgstr "" |
1193 | 1193 | |
1194 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:487 | |
1195 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:748 | |
1194 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:480 | |
1195 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:741 | |
1196 | 1196 | msgid "Port range" |
1197 | 1197 | msgstr "" |
1198 | 1198 | |
1199 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:874 | |
1199 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:862 | |
1200 | 1200 | msgid "Pre-shared key" |
1201 | 1201 | msgstr "" |
1202 | 1202 |
@@ -1208,66 +1208,66 @@ msgstr "" | ||
1208 | 1208 | msgid "Prefer IPv6" |
1209 | 1209 | msgstr "" |
1210 | 1210 | |
1211 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:861 | |
1211 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:849 | |
1212 | 1212 | msgid "Private key" |
1213 | 1213 | msgstr "" |
1214 | 1214 | |
1215 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:492 | |
1216 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:753 | |
1215 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:485 | |
1216 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:746 | |
1217 | 1217 | msgid "Process name" |
1218 | 1218 | msgstr "" |
1219 | 1219 | |
1220 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:496 | |
1221 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:757 | |
1220 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:489 | |
1221 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:750 | |
1222 | 1222 | msgid "Process path" |
1223 | 1223 | msgstr "" |
1224 | 1224 | |
1225 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:426 | |
1226 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:690 | |
1227 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:514 | |
1228 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:636 | |
1229 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:897 | |
1225 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:419 | |
1226 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:683 | |
1227 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:502 | |
1228 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:624 | |
1229 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:885 | |
1230 | 1230 | #: htdocs/luci-static/resources/view/homeproxy/server.js:121 |
1231 | 1231 | msgid "Protocol" |
1232 | 1232 | msgstr "" |
1233 | 1233 | |
1234 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:652 | |
1234 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:640 | |
1235 | 1235 | msgid "Protocol param" |
1236 | 1236 | msgstr "" |
1237 | 1237 | |
1238 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:729 | |
1238 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:717 | |
1239 | 1239 | msgid "Protocol parameter. Enable length block encryption." |
1240 | 1240 | msgstr "" |
1241 | 1241 | |
1242 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:722 | |
1242 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:710 | |
1243 | 1243 | msgid "" |
1244 | 1244 | "Protocol parameter. Will waste traffic randomly if enabled (enabled by " |
1245 | 1245 | "default in v2ray and cannot be disabled)." |
1246 | 1246 | msgstr "" |
1247 | 1247 | |
1248 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:928 | |
1248 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:921 | |
1249 | 1249 | msgid "Proxy Domain List" |
1250 | 1250 | msgstr "" |
1251 | 1251 | |
1252 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:866 | |
1253 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:912 | |
1252 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:859 | |
1253 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:905 | |
1254 | 1254 | msgid "Proxy IPv4 IP-s" |
1255 | 1255 | msgstr "" |
1256 | 1256 | |
1257 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:873 | |
1258 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:915 | |
1257 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:866 | |
1258 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:908 | |
1259 | 1259 | msgid "Proxy IPv6 IP-s" |
1260 | 1260 | msgstr "" |
1261 | 1261 | |
1262 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:847 | |
1262 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:840 | |
1263 | 1263 | msgid "Proxy all except listed" |
1264 | 1264 | msgstr "" |
1265 | 1265 | |
1266 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:844 | |
1266 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:837 | |
1267 | 1267 | msgid "Proxy filter mode" |
1268 | 1268 | msgstr "" |
1269 | 1269 | |
1270 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:846 | |
1270 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:839 | |
1271 | 1271 | msgid "Proxy listed only" |
1272 | 1272 | msgstr "" |
1273 | 1273 |
@@ -1275,23 +1275,23 @@ msgstr "" | ||
1275 | 1275 | msgid "Proxy mode" |
1276 | 1276 | msgstr "" |
1277 | 1277 | |
1278 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:505 | |
1278 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:493 | |
1279 | 1279 | #: htdocs/luci-static/resources/view/homeproxy/server.js:497 |
1280 | 1280 | msgid "Proxy protocol" |
1281 | 1281 | msgstr "" |
1282 | 1282 | |
1283 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1038 | |
1283 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1040 | |
1284 | 1284 | msgid "QQ" |
1285 | 1285 | msgstr "" |
1286 | 1286 | |
1287 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:430 | |
1288 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:694 | |
1289 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:742 | |
1287 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:423 | |
1288 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:687 | |
1289 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:730 | |
1290 | 1290 | #: htdocs/luci-static/resources/view/homeproxy/server.js:225 |
1291 | 1291 | msgid "QUIC" |
1292 | 1292 | msgstr "" |
1293 | 1293 | |
1294 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:562 | |
1294 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:550 | |
1295 | 1295 | #: htdocs/luci-static/resources/view/homeproxy/server.js:170 |
1296 | 1296 | msgid "QUIC connection receive window" |
1297 | 1297 | msgstr "" |
@@ -1300,20 +1300,20 @@ msgstr "" | ||
1300 | 1300 | msgid "QUIC maximum concurrent bidirectional streams" |
1301 | 1301 | msgstr "" |
1302 | 1302 | |
1303 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:556 | |
1303 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:544 | |
1304 | 1304 | #: htdocs/luci-static/resources/view/homeproxy/server.js:163 |
1305 | 1305 | msgid "QUIC stream receive window" |
1306 | 1306 | msgstr "" |
1307 | 1307 | |
1308 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1054 | |
1308 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1056 | |
1309 | 1309 | msgid "REALITY" |
1310 | 1310 | msgstr "" |
1311 | 1311 | |
1312 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1059 | |
1312 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1061 | |
1313 | 1313 | msgid "REALITY public key" |
1314 | 1314 | msgstr "" |
1315 | 1315 | |
1316 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1064 | |
1316 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1066 | |
1317 | 1317 | msgid "REALITY short ID" |
1318 | 1318 | msgstr "" |
1319 | 1319 |
@@ -1321,19 +1321,19 @@ msgstr "" | ||
1321 | 1321 | msgid "RUNNING" |
1322 | 1322 | msgstr "" |
1323 | 1323 | |
1324 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1039 | |
1324 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1041 | |
1325 | 1325 | msgid "Random" |
1326 | 1326 | msgstr "" |
1327 | 1327 | |
1328 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1040 | |
1328 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1042 | |
1329 | 1329 | msgid "Randomized" |
1330 | 1330 | msgstr "" |
1331 | 1331 | |
1332 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:369 | |
1332 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:362 | |
1333 | 1333 | msgid "Recursive outbound detected!" |
1334 | 1334 | msgstr "" |
1335 | 1335 | |
1336 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:610 | |
1336 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:603 | |
1337 | 1337 | msgid "Recursive resolver detected!" |
1338 | 1338 | msgstr "" |
1339 | 1339 |
@@ -1345,7 +1345,7 @@ msgstr "" | ||
1345 | 1345 | msgid "Redirect TCP + TProxy UDP" |
1346 | 1346 | msgstr "" |
1347 | 1347 | |
1348 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:223 | |
1348 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:222 | |
1349 | 1349 | msgid "Redirect TCP + Tun UDP" |
1350 | 1350 | msgstr "" |
1351 | 1351 |
@@ -1353,15 +1353,15 @@ msgstr "" | ||
1353 | 1353 | msgid "Refresh every %s seconds." |
1354 | 1354 | msgstr "" |
1355 | 1355 | |
1356 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1191 | |
1356 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1200 | |
1357 | 1357 | msgid "Remove %s nodes" |
1358 | 1358 | msgstr "" |
1359 | 1359 | |
1360 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1181 | |
1360 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1190 | |
1361 | 1361 | msgid "Remove all nodes from subscriptions" |
1362 | 1362 | msgstr "" |
1363 | 1363 | |
1364 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:623 | |
1364 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:616 | |
1365 | 1365 | msgid "Resolve strategy" |
1366 | 1366 | msgstr "" |
1367 | 1367 |
@@ -1369,11 +1369,11 @@ msgstr "" | ||
1369 | 1369 | msgid "Resources management" |
1370 | 1370 | msgstr "" |
1371 | 1371 | |
1372 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:302 | |
1372 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:295 | |
1373 | 1373 | msgid "Routing Nodes" |
1374 | 1374 | msgstr "" |
1375 | 1375 | |
1376 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:377 | |
1376 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:370 | |
1377 | 1377 | msgid "Routing Rules" |
1378 | 1378 | msgstr "" |
1379 | 1379 |
@@ -1385,7 +1385,7 @@ msgstr "" | ||
1385 | 1385 | msgid "Routing mode" |
1386 | 1386 | msgstr "" |
1387 | 1387 | |
1388 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:310 | |
1388 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:303 | |
1389 | 1389 | msgid "Routing node" |
1390 | 1390 | msgstr "" |
1391 | 1391 |
@@ -1393,16 +1393,20 @@ msgstr "" | ||
1393 | 1393 | msgid "Routing ports" |
1394 | 1394 | msgstr "" |
1395 | 1395 | |
1396 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:385 | |
1396 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:378 | |
1397 | 1397 | msgid "Routing rule" |
1398 | 1398 | msgstr "" |
1399 | 1399 | |
1400 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:431 | |
1401 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:696 | |
1400 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:424 | |
1401 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:689 | |
1402 | 1402 | msgid "STUN" |
1403 | 1403 | msgstr "" |
1404 | 1404 | |
1405 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1041 | |
1405 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1090 | |
1406 | +msgid "SUoT version" | |
1407 | +msgstr "" | |
1408 | + | |
1409 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1043 | |
1406 | 1410 | msgid "Safari" |
1407 | 1411 | msgstr "" |
1408 | 1412 |
@@ -1410,15 +1414,15 @@ msgstr "" | ||
1410 | 1414 | msgid "Same as main node" |
1411 | 1415 | msgstr "" |
1412 | 1416 | |
1413 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1155 | |
1417 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1164 | |
1414 | 1418 | msgid "Save current settings" |
1415 | 1419 | msgstr "" |
1416 | 1420 | |
1417 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1152 | |
1421 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1161 | |
1418 | 1422 | msgid "Save subscriptions settings" |
1419 | 1423 | msgstr "" |
1420 | 1424 | |
1421 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:782 | |
1425 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:775 | |
1422 | 1426 | #: htdocs/luci-static/resources/view/homeproxy/server.js:41 |
1423 | 1427 | msgid "Server" |
1424 | 1428 | msgstr "" |
@@ -1441,7 +1445,7 @@ msgstr "" | ||
1441 | 1445 | msgid "ShadowTLS" |
1442 | 1446 | msgstr "" |
1443 | 1447 | |
1444 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:672 | |
1448 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:660 | |
1445 | 1449 | msgid "ShadowTLS version" |
1446 | 1450 | msgstr "" |
1447 | 1451 |
@@ -1454,8 +1458,8 @@ msgstr "" | ||
1454 | 1458 | msgid "ShadowsocksR" |
1455 | 1459 | msgstr "" |
1456 | 1460 | |
1457 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:427 | |
1458 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:691 | |
1461 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:420 | |
1462 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:684 | |
1459 | 1463 | msgid "" |
1460 | 1464 | "Sniffed protocol, see <a target=\"_blank\" href=\"https://sing-box.sagernet." |
1461 | 1465 | "org/configuration/route/sniff/\">Sniff</a> for details." |
@@ -1466,44 +1470,44 @@ msgstr "" | ||
1466 | 1470 | msgid "Socks" |
1467 | 1471 | msgstr "" |
1468 | 1472 | |
1469 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:682 | |
1473 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:670 | |
1470 | 1474 | msgid "Socks version" |
1471 | 1475 | msgstr "" |
1472 | 1476 | |
1473 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:683 | |
1477 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:671 | |
1474 | 1478 | msgid "Socks4" |
1475 | 1479 | msgstr "" |
1476 | 1480 | |
1477 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:684 | |
1481 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:672 | |
1478 | 1482 | msgid "Socks4A" |
1479 | 1483 | msgstr "" |
1480 | 1484 | |
1481 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:685 | |
1485 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:673 | |
1482 | 1486 | msgid "Socks5" |
1483 | 1487 | msgstr "" |
1484 | 1488 | |
1485 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:454 | |
1486 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:719 | |
1489 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:447 | |
1490 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:712 | |
1487 | 1491 | msgid "Source GeoIP" |
1488 | 1492 | msgstr "" |
1489 | 1493 | |
1490 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:462 | |
1491 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:723 | |
1494 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:455 | |
1495 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:716 | |
1492 | 1496 | msgid "Source IP CIDR" |
1493 | 1497 | msgstr "" |
1494 | 1498 | |
1495 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:472 | |
1496 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:733 | |
1499 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:465 | |
1500 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:726 | |
1497 | 1501 | msgid "Source port" |
1498 | 1502 | msgstr "" |
1499 | 1503 | |
1500 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:477 | |
1501 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:738 | |
1504 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:470 | |
1505 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:731 | |
1502 | 1506 | msgid "Source port range" |
1503 | 1507 | msgstr "" |
1504 | 1508 | |
1505 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:759 | |
1506 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:806 | |
1509 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:747 | |
1510 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:794 | |
1507 | 1511 | msgid "" |
1508 | 1512 | "Specifies the period of time after which a health check will be performed " |
1509 | 1513 | "using a ping frame if no frames have been received on the connection.<br/" |
@@ -1519,8 +1523,8 @@ msgid "" | ||
1519 | 1523 | "PING frames are not considered as activity." |
1520 | 1524 | msgstr "" |
1521 | 1525 | |
1522 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:763 | |
1523 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:814 | |
1526 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:751 | |
1527 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:802 | |
1524 | 1528 | msgid "" |
1525 | 1529 | "Specifies the timeout duration after sending a PING frame, within which a " |
1526 | 1530 | "response must be received.<br/>If a response to the PING frame is not " |
@@ -1534,16 +1538,16 @@ msgid "" | ||
1534 | 1538 | "commas." |
1535 | 1539 | msgstr "" |
1536 | 1540 | |
1537 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:528 | |
1541 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:516 | |
1538 | 1542 | #: htdocs/luci-static/resources/view/homeproxy/server.js:147 |
1539 | 1543 | msgid "String" |
1540 | 1544 | msgstr "" |
1541 | 1545 | |
1542 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1109 | |
1546 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1118 | |
1543 | 1547 | msgid "Subscription URL-s" |
1544 | 1548 | msgstr "" |
1545 | 1549 | |
1546 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1091 | |
1550 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1100 | |
1547 | 1551 | msgid "Subscriptions" |
1548 | 1552 | msgstr "" |
1549 | 1553 |
@@ -1556,68 +1560,72 @@ msgid "Successfully updated." | ||
1556 | 1560 | msgstr "" |
1557 | 1561 | |
1558 | 1562 | #: htdocs/luci-static/resources/view/homeproxy/node.js:317 |
1559 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1110 | |
1563 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1119 | |
1560 | 1564 | msgid "" |
1561 | 1565 | "Support Hysteria, Shadowsocks(R), Trojan, v2rayN (VMess), and XTLS (VLESS) " |
1562 | 1566 | "online configuration delivery standard." |
1563 | 1567 | msgstr "" |
1564 | 1568 | |
1565 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:422 | |
1566 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:686 | |
1569 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:244 | |
1570 | +msgid "System" | |
1571 | +msgstr "" | |
1572 | + | |
1573 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:415 | |
1574 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:679 | |
1567 | 1575 | #: htdocs/luci-static/resources/view/homeproxy/server.js:510 |
1568 | 1576 | msgid "TCP" |
1569 | 1577 | msgstr "" |
1570 | 1578 | |
1571 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1072 | |
1579 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1074 | |
1572 | 1580 | #: htdocs/luci-static/resources/view/homeproxy/server.js:475 |
1573 | 1581 | msgid "TCP fast open" |
1574 | 1582 | msgstr "" |
1575 | 1583 | |
1576 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:239 | |
1584 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:238 | |
1577 | 1585 | msgid "TCP/IP stack" |
1578 | 1586 | msgstr "" |
1579 | 1587 | |
1580 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:240 | |
1588 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:239 | |
1581 | 1589 | msgid "TCP/IP stack." |
1582 | 1590 | msgstr "" |
1583 | 1591 | |
1584 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:429 | |
1585 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:693 | |
1586 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:932 | |
1592 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:422 | |
1593 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:686 | |
1594 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:920 | |
1587 | 1595 | #: htdocs/luci-static/resources/view/homeproxy/server.js:314 |
1588 | 1596 | msgid "TLS" |
1589 | 1597 | msgstr "" |
1590 | 1598 | |
1591 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:947 | |
1599 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:949 | |
1592 | 1600 | #: htdocs/luci-static/resources/view/homeproxy/server.js:330 |
1593 | 1601 | msgid "TLS ALPN" |
1594 | 1602 | msgstr "" |
1595 | 1603 | |
1596 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:942 | |
1604 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:944 | |
1597 | 1605 | #: htdocs/luci-static/resources/view/homeproxy/server.js:325 |
1598 | 1606 | msgid "TLS SNI" |
1599 | 1607 | msgstr "" |
1600 | 1608 | |
1601 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:750 | |
1609 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:738 | |
1602 | 1610 | #: htdocs/luci-static/resources/view/homeproxy/server.js:230 |
1603 | 1611 | msgid "TLS is not enforced. If TLS is not configured, plain HTTP 1.1 is used." |
1604 | 1612 | msgstr "" |
1605 | 1613 | |
1606 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:587 | |
1614 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:580 | |
1607 | 1615 | msgid "" |
1608 | 1616 | "Tag of a another server to resolve the domain name in the address. Required " |
1609 | 1617 | "if address contains domain." |
1610 | 1618 | msgstr "" |
1611 | 1619 | |
1612 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:629 | |
1620 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:622 | |
1613 | 1621 | msgid "Tag of an outbound for connecting to the dns server." |
1614 | 1622 | msgstr "" |
1615 | 1623 | |
1616 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:783 | |
1624 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:776 | |
1617 | 1625 | msgid "Tag of the target dns server." |
1618 | 1626 | msgstr "" |
1619 | 1627 | |
1620 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:505 | |
1628 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:498 | |
1621 | 1629 | msgid "Tag of the target outbound." |
1622 | 1630 | msgstr "" |
1623 | 1631 |
@@ -1629,21 +1637,21 @@ msgstr "" | ||
1629 | 1637 | msgid "The ACME CA provider to use." |
1630 | 1638 | msgstr "" |
1631 | 1639 | |
1632 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:530 | |
1640 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:523 | |
1633 | 1641 | msgid "The DNS strategy for resolving the domain name in the address." |
1634 | 1642 | msgstr "" |
1635 | 1643 | |
1636 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:563 | |
1644 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:551 | |
1637 | 1645 | #: htdocs/luci-static/resources/view/homeproxy/server.js:171 |
1638 | 1646 | msgid "The QUIC connection-level flow control window for receiving data." |
1639 | 1647 | msgstr "" |
1640 | 1648 | |
1641 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:557 | |
1649 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:545 | |
1642 | 1650 | #: htdocs/luci-static/resources/view/homeproxy/server.js:164 |
1643 | 1651 | msgid "The QUIC stream-level flow control window for receiving data." |
1644 | 1652 | msgstr "" |
1645 | 1653 | |
1646 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:583 | |
1654 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:576 | |
1647 | 1655 | msgid "The address of the dns server. Support UDP, TCP, DoT, DoH and RCode." |
1648 | 1656 | msgstr "" |
1649 | 1657 |
@@ -1659,7 +1667,7 @@ msgid "" | ||
1659 | 1667 | "forward 443 to this port for challenge to succeed." |
1660 | 1668 | msgstr "" |
1661 | 1669 | |
1662 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:407 | |
1670 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:400 | |
1663 | 1671 | msgid "" |
1664 | 1672 | "The default rule uses the following matching logic:<br/><code>(domain || " |
1665 | 1673 | "domain_suffix || domain_keyword || domain_regex || geosite || geoip || " |
@@ -1667,7 +1675,7 @@ msgid "" | ||
1667 | 1675 | "><code>other fields</code>." |
1668 | 1676 | msgstr "" |
1669 | 1677 | |
1670 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:671 | |
1678 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:664 | |
1671 | 1679 | msgid "" |
1672 | 1680 | "The default rule uses the following matching logic:<br/><code>(domain || " |
1673 | 1681 | "domain_suffix || domain_keyword || domain_regex || geosite || ip_cidr)</" |
@@ -1675,13 +1683,13 @@ msgid "" | ||
1675 | 1683 | "><code>other fields</code>." |
1676 | 1684 | msgstr "" |
1677 | 1685 | |
1678 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:618 | |
1686 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:611 | |
1679 | 1687 | msgid "" |
1680 | 1688 | "The domain strategy for resolving the domain name in the address. dns." |
1681 | 1689 | "strategy will be used if empty." |
1682 | 1690 | msgstr "" |
1683 | 1691 | |
1684 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:978 | |
1692 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:980 | |
1685 | 1693 | #: htdocs/luci-static/resources/view/homeproxy/server.js:352 |
1686 | 1694 | msgid "" |
1687 | 1695 | "The elliptic curves that will be used in an ECDHE handshake, in preference " |
@@ -1694,7 +1702,7 @@ msgid "" | ||
1694 | 1702 | "account." |
1695 | 1703 | msgstr "" |
1696 | 1704 | |
1697 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:970 | |
1705 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:972 | |
1698 | 1706 | #: htdocs/luci-static/resources/view/homeproxy/server.js:344 |
1699 | 1707 | msgid "The maximum TLS version that is acceptable." |
1700 | 1708 | msgstr "" |
@@ -1705,7 +1713,7 @@ msgid "" | ||
1705 | 1713 | "allowed to open." |
1706 | 1714 | msgstr "" |
1707 | 1715 | |
1708 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:962 | |
1716 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:964 | |
1709 | 1717 | #: htdocs/luci-static/resources/view/homeproxy/server.js:336 |
1710 | 1718 | msgid "The minimum TLS version that is acceptable." |
1711 | 1719 | msgstr "" |
@@ -1714,11 +1722,11 @@ msgstr "" | ||
1714 | 1722 | msgid "The modern ImmortalWrt proxy platform for ARM64/AMD64." |
1715 | 1723 | msgstr "" |
1716 | 1724 | |
1717 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:338 | |
1725 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:331 | |
1718 | 1726 | msgid "The network interface to bind to." |
1719 | 1727 | msgstr "" |
1720 | 1728 | |
1721 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:992 | |
1729 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:994 | |
1722 | 1730 | msgid "The path to the server certificate, in PEM format." |
1723 | 1731 | msgstr "" |
1724 | 1732 |
@@ -1734,21 +1742,21 @@ msgstr "" | ||
1734 | 1742 | msgid "The server public key, in PEM format." |
1735 | 1743 | msgstr "" |
1736 | 1744 | |
1737 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:345 | |
1745 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:338 | |
1738 | 1746 | msgid "" |
1739 | 1747 | "The tag of the upstream outbound.<br/>Other dial fields will be ignored when " |
1740 | 1748 | "enabled." |
1741 | 1749 | msgstr "" |
1742 | 1750 | |
1743 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:770 | |
1751 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:758 | |
1744 | 1752 | #: htdocs/luci-static/resources/view/homeproxy/server.js:279 |
1745 | 1753 | msgid "" |
1746 | 1754 | "The timeout that after performing a keepalive check, the client will wait " |
1747 | 1755 | "for activity. If no activity is detected, the connection will be closed." |
1748 | 1756 | msgstr "" |
1749 | 1757 | |
1750 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:955 | |
1751 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1142 | |
1758 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:957 | |
1759 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1151 | |
1752 | 1760 | msgid "" |
1753 | 1761 | "This is <strong>DANGEROUS</strong>, your traffic is almost like " |
1754 | 1762 | "<strong>PLAIN TEXT</strong>! Use at your own risk!" |
@@ -1760,7 +1768,7 @@ msgid "" | ||
1760 | 1768 | "code>." |
1761 | 1769 | msgstr "" |
1762 | 1770 | |
1763 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:737 | |
1771 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:725 | |
1764 | 1772 | #: htdocs/luci-static/resources/view/homeproxy/server.js:220 |
1765 | 1773 | msgid "Transport" |
1766 | 1774 | msgstr "" |
@@ -1770,7 +1778,7 @@ msgstr "" | ||
1770 | 1778 | msgid "Trojan" |
1771 | 1779 | msgstr "" |
1772 | 1780 | |
1773 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:224 | |
1781 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:223 | |
1774 | 1782 | msgid "Tun TCP/UDP" |
1775 | 1783 | msgstr "" |
1776 | 1784 |
@@ -1779,22 +1787,22 @@ msgstr "" | ||
1779 | 1787 | msgid "Type" |
1780 | 1788 | msgstr "" |
1781 | 1789 | |
1782 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:423 | |
1783 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:687 | |
1790 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:416 | |
1791 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:680 | |
1784 | 1792 | #: htdocs/luci-static/resources/view/homeproxy/server.js:511 |
1785 | 1793 | msgid "UDP" |
1786 | 1794 | msgstr "" |
1787 | 1795 | |
1788 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1076 | |
1796 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1078 | |
1789 | 1797 | #: htdocs/luci-static/resources/view/homeproxy/server.js:481 |
1790 | 1798 | msgid "UDP Fragment" |
1791 | 1799 | msgstr "" |
1792 | 1800 | |
1793 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1081 | |
1801 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1083 | |
1794 | 1802 | msgid "UDP over TCP" |
1795 | 1803 | msgstr "" |
1796 | 1804 | |
1797 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:692 | |
1805 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:680 | |
1798 | 1806 | #: htdocs/luci-static/resources/view/homeproxy/server.js:200 |
1799 | 1807 | msgid "UUID" |
1800 | 1808 | msgstr "" |
@@ -1807,7 +1815,7 @@ msgstr "" | ||
1807 | 1815 | msgid "Unknown error: %s" |
1808 | 1816 | msgstr "" |
1809 | 1817 | |
1810 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1166 | |
1818 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1175 | |
1811 | 1819 | msgid "Update %s subscriptions" |
1812 | 1820 | msgstr "" |
1813 | 1821 |
@@ -1815,19 +1823,19 @@ msgstr "" | ||
1815 | 1823 | msgid "Update failed." |
1816 | 1824 | msgstr "" |
1817 | 1825 | |
1818 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1161 | |
1826 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1170 | |
1819 | 1827 | msgid "Update nodes from subscriptions" |
1820 | 1828 | msgstr "" |
1821 | 1829 | |
1822 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1105 | |
1830 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1114 | |
1823 | 1831 | msgid "Update subscriptions via proxy." |
1824 | 1832 | msgstr "" |
1825 | 1833 | |
1826 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1104 | |
1834 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1113 | |
1827 | 1835 | msgid "Update via proxy" |
1828 | 1836 | msgstr "" |
1829 | 1837 | |
1830 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:998 | |
1838 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1000 | |
1831 | 1839 | #: htdocs/luci-static/resources/view/homeproxy/server.js:449 |
1832 | 1840 | msgid "Upload certificate" |
1833 | 1841 | msgstr "" |
@@ -1836,13 +1844,13 @@ msgstr "" | ||
1836 | 1844 | msgid "Upload key" |
1837 | 1845 | msgstr "" |
1838 | 1846 | |
1839 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1001 | |
1847 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1003 | |
1840 | 1848 | #: htdocs/luci-static/resources/view/homeproxy/server.js:452 |
1841 | 1849 | #: htdocs/luci-static/resources/view/homeproxy/server.js:468 |
1842 | 1850 | msgid "Upload..." |
1843 | 1851 | msgstr "" |
1844 | 1852 | |
1845 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:260 | |
1853 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:254 | |
1846 | 1854 | msgid "Upstream archived. Not recommended." |
1847 | 1855 | msgstr "" |
1848 | 1856 |
@@ -1854,19 +1862,19 @@ msgstr "" | ||
1854 | 1862 | msgid "Use DNS server from WAN" |
1855 | 1863 | msgstr "" |
1856 | 1864 | |
1857 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:943 | |
1865 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:945 | |
1858 | 1866 | #: htdocs/luci-static/resources/view/homeproxy/server.js:326 |
1859 | 1867 | msgid "" |
1860 | 1868 | "Used to verify the hostname on the returned certificates unless insecure is " |
1861 | 1869 | "given." |
1862 | 1870 | msgstr "" |
1863 | 1871 | |
1864 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:500 | |
1865 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:761 | |
1872 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:493 | |
1873 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:754 | |
1866 | 1874 | msgid "User" |
1867 | 1875 | msgstr "" |
1868 | 1876 | |
1869 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:466 | |
1877 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:454 | |
1870 | 1878 | #: htdocs/luci-static/resources/view/homeproxy/server.js:86 |
1871 | 1879 | msgid "Username" |
1872 | 1880 | msgstr "" |
@@ -1881,16 +1889,16 @@ msgstr "" | ||
1881 | 1889 | msgid "VMess" |
1882 | 1890 | msgstr "" |
1883 | 1891 | |
1884 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:910 | |
1892 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:903 | |
1885 | 1893 | msgid "WAN IP Policy" |
1886 | 1894 | msgstr "" |
1887 | 1895 | |
1888 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:743 | |
1896 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:731 | |
1889 | 1897 | #: htdocs/luci-static/resources/view/homeproxy/server.js:226 |
1890 | 1898 | msgid "WebSocket" |
1891 | 1899 | msgstr "" |
1892 | 1900 | |
1893 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1130 | |
1901 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1139 | |
1894 | 1902 | msgid "Whitelist mode" |
1895 | 1903 | msgstr "" |
1896 | 1904 |
@@ -1898,19 +1906,19 @@ msgstr "" | ||
1898 | 1906 | msgid "WireGuard" |
1899 | 1907 | msgstr "" |
1900 | 1908 | |
1901 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:869 | |
1909 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:857 | |
1902 | 1910 | msgid "WireGuard peer public key." |
1903 | 1911 | msgstr "" |
1904 | 1912 | |
1905 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:875 | |
1913 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:863 | |
1906 | 1914 | msgid "WireGuard pre-shared key." |
1907 | 1915 | msgstr "" |
1908 | 1916 | |
1909 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:862 | |
1917 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:850 | |
1910 | 1918 | msgid "WireGuard requires base64-encoded private keys." |
1911 | 1919 | msgstr "" |
1912 | 1920 | |
1913 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:506 | |
1921 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:494 | |
1914 | 1922 | msgid "Write Proxy Protocol in the connection header." |
1915 | 1923 | msgstr "" |
1916 | 1924 |
@@ -1918,8 +1926,8 @@ msgstr "" | ||
1918 | 1926 | msgid "Xinfeng Public DNS (114.114.114.114)" |
1919 | 1927 | msgstr "" |
1920 | 1928 | |
1921 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:847 | |
1922 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1150 | |
1929 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:835 | |
1930 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1159 | |
1923 | 1931 | msgid "Xudp (Xray-core)" |
1924 | 1932 | msgstr "" |
1925 | 1933 |
@@ -1935,57 +1943,57 @@ msgstr "" | ||
1935 | 1943 | msgid "ZeroSSL" |
1936 | 1944 | msgstr "" |
1937 | 1945 | |
1938 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1003 | |
1946 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1005 | |
1939 | 1947 | #: htdocs/luci-static/resources/view/homeproxy/server.js:454 |
1940 | 1948 | msgid "certificate" |
1941 | 1949 | msgstr "" |
1942 | 1950 | |
1943 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:963 | |
1944 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:971 | |
1951 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:965 | |
1952 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:973 | |
1945 | 1953 | #: htdocs/luci-static/resources/view/homeproxy/server.js:337 |
1946 | 1954 | #: htdocs/luci-static/resources/view/homeproxy/server.js:345 |
1947 | 1955 | msgid "default" |
1948 | 1956 | msgstr "" |
1949 | 1957 | |
1950 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:740 | |
1958 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:728 | |
1951 | 1959 | #: htdocs/luci-static/resources/view/homeproxy/server.js:223 |
1952 | 1960 | msgid "gRPC" |
1953 | 1961 | msgstr "" |
1954 | 1962 | |
1955 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:781 | |
1963 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:769 | |
1956 | 1964 | msgid "gRPC permit without stream" |
1957 | 1965 | msgstr "" |
1958 | 1966 | |
1959 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:776 | |
1967 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:764 | |
1960 | 1968 | #: htdocs/luci-static/resources/view/homeproxy/server.js:250 |
1961 | 1969 | msgid "gRPC service name" |
1962 | 1970 | msgstr "" |
1963 | 1971 | |
1964 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:242 | |
1972 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:241 | |
1965 | 1973 | msgid "gVisor" |
1966 | 1974 | msgstr "" |
1967 | 1975 | |
1968 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1037 | |
1976 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1039 | |
1969 | 1977 | msgid "iOS" |
1970 | 1978 | msgstr "" |
1971 | 1979 | |
1972 | 1980 | #: htdocs/luci-static/resources/homeproxy.js:245 |
1973 | 1981 | #: htdocs/luci-static/resources/homeproxy.js:263 |
1974 | 1982 | #: htdocs/luci-static/resources/view/homeproxy/client.js:173 |
1975 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:496 | |
1976 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1047 | |
1983 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:484 | |
1984 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1049 | |
1977 | 1985 | #: htdocs/luci-static/resources/view/homeproxy/server.js:113 |
1978 | 1986 | msgid "non-empty value" |
1979 | 1987 | msgstr "" |
1980 | 1988 | |
1981 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:595 | |
1982 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:845 | |
1983 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1148 | |
1989 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:583 | |
1990 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:833 | |
1991 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1157 | |
1984 | 1992 | msgid "none" |
1985 | 1993 | msgstr "" |
1986 | 1994 | |
1987 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:846 | |
1988 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1149 | |
1995 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:834 | |
1996 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1158 | |
1989 | 1997 | msgid "packet addr (v2ray-core v5+)" |
1990 | 1998 | msgstr "" |
1991 | 1999 |
@@ -1993,11 +2001,11 @@ msgstr "" | ||
1993 | 2001 | msgid "private key" |
1994 | 2002 | msgstr "" |
1995 | 2003 | |
1996 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1029 | |
2004 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1031 | |
1997 | 2005 | msgid "uTLS fingerprint" |
1998 | 2006 | msgstr "" |
1999 | 2007 | |
2000 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1030 | |
2008 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1032 | |
2001 | 2009 | msgid "" |
2002 | 2010 | "uTLS is a fork of \"crypto/tls\", which provides ClientHello fingerprinting " |
2003 | 2011 | "resistance." |
@@ -2012,15 +2020,17 @@ msgstr "" | ||
2012 | 2020 | msgid "unique value" |
2013 | 2021 | msgstr "" |
2014 | 2022 | |
2015 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:673 | |
2023 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:661 | |
2024 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1091 | |
2016 | 2025 | msgid "v1" |
2017 | 2026 | msgstr "" |
2018 | 2027 | |
2019 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:674 | |
2028 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:662 | |
2029 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1092 | |
2020 | 2030 | msgid "v2" |
2021 | 2031 | msgstr "" |
2022 | 2032 | |
2023 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:675 | |
2033 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:663 | |
2024 | 2034 | msgid "v3" |
2025 | 2035 | msgstr "" |
2026 | 2036 |
@@ -2028,8 +2038,8 @@ msgstr "" | ||
2028 | 2038 | msgid "valid IP address" |
2029 | 2039 | msgstr "" |
2030 | 2040 | |
2031 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1116 | |
2032 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1119 | |
2041 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1125 | |
2042 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1128 | |
2033 | 2043 | msgid "valid URL" |
2034 | 2044 | msgstr "" |
2035 | 2045 |
@@ -2037,8 +2047,8 @@ msgstr "" | ||
2037 | 2047 | msgid "valid base64 key with %d characters" |
2038 | 2048 | msgstr "" |
2039 | 2049 | |
2040 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:950 | |
2041 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:979 | |
2050 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:943 | |
2051 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:972 | |
2042 | 2052 | msgid "valid hostname" |
2043 | 2053 | msgstr "" |
2044 | 2054 |
@@ -12,19 +12,19 @@ msgstr "" | ||
12 | 12 | msgid "%s log" |
13 | 13 | msgstr "%s 日志" |
14 | 14 | |
15 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1213 | |
15 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1222 | |
16 | 16 | msgid "%s nodes removed" |
17 | 17 | msgstr "移除了 %s 个节点" |
18 | 18 | |
19 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1032 | |
19 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1034 | |
20 | 20 | msgid "360" |
21 | 21 | msgstr "360" |
22 | 22 | |
23 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:400 | |
23 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:393 | |
24 | 24 | msgid "4 or 6. Not limited if empty." |
25 | 25 | msgstr "4 或 6。留空不限制。" |
26 | 26 | |
27 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:999 | |
27 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1001 | |
28 | 28 | #: htdocs/luci-static/resources/view/homeproxy/server.js:450 |
29 | 29 | #: htdocs/luci-static/resources/view/homeproxy/server.js:466 |
30 | 30 | msgid "<strong>Save your configuration before uploading files!</strong>" |
@@ -38,15 +38,15 @@ msgstr "接受没有代理协议标头的连接。" | ||
38 | 38 | msgid "Accept no header" |
39 | 39 | msgstr "接受空标头" |
40 | 40 | |
41 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:808 | |
41 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:801 | |
42 | 42 | msgid "Access Control" |
43 | 43 | msgstr "访问控制" |
44 | 44 | |
45 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:656 | |
45 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:649 | |
46 | 46 | msgid "Add a DNS rule" |
47 | 47 | msgstr "新增 DNS 规则" |
48 | 48 | |
49 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:568 | |
49 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:561 | |
50 | 50 | msgid "Add a DNS server" |
51 | 51 | msgstr "新增 DNS 服务器" |
52 | 52 |
@@ -54,11 +54,11 @@ msgstr "新增 DNS 服务器" | ||
54 | 54 | msgid "Add a node" |
55 | 55 | msgstr "新增节点" |
56 | 56 | |
57 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:310 | |
57 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:303 | |
58 | 58 | msgid "Add a routing node" |
59 | 59 | msgstr "新增路由节点" |
60 | 60 | |
61 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:385 | |
61 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:378 | |
62 | 62 | msgid "Add a routing rule" |
63 | 63 | msgstr "新增路由规则" |
64 | 64 |
@@ -66,16 +66,16 @@ msgstr "新增路由规则" | ||
66 | 66 | msgid "Add a server" |
67 | 67 | msgstr "新增服务器" |
68 | 68 | |
69 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:582 | |
70 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:458 | |
69 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:575 | |
70 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:446 | |
71 | 71 | msgid "Address" |
72 | 72 | msgstr "地址" |
73 | 73 | |
74 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:586 | |
74 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:579 | |
75 | 75 | msgid "Address resolver" |
76 | 76 | msgstr "地址解析器" |
77 | 77 | |
78 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:617 | |
78 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:610 | |
79 | 79 | msgid "Address strategy" |
80 | 80 | msgstr "地址解析策略" |
81 | 81 |
@@ -87,20 +87,20 @@ msgstr "阿里云公共 DNS(223.5.5.5)" | ||
87 | 87 | msgid "All ports" |
88 | 88 | msgstr "所有端口" |
89 | 89 | |
90 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:952 | |
91 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1139 | |
90 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:954 | |
91 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1148 | |
92 | 92 | msgid "Allow insecure" |
93 | 93 | msgstr "允许不安全连接" |
94 | 94 | |
95 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:953 | |
95 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:955 | |
96 | 96 | msgid "Allow insecure connection at TLS client." |
97 | 97 | msgstr "允许 TLS 客户端侧的不安全连接" |
98 | 98 | |
99 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1140 | |
99 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1149 | |
100 | 100 | msgid "Allow insecure connection by default when add nodes from subscriptions." |
101 | 101 | msgstr "从订阅获取节点时,默认允许不安全连接。" |
102 | 102 | |
103 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:832 | |
103 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:820 | |
104 | 104 | #: htdocs/luci-static/resources/view/homeproxy/server.js:296 |
105 | 105 | msgid "Allowed payload size is in the request." |
106 | 106 | msgstr "请求中允许的载荷大小。" |
@@ -113,7 +113,7 @@ msgstr "已是最新版本" | ||
113 | 113 | msgid "Already in updating." |
114 | 114 | msgstr "已在更新中" |
115 | 115 | |
116 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:704 | |
116 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:692 | |
117 | 117 | #: htdocs/luci-static/resources/view/homeproxy/server.js:212 |
118 | 118 | msgid "Alter ID" |
119 | 119 | msgstr "额外 ID" |
@@ -126,15 +126,15 @@ msgstr "替代 HTTP 端口" | ||
126 | 126 | msgid "Alternative TLS port" |
127 | 127 | msgstr "替代 HTTPS 端口" |
128 | 128 | |
129 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1176 | |
129 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1185 | |
130 | 130 | msgid "An error occurred during updating subscriptions: %s" |
131 | 131 | msgstr "更新订阅时发生错误:%s" |
132 | 132 | |
133 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1033 | |
133 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1035 | |
134 | 134 | msgid "Android" |
135 | 135 | msgstr "Android" |
136 | 136 | |
137 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:985 | |
137 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:987 | |
138 | 138 | msgid "Append self-signed certificate" |
139 | 139 | msgstr "追加自签名证书" |
140 | 140 |
@@ -151,16 +151,16 @@ msgstr "应用" | ||
151 | 151 | msgid "Are you sure to allow insecure?" |
152 | 152 | msgstr "确定要允许不安全连接吗?" |
153 | 153 | |
154 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:728 | |
154 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:716 | |
155 | 155 | msgid "Authenticated length" |
156 | 156 | msgstr "认证长度" |
157 | 157 | |
158 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:534 | |
158 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:522 | |
159 | 159 | #: htdocs/luci-static/resources/view/homeproxy/server.js:153 |
160 | 160 | msgid "Authentication payload" |
161 | 161 | msgstr "认证载荷" |
162 | 162 | |
163 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:525 | |
163 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:513 | |
164 | 164 | #: htdocs/luci-static/resources/view/homeproxy/server.js:144 |
165 | 165 | msgid "Authentication type" |
166 | 166 | msgstr "认证类型" |
@@ -169,56 +169,56 @@ msgstr "认证类型" | ||
169 | 169 | msgid "Auto configure firewall" |
170 | 170 | msgstr "自动配置防火墙" |
171 | 171 | |
172 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1093 | |
172 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1102 | |
173 | 173 | msgid "Auto update" |
174 | 174 | msgstr "自动更新" |
175 | 175 | |
176 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1094 | |
176 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1103 | |
177 | 177 | msgid "Auto update subscriptions, GeoIP and GeoSite." |
178 | 178 | msgstr "自动更新订阅、GeoIP 和 GeoSite" |
179 | 179 | |
180 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:527 | |
180 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:515 | |
181 | 181 | #: htdocs/luci-static/resources/view/homeproxy/server.js:146 |
182 | 182 | msgid "Base64" |
183 | 183 | msgstr "Base64" |
184 | 184 | |
185 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:258 | |
185 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:252 | |
186 | 186 | msgid "Based on google/gvisor (recommended)." |
187 | 187 | msgstr "基于 google/gvisor(推荐)。" |
188 | 188 | |
189 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:337 | |
190 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:821 | |
189 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:330 | |
190 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:814 | |
191 | 191 | msgid "Bind interface" |
192 | 192 | msgstr "绑定接口" |
193 | 193 | |
194 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:822 | |
194 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:815 | |
195 | 195 | msgid "" |
196 | 196 | "Bind outbound traffic to specific interface. Leave empty to auto detect." |
197 | 197 | msgstr "绑定出站流量至指定端口。留空自动检测。" |
198 | 198 | |
199 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1129 | |
199 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1138 | |
200 | 200 | msgid "Blacklist mode" |
201 | 201 | msgstr "黑名单模式" |
202 | 202 | |
203 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:289 | |
204 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:511 | |
205 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:772 | |
203 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:282 | |
204 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:504 | |
205 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:765 | |
206 | 206 | msgid "Block" |
207 | 207 | msgstr "封锁" |
208 | 208 | |
209 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:540 | |
210 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:789 | |
209 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:533 | |
210 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:782 | |
211 | 211 | msgid "Block DNS queries" |
212 | 212 | msgstr "封锁 DNS 请求" |
213 | 213 | |
214 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:403 | |
215 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:424 | |
216 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:688 | |
214 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:396 | |
215 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:417 | |
216 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:681 | |
217 | 217 | #: htdocs/luci-static/resources/view/homeproxy/server.js:512 |
218 | 218 | msgid "Both" |
219 | 219 | msgstr "全部" |
220 | 220 | |
221 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:272 | |
221 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:265 | |
222 | 222 | msgid "Bypass CN traffic" |
223 | 223 | msgstr "绕过中国流量" |
224 | 224 |
@@ -226,7 +226,7 @@ msgstr "绕过中国流量" | ||
226 | 226 | msgid "Bypass mainland China" |
227 | 227 | msgstr "大陆白名单" |
228 | 228 | |
229 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:273 | |
229 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:266 | |
230 | 230 | msgid "Bypass mainland China traffic via firewall rules by default." |
231 | 231 | msgstr "默认使用防火墙规则绕过中国大陆流量。" |
232 | 232 |
@@ -238,7 +238,7 @@ msgstr "CA 颁发机构" | ||
238 | 238 | msgid "Cancel" |
239 | 239 | msgstr "取消" |
240 | 240 | |
241 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:991 | |
241 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:993 | |
242 | 242 | #: htdocs/luci-static/resources/view/homeproxy/server.js:441 |
243 | 243 | msgid "Certificate path" |
244 | 244 | msgstr "证书路径" |
@@ -259,11 +259,11 @@ msgstr "中国 IPv6 库版本" | ||
259 | 259 | msgid "China list version" |
260 | 260 | msgstr "中国域名列表版本" |
261 | 261 | |
262 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1034 | |
262 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1036 | |
263 | 263 | msgid "Chrome" |
264 | 264 | msgstr "Chrome" |
265 | 265 | |
266 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:977 | |
266 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:979 | |
267 | 267 | #: htdocs/luci-static/resources/view/homeproxy/server.js:351 |
268 | 268 | msgid "Cipher suites" |
269 | 269 | msgstr "密码套件" |
@@ -297,60 +297,60 @@ msgstr "仅常用端口(绕过 P2P 流量)" | ||
297 | 297 | msgid "Custom routing" |
298 | 298 | msgstr "自定义路由" |
299 | 299 | |
300 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:695 | |
300 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:688 | |
301 | 301 | msgid "DNS" |
302 | 302 | msgstr "DNS" |
303 | 303 | |
304 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:648 | |
304 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:641 | |
305 | 305 | msgid "DNS Rules" |
306 | 306 | msgstr "DNS 规则" |
307 | 307 | |
308 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:560 | |
308 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:553 | |
309 | 309 | msgid "DNS Servers" |
310 | 310 | msgstr "DNS 服务器" |
311 | 311 | |
312 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:524 | |
312 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:517 | |
313 | 313 | msgid "DNS Settings" |
314 | 314 | msgstr "DNS 设置" |
315 | 315 | |
316 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:656 | |
316 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:649 | |
317 | 317 | msgid "DNS rule" |
318 | 318 | msgstr "DNS 规则" |
319 | 319 | |
320 | 320 | #: htdocs/luci-static/resources/view/homeproxy/client.js:155 |
321 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:568 | |
321 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:561 | |
322 | 322 | msgid "DNS server" |
323 | 323 | msgstr "DNS 服务器" |
324 | 324 | |
325 | 325 | #: htdocs/luci-static/resources/homeproxy.js:17 |
326 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:411 | |
327 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:675 | |
326 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:404 | |
327 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:668 | |
328 | 328 | msgid "Default" |
329 | 329 | msgstr "默认" |
330 | 330 | |
331 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:539 | |
332 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:593 | |
333 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:788 | |
331 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:532 | |
332 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:586 | |
333 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:781 | |
334 | 334 | msgid "Default DNS (issued by WAN)" |
335 | 335 | msgstr "默认 DNS(由 WAN 下发)" |
336 | 336 | |
337 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:534 | |
337 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:527 | |
338 | 338 | msgid "Default DNS server" |
339 | 339 | msgstr "默认 DNS 服务器" |
340 | 340 | |
341 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:529 | |
341 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:522 | |
342 | 342 | msgid "Default DNS strategy" |
343 | 343 | msgstr "默认 DNS 解析策略" |
344 | 344 | |
345 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:624 | |
345 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:617 | |
346 | 346 | msgid "Default domain strategy for resolving the domain names." |
347 | 347 | msgstr "默认域名解析策略。" |
348 | 348 | |
349 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:282 | |
349 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:275 | |
350 | 350 | msgid "Default outbound" |
351 | 351 | msgstr "默认出站" |
352 | 352 | |
353 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1147 | |
353 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1156 | |
354 | 354 | msgid "Default packet encoding" |
355 | 355 | msgstr "默认包封装格式" |
356 | 356 |
@@ -358,42 +358,42 @@ msgstr "默认包封装格式" | ||
358 | 358 | msgid "Default server name" |
359 | 359 | msgstr "默认服务器名称" |
360 | 360 | |
361 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:288 | |
362 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:350 | |
363 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:510 | |
364 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:634 | |
365 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:771 | |
361 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:281 | |
362 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:343 | |
363 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:503 | |
364 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:627 | |
365 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:764 | |
366 | 366 | #: htdocs/luci-static/resources/view/homeproxy/node.js:430 |
367 | 367 | msgid "Direct" |
368 | 368 | msgstr "直连" |
369 | 369 | |
370 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:957 | |
370 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:950 | |
371 | 371 | msgid "Direct Domain List" |
372 | 372 | msgstr "直连域名列表" |
373 | 373 | |
374 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:851 | |
375 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:919 | |
374 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:844 | |
375 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:912 | |
376 | 376 | msgid "Direct IPv4 IP-s" |
377 | 377 | msgstr "直连 IPv4 地址" |
378 | 378 | |
379 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:858 | |
380 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:922 | |
379 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:851 | |
380 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:915 | |
381 | 381 | msgid "Direct IPv6 IP-s" |
382 | 382 | msgstr "直连 IPv6 地址" |
383 | 383 | |
384 | 384 | #: htdocs/luci-static/resources/view/homeproxy/client.js:139 |
385 | 385 | #: htdocs/luci-static/resources/view/homeproxy/client.js:147 |
386 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:287 | |
387 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:845 | |
388 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:507 | |
389 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:526 | |
390 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1031 | |
391 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1128 | |
386 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:280 | |
387 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:838 | |
388 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:495 | |
389 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:514 | |
390 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1033 | |
391 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1137 | |
392 | 392 | #: htdocs/luci-static/resources/view/homeproxy/server.js:145 |
393 | 393 | msgid "Disable" |
394 | 394 | msgstr "禁用" |
395 | 395 | |
396 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:551 | |
396 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:544 | |
397 | 397 | msgid "Disable DNS cache" |
398 | 398 | msgstr "禁用 DNS 缓存" |
399 | 399 |
@@ -401,7 +401,7 @@ msgstr "禁用 DNS 缓存" | ||
401 | 401 | msgid "Disable HTTP challenge" |
402 | 402 | msgstr "禁用 HTTP 验证" |
403 | 403 | |
404 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:568 | |
404 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:556 | |
405 | 405 | #: htdocs/luci-static/resources/view/homeproxy/server.js:184 |
406 | 406 | msgid "Disable Path MTU discovery" |
407 | 407 | msgstr "禁用路径 MTU 探测" |
@@ -410,23 +410,23 @@ msgstr "禁用路径 MTU 探测" | ||
410 | 410 | msgid "Disable TLS ALPN challenge" |
411 | 411 | msgstr "禁用 TLS ALPN 认证" |
412 | 412 | |
413 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:801 | |
413 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:794 | |
414 | 414 | msgid "Disable cache and save cache in this query." |
415 | 415 | msgstr "在本次查询中禁用缓存。" |
416 | 416 | |
417 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:554 | |
417 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:547 | |
418 | 418 | msgid "Disable cache expire" |
419 | 419 | msgstr "缓存永不过期" |
420 | 420 | |
421 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:800 | |
421 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:793 | |
422 | 422 | msgid "Disable dns cache" |
423 | 423 | msgstr "禁用 DNS 缓存" |
424 | 424 | |
425 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1013 | |
425 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1015 | |
426 | 426 | msgid "Disable dynamic record sizing" |
427 | 427 | msgstr "禁用动态记录大小" |
428 | 428 | |
429 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:569 | |
429 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:557 | |
430 | 430 | #: htdocs/luci-static/resources/view/homeproxy/server.js:185 |
431 | 431 | msgid "" |
432 | 432 | "Disables Path MTU Discovery (RFC 8899). Packets will then be at most 1252 " |
@@ -435,28 +435,28 @@ msgstr "" | ||
435 | 435 | "禁用路径 MTU 发现 (RFC 8899)。 数据包的大小最多为 1252 (IPv4) / 1232 (IPv6) " |
436 | 436 | "字节。" |
437 | 437 | |
438 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:442 | |
439 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:707 | |
438 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:435 | |
439 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:700 | |
440 | 440 | msgid "Domain keyword" |
441 | 441 | msgstr "域名关键词" |
442 | 442 | |
443 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:433 | |
444 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:698 | |
443 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:426 | |
444 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:691 | |
445 | 445 | msgid "Domain name" |
446 | 446 | msgstr "域名" |
447 | 447 | |
448 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:446 | |
449 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:711 | |
448 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:439 | |
449 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:704 | |
450 | 450 | msgid "Domain regex" |
451 | 451 | msgstr "域名正则表达式" |
452 | 452 | |
453 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:331 | |
453 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:324 | |
454 | 454 | #: htdocs/luci-static/resources/view/homeproxy/server.js:491 |
455 | 455 | msgid "Domain strategy" |
456 | 456 | msgstr "域名解析策略" |
457 | 457 | |
458 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:438 | |
459 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:703 | |
458 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:431 | |
459 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:696 | |
460 | 460 | msgid "Domain suffix" |
461 | 461 | msgstr "域名后缀" |
462 | 462 |
@@ -464,7 +464,7 @@ msgstr "域名后缀" | ||
464 | 464 | msgid "Domains" |
465 | 465 | msgstr "域名" |
466 | 466 | |
467 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1135 | |
467 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1144 | |
468 | 468 | msgid "" |
469 | 469 | "Drop/keep nodes that contain the specific keywords. <a target=\"_blank\" " |
470 | 470 | "href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/" |
@@ -474,7 +474,7 @@ msgstr "" | ||
474 | 474 | "developer.mozilla.org/zh-CN/docs/Web/JavaScript/Guide/Regular_Expressions\">" |
475 | 475 | "正则表达式</a>。" |
476 | 476 | |
477 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1127 | |
477 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1136 | |
478 | 478 | msgid "Drop/keep specific nodes from subscriptions." |
479 | 479 | msgstr "从订阅中 丢弃/保留 指定节点" |
480 | 480 |
@@ -489,7 +489,7 @@ msgstr "" | ||
489 | 489 | "<br/>外部帐户绑定“用于将 ACME 帐户与非 ACME 系统中的现有帐户相关联,例如 CA " |
490 | 490 | "客户数据库。" |
491 | 491 | |
492 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1008 | |
492 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1010 | |
493 | 493 | msgid "" |
494 | 494 | "ECH (Encrypted Client Hello) is a TLS extension that allows a client to " |
495 | 495 | "encrypt the first part of its ClientHello message." |
@@ -497,16 +497,16 @@ msgstr "" | ||
497 | 497 | "ECH(Encrypted Client Hello)是一个 TLS 扩展,它允许客户端加密其 ClientHello " |
498 | 498 | "信息的第一部分。" |
499 | 499 | |
500 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1023 | |
500 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1025 | |
501 | 501 | msgid "ECH config" |
502 | 502 | msgstr "ECH 配置" |
503 | 503 | |
504 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:831 | |
504 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:819 | |
505 | 505 | #: htdocs/luci-static/resources/view/homeproxy/server.js:295 |
506 | 506 | msgid "Early data" |
507 | 507 | msgstr "前置数据" |
508 | 508 | |
509 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:838 | |
509 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:826 | |
510 | 510 | #: htdocs/luci-static/resources/view/homeproxy/server.js:302 |
511 | 511 | msgid "Early data header name" |
512 | 512 | msgstr "前置数据标头" |
@@ -515,7 +515,7 @@ msgstr "前置数据标头" | ||
515 | 515 | msgid "Early data is sent in path instead of header by default." |
516 | 516 | msgstr "前置数据默认发送在路径而不是标头中。" |
517 | 517 | |
518 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1035 | |
518 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1037 | |
519 | 519 | msgid "Edge" |
520 | 520 | msgstr "Edge" |
521 | 521 |
@@ -531,10 +531,10 @@ msgstr "修改服务器" | ||
531 | 531 | msgid "Email" |
532 | 532 | msgstr "Email" |
533 | 533 | |
534 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:319 | |
535 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:394 | |
536 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:577 | |
537 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:665 | |
534 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:312 | |
535 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:387 | |
536 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:570 | |
537 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:658 | |
538 | 538 | #: htdocs/luci-static/resources/view/homeproxy/server.js:30 |
539 | 539 | #: htdocs/luci-static/resources/view/homeproxy/server.js:51 |
540 | 540 | msgid "Enable" |
@@ -544,20 +544,20 @@ msgstr "启用" | ||
544 | 544 | msgid "Enable ACME" |
545 | 545 | msgstr "启用 ACME" |
546 | 546 | |
547 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1007 | |
547 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1009 | |
548 | 548 | msgid "Enable ECH" |
549 | 549 | msgstr "启用 ECH" |
550 | 550 | |
551 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1018 | |
551 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1020 | |
552 | 552 | msgid "Enable PQ signature schemes" |
553 | 553 | msgstr "启用 PQ 签名方案。" |
554 | 554 | |
555 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1077 | |
555 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1079 | |
556 | 556 | #: htdocs/luci-static/resources/view/homeproxy/server.js:482 |
557 | 557 | msgid "Enable UDP fragmentation." |
558 | 558 | msgstr "启用 UDP 分片" |
559 | 559 | |
560 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:265 | |
560 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:259 | |
561 | 561 | msgid "Enable endpoint-independent NAT" |
562 | 562 | msgstr "启用端点独立 NAT" |
563 | 563 |
@@ -565,14 +565,14 @@ msgstr "启用端点独立 NAT" | ||
565 | 565 | msgid "Enable tcp fast open for listener." |
566 | 566 | msgstr "为监听器启用 TCP 快速打开。" |
567 | 567 | |
568 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1082 | |
568 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1084 | |
569 | 569 | msgid "" |
570 | 570 | "Enable the SUoT protocol, requires server support. Conflict with multiplex." |
571 | 571 | msgstr "启用 SUoT 协议,需要服务端支持。与多路复用冲突。" |
572 | 572 | |
573 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:576 | |
574 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:608 | |
575 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:710 | |
573 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:564 | |
574 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:596 | |
575 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:698 | |
576 | 576 | #: htdocs/luci-static/resources/view/homeproxy/server.js:192 |
577 | 577 | msgid "Encrypt method" |
578 | 578 | msgstr "加密方式" |
@@ -589,13 +589,13 @@ msgstr "加密方式" | ||
589 | 589 | #: htdocs/luci-static/resources/view/homeproxy/client.js:175 |
590 | 590 | #: htdocs/luci-static/resources/view/homeproxy/client.js:203 |
591 | 591 | #: htdocs/luci-static/resources/view/homeproxy/client.js:208 |
592 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:950 | |
593 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:979 | |
592 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:943 | |
593 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:972 | |
594 | 594 | #: htdocs/luci-static/resources/view/homeproxy/node.js:385 |
595 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:496 | |
596 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1047 | |
597 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1116 | |
598 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1119 | |
595 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:484 | |
596 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1049 | |
597 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1125 | |
598 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1128 | |
599 | 599 | #: htdocs/luci-static/resources/view/homeproxy/server.js:113 |
600 | 600 | #: htdocs/luci-static/resources/view/homeproxy/server.js:384 |
601 | 601 | #: htdocs/luci-static/resources/view/homeproxy/server.js:386 |
@@ -618,24 +618,24 @@ msgstr "外部账户密钥标识符" | ||
618 | 618 | msgid "Failed to upload %s, error: %s." |
619 | 619 | msgstr "上传 %s 失败,错误:%s。" |
620 | 620 | |
621 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1134 | |
621 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1143 | |
622 | 622 | msgid "Filter keywords" |
623 | 623 | msgstr "过滤关键词" |
624 | 624 | |
625 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1126 | |
625 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1135 | |
626 | 626 | msgid "Filter nodes" |
627 | 627 | msgstr "过滤节点" |
628 | 628 | |
629 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1036 | |
629 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1038 | |
630 | 630 | msgid "Firefox" |
631 | 631 | msgstr "Firefox" |
632 | 632 | |
633 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:698 | |
633 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:686 | |
634 | 634 | #: htdocs/luci-static/resources/view/homeproxy/server.js:206 |
635 | 635 | msgid "Flow" |
636 | 636 | msgstr "流控" |
637 | 637 | |
638 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:800 | |
638 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:788 | |
639 | 639 | msgid "GET" |
640 | 640 | msgstr "GET" |
641 | 641 |
@@ -647,15 +647,15 @@ msgstr "GFW 域名列表版本" | ||
647 | 647 | msgid "GFWList" |
648 | 648 | msgstr "GFWList" |
649 | 649 | |
650 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:881 | |
650 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:874 | |
651 | 651 | msgid "Gaming mode IPv4 IP-s" |
652 | 652 | msgstr "游戏模式 IPv4 地址" |
653 | 653 | |
654 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:887 | |
654 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:880 | |
655 | 655 | msgid "Gaming mode IPv6 IP-s" |
656 | 656 | msgstr "游戏模式 IPv6 IP-s" |
657 | 657 | |
658 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:458 | |
658 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:451 | |
659 | 659 | msgid "GeoIP" |
660 | 660 | msgstr "GeoIP" |
661 | 661 |
@@ -667,8 +667,8 @@ msgstr "GeoIP 版本" | ||
667 | 667 | msgid "GeoSite version" |
668 | 668 | msgstr "GeoSite 版本" |
669 | 669 | |
670 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:450 | |
671 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:715 | |
670 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:443 | |
671 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:708 | |
672 | 672 | msgid "Geosite" |
673 | 673 | msgstr "Geosite" |
674 | 674 |
@@ -676,11 +676,11 @@ msgstr "Geosite" | ||
676 | 676 | msgid "Global" |
677 | 677 | msgstr "全局" |
678 | 678 | |
679 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:894 | |
679 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:887 | |
680 | 680 | msgid "Global proxy IPv4 IP-s" |
681 | 681 | msgstr "全局代理 IPv4 IP-s" |
682 | 682 | |
683 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:901 | |
683 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:894 | |
684 | 684 | msgid "Global proxy IPv6 IP-s" |
685 | 685 | msgstr "全局代理 IPv6 IP-s" |
686 | 686 |
@@ -696,10 +696,10 @@ msgstr "谷歌公共 DNS(8.8.8.8)" | ||
696 | 696 | msgid "Grant access to homeproxy configuration" |
697 | 697 | msgstr "授予 homeproxy 访问 UCI 配置的权限" |
698 | 698 | |
699 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:428 | |
700 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:692 | |
699 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:421 | |
700 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:685 | |
701 | 701 | #: htdocs/luci-static/resources/view/homeproxy/node.js:431 |
702 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:741 | |
702 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:729 | |
703 | 703 | #: htdocs/luci-static/resources/view/homeproxy/server.js:57 |
704 | 704 | #: htdocs/luci-static/resources/view/homeproxy/server.js:224 |
705 | 705 | msgid "HTTP" |
@@ -712,8 +712,8 @@ msgstr "HTTP" | ||
712 | 712 | msgid "HomeProxy" |
713 | 713 | msgstr "HomeProxy" |
714 | 714 | |
715 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:790 | |
716 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:823 | |
715 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:778 | |
716 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:811 | |
717 | 717 | #: htdocs/luci-static/resources/view/homeproxy/server.js:257 |
718 | 718 | #: htdocs/luci-static/resources/view/homeproxy/server.js:287 |
719 | 719 | msgid "Host" |
@@ -724,16 +724,16 @@ msgstr "主机名" | ||
724 | 724 | msgid "Hysteria" |
725 | 725 | msgstr "Hysteria" |
726 | 726 | |
727 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:467 | |
728 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:728 | |
727 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:460 | |
728 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:721 | |
729 | 729 | msgid "IP CIDR" |
730 | 730 | msgstr "IP CIDR" |
731 | 731 | |
732 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:399 | |
732 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:392 | |
733 | 733 | msgid "IP version" |
734 | 734 | msgstr "IP 版本" |
735 | 735 | |
736 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:401 | |
736 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:394 | |
737 | 737 | msgid "IPv4" |
738 | 738 | msgstr "IPv4" |
739 | 739 |
@@ -741,7 +741,7 @@ msgstr "IPv4" | ||
741 | 741 | msgid "IPv4 only" |
742 | 742 | msgstr "仅 IPv4" |
743 | 743 | |
744 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:402 | |
744 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:395 | |
745 | 745 | msgid "IPv6" |
746 | 746 | msgstr "IPv6" |
747 | 747 |
@@ -749,16 +749,16 @@ msgstr "IPv6" | ||
749 | 749 | msgid "IPv6 only" |
750 | 750 | msgstr "仅 IPv6" |
751 | 751 | |
752 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:229 | |
752 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:228 | |
753 | 753 | msgid "IPv6 support" |
754 | 754 | msgstr "IPv6 支持" |
755 | 755 | |
756 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:805 | |
756 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:793 | |
757 | 757 | #: htdocs/luci-static/resources/view/homeproxy/server.js:270 |
758 | 758 | msgid "Idle timeout" |
759 | 759 | msgstr "空闲超时" |
760 | 760 | |
761 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:782 | |
761 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:770 | |
762 | 762 | msgid "" |
763 | 763 | "If enabled, the client transport sends keepalive pings even with no active " |
764 | 764 | "connections." |
@@ -769,14 +769,14 @@ msgid "" | ||
769 | 769 | "If set, the requested domain name will be resolved to IP before routing." |
770 | 770 | msgstr "如果设置,请求的域名将在路由前被解析为 IP 地址。" |
771 | 771 | |
772 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:332 | |
772 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:325 | |
773 | 773 | msgid "" |
774 | 774 | "If set, the server domain name will be resolved to IP before connecting.<br/" |
775 | 775 | ">dns.strategy will be used if empty." |
776 | 776 | msgstr "" |
777 | 777 | "如果设置,服务器域名将在连接前被解析为 IP。<br/>默认使用 dns.strategy。" |
778 | 778 | |
779 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:767 | |
779 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:755 | |
780 | 780 | #: htdocs/luci-static/resources/view/homeproxy/server.js:242 |
781 | 781 | msgid "" |
782 | 782 | "If the transport doesn't see any activity after a duration of this time, it " |
@@ -785,7 +785,7 @@ msgstr "" | ||
785 | 785 | "如果传输在此时间段后没有看到任何活动,它会向客户端发送 ping 请求以检查连接是" |
786 | 786 | "否仍然活动。" |
787 | 787 | |
788 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:986 | |
788 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:988 | |
789 | 789 | msgid "" |
790 | 790 | "If you have the root certificate, use this option instead of allowing " |
791 | 791 | "insecure." |
@@ -801,17 +801,17 @@ msgstr "导入" | ||
801 | 801 | msgid "Import share links" |
802 | 802 | msgstr "导入分享链接" |
803 | 803 | |
804 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:814 | |
804 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:807 | |
805 | 805 | msgid "Interface Control" |
806 | 806 | msgstr "接口控制" |
807 | 807 | |
808 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:416 | |
809 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:680 | |
808 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:409 | |
809 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:673 | |
810 | 810 | msgid "Invert" |
811 | 811 | msgstr "反转" |
812 | 812 | |
813 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:417 | |
814 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:681 | |
813 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:410 | |
814 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:674 | |
815 | 815 | msgid "Invert match result." |
816 | 816 | msgstr "反转匹配结果" |
817 | 817 |
@@ -819,24 +819,24 @@ msgstr "反转匹配结果" | ||
819 | 819 | msgid "Key path" |
820 | 820 | msgstr "证书路径" |
821 | 821 | |
822 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:828 | |
822 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:821 | |
823 | 823 | msgid "LAN IP Policy" |
824 | 824 | msgstr "LAN IP 策略" |
825 | 825 | |
826 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:244 | |
826 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:243 | |
827 | 827 | msgid "LWIP" |
828 | 828 | msgstr "LWIP" |
829 | 829 | |
830 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:314 | |
831 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:389 | |
832 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:572 | |
833 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:660 | |
830 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:307 | |
831 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:382 | |
832 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:565 | |
833 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:653 | |
834 | 834 | #: htdocs/luci-static/resources/view/homeproxy/node.js:424 |
835 | 835 | #: htdocs/luci-static/resources/view/homeproxy/server.js:45 |
836 | 836 | msgid "Label" |
837 | 837 | msgstr "标签" |
838 | 838 | |
839 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:705 | |
839 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:693 | |
840 | 840 | #: htdocs/luci-static/resources/view/homeproxy/server.js:213 |
841 | 841 | msgid "" |
842 | 842 | "Legacy protocol support (VMess MD5 Authentication) is provided for " |
@@ -845,7 +845,7 @@ msgstr "" | ||
845 | 845 | "提供旧协议支持(VMess MD5 身份验证)仅出于兼容性目的,不建议使用 alterId > " |
846 | 846 | "1。" |
847 | 847 | |
848 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:262 | |
848 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:256 | |
849 | 849 | msgid "Less compatibility and sometimes better performance." |
850 | 850 | msgstr "有时性能更好。" |
851 | 851 |
@@ -853,17 +853,17 @@ msgstr "有时性能更好。" | ||
853 | 853 | msgid "Let's Encrypt" |
854 | 854 | msgstr "Let's Encrypt" |
855 | 855 | |
856 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:855 | |
856 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:843 | |
857 | 857 | msgid "" |
858 | 858 | "List of IP (v4 or v6) addresses prefixes to be assigned to the interface." |
859 | 859 | msgstr "分配给接口的 IP(v4 或 v6)地址前缀列表。" |
860 | 860 | |
861 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:948 | |
861 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:950 | |
862 | 862 | #: htdocs/luci-static/resources/view/homeproxy/server.js:331 |
863 | 863 | msgid "List of supported application level protocols, in order of preference." |
864 | 864 | msgstr "支持的应用层协议协商列表,按顺序排列。" |
865 | 865 | |
866 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:816 | |
866 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:809 | |
867 | 867 | msgid "Listen interfaces" |
868 | 868 | msgstr "监听接口" |
869 | 869 |
@@ -871,7 +871,7 @@ msgstr "监听接口" | ||
871 | 871 | msgid "Loading" |
872 | 872 | msgstr "加载中" |
873 | 873 | |
874 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:854 | |
874 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:842 | |
875 | 875 | msgid "Local address" |
876 | 876 | msgstr "本地地址" |
877 | 877 |
@@ -883,7 +883,7 @@ msgstr "日志文件不存在。" | ||
883 | 883 | msgid "Log is empty." |
884 | 884 | msgstr "日志为空。" |
885 | 885 | |
886 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:881 | |
886 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:869 | |
887 | 887 | msgid "MTU" |
888 | 888 | msgstr "MTU" |
889 | 889 |
@@ -895,119 +895,119 @@ msgstr "主 UDP 节点" | ||
895 | 895 | msgid "Main node" |
896 | 896 | msgstr "主节点" |
897 | 897 | |
898 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:459 | |
898 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:452 | |
899 | 899 | msgid "Match GeoIP." |
900 | 900 | msgstr "匹配 GeoIP。" |
901 | 901 | |
902 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:468 | |
903 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:729 | |
902 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:461 | |
903 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:722 | |
904 | 904 | msgid "Match IP CIDR." |
905 | 905 | msgstr "匹配 IP CIDR。" |
906 | 906 | |
907 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:439 | |
908 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:704 | |
907 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:432 | |
908 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:697 | |
909 | 909 | msgid "Match domain suffix." |
910 | 910 | msgstr "匹配域名后缀。" |
911 | 911 | |
912 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:443 | |
913 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:708 | |
912 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:436 | |
913 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:701 | |
914 | 914 | msgid "Match domain using keyword." |
915 | 915 | msgstr "使用关键词匹配域名。" |
916 | 916 | |
917 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:447 | |
918 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:712 | |
917 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:440 | |
918 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:705 | |
919 | 919 | msgid "Match domain using regular expression." |
920 | 920 | msgstr "使用正则表达式匹配域名。" |
921 | 921 | |
922 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:434 | |
923 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:699 | |
922 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:427 | |
923 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:692 | |
924 | 924 | msgid "Match full domain." |
925 | 925 | msgstr "匹配完整域名。" |
926 | 926 | |
927 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:451 | |
928 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:716 | |
927 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:444 | |
928 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:709 | |
929 | 929 | msgid "Match geosite." |
930 | 930 | msgstr "匹配 geosite。" |
931 | 931 | |
932 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:766 | |
932 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:759 | |
933 | 933 | msgid "Match outbound." |
934 | 934 | msgstr "匹配出站。" |
935 | 935 | |
936 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:488 | |
937 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:749 | |
936 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:481 | |
937 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:742 | |
938 | 938 | msgid "Match port range. Format as START:/:END/START:END." |
939 | 939 | msgstr "匹配端口范围。格式为 START:/:END/START:END。" |
940 | 940 | |
941 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:483 | |
942 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:744 | |
941 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:476 | |
942 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:737 | |
943 | 943 | msgid "Match port." |
944 | 944 | msgstr "匹配端口。" |
945 | 945 | |
946 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:493 | |
947 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:754 | |
946 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:486 | |
947 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:747 | |
948 | 948 | msgid "Match process name." |
949 | 949 | msgstr "匹配进程名。" |
950 | 950 | |
951 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:497 | |
952 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:758 | |
951 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:490 | |
952 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:751 | |
953 | 953 | msgid "Match process path." |
954 | 954 | msgstr "匹配进程路径" |
955 | 955 | |
956 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:455 | |
957 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:720 | |
956 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:448 | |
957 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:713 | |
958 | 958 | msgid "Match source GeoIP." |
959 | 959 | msgstr "匹配源 GeoIP。" |
960 | 960 | |
961 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:463 | |
962 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:724 | |
961 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:456 | |
962 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:717 | |
963 | 963 | msgid "Match source IP CIDR." |
964 | 964 | msgstr "匹配源 IP CIDR。" |
965 | 965 | |
966 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:478 | |
967 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:739 | |
966 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:471 | |
967 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:732 | |
968 | 968 | msgid "Match source port range. Format as START:/:END/START:END." |
969 | 969 | msgstr "匹配源端口范围。格式为 START:/:END/START:END。" |
970 | 970 | |
971 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:473 | |
972 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:734 | |
971 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:466 | |
972 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:727 | |
973 | 973 | msgid "Match source port." |
974 | 974 | msgstr "匹配源端口。" |
975 | 975 | |
976 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:501 | |
977 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:762 | |
976 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:494 | |
977 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:755 | |
978 | 978 | msgid "Match user name." |
979 | 979 | msgstr "匹配用户名。" |
980 | 980 | |
981 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:544 | |
981 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:532 | |
982 | 982 | #: htdocs/luci-static/resources/view/homeproxy/server.js:132 |
983 | 983 | msgid "Max download speed" |
984 | 984 | msgstr "最大下载速度" |
985 | 985 | |
986 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:545 | |
986 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:533 | |
987 | 987 | #: htdocs/luci-static/resources/view/homeproxy/server.js:133 |
988 | 988 | msgid "Max download speed in Mbps." |
989 | 989 | msgstr "最大下载速度(Mbps)" |
990 | 990 | |
991 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:550 | |
991 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:538 | |
992 | 992 | #: htdocs/luci-static/resources/view/homeproxy/server.js:138 |
993 | 993 | msgid "Max upload speed" |
994 | 994 | msgstr "最大上传速度" |
995 | 995 | |
996 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:551 | |
996 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:539 | |
997 | 997 | #: htdocs/luci-static/resources/view/homeproxy/server.js:139 |
998 | 998 | msgid "Max upload speed in Mbps." |
999 | 999 | msgstr "最大上传速度(Mbps)" |
1000 | 1000 | |
1001 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:969 | |
1001 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:971 | |
1002 | 1002 | #: htdocs/luci-static/resources/view/homeproxy/server.js:343 |
1003 | 1003 | msgid "Maximum TLS version" |
1004 | 1004 | msgstr "最大 TLS 版本" |
1005 | 1005 | |
1006 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:908 | |
1006 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:896 | |
1007 | 1007 | msgid "Maximum connections" |
1008 | 1008 | msgstr "最大连接数" |
1009 | 1009 | |
1010 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:924 | |
1010 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:912 | |
1011 | 1011 | msgid "" |
1012 | 1012 | "Maximum multiplexed streams in a connection before opening a new connection." |
1013 | 1013 | "<br/>Conflict with <code>Maximum connections</code> and <code>Minimum " |
@@ -1016,39 +1016,39 @@ msgstr "" | ||
1016 | 1016 | "在打开新连接之前,连接中的最大多路复用流数量。与 <code>Maximum connections</" |
1017 | 1017 | "code> 和 <code>Minimum streams</code> 冲突。" |
1018 | 1018 | |
1019 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:923 | |
1019 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:911 | |
1020 | 1020 | msgid "Maximum streams" |
1021 | 1021 | msgstr "最大流数量" |
1022 | 1022 | |
1023 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:799 | |
1023 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:787 | |
1024 | 1024 | #: htdocs/luci-static/resources/view/homeproxy/server.js:266 |
1025 | 1025 | msgid "Method" |
1026 | 1026 | msgstr "方式" |
1027 | 1027 | |
1028 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:961 | |
1028 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:963 | |
1029 | 1029 | #: htdocs/luci-static/resources/view/homeproxy/server.js:335 |
1030 | 1030 | msgid "Minimum TLS version" |
1031 | 1031 | msgstr "最低 TLS 版本" |
1032 | 1032 | |
1033 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:916 | |
1033 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:904 | |
1034 | 1034 | msgid "" |
1035 | 1035 | "Minimum multiplexed streams in a connection before opening a new connection." |
1036 | 1036 | msgstr "在打开新连接之前,连接中的最小多路复用流数量。" |
1037 | 1037 | |
1038 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:915 | |
1038 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:903 | |
1039 | 1039 | msgid "Minimum streams" |
1040 | 1040 | msgstr "最小流数量" |
1041 | 1041 | |
1042 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:406 | |
1043 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:670 | |
1042 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:399 | |
1043 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:663 | |
1044 | 1044 | msgid "Mode" |
1045 | 1045 | msgstr "模式" |
1046 | 1046 | |
1047 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:890 | |
1047 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:878 | |
1048 | 1048 | msgid "Multiplex" |
1049 | 1049 | msgstr "多路复用" |
1050 | 1050 | |
1051 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:898 | |
1051 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:886 | |
1052 | 1052 | msgid "Multiplex protocol." |
1053 | 1053 | msgstr "多路复用协议" |
1054 | 1054 |
@@ -1056,7 +1056,7 @@ msgstr "多路复用协议" | ||
1056 | 1056 | msgid "NOT RUNNING" |
1057 | 1057 | msgstr "未运行" |
1058 | 1058 | |
1059 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1153 | |
1059 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1162 | |
1060 | 1060 | msgid "NOTE: Save current settings before updating subscriptions." |
1061 | 1061 | msgstr "注意:更新订阅前先保存当前配置。" |
1062 | 1062 |
@@ -1064,29 +1064,29 @@ msgstr "注意:更新订阅前先保存当前配置。" | ||
1064 | 1064 | msgid "NaïveProxy" |
1065 | 1065 | msgstr "NaïveProxy" |
1066 | 1066 | |
1067 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:421 | |
1068 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:685 | |
1067 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:414 | |
1068 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:678 | |
1069 | 1069 | #: htdocs/luci-static/resources/view/homeproxy/server.js:509 |
1070 | 1070 | msgid "Network" |
1071 | 1071 | msgstr "网络" |
1072 | 1072 | |
1073 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:738 | |
1074 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:754 | |
1073 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:726 | |
1074 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:742 | |
1075 | 1075 | #: htdocs/luci-static/resources/view/homeproxy/server.js:221 |
1076 | 1076 | #: htdocs/luci-static/resources/view/homeproxy/server.js:234 |
1077 | 1077 | msgid "No TCP transport, plain HTTP is merged into the HTTP transport." |
1078 | 1078 | msgstr "无 TCP 传输层, 纯 HTTP 已合并到 HTTP 传输层。" |
1079 | 1079 | |
1080 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:752 | |
1080 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:740 | |
1081 | 1081 | #: htdocs/luci-static/resources/view/homeproxy/server.js:232 |
1082 | 1082 | msgid "No additional encryption support: It's basically duplicate encryption." |
1083 | 1083 | msgstr "无额外加密支持:它基本上是重复加密。" |
1084 | 1084 | |
1085 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1169 | |
1085 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1178 | |
1086 | 1086 | msgid "No subscription available" |
1087 | 1087 | msgstr "无可用订阅" |
1088 | 1088 | |
1089 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1194 | |
1089 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1203 | |
1090 | 1090 | msgid "No subscription node" |
1091 | 1091 | msgstr "无订阅节点" |
1092 | 1092 |
@@ -1094,7 +1094,7 @@ msgstr "无订阅节点" | ||
1094 | 1094 | msgid "No valid share link found." |
1095 | 1095 | msgstr "找不到有效分享链接。" |
1096 | 1096 | |
1097 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:324 | |
1097 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:317 | |
1098 | 1098 | #: htdocs/luci-static/resources/view/homeproxy/node.js:310 |
1099 | 1099 | msgid "Node" |
1100 | 1100 | msgstr "节点" |
@@ -1107,28 +1107,28 @@ msgstr "节点设置" | ||
1107 | 1107 | msgid "Nodes" |
1108 | 1108 | msgstr "节点" |
1109 | 1109 | |
1110 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:592 | |
1111 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:699 | |
1112 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:739 | |
1110 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:585 | |
1111 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:687 | |
1112 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:727 | |
1113 | 1113 | #: htdocs/luci-static/resources/view/homeproxy/server.js:207 |
1114 | 1114 | #: htdocs/luci-static/resources/view/homeproxy/server.js:222 |
1115 | 1115 | msgid "None" |
1116 | 1116 | msgstr "无" |
1117 | 1117 | |
1118 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:656 | |
1118 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:644 | |
1119 | 1119 | msgid "Obfs" |
1120 | 1120 | msgstr "混淆协议" |
1121 | 1121 | |
1122 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:666 | |
1122 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:654 | |
1123 | 1123 | msgid "Obfs param" |
1124 | 1124 | msgstr "混淆参数" |
1125 | 1125 | |
1126 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:540 | |
1126 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:528 | |
1127 | 1127 | #: htdocs/luci-static/resources/view/homeproxy/server.js:159 |
1128 | 1128 | msgid "Obfuscate password" |
1129 | 1129 | msgstr "混淆密码" |
1130 | 1130 | |
1131 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:817 | |
1131 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:810 | |
1132 | 1132 | msgid "Only process traffic from specific interfaces. Leave empty for all." |
1133 | 1133 | msgstr "只处理来自指定接口的流量。留空表示全部。" |
1134 | 1134 |
@@ -1136,32 +1136,32 @@ msgstr "只处理来自指定接口的流量。留空表示全部。" | ||
1136 | 1136 | msgid "Only proxy mainland China" |
1137 | 1137 | msgstr "仅代理中国大陆" |
1138 | 1138 | |
1139 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:344 | |
1140 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:504 | |
1141 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:628 | |
1142 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:765 | |
1139 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:337 | |
1140 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:497 | |
1141 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:621 | |
1142 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:758 | |
1143 | 1143 | msgid "Outbound" |
1144 | 1144 | msgstr "出站" |
1145 | 1145 | |
1146 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:325 | |
1146 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:318 | |
1147 | 1147 | msgid "Outbound node" |
1148 | 1148 | msgstr "出站节点" |
1149 | 1149 | |
1150 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:277 | |
1150 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:270 | |
1151 | 1151 | #: htdocs/luci-static/resources/view/homeproxy/server.js:487 |
1152 | 1152 | msgid "Override destination" |
1153 | 1153 | msgstr "覆盖目标地址" |
1154 | 1154 | |
1155 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:278 | |
1155 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:271 | |
1156 | 1156 | #: htdocs/luci-static/resources/view/homeproxy/server.js:488 |
1157 | 1157 | msgid "Override the connection destination address with the sniffed domain." |
1158 | 1158 | msgstr "使用嗅探到的域名覆盖连接目标。" |
1159 | 1159 | |
1160 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:801 | |
1160 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:789 | |
1161 | 1161 | msgid "PUT" |
1162 | 1162 | msgstr "PUT" |
1163 | 1163 | |
1164 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:844 | |
1164 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:832 | |
1165 | 1165 | msgid "Packet encoding" |
1166 | 1166 | msgstr "数据包编码" |
1167 | 1167 |
@@ -1169,44 +1169,44 @@ msgstr "数据包编码" | ||
1169 | 1169 | msgid "Parse Proxy Protocol in the connection header." |
1170 | 1170 | msgstr "解析连接标头中的代理协议。" |
1171 | 1171 | |
1172 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:471 | |
1172 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:459 | |
1173 | 1173 | #: htdocs/luci-static/resources/view/homeproxy/server.js:93 |
1174 | 1174 | msgid "Password" |
1175 | 1175 | msgstr "密码" |
1176 | 1176 | |
1177 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:795 | |
1178 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:827 | |
1177 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:783 | |
1178 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:815 | |
1179 | 1179 | #: htdocs/luci-static/resources/view/homeproxy/server.js:262 |
1180 | 1180 | #: htdocs/luci-static/resources/view/homeproxy/server.js:291 |
1181 | 1181 | msgid "Path" |
1182 | 1182 | msgstr "路径" |
1183 | 1183 | |
1184 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:868 | |
1184 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:856 | |
1185 | 1185 | msgid "Peer pubkic key" |
1186 | 1186 | msgstr "对端公钥" |
1187 | 1187 | |
1188 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:266 | |
1188 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:260 | |
1189 | 1189 | msgid "" |
1190 | 1190 | "Performance may degrade slightly, so it is not recommended to enable on when " |
1191 | 1191 | "it is not needed." |
1192 | 1192 | msgstr "性能可能会略有下降,建议仅在需要时开启。" |
1193 | 1193 | |
1194 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:813 | |
1194 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:801 | |
1195 | 1195 | #: htdocs/luci-static/resources/view/homeproxy/server.js:278 |
1196 | 1196 | msgid "Ping timeout" |
1197 | 1197 | msgstr "Ping 超时" |
1198 | 1198 | |
1199 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:594 | |
1199 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:582 | |
1200 | 1200 | msgid "Plugin" |
1201 | 1201 | msgstr "插件" |
1202 | 1202 | |
1203 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:601 | |
1203 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:589 | |
1204 | 1204 | msgid "Plugin opts" |
1205 | 1205 | msgstr "插件参数" |
1206 | 1206 | |
1207 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:482 | |
1208 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:743 | |
1209 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:462 | |
1207 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:475 | |
1208 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:736 | |
1209 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:450 | |
1210 | 1210 | #: htdocs/luci-static/resources/view/homeproxy/server.js:81 |
1211 | 1211 | msgid "Port" |
1212 | 1212 | msgstr "端口" |
@@ -1215,12 +1215,12 @@ msgstr "端口" | ||
1215 | 1215 | msgid "Port %s alrealy exists!" |
1216 | 1216 | msgstr "端口 %s 已存在!" |
1217 | 1217 | |
1218 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:487 | |
1219 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:748 | |
1218 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:480 | |
1219 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:741 | |
1220 | 1220 | msgid "Port range" |
1221 | 1221 | msgstr "端口范围" |
1222 | 1222 | |
1223 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:874 | |
1223 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:862 | |
1224 | 1224 | msgid "Pre-shared key" |
1225 | 1225 | msgstr "预共享密钥" |
1226 | 1226 |
@@ -1232,66 +1232,66 @@ msgstr "优先 IPv4" | ||
1232 | 1232 | msgid "Prefer IPv6" |
1233 | 1233 | msgstr "优先 IPv6" |
1234 | 1234 | |
1235 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:861 | |
1235 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:849 | |
1236 | 1236 | msgid "Private key" |
1237 | 1237 | msgstr "私钥" |
1238 | 1238 | |
1239 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:492 | |
1240 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:753 | |
1239 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:485 | |
1240 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:746 | |
1241 | 1241 | msgid "Process name" |
1242 | 1242 | msgstr "进程名" |
1243 | 1243 | |
1244 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:496 | |
1245 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:757 | |
1244 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:489 | |
1245 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:750 | |
1246 | 1246 | msgid "Process path" |
1247 | 1247 | msgstr "进程路径" |
1248 | 1248 | |
1249 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:426 | |
1250 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:690 | |
1251 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:514 | |
1252 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:636 | |
1253 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:897 | |
1249 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:419 | |
1250 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:683 | |
1251 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:502 | |
1252 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:624 | |
1253 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:885 | |
1254 | 1254 | #: htdocs/luci-static/resources/view/homeproxy/server.js:121 |
1255 | 1255 | msgid "Protocol" |
1256 | 1256 | msgstr "协议" |
1257 | 1257 | |
1258 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:652 | |
1258 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:640 | |
1259 | 1259 | msgid "Protocol param" |
1260 | 1260 | msgstr "协议参数" |
1261 | 1261 | |
1262 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:729 | |
1262 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:717 | |
1263 | 1263 | msgid "Protocol parameter. Enable length block encryption." |
1264 | 1264 | msgstr "协议参数。启用长度块加密。" |
1265 | 1265 | |
1266 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:722 | |
1266 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:710 | |
1267 | 1267 | msgid "" |
1268 | 1268 | "Protocol parameter. Will waste traffic randomly if enabled (enabled by " |
1269 | 1269 | "default in v2ray and cannot be disabled)." |
1270 | 1270 | msgstr "协议参数。 如启用会随机浪费流量(在 v2ray 中默认启用并且无法禁用)。" |
1271 | 1271 | |
1272 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:928 | |
1272 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:921 | |
1273 | 1273 | msgid "Proxy Domain List" |
1274 | 1274 | msgstr "代理域名列表" |
1275 | 1275 | |
1276 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:866 | |
1277 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:912 | |
1276 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:859 | |
1277 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:905 | |
1278 | 1278 | msgid "Proxy IPv4 IP-s" |
1279 | 1279 | msgstr "代理 IPv4 地址" |
1280 | 1280 | |
1281 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:873 | |
1282 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:915 | |
1281 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:866 | |
1282 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:908 | |
1283 | 1283 | msgid "Proxy IPv6 IP-s" |
1284 | 1284 | msgstr "代理 IPv6 地址" |
1285 | 1285 | |
1286 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:847 | |
1286 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:840 | |
1287 | 1287 | msgid "Proxy all except listed" |
1288 | 1288 | msgstr "仅允许列表外" |
1289 | 1289 | |
1290 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:844 | |
1290 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:837 | |
1291 | 1291 | msgid "Proxy filter mode" |
1292 | 1292 | msgstr "代理过滤模式" |
1293 | 1293 | |
1294 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:846 | |
1294 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:839 | |
1295 | 1295 | msgid "Proxy listed only" |
1296 | 1296 | msgstr "仅允许列表内" |
1297 | 1297 |
@@ -1299,23 +1299,23 @@ msgstr "仅允许列表内" | ||
1299 | 1299 | msgid "Proxy mode" |
1300 | 1300 | msgstr "代理模式" |
1301 | 1301 | |
1302 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:505 | |
1302 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:493 | |
1303 | 1303 | #: htdocs/luci-static/resources/view/homeproxy/server.js:497 |
1304 | 1304 | msgid "Proxy protocol" |
1305 | 1305 | msgstr "代理协议" |
1306 | 1306 | |
1307 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1038 | |
1307 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1040 | |
1308 | 1308 | msgid "QQ" |
1309 | 1309 | msgstr "QQ" |
1310 | 1310 | |
1311 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:430 | |
1312 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:694 | |
1313 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:742 | |
1311 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:423 | |
1312 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:687 | |
1313 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:730 | |
1314 | 1314 | #: htdocs/luci-static/resources/view/homeproxy/server.js:225 |
1315 | 1315 | msgid "QUIC" |
1316 | 1316 | msgstr "QUIC" |
1317 | 1317 | |
1318 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:562 | |
1318 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:550 | |
1319 | 1319 | #: htdocs/luci-static/resources/view/homeproxy/server.js:170 |
1320 | 1320 | msgid "QUIC connection receive window" |
1321 | 1321 | msgstr "QUIC 连接窗口" |
@@ -1324,20 +1324,20 @@ msgstr "QUIC 连接窗口" | ||
1324 | 1324 | msgid "QUIC maximum concurrent bidirectional streams" |
1325 | 1325 | msgstr "QUIC 最大双向并发流" |
1326 | 1326 | |
1327 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:556 | |
1327 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:544 | |
1328 | 1328 | #: htdocs/luci-static/resources/view/homeproxy/server.js:163 |
1329 | 1329 | msgid "QUIC stream receive window" |
1330 | 1330 | msgstr "QUIC 流接收窗口" |
1331 | 1331 | |
1332 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1054 | |
1332 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1056 | |
1333 | 1333 | msgid "REALITY" |
1334 | 1334 | msgstr "REALITY" |
1335 | 1335 | |
1336 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1059 | |
1336 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1061 | |
1337 | 1337 | msgid "REALITY public key" |
1338 | 1338 | msgstr "REALITY 公钥" |
1339 | 1339 | |
1340 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1064 | |
1340 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1066 | |
1341 | 1341 | msgid "REALITY short ID" |
1342 | 1342 | msgstr "REALITY 标识符" |
1343 | 1343 |
@@ -1345,19 +1345,19 @@ msgstr "REALITY 标识符" | ||
1345 | 1345 | msgid "RUNNING" |
1346 | 1346 | msgstr "运行中" |
1347 | 1347 | |
1348 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1039 | |
1348 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1041 | |
1349 | 1349 | msgid "Random" |
1350 | 1350 | msgstr "随机" |
1351 | 1351 | |
1352 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1040 | |
1352 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1042 | |
1353 | 1353 | msgid "Randomized" |
1354 | 1354 | msgstr "随机生成" |
1355 | 1355 | |
1356 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:369 | |
1356 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:362 | |
1357 | 1357 | msgid "Recursive outbound detected!" |
1358 | 1358 | msgstr "检测到递归出站!" |
1359 | 1359 | |
1360 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:610 | |
1360 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:603 | |
1361 | 1361 | msgid "Recursive resolver detected!" |
1362 | 1362 | msgstr "检测到递归解析器!" |
1363 | 1363 |
@@ -1369,7 +1369,7 @@ msgstr "Redirect TCP" | ||
1369 | 1369 | msgid "Redirect TCP + TProxy UDP" |
1370 | 1370 | msgstr "Redirect TCP + TProxy UDP" |
1371 | 1371 | |
1372 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:223 | |
1372 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:222 | |
1373 | 1373 | msgid "Redirect TCP + Tun UDP" |
1374 | 1374 | msgstr "Redirect TCP + Tun UDP" |
1375 | 1375 |
@@ -1377,15 +1377,15 @@ msgstr "Redirect TCP + Tun UDP" | ||
1377 | 1377 | msgid "Refresh every %s seconds." |
1378 | 1378 | msgstr "每 %s 秒刷新。" |
1379 | 1379 | |
1380 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1191 | |
1380 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1200 | |
1381 | 1381 | msgid "Remove %s nodes" |
1382 | 1382 | msgstr "移除 %s 个节点" |
1383 | 1383 | |
1384 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1181 | |
1384 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1190 | |
1385 | 1385 | msgid "Remove all nodes from subscriptions" |
1386 | 1386 | msgstr "移除所有订阅节点" |
1387 | 1387 | |
1388 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:623 | |
1388 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:616 | |
1389 | 1389 | msgid "Resolve strategy" |
1390 | 1390 | msgstr "解析策略" |
1391 | 1391 |
@@ -1393,11 +1393,11 @@ msgstr "解析策略" | ||
1393 | 1393 | msgid "Resources management" |
1394 | 1394 | msgstr "资源管理" |
1395 | 1395 | |
1396 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:302 | |
1396 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:295 | |
1397 | 1397 | msgid "Routing Nodes" |
1398 | 1398 | msgstr "路由节点" |
1399 | 1399 | |
1400 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:377 | |
1400 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:370 | |
1401 | 1401 | msgid "Routing Rules" |
1402 | 1402 | msgstr "路由规则" |
1403 | 1403 |
@@ -1409,7 +1409,7 @@ msgstr "路由设置" | ||
1409 | 1409 | msgid "Routing mode" |
1410 | 1410 | msgstr "路由模式" |
1411 | 1411 | |
1412 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:310 | |
1412 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:303 | |
1413 | 1413 | msgid "Routing node" |
1414 | 1414 | msgstr "路由节点" |
1415 | 1415 |
@@ -1417,16 +1417,20 @@ msgstr "路由节点" | ||
1417 | 1417 | msgid "Routing ports" |
1418 | 1418 | msgstr "路由端口" |
1419 | 1419 | |
1420 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:385 | |
1420 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:378 | |
1421 | 1421 | msgid "Routing rule" |
1422 | 1422 | msgstr "路由规则" |
1423 | 1423 | |
1424 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:431 | |
1425 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:696 | |
1424 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:424 | |
1425 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:689 | |
1426 | 1426 | msgid "STUN" |
1427 | 1427 | msgstr "STUN" |
1428 | 1428 | |
1429 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1041 | |
1429 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1090 | |
1430 | +msgid "SUoT version" | |
1431 | +msgstr "SUoT 版本" | |
1432 | + | |
1433 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1043 | |
1430 | 1434 | msgid "Safari" |
1431 | 1435 | msgstr "Safari" |
1432 | 1436 |
@@ -1434,15 +1438,15 @@ msgstr "Safari" | ||
1434 | 1438 | msgid "Same as main node" |
1435 | 1439 | msgstr "保持与主节点一致" |
1436 | 1440 | |
1437 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1155 | |
1441 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1164 | |
1438 | 1442 | msgid "Save current settings" |
1439 | 1443 | msgstr "保存当前设置" |
1440 | 1444 | |
1441 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1152 | |
1445 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1161 | |
1442 | 1446 | msgid "Save subscriptions settings" |
1443 | 1447 | msgstr "保存订阅设置" |
1444 | 1448 | |
1445 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:782 | |
1449 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:775 | |
1446 | 1450 | #: htdocs/luci-static/resources/view/homeproxy/server.js:41 |
1447 | 1451 | msgid "Server" |
1448 | 1452 | msgstr "服务器" |
@@ -1465,7 +1469,7 @@ msgstr "服务状态" | ||
1465 | 1469 | msgid "ShadowTLS" |
1466 | 1470 | msgstr "ShadowTLS" |
1467 | 1471 | |
1468 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:672 | |
1472 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:660 | |
1469 | 1473 | msgid "ShadowTLS version" |
1470 | 1474 | msgstr "ShadowTLS 版本" |
1471 | 1475 |
@@ -1478,8 +1482,8 @@ msgstr "Shadowsocks" | ||
1478 | 1482 | msgid "ShadowsocksR" |
1479 | 1483 | msgstr "ShadowsocksR" |
1480 | 1484 | |
1481 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:427 | |
1482 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:691 | |
1485 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:420 | |
1486 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:684 | |
1483 | 1487 | msgid "" |
1484 | 1488 | "Sniffed protocol, see <a target=\"_blank\" href=\"https://sing-box.sagernet." |
1485 | 1489 | "org/configuration/route/sniff/\">Sniff</a> for details." |
@@ -1492,44 +1496,44 @@ msgstr "" | ||
1492 | 1496 | msgid "Socks" |
1493 | 1497 | msgstr "Socks" |
1494 | 1498 | |
1495 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:682 | |
1499 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:670 | |
1496 | 1500 | msgid "Socks version" |
1497 | 1501 | msgstr "Socks 版本" |
1498 | 1502 | |
1499 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:683 | |
1503 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:671 | |
1500 | 1504 | msgid "Socks4" |
1501 | 1505 | msgstr "Socks4" |
1502 | 1506 | |
1503 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:684 | |
1507 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:672 | |
1504 | 1508 | msgid "Socks4A" |
1505 | 1509 | msgstr "Socks4A" |
1506 | 1510 | |
1507 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:685 | |
1511 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:673 | |
1508 | 1512 | msgid "Socks5" |
1509 | 1513 | msgstr "Socks5" |
1510 | 1514 | |
1511 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:454 | |
1512 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:719 | |
1515 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:447 | |
1516 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:712 | |
1513 | 1517 | msgid "Source GeoIP" |
1514 | 1518 | msgstr "源 GeoIP" |
1515 | 1519 | |
1516 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:462 | |
1517 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:723 | |
1520 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:455 | |
1521 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:716 | |
1518 | 1522 | msgid "Source IP CIDR" |
1519 | 1523 | msgstr "源 IP CIDR" |
1520 | 1524 | |
1521 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:472 | |
1522 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:733 | |
1525 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:465 | |
1526 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:726 | |
1523 | 1527 | msgid "Source port" |
1524 | 1528 | msgstr "源端口" |
1525 | 1529 | |
1526 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:477 | |
1527 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:738 | |
1530 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:470 | |
1531 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:731 | |
1528 | 1532 | msgid "Source port range" |
1529 | 1533 | msgstr "源端口范围" |
1530 | 1534 | |
1531 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:759 | |
1532 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:806 | |
1535 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:747 | |
1536 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:794 | |
1533 | 1537 | msgid "" |
1534 | 1538 | "Specifies the period of time after which a health check will be performed " |
1535 | 1539 | "using a ping frame if no frames have been received on the connection.<br/" |
@@ -1548,8 +1552,8 @@ msgid "" | ||
1548 | 1552 | "PING frames are not considered as activity." |
1549 | 1553 | msgstr "指定闲置客户端应在多长时间内使用 GOAWAY 帧关闭。PING 帧不被视为活动。" |
1550 | 1554 | |
1551 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:763 | |
1552 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:814 | |
1555 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:751 | |
1556 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:802 | |
1553 | 1557 | msgid "" |
1554 | 1558 | "Specifies the timeout duration after sending a PING frame, within which a " |
1555 | 1559 | "response must be received.<br/>If a response to the PING frame is not " |
@@ -1565,16 +1569,16 @@ msgid "" | ||
1565 | 1569 | "commas." |
1566 | 1570 | msgstr "指定需要被代理的目标端口。多个端口必须用逗号隔开。" |
1567 | 1571 | |
1568 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:528 | |
1572 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:516 | |
1569 | 1573 | #: htdocs/luci-static/resources/view/homeproxy/server.js:147 |
1570 | 1574 | msgid "String" |
1571 | 1575 | msgstr "字符串" |
1572 | 1576 | |
1573 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1109 | |
1577 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1118 | |
1574 | 1578 | msgid "Subscription URL-s" |
1575 | 1579 | msgstr "订阅地址" |
1576 | 1580 | |
1577 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1091 | |
1581 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1100 | |
1578 | 1582 | msgid "Subscriptions" |
1579 | 1583 | msgstr "订阅" |
1580 | 1584 |
@@ -1587,7 +1591,7 @@ msgid "Successfully updated." | ||
1587 | 1591 | msgstr "更新成功。" |
1588 | 1592 | |
1589 | 1593 | #: htdocs/luci-static/resources/view/homeproxy/node.js:317 |
1590 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1110 | |
1594 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1119 | |
1591 | 1595 | msgid "" |
1592 | 1596 | "Support Hysteria, Shadowsocks(R), Trojan, v2rayN (VMess), and XTLS (VLESS) " |
1593 | 1597 | "online configuration delivery standard." |
@@ -1595,48 +1599,52 @@ msgstr "" | ||
1595 | 1599 | "支持 Hysteria、Shadowsocks(R)、Trojan、v2rayN(VMess)和 XTLS(VLESS)在线配" |
1596 | 1600 | "置交付标准。" |
1597 | 1601 | |
1598 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:422 | |
1599 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:686 | |
1602 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:244 | |
1603 | +msgid "System" | |
1604 | +msgstr "系统" | |
1605 | + | |
1606 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:415 | |
1607 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:679 | |
1600 | 1608 | #: htdocs/luci-static/resources/view/homeproxy/server.js:510 |
1601 | 1609 | msgid "TCP" |
1602 | 1610 | msgstr "TCP" |
1603 | 1611 | |
1604 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1072 | |
1612 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1074 | |
1605 | 1613 | #: htdocs/luci-static/resources/view/homeproxy/server.js:475 |
1606 | 1614 | msgid "TCP fast open" |
1607 | 1615 | msgstr "TCP 快速打开" |
1608 | 1616 | |
1609 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:239 | |
1617 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:238 | |
1610 | 1618 | msgid "TCP/IP stack" |
1611 | 1619 | msgstr "TCP/IP 协议栈" |
1612 | 1620 | |
1613 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:240 | |
1621 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:239 | |
1614 | 1622 | msgid "TCP/IP stack." |
1615 | 1623 | msgstr "TCP/IP 协议栈。" |
1616 | 1624 | |
1617 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:429 | |
1618 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:693 | |
1619 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:932 | |
1625 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:422 | |
1626 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:686 | |
1627 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:920 | |
1620 | 1628 | #: htdocs/luci-static/resources/view/homeproxy/server.js:314 |
1621 | 1629 | msgid "TLS" |
1622 | 1630 | msgstr "TLS" |
1623 | 1631 | |
1624 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:947 | |
1632 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:949 | |
1625 | 1633 | #: htdocs/luci-static/resources/view/homeproxy/server.js:330 |
1626 | 1634 | msgid "TLS ALPN" |
1627 | 1635 | msgstr "TLS ALPN" |
1628 | 1636 | |
1629 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:942 | |
1637 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:944 | |
1630 | 1638 | #: htdocs/luci-static/resources/view/homeproxy/server.js:325 |
1631 | 1639 | msgid "TLS SNI" |
1632 | 1640 | msgstr "TLS SNI" |
1633 | 1641 | |
1634 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:750 | |
1642 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:738 | |
1635 | 1643 | #: htdocs/luci-static/resources/view/homeproxy/server.js:230 |
1636 | 1644 | msgid "TLS is not enforced. If TLS is not configured, plain HTTP 1.1 is used." |
1637 | 1645 | msgstr "不强制执行 TLS。如未配置 TLS,将使用纯 HTTP 1.1。" |
1638 | 1646 | |
1639 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:587 | |
1647 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:580 | |
1640 | 1648 | msgid "" |
1641 | 1649 | "Tag of a another server to resolve the domain name in the address. Required " |
1642 | 1650 | "if address contains domain." |
@@ -1644,15 +1652,15 @@ msgstr "" | ||
1644 | 1652 | "用于解析本 DNS 服务器的域名的另一个 DNS 服务器的标签。如果服务器地址包括域名" |
1645 | 1653 | "则必须。" |
1646 | 1654 | |
1647 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:629 | |
1655 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:622 | |
1648 | 1656 | msgid "Tag of an outbound for connecting to the dns server." |
1649 | 1657 | msgstr "用于连接到 DNS 服务器的出站标签。" |
1650 | 1658 | |
1651 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:783 | |
1659 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:776 | |
1652 | 1660 | msgid "Tag of the target dns server." |
1653 | 1661 | msgstr "目标 DNS 服务器标签。" |
1654 | 1662 | |
1655 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:505 | |
1663 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:498 | |
1656 | 1664 | msgid "Tag of the target outbound." |
1657 | 1665 | msgstr "目标出站标签。" |
1658 | 1666 |
@@ -1664,21 +1672,21 @@ msgstr "腾讯公共 DNS(119.29.29.29)" | ||
1664 | 1672 | msgid "The ACME CA provider to use." |
1665 | 1673 | msgstr "使用的 ACME CA 颁发机构。" |
1666 | 1674 | |
1667 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:530 | |
1675 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:523 | |
1668 | 1676 | msgid "The DNS strategy for resolving the domain name in the address." |
1669 | 1677 | msgstr "解析域名的默认策略。" |
1670 | 1678 | |
1671 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:563 | |
1679 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:551 | |
1672 | 1680 | #: htdocs/luci-static/resources/view/homeproxy/server.js:171 |
1673 | 1681 | msgid "The QUIC connection-level flow control window for receiving data." |
1674 | 1682 | msgstr "用于接收数据的 QUIC 连接级流控制窗口。" |
1675 | 1683 | |
1676 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:557 | |
1684 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:545 | |
1677 | 1685 | #: htdocs/luci-static/resources/view/homeproxy/server.js:164 |
1678 | 1686 | msgid "The QUIC stream-level flow control window for receiving data." |
1679 | 1687 | msgstr "用于接收数据的 QUIC 流级流控制窗口。" |
1680 | 1688 | |
1681 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:583 | |
1689 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:576 | |
1682 | 1690 | msgid "The address of the dns server. Support UDP, TCP, DoT, DoH and RCode." |
1683 | 1691 | msgstr "DNS 服务器的地址。支持 UDP、TCP、DoT、DoH 和 RCode。" |
1684 | 1692 |
@@ -1697,7 +1705,7 @@ msgid "" | ||
1697 | 1705 | msgstr "" |
1698 | 1706 | "用于 ACME TLS-ALPN 质询的备用端口; 系统必须将 443 转发到此端口以使质询成功。" |
1699 | 1707 | |
1700 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:407 | |
1708 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:400 | |
1701 | 1709 | msgid "" |
1702 | 1710 | "The default rule uses the following matching logic:<br/><code>(domain || " |
1703 | 1711 | "domain_suffix || domain_keyword || domain_regex || geosite || geoip || " |
@@ -1708,7 +1716,7 @@ msgstr "" | ||
1708 | 1716 | "domain_keyword || domain_regex || geosite || geoip || ip_cidr)</code> &&<br/" |
1709 | 1717 | "><code>(source_geoip || source_ip_cidr)</code> &&<br/><code>其他字段</code>." |
1710 | 1718 | |
1711 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:671 | |
1719 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:664 | |
1712 | 1720 | msgid "" |
1713 | 1721 | "The default rule uses the following matching logic:<br/><code>(domain || " |
1714 | 1722 | "domain_suffix || domain_keyword || domain_regex || geosite || ip_cidr)</" |
@@ -1719,13 +1727,13 @@ msgstr "" | ||
1719 | 1727 | "domain_keyword || domain_regex || geosite || ip_cidr)</code> &&<br/" |
1720 | 1728 | "><code>(source_geoip || source_ip_cidr)</code> &&<br/><code>其他字段</code>." |
1721 | 1729 | |
1722 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:618 | |
1730 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:611 | |
1723 | 1731 | msgid "" |
1724 | 1732 | "The domain strategy for resolving the domain name in the address. dns." |
1725 | 1733 | "strategy will be used if empty." |
1726 | 1734 | msgstr "用于解析本 DNS 服务器的域名的策略。默认使用 dns.strategy。" |
1727 | 1735 | |
1728 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:978 | |
1736 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:980 | |
1729 | 1737 | #: htdocs/luci-static/resources/view/homeproxy/server.js:352 |
1730 | 1738 | msgid "" |
1731 | 1739 | "The elliptic curves that will be used in an ECDHE handshake, in preference " |
@@ -1738,7 +1746,7 @@ msgid "" | ||
1738 | 1746 | "account." |
1739 | 1747 | msgstr "创建或选择现有 ACME 服务器帐户时使用的电子邮件地址。" |
1740 | 1748 | |
1741 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:970 | |
1749 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:972 | |
1742 | 1750 | #: htdocs/luci-static/resources/view/homeproxy/server.js:344 |
1743 | 1751 | msgid "The maximum TLS version that is acceptable." |
1744 | 1752 | msgstr "可接受的最高 TLS 版本。" |
@@ -1749,7 +1757,7 @@ msgid "" | ||
1749 | 1757 | "allowed to open." |
1750 | 1758 | msgstr "允许对等点打开的 QUIC 并发双向流的最大数量。" |
1751 | 1759 | |
1752 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:962 | |
1760 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:964 | |
1753 | 1761 | #: htdocs/luci-static/resources/view/homeproxy/server.js:336 |
1754 | 1762 | msgid "The minimum TLS version that is acceptable." |
1755 | 1763 | msgstr "可接受的最低 TLS 版本。" |
@@ -1758,11 +1766,11 @@ msgstr "可接受的最低 TLS 版本。" | ||
1758 | 1766 | msgid "The modern ImmortalWrt proxy platform for ARM64/AMD64." |
1759 | 1767 | msgstr "为 ARM64/AMD64 设计的现代 ImmortalWrt 代理平台。" |
1760 | 1768 | |
1761 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:338 | |
1769 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:331 | |
1762 | 1770 | msgid "The network interface to bind to." |
1763 | 1771 | msgstr "绑定到的网络接口。" |
1764 | 1772 | |
1765 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:992 | |
1773 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:994 | |
1766 | 1774 | msgid "The path to the server certificate, in PEM format." |
1767 | 1775 | msgstr "服务端证书路径,需要 PEM 格式。" |
1768 | 1776 |
@@ -1778,13 +1786,13 @@ msgstr "服务端私钥,需要 PEM 格式。" | ||
1778 | 1786 | msgid "The server public key, in PEM format." |
1779 | 1787 | msgstr "服务端公钥,需要 PEM 格式。" |
1780 | 1788 | |
1781 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:345 | |
1789 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:338 | |
1782 | 1790 | msgid "" |
1783 | 1791 | "The tag of the upstream outbound.<br/>Other dial fields will be ignored when " |
1784 | 1792 | "enabled." |
1785 | 1793 | msgstr "上游出站的标签。<br/>启用时,其他拨号字段将被忽略。" |
1786 | 1794 | |
1787 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:770 | |
1795 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:758 | |
1788 | 1796 | #: htdocs/luci-static/resources/view/homeproxy/server.js:279 |
1789 | 1797 | msgid "" |
1790 | 1798 | "The timeout that after performing a keepalive check, the client will wait " |
@@ -1793,8 +1801,8 @@ msgstr "" | ||
1793 | 1801 | "经过一段时间之后,客户端将执行 keepalive 检查并等待活动。如果没有检测到任何活" |
1794 | 1802 | "动,则会关闭连接。" |
1795 | 1803 | |
1796 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:955 | |
1797 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1142 | |
1804 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:957 | |
1805 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1151 | |
1798 | 1806 | msgid "" |
1799 | 1807 | "This is <strong>DANGEROUS</strong>, your traffic is almost like " |
1800 | 1808 | "<strong>PLAIN TEXT</strong>! Use at your own risk!" |
@@ -1808,7 +1816,7 @@ msgid "" | ||
1808 | 1816 | msgstr "" |
1809 | 1817 | "要与 Xray-core 兼容,请将其设置为 <code>Sec-WebSocket-Protocol</code>。" |
1810 | 1818 | |
1811 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:737 | |
1819 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:725 | |
1812 | 1820 | #: htdocs/luci-static/resources/view/homeproxy/server.js:220 |
1813 | 1821 | msgid "Transport" |
1814 | 1822 | msgstr "传输层" |
@@ -1818,7 +1826,7 @@ msgstr "传输层" | ||
1818 | 1826 | msgid "Trojan" |
1819 | 1827 | msgstr "Trojan" |
1820 | 1828 | |
1821 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:224 | |
1829 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:223 | |
1822 | 1830 | msgid "Tun TCP/UDP" |
1823 | 1831 | msgstr "Tun TCP/UDP" |
1824 | 1832 |
@@ -1827,22 +1835,22 @@ msgstr "Tun TCP/UDP" | ||
1827 | 1835 | msgid "Type" |
1828 | 1836 | msgstr "类型" |
1829 | 1837 | |
1830 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:423 | |
1831 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:687 | |
1838 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:416 | |
1839 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:680 | |
1832 | 1840 | #: htdocs/luci-static/resources/view/homeproxy/server.js:511 |
1833 | 1841 | msgid "UDP" |
1834 | 1842 | msgstr "UDP" |
1835 | 1843 | |
1836 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1076 | |
1844 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1078 | |
1837 | 1845 | #: htdocs/luci-static/resources/view/homeproxy/server.js:481 |
1838 | 1846 | msgid "UDP Fragment" |
1839 | 1847 | msgstr "UDP 分片" |
1840 | 1848 | |
1841 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1081 | |
1849 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1083 | |
1842 | 1850 | msgid "UDP over TCP" |
1843 | 1851 | msgstr "UDP over TCP" |
1844 | 1852 | |
1845 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:692 | |
1853 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:680 | |
1846 | 1854 | #: htdocs/luci-static/resources/view/homeproxy/server.js:200 |
1847 | 1855 | msgid "UUID" |
1848 | 1856 | msgstr "UUID" |
@@ -1855,7 +1863,7 @@ msgstr "未知错误。" | ||
1855 | 1863 | msgid "Unknown error: %s" |
1856 | 1864 | msgstr "未知错误:%s" |
1857 | 1865 | |
1858 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1166 | |
1866 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1175 | |
1859 | 1867 | msgid "Update %s subscriptions" |
1860 | 1868 | msgstr "更新 %s 个订阅" |
1861 | 1869 |
@@ -1863,19 +1871,19 @@ msgstr "更新 %s 个订阅" | ||
1863 | 1871 | msgid "Update failed." |
1864 | 1872 | msgstr "上传失败。" |
1865 | 1873 | |
1866 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1161 | |
1874 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1170 | |
1867 | 1875 | msgid "Update nodes from subscriptions" |
1868 | 1876 | msgstr "从订阅更新节点" |
1869 | 1877 | |
1870 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1105 | |
1878 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1114 | |
1871 | 1879 | msgid "Update subscriptions via proxy." |
1872 | 1880 | msgstr "使用代理更新订阅。" |
1873 | 1881 | |
1874 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1104 | |
1882 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1113 | |
1875 | 1883 | msgid "Update via proxy" |
1876 | 1884 | msgstr "使用代理更新" |
1877 | 1885 | |
1878 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:998 | |
1886 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1000 | |
1879 | 1887 | #: htdocs/luci-static/resources/view/homeproxy/server.js:449 |
1880 | 1888 | msgid "Upload certificate" |
1881 | 1889 | msgstr "上传证书" |
@@ -1884,13 +1892,13 @@ msgstr "上传证书" | ||
1884 | 1892 | msgid "Upload key" |
1885 | 1893 | msgstr "上传密钥" |
1886 | 1894 | |
1887 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1001 | |
1895 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1003 | |
1888 | 1896 | #: htdocs/luci-static/resources/view/homeproxy/server.js:452 |
1889 | 1897 | #: htdocs/luci-static/resources/view/homeproxy/server.js:468 |
1890 | 1898 | msgid "Upload..." |
1891 | 1899 | msgstr "上传..." |
1892 | 1900 | |
1893 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:260 | |
1901 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:254 | |
1894 | 1902 | msgid "Upstream archived. Not recommended." |
1895 | 1903 | msgstr "上游已存档。不建议。" |
1896 | 1904 |
@@ -1902,19 +1910,19 @@ msgstr "使用 ACME TLS 证书颁发机构。" | ||
1902 | 1910 | msgid "Use DNS server from WAN" |
1903 | 1911 | msgstr "使用 WAN 下发的 DNS" |
1904 | 1912 | |
1905 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:943 | |
1913 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:945 | |
1906 | 1914 | #: htdocs/luci-static/resources/view/homeproxy/server.js:326 |
1907 | 1915 | msgid "" |
1908 | 1916 | "Used to verify the hostname on the returned certificates unless insecure is " |
1909 | 1917 | "given." |
1910 | 1918 | msgstr "用于验证返回证书上的主机名。如允许不安全连接,此配置无效。" |
1911 | 1919 | |
1912 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:500 | |
1913 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:761 | |
1920 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:493 | |
1921 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:754 | |
1914 | 1922 | msgid "User" |
1915 | 1923 | msgstr "用户" |
1916 | 1924 | |
1917 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:466 | |
1925 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:454 | |
1918 | 1926 | #: htdocs/luci-static/resources/view/homeproxy/server.js:86 |
1919 | 1927 | msgid "Username" |
1920 | 1928 | msgstr "用户名" |
@@ -1929,16 +1937,16 @@ msgstr "VLESS" | ||
1929 | 1937 | msgid "VMess" |
1930 | 1938 | msgstr "VMess" |
1931 | 1939 | |
1932 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:910 | |
1940 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:903 | |
1933 | 1941 | msgid "WAN IP Policy" |
1934 | 1942 | msgstr "WAN IP 策略" |
1935 | 1943 | |
1936 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:743 | |
1944 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:731 | |
1937 | 1945 | #: htdocs/luci-static/resources/view/homeproxy/server.js:226 |
1938 | 1946 | msgid "WebSocket" |
1939 | 1947 | msgstr "WebSocket" |
1940 | 1948 | |
1941 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1130 | |
1949 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1139 | |
1942 | 1950 | msgid "Whitelist mode" |
1943 | 1951 | msgstr "白名单模式" |
1944 | 1952 |
@@ -1946,19 +1954,19 @@ msgstr "白名单模式" | ||
1946 | 1954 | msgid "WireGuard" |
1947 | 1955 | msgstr "WireGuard" |
1948 | 1956 | |
1949 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:869 | |
1957 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:857 | |
1950 | 1958 | msgid "WireGuard peer public key." |
1951 | 1959 | msgstr "WireGuard 对端公钥。" |
1952 | 1960 | |
1953 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:875 | |
1961 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:863 | |
1954 | 1962 | msgid "WireGuard pre-shared key." |
1955 | 1963 | msgstr "WireGuard 预共享密钥。" |
1956 | 1964 | |
1957 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:862 | |
1965 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:850 | |
1958 | 1966 | msgid "WireGuard requires base64-encoded private keys." |
1959 | 1967 | msgstr "WireGuard 要求 base64 编码的私钥。" |
1960 | 1968 | |
1961 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:506 | |
1969 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:494 | |
1962 | 1970 | msgid "Write Proxy Protocol in the connection header." |
1963 | 1971 | msgstr "在连接标头中写入代理协议。" |
1964 | 1972 |
@@ -1966,8 +1974,8 @@ msgstr "在连接标头中写入代理协议。" | ||
1966 | 1974 | msgid "Xinfeng Public DNS (114.114.114.114)" |
1967 | 1975 | msgstr "信风公共 DNS(114.114.114.114)" |
1968 | 1976 | |
1969 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:847 | |
1970 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1150 | |
1977 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:835 | |
1978 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1159 | |
1971 | 1979 | msgid "Xudp (Xray-core)" |
1972 | 1980 | msgstr "Xudp (Xray-core)" |
1973 | 1981 |
@@ -1983,57 +1991,57 @@ msgstr "您的 %s 已成功上传。大小:%sB。" | ||
1983 | 1991 | msgid "ZeroSSL" |
1984 | 1992 | msgstr "ZeroSSL" |
1985 | 1993 | |
1986 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1003 | |
1994 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1005 | |
1987 | 1995 | #: htdocs/luci-static/resources/view/homeproxy/server.js:454 |
1988 | 1996 | msgid "certificate" |
1989 | 1997 | msgstr "证书" |
1990 | 1998 | |
1991 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:963 | |
1992 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:971 | |
1999 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:965 | |
2000 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:973 | |
1993 | 2001 | #: htdocs/luci-static/resources/view/homeproxy/server.js:337 |
1994 | 2002 | #: htdocs/luci-static/resources/view/homeproxy/server.js:345 |
1995 | 2003 | msgid "default" |
1996 | 2004 | msgstr "默认" |
1997 | 2005 | |
1998 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:740 | |
2006 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:728 | |
1999 | 2007 | #: htdocs/luci-static/resources/view/homeproxy/server.js:223 |
2000 | 2008 | msgid "gRPC" |
2001 | 2009 | msgstr "gRPC" |
2002 | 2010 | |
2003 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:781 | |
2011 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:769 | |
2004 | 2012 | msgid "gRPC permit without stream" |
2005 | 2013 | msgstr "gRPC 允许无活动连接" |
2006 | 2014 | |
2007 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:776 | |
2015 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:764 | |
2008 | 2016 | #: htdocs/luci-static/resources/view/homeproxy/server.js:250 |
2009 | 2017 | msgid "gRPC service name" |
2010 | 2018 | msgstr "gRPC 服务名称" |
2011 | 2019 | |
2012 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:242 | |
2020 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:241 | |
2013 | 2021 | msgid "gVisor" |
2014 | 2022 | msgstr "gVisor" |
2015 | 2023 | |
2016 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1037 | |
2024 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1039 | |
2017 | 2025 | msgid "iOS" |
2018 | 2026 | msgstr "iOS" |
2019 | 2027 | |
2020 | 2028 | #: htdocs/luci-static/resources/homeproxy.js:245 |
2021 | 2029 | #: htdocs/luci-static/resources/homeproxy.js:263 |
2022 | 2030 | #: htdocs/luci-static/resources/view/homeproxy/client.js:173 |
2023 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:496 | |
2024 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1047 | |
2031 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:484 | |
2032 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1049 | |
2025 | 2033 | #: htdocs/luci-static/resources/view/homeproxy/server.js:113 |
2026 | 2034 | msgid "non-empty value" |
2027 | 2035 | msgstr "非空值" |
2028 | 2036 | |
2029 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:595 | |
2030 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:845 | |
2031 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1148 | |
2037 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:583 | |
2038 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:833 | |
2039 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1157 | |
2032 | 2040 | msgid "none" |
2033 | 2041 | msgstr "无" |
2034 | 2042 | |
2035 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:846 | |
2036 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1149 | |
2043 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:834 | |
2044 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1158 | |
2037 | 2045 | msgid "packet addr (v2ray-core v5+)" |
2038 | 2046 | msgstr "packet addr (v2ray-core v5+)" |
2039 | 2047 |
@@ -2041,11 +2049,11 @@ msgstr "packet addr (v2ray-core v5+)" | ||
2041 | 2049 | msgid "private key" |
2042 | 2050 | msgstr "私钥" |
2043 | 2051 | |
2044 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1029 | |
2052 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1031 | |
2045 | 2053 | msgid "uTLS fingerprint" |
2046 | 2054 | msgstr "uTLS 指纹" |
2047 | 2055 | |
2048 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1030 | |
2056 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1032 | |
2049 | 2057 | msgid "" |
2050 | 2058 | "uTLS is a fork of \"crypto/tls\", which provides ClientHello fingerprinting " |
2051 | 2059 | "resistance." |
@@ -2061,15 +2069,17 @@ msgstr "独立 UCI 标识" | ||
2061 | 2069 | msgid "unique value" |
2062 | 2070 | msgstr "独立值" |
2063 | 2071 | |
2064 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:673 | |
2072 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:661 | |
2073 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1091 | |
2065 | 2074 | msgid "v1" |
2066 | 2075 | msgstr "v1" |
2067 | 2076 | |
2068 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:674 | |
2077 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:662 | |
2078 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1092 | |
2069 | 2079 | msgid "v2" |
2070 | 2080 | msgstr "v2" |
2071 | 2081 | |
2072 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:675 | |
2082 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:663 | |
2073 | 2083 | msgid "v3" |
2074 | 2084 | msgstr "v3" |
2075 | 2085 |
@@ -2077,8 +2087,8 @@ msgstr "v3" | ||
2077 | 2087 | msgid "valid IP address" |
2078 | 2088 | msgstr "有效 IP 地址" |
2079 | 2089 | |
2080 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1116 | |
2081 | -#: htdocs/luci-static/resources/view/homeproxy/node.js:1119 | |
2090 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1125 | |
2091 | +#: htdocs/luci-static/resources/view/homeproxy/node.js:1128 | |
2082 | 2092 | msgid "valid URL" |
2083 | 2093 | msgstr "有效网址" |
2084 | 2094 |
@@ -2086,8 +2096,8 @@ msgstr "有效网址" | ||
2086 | 2096 | msgid "valid base64 key with %d characters" |
2087 | 2097 | msgstr "包含 %d 个字符的有效 base64 密钥" |
2088 | 2098 | |
2089 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:950 | |
2090 | -#: htdocs/luci-static/resources/view/homeproxy/client.js:979 | |
2099 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:943 | |
2100 | +#: htdocs/luci-static/resources/view/homeproxy/client.js:972 | |
2091 | 2101 | msgid "valid hostname" |
2092 | 2102 | msgstr "有效主机名" |
2093 | 2103 |
@@ -17,9 +17,8 @@ | ||
17 | 17 | 1.118.32.0/24 |
18 | 18 | 1.119.0.0/17 |
19 | 19 | 1.119.128.0/18 |
20 | -1.119.192.0/21 | |
21 | -1.119.200.0/22 | |
22 | -1.119.204.0/24 | |
20 | +1.119.192.0/20 | |
21 | +1.119.208.0/22 | |
23 | 22 | 1.180.0.0/14 |
24 | 23 | 1.184.0.0/15 |
25 | 24 | 1.188.0.0/14 |
@@ -33,7 +32,6 @@ | ||
33 | 32 | 5.10.136.0/22 |
34 | 33 | 5.10.140.0/24 |
35 | 34 | 5.10.142.0/23 |
36 | -5.105.19.0/24 | |
37 | 35 | 5.154.132.0/23 |
38 | 36 | 5.154.136.0/22 |
39 | 37 | 5.154.140.0/23 |
@@ -52,15 +50,16 @@ | ||
52 | 50 | 8.144.0.0/14 |
53 | 51 | 14.16.0.0/12 |
54 | 52 | 14.102.156.0/22 |
53 | +14.102.233.0/24 | |
54 | +14.102.237.0/24 | |
55 | 55 | 14.104.0.0/13 |
56 | 56 | 14.112.0.0/12 |
57 | 57 | 14.134.0.0/15 |
58 | 58 | 14.144.0.0/12 |
59 | 59 | 14.204.0.0/15 |
60 | 60 | 14.208.0.0/12 |
61 | -23.144.232.0/24 | |
62 | -23.146.72.0/24 | |
63 | 61 | 23.146.88.0/24 |
62 | +23.148.24.0/24 | |
64 | 63 | 27.0.128.0/24 |
65 | 64 | 27.0.130.0/23 |
66 | 65 | 27.0.132.0/22 |
@@ -89,6 +88,7 @@ | ||
89 | 88 | 27.184.0.0/13 |
90 | 89 | 27.192.0.0/11 |
91 | 90 | 27.224.0.0/14 |
91 | +31.204.26.0/23 | |
92 | 92 | 36.1.0.0/16 |
93 | 93 | 36.4.0.0/14 |
94 | 94 | 36.16.0.0/12 |
@@ -111,14 +111,16 @@ | ||
111 | 111 | 36.255.116.0/22 |
112 | 112 | 36.255.164.0/24 |
113 | 113 | 36.255.192.0/23 |
114 | -37.77.144.0/24 | |
115 | 114 | 37.128.240.0/21 |
116 | -38.55.149.0/24 | |
115 | +38.60.34.0/24 | |
116 | +38.60.40.0/24 | |
117 | +38.60.45.0/24 | |
117 | 118 | 38.64.76.0/23 |
118 | 119 | 38.64.78.0/24 |
119 | 120 | 38.64.92.0/24 |
120 | 121 | 38.84.76.0/22 |
121 | 122 | 38.95.232.0/23 |
123 | +38.102.232.0/24 | |
122 | 124 | 38.111.220.0/23 |
123 | 125 | 39.64.0.0/11 |
124 | 126 | 39.96.0.0/13 |
@@ -254,18 +256,17 @@ | ||
254 | 256 | 43.227.104.0/22 |
255 | 257 | 43.227.140.0/22 |
256 | 258 | 43.227.152.0/21 |
257 | -43.227.160.0/20 | |
258 | 259 | 43.227.176.0/21 |
259 | -43.227.192.0/19 | |
260 | +43.227.192.0/21 | |
261 | +43.227.216.0/21 | |
260 | 262 | 43.227.252.0/22 |
261 | -43.228.0.0/19 | |
263 | +43.228.0.0/21 | |
262 | 264 | 43.228.36.0/22 |
263 | -43.228.40.0/21 | |
264 | -43.228.48.0/20 | |
265 | 265 | 43.228.64.0/21 |
266 | 266 | 43.228.76.0/22 |
267 | 267 | 43.228.116.0/22 |
268 | 268 | 43.229.48.0/22 |
269 | +43.229.152.0/24 | |
269 | 270 | 43.229.185.0/24 |
270 | 271 | 43.229.186.0/23 |
271 | 272 | 43.229.216.0/22 |
@@ -384,7 +385,6 @@ | ||
384 | 385 | 43.254.248.0/22 |
385 | 386 | 43.255.0.0/21 |
386 | 387 | 43.255.37.0/24 |
387 | -43.255.39.0/24 | |
388 | 388 | 43.255.68.0/22 |
389 | 389 | 43.255.84.0/22 |
390 | 390 | 43.255.96.0/22 |
@@ -442,9 +442,9 @@ | ||
442 | 442 | 45.121.55.0/24 |
443 | 443 | 45.121.212.0/22 |
444 | 444 | 45.123.128.0/22 |
445 | -45.123.193.0/24 | |
446 | -45.123.194.0/24 | |
447 | 445 | 45.124.68.0/22 |
446 | +45.124.77.0/24 | |
447 | +45.124.78.0/23 | |
448 | 448 | 45.124.80.0/22 |
449 | 449 | 45.124.124.0/22 |
450 | 450 | 45.125.44.0/22 |
@@ -471,7 +471,7 @@ | ||
471 | 471 | 45.202.8.0/23 |
472 | 472 | 45.204.24.0/21 |
473 | 473 | 45.207.22.0/23 |
474 | -45.207.24.0/21 | |
474 | +45.207.24.0/22 | |
475 | 475 | 45.207.128.0/19 |
476 | 476 | 45.207.160.0/21 |
477 | 477 | 45.207.176.0/20 |
@@ -504,6 +504,7 @@ | ||
504 | 504 | 45.254.48.0/23 |
505 | 505 | 45.254.50.0/24 |
506 | 506 | 45.254.64.0/20 |
507 | +46.8.195.0/24 | |
507 | 508 | 46.8.203.0/24 |
508 | 509 | 46.37.112.0/24 |
509 | 510 | 46.232.20.0/24 |
@@ -517,11 +518,12 @@ | ||
517 | 518 | 47.120.0.0/15 |
518 | 519 | 47.122.0.0/18 |
519 | 520 | 47.123.0.0/16 |
520 | -47.246.0.0/22 | |
521 | +47.246.0.0/23 | |
522 | +47.246.2.0/24 | |
521 | 523 | 47.246.4.0/24 |
522 | 524 | 47.246.6.0/23 |
523 | 525 | 47.246.8.0/24 |
524 | -47.246.10.0/23 | |
526 | +47.246.10.0/24 | |
525 | 527 | 47.246.12.0/23 |
526 | 528 | 47.246.15.0/24 |
527 | 529 | 47.246.16.0/22 |
@@ -537,7 +539,6 @@ | ||
537 | 539 | 47.246.46.0/24 |
538 | 540 | 47.246.48.0/23 |
539 | 541 | 47.246.50.0/24 |
540 | -47.246.52.0/23 | |
541 | 542 | 47.246.57.0/24 |
542 | 543 | 47.246.58.0/24 |
543 | 544 | 47.246.60.0/22 |
@@ -568,6 +569,7 @@ | ||
568 | 569 | 49.64.0.0/11 |
569 | 570 | 49.112.0.0/13 |
570 | 571 | 49.120.0.0/14 |
572 | +49.128.219.0/24 | |
571 | 573 | 49.128.223.0/24 |
572 | 574 | 49.140.0.0/15 |
573 | 575 | 49.208.0.0/15 |
@@ -623,7 +625,6 @@ | ||
623 | 625 | 58.68.247.0/24 |
624 | 626 | 58.82.0.0/17 |
625 | 627 | 58.83.0.0/16 |
626 | -58.84.5.0/24 | |
627 | 628 | 58.87.64.0/18 |
628 | 629 | 58.99.128.0/17 |
629 | 630 | 58.100.0.0/15 |
@@ -715,14 +716,10 @@ | ||
715 | 716 | 61.241.128.0/18 |
716 | 717 | 61.241.192.0/19 |
717 | 718 | 61.242.0.0/16 |
718 | -61.243.0.0/18 | |
719 | -61.243.64.0/19 | |
720 | -61.243.96.0/20 | |
721 | -61.243.112.0/21 | |
722 | -61.243.124.0/22 | |
719 | +61.243.0.0/17 | |
723 | 720 | 61.243.128.0/18 |
724 | 721 | 61.243.192.0/19 |
725 | -62.72.185.0/24 | |
722 | +62.233.36.0/24 | |
726 | 723 | 62.234.0.0/16 |
727 | 724 | 63.140.0.0/24 |
728 | 725 | 63.140.3.0/24 |
@@ -741,7 +738,6 @@ | ||
741 | 738 | 69.163.104.0/24 |
742 | 739 | 69.163.106.0/23 |
743 | 740 | 69.163.108.0/24 |
744 | -69.165.72.0/23 | |
745 | 741 | 69.172.70.0/24 |
746 | 742 | 69.230.192.0/18 |
747 | 743 | 69.231.128.0/18 |
@@ -759,14 +755,15 @@ | ||
759 | 755 | 81.173.28.0/24 |
760 | 756 | 82.156.0.0/15 |
761 | 757 | 84.32.69.0/24 |
762 | -85.92.115.0/24 | |
758 | +85.28.60.0/24 | |
763 | 759 | 85.133.222.0/24 |
764 | 760 | 85.158.149.0/24 |
765 | 761 | 85.237.205.0/24 |
766 | 762 | 87.254.207.0/24 |
767 | 763 | 88.218.204.0/22 |
764 | +89.19.58.0/24 | |
768 | 765 | 89.116.144.0/24 |
769 | -91.188.204.0/24 | |
766 | +89.117.67.0/24 | |
770 | 767 | 92.114.85.0/24 |
771 | 768 | 93.113.171.0/24 |
772 | 769 | 93.183.14.0/24 |
@@ -796,7 +793,6 @@ | ||
796 | 793 | 101.37.0.0/16 |
797 | 794 | 101.38.0.0/15 |
798 | 795 | 101.40.0.0/14 |
799 | -101.49.128.0/22 | |
800 | 796 | 101.50.56.0/22 |
801 | 797 | 101.52.4.0/24 |
802 | 798 | 101.52.6.0/24 |
@@ -946,6 +942,7 @@ | ||
946 | 942 | 103.28.204.0/22 |
947 | 943 | 103.28.212.0/22 |
948 | 944 | 103.29.16.0/22 |
945 | +103.29.24.0/23 | |
949 | 946 | 103.29.136.0/22 |
950 | 947 | 103.30.4.0/22 |
951 | 948 | 103.30.148.0/22 |
@@ -954,8 +951,7 @@ | ||
954 | 951 | 103.31.72.0/24 |
955 | 952 | 103.31.200.0/22 |
956 | 953 | 103.31.236.0/22 |
957 | -103.35.105.0/24 | |
958 | -103.35.106.0/24 | |
954 | +103.35.104.0/22 | |
959 | 955 | 103.35.220.0/23 |
960 | 956 | 103.36.28.0/22 |
961 | 957 | 103.36.60.0/22 |
@@ -993,7 +989,7 @@ | ||
993 | 989 | 103.40.192.0/22 |
994 | 990 | 103.40.232.0/22 |
995 | 991 | 103.40.240.0/20 |
996 | -103.41.0.0/23 | |
992 | +103.41.0.0/22 | |
997 | 993 | 103.41.16.0/22 |
998 | 994 | 103.41.164.0/22 |
999 | 995 | 103.42.8.0/22 |
@@ -1021,24 +1017,17 @@ | ||
1021 | 1017 | 103.45.176.0/20 |
1022 | 1018 | 103.45.248.0/22 |
1023 | 1019 | 103.46.12.0/22 |
1024 | -103.46.16.0/20 | |
1025 | -103.46.32.0/19 | |
1026 | -103.46.64.0/18 | |
1027 | 1020 | 103.46.128.0/21 |
1028 | 1021 | 103.46.136.0/22 |
1029 | 1022 | 103.46.168.0/22 |
1030 | 1023 | 103.47.48.0/22 |
1031 | 1024 | 103.47.80.0/22 |
1032 | -103.48.168.0/24 | |
1033 | -103.48.170.0/24 | |
1034 | 1025 | 103.48.232.0/23 |
1035 | 1026 | 103.49.12.0/22 |
1036 | 1027 | 103.49.60.0/24 |
1037 | 1028 | 103.49.62.0/24 |
1038 | -103.49.108.0/22 | |
1039 | 1029 | 103.49.180.0/22 |
1040 | -103.49.196.0/23 | |
1041 | -103.49.198.0/24 | |
1030 | +103.49.196.0/22 | |
1042 | 1031 | 103.50.0.0/22 |
1043 | 1032 | 103.50.36.0/22 |
1044 | 1033 | 103.50.252.0/23 |
@@ -1052,6 +1041,7 @@ | ||
1052 | 1041 | 103.53.204.0/22 |
1053 | 1042 | 103.53.208.0/22 |
1054 | 1043 | 103.54.48.0/22 |
1044 | +103.54.121.0/24 | |
1055 | 1045 | 103.55.172.0/22 |
1056 | 1046 | 103.55.228.0/22 |
1057 | 1047 | 103.56.20.0/22 |
@@ -1075,7 +1065,8 @@ | ||
1075 | 1065 | 103.61.143.0/24 |
1076 | 1066 | 103.61.153.0/24 |
1077 | 1067 | 103.61.154.0/23 |
1078 | -103.61.188.0/22 | |
1068 | +103.61.188.0/24 | |
1069 | +103.61.190.0/23 | |
1079 | 1070 | 103.62.52.0/23 |
1080 | 1071 | 103.62.55.0/24 |
1081 | 1072 | 103.63.244.0/22 |
@@ -1091,6 +1082,7 @@ | ||
1091 | 1082 | 103.69.16.0/22 |
1092 | 1083 | 103.70.220.0/22 |
1093 | 1084 | 103.71.68.0/22 |
1085 | +103.71.94.0/24 | |
1094 | 1086 | 103.71.120.0/21 |
1095 | 1087 | 103.71.128.0/22 |
1096 | 1088 | 103.71.196.0/22 |
@@ -1157,12 +1149,12 @@ | ||
1157 | 1149 | 103.90.188.0/22 |
1158 | 1150 | 103.91.176.0/22 |
1159 | 1151 | 103.91.208.0/22 |
1152 | +103.92.88.0/22 | |
1160 | 1153 | 103.93.180.0/22 |
1161 | 1154 | 103.94.12.0/22 |
1162 | 1155 | 103.94.20.0/23 |
1163 | 1156 | 103.94.200.0/22 |
1164 | -103.95.64.0/21 | |
1165 | -103.95.207.0/24 | |
1157 | +103.95.68.0/22 | |
1166 | 1158 | 103.95.220.0/23 |
1167 | 1159 | 103.95.222.0/24 |
1168 | 1160 | 103.95.252.0/22 |
@@ -1176,13 +1168,14 @@ | ||
1176 | 1168 | 103.98.127.0/24 |
1177 | 1169 | 103.98.168.0/22 |
1178 | 1170 | 103.98.220.0/22 |
1179 | -103.98.248.0/21 | |
1171 | +103.98.248.0/23 | |
1172 | +103.98.251.0/24 | |
1173 | +103.98.252.0/22 | |
1180 | 1174 | 103.99.40.0/23 |
1181 | 1175 | 103.99.152.0/22 |
1182 | 1176 | 103.100.64.0/22 |
1183 | 1177 | 103.101.124.0/23 |
1184 | -103.101.153.0/24 | |
1185 | -103.101.176.0/21 | |
1178 | +103.101.180.0/22 | |
1186 | 1179 | 103.102.4.0/23 |
1187 | 1180 | 103.102.7.0/24 |
1188 | 1181 | 103.102.192.0/21 |
@@ -1193,7 +1186,6 @@ | ||
1193 | 1186 | 103.105.12.0/22 |
1194 | 1187 | 103.105.60.0/22 |
1195 | 1188 | 103.105.200.0/22 |
1196 | -103.107.8.0/24 | |
1197 | 1189 | 103.107.188.0/22 |
1198 | 1190 | 103.107.216.0/22 |
1199 | 1191 | 103.108.160.0/24 |
@@ -1284,7 +1276,7 @@ | ||
1284 | 1276 | 103.144.108.0/23 |
1285 | 1277 | 103.144.158.0/23 |
1286 | 1278 | 103.145.38.0/23 |
1287 | -103.145.42.0/24 | |
1279 | +103.145.42.0/23 | |
1288 | 1280 | 103.145.72.0/24 |
1289 | 1281 | 103.145.90.0/23 |
1290 | 1282 | 103.145.92.0/23 |
@@ -1300,7 +1292,7 @@ | ||
1300 | 1292 | 103.150.181.0/24 |
1301 | 1293 | 103.150.210.0/23 |
1302 | 1294 | 103.150.212.0/24 |
1303 | -103.151.148.0/22 | |
1295 | +103.151.148.0/23 | |
1304 | 1296 | 103.151.178.0/23 |
1305 | 1297 | 103.151.216.0/23 |
1306 | 1298 | 103.152.28.0/23 |
@@ -1332,33 +1324,39 @@ | ||
1332 | 1324 | 103.164.32.0/23 |
1333 | 1325 | 103.165.110.0/23 |
1334 | 1326 | 103.166.174.0/23 |
1327 | +103.167.212.0/24 | |
1335 | 1328 | 103.169.50.0/23 |
1336 | 1329 | 103.169.62.0/23 |
1337 | 1330 | 103.170.4.0/23 |
1338 | -103.170.72.0/24 | |
1331 | +103.170.84.0/24 | |
1339 | 1332 | 103.170.210.0/23 |
1340 | 1333 | 103.170.212.0/23 |
1341 | 1334 | 103.172.52.0/24 |
1342 | 1335 | 103.172.191.0/24 |
1343 | 1336 | 103.174.94.0/23 |
1344 | 1337 | 103.177.28.0/23 |
1345 | -103.177.45.0/24 | |
1346 | 1338 | 103.179.78.0/23 |
1339 | +103.179.97.0/24 | |
1347 | 1340 | 103.180.108.0/23 |
1341 | +103.181.84.0/24 | |
1348 | 1342 | 103.181.164.0/23 |
1349 | 1343 | 103.181.203.0/24 |
1350 | 1344 | 103.181.234.0/24 |
1351 | 1345 | 103.183.66.0/23 |
1346 | +103.183.216.0/24 | |
1352 | 1347 | 103.183.218.0/24 |
1353 | 1348 | 103.184.44.0/23 |
1354 | 1349 | 103.186.4.0/23 |
1355 | -103.186.108.0/24 | |
1350 | +103.186.108.0/23 | |
1356 | 1351 | 103.189.93.0/24 |
1357 | 1352 | 103.189.140.0/23 |
1358 | 1353 | 103.189.154.0/23 |
1359 | 1354 | 103.190.118.0/24 |
1360 | 1355 | 103.190.122.0/23 |
1361 | 1356 | 103.190.178.0/24 |
1357 | +103.191.102.0/24 | |
1358 | +103.191.242.0/23 | |
1359 | +103.192.0.0/23 | |
1362 | 1360 | 103.192.4.0/23 |
1363 | 1361 | 103.192.188.0/22 |
1364 | 1362 | 103.192.212.0/22 |
@@ -1391,7 +1389,7 @@ | ||
1391 | 1389 | 103.203.216.0/22 |
1392 | 1390 | 103.204.72.0/22 |
1393 | 1391 | 103.205.4.0/22 |
1394 | -103.205.40.0/24 | |
1392 | +103.205.40.0/23 | |
1395 | 1393 | 103.205.136.0/24 |
1396 | 1394 | 103.205.139.0/24 |
1397 | 1395 | 103.205.188.0/22 |
@@ -1455,17 +1453,16 @@ | ||
1455 | 1453 | 103.227.120.0/22 |
1456 | 1454 | 103.227.136.0/22 |
1457 | 1455 | 103.227.228.0/22 |
1458 | -103.228.64.0/24 | |
1459 | 1456 | 103.228.136.0/22 |
1460 | 1457 | 103.228.160.0/22 |
1461 | 1458 | 103.228.204.0/23 |
1459 | +103.228.208.0/22 | |
1462 | 1460 | 103.228.228.0/22 |
1463 | 1461 | 103.229.148.0/22 |
1464 | 1462 | 103.229.212.0/22 |
1465 | 1463 | 103.229.216.0/21 |
1466 | 1464 | 103.229.236.0/22 |
1467 | -103.230.8.0/23 | |
1468 | -103.230.200.0/22 | |
1465 | +103.230.9.0/24 | |
1469 | 1466 | 103.230.212.0/22 |
1470 | 1467 | 103.230.236.0/22 |
1471 | 1468 | 103.231.16.0/24 |
@@ -1480,10 +1477,10 @@ | ||
1480 | 1477 | 103.233.138.0/24 |
1481 | 1478 | 103.233.228.0/22 |
1482 | 1479 | 103.234.20.0/22 |
1483 | -103.234.54.0/24 | |
1484 | 1480 | 103.234.56.0/22 |
1485 | 1481 | 103.234.96.0/22 |
1486 | 1482 | 103.234.128.0/22 |
1483 | +103.235.19.0/24 | |
1487 | 1484 | 103.235.44.0/22 |
1488 | 1485 | 103.235.85.0/24 |
1489 | 1486 | 103.235.136.0/22 |
@@ -1492,11 +1489,10 @@ | ||
1492 | 1489 | 103.235.220.0/22 |
1493 | 1490 | 103.235.224.0/19 |
1494 | 1491 | 103.236.120.0/22 |
1495 | -103.236.220.0/22 | |
1496 | 1492 | 103.236.240.0/20 |
1497 | 1493 | 103.237.8.0/22 |
1498 | 1494 | 103.237.28.0/23 |
1499 | -103.237.103.0/24 | |
1495 | +103.237.101.0/24 | |
1500 | 1496 | 103.237.248.0/21 |
1501 | 1497 | 103.238.0.0/21 |
1502 | 1498 | 103.238.16.0/22 |
@@ -1523,7 +1519,7 @@ | ||
1523 | 1519 | 103.240.84.0/22 |
1524 | 1520 | 103.240.124.0/22 |
1525 | 1521 | 103.240.244.0/22 |
1526 | -103.241.92.0/22 | |
1522 | +103.241.95.0/24 | |
1527 | 1523 | 103.242.128.0/23 |
1528 | 1524 | 103.242.130.0/24 |
1529 | 1525 | 103.242.168.0/23 |
@@ -1640,6 +1636,7 @@ | ||
1640 | 1636 | 106.224.0.0/14 |
1641 | 1637 | 106.228.0.0/15 |
1642 | 1638 | 106.230.0.0/16 |
1639 | +109.234.76.0/24 | |
1643 | 1640 | 109.244.0.0/16 |
1644 | 1641 | 110.6.0.0/15 |
1645 | 1642 | 110.16.0.0/14 |
@@ -1707,6 +1704,7 @@ | ||
1707 | 1704 | 111.176.0.0/13 |
1708 | 1705 | 111.186.0.0/15 |
1709 | 1706 | 111.192.0.0/12 |
1707 | +111.208.121.0/24 | |
1710 | 1708 | 111.212.0.0/14 |
1711 | 1709 | 111.221.28.0/24 |
1712 | 1710 | 111.221.128.0/17 |
@@ -1799,6 +1797,7 @@ | ||
1799 | 1797 | 114.28.192.0/23 |
1800 | 1798 | 114.28.224.0/22 |
1801 | 1799 | 114.28.228.0/23 |
1800 | +114.28.235.0/24 | |
1802 | 1801 | 114.28.236.0/22 |
1803 | 1802 | 114.28.248.0/21 |
1804 | 1803 | 114.55.0.0/16 |
@@ -1929,7 +1928,6 @@ | ||
1929 | 1928 | 116.193.18.0/24 |
1930 | 1929 | 116.193.32.0/19 |
1931 | 1930 | 116.196.64.0/18 |
1932 | -116.196.128.0/24 | |
1933 | 1931 | 116.196.176.0/21 |
1934 | 1932 | 116.196.192.0/21 |
1935 | 1933 | 116.196.218.0/23 |
@@ -1941,7 +1939,7 @@ | ||
1941 | 1939 | 116.198.176.0/21 |
1942 | 1940 | 116.198.192.0/18 |
1943 | 1941 | 116.199.0.0/17 |
1944 | -116.204.64.0/18 | |
1942 | +116.204.0.0/17 | |
1945 | 1943 | 116.204.132.0/22 |
1946 | 1944 | 116.205.0.0/18 |
1947 | 1945 | 116.205.128.0/17 |
@@ -2324,8 +2322,6 @@ | ||
2324 | 2322 | 121.36.0.0/15 |
2325 | 2323 | 121.40.0.0/14 |
2326 | 2324 | 121.46.0.0/20 |
2327 | -121.46.20.0/22 | |
2328 | -121.46.24.0/21 | |
2329 | 2325 | 121.46.128.0/21 |
2330 | 2326 | 121.46.140.0/22 |
2331 | 2327 | 121.46.144.0/20 |
@@ -2425,8 +2421,6 @@ | ||
2425 | 2421 | 122.240.0.0/13 |
2426 | 2422 | 122.248.48.0/21 |
2427 | 2423 | 122.248.56.0/22 |
2428 | -122.254.119.0/24 | |
2429 | -123.0.130.0/24 | |
2430 | 2424 | 123.0.139.0/24 |
2431 | 2425 | 123.0.152.0/24 |
2432 | 2426 | 123.4.0.0/14 |
@@ -2480,6 +2474,7 @@ | ||
2480 | 2474 | 123.232.0.0/14 |
2481 | 2475 | 123.244.0.0/14 |
2482 | 2476 | 123.249.0.0/17 |
2477 | +123.253.224.0/23 | |
2483 | 2478 | 124.6.64.0/18 |
2484 | 2479 | 124.14.1.0/24 |
2485 | 2480 | 124.14.2.0/23 |
@@ -2500,6 +2495,7 @@ | ||
2500 | 2495 | 124.47.0.0/18 |
2501 | 2496 | 124.64.0.0/15 |
2502 | 2497 | 124.66.0.0/17 |
2498 | +124.66.208.0/24 | |
2503 | 2499 | 124.67.0.0/16 |
2504 | 2500 | 124.68.252.0/23 |
2505 | 2501 | 124.70.0.0/16 |
@@ -2557,6 +2553,7 @@ | ||
2557 | 2553 | 124.249.0.0/17 |
2558 | 2554 | 124.250.0.0/15 |
2559 | 2555 | 124.254.0.0/18 |
2556 | +125.24.253.0/24 | |
2560 | 2557 | 125.32.0.0/12 |
2561 | 2558 | 125.58.128.0/17 |
2562 | 2559 | 125.61.128.0/19 |
@@ -2585,6 +2582,8 @@ | ||
2585 | 2582 | 125.254.188.0/23 |
2586 | 2583 | 125.254.190.0/24 |
2587 | 2584 | 128.108.0.0/16 |
2585 | +128.254.185.0/24 | |
2586 | +128.254.187.0/24 | |
2588 | 2587 | 129.28.0.0/16 |
2589 | 2588 | 129.204.0.0/16 |
2590 | 2589 | 129.211.0.0/16 |
@@ -2687,6 +2686,8 @@ | ||
2687 | 2686 | 145.14.88.0/24 |
2688 | 2687 | 145.14.90.0/24 |
2689 | 2688 | 145.14.92.0/24 |
2689 | +146.19.69.0/24 | |
2690 | +146.19.155.0/24 | |
2690 | 2691 | 146.19.167.0/24 |
2691 | 2692 | 146.19.236.0/24 |
2692 | 2693 | 146.56.192.0/18 |
@@ -2699,7 +2700,8 @@ | ||
2699 | 2700 | 147.78.132.0/22 |
2700 | 2701 | 148.70.0.0/16 |
2701 | 2702 | 148.178.0.0/17 |
2702 | -149.126.192.0/24 | |
2703 | +149.115.120.0/22 | |
2704 | +149.115.124.0/24 | |
2703 | 2705 | 150.107.1.0/24 |
2704 | 2706 | 150.107.3.0/24 |
2705 | 2707 | 150.109.0.0/16 |
@@ -2732,10 +2734,21 @@ | ||
2732 | 2734 | 153.99.0.0/16 |
2733 | 2735 | 153.101.0.0/16 |
2734 | 2736 | 153.118.0.0/15 |
2737 | +153.254.119.0/24 | |
2735 | 2738 | 154.8.128.0/17 |
2739 | +154.13.136.0/24 | |
2740 | +154.13.138.0/24 | |
2741 | +154.13.197.0/24 | |
2742 | +154.13.216.0/24 | |
2743 | +154.13.219.0/24 | |
2744 | +154.13.221.0/24 | |
2745 | +154.13.222.0/24 | |
2736 | 2746 | 154.18.162.0/24 |
2737 | 2747 | 154.19.37.0/24 |
2738 | 2748 | 154.19.40.0/22 |
2749 | +154.29.88.0/24 | |
2750 | +154.29.94.0/24 | |
2751 | +154.38.64.0/20 | |
2739 | 2752 | 154.39.71.0/24 |
2740 | 2753 | 154.48.252.0/24 |
2741 | 2754 | 154.72.40.0/21 |
@@ -2745,9 +2758,8 @@ | ||
2745 | 2758 | 154.85.44.0/23 |
2746 | 2759 | 154.85.48.0/20 |
2747 | 2760 | 154.85.64.0/23 |
2761 | +154.85.66.0/24 | |
2748 | 2762 | 154.88.3.0/24 |
2749 | -154.89.2.0/24 | |
2750 | -154.89.4.0/24 | |
2751 | 2763 | 154.91.32.0/23 |
2752 | 2764 | 154.91.34.0/24 |
2753 | 2765 | 154.92.24.0/22 |
@@ -2782,8 +2794,6 @@ | ||
2782 | 2794 | 154.223.182.0/24 |
2783 | 2795 | 154.223.184.0/22 |
2784 | 2796 | 154.223.191.0/24 |
2785 | -155.235.232.0/21 | |
2786 | -155.235.240.0/22 | |
2787 | 2797 | 156.59.202.0/23 |
2788 | 2798 | 156.59.204.0/23 |
2789 | 2799 | 156.59.206.0/24 |
@@ -2794,7 +2804,7 @@ | ||
2794 | 2804 | 156.107.178.0/23 |
2795 | 2805 | 156.107.180.0/23 |
2796 | 2806 | 156.224.8.0/21 |
2797 | -156.225.96.0/23 | |
2807 | +156.225.96.0/24 | |
2798 | 2808 | 156.225.98.0/24 |
2799 | 2809 | 156.225.101.0/24 |
2800 | 2810 | 156.225.102.0/23 |
@@ -2821,6 +2831,7 @@ | ||
2821 | 2831 | 156.242.4.0/23 |
2822 | 2832 | 156.242.6.0/24 |
2823 | 2833 | 156.242.8.0/24 |
2834 | +156.245.5.0/24 | |
2824 | 2835 | 156.246.18.0/23 |
2825 | 2836 | 156.246.20.0/24 |
2826 | 2837 | 156.247.16.0/20 |
@@ -2848,6 +2859,7 @@ | ||
2848 | 2859 | 159.226.0.0/16 |
2849 | 2860 | 160.19.208.0/21 |
2850 | 2861 | 160.83.110.0/24 |
2862 | +160.181.176.0/20 | |
2851 | 2863 | 160.202.60.0/22 |
2852 | 2864 | 160.202.168.0/22 |
2853 | 2865 | 160.202.212.0/22 |
@@ -2864,7 +2876,7 @@ | ||
2864 | 2876 | 163.0.0.0/16 |
2865 | 2877 | 163.5.79.0/24 |
2866 | 2878 | 163.47.4.0/22 |
2867 | -163.53.18.0/24 | |
2879 | +163.53.16.0/24 | |
2868 | 2880 | 163.53.36.0/22 |
2869 | 2881 | 163.53.44.0/22 |
2870 | 2882 | 163.53.60.0/22 |
@@ -2885,9 +2897,7 @@ | ||
2885 | 2897 | 163.181.25.0/24 |
2886 | 2898 | 163.181.26.0/24 |
2887 | 2899 | 163.181.28.0/24 |
2888 | -163.181.32.0/22 | |
2889 | -163.181.36.0/24 | |
2890 | -163.181.38.0/23 | |
2900 | +163.181.32.0/21 | |
2891 | 2901 | 163.181.40.0/24 |
2892 | 2902 | 163.181.42.0/23 |
2893 | 2903 | 163.181.44.0/24 |
@@ -2919,12 +2929,11 @@ | ||
2919 | 2929 | 163.181.120.0/23 |
2920 | 2930 | 163.181.122.0/24 |
2921 | 2931 | 163.181.126.0/23 |
2922 | -163.197.32.0/24 | |
2923 | 2932 | 163.204.0.0/16 |
2924 | 2933 | 163.228.0.0/16 |
2925 | 2934 | 163.244.246.0/24 |
2926 | 2935 | 166.1.161.0/24 |
2927 | -166.1.172.0/24 | |
2936 | +166.1.164.0/24 | |
2928 | 2937 | 166.111.0.0/16 |
2929 | 2938 | 167.139.0.0/16 |
2930 | 2939 | 167.189.0.0/16 |
@@ -2951,8 +2960,6 @@ | ||
2951 | 2960 | 171.112.0.0/12 |
2952 | 2961 | 171.208.0.0/12 |
2953 | 2962 | 172.81.192.0/18 |
2954 | -173.240.14.0/24 | |
2955 | -174.136.237.0/24 | |
2956 | 2963 | 174.136.239.0/24 |
2957 | 2964 | 175.0.0.0/12 |
2958 | 2965 | 175.16.0.0/13 |
@@ -2982,6 +2989,7 @@ | ||
2982 | 2989 | 175.188.188.0/22 |
2983 | 2990 | 175.190.24.0/21 |
2984 | 2991 | 175.190.126.0/23 |
2992 | +176.100.157.0/24 | |
2985 | 2993 | 176.105.231.0/24 |
2986 | 2994 | 180.76.0.0/14 |
2987 | 2995 | 180.84.0.0/15 |
@@ -3014,9 +3022,7 @@ | ||
3014 | 3022 | 180.184.128.0/20 |
3015 | 3023 | 180.184.160.0/20 |
3016 | 3024 | 180.184.176.0/21 |
3017 | -180.184.192.0/20 | |
3018 | -180.184.208.0/21 | |
3019 | -180.184.224.0/19 | |
3025 | +180.184.192.0/18 | |
3020 | 3026 | 180.186.38.0/23 |
3021 | 3027 | 180.186.40.0/22 |
3022 | 3028 | 180.186.44.0/24 |
@@ -3081,23 +3087,28 @@ | ||
3081 | 3087 | 183.184.0.0/13 |
3082 | 3088 | 183.192.0.0/10 |
3083 | 3089 | 185.10.104.0/24 |
3090 | +185.25.104.0/24 | |
3084 | 3091 | 185.39.51.0/24 |
3085 | 3092 | 185.75.172.0/23 |
3086 | 3093 | 185.75.174.0/24 |
3094 | +185.111.27.0/24 | |
3087 | 3095 | 185.129.110.0/24 |
3088 | 3096 | 185.135.140.0/24 |
3089 | 3097 | 185.135.143.0/24 |
3090 | 3098 | 185.188.5.0/24 |
3091 | 3099 | 185.216.248.0/22 |
3092 | 3100 | 185.225.75.0/24 |
3101 | +185.232.18.0/24 | |
3093 | 3102 | 185.234.214.0/23 |
3103 | +185.235.227.0/24 | |
3094 | 3104 | 185.241.43.0/24 |
3095 | 3105 | 185.243.43.0/24 |
3096 | 3106 | 185.255.37.0/24 |
3097 | 3107 | 185.255.152.0/23 |
3098 | -185.255.169.0/24 | |
3099 | 3108 | 188.131.128.0/17 |
3100 | 3109 | 188.240.225.0/24 |
3110 | +188.240.230.0/24 | |
3111 | +188.241.243.0/24 | |
3101 | 3112 | 191.101.45.0/24 |
3102 | 3113 | 191.101.47.0/24 |
3103 | 3114 | 192.55.46.0/24 |
@@ -3114,10 +3125,13 @@ | ||
3114 | 3125 | 193.108.56.0/24 |
3115 | 3126 | 193.109.82.0/24 |
3116 | 3127 | 193.112.0.0/16 |
3128 | +193.163.95.0/24 | |
3129 | +193.202.113.0/24 | |
3117 | 3130 | 193.228.169.0/24 |
3118 | 3131 | 194.15.39.0/24 |
3119 | 3132 | 194.50.1.0/24 |
3120 | 3133 | 194.58.42.0/24 |
3134 | +194.62.16.0/24 | |
3121 | 3135 | 194.119.13.0/24 |
3122 | 3136 | 194.119.15.0/24 |
3123 | 3137 | 194.138.202.0/23 |
@@ -3125,7 +3139,7 @@ | ||
3125 | 3139 | 194.180.37.0/24 |
3126 | 3140 | 195.180.157.0/24 |
3127 | 3141 | 195.242.242.0/24 |
3128 | -198.8.58.0/23 | |
3142 | +198.8.58.0/24 | |
3129 | 3143 | 198.175.100.0/22 |
3130 | 3144 | 198.208.17.0/24 |
3131 | 3145 | 198.208.19.0/24 |
@@ -3428,10 +3442,10 @@ | ||
3428 | 3442 | 203.107.26.0/23 |
3429 | 3443 | 203.107.28.0/22 |
3430 | 3444 | 203.107.32.0/19 |
3431 | -203.107.72.0/22 | |
3432 | -203.107.76.0/23 | |
3445 | +203.107.72.0/21 | |
3433 | 3446 | 203.107.80.0/21 |
3434 | 3447 | 203.107.96.0/23 |
3448 | +203.107.100.0/22 | |
3435 | 3449 | 203.107.104.0/22 |
3436 | 3450 | 203.107.108.0/23 |
3437 | 3451 | 203.110.160.0/19 |
@@ -3467,7 +3481,7 @@ | ||
3467 | 3481 | 203.160.109.0/24 |
3468 | 3482 | 203.160.110.0/23 |
3469 | 3483 | 203.160.129.0/24 |
3470 | -203.160.192.0/19 | |
3484 | +203.160.212.0/24 | |
3471 | 3485 | 203.161.192.0/19 |
3472 | 3486 | 203.166.160.0/22 |
3473 | 3487 | 203.166.165.0/24 |
@@ -3550,7 +3564,6 @@ | ||
3550 | 3564 | 203.223.21.0/24 |
3551 | 3565 | 203.223.23.0/24 |
3552 | 3566 | 204.114.176.0/23 |
3553 | -205.132.61.0/24 | |
3554 | 3567 | 206.161.216.0/23 |
3555 | 3568 | 206.161.218.0/24 |
3556 | 3569 | 206.206.126.0/24 |
@@ -3559,8 +3572,8 @@ | ||
3559 | 3572 | 207.226.153.0/24 |
3560 | 3573 | 207.226.154.0/24 |
3561 | 3574 | 208.99.48.0/24 |
3575 | +208.103.182.0/24 | |
3562 | 3576 | 209.146.7.0/24 |
3563 | -209.146.100.0/22 | |
3564 | 3577 | 210.2.4.0/24 |
3565 | 3578 | 210.5.0.0/19 |
3566 | 3579 | 210.5.56.0/21 |
@@ -3638,7 +3651,6 @@ | ||
3638 | 3651 | 210.78.136.0/22 |
3639 | 3652 | 210.78.144.0/23 |
3640 | 3653 | 210.78.147.0/24 |
3641 | -210.78.168.0/24 | |
3642 | 3654 | 210.79.224.0/19 |
3643 | 3655 | 210.82.0.0/15 |
3644 | 3656 | 210.87.128.0/18 |
@@ -3819,11 +3831,13 @@ | ||
3819 | 3831 | 211.167.128.0/19 |
3820 | 3832 | 211.167.176.0/20 |
3821 | 3833 | 211.167.224.0/19 |
3834 | +212.23.193.0/24 | |
3835 | +212.23.198.0/24 | |
3822 | 3836 | 212.64.0.0/17 |
3823 | 3837 | 212.129.128.0/17 |
3824 | -212.193.10.0/24 | |
3838 | +213.170.223.0/24 | |
3839 | +213.173.38.0/24 | |
3825 | 3840 | 213.232.94.0/24 |
3826 | -216.177.132.0/24 | |
3827 | 3841 | 216.228.126.0/24 |
3828 | 3842 | 218.0.0.0/11 |
3829 | 3843 | 218.56.0.0/13 |
@@ -1 +1 @@ | ||
1 | -20230209 | |
1 | +20230319 |
@@ -12,17 +12,15 @@ | ||
12 | 12 | 2001:dd9::/48 |
13 | 13 | 2001:df0:2e00::/48 |
14 | 14 | 2001:df0:59c0::/48 |
15 | +2001:df1:4580::/48 | |
15 | 16 | 2001:df1:5fc0::/48 |
16 | 17 | 2001:df1:6b80::/48 |
17 | -2001:df1:a100::/48 | |
18 | 18 | 2001:df1:bd80::/48 |
19 | 19 | 2001:df3:3a80::/48 |
20 | 20 | 2001:df3:8b80::/48 |
21 | 21 | 2001:df3:b380::/48 |
22 | 22 | 2001:df5:7800::/48 |
23 | -2001:df6:f400::/48 | |
24 | 23 | 2001:df7:1480::/48 |
25 | -2049:8e02:f000::/36 | |
26 | 24 | 2400:1160::/32 |
27 | 25 | 2400:3200::/32 |
28 | 26 | 2400:5280:f803::/48 |
@@ -148,10 +146,12 @@ | ||
148 | 146 | 2401:ec00::/32 |
149 | 147 | 2401:fa00:40::/43 |
150 | 148 | 2402:840:d000::/46 |
151 | -2402:840:e000::/48 | |
149 | +2402:840:e001::/48 | |
150 | +2402:840:f000::/38 | |
152 | 151 | 2402:1440::/32 |
153 | 152 | 2402:2000::/32 |
154 | 153 | 2402:2b40:8000::/36 |
154 | +2402:3180:8000::/33 | |
155 | 155 | 2402:3c00::/32 |
156 | 156 | 2402:3f80:1400::/40 |
157 | 157 | 2402:4440::/32 |
@@ -239,13 +239,14 @@ | ||
239 | 239 | 2404:2280:10d::/48 |
240 | 240 | 2404:2280:112::/47 |
241 | 241 | 2404:2280:124::/47 |
242 | +2404:2280:13b::/48 | |
242 | 243 | 2404:2280:147::/48 |
243 | 244 | 2404:2280:19d::/48 |
244 | 245 | 2404:2280:1bd::/48 |
245 | -2404:2280:1be::/48 | |
246 | 246 | 2404:2280:1c1::/48 |
247 | 247 | 2404:2280:1c2::/47 |
248 | 248 | 2404:2280:1c4::/47 |
249 | +2404:2280:1c7::/48 | |
249 | 250 | 2404:2280:1c8::/48 |
250 | 251 | 2404:2280:1cb::/48 |
251 | 252 | 2404:2280:1cc::/48 |
@@ -298,50 +299,10 @@ | ||
298 | 299 | 2404:ea80:700:695::/64 |
299 | 300 | 2404:ea80:700:696::/63 |
300 | 301 | 2404:ea80:700:696a::/64 |
301 | -2404:f4c0:6660::/48 | |
302 | -2404:f4c0:6666::/48 | |
303 | -2404:f4c0:7000::/36 | |
304 | -2404:f4c0:f000::/44 | |
305 | -2404:f4c0:f200::/48 | |
306 | -2404:f4c0:f202::/47 | |
307 | -2404:f4c0:f402::/47 | |
308 | -2404:f4c0:f404::/48 | |
309 | -2404:f4c0:f408::/48 | |
310 | -2404:f4c0:f4c0::/48 | |
311 | -2404:f4c0:f4cd::/48 | |
312 | -2404:f4c0:f4cf::/48 | |
313 | -2404:f4c0:f54e::/48 | |
314 | -2404:f4c0:f5c0::/44 | |
315 | -2404:f4c0:f700::/47 | |
316 | -2404:f4c0:f703::/48 | |
317 | -2404:f4c0:f707::/48 | |
318 | -2404:f4c0:f708::/47 | |
319 | -2404:f4c0:f70b::/48 | |
320 | -2404:f4c0:f70f::/48 | |
321 | -2404:f4c0:f720::/48 | |
322 | -2404:f4c0:f723::/48 | |
323 | -2404:f4c0:f72f::/48 | |
324 | -2404:f4c0:f810::/44 | |
325 | -2404:f4c0:f940::/44 | |
326 | -2404:f4c0:fa00::/48 | |
327 | -2404:f4c0:fa02::/47 | |
328 | -2404:f4c0:fa09::/48 | |
329 | -2404:f4c0:fa0a::/47 | |
330 | -2404:f4c0:fac0::/48 | |
331 | -2404:f4c0:facf::/48 | |
332 | -2404:f4c0:fb00::/48 | |
333 | -2404:f4c0:fc80::/44 | |
334 | -2404:f4c0:fd00::/48 | |
335 | -2404:f4c0:fd03::/48 | |
336 | -2404:f4c0:fd04::/47 | |
337 | -2404:f4c0:fd06::/48 | |
338 | -2404:f4c0:fe20::/48 | |
339 | -2404:f4c0:feff::/48 | |
340 | -2404:f4c0:ff01::/48 | |
341 | -2404:f4c0:ff06::/47 | |
342 | -2404:f4c0:ff0f::/48 | |
343 | -2404:f4c0:ff1f::/48 | |
344 | -2404:f4c0:fff0::/48 | |
302 | +2404:f4c0::/32 | |
303 | +2405:6c0:1::/48 | |
304 | +2405:6c0:2::/48 | |
305 | +2405:6c0:4::/48 | |
345 | 306 | 2405:1480:1000::/48 |
346 | 307 | 2405:1480:2000::/48 |
347 | 308 | 2405:1fc0:720::/48 |
@@ -356,17 +317,19 @@ | ||
356 | 317 | 2405:6940::/48 |
357 | 318 | 2405:6f00::/32 |
358 | 319 | 2405:7040:6000::/47 |
320 | +2405:78c0:6e0e::/48 | |
321 | +2405:78c0:6e1e::/48 | |
322 | +2405:84c0:6c00::/44 | |
359 | 323 | 2405:84c0:8100::/44 |
360 | -2405:84c0:8d00::/40 | |
361 | -2405:84c0:9000::/44 | |
324 | +2405:84c0:9727::/48 | |
362 | 325 | 2405:84c0:9890::/44 |
326 | +2405:84c0:9e00::/40 | |
363 | 327 | 2405:84c0:fa00::/40 |
364 | 328 | 2405:84c0:fbbb::/48 |
365 | 329 | 2405:84c0:fdfc::/46 |
366 | -2405:84c0:ff10::/47 | |
330 | +2405:84c0:ff11::/48 | |
367 | 331 | 2405:84c0:ff13::/48 |
368 | 332 | 2405:84c0:ff1f::/48 |
369 | -2405:84c0:ff25::/48 | |
370 | 333 | 2405:84c0:ff30::/48 |
371 | 334 | 2405:8a40::/32 |
372 | 335 | 2405:a900::/32 |
@@ -379,21 +342,22 @@ | ||
379 | 342 | 2406:840:10::/45 |
380 | 343 | 2406:840:20::/48 |
381 | 344 | 2406:840:44::/47 |
345 | +2406:840:78::/48 | |
382 | 346 | 2406:840:80::/47 |
383 | 347 | 2406:840:90::/48 |
384 | 348 | 2406:840:100::/47 |
385 | 349 | 2406:840:111::/48 |
350 | +2406:840:1c0::/48 | |
386 | 351 | 2406:840:301::/48 |
387 | 352 | 2406:840:380::/48 |
388 | 353 | 2406:840:3c0::/48 |
389 | -2406:840:400::/48 | |
354 | +2406:840:580::/48 | |
390 | 355 | 2406:840:800::/42 |
391 | 356 | 2406:840:840::/47 |
392 | 357 | 2406:840:860::/48 |
393 | 358 | 2406:840:880::/48 |
394 | 359 | 2406:840:c00::/48 |
395 | 360 | 2406:840:c10::/48 |
396 | -2406:840:1110::/48 | |
397 | 361 | 2406:840:1860::/48 |
398 | 362 | 2406:840:4100::/47 |
399 | 363 | 2406:840:4380::/47 |
@@ -407,8 +371,8 @@ | ||
407 | 371 | 2406:840:9002::/48 |
408 | 372 | 2406:840:9200::/40 |
409 | 373 | 2406:840:9700::/40 |
410 | -2406:840:9840::/44 | |
411 | 374 | 2406:840:9960::/44 |
375 | +2406:840:9980::/48 | |
412 | 376 | 2406:840:9ef0::/44 |
413 | 377 | 2406:840:ac10::/44 |
414 | 378 | 2406:840:c0a8::/48 |
@@ -424,9 +388,7 @@ | ||
424 | 388 | 2406:840:e180::/44 |
425 | 389 | 2406:840:e20f::/48 |
426 | 390 | 2406:840:e247::/48 |
427 | -2406:840:e280::/44 | |
428 | 391 | 2406:840:e300::/44 |
429 | -2406:840:e340::/44 | |
430 | 392 | 2406:840:e360::/48 |
431 | 393 | 2406:840:e36f::/48 |
432 | 394 | 2406:840:e500::/47 |
@@ -436,14 +398,8 @@ | ||
436 | 398 | 2406:840:e80f::/48 |
437 | 399 | 2406:840:e841::/48 |
438 | 400 | 2406:840:eabf::/48 |
439 | -2406:840:eb00::/48 | |
440 | -2406:840:eb02::/47 | |
441 | -2406:840:eb04::/48 | |
442 | -2406:840:eb07::/48 | |
443 | -2406:840:eb08::/47 | |
444 | -2406:840:eb0a::/48 | |
445 | -2406:840:eb0f::/48 | |
446 | 401 | 2406:840:eb80::/42 |
402 | +2406:840:f000::/44 | |
447 | 403 | 2406:840:f100::/47 |
448 | 404 | 2406:840:f200::/44 |
449 | 405 | 2406:840:f230::/44 |
@@ -460,7 +416,10 @@ | ||
460 | 416 | 2406:840:fa00::/47 |
461 | 417 | 2406:840:fcc0::/44 |
462 | 418 | 2406:840:fd00::/46 |
463 | -2406:840:fd04::/48 | |
419 | +2406:840:fd05::/48 | |
420 | +2406:840:fd06::/48 | |
421 | +2406:840:fd08::/48 | |
422 | +2406:840:fe72::/48 | |
464 | 423 | 2406:840:fed1::/48 |
465 | 424 | 2406:840:fed2::/48 |
466 | 425 | 2406:840:fed4::/48 |
@@ -483,7 +442,6 @@ | ||
483 | 442 | 2406:5340:6666::/48 |
484 | 443 | 2406:5340:8888::/48 |
485 | 444 | 2406:94c0::/48 |
486 | -2406:b640::/40 | |
487 | 445 | 2406:b640:100::/48 |
488 | 446 | 2406:b640:4100::/48 |
489 | 447 | 2406:cf00::/48 |
@@ -497,8 +455,9 @@ | ||
497 | 455 | 2407:2440:2::/47 |
498 | 456 | 2407:2440:4::/46 |
499 | 457 | 2407:2440:8::/45 |
500 | -2407:2440:10::/48 | |
458 | +2407:2440:10::/47 | |
501 | 459 | 2407:2440:12::/48 |
460 | +2407:2440:16::/48 | |
502 | 461 | 2407:2440:1e::/48 |
503 | 462 | 2407:2840::/48 |
504 | 463 | 2407:37c0::/32 |
@@ -519,6 +478,8 @@ | ||
519 | 478 | 2407:c080::/35 |
520 | 479 | 2407:c080:4000::/37 |
521 | 480 | 2407:c080:5000::/37 |
481 | +2407:d340:7921::/48 | |
482 | +2407:d340:8900::/44 | |
522 | 483 | 2408:4000::/22 |
523 | 484 | 2408:8000::/48 |
524 | 485 | 2408:8000:2::/47 |
@@ -1022,9 +983,6 @@ | ||
1022 | 983 | 2408:8a26:c000::/34 |
1023 | 984 | 2408:8a27:4000::/35 |
1024 | 985 | 2409:2000:1000::/37 |
1025 | -2409:2200::/23 | |
1026 | -2409:2400:1800::/37 | |
1027 | -2409:2500:8::/48 | |
1028 | 986 | 2409:6100::/44 |
1029 | 987 | 2409:8000::/20 |
1030 | 988 | 240a:2000::/29 |
@@ -1088,8 +1046,10 @@ | ||
1088 | 1046 | 240d:c010:6c::/48 |
1089 | 1047 | 240d:c040::/44 |
1090 | 1048 | 240e::/20 |
1049 | +2602:2a3::/40 | |
1050 | +2602:2a4:fe::/47 | |
1091 | 1051 | 2602:faac::/40 |
1092 | -2602:fab0:10::/48 | |
1052 | +2602:fab0:10::/47 | |
1093 | 1053 | 2602:fafd:f10::/48 |
1094 | 1054 | 2602:fb26:700::/43 |
1095 | 1055 | 2602:fb26:720::/48 |
@@ -1097,6 +1057,7 @@ | ||
1097 | 1057 | 2602:fb26:7ff::/48 |
1098 | 1058 | 2602:fbda:600::/48 |
1099 | 1059 | 2602:fbda:666::/48 |
1060 | +2602:fbda:730::/44 | |
1100 | 1061 | 2602:fc1d::/47 |
1101 | 1062 | 2602:fc52:311::/48 |
1102 | 1063 | 2602:fc52:312::/48 |
@@ -1111,8 +1072,11 @@ | ||
1111 | 1072 | 2602:feda:20::/44 |
1112 | 1073 | 2602:feda:182::/47 |
1113 | 1074 | 2602:feda:1bf::/48 |
1114 | -2602:feda:1d1::/48 | |
1115 | -2602:feda:2a0::/44 | |
1075 | +2602:feda:2a0::/46 | |
1076 | +2602:feda:2a4::/47 | |
1077 | +2602:feda:2a6::/48 | |
1078 | +2602:feda:2aa::/48 | |
1079 | +2602:feda:2af::/48 | |
1116 | 1080 | 2602:feda:2d0::/47 |
1117 | 1081 | 2602:feda:2f0::/48 |
1118 | 1082 | 2602:feda:3c5::/48 |
@@ -1142,8 +1106,8 @@ | ||
1142 | 1106 | 2605:9d80:9071::/48 |
1143 | 1107 | 2605:9d80:9092::/48 |
1144 | 1108 | 2605:f440:cafe::/48 |
1145 | -2606:fdc0:ff::/48 | |
1146 | 1109 | 2804:1e48::/32 |
1110 | +2a03:5840:f3::/48 | |
1147 | 1111 | 2a03:5840:291::/48 |
1148 | 1112 | 2a03:5840:310::/48 |
1149 | 1113 | 2a04:3e00:1002::/48 |
@@ -1179,34 +1143,25 @@ | ||
1179 | 1143 | 2a05:1085::/32 |
1180 | 1144 | 2a05:1086:f000::/47 |
1181 | 1145 | 2a05:1087::/32 |
1146 | +2a05:dfc7:6420::/48 | |
1147 | +2a05:dfc7:6430::/48 | |
1148 | +2a05:dfc7:6440::/47 | |
1182 | 1149 | 2a06:1287:300::/40 |
1183 | 1150 | 2a06:a001:a0c4::/48 |
1184 | -2a06:a005:5::/48 | |
1185 | 1151 | 2a06:a005:f0::/44 |
1186 | 1152 | 2a06:a005:260::/43 |
1187 | 1153 | 2a06:a005:280::/42 |
1188 | 1154 | 2a06:a005:486::/48 |
1189 | 1155 | 2a06:a005:510::/44 |
1190 | -2a06:a005:560::/48 | |
1191 | -2a06:a005:562::/47 | |
1192 | -2a06:a005:580::/44 | |
1193 | -2a06:a005:5bb::/48 | |
1194 | -2a06:a005:5f4::/48 | |
1195 | 1156 | 2a06:a005:910::/44 |
1196 | 1157 | 2a06:a005:9c0::/48 |
1197 | 1158 | 2a06:a005:a13::/48 |
1198 | -2a06:a005:a80::/46 | |
1199 | -2a06:a005:b60::/48 | |
1200 | 1159 | 2a06:a005:b69::/48 |
1201 | -2a06:a005:c2e::/47 | |
1202 | -2a06:a005:c30::/44 | |
1203 | 1160 | 2a06:a005:c50::/44 |
1204 | 1161 | 2a06:a005:d00::/44 |
1205 | -2a06:a005:d26::/48 | |
1206 | 1162 | 2a06:a005:d45::/48 |
1207 | -2a06:a005:d46::/48 | |
1208 | -2a06:a005:d48::/47 | |
1209 | -2a06:a005:d4b::/48 | |
1163 | +2a06:a005:d46::/47 | |
1164 | +2a06:a005:d49::/48 | |
1210 | 1165 | 2a06:a005:d70::/44 |
1211 | 1166 | 2a06:a005:dc0::/44 |
1212 | 1167 | 2a06:a005:e50::/44 |
@@ -1214,37 +1169,33 @@ | ||
1214 | 1169 | 2a06:a005:e8a::/47 |
1215 | 1170 | 2a06:a005:ec0::/44 |
1216 | 1171 | 2a06:a005:f80::/44 |
1217 | -2a06:a005:fd1::/48 | |
1218 | -2a06:a005:fe1::/48 | |
1219 | -2a06:a005:ff1::/48 | |
1220 | -2a06:a005:11f0::/44 | |
1221 | 1172 | 2a06:a005:1200::/42 |
1222 | -2a06:a005:1240::/44 | |
1223 | 1173 | 2a06:a005:13b0::/44 |
1224 | 1174 | 2a06:a005:13c0::/43 |
1225 | 1175 | 2a06:a005:13e0::/47 |
1226 | 1176 | 2a06:a005:13e8::/48 |
1227 | 1177 | 2a06:a005:13eb::/48 |
1228 | -2a06:a005:13ec::/47 | |
1178 | +2a06:a005:13ed::/48 | |
1229 | 1179 | 2a06:a005:1520::/44 |
1180 | +2a06:a005:15da::/48 | |
1230 | 1181 | 2a06:a005:1700::/44 |
1231 | 1182 | 2a06:a005:1800::/48 |
1232 | 1183 | 2a06:a005:1880::/43 |
1233 | 1184 | 2a06:a005:1b60::/44 |
1185 | +2a06:a005:1ee0::/44 | |
1234 | 1186 | 2a06:a005:2040::/44 |
1235 | 1187 | 2a06:a005:2100::/44 |
1188 | +2a06:a005:2200::/44 | |
1236 | 1189 | 2a06:a005:2490::/44 |
1237 | -2a06:a005:2500::/44 | |
1238 | 1190 | 2a06:a005:2510::/48 |
1239 | -2a06:a005:25b0::/44 | |
1240 | -2a06:a005:26d0::/44 | |
1241 | 1191 | 2a06:a005:28f1::/48 |
1242 | 1192 | 2a06:a005:28f2::/47 |
1243 | 1193 | 2a06:a005:28f4::/47 |
1244 | 1194 | 2a06:a005:2910::/44 |
1245 | 1195 | 2a06:a005:2921::/48 |
1246 | 1196 | 2a06:a005:2922::/47 |
1247 | -2a06:a005:2924::/48 | |
1197 | +2a06:a005:2924::/47 | |
1198 | +2a06:a005:2926::/48 | |
1248 | 1199 | 2a06:a005:2930::/44 |
1249 | 1200 | 2a06:a005:2940::/43 |
1250 | 1201 | 2a06:a005:2960::/48 |
@@ -1252,8 +1203,10 @@ | ||
1252 | 1203 | 2a06:a005:2980::/44 |
1253 | 1204 | 2a06:a005:29d0::/47 |
1254 | 1205 | 2a06:a005:2a00::/42 |
1255 | -2a06:a005:2a80::/43 | |
1206 | +2a06:a005:2a80::/44 | |
1256 | 1207 | 2a06:a005:2af0::/44 |
1208 | +2a06:a005:2d30::/44 | |
1209 | +2a06:a005:2d40::/42 | |
1257 | 1210 | 2a06:e881:119::/48 |
1258 | 1211 | 2a06:e881:2509::/48 |
1259 | 1212 | 2a06:e881:5501::/48 |
@@ -1265,7 +1218,7 @@ | ||
1265 | 1218 | 2a09:4c2:2e::/48 |
1266 | 1219 | 2a09:b280::/48 |
1267 | 1220 | 2a09:b280:ff80::/46 |
1268 | -2a09:b280:ff84::/48 | |
1221 | +2a09:b280:ff84::/47 | |
1269 | 1222 | 2a09:b280:ffb0::/47 |
1270 | 1223 | 2a09:b280:ffb2::/48 |
1271 | 1224 | 2a09:b280:ffbb::/48 |
@@ -1282,6 +1235,7 @@ | ||
1282 | 1235 | 2a0a:6040:1b00::/40 |
1283 | 1236 | 2a0a:6040:2211::/48 |
1284 | 1237 | 2a0a:6040:2222::/48 |
1238 | +2a0a:6040:2228::/48 | |
1285 | 1239 | 2a0a:6040:2233::/48 |
1286 | 1240 | 2a0a:6040:2235::/48 |
1287 | 1241 | 2a0a:6040:2255::/48 |
@@ -1292,41 +1246,41 @@ | ||
1292 | 1246 | 2a0a:6040:3420::/48 |
1293 | 1247 | 2a0a:6040:3430::/48 |
1294 | 1248 | 2a0a:6040:34ff::/48 |
1249 | +2a0a:6040:5555::/48 | |
1295 | 1250 | 2a0a:6040:6c40::/44 |
1296 | 1251 | 2a0a:6040:a430::/48 |
1297 | 1252 | 2a0a:6040:a435::/48 |
1298 | 1253 | 2a0a:6040:a450::/47 |
1254 | +2a0a:6040:a720::/48 | |
1299 | 1255 | 2a0a:6040:a900::/47 |
1300 | 1256 | 2a0a:6040:a902::/48 |
1301 | 1257 | 2a0a:6040:c601::/48 |
1302 | 1258 | 2a0a:6040:c700::/42 |
1303 | -2a0a:6040:c740::/44 | |
1259 | +2a0a:6040:c740::/47 | |
1260 | +2a0a:6040:c742::/48 | |
1261 | +2a0a:6040:c750::/47 | |
1262 | +2a0a:6040:c760::/47 | |
1263 | +2a0a:6040:c770::/44 | |
1304 | 1264 | 2a0a:6040:ce00::/40 |
1305 | 1265 | 2a0a:6040:d0ff::/48 |
1306 | 1266 | 2a0a:6040:d300::/48 |
1307 | -2a0a:6040:d311::/48 | |
1308 | 1267 | 2a0a:6040:d320::/48 |
1309 | -2a0a:6040:d400::/48 | |
1268 | +2a0a:6040:d400::/47 | |
1310 | 1269 | 2a0a:6040:d600::/44 |
1311 | 1270 | 2a0a:6040:d710::/44 |
1312 | -2a0a:6040:d720::/44 | |
1313 | -2a0a:6040:d740::/48 | |
1314 | -2a0a:6040:d820::/48 | |
1315 | 1271 | 2a0a:6040:e100::/40 |
1316 | 1272 | 2a0a:6040:e405::/48 |
1317 | 1273 | 2a0a:6040:e541::/48 |
1318 | 1274 | 2a0a:6040:e543::/48 |
1319 | 1275 | 2a0a:6040:e544::/48 |
1320 | 1276 | 2a0a:6040:e546::/48 |
1277 | +2a0a:6040:e54b::/48 | |
1321 | 1278 | 2a0a:6040:e54c::/48 |
1322 | 1279 | 2a0a:6040:e900::/40 |
1323 | -2a0a:6040:ea00::/40 | |
1324 | 1280 | 2a0a:6040:ec00::/40 |
1325 | 1281 | 2a0b:b86:ffe0::/48 |
1326 | 1282 | 2a0b:b87:ffb5::/48 |
1327 | -2a0b:2542::/48 | |
1328 | 1283 | 2a0b:2542:300::/40 |
1329 | -2a0b:2542:400::/40 | |
1330 | 1284 | 2a0b:4340:6::/48 |
1331 | 1285 | 2a0b:4340:22::/48 |
1332 | 1286 | 2a0b:4340:30::/44 |
@@ -1339,6 +1293,10 @@ | ||
1339 | 1293 | 2a0b:4340:a0::/44 |
1340 | 1294 | 2a0b:4340:c0::/44 |
1341 | 1295 | 2a0b:4340:d8::/48 |
1296 | +2a0b:4340:400::/46 | |
1297 | +2a0b:4340:404::/47 | |
1298 | +2a0b:4340:406::/48 | |
1299 | +2a0b:4340:434::/48 | |
1342 | 1300 | 2a0b:4340:530::/44 |
1343 | 1301 | 2a0b:4340:540::/44 |
1344 | 1302 | 2a0b:4340:1304::/48 |
@@ -1358,27 +1316,7 @@ | ||
1358 | 1316 | 2a0d:2581:fffc::/48 |
1359 | 1317 | 2a0d:2581:fffe::/47 |
1360 | 1318 | 2a0d:2586::/48 |
1361 | -2a0d:2587::/35 | |
1362 | -2a0d:2587:2000::/36 | |
1363 | -2a0d:2587:3000::/38 | |
1364 | -2a0d:2587:3400::/40 | |
1365 | -2a0d:2587:3500::/45 | |
1366 | -2a0d:2587:3508::/46 | |
1367 | -2a0d:2587:350c::/48 | |
1368 | -2a0d:2587:350e::/48 | |
1369 | -2a0d:2587:3510::/46 | |
1370 | -2a0d:2587:3514::/48 | |
1371 | -2a0d:2587:3516::/47 | |
1372 | -2a0d:2587:3518::/46 | |
1373 | -2a0d:2587:3600::/40 | |
1374 | -2a0d:2587:3800::/37 | |
1375 | -2a0d:2587:4000::/34 | |
1376 | -2a0d:2587:8300::/40 | |
1377 | -2a0d:2587:8500::/45 | |
1378 | -2a0d:2587:c200::/48 | |
1379 | -2a0d:2587:c240::/44 | |
1380 | 1319 | 2a0d:2687::/32 |
1381 | -2a0d:2902:caf0::/44 | |
1382 | 1320 | 2a0d:2904::/44 |
1383 | 1321 | 2a0d:c7c7::/32 |
1384 | 1322 | 2a0e:800:6666::/48 |
@@ -1388,33 +1326,12 @@ | ||
1388 | 1326 | 2a0e:800:ff40::/42 |
1389 | 1327 | 2a0e:7581::/32 |
1390 | 1328 | 2a0e:8f02:f006::/48 |
1391 | -2a0e:97c0:330::/48 | |
1392 | 1329 | 2a0e:97c0:550::/44 |
1393 | 1330 | 2a0e:97c0:5ef::/48 |
1394 | -2a0e:97c0:68e::/47 | |
1331 | +2a0e:97c0:68f::/48 | |
1395 | 1332 | 2a0e:97c0:804::/46 |
1396 | 1333 | 2a0e:97c0:831::/48 |
1397 | 1334 | 2a0e:97c0:b90::/44 |
1398 | -2a0e:97c6:400b::/48 | |
1399 | -2a0e:97c6:4025::/48 | |
1400 | -2a0e:97c6:4043::/48 | |
1401 | -2a0e:97c6:4045::/48 | |
1402 | -2a0e:97c6:4047::/48 | |
1403 | -2a0e:97c6:404a::/48 | |
1404 | -2a0e:97c6:4067::/48 | |
1405 | -2a0e:97c6:408d::/48 | |
1406 | -2a0e:97c6:408f::/48 | |
1407 | -2a0e:97c6:409d::/48 | |
1408 | -2a0e:97c6:40a2::/48 | |
1409 | -2a0e:97c6:40a6::/48 | |
1410 | -2a0e:97c6:40b4::/48 | |
1411 | -2a0e:97c6:40b6::/48 | |
1412 | -2a0e:97c6:40be::/48 | |
1413 | -2a0e:97c6:40c3::/48 | |
1414 | -2a0e:97c6:40cf::/48 | |
1415 | -2a0e:97c6:40d5::/48 | |
1416 | -2a0e:97c6:40e6::/48 | |
1417 | -2a0e:97c6:40ea::/48 | |
1418 | 1335 | 2a0e:97c7:aa0::/48 |
1419 | 1336 | 2a0e:97c7:c66::/48 |
1420 | 1337 | 2a0e:97c7:d99::/48 |
@@ -1434,16 +1351,17 @@ | ||
1434 | 1351 | 2a0e:aa07:e044::/48 |
1435 | 1352 | 2a0e:aa07:e046::/48 |
1436 | 1353 | 2a0e:aa07:e049::/48 |
1437 | -2a0e:aa07:e050::/48 | |
1354 | +2a0e:aa07:e050::/44 | |
1438 | 1355 | 2a0e:aa07:e060::/48 |
1356 | +2a0e:aa07:e070::/48 | |
1357 | +2a0e:aa07:e072::/47 | |
1358 | +2a0e:aa07:e074::/47 | |
1439 | 1359 | 2a0e:aa07:e200::/44 |
1440 | 1360 | 2a0e:aa07:f000::/48 |
1441 | 1361 | 2a0e:aa07:f004::/48 |
1442 | 1362 | 2a0e:aa07:f009::/48 |
1443 | 1363 | 2a0e:aa07:f041::/48 |
1444 | 1364 | 2a0e:aa07:f042::/48 |
1445 | -2a0e:aa07:f097::/48 | |
1446 | -2a0e:aa07:f09b::/48 | |
1447 | 1365 | 2a0e:aa07:f0d0::/47 |
1448 | 1366 | 2a0e:aa07:f0d2::/48 |
1449 | 1367 | 2a0e:aa07:f0d4::/48 |
@@ -1452,47 +1370,43 @@ | ||
1452 | 1370 | 2a0e:b107:30::/48 |
1453 | 1371 | 2a0e:b107:32::/47 |
1454 | 1372 | 2a0e:b107:a0::/44 |
1455 | -2a0e:b107:1c1::/48 | |
1456 | 1373 | 2a0e:b107:272::/48 |
1457 | 1374 | 2a0e:b107:510::/48 |
1375 | +2a0e:b107:512::/48 | |
1458 | 1376 | 2a0e:b107:515::/48 |
1459 | 1377 | 2a0e:b107:517::/48 |
1460 | -2a0e:b107:580::/44 | |
1461 | 1378 | 2a0e:b107:710::/48 |
1462 | 1379 | 2a0e:b107:790::/44 |
1463 | 1380 | 2a0e:b107:bd0::/48 |
1464 | -2a0e:b107:c10::/48 | |
1465 | 1381 | 2a0e:b107:da0::/44 |
1466 | 1382 | 2a0e:b107:dce::/48 |
1467 | -2a0e:b107:ea2::/48 | |
1468 | -2a0e:b107:f08::/45 | |
1469 | -2a0e:b107:12c0::/44 | |
1470 | 1383 | 2a0e:b107:1470::/44 |
1471 | 1384 | 2a0e:b107:14a0::/44 |
1472 | 1385 | 2a0e:b107:1572::/47 |
1473 | 1386 | 2a0e:b107:1574::/48 |
1474 | 1387 | 2a0e:b107:16b0::/44 |
1475 | 1388 | 2a0e:b107:178c::/47 |
1476 | -2a0e:b107:178e::/48 | |
1477 | 1389 | 2a0e:b107:1980::/47 |
1478 | -2a0e:b107:1a40::/44 | |
1390 | +2a0e:b107:1a40::/45 | |
1479 | 1391 | 2a0e:b107:1b6f::/48 |
1480 | 1392 | 2a0e:b107:1d20::/47 |
1481 | 1393 | 2a0e:b107:1d25::/48 |
1482 | 1394 | 2a0f:5707:ac01::/48 |
1483 | 1395 | 2a0f:5707:fff4::/47 |
1484 | 1396 | 2a0f:7980::/44 |
1485 | -2a0f:85c1:30::/47 | |
1397 | +2a0f:85c1:30::/48 | |
1486 | 1398 | 2a0f:9400:6400::/40 |
1399 | +2a0f:9400:6800::/40 | |
1400 | +2a0f:9400:6907::/48 | |
1487 | 1401 | 2a0f:9400:6a00::/40 |
1488 | -2a0f:9400:7390::/47 | |
1402 | +2a0f:9400:6c00::/40 | |
1489 | 1403 | 2a0f:9400:7393::/48 |
1490 | 1404 | 2a0f:9400:7398::/48 |
1491 | 1405 | 2a0f:9400:7700::/48 |
1492 | 1406 | 2a0f:9400:770a::/48 |
1493 | 1407 | 2a0f:e401:131::/48 |
1494 | -2a0f:e401:132::/47 | |
1495 | -2a10:2f00:12a::/48 | |
1408 | +2a0f:e401:132::/48 | |
1409 | +2a0f:e401:134::/48 | |
1496 | 1410 | 2a10:2f00:13a::/48 |
1497 | 1411 | 2a10:2f00:15a::/48 |
1498 | 1412 | 2a10:2f00:186::/48 |
@@ -1510,27 +1424,15 @@ | ||
1510 | 1424 | 2a12:3fc2:aa10::/44 |
1511 | 1425 | 2a12:3fc2:ab50::/48 |
1512 | 1426 | 2a12:3fc2:e100::/44 |
1513 | -2a12:3fc2:e300::/40 | |
1514 | 1427 | 2a12:3fc2:e400::/44 |
1515 | -2a12:3fc2:e500::/48 | |
1516 | -2a12:3fc2:e510::/48 | |
1517 | -2a12:3fc2:e520::/47 | |
1518 | -2a12:3fc2:e522::/48 | |
1519 | -2a12:3fc2:e5aa::/48 | |
1520 | -2a12:3fc2:e5e5::/48 | |
1521 | -2a12:3fc2:e600::/43 | |
1522 | -2a12:3fc2:e620::/45 | |
1523 | -2a12:3fc2:e628::/46 | |
1524 | -2a12:3fc2:e630::/45 | |
1525 | -2a12:3fc2:e638::/46 | |
1526 | -2a12:3fc2:e640::/42 | |
1527 | -2a12:3fc2:e6e0::/47 | |
1528 | -2a12:3fc2:e6e4::/48 | |
1529 | -2a12:3fc2:e6f0::/44 | |
1530 | -2a12:3fc2:e710::/44 | |
1428 | +2a12:3fc2:e500::/40 | |
1429 | +2a12:3fc2:e600::/40 | |
1430 | +2a12:3fc2:e72b::/48 | |
1531 | 1431 | 2a12:3fc2:e72c::/47 |
1432 | +2a12:3fc2:e72e::/48 | |
1532 | 1433 | 2a12:3fc2:e7fb::/48 |
1533 | -2a12:3fc2:e7fc::/46 | |
1434 | +2a12:3fc2:e7fd::/48 | |
1435 | +2a12:3fc2:e7fe::/47 | |
1534 | 1436 | 2a12:3fc2:e800::/46 |
1535 | 1437 | 2a12:3fc2:e804::/48 |
1536 | 1438 | 2a12:3fc2:e808::/46 |
@@ -1538,95 +1440,229 @@ | ||
1538 | 1440 | 2a12:3fc2:e818::/46 |
1539 | 1441 | 2a12:3fc2:e820::/46 |
1540 | 1442 | 2a12:3fc2:e828::/45 |
1541 | -2a12:3fc2:e830::/46 | |
1542 | 1443 | 2a12:3fc7::/48 |
1543 | 1444 | 2a12:3fc7:8000::/48 |
1544 | -2a12:dd47:6205::/48 | |
1545 | -2a12:dd47:6207::/48 | |
1546 | -2a12:dd47:628d::/48 | |
1547 | -2a12:dd47:62a9::/48 | |
1548 | -2a12:dd47:62bc::/48 | |
1549 | -2a12:dd47:6c5e::/48 | |
1550 | -2a12:dd47:6c69::/48 | |
1551 | -2a12:dd47:6cde::/48 | |
1552 | -2a12:dd47:6cec::/47 | |
1553 | -2a12:dd47:6d0a::/48 | |
1554 | -2a12:dd47:6d3d::/48 | |
1555 | -2a12:dd47:6d44::/48 | |
1556 | -2a12:dd47:6d59::/48 | |
1557 | -2a12:dd47:6d66::/48 | |
1558 | -2a12:dd47:6e3b::/48 | |
1559 | -2a12:dd47:6e3c::/48 | |
1560 | -2a12:dd47:6e8c::/48 | |
1561 | -2a12:dd47:6e8e::/48 | |
1562 | -2a12:dd47:6eb7::/48 | |
1563 | -2a12:dd47:6f07::/48 | |
1564 | -2a12:dd47:6f55::/48 | |
1565 | -2a12:dd47:6fae::/48 | |
1566 | -2a12:dd47:6fd1::/48 | |
1567 | -2a12:dd47:6fe9::/48 | |
1568 | -2a12:dd47:7013::/48 | |
1569 | -2a12:dd47:7062::/48 | |
1570 | -2a12:dd47:7081::/48 | |
1571 | -2a12:dd47:709b::/48 | |
1572 | -2a12:dd47:70fe::/48 | |
1445 | +2a12:dd47:4008::/48 | |
1446 | +2a12:dd47:4017::/48 | |
1447 | +2a12:dd47:401e::/48 | |
1448 | +2a12:dd47:4044::/48 | |
1449 | +2a12:dd47:4049::/48 | |
1450 | +2a12:dd47:404e::/48 | |
1451 | +2a12:dd47:407f::/48 | |
1452 | +2a12:dd47:408c::/48 | |
1453 | +2a12:dd47:409c::/48 | |
1454 | +2a12:dd47:40dd::/48 | |
1455 | +2a12:dd47:4100::/48 | |
1456 | +2a12:dd47:4102::/48 | |
1457 | +2a12:dd47:4155::/48 | |
1458 | +2a12:dd47:4156::/48 | |
1459 | +2a12:dd47:415c::/48 | |
1460 | +2a12:dd47:4164::/48 | |
1461 | +2a12:dd47:4166::/48 | |
1462 | +2a12:dd47:4178::/48 | |
1463 | +2a12:dd47:418a::/48 | |
1464 | +2a12:dd47:41e5::/48 | |
1465 | +2a12:dd47:41ff::/48 | |
1466 | +2a12:dd47:423c::/48 | |
1467 | +2a12:dd47:424d::/48 | |
1468 | +2a12:dd47:429a::/48 | |
1469 | +2a12:dd47:42a1::/48 | |
1470 | +2a12:dd47:42b4::/48 | |
1471 | +2a12:dd47:5c00::/40 | |
1472 | +2a12:dd47:6111::/48 | |
1473 | +2a12:dd47:6154::/48 | |
1474 | +2a12:dd47:6162::/48 | |
1475 | +2a12:dd47:618f::/48 | |
1476 | +2a12:dd47:61b9::/48 | |
1477 | +2a12:dd47:6300::/48 | |
1478 | +2a12:dd47:630f::/48 | |
1479 | +2a12:dd47:6314::/48 | |
1480 | +2a12:dd47:6358::/48 | |
1481 | +2a12:dd47:6391::/48 | |
1482 | +2a12:dd47:639a::/48 | |
1483 | +2a12:dd47:63ad::/48 | |
1484 | +2a12:dd47:63c5::/48 | |
1485 | +2a12:dd47:63eb::/48 | |
1486 | +2a12:dd47:63f8::/48 | |
1487 | +2a12:dd47:6435::/48 | |
1488 | +2a12:dd47:6454::/48 | |
1489 | +2a12:dd47:645c::/48 | |
1490 | +2a12:dd47:6473::/48 | |
1491 | +2a12:dd47:6489::/48 | |
1492 | +2a12:dd47:6494::/48 | |
1493 | +2a12:dd47:64b3::/48 | |
1494 | +2a12:dd47:64c1::/48 | |
1495 | +2a12:dd47:64eb::/48 | |
1496 | +2a12:dd47:64f6::/48 | |
1497 | +2a12:dd47:6505::/48 | |
1498 | +2a12:dd47:6525::/48 | |
1499 | +2a12:dd47:6529::/48 | |
1500 | +2a12:dd47:654c::/48 | |
1501 | +2a12:dd47:65ab::/48 | |
1502 | +2a12:dd47:65ac::/48 | |
1503 | +2a12:dd47:65cd::/48 | |
1504 | +2a12:dd47:65df::/48 | |
1505 | +2a12:dd47:65ed::/48 | |
1506 | +2a12:dd47:65f4::/48 | |
1507 | +2a12:dd47:660f::/48 | |
1508 | +2a12:dd47:6625::/48 | |
1509 | +2a12:dd47:6652::/48 | |
1510 | +2a12:dd47:6658::/48 | |
1511 | +2a12:dd47:6661::/48 | |
1512 | +2a12:dd47:6689::/48 | |
1513 | +2a12:dd47:66c4::/48 | |
1514 | +2a12:dd47:66dd::/48 | |
1515 | +2a12:dd47:66e4::/48 | |
1516 | +2a12:dd47:66e8::/48 | |
1517 | +2a12:dd47:6811::/48 | |
1518 | +2a12:dd47:683f::/48 | |
1519 | +2a12:dd47:689e::/48 | |
1520 | +2a12:dd47:68b2::/48 | |
1521 | +2a12:dd47:68b7::/48 | |
1522 | +2a12:dd47:68bd::/48 | |
1523 | +2a12:dd47:68d0::/48 | |
1524 | +2a12:dd47:6e4a::/48 | |
1525 | +2a12:dd47:6e4f::/48 | |
1526 | +2a12:dd47:6e50::/48 | |
1527 | +2a12:dd47:6e61::/48 | |
1528 | +2a12:dd47:6e6d::/48 | |
1529 | +2a12:dd47:6eab::/48 | |
1530 | +2a12:dd47:6ee9::/48 | |
1531 | +2a12:dd47:6eed::/48 | |
1532 | +2a12:dd47:6ef1::/48 | |
1533 | +2a12:dd47:743d::/48 | |
1534 | +2a12:dd47:7452::/48 | |
1535 | +2a12:dd47:74d1::/48 | |
1536 | +2a12:dd47:7638::/48 | |
1537 | +2a12:dd47:7652::/48 | |
1538 | +2a12:dd47:766a::/48 | |
1539 | +2a12:dd47:76e6::/48 | |
1540 | +2a12:dd47:76e8::/48 | |
1541 | +2a12:dd47:7706::/48 | |
1542 | +2a12:dd47:7724::/48 | |
1543 | +2a12:dd47:772e::/48 | |
1544 | +2a12:dd47:7734::/48 | |
1545 | +2a12:dd47:773e::/48 | |
1546 | +2a12:dd47:776d::/48 | |
1547 | +2a12:dd47:779a::/48 | |
1548 | +2a12:dd47:77bd::/48 | |
1549 | +2a12:dd47:77e4::/48 | |
1550 | +2a12:dd47:77e9::/48 | |
1551 | +2a12:dd47:77f3::/48 | |
1552 | +2a12:dd47:77ff::/48 | |
1553 | +2a12:dd47:7907::/48 | |
1554 | +2a12:dd47:7922::/48 | |
1555 | +2a12:dd47:792f::/48 | |
1556 | +2a12:dd47:7933::/48 | |
1557 | +2a12:dd47:794d::/48 | |
1558 | +2a12:dd47:7951::/48 | |
1559 | +2a12:dd47:7954::/48 | |
1560 | +2a12:dd47:79a4::/48 | |
1561 | +2a12:dd47:79dd::/48 | |
1562 | +2a12:dd47:79f4::/48 | |
1563 | +2a12:dd47:7a40::/48 | |
1564 | +2a12:dd47:7a74::/48 | |
1565 | +2a12:dd47:7a99::/48 | |
1566 | +2a12:dd47:7a9d::/48 | |
1567 | +2a12:dd47:7ab9::/48 | |
1568 | +2a12:dd47:7abd::/48 | |
1569 | +2a12:dd47:7ad6::/48 | |
1570 | +2a12:dd47:7ae2::/48 | |
1571 | +2a12:dd47:7af7::/48 | |
1572 | +2a12:dd47:7afa::/48 | |
1573 | +2a12:dd47:7b5c::/48 | |
1574 | +2a12:dd47:7b5f::/48 | |
1575 | +2a12:dd47:7b89::/48 | |
1576 | +2a12:dd47:7b8d::/48 | |
1577 | +2a12:dd47:7b92::/48 | |
1578 | +2a12:dd47:7b95::/48 | |
1579 | +2a12:dd47:7b96::/48 | |
1580 | +2a12:dd47:7b9c::/48 | |
1581 | +2a12:dd47:7bb5::/48 | |
1582 | +2a12:dd47:7bba::/48 | |
1583 | +2a12:dd47:7c82::/48 | |
1584 | +2a12:dd47:7c8f::/48 | |
1585 | +2a12:dd47:7cb1::/48 | |
1586 | +2a12:dd47:7cd8::/47 | |
1573 | 1587 | 2a12:dd47:80d0::/44 |
1574 | 1588 | 2a12:dd47:8140::/44 |
1575 | -2a12:dd47:c854::/48 | |
1576 | -2a12:dd47:c866::/48 | |
1577 | -2a12:dd47:c87a::/48 | |
1578 | -2a12:dd47:c883::/48 | |
1579 | -2a12:dd47:c890::/48 | |
1580 | -2a12:dd47:c90d::/48 | |
1581 | -2a12:dd47:c923::/48 | |
1582 | -2a12:dd47:c94a::/48 | |
1583 | -2a12:dd47:c967::/48 | |
1584 | -2a12:dd47:c9ae::/48 | |
1585 | -2a12:dd47:ca1d::/48 | |
1586 | -2a12:dd47:ca21::/48 | |
1587 | -2a12:dd47:ca4e::/48 | |
1588 | -2a12:dd47:ca7f::/48 | |
1589 | -2a12:dd47:caa0::/48 | |
1590 | -2a12:dd47:cb3c::/48 | |
1591 | -2a12:dd47:cb40::/48 | |
1592 | -2a12:dd47:cb42::/48 | |
1593 | -2a12:dd47:cb5a::/48 | |
1594 | -2a12:dd47:cb6c::/48 | |
1595 | -2a12:dd47:cc20::/48 | |
1596 | -2a12:dd47:cc22::/48 | |
1597 | -2a12:dd47:cc6d::/48 | |
1598 | -2a12:dd47:cc96::/48 | |
1599 | -2a12:dd47:cc9a::/48 | |
1600 | -2a12:dd47:cf27::/48 | |
1601 | -2a12:dd47:cf3e::/48 | |
1602 | -2a12:dd47:cf85::/48 | |
1603 | -2a12:dd47:cf9e::/48 | |
1604 | -2a12:dd47:cfa6::/48 | |
1605 | -2a12:dd47:eb2b::/48 | |
1606 | -2a12:dd47:eb32::/48 | |
1607 | -2a12:dd47:eb35::/48 | |
1608 | -2a12:dd47:ebbf::/48 | |
1609 | -2a12:dd47:ebc1::/48 | |
1610 | -2a12:dd47:ed14::/48 | |
1611 | -2a12:dd47:ed23::/48 | |
1612 | -2a12:dd47:ed3d::/48 | |
1613 | -2a12:dd47:eddc::/48 | |
1614 | -2a12:dd47:ede3::/48 | |
1615 | -2a12:dd47:ee56::/48 | |
1616 | -2a12:dd47:ee9e::/48 | |
1617 | -2a12:dd47:eeb8::/48 | |
1618 | -2a12:dd47:eec5::/48 | |
1619 | -2a12:dd47:eefb::/48 | |
1620 | -2a12:dd47:ef24::/48 | |
1621 | -2a12:dd47:ef58::/48 | |
1622 | -2a12:dd47:ef5f::/48 | |
1623 | -2a12:dd47:efa7::/48 | |
1624 | -2a12:dd47:efd7::/48 | |
1589 | +2a12:dd47:c122::/48 | |
1590 | +2a12:dd47:c134::/48 | |
1591 | +2a12:dd47:c13f::/48 | |
1592 | +2a12:dd47:c14f::/48 | |
1593 | +2a12:dd47:c172::/48 | |
1594 | +2a12:dd47:c17a::/48 | |
1595 | +2a12:dd47:c17f::/48 | |
1596 | +2a12:dd47:c1e0::/48 | |
1597 | +2a12:dd47:c1ef::/48 | |
1598 | +2a12:dd47:c1f5::/48 | |
1599 | +2a12:dd47:c246::/48 | |
1600 | +2a12:dd47:c256::/48 | |
1601 | +2a12:dd47:c26c::/48 | |
1602 | +2a12:dd47:c27b::/48 | |
1603 | +2a12:dd47:c27f::/48 | |
1604 | +2a12:dd47:c30e::/48 | |
1605 | +2a12:dd47:c322::/48 | |
1606 | +2a12:dd47:c327::/48 | |
1607 | +2a12:dd47:c38a::/48 | |
1608 | +2a12:dd47:c3c4::/48 | |
1609 | +2a12:dd47:c3cc::/48 | |
1610 | +2a12:dd47:c3f4::/48 | |
1611 | +2a12:dd47:c70f::/48 | |
1612 | +2a12:dd47:c7dc::/48 | |
1613 | +2a12:dd47:cd01::/48 | |
1614 | +2a12:dd47:cd44::/48 | |
1615 | +2a12:dd47:cd7c::/48 | |
1616 | +2a12:dd47:cd8a::/48 | |
1617 | +2a12:dd47:cd9d::/48 | |
1618 | +2a12:dd47:ce01::/48 | |
1619 | +2a12:dd47:ceab::/48 | |
1620 | +2a12:dd47:ceb1::/48 | |
1621 | +2a12:dd47:ced5::/48 | |
1622 | +2a12:dd47:cedc::/48 | |
1623 | +2a12:dd47:e301::/48 | |
1624 | +2a12:dd47:e31f::/48 | |
1625 | +2a12:dd47:e34c::/48 | |
1626 | +2a12:dd47:e375::/48 | |
1627 | +2a12:dd47:e3ce::/48 | |
1628 | +2a12:dd47:e40e::/48 | |
1629 | +2a12:dd47:e413::/48 | |
1630 | +2a12:dd47:e414::/48 | |
1631 | +2a12:dd47:e423::/48 | |
1632 | +2a12:dd47:e44b::/48 | |
1633 | +2a12:dd47:e45c::/48 | |
1634 | +2a12:dd47:e46e::/48 | |
1635 | +2a12:dd47:e47e::/48 | |
1636 | +2a12:dd47:e4a0::/48 | |
1637 | +2a12:dd47:e4b8::/48 | |
1638 | +2a12:dd47:e511::/48 | |
1639 | +2a12:dd47:e538::/48 | |
1640 | +2a12:dd47:e547::/48 | |
1641 | +2a12:dd47:e571::/48 | |
1642 | +2a12:dd47:e574::/48 | |
1643 | +2a12:dd47:e57a::/48 | |
1644 | +2a12:dd47:e584::/48 | |
1645 | +2a12:dd47:e5a1::/48 | |
1646 | +2a12:dd47:e5c6::/48 | |
1647 | +2a12:dd47:e5f4::/48 | |
1648 | +2a12:dd47:e614::/48 | |
1649 | +2a12:dd47:e66a::/48 | |
1650 | +2a12:dd47:e67b::/48 | |
1651 | +2a12:dd47:e6d6::/48 | |
1652 | +2a12:dd47:e6d8::/48 | |
1653 | +2a12:dd47:e761::/48 | |
1654 | +2a12:dd47:e7e6::/48 | |
1655 | +2a12:dd47:e93e::/48 | |
1656 | +2a12:dd47:e9b2::/48 | |
1657 | +2a12:dd47:e9bc::/48 | |
1625 | 1658 | 2a12:f8c0::/48 |
1626 | 1659 | 2a12:f8c1::/48 |
1627 | 1660 | 2a12:f8c3::/36 |
1628 | 1661 | 2a13:1800:10::/48 |
1629 | 1662 | 2a13:1800:80::/44 |
1663 | +2a13:b487:1200::/44 | |
1664 | +2a13:b487:1b00::/47 | |
1665 | +2a13:b487:1b02::/48 | |
1630 | 1666 | 2c0f:f7a8:8011::/48 |
1631 | 1667 | 2c0f:f7a8:8050::/48 |
1632 | 1668 | 2c0f:f7a8:805f::/48 |
@@ -1 +1 @@ | ||
1 | -20230209 | |
1 | +20230319 |
@@ -13,7 +13,6 @@ | ||
13 | 13 | 001.com |
14 | 14 | 001133.app |
15 | 15 | 001daima.com |
16 | -001en.com | |
17 | 16 | 001jm.com |
18 | 17 | 001job.com |
19 | 18 | 001kd.com |
@@ -28,7 +27,6 @@ | ||
28 | 27 | 004218.com |
29 | 28 | 004678.com |
30 | 29 | 00544.com |
31 | -0061.com.au | |
32 | 30 | 00615.net |
33 | 31 | 007.pub |
34 | 32 | 00791.com |
@@ -53,7 +51,6 @@ | ||
53 | 51 | 00cdn.com |
54 | 52 | 00cha.com |
55 | 53 | 00cha.net |
56 | -00dyun.xyz | |
57 | 54 | 00ic.com |
58 | 55 | 00it.net |
59 | 56 | 00lewen.com |
@@ -94,12 +91,10 @@ | ||
94 | 91 | 01ke.com |
95 | 92 | 01ki.com |
96 | 93 | 01p.com |
97 | -01retail.com | |
98 | 94 | 01rv.com |
99 | 95 | 01teacher.com |
100 | 96 | 01tingshu.com |
101 | 97 | 01w.com |
102 | -01water.com | |
103 | 98 | 01wb.com |
104 | 99 | 01xs.com |
105 | 100 | 01yo.com |
@@ -134,7 +129,6 @@ | ||
134 | 129 | 021jingwu.com |
135 | 130 | 021js.com |
136 | 131 | 021lawfirm.com |
137 | -021networks.com | |
138 | 132 | 021phone.com |
139 | 133 | 021ren.com |
140 | 134 | 021sports.com |
@@ -211,7 +205,6 @@ | ||
211 | 205 | 027jz.cc |
212 | 206 | 027one.com |
213 | 207 | 027qyy.com |
214 | -027tianle.com | |
215 | 208 | 027tianlong.com |
216 | 209 | 027tytpf.com |
217 | 210 | 027wcbyy.com |
@@ -256,7 +249,6 @@ | ||
256 | 249 | 0328.com |
257 | 250 | 033033.com |
258 | 251 | 0335e.com |
259 | -03412.com | |
260 | 252 | 035110000.com |
261 | 253 | 0351data.com |
262 | 254 | 0351fdc.com |
@@ -392,7 +384,6 @@ | ||
392 | 384 | 0592dsw.com |
393 | 385 | 0592jj.com |
394 | 386 | 0592xl.com |
395 | -05935.com | |
396 | 387 | 0594.com |
397 | 388 | 0595job.com |
398 | 389 | 0595rc.com |
@@ -555,7 +546,6 @@ | ||
555 | 546 | 0852job.com |
556 | 547 | 0853rc.com |
557 | 548 | 0854job.com |
558 | -0855job.com | |
559 | 549 | 0856job.com |
560 | 550 | 0857job.com |
561 | 551 | 0859job.com |
@@ -602,7 +592,6 @@ | ||
602 | 592 | 0992.cc |
603 | 593 | 09ge.com |
604 | 594 | 09shijue.com |
605 | -0a.fit | |
606 | 595 | 0bug.org |
607 | 596 | 0car0.com |
608 | 597 | 0cname.com |
@@ -845,6 +834,7 @@ | ||
845 | 834 | 111155268.com |
846 | 835 | 1113.cc |
847 | 836 | 1113dns.com |
837 | +1114dns.com | |
848 | 838 | 11160066.com |
849 | 839 | 111com.net |
850 | 840 | 111g.com |
@@ -930,7 +920,6 @@ | ||
930 | 920 | 117play.com |
931 | 921 | 118114.net |
932 | 922 | 1188.com |
933 | -118cha.com | |
934 | 923 | 118cy.com |
935 | 924 | 118jm.com |
936 | 925 | 118pan.com |
@@ -939,7 +928,6 @@ | ||
939 | 928 | 118wa.com |
940 | 929 | 119120.org |
941 | 930 | 119958.com |
942 | -119hn.com | |
943 | 931 | 119tx.com |
944 | 932 | 119you.com |
945 | 933 | 11chuangye.com |
@@ -970,7 +958,6 @@ | ||
970 | 958 | 120askimages.com |
971 | 959 | 120bjgcyy.org |
972 | 960 | 120btc.com |
973 | -120dxb.com | |
974 | 961 | 120fd.com |
975 | 962 | 120kaoshi.com |
976 | 963 | 120kid.com |
@@ -1027,7 +1014,6 @@ | ||
1027 | 1014 | 12365auto.com |
1028 | 1015 | 12366.com |
1029 | 1016 | 12366.net |
1030 | -12366ca.com | |
1031 | 1017 | 12366cn.com |
1032 | 1018 | 12366ns.com |
1033 | 1019 | 123ad.com |
@@ -1035,8 +1021,6 @@ | ||
1035 | 1021 | 123aoe.com |
1036 | 1022 | 123baofeng.com |
1037 | 1023 | 123bo.com |
1038 | -123buyu.com | |
1039 | -123buyu.net | |
1040 | 1024 | 123ds.org |
1041 | 1025 | 123du.cc |
1042 | 1026 | 123ems.com |
@@ -1139,6 +1123,7 @@ | ||
1139 | 1123 | 1351.com |
1140 | 1124 | 135309.com |
1141 | 1125 | 135320.com |
1126 | +1353j.com | |
1142 | 1127 | 135650.com |
1143 | 1128 | 13567.com |
1144 | 1129 | 1356789.com |
@@ -1188,10 +1173,8 @@ | ||
1188 | 1173 | 139wanke.com |
1189 | 1174 | 139y.com |
1190 | 1175 | 139zhuti.com |
1191 | -13cg.com | |
1192 | 1176 | 13cr.com |
1193 | 1177 | 13ejob.com |
1194 | -13fuwu.com | |
1195 | 1178 | 13gm.com |
1196 | 1179 | 13hangpifa.com |
1197 | 1180 | 13ww.net |
@@ -1532,10 +1515,8 @@ | ||
1532 | 1515 | 17ll.com |
1533 | 1516 | 17luyouqi.com |
1534 | 1517 | 17m3.com |
1535 | -17maimaimai.com | |
1536 | 1518 | 17meiwen.com |
1537 | 1519 | 17mf.com |
1538 | -17miyou.com | |
1539 | 1520 | 17mqw.com |
1540 | 1521 | 17ms.com |
1541 | 1522 | 17neo.com |
@@ -1581,6 +1562,7 @@ | ||
1581 | 1562 | 17wclass.com |
1582 | 1563 | 17weike.com |
1583 | 1564 | 17wendao.com |
1565 | +17whz.com | |
1584 | 1566 | 17win.com |
1585 | 1567 | 17ww.cc |
1586 | 1568 | 17xie.com |
@@ -1612,7 +1594,6 @@ | ||
1612 | 1594 | 180268900.com |
1613 | 1595 | 18095.com |
1614 | 1596 | 180qt.com |
1615 | -181230.com | |
1616 | 1597 | 18183.com |
1617 | 1598 | 18183g.com |
1618 | 1599 | 1818hm.com |
@@ -1723,7 +1704,6 @@ | ||
1723 | 1704 | 199yt.com |
1724 | 1705 | 199zw.com |
1725 | 1706 | 19call.com |
1726 | -19kan.com | |
1727 | 1707 | 19lou.com |
1728 | 1708 | 19mi.net |
1729 | 1709 | 19mini.com |
@@ -1831,6 +1811,7 @@ | ||
1831 | 1811 | 1qwe3r.com |
1832 | 1812 | 1r1g.com |
1833 | 1813 | 1rtb.com |
1814 | +1rtb.net | |
1834 | 1815 | 1safety.cc |
1835 | 1816 | 1sapp.com |
1836 | 1817 | 1shang.com |
@@ -1935,7 +1916,6 @@ | ||
1935 | 1916 | 20z.com |
1936 | 1917 | 21-rent.com |
1937 | 1918 | 21-sun.com |
1938 | -210166.com | |
1939 | 1919 | 210997.com |
1940 | 1920 | 210z.com |
1941 | 1921 | 2113.net |
@@ -1990,6 +1970,7 @@ | ||
1990 | 1970 | 21epub.com |
1991 | 1971 | 21fid.com |
1992 | 1972 | 21food.com |
1973 | +21ge2.com | |
1993 | 1974 | 21hh.com |
1994 | 1975 | 21hubei.com |
1995 | 1976 | 21hubei.net |
@@ -2037,7 +2018,6 @@ | ||
2037 | 2018 | 21voa.com |
2038 | 2019 | 21wecan.com |
2039 | 2020 | 21wenju.com |
2040 | -21wmd.com | |
2041 | 2021 | 21ww.cc |
2042 | 2022 | 21xc.com |
2043 | 2023 | 21xcx.com |
@@ -2095,7 +2075,6 @@ | ||
2095 | 2075 | 22k9.com |
2096 | 2076 | 22lianmeng.com |
2097 | 2077 | 22lrc.com |
2098 | -22m6.com | |
2099 | 2078 | 22mt.in |
2100 | 2079 | 22n.com |
2101 | 2080 | 22net.com |
@@ -2128,7 +2107,6 @@ | ||
2128 | 2107 | 233py.com |
2129 | 2108 | 233wo.com |
2130 | 2109 | 233ww.net |
2131 | -233xiao.com | |
2132 | 2110 | 233xyx.com |
2133 | 2111 | 234.com |
2134 | 2112 | 2344.com |
@@ -2203,7 +2181,6 @@ | ||
2203 | 2181 | 24geban.com |
2204 | 2182 | 24haowan.com |
2205 | 2183 | 24hmb.com |
2206 | -24jz.com | |
2207 | 2184 | 24k99.com |
2208 | 2185 | 24ker.com |
2209 | 2186 | 24kplus.com |
@@ -2220,7 +2197,6 @@ | ||
2220 | 2197 | 2500fang.com |
2221 | 2198 | 2500sz.com |
2222 | 2199 | 250sy.cc |
2223 | -251633.com | |
2224 | 2200 | 2529.com |
2225 | 2201 | 253.com |
2226 | 2202 | 253669vqx.com |
@@ -2290,7 +2266,6 @@ | ||
2290 | 2266 | 26ef.com |
2291 | 2267 | 26host.com |
2292 | 2268 | 26joy.com |
2293 | -26ksw.com | |
2294 | 2269 | 26lady.com |
2295 | 2270 | 26tc.com |
2296 | 2271 | 26youxi.com |
@@ -2307,7 +2282,6 @@ | ||
2307 | 2282 | 27aichi.com |
2308 | 2283 | 27dt.com |
2309 | 2284 | 27dy.com |
2310 | -27glyy.com | |
2311 | 2285 | 27l.com |
2312 | 2286 | 27lmfq.com |
2313 | 2287 | 27lvpai.com |
@@ -2394,6 +2368,7 @@ | ||
2394 | 2368 | 2ic.cc |
2395 | 2369 | 2ita.com |
2396 | 2370 | 2itcn.com |
2371 | +2j-m.by | |
2397 | 2372 | 2j88.com |
2398 | 2373 | 2jianli.com |
2399 | 2374 | 2jiapu.com |
@@ -2506,7 +2481,6 @@ | ||
2506 | 2481 | 3188.la |
2507 | 2482 | 318ek.com |
2508 | 2483 | 3198.com |
2509 | -319n.com | |
2510 | 2484 | 31alu.com |
2511 | 2485 | 31bxg.com |
2512 | 2486 | 31byq.com |
@@ -2530,6 +2504,7 @@ | ||
2530 | 2504 | 31mada.com |
2531 | 2505 | 31martech.com |
2532 | 2506 | 31meijia.com |
2507 | +31ml.com | |
2533 | 2508 | 31mold.com |
2534 | 2509 | 31myhome.com |
2535 | 2510 | 31pump.com |
@@ -2564,12 +2539,11 @@ | ||
2564 | 2539 | 322wl.com |
2565 | 2540 | 3230.com |
2566 | 2541 | 3234.com |
2567 | -323507.com | |
2568 | 2542 | 3237.com |
2569 | -323700.net | |
2570 | 2543 | 324.com |
2571 | 2544 | 3259.com |
2572 | 2545 | 326pay.com |
2546 | +3280.com | |
2573 | 2547 | 32800.com |
2574 | 2548 | 328f.com |
2575 | 2549 | 328vip.com |
@@ -2594,12 +2568,9 @@ | ||
2594 | 2568 | 3323399.com |
2595 | 2569 | 332831.com |
2596 | 2570 | 333-555.com |
2597 | -3331909.com | |
2598 | -3332025.com | |
2599 | 2571 | 3332219.com |
2600 | 2572 | 3332235.com |
2601 | 2573 | 3332358.com |
2602 | -3332600.com | |
2603 | 2574 | 333333.com |
2604 | 2575 | 3335665.com |
2605 | 2576 | 33360.com |
@@ -2696,7 +2667,6 @@ | ||
2696 | 2667 | 3500.com |
2697 | 2668 | 350200.com |
2698 | 2669 | 350abc.net |
2699 | -3511.net | |
2700 | 2670 | 352.com |
2701 | 2671 | 3520.net |
2702 | 2672 | 352200.com |
@@ -2870,7 +2840,6 @@ | ||
2870 | 2840 | 3618med.com |
2871 | 2841 | 361a.com |
2872 | 2842 | 361dai.com |
2873 | -361games.com | |
2874 | 2843 | 361mogame.com |
2875 | 2844 | 361shipin.com |
2876 | 2845 | 361sport.com |
@@ -2901,6 +2870,7 @@ | ||
2901 | 2870 | 365cgw.com |
2902 | 2871 | 365chanlun.com |
2903 | 2872 | 365che.net |
2873 | +365cyd.com | |
2904 | 2874 | 365cyd.net |
2905 | 2875 | 365daan.com |
2906 | 2876 | 365dhw.com |
@@ -2919,7 +2889,6 @@ | ||
2919 | 2889 | 365htk.com |
2920 | 2890 | 365huaer.com |
2921 | 2891 | 365huifu.com |
2922 | -365huo.com | |
2923 | 2892 | 365ibank.com |
2924 | 2893 | 365icl.com |
2925 | 2894 | 365ime.com |
@@ -2956,7 +2925,6 @@ | ||
2956 | 2925 | 365xxy.com |
2957 | 2926 | 365yg.com |
2958 | 2927 | 365you.com |
2959 | -365zzd.com | |
2960 | 2928 | 3663.com |
2961 | 2929 | 366300.com |
2962 | 2930 | 366ec.com |
@@ -2977,6 +2945,7 @@ | ||
2977 | 2945 | 36cao.live |
2978 | 2946 | 36dianping.com |
2979 | 2947 | 36dj.com |
2948 | +36dm.com | |
2980 | 2949 | 36hjob.com |
2981 | 2950 | 36jr.com |
2982 | 2951 | 36kr.com |
@@ -2984,7 +2953,6 @@ | ||
2984 | 2953 | 36krcdn.com |
2985 | 2954 | 36krcnd.com |
2986 | 2955 | 36nu.com |
2987 | -36sfw.com | |
2988 | 2956 | 36ve.net |
2989 | 2957 | 36yc.com |
2990 | 2958 | 36yh.com |
@@ -3139,8 +3107,6 @@ | ||
3139 | 3107 | 3ddl.net |
3140 | 3108 | 3ddl.org |
3141 | 3109 | 3deazer.com |
3142 | -3demoo.com | |
3143 | -3dfrom.com | |
3144 | 3110 | 3dgenomics.org |
3145 | 3111 | 3dhao.com |
3146 | 3112 | 3dhat.com |
@@ -3238,9 +3204,7 @@ | ||
3238 | 3204 | 3s001.com |
3239 | 3205 | 3s3w.com |
3240 | 3206 | 3s78.com |
3241 | -3sbase.com | |
3242 | 3207 | 3scard.com |
3243 | -3seconds.net | |
3244 | 3208 | 3shuwu.com |
3245 | 3209 | 3snews.net |
3246 | 3210 | 3songshu.com |
@@ -3254,7 +3218,6 @@ | ||
3254 | 3218 | 3v.do |
3255 | 3219 | 3vjia.com |
3256 | 3220 | 3vjuyuan.com |
3257 | -3vkj.net | |
3258 | 3221 | 3vlm.net |
3259 | 3222 | 3vsheji.com |
3260 | 3223 | 3wads.com |
@@ -3377,7 +3340,6 @@ | ||
3377 | 3340 | 43423manhua.com |
3378 | 3341 | 435000.com |
3379 | 3342 | 435200.com |
3380 | -435214.com | |
3381 | 3343 | 4355.com |
3382 | 3344 | 4366.com |
3383 | 3345 | 436675.com |
@@ -3425,8 +3387,6 @@ | ||
3425 | 3387 | 4493.com |
3426 | 3388 | 44971.com |
3427 | 3389 | 44dt.com |
3428 | -44england.com | |
3429 | -44pq.co | |
3430 | 3390 | 44vs.com |
3431 | 3391 | 453600.net |
3432 | 3392 | 45575.com |
@@ -3449,7 +3409,6 @@ | ||
3449 | 3409 | 46466.me |
3450 | 3410 | 465676.tv |
3451 | 3411 | 4658.net |
3452 | -466.com | |
3453 | 3412 | 4662000.com |
3454 | 3413 | 46644.com |
3455 | 3414 | 46771313.com |
@@ -3518,7 +3477,6 @@ | ||
3518 | 3477 | 4hpy.com |
3519 | 3478 | 4inlook.com |
3520 | 3479 | 4jplus.com |
3521 | -4k-w.com | |
3522 | 3480 | 4k123.com |
3523 | 3481 | 4kbizhi.com |
3524 | 3482 | 4kong.com |
@@ -3751,6 +3709,7 @@ | ||
3751 | 3709 | 51code.com |
3752 | 3710 | 51cok.com |
3753 | 3711 | 51comp.com |
3712 | +51cosmo.com | |
3754 | 3713 | 51cpm.com |
3755 | 3714 | 51credit.com |
3756 | 3715 | 51csr.com |
@@ -3907,6 +3866,7 @@ | ||
3907 | 3866 | 51kehui.com |
3908 | 3867 | 51kids.com |
3909 | 3868 | 51kik.com |
3869 | +51kim.com | |
3910 | 3870 | 51kt.com |
3911 | 3871 | 51ktbyte.com |
3912 | 3872 | 51kupai.com |
@@ -3943,6 +3903,7 @@ | ||
3943 | 3903 | 51minbingtuan.net |
3944 | 3904 | 51miz.com |
3945 | 3905 | 51mkf.com |
3906 | +51mo.com | |
3946 | 3907 | 51mockup.com |
3947 | 3908 | 51mokao.com |
3948 | 3909 | 51mole.com |
@@ -4026,7 +3987,6 @@ | ||
4026 | 3987 | 51sgg.cc |
4027 | 3988 | 51share.net |
4028 | 3989 | 51shebao.com |
4029 | -51shebao.org | |
4030 | 3990 | 51sheyuan.com |
4031 | 3991 | 51shiping.com |
4032 | 3992 | 51shop.ink |
@@ -4038,7 +3998,6 @@ | ||
4038 | 3998 | 51shyc.com |
4039 | 3999 | 51signing.com |
4040 | 4000 | 51sjk.com |
4041 | -51sky.net | |
4042 | 4001 | 51sole.com |
4043 | 4002 | 51speeds.com |
4044 | 4003 | 51spjx.com |
@@ -4058,7 +4017,6 @@ | ||
4058 | 4017 | 51testing.com |
4059 | 4018 | 51testing.net |
4060 | 4019 | 51testing.org |
4061 | -51tfb.com | |
4062 | 4020 | 51tiangou.com |
4063 | 4021 | 51tie.com |
4064 | 4022 | 51tietu.net |
@@ -4192,9 +4150,7 @@ | ||
4192 | 4150 | 52-ic.com |
4193 | 4151 | 520.com |
4194 | 4152 | 520.net |
4195 | -5200.net | |
4196 | 4153 | 5200cc.com |
4197 | -5200e.com | |
4198 | 4154 | 5200wx.com |
4199 | 4155 | 520101.com |
4200 | 4156 | 520520520520520.com |
@@ -4220,10 +4176,8 @@ | ||
4220 | 4176 | 520mingmei.com |
4221 | 4177 | 520mojing.com |
4222 | 4178 | 520mwx.com |
4223 | -520sz.com | |
4224 | 4179 | 520wawa.com |
4225 | 4180 | 520way.com |
4226 | -520wenshen.com | |
4227 | 4181 | 520xiazai.com |
4228 | 4182 | 520xp.com |
4229 | 4183 | 520xst.com |
@@ -4257,7 +4211,7 @@ | ||
4257 | 4211 | 5257.com |
4258 | 4212 | 5258.net |
4259 | 4213 | 5258da.com |
4260 | -5262.com | |
4214 | +525zf.com | |
4261 | 4215 | 52676.com |
4262 | 4216 | 526net.com |
4263 | 4217 | 527578.com |
@@ -4285,7 +4239,6 @@ | ||
4285 | 4239 | 52audio.com |
4286 | 4240 | 52ayw.com |
4287 | 4241 | 52bar.com |
4288 | -52bendi.com | |
4289 | 4242 | 52biquge.com |
4290 | 4243 | 52bjd.com |
4291 | 4244 | 52bji.com |
@@ -4304,7 +4257,6 @@ | ||
4304 | 4257 | 52daohang.com |
4305 | 4258 | 52debug.net |
4306 | 4259 | 52design.com |
4307 | -52dfg.com | |
4308 | 4260 | 52digua.com |
4309 | 4261 | 52dmtp.com |
4310 | 4262 | 52doc.com |
@@ -4377,7 +4329,6 @@ | ||
4377 | 4329 | 52njl.net |
4378 | 4330 | 52opencourse.com |
4379 | 4331 | 52pcfree.com |
4380 | -52ph.com | |
4381 | 4332 | 52pi.com |
4382 | 4333 | 52pi.net |
4383 | 4334 | 52pictu.com |
@@ -4427,7 +4378,6 @@ | ||
4427 | 4378 | 52tt.com |
4428 | 4379 | 52tup.com |
4429 | 4380 | 52udl.com |
4430 | -52ugame.xyz | |
4431 | 4381 | 52vr.com |
4432 | 4382 | 52wana.com |
4433 | 4383 | 52wanh5.cc |
@@ -4543,7 +4493,6 @@ | ||
4543 | 4493 | 5507p.com |
4544 | 4494 | 55178.com |
4545 | 4495 | 55188.com |
4546 | -551house.com | |
4547 | 4496 | 5523.com |
4548 | 4497 | 55344.com |
4549 | 4498 | 5548.net |
@@ -4620,7 +4569,6 @@ | ||
4620 | 4569 | 56a.com |
4621 | 4570 | 56ads.com |
4622 | 4571 | 56beijing.org |
4623 | -56ca.com | |
4624 | 4572 | 56care.com |
4625 | 4573 | 56che.com |
4626 | 4574 | 56china.com |
@@ -4651,7 +4599,6 @@ | ||
4651 | 4599 | 56tchr.com |
4652 | 4600 | 56tj.com |
4653 | 4601 | 56uu.com |
4654 | -56wen.com | |
4655 | 4602 | 56ye.net |
4656 | 4603 | 56zzx.com |
4657 | 4604 | 57.net |
@@ -4730,7 +4677,6 @@ | ||
4730 | 4677 | 58display.com |
4731 | 4678 | 58dns.org |
4732 | 4679 | 58duihuan.com |
4733 | -58fangdai.com | |
4734 | 4680 | 58food.com |
4735 | 4681 | 58game.com |
4736 | 4682 | 58gameup.com |
@@ -4826,12 +4772,12 @@ | ||
4826 | 4772 | 59edu.com |
4827 | 4773 | 59hs.com |
4828 | 4774 | 59iedu.com |
4775 | +59ni.com | |
4829 | 4776 | 59pk.net |
4830 | 4777 | 59store.com |
4831 | 4778 | 59w.net |
4832 | 4779 | 59wj.com |
4833 | 4780 | 59yx.com |
4834 | -5a49.com | |
4835 | 4781 | 5a8.org |
4836 | 4782 | 5aaa.com |
4837 | 4783 | 5acbd.com |
@@ -4869,6 +4815,7 @@ | ||
4869 | 4815 | 5earena.com |
4870 | 4816 | 5earenacdn.com |
4871 | 4817 | 5eplay.com |
4818 | +5eplaycdn.com | |
4872 | 4819 | 5etv.com |
4873 | 4820 | 5ewin.com |
4874 | 4821 | 5fen.com |
@@ -4884,6 +4831,7 @@ | ||
4884 | 4831 | 5gzm.net |
4885 | 4832 | 5h.com |
4886 | 4833 | 5ha.net |
4834 | +5haoxue.net | |
4887 | 4835 | 5hrc.com |
4888 | 4836 | 5hte21mz.com |
4889 | 4837 | 5i-training.net |
@@ -4897,7 +4845,6 @@ | ||
4897 | 4845 | 5iape.com |
4898 | 4846 | 5ibc.net |
4899 | 4847 | 5ibear.com |
4900 | -5icaipu.com | |
4901 | 4848 | 5icbs.com |
4902 | 4849 | 5ichecker.com |
4903 | 4850 | 5ichong.com |
@@ -4980,7 +4927,6 @@ | ||
4980 | 4927 | 5sem.com |
4981 | 4928 | 5sha.com |
4982 | 4929 | 5sharing.com |
4983 | -5shiki.com | |
4984 | 4930 | 5snow.com |
4985 | 4931 | 5stmt.com |
4986 | 4932 | 5sw.com |
@@ -5030,7 +4976,6 @@ | ||
5030 | 4976 | 60.cm |
5031 | 4977 | 600052.com |
5032 | 4978 | 60012.com |
5033 | -600525.net | |
5034 | 4979 | 600895.com |
5035 | 4980 | 600zi.com |
5036 | 4981 | 601601.com |
@@ -5103,7 +5048,6 @@ | ||
5103 | 5048 | 61tg.com |
5104 | 5049 | 61xiangce.com |
5105 | 5050 | 62.com |
5106 | -6210k.com | |
5107 | 5051 | 623k.com |
5108 | 5052 | 626688.com |
5109 | 5053 | 62669.com |
@@ -5195,7 +5139,6 @@ | ||
5195 | 5139 | 6655.com |
5196 | 5140 | 6655.la |
5197 | 5141 | 6660333.com |
5198 | -6665890.com | |
5199 | 5142 | 6666519.net |
5200 | 5143 | 666666.so |
5201 | 5144 | 66667aaa.com |
@@ -5215,11 +5158,9 @@ | ||
5215 | 5158 | 6678net.com |
5216 | 5159 | 66825.com |
5217 | 5160 | 668559.com |
5218 | -6686x1.com | |
5219 | 5161 | 6688.com |
5220 | 5162 | 66889.net |
5221 | 5163 | 668895.com |
5222 | -6688dns.com | |
5223 | 5164 | 6688pay.com |
5224 | 5165 | 668app.com |
5225 | 5166 | 668lw.com |
@@ -5291,7 +5232,6 @@ | ||
5291 | 5232 | 678py.com |
5292 | 5233 | 67joy.com |
5293 | 5234 | 67lm.com |
5294 | -67mb.com | |
5295 | 5235 | 67mo.com |
5296 | 5236 | 67wanwan.com |
5297 | 5237 | 67yes.com |
@@ -5345,7 +5285,6 @@ | ||
5345 | 5285 | 69jianzhi.com |
5346 | 5286 | 69mok.com |
5347 | 5287 | 69ps.com |
5348 | -69shu.org | |
5349 | 5288 | 69xiu.com |
5350 | 5289 | 69yc.com |
5351 | 5290 | 69ys.com |
@@ -5442,7 +5381,6 @@ | ||
5442 | 5381 | 703804.com |
5443 | 5382 | 7080edu.com |
5444 | 5383 | 7082.com |
5445 | -709xs.com | |
5446 | 5384 | 70dh.com |
5447 | 5385 | 70dir.com |
5448 | 5386 | 70god.com |
@@ -5486,7 +5424,6 @@ | ||
5486 | 5424 | 71k.com |
5487 | 5425 | 71lady.com |
5488 | 5426 | 71lady.net |
5489 | -71one.net | |
5490 | 5427 | 71p.net |
5491 | 5428 | 71study.com |
5492 | 5429 | 71txt.com |
@@ -5614,6 +5551,7 @@ | ||
5614 | 5551 | 7724.com |
5615 | 5552 | 7724yx.com |
5616 | 5553 | 7725.com |
5554 | +77275.cc | |
5617 | 5555 | 7729.com |
5618 | 5556 | 77313.com |
5619 | 5557 | 77348k.com |
@@ -5727,13 +5665,11 @@ | ||
5727 | 5665 | 7capp.com |
5728 | 5666 | 7ccj.com |
5729 | 5667 | 7chacha.com |
5730 | -7chajiu.com | |
5731 | 5668 | 7cmz.com |
5732 | 5669 | 7cname.com |
5733 | 5670 | 7cxk.com |
5734 | 5671 | 7dah8.com |
5735 | 5672 | 7dapei.com |
5736 | -7dianw.com | |
5737 | 5673 | 7didc.com |
5738 | 5674 | 7do.net |
5739 | 5675 | 7down.com |
@@ -5758,7 +5694,6 @@ | ||
5758 | 5694 | 7hon.com |
5759 | 5695 | 7huang.org |
5760 | 5696 | 7i2.com |
5761 | -7icp.com | |
5762 | 5697 | 7ipr.com |
5763 | 5698 | 7jia.com |
5764 | 5699 | 7jia2.com |
@@ -5868,7 +5803,6 @@ | ||
5868 | 5803 | 800mei.net |
5869 | 5804 | 800pharm.com |
5870 | 5805 | 800tu.com |
5871 | -800ux.com | |
5872 | 5806 | 800vod.com |
5873 | 5807 | 800xs.net |
5874 | 5808 | 800you.com |
@@ -5902,7 +5836,6 @@ | ||
5902 | 5836 | 80juqing.com |
5903 | 5837 | 80kongjian.com |
5904 | 5838 | 80kuku.com |
5905 | -80ml.com | |
5906 | 5839 | 80nb.com |
5907 | 5840 | 80note.com |
5908 | 5841 | 80paper.com |
@@ -5932,10 +5865,10 @@ | ||
5932 | 5865 | 81677.com |
5933 | 5866 | 8169.com |
5934 | 5867 | 817398.com |
5868 | +8175835ccc.com | |
5935 | 5869 | 81761.com |
5936 | 5870 | 817711.com |
5937 | 5871 | 818.com |
5938 | -818371.com | |
5939 | 5872 | 818it.com |
5940 | 5873 | 818ps.com |
5941 | 5874 | 818rmb.com |
@@ -6024,9 +5957,9 @@ | ||
6024 | 5957 | 85384.com |
6025 | 5958 | 853lab.com |
6026 | 5959 | 85462.lc |
5960 | +8555220.com | |
6027 | 5961 | 8558.org |
6028 | 5962 | 85679999.com |
6029 | -857yzf.com | |
6030 | 5963 | 8587.se |
6031 | 5964 | 85878078.com |
6032 | 5965 | 858game.com |
@@ -6040,6 +5973,7 @@ | ||
6040 | 5973 | 8616.at |
6041 | 5974 | 86175.com |
6042 | 5975 | 861817.com |
5976 | +861ppt.com | |
6043 | 5977 | 86215.com |
6044 | 5978 | 8624x.com |
6045 | 5979 | 86255845.com |
@@ -6079,6 +6013,7 @@ | ||
6079 | 6013 | 86jg.com |
6080 | 6014 | 86jobs.com |
6081 | 6015 | 86joy.com |
6016 | +86kang.com | |
6082 | 6017 | 86kl.com |
6083 | 6018 | 86kongqi.com |
6084 | 6019 | 86lawyer.com |
@@ -6178,11 +6113,9 @@ | ||
6178 | 6113 | 888ppt.com |
6179 | 6114 | 888rj.com |
6180 | 6115 | 8890tu.com |
6181 | -8898wz.com | |
6182 | 6116 | 88995799.com |
6183 | 6117 | 88999.com |
6184 | 6118 | 8899yyy.vip |
6185 | -889su.com | |
6186 | 6119 | 88bank.com |
6187 | 6120 | 88bx.com |
6188 | 6121 | 88cdn.com |
@@ -6214,7 +6147,6 @@ | ||
6214 | 6147 | 88zha.com |
6215 | 6148 | 88zyw.net |
6216 | 6149 | 8910.io |
6217 | -89125845.vip | |
6218 | 6150 | 89178.com |
6219 | 6151 | 89243599.vip |
6220 | 6152 | 89274.st |
@@ -6248,6 +6180,7 @@ | ||
6248 | 6180 | 8cheche.com |
6249 | 6181 | 8cname.com |
6250 | 6182 | 8cnet.com |
6183 | +8d7hhh8x.com | |
6251 | 6184 | 8da.com |
6252 | 6185 | 8ddao.com |
6253 | 6186 | 8dexpress.com |
@@ -6260,6 +6193,7 @@ | ||
6260 | 6193 | 8dwww.com |
6261 | 6194 | 8e8z.com |
6262 | 6195 | 8europe.com |
6196 | +8fe.com | |
6263 | 6197 | 8fenxiang.com |
6264 | 6198 | 8gov.com |
6265 | 6199 | 8gw.com |
@@ -6272,7 +6206,6 @@ | ||
6272 | 6206 | 8jxn.com |
6273 | 6207 | 8jzw.cc |
6274 | 6208 | 8k7k.com |
6275 | -8k8z.com | |
6276 | 6209 | 8kana.com |
6277 | 6210 | 8kzw.com |
6278 | 6211 | 8l8e.com |
@@ -6441,6 +6374,7 @@ | ||
6441 | 6374 | 91fifa.com |
6442 | 6375 | 91game.com |
6443 | 6376 | 91gaoding.com |
6377 | +91goodschool.com | |
6444 | 6378 | 91guzhi.com |
6445 | 6379 | 91h5.cc |
6446 | 6380 | 91haiju.com |
@@ -6590,7 +6524,6 @@ | ||
6590 | 6524 | 92aq.com |
6591 | 6525 | 92ay.com |
6592 | 6526 | 92bbs.net |
6593 | -92bizhi.com | |
6594 | 6527 | 92cloud.com |
6595 | 6528 | 92demo.com |
6596 | 6529 | 92dp.com |
@@ -6686,7 +6619,6 @@ | ||
6686 | 6619 | 94mxd.com |
6687 | 6620 | 94nw.com |
6688 | 6621 | 94php.com |
6689 | -94pm.com | |
6690 | 6622 | 94q.com |
6691 | 6623 | 94qy.com |
6692 | 6624 | 94rp.com |
@@ -6773,6 +6705,7 @@ | ||
6773 | 6705 | 96516.net |
6774 | 6706 | 96520.com |
6775 | 6707 | 96533.com |
6708 | +965373.com | |
6776 | 6709 | 9665.com |
6777 | 6710 | 966599.com |
6778 | 6711 | 9666sr.com |
@@ -6786,7 +6719,6 @@ | ||
6786 | 6719 | 96877.net |
6787 | 6720 | 968pk.com |
6788 | 6721 | 969009.com |
6789 | -9697.com | |
6790 | 6722 | 969g.com |
6791 | 6723 | 96bbs.com |
6792 | 6724 | 96caifu.com |
@@ -6806,7 +6738,6 @@ | ||
6806 | 6738 | 96yx.com |
6807 | 6739 | 96zxue.com |
6808 | 6740 | 97-7.com |
6809 | -970655.com | |
6810 | 6741 | 9718.com |
6811 | 6742 | 9718game.com |
6812 | 6743 | 9724.com |
@@ -6847,6 +6778,7 @@ | ||
6847 | 6778 | 980512.com |
6848 | 6779 | 980cje.com |
6849 | 6780 | 98158.com |
6781 | +98182.com | |
6850 | 6782 | 984g.com |
6851 | 6783 | 985.so |
6852 | 6784 | 985dh.com |
@@ -6855,6 +6787,7 @@ | ||
6855 | 6787 | 98654.com |
6856 | 6788 | 987.com |
6857 | 6789 | 9871.org |
6790 | +9873.com | |
6858 | 6791 | 987app.com |
6859 | 6792 | 987jx.com |
6860 | 6793 | 987jx.net |
@@ -6874,10 +6807,11 @@ | ||
6874 | 6807 | 98mp.com |
6875 | 6808 | 98nice.com |
6876 | 6809 | 98one.com |
6810 | +98t.la | |
6877 | 6811 | 98t.net |
6878 | 6812 | 98weixin.com |
6813 | +98wubi.com | |
6879 | 6814 | 98znz.com |
6880 | -99-ss.com | |
6881 | 6815 | 99.com |
6882 | 6816 | 99083.com |
6883 | 6817 | 99114.com |
@@ -6904,6 +6838,7 @@ | ||
6904 | 6838 | 9966w.com |
6905 | 6839 | 996a.com |
6906 | 6840 | 996dns.com |
6841 | +996pic.com | |
6907 | 6842 | 9973.com |
6908 | 6843 | 997788.com |
6909 | 6844 | 998.com |
@@ -6994,7 +6929,6 @@ | ||
6994 | 6929 | 99weiqi.com |
6995 | 6930 | 99wuxian.com |
6996 | 6931 | 99xr.com |
6997 | -99xxg.com | |
6998 | 6932 | 99xyx.com |
6999 | 6933 | 99yoo.com |
7000 | 6934 | 99youmeng.com |
@@ -7110,6 +7044,7 @@ | ||
7110 | 7044 | 9wee.net |
7111 | 7045 | 9weihu.com |
7112 | 7046 | 9wuli.com |
7047 | +9wwx.com | |
7113 | 7048 | 9xgame.com |
7114 | 7049 | 9xiazaiqi.com |
7115 | 7050 | 9xiu.com |
@@ -7133,7 +7068,6 @@ | ||
7133 | 7068 | 9zjob.com |
7134 | 7069 | 9zx.com |
7135 | 7070 | a-du.net |
7136 | -a-hospital.com | |
7137 | 7071 | a-jazz.com |
7138 | 7072 | a-liai.com |
7139 | 7073 | a-map.link |
@@ -7153,7 +7087,6 @@ a5.net | ||
7153 | 7087 | a5idc.net |
7154 | 7088 | a632079.me |
7155 | 7089 | a67dy.com |
7156 | -a6a1.com | |
7157 | 7090 | a6shi.com |
7158 | 7091 | a7.com |
7159 | 7092 | a8.com |
@@ -7220,13 +7153,13 @@ abclogs.com | ||
7220 | 7153 | abcs8.com |
7221 | 7154 | abctang.com |
7222 | 7155 | abcve.com |
7223 | -abcxs.com | |
7224 | 7156 | abcxyzkk.xyz |
7225 | 7157 | abcydia.com |
7226 | 7158 | abd007.com |
7227 | 7159 | abdstem.com |
7228 | 7160 | abe-tech.com |
7229 | 7161 | abeacon.com |
7162 | +abgxxc.com | |
7230 | 7163 | abhouses.com |
7231 | 7164 | abiechina.com |
7232 | 7165 | abiestem.com |
@@ -7390,6 +7323,7 @@ adapay.tech | ||
7390 | 7323 | adarrive.com |
7391 | 7324 | adaxin.com |
7392 | 7325 | adbats.com |
7326 | +adbkwai.com | |
7393 | 7327 | adbxb.com |
7394 | 7328 | adc-expo.com |
7395 | 7329 | adccd.com |
@@ -7450,7 +7384,6 @@ adminportal.cdnetworks.com | ||
7450 | 7384 | adminso.com |
7451 | 7385 | admintony.com |
7452 | 7386 | adminxy.com |
7453 | -admpub.com | |
7454 | 7387 | admqr.com |
7455 | 7388 | adnineplus.com |
7456 | 7389 | adnyg.com |
@@ -7485,6 +7418,7 @@ adtchrome.com | ||
7485 | 7418 | adtianmai.com |
7486 | 7419 | adtime.com |
7487 | 7420 | adtmm.com |
7421 | +adtxl.com | |
7488 | 7422 | adubest.com |
7489 | 7423 | adukwai.com |
7490 | 7424 | adunicorn.com |
@@ -7580,7 +7514,6 @@ agefans.app | ||
7580 | 7514 | agenge.com |
7581 | 7515 | agenow.com |
7582 | 7516 | agentzh.org |
7583 | -agfoodpartnership.com | |
7584 | 7517 | aggresmart.com |
7585 | 7518 | aghcdn.com |
7586 | 7519 | agile-china.com |
@@ -7625,7 +7558,6 @@ ahchuangyebang.com | ||
7625 | 7558 | ahcjhjj.com |
7626 | 7559 | ahcnb.com |
7627 | 7560 | ahdf56.com |
7628 | -ahdltj.com | |
7629 | 7561 | ahdsez.com |
7630 | 7562 | ahdzfp.com |
7631 | 7563 | aheading.com |
@@ -7660,7 +7592,6 @@ ahlib.com | ||
7660 | 7592 | ahlife.com |
7661 | 7593 | ahljnews.com |
7662 | 7594 | ahlsm1.com |
7663 | -ahmayun.com | |
7664 | 7595 | ahmky.com |
7665 | 7596 | ahnanfang.com |
7666 | 7597 | ahnews.org |
@@ -7685,7 +7616,6 @@ ahuano.com | ||
7685 | 7616 | ahudows.com |
7686 | 7617 | ahugeship.com |
7687 | 7618 | ahuyi.com |
7688 | -ahwkdz.com | |
7689 | 7619 | ahwwnews.com |
7690 | 7620 | ahwxcs.com |
7691 | 7621 | ahxwkj.com |
@@ -7864,6 +7794,7 @@ aimapp.net | ||
7864 | 7794 | aimatech.com |
7865 | 7795 | aimatrix.ai |
7866 | 7796 | aimeas.com |
7797 | +aimei39.com | |
7867 | 7798 | aimeideni.com |
7868 | 7799 | aimeike.tv |
7869 | 7800 | aimeit.com |
@@ -7906,7 +7837,6 @@ aiqygogo.com | ||
7906 | 7837 | aiqzu.net |
7907 | 7838 | air-level.com |
7908 | 7839 | air-matters.com |
7909 | -air-quality.com | |
7910 | 7840 | air.cc |
7911 | 7841 | airbft.com |
7912 | 7842 | airchangan.com |
@@ -7918,6 +7848,7 @@ airchinajet.com | ||
7918 | 7848 | airchinamedia.com |
7919 | 7849 | aircn.org |
7920 | 7850 | aircourses.com |
7851 | +airdoc.com | |
7921 | 7852 | airdropin.com |
7922 | 7853 | airen1314.com |
7923 | 7854 | airguilin.com |
@@ -7971,7 +7902,6 @@ aitiancheng.com | ||
7971 | 7902 | aitrans.net |
7972 | 7903 | aitransfy.com |
7973 | 7904 | aituan.com |
7974 | -aitupian.com | |
7975 | 7905 | aituwo.com |
7976 | 7906 | aityp.com |
7977 | 7907 | aiufida.com |
@@ -7982,6 +7912,7 @@ aiuxian.com | ||
7982 | 7912 | aiuxstudio.com |
7983 | 7913 | aiviy.com |
7984 | 7914 | aiviysoft.com |
7915 | +aivote.com | |
7985 | 7916 | aiwall.com |
7986 | 7917 | aiwan4399.com |
7987 | 7918 | aiwan91.com |
@@ -8064,7 +7995,6 @@ ajkimg.com | ||
8064 | 7995 | ajmide.com |
8065 | 7996 | ajrcb.com |
8066 | 7997 | ajs17.com |
8067 | -aju.space | |
8068 | 7998 | ajwang.com |
8069 | 7999 | ajweishequ.com |
8070 | 8000 | ajxlx.com |
@@ -8233,6 +8163,7 @@ aliplay.com | ||
8233 | 8163 | aliplus.com |
8234 | 8164 | aliqiche.com |
8235 | 8165 | aliresearch.com |
8166 | +alisabelen.com | |
8236 | 8167 | alisoft.com |
8237 | 8168 | alisports.com |
8238 | 8169 | alitchina.com |
@@ -8452,7 +8383,6 @@ amo9.com | ||
8452 | 8383 | amobbs.com |
8453 | 8384 | amoe.cc |
8454 | 8385 | amon.org |
8455 | -amon1997.com | |
8456 | 8386 | ampc8.com |
8457 | 8387 | ampcn.com |
8458 | 8388 | amplesky.com |
@@ -8462,13 +8392,11 @@ ams-ic.com | ||
8462 | 8392 | amsjsy.com |
8463 | 8393 | amsoveasea.com |
8464 | 8394 | amssro.net |
8465 | -amtlf.com | |
8466 | 8395 | amtron-ic.com |
8467 | 8396 | amuletj.com |
8468 | 8397 | amuletor.com |
8469 | 8398 | amunion.com |
8470 | 8399 | amuren.com |
8471 | -amwayapp.com | |
8472 | 8400 | amwiki.org |
8473 | 8401 | amysql.com |
8474 | 8402 | amyxun.com |
@@ -8493,6 +8421,7 @@ ancii.com | ||
8493 | 8421 | ancun.com |
8494 | 8422 | andaike.com |
8495 | 8423 | andan.me |
8424 | +andcaifu.com | |
8496 | 8425 | andeyi1688.com |
8497 | 8426 | andfx.net |
8498 | 8427 | andhj.com |
@@ -8501,7 +8430,6 @@ andpay.me | ||
8501 | 8430 | andreader.com |
8502 | 8431 | android-doc.com |
8503 | 8432 | android-studio.org |
8504 | -androidchina.net | |
8505 | 8433 | androidinvest.com |
8506 | 8434 | androidmi.com |
8507 | 8435 | androidonline.net |
@@ -8534,7 +8462,6 @@ anglo-chinese.com | ||
8534 | 8462 | angogotech.net |
8535 | 8463 | angruo.com |
8536 | 8464 | angrymiao.com |
8537 | -anguanjia.com | |
8538 | 8465 | angui.org |
8539 | 8466 | angwei.net |
8540 | 8467 | anhei2.com |
@@ -8590,14 +8517,11 @@ anlu114.com | ||
8590 | 8517 | anmobc.com |
8591 | 8518 | anmoxiansheng.com |
8592 | 8519 | ann9.com |
8593 | -annangela.moe | |
8594 | -anneishuo.com | |
8595 | 8520 | annelhair.com |
8596 | 8521 | annhe.net |
8597 | 8522 | annto.com |
8598 | 8523 | anoah.com |
8599 | 8524 | anonym-hi.com |
8600 | -anoob.icu | |
8601 | 8525 | anorectal.net |
8602 | 8526 | anosmcloud.com |
8603 | 8527 | anoyi.com |
@@ -8610,7 +8534,6 @@ anquanbao.com | ||
8610 | 8534 | anquanke.com |
8611 | 8535 | anquanquan.info |
8612 | 8536 | anquantong.com |
8613 | -anquanxia.com | |
8614 | 8537 | anrayer.com |
8615 | 8538 | anren.org |
8616 | 8539 | anrenmind.com |
@@ -8656,6 +8579,7 @@ anw.red | ||
8656 | 8579 | anweishi.com |
8657 | 8580 | anweizhi.com |
8658 | 8581 | anwen.cc |
8582 | +anwsa.com | |
8659 | 8583 | anxcn.com |
8660 | 8584 | anxia.com |
8661 | 8585 | anxiaoer.com |
@@ -8680,7 +8604,6 @@ anyang100.com | ||
8680 | 8604 | anyangedu.com |
8681 | 8605 | anyant.com |
8682 | 8606 | anybeen.com |
8683 | -anydd.com | |
8684 | 8607 | anyelse.com |
8685 | 8608 | anyew.com |
8686 | 8609 | anyforweb.com |
@@ -8701,7 +8624,6 @@ anyunjianzhan.com | ||
8701 | 8624 | anyv.net |
8702 | 8625 | anyview.net |
8703 | 8626 | anyway.fm |
8704 | -anywlan.com | |
8705 | 8627 | anywood.com |
8706 | 8628 | anyxz.com |
8707 | 8629 | anzerclub.com |
@@ -8722,7 +8644,6 @@ aoapp.com | ||
8722 | 8644 | aobacore.com |
8723 | 8645 | aobaishi.com |
8724 | 8646 | aobosoft.com |
8725 | -aoc.com | |
8726 | 8647 | aocde.com |
8727 | 8648 | aocdn.com |
8728 | 8649 | aoch.com |
@@ -8816,6 +8737,7 @@ apclc.com | ||
8816 | 8737 | apcupse.com |
8817 | 8738 | apdcdn.com |
8818 | 8739 | ape8.com |
8740 | +apecome.com | |
8819 | 8741 | apeeri.com |
8820 | 8742 | apehorse.com |
8821 | 8743 | apeiwan.com |
@@ -8835,6 +8757,7 @@ apicase.io | ||
8835 | 8757 | apicloud.com |
8836 | 8758 | apicvn.com |
8837 | 8759 | apigwtencent.com |
8760 | +apimkt.net | |
8838 | 8761 | apiview.com |
8839 | 8762 | apizb.com |
8840 | 8763 | apizl.com |
@@ -9029,7 +8952,6 @@ archsummit.com | ||
9029 | 8952 | arcsoftai.com |
9030 | 8953 | arctime.org |
9031 | 8954 | ardsec.com |
9032 | -areachina.com | |
9033 | 8955 | areader.com |
9034 | 8956 | arebz.com |
9035 | 8957 | arefly.com |
@@ -9082,7 +9004,6 @@ artgohome.com | ||
9082 | 9004 | artgoin.com |
9083 | 9005 | arthome163.com |
9084 | 9006 | arthurchiao.art |
9085 | -arti200.com | |
9086 | 9007 | artimg.net |
9087 | 9008 | artintern.net |
9088 | 9009 | artlinkart.com |
@@ -9156,7 +9077,6 @@ asketchup.com | ||
9156 | 9077 | askk.cc |
9157 | 9078 | asklib.com |
9158 | 9079 | asklicai.com |
9159 | -askmaclean.com | |
9160 | 9080 | askpanda.cc |
9161 | 9081 | askququ.com |
9162 | 9082 | asktao.com |
@@ -9341,7 +9261,6 @@ auwinner.com | ||
9341 | 9261 | auxgroup.com |
9342 | 9262 | auyou.com |
9343 | 9263 | av-ic.com |
9344 | -av010.com | |
9345 | 9264 | av199.com |
9346 | 9265 | av2.me |
9347 | 9266 | av269.com |
@@ -9355,8 +9274,8 @@ avatr.com | ||
9355 | 9274 | avc-mr.com |
9356 | 9275 | avc-ott.com |
9357 | 9276 | avdll.com |
9277 | +avemaria.fun | |
9358 | 9278 | aves.art |
9359 | -avexchina.com | |
9360 | 9279 | avgh5.com |
9361 | 9280 | avhome.net |
9362 | 9281 | avic.com |
@@ -9395,12 +9314,15 @@ awotuan.com | ||
9395 | 9314 | awoyun.com |
9396 | 9315 | awsdns-cn-36.net |
9397 | 9316 | awsdns-cn-57.com |
9317 | +awsdns-cn-58.net | |
9318 | +awsl.wang | |
9398 | 9319 | awsok.com |
9399 | 9320 | awspal.com |
9400 | 9321 | awstar.net |
9401 | 9322 | awtmt.com |
9402 | 9323 | awuming.com |
9403 | 9324 | awx1.com |
9325 | +awyyzx.com | |
9404 | 9326 | ax2nc4.ren |
9405 | 9327 | ax630.com |
9406 | 9328 | axatp.com |
@@ -9468,7 +9390,6 @@ b-element.com | ||
9468 | 9390 | b-eurochina.com |
9469 | 9391 | b-fairy.com |
9470 | 9392 | b086.com |
9471 | -b0w.me | |
9472 | 9393 | b1446.com |
9473 | 9394 | b178.com |
9474 | 9395 | b1bj.com |
@@ -9490,7 +9411,6 @@ b2bvip.net | ||
9490 | 9411 | b2byao.com |
9491 | 9412 | b2cedu.com |
9492 | 9413 | b2q.com |
9493 | -b35ii.com | |
9494 | 9414 | b3inside.com |
9495 | 9415 | b3log.org |
9496 | 9416 | b3logfile.com |
@@ -9619,6 +9539,7 @@ baidupcs.com | ||
9619 | 9539 | baidusmartapps.com |
9620 | 9540 | baidusobing.com |
9621 | 9541 | baidustatic.com |
9542 | +baidusx.com | |
9622 | 9543 | baidutab.com |
9623 | 9544 | baidutieba.com |
9624 | 9545 | baidutt.com |
@@ -9630,7 +9551,6 @@ baiduyun.com | ||
9630 | 9551 | baiduyun.wiki |
9631 | 9552 | baiduyundns.com |
9632 | 9553 | baiduyundns.net |
9633 | -baiduyunpan.com | |
9634 | 9554 | baiduyunsousou.com |
9635 | 9555 | baiduyy.com |
9636 | 9556 | baiduzjn.com |
@@ -9658,6 +9578,7 @@ baihuoke.com | ||
9658 | 9578 | baihuwang.com |
9659 | 9579 | baiila.com |
9660 | 9580 | baiinfo.com |
9581 | +baijia.com | |
9661 | 9582 | baijiacloud.com |
9662 | 9583 | baijiahulian.com |
9663 | 9584 | baijiasheping.com |
@@ -9744,7 +9665,6 @@ baixingcdn.com | ||
9744 | 9665 | baixingjd.com |
9745 | 9666 | baixingmall.com |
9746 | 9667 | baixingzixun.com |
9747 | -baixiongz.com | |
9748 | 9668 | baixiu.org |
9749 | 9669 | baiyangwang.com |
9750 | 9670 | baiyangzb.com |
@@ -9823,6 +9743,7 @@ bangcle.com | ||
9823 | 9743 | bangdao-tech.com |
9824 | 9744 | banggo.com |
9825 | 9745 | banghaiwai.com |
9746 | +bangjixia.com | |
9826 | 9747 | bangkao.com |
9827 | 9748 | bangkebao.com |
9828 | 9749 | banglianai.com |
@@ -9848,7 +9769,6 @@ banjiamao.com | ||
9848 | 9769 | banjixiaoguanjia.com |
9849 | 9770 | banjuanshu.com |
9850 | 9771 | bank-of-china.com |
9851 | -bank-swift-code.info | |
9852 | 9772 | bankcomm.com |
9853 | 9773 | bankcomm.com.mo |
9854 | 9774 | bankcomm.com.tw |
@@ -9873,6 +9793,7 @@ banma.com | ||
9873 | 9793 | banmaaike.com |
9874 | 9794 | banmajsq.com |
9875 | 9795 | banmamedia.com |
9796 | +banmashuo.com | |
9876 | 9797 | banmasrf.com |
9877 | 9798 | banpie.info |
9878 | 9799 | banqumusic.com |
@@ -9887,6 +9808,7 @@ banxiayue.com | ||
9887 | 9808 | banyuetan.org |
9888 | 9809 | banyuetanxcx.com |
9889 | 9810 | banyunjuhe.com |
9811 | +banzhe.xyz | |
9890 | 9812 | banzou.name |
9891 | 9813 | bao-cun.com |
9892 | 9814 | bao-fang.com |
@@ -9909,7 +9831,6 @@ baobeihr.com | ||
9909 | 9831 | baobeihuijia.com |
9910 | 9832 | baobeita.com |
9911 | 9833 | baobeituan.com |
9912 | -baocai.com | |
9913 | 9834 | baocdn.com |
9914 | 9835 | baochaojianghu.com |
9915 | 9836 | baodan360.com |
@@ -10042,6 +9963,7 @@ batterydir.com | ||
10042 | 9963 | batterykey.com |
10043 | 9964 | battlecare.net |
10044 | 9965 | battleofballs.com |
9966 | +batupian.net | |
10045 | 9967 | baudu.com |
10046 | 9968 | baufortune.com |
10047 | 9969 | bauschlombchina.com |
@@ -10055,7 +9977,6 @@ baydn.com | ||
10055 | 9977 | baye.tech |
10056 | 9978 | bayescom.com |
10057 | 9979 | bayimob.com |
10058 | -bayinfu.com | |
10059 | 9980 | bayinh.com |
10060 | 9981 | bayinmao.com |
10061 | 9982 | bayuegua.com |
@@ -10077,9 +9998,9 @@ bazp.net | ||
10077 | 9998 | bb-edu.com |
10078 | 9999 | bb-game.com |
10079 | 10000 | bb-pco.com |
10080 | -bb-seo.com | |
10081 | 10001 | bb06.com |
10082 | 10002 | bb179.com |
10003 | +bb8gk.com | |
10083 | 10004 | bbanp.com |
10084 | 10005 | bbaod.com |
10085 | 10006 | bbaqw.com |
@@ -10137,7 +10058,6 @@ bbugifts.com | ||
10137 | 10058 | bbwfish.com |
10138 | 10059 | bbwxbbs.com |
10139 | 10060 | bbxinwen.com |
10140 | -bbytpjm.com | |
10141 | 10061 | bbzhh.com |
10142 | 10062 | bbzhi.com |
10143 | 10063 | bcactc.com |
@@ -10149,11 +10069,9 @@ bcbm66666.com | ||
10149 | 10069 | bcbm688.com |
10150 | 10070 | bcbpm.com |
10151 | 10071 | bcbvi.com |
10152 | -bccfw.com | |
10153 | 10072 | bccn.net |
10154 | 10073 | bccnsoft.com |
10155 | 10074 | bccv.com |
10156 | -bcczbj.com | |
10157 | 10075 | bcdaren.com |
10158 | 10076 | bcdy.net |
10159 | 10077 | bceapp.com |
@@ -10183,7 +10101,6 @@ bcty365.com | ||
10183 | 10101 | bcvbw.com |
10184 | 10102 | bcwangluo.net |
10185 | 10103 | bcweibo.com |
10186 | -bcwhy.com | |
10187 | 10104 | bcwxfy.com |
10188 | 10105 | bcxgame.com |
10189 | 10106 | bcxww.com |
@@ -10191,7 +10108,6 @@ bcy.net | ||
10191 | 10108 | bcyimg.com |
10192 | 10109 | bczcdn.com |
10193 | 10110 | bczs.net |
10194 | -bczx.cc | |
10195 | 10111 | bd-apaas.com |
10196 | 10112 | bd-caict.com |
10197 | 10113 | bd-film.cc |
@@ -10266,6 +10182,7 @@ bearyboard.com | ||
10266 | 10182 | bearychat.com |
10267 | 10183 | beasure.com |
10268 | 10184 | beats-digital.com |
10185 | +beatsbydre.com | |
10269 | 10186 | beatu.net |
10270 | 10187 | beautifullinux.com |
10271 | 10188 | beautifulzzzz.com |
@@ -10274,6 +10191,7 @@ beckwai.com | ||
10274 | 10191 | bedtimepoem.com |
10275 | 10192 | beduu.com |
10276 | 10193 | bee-net.com |
10194 | +bee-station.com | |
10277 | 10195 | beebeepop.com |
10278 | 10196 | beebeeto.com |
10279 | 10197 | beecook.com |
@@ -10305,7 +10223,6 @@ beianw.net | ||
10305 | 10223 | beibaozq.com |
10306 | 10224 | beibei.com |
10307 | 10225 | beibeicdn.com |
10308 | -beibj.com | |
10309 | 10226 | beicdn.com |
10310 | 10227 | beidahuang.net |
10311 | 10228 | beidasoft.com |
@@ -10321,7 +10238,6 @@ beieryouxi.com | ||
10321 | 10238 | beifabook.com |
10322 | 10239 | beifang.net |
10323 | 10240 | beifangfoshifen.com |
10324 | -beifangyanxue.net | |
10325 | 10241 | beifeng.com |
10326 | 10242 | beifuni.com |
10327 | 10243 | beiguorc.com |
@@ -10564,8 +10480,8 @@ bgsdk.net | ||
10564 | 10480 | bgsdyz.com |
10565 | 10481 | bgteach.com |
10566 | 10482 | bguai.com |
10483 | +bgwcsz.com | |
10567 | 10484 | bgwl.net |
10568 | -bgxlre.com | |
10569 | 10485 | bgyfhyx.com |
10570 | 10486 | bh.sb |
10571 | 10487 | bh1t.com |
@@ -10616,6 +10532,7 @@ biao12.com | ||
10616 | 10532 | biaodan.info |
10617 | 10533 | biaodiancloud.com |
10618 | 10534 | biaodianfu.com |
10535 | +biaofaw.com | |
10619 | 10536 | biaoge.com |
10620 | 10537 | biaoge.me |
10621 | 10538 | biaoju01.com |
@@ -10629,6 +10546,7 @@ biaoqingjia.com | ||
10629 | 10546 | biaoqingmm.com |
10630 | 10547 | biaotukeji.com |
10631 | 10548 | biaoyi.com |
10549 | +biaozhangshi.com | |
10632 | 10550 | biaozhiku.com |
10633 | 10551 | biaozhun.org |
10634 | 10552 | biaozhun8.com |
@@ -10640,7 +10558,6 @@ bibenet.com | ||
10640 | 10558 | bibgame.com |
10641 | 10559 | bibibi.net |
10642 | 10560 | bibiku.com |
10643 | -biblibili.com | |
10644 | 10561 | bibuzhengxing.com |
10645 | 10562 | bid-view.com |
10646 | 10563 | bidchance.com |
@@ -10691,7 +10608,6 @@ bigerdata.com | ||
10691 | 10608 | bigeshuju.com |
10692 | 10609 | biggerlens.com |
10693 | 10610 | biggeryun.com |
10694 | -biggsai.com | |
10695 | 10611 | bigherdsman.com |
10696 | 10612 | bightbc.com |
10697 | 10613 | bigjpg.com |
@@ -10720,6 +10636,7 @@ biji.com | ||
10720 | 10636 | biji.io |
10721 | 10637 | biji13.com |
10722 | 10638 | bijiago.com |
10639 | +bijianzw.com | |
10723 | 10640 | bijiao.org |
10724 | 10641 | bijiasso.com |
10725 | 10642 | bijiatu.com |
@@ -10776,7 +10693,6 @@ billowlink.com | ||
10776 | 10693 | billwang.net |
10777 | 10694 | bilnn.com |
10778 | 10695 | bim-times.com |
10779 | -bimcn.org | |
10780 | 10696 | bimilou.com |
10781 | 10697 | bimo.cc |
10782 | 10698 | binaryai.net |
@@ -10883,7 +10799,6 @@ biqugexs.la | ||
10883 | 10799 | biqugexsw.com |
10884 | 10800 | biqugexsw8.com |
10885 | 10801 | biqugexx.com |
10886 | -biqugu.net | |
10887 | 10802 | biquguan.com |
10888 | 10803 | biqukan.com |
10889 | 10804 | biquke.com |
@@ -10902,7 +10817,6 @@ biqutxt.com | ||
10902 | 10817 | biquw.com |
10903 | 10818 | biquwo.com |
10904 | 10819 | biquwo.net |
10905 | -biquwu.cc | |
10906 | 10820 | biquwx.la |
10907 | 10821 | biquxs.com |
10908 | 10822 | biquyue.com |
@@ -10997,7 +10911,6 @@ bizchallenge.net | ||
10997 | 10911 | bizcharts.net |
10998 | 10912 | bizcn.com |
10999 | 10913 | bizconfstreaming.com |
11000 | -bizgame.com | |
11001 | 10914 | bizhi360.com |
11002 | 10915 | bizhi88.com |
11003 | 10916 | bizhicool.com |
@@ -11014,7 +10927,6 @@ bizvane.com | ||
11014 | 10927 | bj-apc.com |
11015 | 10928 | bj-big.com |
11016 | 10929 | bj-dsmzyy.com |
11017 | -bj-ka.com | |
11018 | 10930 | bj-kpn.com |
11019 | 10931 | bj-sagtar.com |
11020 | 10932 | bj-sea.com |
@@ -11113,7 +11025,6 @@ bjidit.com | ||
11113 | 11025 | bjinfobank.com |
11114 | 11026 | bjipwqzx.com |
11115 | 11027 | bjiwex.com |
11116 | -bjjbsj.com | |
11117 | 11028 | bjjchf.com |
11118 | 11029 | bjjdwx.com |
11119 | 11030 | bjjf.cc |
@@ -11142,7 +11053,6 @@ bjllsy.com | ||
11142 | 11053 | bjlmfq.com |
11143 | 11054 | bjlongview.com |
11144 | 11055 | bjlot.com |
11145 | -bjlxss.com | |
11146 | 11056 | bjlyw.com |
11147 | 11057 | bjmailqq.com |
11148 | 11058 | bjmama.com |
@@ -11187,7 +11097,6 @@ bjsctx.com | ||
11187 | 11097 | bjsdfz.com |
11188 | 11098 | bjsdr.org |
11189 | 11099 | bjsfrj.com |
11190 | -bjshcw.com | |
11191 | 11100 | bjsheng.com |
11192 | 11101 | bjsidao.com |
11193 | 11102 | bjsjob.com |
@@ -11336,7 +11245,6 @@ bliner.me | ||
11336 | 11245 | bling.link |
11337 | 11246 | blingabc.com |
11338 | 11247 | blingclubs.com |
11339 | -blinkol.com | |
11340 | 11248 | blissmall.net |
11341 | 11249 | blizzardcn.com |
11342 | 11250 | bln7.com |
@@ -11464,7 +11372,6 @@ boanying.com | ||
11464 | 11372 | bob-cardif.com |
11465 | 11373 | bob-leasing.com |
11466 | 11374 | bob.com |
11467 | -bob2012.com | |
11468 | 11375 | bob4885.com |
11469 | 11376 | bobaow.com |
11470 | 11377 | bobbns.com |
@@ -11572,6 +11479,7 @@ bomin-china.com | ||
11572 | 11479 | bomman.com |
11573 | 11480 | bon-top.com |
11574 | 11481 | bon-wine.com |
11482 | +bonbonbongame.com | |
11575 | 11483 | bondlady.com |
11576 | 11484 | bongmi.com |
11577 | 11485 | bongv.com |
@@ -11588,7 +11496,6 @@ boohee.com | ||
11588 | 11496 | book118.com |
11589 | 11497 | book1234.com |
11590 | 11498 | bookask.com |
11591 | -bookba.net | |
11592 | 11499 | bookdao.com |
11593 | 11500 | bookdown.net |
11594 | 11501 | bookersea.com |
@@ -11691,6 +11598,7 @@ boyunso.com | ||
11691 | 11598 | boyuonline.com |
11692 | 11599 | bozhihua.com |
11693 | 11600 | bozhong.com |
11601 | +bozhou666.com | |
11694 | 11602 | bphetaomiao.com |
11695 | 11603 | bpimg.com |
11696 | 11604 | bppan.com |
@@ -11706,7 +11614,6 @@ bqg8.cc | ||
11706 | 11614 | bqg8.la |
11707 | 11615 | bqg99.cc |
11708 | 11616 | bqgyy.com |
11709 | -bqiapp.com | |
11710 | 11617 | bqimg.com |
11711 | 11618 | bqpoint.com |
11712 | 11619 | bqq8.com |
@@ -11739,7 +11646,6 @@ bronzesoft.com | ||
11739 | 11646 | brother-cn.net |
11740 | 11647 | brother-movie.com |
11741 | 11648 | brother.co.jp |
11742 | -brother66.com | |
11743 | 11649 | browurl.com |
11744 | 11650 | brsiee.com |
11745 | 11651 | brtbeacon.com |
@@ -11771,7 +11677,6 @@ bshare.com | ||
11771 | 11677 | bsida.com |
11772 | 11678 | bsidu.com |
11773 | 11679 | bsjhhzs.com |
11774 | -bsjquanwu.com | |
11775 | 11680 | bskrt.com |
11776 | 11681 | bskuav.com |
11777 | 11682 | bsmz.net |
@@ -11820,7 +11725,6 @@ btcwatch.com | ||
11820 | 11725 | btdad.live |
11821 | 11726 | btdad17.xyz |
11822 | 11727 | btdog.com |
11823 | -btdtech.net | |
11824 | 11728 | btgame.com |
11825 | 11729 | btgame01.com |
11826 | 11730 | btgang.com |
@@ -11963,10 +11867,8 @@ bvimg.com | ||
11963 | 11867 | bvseo.com |
11964 | 11868 | bvttsg.com |
11965 | 11869 | bw1006.com |
11966 | -bw3.site | |
11967 | 11870 | bw30yun.com |
11968 | 11871 | bw36jnxjfna.com |
11969 | -bw4.site | |
11970 | 11872 | bw40.net |
11971 | 11873 | bw8848.com |
11972 | 11874 | bwae.org |
@@ -11985,6 +11887,7 @@ bwlc.net | ||
11985 | 11887 | bwmelon.com |
11986 | 11888 | bwptl.com |
11987 | 11889 | bwpx.com |
11890 | +bwsm.org | |
11988 | 11891 | bwsoft.net |
11989 | 11892 | bwton.com |
11990 | 11893 | bwv8.com |
@@ -11998,6 +11901,7 @@ bxdaka.com | ||
11998 | 11901 | bxdlkj.com |
11999 | 11902 | bxfaka.com |
12000 | 11903 | bxgdl.com |
11904 | +bxgdunhua.com | |
12001 | 11905 | bxgjyc.com |
12002 | 11906 | bxgtd.com |
12003 | 11907 | bxhaibao.com |
@@ -12037,7 +11941,6 @@ byete.com | ||
12037 | 11941 | byf.com |
12038 | 11942 | byfcw.com |
12039 | 11943 | byfen.com |
12040 | -byfuh.com | |
12041 | 11944 | byfunds.com |
12042 | 11945 | byfzxy.com |
12043 | 11946 | bygamesdk.com |
@@ -12077,7 +11980,6 @@ byte008.com | ||
12077 | 11980 | byteacctimg.com |
12078 | 11981 | byteactivity.com |
12079 | 11982 | byteadverts.com |
12080 | -bytebye.com | |
12081 | 11983 | bytecdn.com |
12082 | 11984 | bytecdntp.com |
12083 | 11985 | byted-static.com |
@@ -12094,6 +11996,7 @@ byteedu.com | ||
12094 | 11996 | byteeffecttos.com |
12095 | 11997 | bytefae.com |
12096 | 11998 | bytefcdn.com |
11999 | +bytefcdnrd.com | |
12097 | 12000 | bytegecko.com |
12098 | 12001 | bytegeckoext.com |
12099 | 12002 | bytegoofy.com |
@@ -12176,7 +12079,6 @@ c1ass.com | ||
12176 | 12079 | c1s.com |
12177 | 12080 | c2h4.org |
12178 | 12081 | c360dn.com |
12179 | -c366.com | |
12180 | 12082 | c3acg.com |
12181 | 12083 | c3crm.com |
12182 | 12084 | c3player.com |
@@ -12192,7 +12094,6 @@ c4hcdn.com | ||
12192 | 12094 | c4ys.com |
12193 | 12095 | c4yx.com |
12194 | 12096 | c50forum.com |
12195 | -c571.com | |
12196 | 12097 | c5game.com |
12197 | 12098 | c6c.com |
12198 | 12099 | c6n708.ren |
@@ -12319,6 +12220,7 @@ cailiaoren.com | ||
12319 | 12220 | cailutong.com |
12320 | 12221 | caimai.cc |
12321 | 12222 | caimei365.com |
12223 | +caimogu.cc | |
12322 | 12224 | caimogu.net |
12323 | 12225 | caimomo.com |
12324 | 12226 | cainachina.com |
@@ -12362,6 +12264,7 @@ caiyu.com | ||
12362 | 12264 | caiyun.com |
12363 | 12265 | caiyunai.com |
12364 | 12266 | caiyunapp.com |
12267 | +caiyuncdn.com | |
12365 | 12268 | caiyunyi.com |
12366 | 12269 | caizhaowang.com |
12367 | 12270 | caizhihr.com |
@@ -12375,7 +12278,6 @@ caldigit.net | ||
12375 | 12278 | cali-light.com |
12376 | 12279 | calibur.tv |
12377 | 12280 | callda.com |
12378 | -callmewhy.com | |
12379 | 12281 | callmyfun.com |
12380 | 12282 | caloinfo.com |
12381 | 12283 | calorietech.com |
@@ -12391,6 +12293,7 @@ camelsee.com | ||
12391 | 12293 | camera360.com |
12392 | 12294 | camgle.com |
12393 | 12295 | camnpr.com |
12296 | +camoryapps.com | |
12394 | 12297 | campanilechina.com |
12395 | 12298 | campus-app.net |
12396 | 12299 | campuschina.org |
@@ -12462,10 +12365,8 @@ caohaifeng.com | ||
12462 | 12365 | caohejing.com |
12463 | 12366 | caohejing.org |
12464 | 12367 | caohua.com |
12465 | -caomeibook.com | |
12466 | 12368 | caomeishuma.com |
12467 | 12369 | caomeixz10.xyz |
12468 | -caomin5168.com | |
12469 | 12370 | caoniang.com |
12470 | 12371 | caotama.com |
12471 | 12372 | caoxianfc.com |
@@ -12600,14 +12501,12 @@ cbnmall.com | ||
12600 | 12501 | cbnri.org |
12601 | 12502 | cbnweek.com |
12602 | 12503 | cboad.com |
12603 | -cbsrb.com | |
12604 | 12504 | cbsrc.com |
12605 | 12505 | cbtimer.com |
12606 | 12506 | cburi.com |
12607 | 12507 | cbvac.com |
12608 | 12508 | cbw111.com |
12609 | 12509 | cby.me |
12610 | -cc-1.com | |
12611 | 12510 | cc-glass.com |
12612 | 12511 | cc.co |
12613 | 12512 | cc0808.com |
@@ -12630,7 +12529,6 @@ ccbcos.com | ||
12630 | 12529 | ccbft.com |
12631 | 12530 | ccbfund.com |
12632 | 12531 | ccbfutures.com |
12633 | -ccbiji.com | |
12634 | 12532 | ccbintl.com.hk |
12635 | 12533 | ccbleasing.com |
12636 | 12534 | ccbookfair.com |
@@ -12667,7 +12565,6 @@ ccedisp.com | ||
12667 | 12565 | ccedpw.com |
12668 | 12566 | ccee.com |
12669 | 12567 | cceea.net |
12670 | -cceep.com | |
12671 | 12568 | ccefb.com |
12672 | 12569 | ccement.com |
12673 | 12570 | ccen.net |
@@ -12708,7 +12605,6 @@ ccidwise.com | ||
12708 | 12605 | ccieh3c.com |
12709 | 12606 | ccieshow.com |
12710 | 12607 | ccigchina.com |
12711 | -ccigmall.com | |
12712 | 12608 | ccihr.com |
12713 | 12609 | ccimz.com |
12714 | 12610 | ccipp.org |
@@ -12812,7 +12708,6 @@ cctime.com | ||
12812 | 12708 | cction.com |
12813 | 12709 | cctlife.com |
12814 | 12710 | cctocloud.com |
12815 | -cctongwen.com | |
12816 | 12711 | cctpress.com |
12817 | 12712 | cctry.com |
12818 | 12713 | cctv-19.com |
@@ -12859,11 +12754,9 @@ ccxjd.com | ||
12859 | 12754 | ccyjjd.com |
12860 | 12755 | ccyts.com |
12861 | 12756 | ccyunmai.com |
12862 | -ccyyls.com | |
12863 | 12757 | ccziben.com |
12864 | 12758 | cczq.com |
12865 | 12759 | cczq.net |
12866 | -ccztv.com | |
12867 | 12760 | cd-cxh.com |
12868 | 12761 | cd-kc.com |
12869 | 12762 | cd-zc.com |
@@ -12929,7 +12822,6 @@ cdjzx120.com | ||
12929 | 12822 | cdjzzg.com |
12930 | 12823 | cdkf.com |
12931 | 12824 | cdkhw.com |
12932 | -cdkx.net | |
12933 | 12825 | cdlaobing.com |
12934 | 12826 | cdlbyl.com |
12935 | 12827 | cdlfvip.com |
@@ -13047,6 +12939,7 @@ cdnhwczth23.com | ||
13047 | 12939 | cdnhwcztu09.com |
13048 | 12940 | cdnhwczxh101.com |
13049 | 12941 | cdnidc.net |
12942 | +cdnjson.com | |
13050 | 12943 | cdnjtzy.com |
13051 | 12944 | cdnle.com |
13052 | 12945 | cdnle.net |
@@ -13377,6 +13270,7 @@ cguiw.com | ||
13377 | 13270 | cgvoo.com |
13378 | 13271 | cgwang.com |
13379 | 13272 | cgwell.com |
13273 | +cgwenjian.com | |
13380 | 13274 | cgwic.com |
13381 | 13275 | cgws.com |
13382 | 13276 | cgxc.cc |
@@ -13390,7 +13284,6 @@ cgyu.com | ||
13390 | 13284 | cgzair.com |
13391 | 13285 | cgzy.net |
13392 | 13286 | cgzyw.com |
13393 | -cgzz8.com | |
13394 | 13287 | ch-auto.com |
13395 | 13288 | ch-tools.com |
13396 | 13289 | ch-water.com |
@@ -13402,6 +13295,7 @@ ch999img.com | ||
13402 | 13295 | cha-tm.com |
13403 | 13296 | cha001.com |
13404 | 13297 | cha127.com |
13298 | +cha138.com | |
13405 | 13299 | chabeichong.com |
13406 | 13300 | chachaba.com |
13407 | 13301 | chachaqu.com |
@@ -13437,7 +13331,6 @@ chainknow.com | ||
13437 | 13331 | chainnode.com |
13438 | 13332 | chainsdir.com |
13439 | 13333 | chainsql.net |
13440 | -chainwon.cc | |
13441 | 13334 | chainwon.com |
13442 | 13335 | chairyfish.com |
13443 | 13336 | chaishiguan.com |
@@ -13586,6 +13479,7 @@ charmelady.com | ||
13586 | 13479 | charmingglobe.com |
13587 | 13480 | chartboost-china.com |
13588 | 13481 | chashebao.com |
13482 | +chatgpter.com | |
13589 | 13483 | chatm.com |
13590 | 13484 | chatnos.com |
13591 | 13485 | chawenti.com |
@@ -13600,7 +13494,6 @@ chayueshebao.com | ||
13600 | 13494 | chayuqing.com |
13601 | 13495 | chazhaokan.com |
13602 | 13496 | chazhengla.com |
13603 | -chazhilan.com | |
13604 | 13497 | chazidian.com |
13605 | 13498 | chazishop.com |
13606 | 13499 | chaziyu.com |
@@ -13688,7 +13581,6 @@ chenfan.info | ||
13688 | 13581 | cheng-nuo.com |
13689 | 13582 | cheng-sen.com |
13690 | 13583 | cheng.xin |
13691 | -cheng95.com | |
13692 | 13584 | chengadx.com |
13693 | 13585 | chengchuanren.com |
13694 | 13586 | chengdebank.com |
@@ -13724,7 +13616,6 @@ chenguangblog.com | ||
13724 | 13616 | chengxiangqian.com |
13725 | 13617 | chengxinyouxuan.com |
13726 | 13618 | chengxuan.com |
13727 | -chengyangnews.com | |
13728 | 13619 | chengyangyang.com |
13729 | 13620 | chengye-capital.com |
13730 | 13621 | chengyucd.com |
@@ -13788,7 +13679,6 @@ cheshirex.com | ||
13788 | 13679 | cheshouye.com |
13789 | 13680 | chesthospital.com |
13790 | 13681 | chesudi.com |
13791 | -chesusu.com | |
13792 | 13682 | chetuanwang.net |
13793 | 13683 | chetuobang.com |
13794 | 13684 | chetx.com |
@@ -13862,6 +13752,7 @@ china-315.com | ||
13862 | 13752 | china-ah.com |
13863 | 13753 | china-asahi.com |
13864 | 13754 | china-asm.com |
13755 | +china-audit.com | |
13865 | 13756 | china-b.com |
13866 | 13757 | china-caa.org |
13867 | 13758 | china-cas.org |
@@ -13875,7 +13766,6 @@ china-ceco.com | ||
13875 | 13766 | china-ced.com |
13876 | 13767 | china-cfa.org |
13877 | 13768 | china-chair.com |
13878 | -china-changjiang.net | |
13879 | 13769 | china-channel.com |
13880 | 13770 | china-chuwei.com |
13881 | 13771 | china-cicc.org |
@@ -13991,7 +13881,6 @@ china724.com | ||
13991 | 13881 | china777.org |
13992 | 13882 | china95.net |
13993 | 13883 | china95.xyz |
13994 | -china9s.com | |
13995 | 13884 | china9y.com |
13996 | 13885 | chinaacc.com |
13997 | 13886 | chinaadec.com |
@@ -13999,7 +13888,6 @@ chinaaet.com | ||
13999 | 13888 | chinaagrisci.com |
14000 | 13889 | chinaagv.com |
14001 | 13890 | chinaairer.com |
14002 | -chinaalex.com | |
14003 | 13891 | chinaamc.com |
14004 | 13892 | chinaamuse.com |
14005 | 13893 | chinaanonymous.com |
@@ -14123,7 +14011,6 @@ chinadzyl.com | ||
14123 | 14011 | chinae.net |
14124 | 14012 | chinaeastlaw.com |
14125 | 14013 | chinaecnet.com |
14126 | -chinaecotech.org | |
14127 | 14014 | chinaeda.org |
14128 | 14015 | chinaedu.com |
14129 | 14016 | chinaedu.net |
@@ -14172,6 +14059,8 @@ chinagdg.com | ||
14172 | 14059 | chinagiftsfair.com |
14173 | 14060 | chinagoldcoin.net |
14174 | 14061 | chinagoldgroup.com |
14062 | +chinagongcheng.com | |
14063 | +chinagov.pw | |
14175 | 14064 | chinagp.net |
14176 | 14065 | chinagps.cc |
14177 | 14066 | chinagrid.net |
@@ -14271,7 +14160,6 @@ chinalims.net | ||
14271 | 14160 | chinalincoln.com |
14272 | 14161 | chinalink-sh.net |
14273 | 14162 | chinalink.tv |
14274 | -chinalinuxpub.com | |
14275 | 14163 | chinalions.com |
14276 | 14164 | chinalive.com |
14277 | 14165 | chinaliyou.com |
@@ -14543,7 +14431,6 @@ chinca.org | ||
14543 | 14431 | chindiaforum.com |
14544 | 14432 | chine-info.com |
14545 | 14433 | chinee.com |
14546 | -chinese-luxury.com | |
14547 | 14434 | chinese-no1.com |
14548 | 14435 | chineseacc.com |
14549 | 14436 | chineseafs.org |
@@ -14590,9 +14477,6 @@ chishine3d.com | ||
14590 | 14477 | chishoes.com |
14591 | 14478 | chitanda.me |
14592 | 14479 | chitu.com |
14593 | -chitu101.com | |
14594 | -chitu103.com | |
14595 | -chitu104.com | |
14596 | 14480 | chitu107.com |
14597 | 14481 | chivast.com |
14598 | 14482 | chivox.com |
@@ -14672,7 +14556,6 @@ chongya.vip | ||
14672 | 14556 | chongyacdn.com |
14673 | 14557 | chongyejia.com |
14674 | 14558 | chongyitang.org |
14675 | -chongzhi.com | |
14676 | 14559 | chonka.com |
14677 | 14560 | chotee.com |
14678 | 14561 | chouchoujiang.com |
@@ -14820,7 +14703,9 @@ chunhui12.com | ||
14820 | 14703 | chunjingtech.com |
14821 | 14704 | chunjiws.com |
14822 | 14705 | chunmi.com |
14706 | +chunmiaosh.com | |
14823 | 14707 | chunqiuwang.com |
14708 | +chunquff.com | |
14824 | 14709 | chunshuitang.com |
14825 | 14710 | chunshuizhijia.com |
14826 | 14711 | chunsuns.com |
@@ -14871,10 +14756,10 @@ chzhw.com | ||
14871 | 14756 | chzybj.com |
14872 | 14757 | ci123.com |
14873 | 14758 | ci800.com |
14874 | -ciamiecn.com | |
14875 | 14759 | ciaoca.com |
14876 | 14760 | ciatcm.org |
14877 | 14761 | cibaike.com |
14762 | +cibawl.com | |
14878 | 14763 | cibfintech.com |
14879 | 14764 | cibn.cc |
14880 | 14765 | cibn.com |
@@ -14998,7 +14883,6 @@ citics.com | ||
14998 | 14883 | citics.com.hk |
14999 | 14884 | citicsf.com |
15000 | 14885 | citicsinfo.com |
15001 | -citicsqh.com | |
15002 | 14886 | citicsteel.com |
15003 | 14887 | citidigital.com |
15004 | 14888 | citisa.org |
@@ -15014,6 +14898,7 @@ citssh.com | ||
15014 | 14898 | citszz.com |
15015 | 14899 | citure.net |
15016 | 14900 | citvc.com |
14901 | +city12580.com | |
15017 | 14902 | city8.com |
15018 | 14903 | city84.com |
15019 | 14904 | citygf.com |
@@ -15041,6 +14926,7 @@ ciyew.com | ||
15041 | 14926 | ciyocon.com |
15042 | 14927 | ciyuan.men |
15043 | 14928 | ciyuanji.com |
14929 | +cizhixin.com | |
15044 | 14930 | cizip.com |
15045 | 14931 | cj-elec.com |
15046 | 14932 | cjavapy.com |
@@ -15067,7 +14953,6 @@ cjkj.ink | ||
15067 | 14953 | cjkypo.com |
15068 | 14954 | cjkz.com |
15069 | 14955 | cjlap.com |
15070 | -cjlhs.com | |
15071 | 14956 | cjm.so |
15072 | 14957 | cjmakeding.com |
15073 | 14958 | cjmit.com |
@@ -15097,7 +14982,6 @@ ckdzb.com | ||
15097 | 14982 | ckefu.com |
15098 | 14983 | ckernel.org |
15099 | 14984 | ckeyedu.com |
15100 | -ckgcjl.com | |
15101 | 14985 | ckimg.com |
15102 | 14986 | ckjr001.com |
15103 | 14987 | ckmov.com |
@@ -15187,6 +15071,7 @@ cloud-xm.com | ||
15187 | 15071 | cloud-zhaoqing.com |
15188 | 15072 | cloud-zhongwei.com |
15189 | 15073 | cloud301.net |
15074 | +cloud56.net | |
15190 | 15075 | cloud887325.com |
15191 | 15076 | cloudacc-inc.com |
15192 | 15077 | cloudajs.org |
@@ -15338,7 +15223,6 @@ clusterdnsserver.com | ||
15338 | 15223 | clx360.com |
15339 | 15224 | clyric.com |
15340 | 15225 | clz.me |
15341 | -clzqlhj.com | |
15342 | 15226 | cm-analysis.com |
15343 | 15227 | cm-iov.com |
15344 | 15228 | cm-worklink.com |
@@ -15414,6 +15298,7 @@ cmschina.com | ||
15414 | 15298 | cmscmc.org |
15415 | 15299 | cmseasy.cc |
15416 | 15300 | cmsfg.com |
15301 | +cmsforo.com | |
15417 | 15302 | cmsjournal.net |
15418 | 15303 | cmskcrm.com |
15419 | 15304 | cmsn.biz |
@@ -15481,8 +15366,6 @@ cn360cn.com | ||
15481 | 15366 | cn365c.com |
15482 | 15367 | cn365d.com |
15483 | 15368 | cn365e.com |
15484 | -cn3k5.com | |
15485 | -cn3v.net | |
15486 | 15369 | cn3wm.com |
15487 | 15370 | cn486.com |
15488 | 15371 | cn4e.com |
@@ -15663,7 +15546,6 @@ cnfq.com | ||
15663 | 15546 | cnfqy.com |
15664 | 15547 | cnfrag.com |
15665 | 15548 | cnfruit.com |
15666 | -cnfsae.com | |
15667 | 15549 | cnfuyin.org |
15668 | 15550 | cnfxj.org |
15669 | 15551 | cnfyyj.com |
@@ -15891,6 +15773,7 @@ cnratchet.com | ||
15891 | 15773 | cnrceo.com |
15892 | 15774 | cnrcloudfm.com |
15893 | 15775 | cnrdm.com |
15776 | +cnrdn.com | |
15894 | 15777 | cnreagent.com |
15895 | 15778 | cnree.com |
15896 | 15779 | cnrencai.com |
@@ -16076,6 +15959,7 @@ code4apk.com | ||
16076 | 15959 | code666.com |
16077 | 15960 | code668.com |
16078 | 15961 | codeaha.com |
15962 | +codebaoku.com | |
16079 | 15963 | codebe.org |
16080 | 15964 | codebus.net |
16081 | 15965 | codebye.com |
@@ -16097,6 +15981,7 @@ codepiano.com | ||
16097 | 15981 | codepku.com |
16098 | 15982 | codeplayer.vip |
16099 | 15983 | codeplaygames.com |
15984 | +codeprj.com | |
16100 | 15985 | coder.work |
16101 | 15986 | coder100.com |
16102 | 15987 | coder4.com |
@@ -16197,10 +16082,9 @@ colourlife.com | ||
16197 | 16082 | com-rail.com |
16198 | 16083 | com.fi |
16199 | 16084 | com.tv |
16200 | -com21.com | |
16201 | 16085 | com4loves.com |
16202 | 16086 | comac.cc |
16203 | -comba.xyz | |
16087 | +comake.online | |
16204 | 16088 | combofin.com |
16205 | 16089 | combomen.com |
16206 | 16090 | combpm.com |
@@ -16264,7 +16148,6 @@ controlinai.com | ||
16264 | 16148 | conuo.com |
16265 | 16149 | convergemob.com |
16266 | 16150 | convertlab.com |
16267 | -conwos.com | |
16268 | 16151 | conyedit.com |
16269 | 16152 | coobar.com |
16270 | 16153 | cooboys.com |
@@ -16278,7 +16161,6 @@ coofans.com | ||
16278 | 16161 | cooffee.net |
16279 | 16162 | cooh5.com |
16280 | 16163 | coohua.com |
16281 | -cookbookchina.com | |
16282 | 16164 | cookcai.com |
16283 | 16165 | cookie4you.com |
16284 | 16166 | cool-admin.com |
@@ -16441,7 +16323,6 @@ cpppf.org | ||
16441 | 16323 | cppwh.com |
16442 | 16324 | cps1688.com |
16443 | 16325 | cps800.com |
16444 | -cps88.cc | |
16445 | 16326 | cpsbeijing.org |
16446 | 16327 | cpsenglish.com |
16447 | 16328 | cptae.com |
@@ -16558,14 +16439,12 @@ cqqigao.com | ||
16558 | 16439 | cqqiyi.com |
16559 | 16440 | cqqnb.net |
16560 | 16441 | cqqp.com |
16561 | -cqqsl.com | |
16562 | 16442 | cqqsyy.com |
16563 | 16443 | cqqzgrh.com |
16564 | 16444 | cqrc.net |
16565 | 16445 | cqrcb.com |
16566 | 16446 | cqscmy.net |
16567 | 16447 | cqshenou.com |
16568 | -cqskl.com | |
16569 | 16448 | cqslib.org |
16570 | 16449 | cqslsc.com |
16571 | 16450 | cqsms.net |
@@ -16683,7 +16562,6 @@ crmeb.net | ||
16683 | 16562 | crmg-ms.com |
16684 | 16563 | crmgz.com |
16685 | 16564 | crmip.com |
16686 | -crmvscrm.com | |
16687 | 16565 | crnds.com |
16688 | 16566 | crnews.net |
16689 | 16567 | crodigy.com |
@@ -16706,6 +16584,7 @@ crystaledu.com | ||
16706 | 16584 | cryuantafund.com |
16707 | 16585 | cs-air.com |
16708 | 16586 | cs-cjl.com |
16587 | +cs-qsyq.com | |
16709 | 16588 | cs-show.com |
16710 | 16589 | cs0799.com |
16711 | 16590 | cs090.com |
@@ -16747,7 +16626,6 @@ csdiy.wiki | ||
16747 | 16626 | csdn.com |
16748 | 16627 | csdn.net |
16749 | 16628 | csdnxiazai.xyz |
16750 | -csdqp.com | |
16751 | 16629 | csdxcw.com |
16752 | 16630 | csdyx.com |
16753 | 16631 | csea767.com |
@@ -16766,6 +16644,7 @@ csharpkit.com | ||
16766 | 16644 | cshixi.com |
16767 | 16645 | cshnkj.com |
16768 | 16646 | cshope.net |
16647 | +cshuandu.com | |
16769 | 16648 | cshufanyi.com |
16770 | 16649 | cshxdc.com |
16771 | 16650 | cshyqx.com |
@@ -16868,7 +16747,6 @@ cszsjy.com | ||
16868 | 16747 | cszx.com |
16869 | 16748 | cszybdf.com |
16870 | 16749 | cszykt.com |
16871 | -cszywl.net | |
16872 | 16750 | cszzjc.com |
16873 | 16751 | ct-cdm.com |
16874 | 16752 | ct-laser.com |
@@ -16981,6 +16859,7 @@ cucdc.com | ||
16981 | 16859 | cuchost.com |
16982 | 16860 | cuctv.com |
16983 | 16861 | cudaojia.com |
16862 | +cueber.com | |
16984 | 16863 | cuebzzy.com |
16985 | 16864 | cuekit.com |
16986 | 16865 | cuelog.com |
@@ -17007,7 +16886,6 @@ culaiwan.com | ||
17007 | 16886 | cumtenn.com |
17008 | 16887 | cumulon.com |
17009 | 16888 | cunan.com |
17010 | -cuncun8.com | |
17011 | 16889 | cuncunle.com |
17012 | 16890 | cuncx.com |
17013 | 16891 | cunfang.com |
@@ -17070,7 +16948,6 @@ cwqu.com | ||
17070 | 16948 | cwroom.com |
17071 | 16949 | cwxzx.com |
17072 | 16950 | cwyan.com |
17073 | -cwziyouren.com | |
17074 | 16951 | cx312.com |
17075 | 16952 | cx580.com |
17076 | 16953 | cx930.net |
@@ -17100,6 +16977,8 @@ cxtxt.com | ||
17100 | 16977 | cxvlog.com |
17101 | 16978 | cxw.com |
17102 | 16979 | cxwl.com |
16980 | +cxwyf.net | |
16981 | +cxwyg.net | |
17103 | 16982 | cxxjs.com |
17104 | 16983 | cxy61.com |
17105 | 16984 | cxy7.com |
@@ -17146,7 +17025,6 @@ cycnet.com | ||
17146 | 17025 | cycoi.com |
17147 | 17026 | cycoo.com |
17148 | 17027 | cydiakk.com |
17149 | -cydiami.com | |
17150 | 17028 | cydow.com |
17151 | 17029 | cydp5.com |
17152 | 17030 | cyedu.org |
@@ -17189,6 +17067,7 @@ cytstibet.com | ||
17189 | 17067 | cyudun.net |
17190 | 17068 | cyuew.com |
17191 | 17069 | cywetc.com |
17070 | +cywyjj.com | |
17192 | 17071 | cyy18.com |
17193 | 17072 | cyypscl.com |
17194 | 17073 | cyyself.name |
@@ -17244,7 +17123,6 @@ czopen.com | ||
17244 | 17123 | czos.xyz |
17245 | 17124 | czpoly.com |
17246 | 17125 | czrj.com |
17247 | -czry888.com | |
17248 | 17126 | czsbtjx.com |
17249 | 17127 | czsrc.com |
17250 | 17128 | czssx.com |
@@ -17274,7 +17152,6 @@ d1cm.com | ||
17274 | 17152 | d1com.com |
17275 | 17153 | d1dengju.com |
17276 | 17154 | d1ev.com |
17277 | -d1fm.com | |
17278 | 17155 | d1lx.com |
17279 | 17156 | d1net.com |
17280 | 17157 | d1sm.net |
@@ -17304,7 +17181,6 @@ d5wx.com | ||
17304 | 17181 | d65d6.com |
17305 | 17182 | d777.com |
17306 | 17183 | d77777777.com |
17307 | -d7baike.net | |
17308 | 17184 | d7ol.com |
17309 | 17185 | d7vg.com |
17310 | 17186 | d8th.com |
@@ -17346,7 +17222,6 @@ dadakan.com | ||
17346 | 17222 | dadaojiayuan.com |
17347 | 17223 | dadayou.com |
17348 | 17224 | dadclab.com |
17349 | -daddychess.online | |
17350 | 17225 | daddymami.net |
17351 | 17226 | dadetong.com |
17352 | 17227 | dadianstudio.com |
@@ -17361,7 +17236,6 @@ dadoubao.com | ||
17361 | 17236 | dadunet.com |
17362 | 17237 | daerzhu.com |
17363 | 17238 | daf-rs.com |
17364 | -dafa53.com | |
17365 | 17239 | dafaji.com |
17366 | 17240 | dafang24.com |
17367 | 17241 | dafangya.com |
@@ -17373,7 +17247,6 @@ dagangcheng.com | ||
17373 | 17247 | dagongcredit.com |
17374 | 17248 | dagongnet.com |
17375 | 17249 | dagufood.com |
17376 | -daguu.com | |
17377 | 17250 | daguzhe.com |
17378 | 17251 | dahainan.com |
17379 | 17252 | dahaiyang.com |
@@ -17399,7 +17272,6 @@ dahuaddns.com | ||
17399 | 17272 | dahuatech.com |
17400 | 17273 | dahuawang.com |
17401 | 17274 | dahuifuwu.com |
17402 | -dahuitu.net | |
17403 | 17275 | dahulu.com |
17404 | 17276 | dahuoji.biz |
17405 | 17277 | dai361.com |
@@ -17412,7 +17284,6 @@ daicuo.net | ||
17412 | 17284 | daicuo.vip |
17413 | 17285 | daicuo.wang |
17414 | 17286 | daidaidui.club |
17415 | -daidaitong.com | |
17416 | 17287 | daidaitv.com |
17417 | 17288 | daidongxi.com |
17418 | 17289 | daigou.com |
@@ -17440,7 +17311,6 @@ daimajiayuan.com | ||
17440 | 17311 | daimami.com |
17441 | 17312 | daimasucai.com |
17442 | 17313 | daimg.com |
17443 | -daimiyun.com | |
17444 | 17314 | daishangqian.com |
17445 | 17315 | daishu.com |
17446 | 17316 | daishujiankang.com |
@@ -17467,7 +17337,6 @@ dajiangtai.com | ||
17467 | 17337 | dajianhui.com |
17468 | 17338 | dajiashequ.com |
17469 | 17339 | dajiashuo.com |
17470 | -dajiatou.com | |
17471 | 17340 | dajiayouxuan.com |
17472 | 17341 | dajiazhao.com |
17473 | 17342 | dajiazhongyi.com |
@@ -17540,7 +17409,6 @@ dangbei.net | ||
17540 | 17409 | dangbeiprojector.com |
17541 | 17410 | dangcdn.com |
17542 | 17411 | dangdang.com |
17543 | -dangfudh.xyz | |
17544 | 17412 | dangguai.com |
17545 | 17413 | danghongyun.com |
17546 | 17414 | danghuan.com |
@@ -17575,6 +17443,7 @@ danlan.org | ||
17575 | 17443 | danlirencomedy.com |
17576 | 17444 | danlu.net |
17577 | 17445 | danmaku.live |
17446 | +danmaku.tv | |
17578 | 17447 | danmakupie.com |
17579 | 17448 | danmei.la |
17580 | 17449 | danmi.com |
@@ -17725,7 +17594,6 @@ datasoldier.net | ||
17725 | 17594 | datastoragesummit.com |
17726 | 17595 | datatang.com |
17727 | 17596 | datathinking.com |
17728 | -datathinking.net | |
17729 | 17597 | datatist.com |
17730 | 17598 | datayes.com |
17731 | 17599 | datazt.com |
@@ -17752,7 +17620,6 @@ dawndiy.com | ||
17752 | 17620 | dawnlab.me |
17753 | 17621 | dawnled.net |
17754 | 17622 | dawuhanapp.com |
17755 | -dawuxia.net | |
17756 | 17623 | dawx.com |
17757 | 17624 | dawx.net |
17758 | 17625 | daxi.com |
@@ -17800,7 +17667,6 @@ dayu-valve.com | ||
17800 | 17667 | dayu.com |
17801 | 17668 | dayuad.com |
17802 | 17669 | dayuansouti.com |
17803 | -dayucn.net | |
17804 | 17670 | dayue8.com |
17805 | 17671 | dayugame.net |
17806 | 17672 | dayugslb.com |
@@ -17847,7 +17713,6 @@ dbcdh.com | ||
17847 | 17713 | dbcsq.com |
17848 | 17714 | dbcxz1.net |
17849 | 17715 | dbdna.com |
17850 | -dbfansub.com | |
17851 | 17716 | dbgeek.org |
17852 | 17717 | dbh123.net |
17853 | 17718 | dbkan.com |
@@ -17896,7 +17761,6 @@ dcybkj.com | ||
17896 | 17761 | dd-advisor.com |
17897 | 17762 | dd-gz.com |
17898 | 17763 | dd-img.com |
17899 | -dd.net | |
17900 | 17764 | dd128.com |
17901 | 17765 | dd2007.com |
17902 | 17766 | dd373.com |
@@ -17936,7 +17800,6 @@ ddle.cc | ||
17936 | 17800 | ddlequ.com |