• R/O
  • HTTP
  • SSH
  • HTTPS

luci: Commit

LuCI - OpenWrt Configuration Interface


Commit MetaInfo

Revisionaa50598ac6aa1a155d1f5e985f977c935fbcaea6 (tree)
Zeit2023-03-19 21:02:22
AutorTianling Shen <cnsztl@immo...>
CommiterTianling Shen

Log Message

luci-app-homeproxy: sync mainline

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>

Ändern Zusammenfassung

Diff

--- a/applications/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/client.js
+++ b/applications/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/client.js
@@ -218,8 +218,7 @@ return view.extend({
218218 o = s.taboption('routing', form.ListValue, 'proxy_mode', _('Proxy mode'));
219219 o.value('redirect', _('Redirect TCP'));
220220 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) {
223222 o.value('redirect_tun', _('Redirect TCP + Tun UDP'));
224223 o.value('tun', _('Tun TCP/UDP'));
225224 }
@@ -242,13 +241,8 @@ return view.extend({
242241 so.value('gvisor', _('gVisor'));
243242 if (features.with_lwip)
244243 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';
252246 so.depends('homeproxy.config.proxy_mode', 'redirect_tun');
253247 so.depends('homeproxy.config.proxy_mode', 'tun');
254248 so.rmempty = false;
@@ -266,7 +260,6 @@ return view.extend({
266260 _('Performance may degrade slightly, so it is not recommended to enable on when it is not needed.'));
267261 so.default = so.enabled;
268262 so.depends('tcpip_stack', 'gvisor');
269- so.depends('tcpip_stack', 'gvisor');
270263 so.rmempty = false;
271264
272265 so = ss.option(form.Flag, 'bypass_cn_traffic', _('Bypass CN traffic'),
--- a/applications/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/node.js
+++ b/applications/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/node.js
@@ -442,18 +442,6 @@ return view.extend({
442442 so.value('vless', _('VLESS'));
443443 so.value('vmess', _('VMess'));
444444 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- }
457445
458446 so = ss.option(form.Value, 'address', _('Address'));
459447 so.datatype = 'host';
@@ -753,8 +741,8 @@ return view.extend({
753741 else
754742 desc.innerHTML = _('No TCP transport, plain HTTP is merged into the HTTP transport.');
755743
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)) {
758746 this.map.findElement('id', 'cbid.homeproxy.%s.http_idle_timeout'.format(section_id)).nextElementSibling.innerHTML =
759747 _('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/>' +
760748 '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({
937925 so.depends('type', 'trojan');
938926 so.depends('type', 'vless');
939927 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+ }
940942 so.modalonly = true;
941943
942944 so = ss.option(form.Value, 'tls_sni', _('TLS SNI'),
@@ -1039,11 +1041,11 @@ return view.extend({
10391041 so.value('random', _('Random'));
10401042 so.value('randomized', _('Randomized'));
10411043 so.value('safari', _('Safari'));
1042- so.depends('tls', '1');
1044+ so.depends({'tls': '1', 'type': /^((?!hysteria$).)+$/});
10431045 so.validate = function(section_id, value) {
10441046 if (section_id) {
10451047 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)
10471049 return _('Expecting: %s').format(_('non-empty value'));
10481050 }
10491051
@@ -1084,6 +1086,13 @@ return view.extend({
10841086 so.depends('type', 'socks');
10851087 so.depends({'type': 'shadowsocks', 'multiplex': '0'});
10861088 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;
10871096 /* Extra settings end */
10881097 /* Nodes settings end */
10891098
--- a/applications/luci-app-homeproxy/po/templates/homeproxy.pot
+++ b/applications/luci-app-homeproxy/po/templates/homeproxy.pot
@@ -5,19 +5,19 @@ msgstr "Content-Type: text/plain; charset=UTF-8"
55 msgid "%s log"
66 msgstr ""
77
8-#: htdocs/luci-static/resources/view/homeproxy/node.js:1213
8+#: htdocs/luci-static/resources/view/homeproxy/node.js:1222
99 msgid "%s nodes removed"
1010 msgstr ""
1111
12-#: htdocs/luci-static/resources/view/homeproxy/node.js:1032
12+#: htdocs/luci-static/resources/view/homeproxy/node.js:1034
1313 msgid "360"
1414 msgstr ""
1515
16-#: htdocs/luci-static/resources/view/homeproxy/client.js:400
16+#: htdocs/luci-static/resources/view/homeproxy/client.js:393
1717 msgid "4 or 6. Not limited if empty."
1818 msgstr ""
1919
20-#: htdocs/luci-static/resources/view/homeproxy/node.js:999
20+#: htdocs/luci-static/resources/view/homeproxy/node.js:1001
2121 #: htdocs/luci-static/resources/view/homeproxy/server.js:450
2222 #: htdocs/luci-static/resources/view/homeproxy/server.js:466
2323 msgid "<strong>Save your configuration before uploading files!</strong>"
@@ -31,15 +31,15 @@ msgstr ""
3131 msgid "Accept no header"
3232 msgstr ""
3333
34-#: htdocs/luci-static/resources/view/homeproxy/client.js:808
34+#: htdocs/luci-static/resources/view/homeproxy/client.js:801
3535 msgid "Access Control"
3636 msgstr ""
3737
38-#: htdocs/luci-static/resources/view/homeproxy/client.js:656
38+#: htdocs/luci-static/resources/view/homeproxy/client.js:649
3939 msgid "Add a DNS rule"
4040 msgstr ""
4141
42-#: htdocs/luci-static/resources/view/homeproxy/client.js:568
42+#: htdocs/luci-static/resources/view/homeproxy/client.js:561
4343 msgid "Add a DNS server"
4444 msgstr ""
4545
@@ -47,11 +47,11 @@ msgstr ""
4747 msgid "Add a node"
4848 msgstr ""
4949
50-#: htdocs/luci-static/resources/view/homeproxy/client.js:310
50+#: htdocs/luci-static/resources/view/homeproxy/client.js:303
5151 msgid "Add a routing node"
5252 msgstr ""
5353
54-#: htdocs/luci-static/resources/view/homeproxy/client.js:385
54+#: htdocs/luci-static/resources/view/homeproxy/client.js:378
5555 msgid "Add a routing rule"
5656 msgstr ""
5757
@@ -59,16 +59,16 @@ msgstr ""
5959 msgid "Add a server"
6060 msgstr ""
6161
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
6464 msgid "Address"
6565 msgstr ""
6666
67-#: htdocs/luci-static/resources/view/homeproxy/client.js:586
67+#: htdocs/luci-static/resources/view/homeproxy/client.js:579
6868 msgid "Address resolver"
6969 msgstr ""
7070
71-#: htdocs/luci-static/resources/view/homeproxy/client.js:617
71+#: htdocs/luci-static/resources/view/homeproxy/client.js:610
7272 msgid "Address strategy"
7373 msgstr ""
7474
@@ -80,20 +80,20 @@ msgstr ""
8080 msgid "All ports"
8181 msgstr ""
8282
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
8585 msgid "Allow insecure"
8686 msgstr ""
8787
88-#: htdocs/luci-static/resources/view/homeproxy/node.js:953
88+#: htdocs/luci-static/resources/view/homeproxy/node.js:955
8989 msgid "Allow insecure connection at TLS client."
9090 msgstr ""
9191
92-#: htdocs/luci-static/resources/view/homeproxy/node.js:1140
92+#: htdocs/luci-static/resources/view/homeproxy/node.js:1149
9393 msgid "Allow insecure connection by default when add nodes from subscriptions."
9494 msgstr ""
9595
96-#: htdocs/luci-static/resources/view/homeproxy/node.js:832
96+#: htdocs/luci-static/resources/view/homeproxy/node.js:820
9797 #: htdocs/luci-static/resources/view/homeproxy/server.js:296
9898 msgid "Allowed payload size is in the request."
9999 msgstr ""
@@ -106,7 +106,7 @@ msgstr ""
106106 msgid "Already in updating."
107107 msgstr ""
108108
109-#: htdocs/luci-static/resources/view/homeproxy/node.js:704
109+#: htdocs/luci-static/resources/view/homeproxy/node.js:692
110110 #: htdocs/luci-static/resources/view/homeproxy/server.js:212
111111 msgid "Alter ID"
112112 msgstr ""
@@ -119,15 +119,15 @@ msgstr ""
119119 msgid "Alternative TLS port"
120120 msgstr ""
121121
122-#: htdocs/luci-static/resources/view/homeproxy/node.js:1176
122+#: htdocs/luci-static/resources/view/homeproxy/node.js:1185
123123 msgid "An error occurred during updating subscriptions: %s"
124124 msgstr ""
125125
126-#: htdocs/luci-static/resources/view/homeproxy/node.js:1033
126+#: htdocs/luci-static/resources/view/homeproxy/node.js:1035
127127 msgid "Android"
128128 msgstr ""
129129
130-#: htdocs/luci-static/resources/view/homeproxy/node.js:985
130+#: htdocs/luci-static/resources/view/homeproxy/node.js:987
131131 msgid "Append self-signed certificate"
132132 msgstr ""
133133
@@ -144,16 +144,16 @@ msgstr ""
144144 msgid "Are you sure to allow insecure?"
145145 msgstr ""
146146
147-#: htdocs/luci-static/resources/view/homeproxy/node.js:728
147+#: htdocs/luci-static/resources/view/homeproxy/node.js:716
148148 msgid "Authenticated length"
149149 msgstr ""
150150
151-#: htdocs/luci-static/resources/view/homeproxy/node.js:534
151+#: htdocs/luci-static/resources/view/homeproxy/node.js:522
152152 #: htdocs/luci-static/resources/view/homeproxy/server.js:153
153153 msgid "Authentication payload"
154154 msgstr ""
155155
156-#: htdocs/luci-static/resources/view/homeproxy/node.js:525
156+#: htdocs/luci-static/resources/view/homeproxy/node.js:513
157157 #: htdocs/luci-static/resources/view/homeproxy/server.js:144
158158 msgid "Authentication type"
159159 msgstr ""
@@ -162,56 +162,56 @@ msgstr ""
162162 msgid "Auto configure firewall"
163163 msgstr ""
164164
165-#: htdocs/luci-static/resources/view/homeproxy/node.js:1093
165+#: htdocs/luci-static/resources/view/homeproxy/node.js:1102
166166 msgid "Auto update"
167167 msgstr ""
168168
169-#: htdocs/luci-static/resources/view/homeproxy/node.js:1094
169+#: htdocs/luci-static/resources/view/homeproxy/node.js:1103
170170 msgid "Auto update subscriptions, GeoIP and GeoSite."
171171 msgstr ""
172172
173-#: htdocs/luci-static/resources/view/homeproxy/node.js:527
173+#: htdocs/luci-static/resources/view/homeproxy/node.js:515
174174 #: htdocs/luci-static/resources/view/homeproxy/server.js:146
175175 msgid "Base64"
176176 msgstr ""
177177
178-#: htdocs/luci-static/resources/view/homeproxy/client.js:258
178+#: htdocs/luci-static/resources/view/homeproxy/client.js:252
179179 msgid "Based on google/gvisor (recommended)."
180180 msgstr ""
181181
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
184184 msgid "Bind interface"
185185 msgstr ""
186186
187-#: htdocs/luci-static/resources/view/homeproxy/client.js:822
187+#: htdocs/luci-static/resources/view/homeproxy/client.js:815
188188 msgid ""
189189 "Bind outbound traffic to specific interface. Leave empty to auto detect."
190190 msgstr ""
191191
192-#: htdocs/luci-static/resources/view/homeproxy/node.js:1129
192+#: htdocs/luci-static/resources/view/homeproxy/node.js:1138
193193 msgid "Blacklist mode"
194194 msgstr ""
195195
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
199199 msgid "Block"
200200 msgstr ""
201201
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
204204 msgid "Block DNS queries"
205205 msgstr ""
206206
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
210210 #: htdocs/luci-static/resources/view/homeproxy/server.js:512
211211 msgid "Both"
212212 msgstr ""
213213
214-#: htdocs/luci-static/resources/view/homeproxy/client.js:272
214+#: htdocs/luci-static/resources/view/homeproxy/client.js:265
215215 msgid "Bypass CN traffic"
216216 msgstr ""
217217
@@ -219,7 +219,7 @@ msgstr ""
219219 msgid "Bypass mainland China"
220220 msgstr ""
221221
222-#: htdocs/luci-static/resources/view/homeproxy/client.js:273
222+#: htdocs/luci-static/resources/view/homeproxy/client.js:266
223223 msgid "Bypass mainland China traffic via firewall rules by default."
224224 msgstr ""
225225
@@ -231,7 +231,7 @@ msgstr ""
231231 msgid "Cancel"
232232 msgstr ""
233233
234-#: htdocs/luci-static/resources/view/homeproxy/node.js:991
234+#: htdocs/luci-static/resources/view/homeproxy/node.js:993
235235 #: htdocs/luci-static/resources/view/homeproxy/server.js:441
236236 msgid "Certificate path"
237237 msgstr ""
@@ -252,11 +252,11 @@ msgstr ""
252252 msgid "China list version"
253253 msgstr ""
254254
255-#: htdocs/luci-static/resources/view/homeproxy/node.js:1034
255+#: htdocs/luci-static/resources/view/homeproxy/node.js:1036
256256 msgid "Chrome"
257257 msgstr ""
258258
259-#: htdocs/luci-static/resources/view/homeproxy/node.js:977
259+#: htdocs/luci-static/resources/view/homeproxy/node.js:979
260260 #: htdocs/luci-static/resources/view/homeproxy/server.js:351
261261 msgid "Cipher suites"
262262 msgstr ""
@@ -290,60 +290,60 @@ msgstr ""
290290 msgid "Custom routing"
291291 msgstr ""
292292
293-#: htdocs/luci-static/resources/view/homeproxy/client.js:695
293+#: htdocs/luci-static/resources/view/homeproxy/client.js:688
294294 msgid "DNS"
295295 msgstr ""
296296
297-#: htdocs/luci-static/resources/view/homeproxy/client.js:648
297+#: htdocs/luci-static/resources/view/homeproxy/client.js:641
298298 msgid "DNS Rules"
299299 msgstr ""
300300
301-#: htdocs/luci-static/resources/view/homeproxy/client.js:560
301+#: htdocs/luci-static/resources/view/homeproxy/client.js:553
302302 msgid "DNS Servers"
303303 msgstr ""
304304
305-#: htdocs/luci-static/resources/view/homeproxy/client.js:524
305+#: htdocs/luci-static/resources/view/homeproxy/client.js:517
306306 msgid "DNS Settings"
307307 msgstr ""
308308
309-#: htdocs/luci-static/resources/view/homeproxy/client.js:656
309+#: htdocs/luci-static/resources/view/homeproxy/client.js:649
310310 msgid "DNS rule"
311311 msgstr ""
312312
313313 #: 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
315315 msgid "DNS server"
316316 msgstr ""
317317
318318 #: 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
321321 msgid "Default"
322322 msgstr ""
323323
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
327327 msgid "Default DNS (issued by WAN)"
328328 msgstr ""
329329
330-#: htdocs/luci-static/resources/view/homeproxy/client.js:534
330+#: htdocs/luci-static/resources/view/homeproxy/client.js:527
331331 msgid "Default DNS server"
332332 msgstr ""
333333
334-#: htdocs/luci-static/resources/view/homeproxy/client.js:529
334+#: htdocs/luci-static/resources/view/homeproxy/client.js:522
335335 msgid "Default DNS strategy"
336336 msgstr ""
337337
338-#: htdocs/luci-static/resources/view/homeproxy/client.js:624
338+#: htdocs/luci-static/resources/view/homeproxy/client.js:617
339339 msgid "Default domain strategy for resolving the domain names."
340340 msgstr ""
341341
342-#: htdocs/luci-static/resources/view/homeproxy/client.js:282
342+#: htdocs/luci-static/resources/view/homeproxy/client.js:275
343343 msgid "Default outbound"
344344 msgstr ""
345345
346-#: htdocs/luci-static/resources/view/homeproxy/node.js:1147
346+#: htdocs/luci-static/resources/view/homeproxy/node.js:1156
347347 msgid "Default packet encoding"
348348 msgstr ""
349349
@@ -351,42 +351,42 @@ msgstr ""
351351 msgid "Default server name"
352352 msgstr ""
353353
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
359359 #: htdocs/luci-static/resources/view/homeproxy/node.js:430
360360 msgid "Direct"
361361 msgstr ""
362362
363-#: htdocs/luci-static/resources/view/homeproxy/client.js:957
363+#: htdocs/luci-static/resources/view/homeproxy/client.js:950
364364 msgid "Direct Domain List"
365365 msgstr ""
366366
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
369369 msgid "Direct IPv4 IP-s"
370370 msgstr ""
371371
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
374374 msgid "Direct IPv6 IP-s"
375375 msgstr ""
376376
377377 #: htdocs/luci-static/resources/view/homeproxy/client.js:139
378378 #: 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
385385 #: htdocs/luci-static/resources/view/homeproxy/server.js:145
386386 msgid "Disable"
387387 msgstr ""
388388
389-#: htdocs/luci-static/resources/view/homeproxy/client.js:551
389+#: htdocs/luci-static/resources/view/homeproxy/client.js:544
390390 msgid "Disable DNS cache"
391391 msgstr ""
392392
@@ -394,7 +394,7 @@ msgstr ""
394394 msgid "Disable HTTP challenge"
395395 msgstr ""
396396
397-#: htdocs/luci-static/resources/view/homeproxy/node.js:568
397+#: htdocs/luci-static/resources/view/homeproxy/node.js:556
398398 #: htdocs/luci-static/resources/view/homeproxy/server.js:184
399399 msgid "Disable Path MTU discovery"
400400 msgstr ""
@@ -403,51 +403,51 @@ msgstr ""
403403 msgid "Disable TLS ALPN challenge"
404404 msgstr ""
405405
406-#: htdocs/luci-static/resources/view/homeproxy/client.js:801
406+#: htdocs/luci-static/resources/view/homeproxy/client.js:794
407407 msgid "Disable cache and save cache in this query."
408408 msgstr ""
409409
410-#: htdocs/luci-static/resources/view/homeproxy/client.js:554
410+#: htdocs/luci-static/resources/view/homeproxy/client.js:547
411411 msgid "Disable cache expire"
412412 msgstr ""
413413
414-#: htdocs/luci-static/resources/view/homeproxy/client.js:800
414+#: htdocs/luci-static/resources/view/homeproxy/client.js:793
415415 msgid "Disable dns cache"
416416 msgstr ""
417417
418-#: htdocs/luci-static/resources/view/homeproxy/node.js:1013
418+#: htdocs/luci-static/resources/view/homeproxy/node.js:1015
419419 msgid "Disable dynamic record sizing"
420420 msgstr ""
421421
422-#: htdocs/luci-static/resources/view/homeproxy/node.js:569
422+#: htdocs/luci-static/resources/view/homeproxy/node.js:557
423423 #: htdocs/luci-static/resources/view/homeproxy/server.js:185
424424 msgid ""
425425 "Disables Path MTU Discovery (RFC 8899). Packets will then be at most 1252 "
426426 "(IPv4) / 1232 (IPv6) bytes in size."
427427 msgstr ""
428428
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
431431 msgid "Domain keyword"
432432 msgstr ""
433433
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
436436 msgid "Domain name"
437437 msgstr ""
438438
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
441441 msgid "Domain regex"
442442 msgstr ""
443443
444-#: htdocs/luci-static/resources/view/homeproxy/client.js:331
444+#: htdocs/luci-static/resources/view/homeproxy/client.js:324
445445 #: htdocs/luci-static/resources/view/homeproxy/server.js:491
446446 msgid "Domain strategy"
447447 msgstr ""
448448
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
451451 msgid "Domain suffix"
452452 msgstr ""
453453
@@ -455,14 +455,14 @@ msgstr ""
455455 msgid "Domains"
456456 msgstr ""
457457
458-#: htdocs/luci-static/resources/view/homeproxy/node.js:1135
458+#: htdocs/luci-static/resources/view/homeproxy/node.js:1144
459459 msgid ""
460460 "Drop/keep nodes that contain the specific keywords. <a target=\"_blank\" "
461461 "href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/"
462462 "Regular_Expressions\">Regex</a> is supported."
463463 msgstr ""
464464
465-#: htdocs/luci-static/resources/view/homeproxy/node.js:1127
465+#: htdocs/luci-static/resources/view/homeproxy/node.js:1136
466466 msgid "Drop/keep specific nodes from subscriptions."
467467 msgstr ""
468468
@@ -474,22 +474,22 @@ msgid ""
474474 "a non-ACME system, such as a CA customer database."
475475 msgstr ""
476476
477-#: htdocs/luci-static/resources/view/homeproxy/node.js:1008
477+#: htdocs/luci-static/resources/view/homeproxy/node.js:1010
478478 msgid ""
479479 "ECH (Encrypted Client Hello) is a TLS extension that allows a client to "
480480 "encrypt the first part of its ClientHello message."
481481 msgstr ""
482482
483-#: htdocs/luci-static/resources/view/homeproxy/node.js:1023
483+#: htdocs/luci-static/resources/view/homeproxy/node.js:1025
484484 msgid "ECH config"
485485 msgstr ""
486486
487-#: htdocs/luci-static/resources/view/homeproxy/node.js:831
487+#: htdocs/luci-static/resources/view/homeproxy/node.js:819
488488 #: htdocs/luci-static/resources/view/homeproxy/server.js:295
489489 msgid "Early data"
490490 msgstr ""
491491
492-#: htdocs/luci-static/resources/view/homeproxy/node.js:838
492+#: htdocs/luci-static/resources/view/homeproxy/node.js:826
493493 #: htdocs/luci-static/resources/view/homeproxy/server.js:302
494494 msgid "Early data header name"
495495 msgstr ""
@@ -498,7 +498,7 @@ msgstr ""
498498 msgid "Early data is sent in path instead of header by default."
499499 msgstr ""
500500
501-#: htdocs/luci-static/resources/view/homeproxy/node.js:1035
501+#: htdocs/luci-static/resources/view/homeproxy/node.js:1037
502502 msgid "Edge"
503503 msgstr ""
504504
@@ -514,10 +514,10 @@ msgstr ""
514514 msgid "Email"
515515 msgstr ""
516516
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
521521 #: htdocs/luci-static/resources/view/homeproxy/server.js:30
522522 #: htdocs/luci-static/resources/view/homeproxy/server.js:51
523523 msgid "Enable"
@@ -527,20 +527,20 @@ msgstr ""
527527 msgid "Enable ACME"
528528 msgstr ""
529529
530-#: htdocs/luci-static/resources/view/homeproxy/node.js:1007
530+#: htdocs/luci-static/resources/view/homeproxy/node.js:1009
531531 msgid "Enable ECH"
532532 msgstr ""
533533
534-#: htdocs/luci-static/resources/view/homeproxy/node.js:1018
534+#: htdocs/luci-static/resources/view/homeproxy/node.js:1020
535535 msgid "Enable PQ signature schemes"
536536 msgstr ""
537537
538-#: htdocs/luci-static/resources/view/homeproxy/node.js:1077
538+#: htdocs/luci-static/resources/view/homeproxy/node.js:1079
539539 #: htdocs/luci-static/resources/view/homeproxy/server.js:482
540540 msgid "Enable UDP fragmentation."
541541 msgstr ""
542542
543-#: htdocs/luci-static/resources/view/homeproxy/client.js:265
543+#: htdocs/luci-static/resources/view/homeproxy/client.js:259
544544 msgid "Enable endpoint-independent NAT"
545545 msgstr ""
546546
@@ -548,14 +548,14 @@ msgstr ""
548548 msgid "Enable tcp fast open for listener."
549549 msgstr ""
550550
551-#: htdocs/luci-static/resources/view/homeproxy/node.js:1082
551+#: htdocs/luci-static/resources/view/homeproxy/node.js:1084
552552 msgid ""
553553 "Enable the SUoT protocol, requires server support. Conflict with multiplex."
554554 msgstr ""
555555
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
559559 #: htdocs/luci-static/resources/view/homeproxy/server.js:192
560560 msgid "Encrypt method"
561561 msgstr ""
@@ -572,13 +572,13 @@ msgstr ""
572572 #: htdocs/luci-static/resources/view/homeproxy/client.js:175
573573 #: htdocs/luci-static/resources/view/homeproxy/client.js:203
574574 #: 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
577577 #: 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
582582 #: htdocs/luci-static/resources/view/homeproxy/server.js:113
583583 #: htdocs/luci-static/resources/view/homeproxy/server.js:384
584584 #: htdocs/luci-static/resources/view/homeproxy/server.js:386
@@ -601,24 +601,24 @@ msgstr ""
601601 msgid "Failed to upload %s, error: %s."
602602 msgstr ""
603603
604-#: htdocs/luci-static/resources/view/homeproxy/node.js:1134
604+#: htdocs/luci-static/resources/view/homeproxy/node.js:1143
605605 msgid "Filter keywords"
606606 msgstr ""
607607
608-#: htdocs/luci-static/resources/view/homeproxy/node.js:1126
608+#: htdocs/luci-static/resources/view/homeproxy/node.js:1135
609609 msgid "Filter nodes"
610610 msgstr ""
611611
612-#: htdocs/luci-static/resources/view/homeproxy/node.js:1036
612+#: htdocs/luci-static/resources/view/homeproxy/node.js:1038
613613 msgid "Firefox"
614614 msgstr ""
615615
616-#: htdocs/luci-static/resources/view/homeproxy/node.js:698
616+#: htdocs/luci-static/resources/view/homeproxy/node.js:686
617617 #: htdocs/luci-static/resources/view/homeproxy/server.js:206
618618 msgid "Flow"
619619 msgstr ""
620620
621-#: htdocs/luci-static/resources/view/homeproxy/node.js:800
621+#: htdocs/luci-static/resources/view/homeproxy/node.js:788
622622 msgid "GET"
623623 msgstr ""
624624
@@ -630,15 +630,15 @@ msgstr ""
630630 msgid "GFWList"
631631 msgstr ""
632632
633-#: htdocs/luci-static/resources/view/homeproxy/client.js:881
633+#: htdocs/luci-static/resources/view/homeproxy/client.js:874
634634 msgid "Gaming mode IPv4 IP-s"
635635 msgstr ""
636636
637-#: htdocs/luci-static/resources/view/homeproxy/client.js:887
637+#: htdocs/luci-static/resources/view/homeproxy/client.js:880
638638 msgid "Gaming mode IPv6 IP-s"
639639 msgstr ""
640640
641-#: htdocs/luci-static/resources/view/homeproxy/client.js:458
641+#: htdocs/luci-static/resources/view/homeproxy/client.js:451
642642 msgid "GeoIP"
643643 msgstr ""
644644
@@ -650,8 +650,8 @@ msgstr ""
650650 msgid "GeoSite version"
651651 msgstr ""
652652
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
655655 msgid "Geosite"
656656 msgstr ""
657657
@@ -659,11 +659,11 @@ msgstr ""
659659 msgid "Global"
660660 msgstr ""
661661
662-#: htdocs/luci-static/resources/view/homeproxy/client.js:894
662+#: htdocs/luci-static/resources/view/homeproxy/client.js:887
663663 msgid "Global proxy IPv4 IP-s"
664664 msgstr ""
665665
666-#: htdocs/luci-static/resources/view/homeproxy/client.js:901
666+#: htdocs/luci-static/resources/view/homeproxy/client.js:894
667667 msgid "Global proxy IPv6 IP-s"
668668 msgstr ""
669669
@@ -679,10 +679,10 @@ msgstr ""
679679 msgid "Grant access to homeproxy configuration"
680680 msgstr ""
681681
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
684684 #: 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
686686 #: htdocs/luci-static/resources/view/homeproxy/server.js:57
687687 #: htdocs/luci-static/resources/view/homeproxy/server.js:224
688688 msgid "HTTP"
@@ -695,8 +695,8 @@ msgstr ""
695695 msgid "HomeProxy"
696696 msgstr ""
697697
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
700700 #: htdocs/luci-static/resources/view/homeproxy/server.js:257
701701 #: htdocs/luci-static/resources/view/homeproxy/server.js:287
702702 msgid "Host"
@@ -707,16 +707,16 @@ msgstr ""
707707 msgid "Hysteria"
708708 msgstr ""
709709
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
712712 msgid "IP CIDR"
713713 msgstr ""
714714
715-#: htdocs/luci-static/resources/view/homeproxy/client.js:399
715+#: htdocs/luci-static/resources/view/homeproxy/client.js:392
716716 msgid "IP version"
717717 msgstr ""
718718
719-#: htdocs/luci-static/resources/view/homeproxy/client.js:401
719+#: htdocs/luci-static/resources/view/homeproxy/client.js:394
720720 msgid "IPv4"
721721 msgstr ""
722722
@@ -724,7 +724,7 @@ msgstr ""
724724 msgid "IPv4 only"
725725 msgstr ""
726726
727-#: htdocs/luci-static/resources/view/homeproxy/client.js:402
727+#: htdocs/luci-static/resources/view/homeproxy/client.js:395
728728 msgid "IPv6"
729729 msgstr ""
730730
@@ -732,16 +732,16 @@ msgstr ""
732732 msgid "IPv6 only"
733733 msgstr ""
734734
735-#: htdocs/luci-static/resources/view/homeproxy/client.js:229
735+#: htdocs/luci-static/resources/view/homeproxy/client.js:228
736736 msgid "IPv6 support"
737737 msgstr ""
738738
739-#: htdocs/luci-static/resources/view/homeproxy/node.js:805
739+#: htdocs/luci-static/resources/view/homeproxy/node.js:793
740740 #: htdocs/luci-static/resources/view/homeproxy/server.js:270
741741 msgid "Idle timeout"
742742 msgstr ""
743743
744-#: htdocs/luci-static/resources/view/homeproxy/node.js:782
744+#: htdocs/luci-static/resources/view/homeproxy/node.js:770
745745 msgid ""
746746 "If enabled, the client transport sends keepalive pings even with no active "
747747 "connections."
@@ -752,20 +752,20 @@ msgid ""
752752 "If set, the requested domain name will be resolved to IP before routing."
753753 msgstr ""
754754
755-#: htdocs/luci-static/resources/view/homeproxy/client.js:332
755+#: htdocs/luci-static/resources/view/homeproxy/client.js:325
756756 msgid ""
757757 "If set, the server domain name will be resolved to IP before connecting.<br/"
758758 ">dns.strategy will be used if empty."
759759 msgstr ""
760760
761-#: htdocs/luci-static/resources/view/homeproxy/node.js:767
761+#: htdocs/luci-static/resources/view/homeproxy/node.js:755
762762 #: htdocs/luci-static/resources/view/homeproxy/server.js:242
763763 msgid ""
764764 "If the transport doesn't see any activity after a duration of this time, it "
765765 "pings the client to check if the connection is still active."
766766 msgstr ""
767767
768-#: htdocs/luci-static/resources/view/homeproxy/node.js:986
768+#: htdocs/luci-static/resources/view/homeproxy/node.js:988
769769 msgid ""
770770 "If you have the root certificate, use this option instead of allowing "
771771 "insecure."
@@ -781,17 +781,17 @@ msgstr ""
781781 msgid "Import share links"
782782 msgstr ""
783783
784-#: htdocs/luci-static/resources/view/homeproxy/client.js:814
784+#: htdocs/luci-static/resources/view/homeproxy/client.js:807
785785 msgid "Interface Control"
786786 msgstr ""
787787
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
790790 msgid "Invert"
791791 msgstr ""
792792
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
795795 msgid "Invert match result."
796796 msgstr ""
797797
@@ -799,31 +799,31 @@ msgstr ""
799799 msgid "Key path"
800800 msgstr ""
801801
802-#: htdocs/luci-static/resources/view/homeproxy/client.js:828
802+#: htdocs/luci-static/resources/view/homeproxy/client.js:821
803803 msgid "LAN IP Policy"
804804 msgstr ""
805805
806-#: htdocs/luci-static/resources/view/homeproxy/client.js:244
806+#: htdocs/luci-static/resources/view/homeproxy/client.js:243
807807 msgid "LWIP"
808808 msgstr ""
809809
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
814814 #: htdocs/luci-static/resources/view/homeproxy/node.js:424
815815 #: htdocs/luci-static/resources/view/homeproxy/server.js:45
816816 msgid "Label"
817817 msgstr ""
818818
819-#: htdocs/luci-static/resources/view/homeproxy/node.js:705
819+#: htdocs/luci-static/resources/view/homeproxy/node.js:693
820820 #: htdocs/luci-static/resources/view/homeproxy/server.js:213
821821 msgid ""
822822 "Legacy protocol support (VMess MD5 Authentication) is provided for "
823823 "compatibility purposes only, use of alterId > 1 is not recommended."
824824 msgstr ""
825825
826-#: htdocs/luci-static/resources/view/homeproxy/client.js:262
826+#: htdocs/luci-static/resources/view/homeproxy/client.js:256
827827 msgid "Less compatibility and sometimes better performance."
828828 msgstr ""
829829
@@ -831,17 +831,17 @@ msgstr ""
831831 msgid "Let's Encrypt"
832832 msgstr ""
833833
834-#: htdocs/luci-static/resources/view/homeproxy/node.js:855
834+#: htdocs/luci-static/resources/view/homeproxy/node.js:843
835835 msgid ""
836836 "List of IP (v4 or v6) addresses prefixes to be assigned to the interface."
837837 msgstr ""
838838
839-#: htdocs/luci-static/resources/view/homeproxy/node.js:948
839+#: htdocs/luci-static/resources/view/homeproxy/node.js:950
840840 #: htdocs/luci-static/resources/view/homeproxy/server.js:331
841841 msgid "List of supported application level protocols, in order of preference."
842842 msgstr ""
843843
844-#: htdocs/luci-static/resources/view/homeproxy/client.js:816
844+#: htdocs/luci-static/resources/view/homeproxy/client.js:809
845845 msgid "Listen interfaces"
846846 msgstr ""
847847
@@ -849,7 +849,7 @@ msgstr ""
849849 msgid "Loading"
850850 msgstr ""
851851
852-#: htdocs/luci-static/resources/view/homeproxy/node.js:854
852+#: htdocs/luci-static/resources/view/homeproxy/node.js:842
853853 msgid "Local address"
854854 msgstr ""
855855
@@ -861,7 +861,7 @@ msgstr ""
861861 msgid "Log is empty."
862862 msgstr ""
863863
864-#: htdocs/luci-static/resources/view/homeproxy/node.js:881
864+#: htdocs/luci-static/resources/view/homeproxy/node.js:869
865865 msgid "MTU"
866866 msgstr ""
867867
@@ -873,158 +873,158 @@ msgstr ""
873873 msgid "Main node"
874874 msgstr ""
875875
876-#: htdocs/luci-static/resources/view/homeproxy/client.js:459
876+#: htdocs/luci-static/resources/view/homeproxy/client.js:452
877877 msgid "Match GeoIP."
878878 msgstr ""
879879
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
882882 msgid "Match IP CIDR."
883883 msgstr ""
884884
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
887887 msgid "Match domain suffix."
888888 msgstr ""
889889
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
892892 msgid "Match domain using keyword."
893893 msgstr ""
894894
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
897897 msgid "Match domain using regular expression."
898898 msgstr ""
899899
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
902902 msgid "Match full domain."
903903 msgstr ""
904904
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
907907 msgid "Match geosite."
908908 msgstr ""
909909
910-#: htdocs/luci-static/resources/view/homeproxy/client.js:766
910+#: htdocs/luci-static/resources/view/homeproxy/client.js:759
911911 msgid "Match outbound."
912912 msgstr ""
913913
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
916916 msgid "Match port range. Format as START:/:END/START:END."
917917 msgstr ""
918918
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
921921 msgid "Match port."
922922 msgstr ""
923923
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
926926 msgid "Match process name."
927927 msgstr ""
928928
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
931931 msgid "Match process path."
932932 msgstr ""
933933
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
936936 msgid "Match source GeoIP."
937937 msgstr ""
938938
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
941941 msgid "Match source IP CIDR."
942942 msgstr ""
943943
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
946946 msgid "Match source port range. Format as START:/:END/START:END."
947947 msgstr ""
948948
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
951951 msgid "Match source port."
952952 msgstr ""
953953
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
956956 msgid "Match user name."
957957 msgstr ""
958958
959-#: htdocs/luci-static/resources/view/homeproxy/node.js:544
959+#: htdocs/luci-static/resources/view/homeproxy/node.js:532
960960 #: htdocs/luci-static/resources/view/homeproxy/server.js:132
961961 msgid "Max download speed"
962962 msgstr ""
963963
964-#: htdocs/luci-static/resources/view/homeproxy/node.js:545
964+#: htdocs/luci-static/resources/view/homeproxy/node.js:533
965965 #: htdocs/luci-static/resources/view/homeproxy/server.js:133
966966 msgid "Max download speed in Mbps."
967967 msgstr ""
968968
969-#: htdocs/luci-static/resources/view/homeproxy/node.js:550
969+#: htdocs/luci-static/resources/view/homeproxy/node.js:538
970970 #: htdocs/luci-static/resources/view/homeproxy/server.js:138
971971 msgid "Max upload speed"
972972 msgstr ""
973973
974-#: htdocs/luci-static/resources/view/homeproxy/node.js:551
974+#: htdocs/luci-static/resources/view/homeproxy/node.js:539
975975 #: htdocs/luci-static/resources/view/homeproxy/server.js:139
976976 msgid "Max upload speed in Mbps."
977977 msgstr ""
978978
979-#: htdocs/luci-static/resources/view/homeproxy/node.js:969
979+#: htdocs/luci-static/resources/view/homeproxy/node.js:971
980980 #: htdocs/luci-static/resources/view/homeproxy/server.js:343
981981 msgid "Maximum TLS version"
982982 msgstr ""
983983
984-#: htdocs/luci-static/resources/view/homeproxy/node.js:908
984+#: htdocs/luci-static/resources/view/homeproxy/node.js:896
985985 msgid "Maximum connections"
986986 msgstr ""
987987
988-#: htdocs/luci-static/resources/view/homeproxy/node.js:924
988+#: htdocs/luci-static/resources/view/homeproxy/node.js:912
989989 msgid ""
990990 "Maximum multiplexed streams in a connection before opening a new connection."
991991 "<br/>Conflict with <code>Maximum connections</code> and <code>Minimum "
992992 "streams</code>."
993993 msgstr ""
994994
995-#: htdocs/luci-static/resources/view/homeproxy/node.js:923
995+#: htdocs/luci-static/resources/view/homeproxy/node.js:911
996996 msgid "Maximum streams"
997997 msgstr ""
998998
999-#: htdocs/luci-static/resources/view/homeproxy/node.js:799
999+#: htdocs/luci-static/resources/view/homeproxy/node.js:787
10001000 #: htdocs/luci-static/resources/view/homeproxy/server.js:266
10011001 msgid "Method"
10021002 msgstr ""
10031003
1004-#: htdocs/luci-static/resources/view/homeproxy/node.js:961
1004+#: htdocs/luci-static/resources/view/homeproxy/node.js:963
10051005 #: htdocs/luci-static/resources/view/homeproxy/server.js:335
10061006 msgid "Minimum TLS version"
10071007 msgstr ""
10081008
1009-#: htdocs/luci-static/resources/view/homeproxy/node.js:916
1009+#: htdocs/luci-static/resources/view/homeproxy/node.js:904
10101010 msgid ""
10111011 "Minimum multiplexed streams in a connection before opening a new connection."
10121012 msgstr ""
10131013
1014-#: htdocs/luci-static/resources/view/homeproxy/node.js:915
1014+#: htdocs/luci-static/resources/view/homeproxy/node.js:903
10151015 msgid "Minimum streams"
10161016 msgstr ""
10171017
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
10201020 msgid "Mode"
10211021 msgstr ""
10221022
1023-#: htdocs/luci-static/resources/view/homeproxy/node.js:890
1023+#: htdocs/luci-static/resources/view/homeproxy/node.js:878
10241024 msgid "Multiplex"
10251025 msgstr ""
10261026
1027-#: htdocs/luci-static/resources/view/homeproxy/node.js:898
1027+#: htdocs/luci-static/resources/view/homeproxy/node.js:886
10281028 msgid "Multiplex protocol."
10291029 msgstr ""
10301030
@@ -1032,7 +1032,7 @@ msgstr ""
10321032 msgid "NOT RUNNING"
10331033 msgstr ""
10341034
1035-#: htdocs/luci-static/resources/view/homeproxy/node.js:1153
1035+#: htdocs/luci-static/resources/view/homeproxy/node.js:1162
10361036 msgid "NOTE: Save current settings before updating subscriptions."
10371037 msgstr ""
10381038
@@ -1040,29 +1040,29 @@ msgstr ""
10401040 msgid "NaïveProxy"
10411041 msgstr ""
10421042
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
10451045 #: htdocs/luci-static/resources/view/homeproxy/server.js:509
10461046 msgid "Network"
10471047 msgstr ""
10481048
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
10511051 #: htdocs/luci-static/resources/view/homeproxy/server.js:221
10521052 #: htdocs/luci-static/resources/view/homeproxy/server.js:234
10531053 msgid "No TCP transport, plain HTTP is merged into the HTTP transport."
10541054 msgstr ""
10551055
1056-#: htdocs/luci-static/resources/view/homeproxy/node.js:752
1056+#: htdocs/luci-static/resources/view/homeproxy/node.js:740
10571057 #: htdocs/luci-static/resources/view/homeproxy/server.js:232
10581058 msgid "No additional encryption support: It's basically duplicate encryption."
10591059 msgstr ""
10601060
1061-#: htdocs/luci-static/resources/view/homeproxy/node.js:1169
1061+#: htdocs/luci-static/resources/view/homeproxy/node.js:1178
10621062 msgid "No subscription available"
10631063 msgstr ""
10641064
1065-#: htdocs/luci-static/resources/view/homeproxy/node.js:1194
1065+#: htdocs/luci-static/resources/view/homeproxy/node.js:1203
10661066 msgid "No subscription node"
10671067 msgstr ""
10681068
@@ -1070,7 +1070,7 @@ msgstr ""
10701070 msgid "No valid share link found."
10711071 msgstr ""
10721072
1073-#: htdocs/luci-static/resources/view/homeproxy/client.js:324
1073+#: htdocs/luci-static/resources/view/homeproxy/client.js:317
10741074 #: htdocs/luci-static/resources/view/homeproxy/node.js:310
10751075 msgid "Node"
10761076 msgstr ""
@@ -1083,28 +1083,28 @@ msgstr ""
10831083 msgid "Nodes"
10841084 msgstr ""
10851085
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
10891089 #: htdocs/luci-static/resources/view/homeproxy/server.js:207
10901090 #: htdocs/luci-static/resources/view/homeproxy/server.js:222
10911091 msgid "None"
10921092 msgstr ""
10931093
1094-#: htdocs/luci-static/resources/view/homeproxy/node.js:656
1094+#: htdocs/luci-static/resources/view/homeproxy/node.js:644
10951095 msgid "Obfs"
10961096 msgstr ""
10971097
1098-#: htdocs/luci-static/resources/view/homeproxy/node.js:666
1098+#: htdocs/luci-static/resources/view/homeproxy/node.js:654
10991099 msgid "Obfs param"
11001100 msgstr ""
11011101
1102-#: htdocs/luci-static/resources/view/homeproxy/node.js:540
1102+#: htdocs/luci-static/resources/view/homeproxy/node.js:528
11031103 #: htdocs/luci-static/resources/view/homeproxy/server.js:159
11041104 msgid "Obfuscate password"
11051105 msgstr ""
11061106
1107-#: htdocs/luci-static/resources/view/homeproxy/client.js:817
1107+#: htdocs/luci-static/resources/view/homeproxy/client.js:810
11081108 msgid "Only process traffic from specific interfaces. Leave empty for all."
11091109 msgstr ""
11101110
@@ -1112,32 +1112,32 @@ msgstr ""
11121112 msgid "Only proxy mainland China"
11131113 msgstr ""
11141114
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
11191119 msgid "Outbound"
11201120 msgstr ""
11211121
1122-#: htdocs/luci-static/resources/view/homeproxy/client.js:325
1122+#: htdocs/luci-static/resources/view/homeproxy/client.js:318
11231123 msgid "Outbound node"
11241124 msgstr ""
11251125
1126-#: htdocs/luci-static/resources/view/homeproxy/client.js:277
1126+#: htdocs/luci-static/resources/view/homeproxy/client.js:270
11271127 #: htdocs/luci-static/resources/view/homeproxy/server.js:487
11281128 msgid "Override destination"
11291129 msgstr ""
11301130
1131-#: htdocs/luci-static/resources/view/homeproxy/client.js:278
1131+#: htdocs/luci-static/resources/view/homeproxy/client.js:271
11321132 #: htdocs/luci-static/resources/view/homeproxy/server.js:488
11331133 msgid "Override the connection destination address with the sniffed domain."
11341134 msgstr ""
11351135
1136-#: htdocs/luci-static/resources/view/homeproxy/node.js:801
1136+#: htdocs/luci-static/resources/view/homeproxy/node.js:789
11371137 msgid "PUT"
11381138 msgstr ""
11391139
1140-#: htdocs/luci-static/resources/view/homeproxy/node.js:844
1140+#: htdocs/luci-static/resources/view/homeproxy/node.js:832
11411141 msgid "Packet encoding"
11421142 msgstr ""
11431143
@@ -1145,44 +1145,44 @@ msgstr ""
11451145 msgid "Parse Proxy Protocol in the connection header."
11461146 msgstr ""
11471147
1148-#: htdocs/luci-static/resources/view/homeproxy/node.js:471
1148+#: htdocs/luci-static/resources/view/homeproxy/node.js:459
11491149 #: htdocs/luci-static/resources/view/homeproxy/server.js:93
11501150 msgid "Password"
11511151 msgstr ""
11521152
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
11551155 #: htdocs/luci-static/resources/view/homeproxy/server.js:262
11561156 #: htdocs/luci-static/resources/view/homeproxy/server.js:291
11571157 msgid "Path"
11581158 msgstr ""
11591159
1160-#: htdocs/luci-static/resources/view/homeproxy/node.js:868
1160+#: htdocs/luci-static/resources/view/homeproxy/node.js:856
11611161 msgid "Peer pubkic key"
11621162 msgstr ""
11631163
1164-#: htdocs/luci-static/resources/view/homeproxy/client.js:266
1164+#: htdocs/luci-static/resources/view/homeproxy/client.js:260
11651165 msgid ""
11661166 "Performance may degrade slightly, so it is not recommended to enable on when "
11671167 "it is not needed."
11681168 msgstr ""
11691169
1170-#: htdocs/luci-static/resources/view/homeproxy/node.js:813
1170+#: htdocs/luci-static/resources/view/homeproxy/node.js:801
11711171 #: htdocs/luci-static/resources/view/homeproxy/server.js:278
11721172 msgid "Ping timeout"
11731173 msgstr ""
11741174
1175-#: htdocs/luci-static/resources/view/homeproxy/node.js:594
1175+#: htdocs/luci-static/resources/view/homeproxy/node.js:582
11761176 msgid "Plugin"
11771177 msgstr ""
11781178
1179-#: htdocs/luci-static/resources/view/homeproxy/node.js:601
1179+#: htdocs/luci-static/resources/view/homeproxy/node.js:589
11801180 msgid "Plugin opts"
11811181 msgstr ""
11821182
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
11861186 #: htdocs/luci-static/resources/view/homeproxy/server.js:81
11871187 msgid "Port"
11881188 msgstr ""
@@ -1191,12 +1191,12 @@ msgstr ""
11911191 msgid "Port %s alrealy exists!"
11921192 msgstr ""
11931193
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
11961196 msgid "Port range"
11971197 msgstr ""
11981198
1199-#: htdocs/luci-static/resources/view/homeproxy/node.js:874
1199+#: htdocs/luci-static/resources/view/homeproxy/node.js:862
12001200 msgid "Pre-shared key"
12011201 msgstr ""
12021202
@@ -1208,66 +1208,66 @@ msgstr ""
12081208 msgid "Prefer IPv6"
12091209 msgstr ""
12101210
1211-#: htdocs/luci-static/resources/view/homeproxy/node.js:861
1211+#: htdocs/luci-static/resources/view/homeproxy/node.js:849
12121212 msgid "Private key"
12131213 msgstr ""
12141214
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
12171217 msgid "Process name"
12181218 msgstr ""
12191219
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
12221222 msgid "Process path"
12231223 msgstr ""
12241224
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
12301230 #: htdocs/luci-static/resources/view/homeproxy/server.js:121
12311231 msgid "Protocol"
12321232 msgstr ""
12331233
1234-#: htdocs/luci-static/resources/view/homeproxy/node.js:652
1234+#: htdocs/luci-static/resources/view/homeproxy/node.js:640
12351235 msgid "Protocol param"
12361236 msgstr ""
12371237
1238-#: htdocs/luci-static/resources/view/homeproxy/node.js:729
1238+#: htdocs/luci-static/resources/view/homeproxy/node.js:717
12391239 msgid "Protocol parameter. Enable length block encryption."
12401240 msgstr ""
12411241
1242-#: htdocs/luci-static/resources/view/homeproxy/node.js:722
1242+#: htdocs/luci-static/resources/view/homeproxy/node.js:710
12431243 msgid ""
12441244 "Protocol parameter. Will waste traffic randomly if enabled (enabled by "
12451245 "default in v2ray and cannot be disabled)."
12461246 msgstr ""
12471247
1248-#: htdocs/luci-static/resources/view/homeproxy/client.js:928
1248+#: htdocs/luci-static/resources/view/homeproxy/client.js:921
12491249 msgid "Proxy Domain List"
12501250 msgstr ""
12511251
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
12541254 msgid "Proxy IPv4 IP-s"
12551255 msgstr ""
12561256
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
12591259 msgid "Proxy IPv6 IP-s"
12601260 msgstr ""
12611261
1262-#: htdocs/luci-static/resources/view/homeproxy/client.js:847
1262+#: htdocs/luci-static/resources/view/homeproxy/client.js:840
12631263 msgid "Proxy all except listed"
12641264 msgstr ""
12651265
1266-#: htdocs/luci-static/resources/view/homeproxy/client.js:844
1266+#: htdocs/luci-static/resources/view/homeproxy/client.js:837
12671267 msgid "Proxy filter mode"
12681268 msgstr ""
12691269
1270-#: htdocs/luci-static/resources/view/homeproxy/client.js:846
1270+#: htdocs/luci-static/resources/view/homeproxy/client.js:839
12711271 msgid "Proxy listed only"
12721272 msgstr ""
12731273
@@ -1275,23 +1275,23 @@ msgstr ""
12751275 msgid "Proxy mode"
12761276 msgstr ""
12771277
1278-#: htdocs/luci-static/resources/view/homeproxy/node.js:505
1278+#: htdocs/luci-static/resources/view/homeproxy/node.js:493
12791279 #: htdocs/luci-static/resources/view/homeproxy/server.js:497
12801280 msgid "Proxy protocol"
12811281 msgstr ""
12821282
1283-#: htdocs/luci-static/resources/view/homeproxy/node.js:1038
1283+#: htdocs/luci-static/resources/view/homeproxy/node.js:1040
12841284 msgid "QQ"
12851285 msgstr ""
12861286
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
12901290 #: htdocs/luci-static/resources/view/homeproxy/server.js:225
12911291 msgid "QUIC"
12921292 msgstr ""
12931293
1294-#: htdocs/luci-static/resources/view/homeproxy/node.js:562
1294+#: htdocs/luci-static/resources/view/homeproxy/node.js:550
12951295 #: htdocs/luci-static/resources/view/homeproxy/server.js:170
12961296 msgid "QUIC connection receive window"
12971297 msgstr ""
@@ -1300,20 +1300,20 @@ msgstr ""
13001300 msgid "QUIC maximum concurrent bidirectional streams"
13011301 msgstr ""
13021302
1303-#: htdocs/luci-static/resources/view/homeproxy/node.js:556
1303+#: htdocs/luci-static/resources/view/homeproxy/node.js:544
13041304 #: htdocs/luci-static/resources/view/homeproxy/server.js:163
13051305 msgid "QUIC stream receive window"
13061306 msgstr ""
13071307
1308-#: htdocs/luci-static/resources/view/homeproxy/node.js:1054
1308+#: htdocs/luci-static/resources/view/homeproxy/node.js:1056
13091309 msgid "REALITY"
13101310 msgstr ""
13111311
1312-#: htdocs/luci-static/resources/view/homeproxy/node.js:1059
1312+#: htdocs/luci-static/resources/view/homeproxy/node.js:1061
13131313 msgid "REALITY public key"
13141314 msgstr ""
13151315
1316-#: htdocs/luci-static/resources/view/homeproxy/node.js:1064
1316+#: htdocs/luci-static/resources/view/homeproxy/node.js:1066
13171317 msgid "REALITY short ID"
13181318 msgstr ""
13191319
@@ -1321,19 +1321,19 @@ msgstr ""
13211321 msgid "RUNNING"
13221322 msgstr ""
13231323
1324-#: htdocs/luci-static/resources/view/homeproxy/node.js:1039
1324+#: htdocs/luci-static/resources/view/homeproxy/node.js:1041
13251325 msgid "Random"
13261326 msgstr ""
13271327
1328-#: htdocs/luci-static/resources/view/homeproxy/node.js:1040
1328+#: htdocs/luci-static/resources/view/homeproxy/node.js:1042
13291329 msgid "Randomized"
13301330 msgstr ""
13311331
1332-#: htdocs/luci-static/resources/view/homeproxy/client.js:369
1332+#: htdocs/luci-static/resources/view/homeproxy/client.js:362
13331333 msgid "Recursive outbound detected!"
13341334 msgstr ""
13351335
1336-#: htdocs/luci-static/resources/view/homeproxy/client.js:610
1336+#: htdocs/luci-static/resources/view/homeproxy/client.js:603
13371337 msgid "Recursive resolver detected!"
13381338 msgstr ""
13391339
@@ -1345,7 +1345,7 @@ msgstr ""
13451345 msgid "Redirect TCP + TProxy UDP"
13461346 msgstr ""
13471347
1348-#: htdocs/luci-static/resources/view/homeproxy/client.js:223
1348+#: htdocs/luci-static/resources/view/homeproxy/client.js:222
13491349 msgid "Redirect TCP + Tun UDP"
13501350 msgstr ""
13511351
@@ -1353,15 +1353,15 @@ msgstr ""
13531353 msgid "Refresh every %s seconds."
13541354 msgstr ""
13551355
1356-#: htdocs/luci-static/resources/view/homeproxy/node.js:1191
1356+#: htdocs/luci-static/resources/view/homeproxy/node.js:1200
13571357 msgid "Remove %s nodes"
13581358 msgstr ""
13591359
1360-#: htdocs/luci-static/resources/view/homeproxy/node.js:1181
1360+#: htdocs/luci-static/resources/view/homeproxy/node.js:1190
13611361 msgid "Remove all nodes from subscriptions"
13621362 msgstr ""
13631363
1364-#: htdocs/luci-static/resources/view/homeproxy/client.js:623
1364+#: htdocs/luci-static/resources/view/homeproxy/client.js:616
13651365 msgid "Resolve strategy"
13661366 msgstr ""
13671367
@@ -1369,11 +1369,11 @@ msgstr ""
13691369 msgid "Resources management"
13701370 msgstr ""
13711371
1372-#: htdocs/luci-static/resources/view/homeproxy/client.js:302
1372+#: htdocs/luci-static/resources/view/homeproxy/client.js:295
13731373 msgid "Routing Nodes"
13741374 msgstr ""
13751375
1376-#: htdocs/luci-static/resources/view/homeproxy/client.js:377
1376+#: htdocs/luci-static/resources/view/homeproxy/client.js:370
13771377 msgid "Routing Rules"
13781378 msgstr ""
13791379
@@ -1385,7 +1385,7 @@ msgstr ""
13851385 msgid "Routing mode"
13861386 msgstr ""
13871387
1388-#: htdocs/luci-static/resources/view/homeproxy/client.js:310
1388+#: htdocs/luci-static/resources/view/homeproxy/client.js:303
13891389 msgid "Routing node"
13901390 msgstr ""
13911391
@@ -1393,16 +1393,20 @@ msgstr ""
13931393 msgid "Routing ports"
13941394 msgstr ""
13951395
1396-#: htdocs/luci-static/resources/view/homeproxy/client.js:385
1396+#: htdocs/luci-static/resources/view/homeproxy/client.js:378
13971397 msgid "Routing rule"
13981398 msgstr ""
13991399
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
14021402 msgid "STUN"
14031403 msgstr ""
14041404
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
14061410 msgid "Safari"
14071411 msgstr ""
14081412
@@ -1410,15 +1414,15 @@ msgstr ""
14101414 msgid "Same as main node"
14111415 msgstr ""
14121416
1413-#: htdocs/luci-static/resources/view/homeproxy/node.js:1155
1417+#: htdocs/luci-static/resources/view/homeproxy/node.js:1164
14141418 msgid "Save current settings"
14151419 msgstr ""
14161420
1417-#: htdocs/luci-static/resources/view/homeproxy/node.js:1152
1421+#: htdocs/luci-static/resources/view/homeproxy/node.js:1161
14181422 msgid "Save subscriptions settings"
14191423 msgstr ""
14201424
1421-#: htdocs/luci-static/resources/view/homeproxy/client.js:782
1425+#: htdocs/luci-static/resources/view/homeproxy/client.js:775
14221426 #: htdocs/luci-static/resources/view/homeproxy/server.js:41
14231427 msgid "Server"
14241428 msgstr ""
@@ -1441,7 +1445,7 @@ msgstr ""
14411445 msgid "ShadowTLS"
14421446 msgstr ""
14431447
1444-#: htdocs/luci-static/resources/view/homeproxy/node.js:672
1448+#: htdocs/luci-static/resources/view/homeproxy/node.js:660
14451449 msgid "ShadowTLS version"
14461450 msgstr ""
14471451
@@ -1454,8 +1458,8 @@ msgstr ""
14541458 msgid "ShadowsocksR"
14551459 msgstr ""
14561460
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
14591463 msgid ""
14601464 "Sniffed protocol, see <a target=\"_blank\" href=\"https://sing-box.sagernet."
14611465 "org/configuration/route/sniff/\">Sniff</a> for details."
@@ -1466,44 +1470,44 @@ msgstr ""
14661470 msgid "Socks"
14671471 msgstr ""
14681472
1469-#: htdocs/luci-static/resources/view/homeproxy/node.js:682
1473+#: htdocs/luci-static/resources/view/homeproxy/node.js:670
14701474 msgid "Socks version"
14711475 msgstr ""
14721476
1473-#: htdocs/luci-static/resources/view/homeproxy/node.js:683
1477+#: htdocs/luci-static/resources/view/homeproxy/node.js:671
14741478 msgid "Socks4"
14751479 msgstr ""
14761480
1477-#: htdocs/luci-static/resources/view/homeproxy/node.js:684
1481+#: htdocs/luci-static/resources/view/homeproxy/node.js:672
14781482 msgid "Socks4A"
14791483 msgstr ""
14801484
1481-#: htdocs/luci-static/resources/view/homeproxy/node.js:685
1485+#: htdocs/luci-static/resources/view/homeproxy/node.js:673
14821486 msgid "Socks5"
14831487 msgstr ""
14841488
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
14871491 msgid "Source GeoIP"
14881492 msgstr ""
14891493
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
14921496 msgid "Source IP CIDR"
14931497 msgstr ""
14941498
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
14971501 msgid "Source port"
14981502 msgstr ""
14991503
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
15021506 msgid "Source port range"
15031507 msgstr ""
15041508
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
15071511 msgid ""
15081512 "Specifies the period of time after which a health check will be performed "
15091513 "using a ping frame if no frames have been received on the connection.<br/"
@@ -1519,8 +1523,8 @@ msgid ""
15191523 "PING frames are not considered as activity."
15201524 msgstr ""
15211525
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
15241528 msgid ""
15251529 "Specifies the timeout duration after sending a PING frame, within which a "
15261530 "response must be received.<br/>If a response to the PING frame is not "
@@ -1534,16 +1538,16 @@ msgid ""
15341538 "commas."
15351539 msgstr ""
15361540
1537-#: htdocs/luci-static/resources/view/homeproxy/node.js:528
1541+#: htdocs/luci-static/resources/view/homeproxy/node.js:516
15381542 #: htdocs/luci-static/resources/view/homeproxy/server.js:147
15391543 msgid "String"
15401544 msgstr ""
15411545
1542-#: htdocs/luci-static/resources/view/homeproxy/node.js:1109
1546+#: htdocs/luci-static/resources/view/homeproxy/node.js:1118
15431547 msgid "Subscription URL-s"
15441548 msgstr ""
15451549
1546-#: htdocs/luci-static/resources/view/homeproxy/node.js:1091
1550+#: htdocs/luci-static/resources/view/homeproxy/node.js:1100
15471551 msgid "Subscriptions"
15481552 msgstr ""
15491553
@@ -1556,68 +1560,72 @@ msgid "Successfully updated."
15561560 msgstr ""
15571561
15581562 #: 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
15601564 msgid ""
15611565 "Support Hysteria, Shadowsocks(R), Trojan, v2rayN (VMess), and XTLS (VLESS) "
15621566 "online configuration delivery standard."
15631567 msgstr ""
15641568
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
15671575 #: htdocs/luci-static/resources/view/homeproxy/server.js:510
15681576 msgid "TCP"
15691577 msgstr ""
15701578
1571-#: htdocs/luci-static/resources/view/homeproxy/node.js:1072
1579+#: htdocs/luci-static/resources/view/homeproxy/node.js:1074
15721580 #: htdocs/luci-static/resources/view/homeproxy/server.js:475
15731581 msgid "TCP fast open"
15741582 msgstr ""
15751583
1576-#: htdocs/luci-static/resources/view/homeproxy/client.js:239
1584+#: htdocs/luci-static/resources/view/homeproxy/client.js:238
15771585 msgid "TCP/IP stack"
15781586 msgstr ""
15791587
1580-#: htdocs/luci-static/resources/view/homeproxy/client.js:240
1588+#: htdocs/luci-static/resources/view/homeproxy/client.js:239
15811589 msgid "TCP/IP stack."
15821590 msgstr ""
15831591
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
15871595 #: htdocs/luci-static/resources/view/homeproxy/server.js:314
15881596 msgid "TLS"
15891597 msgstr ""
15901598
1591-#: htdocs/luci-static/resources/view/homeproxy/node.js:947
1599+#: htdocs/luci-static/resources/view/homeproxy/node.js:949
15921600 #: htdocs/luci-static/resources/view/homeproxy/server.js:330
15931601 msgid "TLS ALPN"
15941602 msgstr ""
15951603
1596-#: htdocs/luci-static/resources/view/homeproxy/node.js:942
1604+#: htdocs/luci-static/resources/view/homeproxy/node.js:944
15971605 #: htdocs/luci-static/resources/view/homeproxy/server.js:325
15981606 msgid "TLS SNI"
15991607 msgstr ""
16001608
1601-#: htdocs/luci-static/resources/view/homeproxy/node.js:750
1609+#: htdocs/luci-static/resources/view/homeproxy/node.js:738
16021610 #: htdocs/luci-static/resources/view/homeproxy/server.js:230
16031611 msgid "TLS is not enforced. If TLS is not configured, plain HTTP 1.1 is used."
16041612 msgstr ""
16051613
1606-#: htdocs/luci-static/resources/view/homeproxy/client.js:587
1614+#: htdocs/luci-static/resources/view/homeproxy/client.js:580
16071615 msgid ""
16081616 "Tag of a another server to resolve the domain name in the address. Required "
16091617 "if address contains domain."
16101618 msgstr ""
16111619
1612-#: htdocs/luci-static/resources/view/homeproxy/client.js:629
1620+#: htdocs/luci-static/resources/view/homeproxy/client.js:622
16131621 msgid "Tag of an outbound for connecting to the dns server."
16141622 msgstr ""
16151623
1616-#: htdocs/luci-static/resources/view/homeproxy/client.js:783
1624+#: htdocs/luci-static/resources/view/homeproxy/client.js:776
16171625 msgid "Tag of the target dns server."
16181626 msgstr ""
16191627
1620-#: htdocs/luci-static/resources/view/homeproxy/client.js:505
1628+#: htdocs/luci-static/resources/view/homeproxy/client.js:498
16211629 msgid "Tag of the target outbound."
16221630 msgstr ""
16231631
@@ -1629,21 +1637,21 @@ msgstr ""
16291637 msgid "The ACME CA provider to use."
16301638 msgstr ""
16311639
1632-#: htdocs/luci-static/resources/view/homeproxy/client.js:530
1640+#: htdocs/luci-static/resources/view/homeproxy/client.js:523
16331641 msgid "The DNS strategy for resolving the domain name in the address."
16341642 msgstr ""
16351643
1636-#: htdocs/luci-static/resources/view/homeproxy/node.js:563
1644+#: htdocs/luci-static/resources/view/homeproxy/node.js:551
16371645 #: htdocs/luci-static/resources/view/homeproxy/server.js:171
16381646 msgid "The QUIC connection-level flow control window for receiving data."
16391647 msgstr ""
16401648
1641-#: htdocs/luci-static/resources/view/homeproxy/node.js:557
1649+#: htdocs/luci-static/resources/view/homeproxy/node.js:545
16421650 #: htdocs/luci-static/resources/view/homeproxy/server.js:164
16431651 msgid "The QUIC stream-level flow control window for receiving data."
16441652 msgstr ""
16451653
1646-#: htdocs/luci-static/resources/view/homeproxy/client.js:583
1654+#: htdocs/luci-static/resources/view/homeproxy/client.js:576
16471655 msgid "The address of the dns server. Support UDP, TCP, DoT, DoH and RCode."
16481656 msgstr ""
16491657
@@ -1659,7 +1667,7 @@ msgid ""
16591667 "forward 443 to this port for challenge to succeed."
16601668 msgstr ""
16611669
1662-#: htdocs/luci-static/resources/view/homeproxy/client.js:407
1670+#: htdocs/luci-static/resources/view/homeproxy/client.js:400
16631671 msgid ""
16641672 "The default rule uses the following matching logic:<br/><code>(domain || "
16651673 "domain_suffix || domain_keyword || domain_regex || geosite || geoip || "
@@ -1667,7 +1675,7 @@ msgid ""
16671675 "><code>other fields</code>."
16681676 msgstr ""
16691677
1670-#: htdocs/luci-static/resources/view/homeproxy/client.js:671
1678+#: htdocs/luci-static/resources/view/homeproxy/client.js:664
16711679 msgid ""
16721680 "The default rule uses the following matching logic:<br/><code>(domain || "
16731681 "domain_suffix || domain_keyword || domain_regex || geosite || ip_cidr)</"
@@ -1675,13 +1683,13 @@ msgid ""
16751683 "><code>other fields</code>."
16761684 msgstr ""
16771685
1678-#: htdocs/luci-static/resources/view/homeproxy/client.js:618
1686+#: htdocs/luci-static/resources/view/homeproxy/client.js:611
16791687 msgid ""
16801688 "The domain strategy for resolving the domain name in the address. dns."
16811689 "strategy will be used if empty."
16821690 msgstr ""
16831691
1684-#: htdocs/luci-static/resources/view/homeproxy/node.js:978
1692+#: htdocs/luci-static/resources/view/homeproxy/node.js:980
16851693 #: htdocs/luci-static/resources/view/homeproxy/server.js:352
16861694 msgid ""
16871695 "The elliptic curves that will be used in an ECDHE handshake, in preference "
@@ -1694,7 +1702,7 @@ msgid ""
16941702 "account."
16951703 msgstr ""
16961704
1697-#: htdocs/luci-static/resources/view/homeproxy/node.js:970
1705+#: htdocs/luci-static/resources/view/homeproxy/node.js:972
16981706 #: htdocs/luci-static/resources/view/homeproxy/server.js:344
16991707 msgid "The maximum TLS version that is acceptable."
17001708 msgstr ""
@@ -1705,7 +1713,7 @@ msgid ""
17051713 "allowed to open."
17061714 msgstr ""
17071715
1708-#: htdocs/luci-static/resources/view/homeproxy/node.js:962
1716+#: htdocs/luci-static/resources/view/homeproxy/node.js:964
17091717 #: htdocs/luci-static/resources/view/homeproxy/server.js:336
17101718 msgid "The minimum TLS version that is acceptable."
17111719 msgstr ""
@@ -1714,11 +1722,11 @@ msgstr ""
17141722 msgid "The modern ImmortalWrt proxy platform for ARM64/AMD64."
17151723 msgstr ""
17161724
1717-#: htdocs/luci-static/resources/view/homeproxy/client.js:338
1725+#: htdocs/luci-static/resources/view/homeproxy/client.js:331
17181726 msgid "The network interface to bind to."
17191727 msgstr ""
17201728
1721-#: htdocs/luci-static/resources/view/homeproxy/node.js:992
1729+#: htdocs/luci-static/resources/view/homeproxy/node.js:994
17221730 msgid "The path to the server certificate, in PEM format."
17231731 msgstr ""
17241732
@@ -1734,21 +1742,21 @@ msgstr ""
17341742 msgid "The server public key, in PEM format."
17351743 msgstr ""
17361744
1737-#: htdocs/luci-static/resources/view/homeproxy/client.js:345
1745+#: htdocs/luci-static/resources/view/homeproxy/client.js:338
17381746 msgid ""
17391747 "The tag of the upstream outbound.<br/>Other dial fields will be ignored when "
17401748 "enabled."
17411749 msgstr ""
17421750
1743-#: htdocs/luci-static/resources/view/homeproxy/node.js:770
1751+#: htdocs/luci-static/resources/view/homeproxy/node.js:758
17441752 #: htdocs/luci-static/resources/view/homeproxy/server.js:279
17451753 msgid ""
17461754 "The timeout that after performing a keepalive check, the client will wait "
17471755 "for activity. If no activity is detected, the connection will be closed."
17481756 msgstr ""
17491757
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
17521760 msgid ""
17531761 "This is <strong>DANGEROUS</strong>, your traffic is almost like "
17541762 "<strong>PLAIN TEXT</strong>! Use at your own risk!"
@@ -1760,7 +1768,7 @@ msgid ""
17601768 "code>."
17611769 msgstr ""
17621770
1763-#: htdocs/luci-static/resources/view/homeproxy/node.js:737
1771+#: htdocs/luci-static/resources/view/homeproxy/node.js:725
17641772 #: htdocs/luci-static/resources/view/homeproxy/server.js:220
17651773 msgid "Transport"
17661774 msgstr ""
@@ -1770,7 +1778,7 @@ msgstr ""
17701778 msgid "Trojan"
17711779 msgstr ""
17721780
1773-#: htdocs/luci-static/resources/view/homeproxy/client.js:224
1781+#: htdocs/luci-static/resources/view/homeproxy/client.js:223
17741782 msgid "Tun TCP/UDP"
17751783 msgstr ""
17761784
@@ -1779,22 +1787,22 @@ msgstr ""
17791787 msgid "Type"
17801788 msgstr ""
17811789
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
17841792 #: htdocs/luci-static/resources/view/homeproxy/server.js:511
17851793 msgid "UDP"
17861794 msgstr ""
17871795
1788-#: htdocs/luci-static/resources/view/homeproxy/node.js:1076
1796+#: htdocs/luci-static/resources/view/homeproxy/node.js:1078
17891797 #: htdocs/luci-static/resources/view/homeproxy/server.js:481
17901798 msgid "UDP Fragment"
17911799 msgstr ""
17921800
1793-#: htdocs/luci-static/resources/view/homeproxy/node.js:1081
1801+#: htdocs/luci-static/resources/view/homeproxy/node.js:1083
17941802 msgid "UDP over TCP"
17951803 msgstr ""
17961804
1797-#: htdocs/luci-static/resources/view/homeproxy/node.js:692
1805+#: htdocs/luci-static/resources/view/homeproxy/node.js:680
17981806 #: htdocs/luci-static/resources/view/homeproxy/server.js:200
17991807 msgid "UUID"
18001808 msgstr ""
@@ -1807,7 +1815,7 @@ msgstr ""
18071815 msgid "Unknown error: %s"
18081816 msgstr ""
18091817
1810-#: htdocs/luci-static/resources/view/homeproxy/node.js:1166
1818+#: htdocs/luci-static/resources/view/homeproxy/node.js:1175
18111819 msgid "Update %s subscriptions"
18121820 msgstr ""
18131821
@@ -1815,19 +1823,19 @@ msgstr ""
18151823 msgid "Update failed."
18161824 msgstr ""
18171825
1818-#: htdocs/luci-static/resources/view/homeproxy/node.js:1161
1826+#: htdocs/luci-static/resources/view/homeproxy/node.js:1170
18191827 msgid "Update nodes from subscriptions"
18201828 msgstr ""
18211829
1822-#: htdocs/luci-static/resources/view/homeproxy/node.js:1105
1830+#: htdocs/luci-static/resources/view/homeproxy/node.js:1114
18231831 msgid "Update subscriptions via proxy."
18241832 msgstr ""
18251833
1826-#: htdocs/luci-static/resources/view/homeproxy/node.js:1104
1834+#: htdocs/luci-static/resources/view/homeproxy/node.js:1113
18271835 msgid "Update via proxy"
18281836 msgstr ""
18291837
1830-#: htdocs/luci-static/resources/view/homeproxy/node.js:998
1838+#: htdocs/luci-static/resources/view/homeproxy/node.js:1000
18311839 #: htdocs/luci-static/resources/view/homeproxy/server.js:449
18321840 msgid "Upload certificate"
18331841 msgstr ""
@@ -1836,13 +1844,13 @@ msgstr ""
18361844 msgid "Upload key"
18371845 msgstr ""
18381846
1839-#: htdocs/luci-static/resources/view/homeproxy/node.js:1001
1847+#: htdocs/luci-static/resources/view/homeproxy/node.js:1003
18401848 #: htdocs/luci-static/resources/view/homeproxy/server.js:452
18411849 #: htdocs/luci-static/resources/view/homeproxy/server.js:468
18421850 msgid "Upload..."
18431851 msgstr ""
18441852
1845-#: htdocs/luci-static/resources/view/homeproxy/client.js:260
1853+#: htdocs/luci-static/resources/view/homeproxy/client.js:254
18461854 msgid "Upstream archived. Not recommended."
18471855 msgstr ""
18481856
@@ -1854,19 +1862,19 @@ msgstr ""
18541862 msgid "Use DNS server from WAN"
18551863 msgstr ""
18561864
1857-#: htdocs/luci-static/resources/view/homeproxy/node.js:943
1865+#: htdocs/luci-static/resources/view/homeproxy/node.js:945
18581866 #: htdocs/luci-static/resources/view/homeproxy/server.js:326
18591867 msgid ""
18601868 "Used to verify the hostname on the returned certificates unless insecure is "
18611869 "given."
18621870 msgstr ""
18631871
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
18661874 msgid "User"
18671875 msgstr ""
18681876
1869-#: htdocs/luci-static/resources/view/homeproxy/node.js:466
1877+#: htdocs/luci-static/resources/view/homeproxy/node.js:454
18701878 #: htdocs/luci-static/resources/view/homeproxy/server.js:86
18711879 msgid "Username"
18721880 msgstr ""
@@ -1881,16 +1889,16 @@ msgstr ""
18811889 msgid "VMess"
18821890 msgstr ""
18831891
1884-#: htdocs/luci-static/resources/view/homeproxy/client.js:910
1892+#: htdocs/luci-static/resources/view/homeproxy/client.js:903
18851893 msgid "WAN IP Policy"
18861894 msgstr ""
18871895
1888-#: htdocs/luci-static/resources/view/homeproxy/node.js:743
1896+#: htdocs/luci-static/resources/view/homeproxy/node.js:731
18891897 #: htdocs/luci-static/resources/view/homeproxy/server.js:226
18901898 msgid "WebSocket"
18911899 msgstr ""
18921900
1893-#: htdocs/luci-static/resources/view/homeproxy/node.js:1130
1901+#: htdocs/luci-static/resources/view/homeproxy/node.js:1139
18941902 msgid "Whitelist mode"
18951903 msgstr ""
18961904
@@ -1898,19 +1906,19 @@ msgstr ""
18981906 msgid "WireGuard"
18991907 msgstr ""
19001908
1901-#: htdocs/luci-static/resources/view/homeproxy/node.js:869
1909+#: htdocs/luci-static/resources/view/homeproxy/node.js:857
19021910 msgid "WireGuard peer public key."
19031911 msgstr ""
19041912
1905-#: htdocs/luci-static/resources/view/homeproxy/node.js:875
1913+#: htdocs/luci-static/resources/view/homeproxy/node.js:863
19061914 msgid "WireGuard pre-shared key."
19071915 msgstr ""
19081916
1909-#: htdocs/luci-static/resources/view/homeproxy/node.js:862
1917+#: htdocs/luci-static/resources/view/homeproxy/node.js:850
19101918 msgid "WireGuard requires base64-encoded private keys."
19111919 msgstr ""
19121920
1913-#: htdocs/luci-static/resources/view/homeproxy/node.js:506
1921+#: htdocs/luci-static/resources/view/homeproxy/node.js:494
19141922 msgid "Write Proxy Protocol in the connection header."
19151923 msgstr ""
19161924
@@ -1918,8 +1926,8 @@ msgstr ""
19181926 msgid "Xinfeng Public DNS (114.114.114.114)"
19191927 msgstr ""
19201928
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
19231931 msgid "Xudp (Xray-core)"
19241932 msgstr ""
19251933
@@ -1935,57 +1943,57 @@ msgstr ""
19351943 msgid "ZeroSSL"
19361944 msgstr ""
19371945
1938-#: htdocs/luci-static/resources/view/homeproxy/node.js:1003
1946+#: htdocs/luci-static/resources/view/homeproxy/node.js:1005
19391947 #: htdocs/luci-static/resources/view/homeproxy/server.js:454
19401948 msgid "certificate"
19411949 msgstr ""
19421950
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
19451953 #: htdocs/luci-static/resources/view/homeproxy/server.js:337
19461954 #: htdocs/luci-static/resources/view/homeproxy/server.js:345
19471955 msgid "default"
19481956 msgstr ""
19491957
1950-#: htdocs/luci-static/resources/view/homeproxy/node.js:740
1958+#: htdocs/luci-static/resources/view/homeproxy/node.js:728
19511959 #: htdocs/luci-static/resources/view/homeproxy/server.js:223
19521960 msgid "gRPC"
19531961 msgstr ""
19541962
1955-#: htdocs/luci-static/resources/view/homeproxy/node.js:781
1963+#: htdocs/luci-static/resources/view/homeproxy/node.js:769
19561964 msgid "gRPC permit without stream"
19571965 msgstr ""
19581966
1959-#: htdocs/luci-static/resources/view/homeproxy/node.js:776
1967+#: htdocs/luci-static/resources/view/homeproxy/node.js:764
19601968 #: htdocs/luci-static/resources/view/homeproxy/server.js:250
19611969 msgid "gRPC service name"
19621970 msgstr ""
19631971
1964-#: htdocs/luci-static/resources/view/homeproxy/client.js:242
1972+#: htdocs/luci-static/resources/view/homeproxy/client.js:241
19651973 msgid "gVisor"
19661974 msgstr ""
19671975
1968-#: htdocs/luci-static/resources/view/homeproxy/node.js:1037
1976+#: htdocs/luci-static/resources/view/homeproxy/node.js:1039
19691977 msgid "iOS"
19701978 msgstr ""
19711979
19721980 #: htdocs/luci-static/resources/homeproxy.js:245
19731981 #: htdocs/luci-static/resources/homeproxy.js:263
19741982 #: 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
19771985 #: htdocs/luci-static/resources/view/homeproxy/server.js:113
19781986 msgid "non-empty value"
19791987 msgstr ""
19801988
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
19841992 msgid "none"
19851993 msgstr ""
19861994
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
19891997 msgid "packet addr (v2ray-core v5+)"
19901998 msgstr ""
19911999
@@ -1993,11 +2001,11 @@ msgstr ""
19932001 msgid "private key"
19942002 msgstr ""
19952003
1996-#: htdocs/luci-static/resources/view/homeproxy/node.js:1029
2004+#: htdocs/luci-static/resources/view/homeproxy/node.js:1031
19972005 msgid "uTLS fingerprint"
19982006 msgstr ""
19992007
2000-#: htdocs/luci-static/resources/view/homeproxy/node.js:1030
2008+#: htdocs/luci-static/resources/view/homeproxy/node.js:1032
20012009 msgid ""
20022010 "uTLS is a fork of \"crypto/tls\", which provides ClientHello fingerprinting "
20032011 "resistance."
@@ -2012,15 +2020,17 @@ msgstr ""
20122020 msgid "unique value"
20132021 msgstr ""
20142022
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
20162025 msgid "v1"
20172026 msgstr ""
20182027
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
20202030 msgid "v2"
20212031 msgstr ""
20222032
2023-#: htdocs/luci-static/resources/view/homeproxy/node.js:675
2033+#: htdocs/luci-static/resources/view/homeproxy/node.js:663
20242034 msgid "v3"
20252035 msgstr ""
20262036
@@ -2028,8 +2038,8 @@ msgstr ""
20282038 msgid "valid IP address"
20292039 msgstr ""
20302040
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
20332043 msgid "valid URL"
20342044 msgstr ""
20352045
@@ -2037,8 +2047,8 @@ msgstr ""
20372047 msgid "valid base64 key with %d characters"
20382048 msgstr ""
20392049
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
20422052 msgid "valid hostname"
20432053 msgstr ""
20442054
--- a/applications/luci-app-homeproxy/po/zh_Hans/homeproxy.po
+++ b/applications/luci-app-homeproxy/po/zh_Hans/homeproxy.po
@@ -12,19 +12,19 @@ msgstr ""
1212 msgid "%s log"
1313 msgstr "%s 日志"
1414
15-#: htdocs/luci-static/resources/view/homeproxy/node.js:1213
15+#: htdocs/luci-static/resources/view/homeproxy/node.js:1222
1616 msgid "%s nodes removed"
1717 msgstr "移除了 %s 个节点"
1818
19-#: htdocs/luci-static/resources/view/homeproxy/node.js:1032
19+#: htdocs/luci-static/resources/view/homeproxy/node.js:1034
2020 msgid "360"
2121 msgstr "360"
2222
23-#: htdocs/luci-static/resources/view/homeproxy/client.js:400
23+#: htdocs/luci-static/resources/view/homeproxy/client.js:393
2424 msgid "4 or 6. Not limited if empty."
2525 msgstr "4 或 6。留空不限制。"
2626
27-#: htdocs/luci-static/resources/view/homeproxy/node.js:999
27+#: htdocs/luci-static/resources/view/homeproxy/node.js:1001
2828 #: htdocs/luci-static/resources/view/homeproxy/server.js:450
2929 #: htdocs/luci-static/resources/view/homeproxy/server.js:466
3030 msgid "<strong>Save your configuration before uploading files!</strong>"
@@ -38,15 +38,15 @@ msgstr "接受没有代理协议标头的连接。"
3838 msgid "Accept no header"
3939 msgstr "接受空标头"
4040
41-#: htdocs/luci-static/resources/view/homeproxy/client.js:808
41+#: htdocs/luci-static/resources/view/homeproxy/client.js:801
4242 msgid "Access Control"
4343 msgstr "访问控制"
4444
45-#: htdocs/luci-static/resources/view/homeproxy/client.js:656
45+#: htdocs/luci-static/resources/view/homeproxy/client.js:649
4646 msgid "Add a DNS rule"
4747 msgstr "新增 DNS 规则"
4848
49-#: htdocs/luci-static/resources/view/homeproxy/client.js:568
49+#: htdocs/luci-static/resources/view/homeproxy/client.js:561
5050 msgid "Add a DNS server"
5151 msgstr "新增 DNS 服务器"
5252
@@ -54,11 +54,11 @@ msgstr "新增 DNS 服务器"
5454 msgid "Add a node"
5555 msgstr "新增节点"
5656
57-#: htdocs/luci-static/resources/view/homeproxy/client.js:310
57+#: htdocs/luci-static/resources/view/homeproxy/client.js:303
5858 msgid "Add a routing node"
5959 msgstr "新增路由节点"
6060
61-#: htdocs/luci-static/resources/view/homeproxy/client.js:385
61+#: htdocs/luci-static/resources/view/homeproxy/client.js:378
6262 msgid "Add a routing rule"
6363 msgstr "新增路由规则"
6464
@@ -66,16 +66,16 @@ msgstr "新增路由规则"
6666 msgid "Add a server"
6767 msgstr "新增服务器"
6868
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
7171 msgid "Address"
7272 msgstr "地址"
7373
74-#: htdocs/luci-static/resources/view/homeproxy/client.js:586
74+#: htdocs/luci-static/resources/view/homeproxy/client.js:579
7575 msgid "Address resolver"
7676 msgstr "地址解析器"
7777
78-#: htdocs/luci-static/resources/view/homeproxy/client.js:617
78+#: htdocs/luci-static/resources/view/homeproxy/client.js:610
7979 msgid "Address strategy"
8080 msgstr "地址解析策略"
8181
@@ -87,20 +87,20 @@ msgstr "阿里云公共 DNS(223.5.5.5)"
8787 msgid "All ports"
8888 msgstr "所有端口"
8989
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
9292 msgid "Allow insecure"
9393 msgstr "允许不安全连接"
9494
95-#: htdocs/luci-static/resources/view/homeproxy/node.js:953
95+#: htdocs/luci-static/resources/view/homeproxy/node.js:955
9696 msgid "Allow insecure connection at TLS client."
9797 msgstr "允许 TLS 客户端侧的不安全连接"
9898
99-#: htdocs/luci-static/resources/view/homeproxy/node.js:1140
99+#: htdocs/luci-static/resources/view/homeproxy/node.js:1149
100100 msgid "Allow insecure connection by default when add nodes from subscriptions."
101101 msgstr "从订阅获取节点时,默认允许不安全连接。"
102102
103-#: htdocs/luci-static/resources/view/homeproxy/node.js:832
103+#: htdocs/luci-static/resources/view/homeproxy/node.js:820
104104 #: htdocs/luci-static/resources/view/homeproxy/server.js:296
105105 msgid "Allowed payload size is in the request."
106106 msgstr "请求中允许的载荷大小。"
@@ -113,7 +113,7 @@ msgstr "已是最新版本"
113113 msgid "Already in updating."
114114 msgstr "已在更新中"
115115
116-#: htdocs/luci-static/resources/view/homeproxy/node.js:704
116+#: htdocs/luci-static/resources/view/homeproxy/node.js:692
117117 #: htdocs/luci-static/resources/view/homeproxy/server.js:212
118118 msgid "Alter ID"
119119 msgstr "额外 ID"
@@ -126,15 +126,15 @@ msgstr "替代 HTTP 端口"
126126 msgid "Alternative TLS port"
127127 msgstr "替代 HTTPS 端口"
128128
129-#: htdocs/luci-static/resources/view/homeproxy/node.js:1176
129+#: htdocs/luci-static/resources/view/homeproxy/node.js:1185
130130 msgid "An error occurred during updating subscriptions: %s"
131131 msgstr "更新订阅时发生错误:%s"
132132
133-#: htdocs/luci-static/resources/view/homeproxy/node.js:1033
133+#: htdocs/luci-static/resources/view/homeproxy/node.js:1035
134134 msgid "Android"
135135 msgstr "Android"
136136
137-#: htdocs/luci-static/resources/view/homeproxy/node.js:985
137+#: htdocs/luci-static/resources/view/homeproxy/node.js:987
138138 msgid "Append self-signed certificate"
139139 msgstr "追加自签名证书"
140140
@@ -151,16 +151,16 @@ msgstr "应用"
151151 msgid "Are you sure to allow insecure?"
152152 msgstr "确定要允许不安全连接吗?"
153153
154-#: htdocs/luci-static/resources/view/homeproxy/node.js:728
154+#: htdocs/luci-static/resources/view/homeproxy/node.js:716
155155 msgid "Authenticated length"
156156 msgstr "认证长度"
157157
158-#: htdocs/luci-static/resources/view/homeproxy/node.js:534
158+#: htdocs/luci-static/resources/view/homeproxy/node.js:522
159159 #: htdocs/luci-static/resources/view/homeproxy/server.js:153
160160 msgid "Authentication payload"
161161 msgstr "认证载荷"
162162
163-#: htdocs/luci-static/resources/view/homeproxy/node.js:525
163+#: htdocs/luci-static/resources/view/homeproxy/node.js:513
164164 #: htdocs/luci-static/resources/view/homeproxy/server.js:144
165165 msgid "Authentication type"
166166 msgstr "认证类型"
@@ -169,56 +169,56 @@ msgstr "认证类型"
169169 msgid "Auto configure firewall"
170170 msgstr "自动配置防火墙"
171171
172-#: htdocs/luci-static/resources/view/homeproxy/node.js:1093
172+#: htdocs/luci-static/resources/view/homeproxy/node.js:1102
173173 msgid "Auto update"
174174 msgstr "自动更新"
175175
176-#: htdocs/luci-static/resources/view/homeproxy/node.js:1094
176+#: htdocs/luci-static/resources/view/homeproxy/node.js:1103
177177 msgid "Auto update subscriptions, GeoIP and GeoSite."
178178 msgstr "自动更新订阅、GeoIP 和 GeoSite"
179179
180-#: htdocs/luci-static/resources/view/homeproxy/node.js:527
180+#: htdocs/luci-static/resources/view/homeproxy/node.js:515
181181 #: htdocs/luci-static/resources/view/homeproxy/server.js:146
182182 msgid "Base64"
183183 msgstr "Base64"
184184
185-#: htdocs/luci-static/resources/view/homeproxy/client.js:258
185+#: htdocs/luci-static/resources/view/homeproxy/client.js:252
186186 msgid "Based on google/gvisor (recommended)."
187187 msgstr "基于 google/gvisor(推荐)。"
188188
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
191191 msgid "Bind interface"
192192 msgstr "绑定接口"
193193
194-#: htdocs/luci-static/resources/view/homeproxy/client.js:822
194+#: htdocs/luci-static/resources/view/homeproxy/client.js:815
195195 msgid ""
196196 "Bind outbound traffic to specific interface. Leave empty to auto detect."
197197 msgstr "绑定出站流量至指定端口。留空自动检测。"
198198
199-#: htdocs/luci-static/resources/view/homeproxy/node.js:1129
199+#: htdocs/luci-static/resources/view/homeproxy/node.js:1138
200200 msgid "Blacklist mode"
201201 msgstr "黑名单模式"
202202
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
206206 msgid "Block"
207207 msgstr "封锁"
208208
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
211211 msgid "Block DNS queries"
212212 msgstr "封锁 DNS 请求"
213213
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
217217 #: htdocs/luci-static/resources/view/homeproxy/server.js:512
218218 msgid "Both"
219219 msgstr "全部"
220220
221-#: htdocs/luci-static/resources/view/homeproxy/client.js:272
221+#: htdocs/luci-static/resources/view/homeproxy/client.js:265
222222 msgid "Bypass CN traffic"
223223 msgstr "绕过中国流量"
224224
@@ -226,7 +226,7 @@ msgstr "绕过中国流量"
226226 msgid "Bypass mainland China"
227227 msgstr "大陆白名单"
228228
229-#: htdocs/luci-static/resources/view/homeproxy/client.js:273
229+#: htdocs/luci-static/resources/view/homeproxy/client.js:266
230230 msgid "Bypass mainland China traffic via firewall rules by default."
231231 msgstr "默认使用防火墙规则绕过中国大陆流量。"
232232
@@ -238,7 +238,7 @@ msgstr "CA 颁发机构"
238238 msgid "Cancel"
239239 msgstr "取消"
240240
241-#: htdocs/luci-static/resources/view/homeproxy/node.js:991
241+#: htdocs/luci-static/resources/view/homeproxy/node.js:993
242242 #: htdocs/luci-static/resources/view/homeproxy/server.js:441
243243 msgid "Certificate path"
244244 msgstr "证书路径"
@@ -259,11 +259,11 @@ msgstr "中国 IPv6 库版本"
259259 msgid "China list version"
260260 msgstr "中国域名列表版本"
261261
262-#: htdocs/luci-static/resources/view/homeproxy/node.js:1034
262+#: htdocs/luci-static/resources/view/homeproxy/node.js:1036
263263 msgid "Chrome"
264264 msgstr "Chrome"
265265
266-#: htdocs/luci-static/resources/view/homeproxy/node.js:977
266+#: htdocs/luci-static/resources/view/homeproxy/node.js:979
267267 #: htdocs/luci-static/resources/view/homeproxy/server.js:351
268268 msgid "Cipher suites"
269269 msgstr "密码套件"
@@ -297,60 +297,60 @@ msgstr "仅常用端口(绕过 P2P 流量)"
297297 msgid "Custom routing"
298298 msgstr "自定义路由"
299299
300-#: htdocs/luci-static/resources/view/homeproxy/client.js:695
300+#: htdocs/luci-static/resources/view/homeproxy/client.js:688
301301 msgid "DNS"
302302 msgstr "DNS"
303303
304-#: htdocs/luci-static/resources/view/homeproxy/client.js:648
304+#: htdocs/luci-static/resources/view/homeproxy/client.js:641
305305 msgid "DNS Rules"
306306 msgstr "DNS 规则"
307307
308-#: htdocs/luci-static/resources/view/homeproxy/client.js:560
308+#: htdocs/luci-static/resources/view/homeproxy/client.js:553
309309 msgid "DNS Servers"
310310 msgstr "DNS 服务器"
311311
312-#: htdocs/luci-static/resources/view/homeproxy/client.js:524
312+#: htdocs/luci-static/resources/view/homeproxy/client.js:517
313313 msgid "DNS Settings"
314314 msgstr "DNS 设置"
315315
316-#: htdocs/luci-static/resources/view/homeproxy/client.js:656
316+#: htdocs/luci-static/resources/view/homeproxy/client.js:649
317317 msgid "DNS rule"
318318 msgstr "DNS 规则"
319319
320320 #: 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
322322 msgid "DNS server"
323323 msgstr "DNS 服务器"
324324
325325 #: 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
328328 msgid "Default"
329329 msgstr "默认"
330330
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
334334 msgid "Default DNS (issued by WAN)"
335335 msgstr "默认 DNS(由 WAN 下发)"
336336
337-#: htdocs/luci-static/resources/view/homeproxy/client.js:534
337+#: htdocs/luci-static/resources/view/homeproxy/client.js:527
338338 msgid "Default DNS server"
339339 msgstr "默认 DNS 服务器"
340340
341-#: htdocs/luci-static/resources/view/homeproxy/client.js:529
341+#: htdocs/luci-static/resources/view/homeproxy/client.js:522
342342 msgid "Default DNS strategy"
343343 msgstr "默认 DNS 解析策略"
344344
345-#: htdocs/luci-static/resources/view/homeproxy/client.js:624
345+#: htdocs/luci-static/resources/view/homeproxy/client.js:617
346346 msgid "Default domain strategy for resolving the domain names."
347347 msgstr "默认域名解析策略。"
348348
349-#: htdocs/luci-static/resources/view/homeproxy/client.js:282
349+#: htdocs/luci-static/resources/view/homeproxy/client.js:275
350350 msgid "Default outbound"
351351 msgstr "默认出站"
352352
353-#: htdocs/luci-static/resources/view/homeproxy/node.js:1147
353+#: htdocs/luci-static/resources/view/homeproxy/node.js:1156
354354 msgid "Default packet encoding"
355355 msgstr "默认包封装格式"
356356
@@ -358,42 +358,42 @@ msgstr "默认包封装格式"
358358 msgid "Default server name"
359359 msgstr "默认服务器名称"
360360
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
366366 #: htdocs/luci-static/resources/view/homeproxy/node.js:430
367367 msgid "Direct"
368368 msgstr "直连"
369369
370-#: htdocs/luci-static/resources/view/homeproxy/client.js:957
370+#: htdocs/luci-static/resources/view/homeproxy/client.js:950
371371 msgid "Direct Domain List"
372372 msgstr "直连域名列表"
373373
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
376376 msgid "Direct IPv4 IP-s"
377377 msgstr "直连 IPv4 地址"
378378
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
381381 msgid "Direct IPv6 IP-s"
382382 msgstr "直连 IPv6 地址"
383383
384384 #: htdocs/luci-static/resources/view/homeproxy/client.js:139
385385 #: 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
392392 #: htdocs/luci-static/resources/view/homeproxy/server.js:145
393393 msgid "Disable"
394394 msgstr "禁用"
395395
396-#: htdocs/luci-static/resources/view/homeproxy/client.js:551
396+#: htdocs/luci-static/resources/view/homeproxy/client.js:544
397397 msgid "Disable DNS cache"
398398 msgstr "禁用 DNS 缓存"
399399
@@ -401,7 +401,7 @@ msgstr "禁用 DNS 缓存"
401401 msgid "Disable HTTP challenge"
402402 msgstr "禁用 HTTP 验证"
403403
404-#: htdocs/luci-static/resources/view/homeproxy/node.js:568
404+#: htdocs/luci-static/resources/view/homeproxy/node.js:556
405405 #: htdocs/luci-static/resources/view/homeproxy/server.js:184
406406 msgid "Disable Path MTU discovery"
407407 msgstr "禁用路径 MTU 探测"
@@ -410,23 +410,23 @@ msgstr "禁用路径 MTU 探测"
410410 msgid "Disable TLS ALPN challenge"
411411 msgstr "禁用 TLS ALPN 认证"
412412
413-#: htdocs/luci-static/resources/view/homeproxy/client.js:801
413+#: htdocs/luci-static/resources/view/homeproxy/client.js:794
414414 msgid "Disable cache and save cache in this query."
415415 msgstr "在本次查询中禁用缓存。"
416416
417-#: htdocs/luci-static/resources/view/homeproxy/client.js:554
417+#: htdocs/luci-static/resources/view/homeproxy/client.js:547
418418 msgid "Disable cache expire"
419419 msgstr "缓存永不过期"
420420
421-#: htdocs/luci-static/resources/view/homeproxy/client.js:800
421+#: htdocs/luci-static/resources/view/homeproxy/client.js:793
422422 msgid "Disable dns cache"
423423 msgstr "禁用 DNS 缓存"
424424
425-#: htdocs/luci-static/resources/view/homeproxy/node.js:1013
425+#: htdocs/luci-static/resources/view/homeproxy/node.js:1015
426426 msgid "Disable dynamic record sizing"
427427 msgstr "禁用动态记录大小"
428428
429-#: htdocs/luci-static/resources/view/homeproxy/node.js:569
429+#: htdocs/luci-static/resources/view/homeproxy/node.js:557
430430 #: htdocs/luci-static/resources/view/homeproxy/server.js:185
431431 msgid ""
432432 "Disables Path MTU Discovery (RFC 8899). Packets will then be at most 1252 "
@@ -435,28 +435,28 @@ msgstr ""
435435 "禁用路径 MTU 发现 (RFC 8899)。 数据包的大小最多为 1252 (IPv4) / 1232 (IPv6) "
436436 "字节。"
437437
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
440440 msgid "Domain keyword"
441441 msgstr "域名关键词"
442442
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
445445 msgid "Domain name"
446446 msgstr "域名"
447447
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
450450 msgid "Domain regex"
451451 msgstr "域名正则表达式"
452452
453-#: htdocs/luci-static/resources/view/homeproxy/client.js:331
453+#: htdocs/luci-static/resources/view/homeproxy/client.js:324
454454 #: htdocs/luci-static/resources/view/homeproxy/server.js:491
455455 msgid "Domain strategy"
456456 msgstr "域名解析策略"
457457
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
460460 msgid "Domain suffix"
461461 msgstr "域名后缀"
462462
@@ -464,7 +464,7 @@ msgstr "域名后缀"
464464 msgid "Domains"
465465 msgstr "域名"
466466
467-#: htdocs/luci-static/resources/view/homeproxy/node.js:1135
467+#: htdocs/luci-static/resources/view/homeproxy/node.js:1144
468468 msgid ""
469469 "Drop/keep nodes that contain the specific keywords. <a target=\"_blank\" "
470470 "href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/"
@@ -474,7 +474,7 @@ msgstr ""
474474 "developer.mozilla.org/zh-CN/docs/Web/JavaScript/Guide/Regular_Expressions\">"
475475 "正则表达式</a>。"
476476
477-#: htdocs/luci-static/resources/view/homeproxy/node.js:1127
477+#: htdocs/luci-static/resources/view/homeproxy/node.js:1136
478478 msgid "Drop/keep specific nodes from subscriptions."
479479 msgstr "从订阅中 丢弃/保留 指定节点"
480480
@@ -489,7 +489,7 @@ msgstr ""
489489 "<br/>外部帐户绑定“用于将 ACME 帐户与非 ACME 系统中的现有帐户相关联,例如 CA "
490490 "客户数据库。"
491491
492-#: htdocs/luci-static/resources/view/homeproxy/node.js:1008
492+#: htdocs/luci-static/resources/view/homeproxy/node.js:1010
493493 msgid ""
494494 "ECH (Encrypted Client Hello) is a TLS extension that allows a client to "
495495 "encrypt the first part of its ClientHello message."
@@ -497,16 +497,16 @@ msgstr ""
497497 "ECH(Encrypted Client Hello)是一个 TLS 扩展,它允许客户端加密其 ClientHello "
498498 "信息的第一部分。"
499499
500-#: htdocs/luci-static/resources/view/homeproxy/node.js:1023
500+#: htdocs/luci-static/resources/view/homeproxy/node.js:1025
501501 msgid "ECH config"
502502 msgstr "ECH 配置"
503503
504-#: htdocs/luci-static/resources/view/homeproxy/node.js:831
504+#: htdocs/luci-static/resources/view/homeproxy/node.js:819
505505 #: htdocs/luci-static/resources/view/homeproxy/server.js:295
506506 msgid "Early data"
507507 msgstr "前置数据"
508508
509-#: htdocs/luci-static/resources/view/homeproxy/node.js:838
509+#: htdocs/luci-static/resources/view/homeproxy/node.js:826
510510 #: htdocs/luci-static/resources/view/homeproxy/server.js:302
511511 msgid "Early data header name"
512512 msgstr "前置数据标头"
@@ -515,7 +515,7 @@ msgstr "前置数据标头"
515515 msgid "Early data is sent in path instead of header by default."
516516 msgstr "前置数据默认发送在路径而不是标头中。"
517517
518-#: htdocs/luci-static/resources/view/homeproxy/node.js:1035
518+#: htdocs/luci-static/resources/view/homeproxy/node.js:1037
519519 msgid "Edge"
520520 msgstr "Edge"
521521
@@ -531,10 +531,10 @@ msgstr "修改服务器"
531531 msgid "Email"
532532 msgstr "Email"
533533
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
538538 #: htdocs/luci-static/resources/view/homeproxy/server.js:30
539539 #: htdocs/luci-static/resources/view/homeproxy/server.js:51
540540 msgid "Enable"
@@ -544,20 +544,20 @@ msgstr "启用"
544544 msgid "Enable ACME"
545545 msgstr "启用 ACME"
546546
547-#: htdocs/luci-static/resources/view/homeproxy/node.js:1007
547+#: htdocs/luci-static/resources/view/homeproxy/node.js:1009
548548 msgid "Enable ECH"
549549 msgstr "启用 ECH"
550550
551-#: htdocs/luci-static/resources/view/homeproxy/node.js:1018
551+#: htdocs/luci-static/resources/view/homeproxy/node.js:1020
552552 msgid "Enable PQ signature schemes"
553553 msgstr "启用 PQ 签名方案。"
554554
555-#: htdocs/luci-static/resources/view/homeproxy/node.js:1077
555+#: htdocs/luci-static/resources/view/homeproxy/node.js:1079
556556 #: htdocs/luci-static/resources/view/homeproxy/server.js:482
557557 msgid "Enable UDP fragmentation."
558558 msgstr "启用 UDP 分片"
559559
560-#: htdocs/luci-static/resources/view/homeproxy/client.js:265
560+#: htdocs/luci-static/resources/view/homeproxy/client.js:259
561561 msgid "Enable endpoint-independent NAT"
562562 msgstr "启用端点独立 NAT"
563563
@@ -565,14 +565,14 @@ msgstr "启用端点独立 NAT"
565565 msgid "Enable tcp fast open for listener."
566566 msgstr "为监听器启用 TCP 快速打开。"
567567
568-#: htdocs/luci-static/resources/view/homeproxy/node.js:1082
568+#: htdocs/luci-static/resources/view/homeproxy/node.js:1084
569569 msgid ""
570570 "Enable the SUoT protocol, requires server support. Conflict with multiplex."
571571 msgstr "启用 SUoT 协议,需要服务端支持。与多路复用冲突。"
572572
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
576576 #: htdocs/luci-static/resources/view/homeproxy/server.js:192
577577 msgid "Encrypt method"
578578 msgstr "加密方式"
@@ -589,13 +589,13 @@ msgstr "加密方式"
589589 #: htdocs/luci-static/resources/view/homeproxy/client.js:175
590590 #: htdocs/luci-static/resources/view/homeproxy/client.js:203
591591 #: 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
594594 #: 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
599599 #: htdocs/luci-static/resources/view/homeproxy/server.js:113
600600 #: htdocs/luci-static/resources/view/homeproxy/server.js:384
601601 #: htdocs/luci-static/resources/view/homeproxy/server.js:386
@@ -618,24 +618,24 @@ msgstr "外部账户密钥标识符"
618618 msgid "Failed to upload %s, error: %s."
619619 msgstr "上传 %s 失败,错误:%s。"
620620
621-#: htdocs/luci-static/resources/view/homeproxy/node.js:1134
621+#: htdocs/luci-static/resources/view/homeproxy/node.js:1143
622622 msgid "Filter keywords"
623623 msgstr "过滤关键词"
624624
625-#: htdocs/luci-static/resources/view/homeproxy/node.js:1126
625+#: htdocs/luci-static/resources/view/homeproxy/node.js:1135
626626 msgid "Filter nodes"
627627 msgstr "过滤节点"
628628
629-#: htdocs/luci-static/resources/view/homeproxy/node.js:1036
629+#: htdocs/luci-static/resources/view/homeproxy/node.js:1038
630630 msgid "Firefox"
631631 msgstr "Firefox"
632632
633-#: htdocs/luci-static/resources/view/homeproxy/node.js:698
633+#: htdocs/luci-static/resources/view/homeproxy/node.js:686
634634 #: htdocs/luci-static/resources/view/homeproxy/server.js:206
635635 msgid "Flow"
636636 msgstr "流控"
637637
638-#: htdocs/luci-static/resources/view/homeproxy/node.js:800
638+#: htdocs/luci-static/resources/view/homeproxy/node.js:788
639639 msgid "GET"
640640 msgstr "GET"
641641
@@ -647,15 +647,15 @@ msgstr "GFW 域名列表版本"
647647 msgid "GFWList"
648648 msgstr "GFWList"
649649
650-#: htdocs/luci-static/resources/view/homeproxy/client.js:881
650+#: htdocs/luci-static/resources/view/homeproxy/client.js:874
651651 msgid "Gaming mode IPv4 IP-s"
652652 msgstr "游戏模式 IPv4 地址"
653653
654-#: htdocs/luci-static/resources/view/homeproxy/client.js:887
654+#: htdocs/luci-static/resources/view/homeproxy/client.js:880
655655 msgid "Gaming mode IPv6 IP-s"
656656 msgstr "游戏模式 IPv6 IP-s"
657657
658-#: htdocs/luci-static/resources/view/homeproxy/client.js:458
658+#: htdocs/luci-static/resources/view/homeproxy/client.js:451
659659 msgid "GeoIP"
660660 msgstr "GeoIP"
661661
@@ -667,8 +667,8 @@ msgstr "GeoIP 版本"
667667 msgid "GeoSite version"
668668 msgstr "GeoSite 版本"
669669
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
672672 msgid "Geosite"
673673 msgstr "Geosite"
674674
@@ -676,11 +676,11 @@ msgstr "Geosite"
676676 msgid "Global"
677677 msgstr "全局"
678678
679-#: htdocs/luci-static/resources/view/homeproxy/client.js:894
679+#: htdocs/luci-static/resources/view/homeproxy/client.js:887
680680 msgid "Global proxy IPv4 IP-s"
681681 msgstr "全局代理 IPv4 IP-s"
682682
683-#: htdocs/luci-static/resources/view/homeproxy/client.js:901
683+#: htdocs/luci-static/resources/view/homeproxy/client.js:894
684684 msgid "Global proxy IPv6 IP-s"
685685 msgstr "全局代理 IPv6 IP-s"
686686
@@ -696,10 +696,10 @@ msgstr "谷歌公共 DNS(8.8.8.8)"
696696 msgid "Grant access to homeproxy configuration"
697697 msgstr "授予 homeproxy 访问 UCI 配置的权限"
698698
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
701701 #: 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
703703 #: htdocs/luci-static/resources/view/homeproxy/server.js:57
704704 #: htdocs/luci-static/resources/view/homeproxy/server.js:224
705705 msgid "HTTP"
@@ -712,8 +712,8 @@ msgstr "HTTP"
712712 msgid "HomeProxy"
713713 msgstr "HomeProxy"
714714
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
717717 #: htdocs/luci-static/resources/view/homeproxy/server.js:257
718718 #: htdocs/luci-static/resources/view/homeproxy/server.js:287
719719 msgid "Host"
@@ -724,16 +724,16 @@ msgstr "主机名"
724724 msgid "Hysteria"
725725 msgstr "Hysteria"
726726
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
729729 msgid "IP CIDR"
730730 msgstr "IP CIDR"
731731
732-#: htdocs/luci-static/resources/view/homeproxy/client.js:399
732+#: htdocs/luci-static/resources/view/homeproxy/client.js:392
733733 msgid "IP version"
734734 msgstr "IP 版本"
735735
736-#: htdocs/luci-static/resources/view/homeproxy/client.js:401
736+#: htdocs/luci-static/resources/view/homeproxy/client.js:394
737737 msgid "IPv4"
738738 msgstr "IPv4"
739739
@@ -741,7 +741,7 @@ msgstr "IPv4"
741741 msgid "IPv4 only"
742742 msgstr "仅 IPv4"
743743
744-#: htdocs/luci-static/resources/view/homeproxy/client.js:402
744+#: htdocs/luci-static/resources/view/homeproxy/client.js:395
745745 msgid "IPv6"
746746 msgstr "IPv6"
747747
@@ -749,16 +749,16 @@ msgstr "IPv6"
749749 msgid "IPv6 only"
750750 msgstr "仅 IPv6"
751751
752-#: htdocs/luci-static/resources/view/homeproxy/client.js:229
752+#: htdocs/luci-static/resources/view/homeproxy/client.js:228
753753 msgid "IPv6 support"
754754 msgstr "IPv6 支持"
755755
756-#: htdocs/luci-static/resources/view/homeproxy/node.js:805
756+#: htdocs/luci-static/resources/view/homeproxy/node.js:793
757757 #: htdocs/luci-static/resources/view/homeproxy/server.js:270
758758 msgid "Idle timeout"
759759 msgstr "空闲超时"
760760
761-#: htdocs/luci-static/resources/view/homeproxy/node.js:782
761+#: htdocs/luci-static/resources/view/homeproxy/node.js:770
762762 msgid ""
763763 "If enabled, the client transport sends keepalive pings even with no active "
764764 "connections."
@@ -769,14 +769,14 @@ msgid ""
769769 "If set, the requested domain name will be resolved to IP before routing."
770770 msgstr "如果设置,请求的域名将在路由前被解析为 IP 地址。"
771771
772-#: htdocs/luci-static/resources/view/homeproxy/client.js:332
772+#: htdocs/luci-static/resources/view/homeproxy/client.js:325
773773 msgid ""
774774 "If set, the server domain name will be resolved to IP before connecting.<br/"
775775 ">dns.strategy will be used if empty."
776776 msgstr ""
777777 "如果设置,服务器域名将在连接前被解析为 IP。<br/>默认使用 dns.strategy。"
778778
779-#: htdocs/luci-static/resources/view/homeproxy/node.js:767
779+#: htdocs/luci-static/resources/view/homeproxy/node.js:755
780780 #: htdocs/luci-static/resources/view/homeproxy/server.js:242
781781 msgid ""
782782 "If the transport doesn't see any activity after a duration of this time, it "
@@ -785,7 +785,7 @@ msgstr ""
785785 "如果传输在此时间段后没有看到任何活动,它会向客户端发送 ping 请求以检查连接是"
786786 "否仍然活动。"
787787
788-#: htdocs/luci-static/resources/view/homeproxy/node.js:986
788+#: htdocs/luci-static/resources/view/homeproxy/node.js:988
789789 msgid ""
790790 "If you have the root certificate, use this option instead of allowing "
791791 "insecure."
@@ -801,17 +801,17 @@ msgstr "导入"
801801 msgid "Import share links"
802802 msgstr "导入分享链接"
803803
804-#: htdocs/luci-static/resources/view/homeproxy/client.js:814
804+#: htdocs/luci-static/resources/view/homeproxy/client.js:807
805805 msgid "Interface Control"
806806 msgstr "接口控制"
807807
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
810810 msgid "Invert"
811811 msgstr "反转"
812812
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
815815 msgid "Invert match result."
816816 msgstr "反转匹配结果"
817817
@@ -819,24 +819,24 @@ msgstr "反转匹配结果"
819819 msgid "Key path"
820820 msgstr "证书路径"
821821
822-#: htdocs/luci-static/resources/view/homeproxy/client.js:828
822+#: htdocs/luci-static/resources/view/homeproxy/client.js:821
823823 msgid "LAN IP Policy"
824824 msgstr "LAN IP 策略"
825825
826-#: htdocs/luci-static/resources/view/homeproxy/client.js:244
826+#: htdocs/luci-static/resources/view/homeproxy/client.js:243
827827 msgid "LWIP"
828828 msgstr "LWIP"
829829
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
834834 #: htdocs/luci-static/resources/view/homeproxy/node.js:424
835835 #: htdocs/luci-static/resources/view/homeproxy/server.js:45
836836 msgid "Label"
837837 msgstr "标签"
838838
839-#: htdocs/luci-static/resources/view/homeproxy/node.js:705
839+#: htdocs/luci-static/resources/view/homeproxy/node.js:693
840840 #: htdocs/luci-static/resources/view/homeproxy/server.js:213
841841 msgid ""
842842 "Legacy protocol support (VMess MD5 Authentication) is provided for "
@@ -845,7 +845,7 @@ msgstr ""
845845 "提供旧协议支持(VMess MD5 身份验证)仅出于兼容性目的,不建议使用 alterId > "
846846 "1。"
847847
848-#: htdocs/luci-static/resources/view/homeproxy/client.js:262
848+#: htdocs/luci-static/resources/view/homeproxy/client.js:256
849849 msgid "Less compatibility and sometimes better performance."
850850 msgstr "有时性能更好。"
851851
@@ -853,17 +853,17 @@ msgstr "有时性能更好。"
853853 msgid "Let's Encrypt"
854854 msgstr "Let's Encrypt"
855855
856-#: htdocs/luci-static/resources/view/homeproxy/node.js:855
856+#: htdocs/luci-static/resources/view/homeproxy/node.js:843
857857 msgid ""
858858 "List of IP (v4 or v6) addresses prefixes to be assigned to the interface."
859859 msgstr "分配给接口的 IP(v4 或 v6)地址前缀列表。"
860860
861-#: htdocs/luci-static/resources/view/homeproxy/node.js:948
861+#: htdocs/luci-static/resources/view/homeproxy/node.js:950
862862 #: htdocs/luci-static/resources/view/homeproxy/server.js:331
863863 msgid "List of supported application level protocols, in order of preference."
864864 msgstr "支持的应用层协议协商列表,按顺序排列。"
865865
866-#: htdocs/luci-static/resources/view/homeproxy/client.js:816
866+#: htdocs/luci-static/resources/view/homeproxy/client.js:809
867867 msgid "Listen interfaces"
868868 msgstr "监听接口"
869869
@@ -871,7 +871,7 @@ msgstr "监听接口"
871871 msgid "Loading"
872872 msgstr "加载中"
873873
874-#: htdocs/luci-static/resources/view/homeproxy/node.js:854
874+#: htdocs/luci-static/resources/view/homeproxy/node.js:842
875875 msgid "Local address"
876876 msgstr "本地地址"
877877
@@ -883,7 +883,7 @@ msgstr "日志文件不存在。"
883883 msgid "Log is empty."
884884 msgstr "日志为空。"
885885
886-#: htdocs/luci-static/resources/view/homeproxy/node.js:881
886+#: htdocs/luci-static/resources/view/homeproxy/node.js:869
887887 msgid "MTU"
888888 msgstr "MTU"
889889
@@ -895,119 +895,119 @@ msgstr "主 UDP 节点"
895895 msgid "Main node"
896896 msgstr "主节点"
897897
898-#: htdocs/luci-static/resources/view/homeproxy/client.js:459
898+#: htdocs/luci-static/resources/view/homeproxy/client.js:452
899899 msgid "Match GeoIP."
900900 msgstr "匹配 GeoIP。"
901901
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
904904 msgid "Match IP CIDR."
905905 msgstr "匹配 IP CIDR。"
906906
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
909909 msgid "Match domain suffix."
910910 msgstr "匹配域名后缀。"
911911
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
914914 msgid "Match domain using keyword."
915915 msgstr "使用关键词匹配域名。"
916916
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
919919 msgid "Match domain using regular expression."
920920 msgstr "使用正则表达式匹配域名。"
921921
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
924924 msgid "Match full domain."
925925 msgstr "匹配完整域名。"
926926
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
929929 msgid "Match geosite."
930930 msgstr "匹配 geosite。"
931931
932-#: htdocs/luci-static/resources/view/homeproxy/client.js:766
932+#: htdocs/luci-static/resources/view/homeproxy/client.js:759
933933 msgid "Match outbound."
934934 msgstr "匹配出站。"
935935
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
938938 msgid "Match port range. Format as START:/:END/START:END."
939939 msgstr "匹配端口范围。格式为 START:/:END/START:END。"
940940
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
943943 msgid "Match port."
944944 msgstr "匹配端口。"
945945
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
948948 msgid "Match process name."
949949 msgstr "匹配进程名。"
950950
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
953953 msgid "Match process path."
954954 msgstr "匹配进程路径"
955955
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
958958 msgid "Match source GeoIP."
959959 msgstr "匹配源 GeoIP。"
960960
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
963963 msgid "Match source IP CIDR."
964964 msgstr "匹配源 IP CIDR。"
965965
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
968968 msgid "Match source port range. Format as START:/:END/START:END."
969969 msgstr "匹配源端口范围。格式为 START:/:END/START:END。"
970970
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
973973 msgid "Match source port."
974974 msgstr "匹配源端口。"
975975
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
978978 msgid "Match user name."
979979 msgstr "匹配用户名。"
980980
981-#: htdocs/luci-static/resources/view/homeproxy/node.js:544
981+#: htdocs/luci-static/resources/view/homeproxy/node.js:532
982982 #: htdocs/luci-static/resources/view/homeproxy/server.js:132
983983 msgid "Max download speed"
984984 msgstr "最大下载速度"
985985
986-#: htdocs/luci-static/resources/view/homeproxy/node.js:545
986+#: htdocs/luci-static/resources/view/homeproxy/node.js:533
987987 #: htdocs/luci-static/resources/view/homeproxy/server.js:133
988988 msgid "Max download speed in Mbps."
989989 msgstr "最大下载速度(Mbps)"
990990
991-#: htdocs/luci-static/resources/view/homeproxy/node.js:550
991+#: htdocs/luci-static/resources/view/homeproxy/node.js:538
992992 #: htdocs/luci-static/resources/view/homeproxy/server.js:138
993993 msgid "Max upload speed"
994994 msgstr "最大上传速度"
995995
996-#: htdocs/luci-static/resources/view/homeproxy/node.js:551
996+#: htdocs/luci-static/resources/view/homeproxy/node.js:539
997997 #: htdocs/luci-static/resources/view/homeproxy/server.js:139
998998 msgid "Max upload speed in Mbps."
999999 msgstr "最大上传速度(Mbps)"
10001000
1001-#: htdocs/luci-static/resources/view/homeproxy/node.js:969
1001+#: htdocs/luci-static/resources/view/homeproxy/node.js:971
10021002 #: htdocs/luci-static/resources/view/homeproxy/server.js:343
10031003 msgid "Maximum TLS version"
10041004 msgstr "最大 TLS 版本"
10051005
1006-#: htdocs/luci-static/resources/view/homeproxy/node.js:908
1006+#: htdocs/luci-static/resources/view/homeproxy/node.js:896
10071007 msgid "Maximum connections"
10081008 msgstr "最大连接数"
10091009
1010-#: htdocs/luci-static/resources/view/homeproxy/node.js:924
1010+#: htdocs/luci-static/resources/view/homeproxy/node.js:912
10111011 msgid ""
10121012 "Maximum multiplexed streams in a connection before opening a new connection."
10131013 "<br/>Conflict with <code>Maximum connections</code> and <code>Minimum "
@@ -1016,39 +1016,39 @@ msgstr ""
10161016 "在打开新连接之前,连接中的最大多路复用流数量。与 <code>Maximum connections</"
10171017 "code> 和 <code>Minimum streams</code> 冲突。"
10181018
1019-#: htdocs/luci-static/resources/view/homeproxy/node.js:923
1019+#: htdocs/luci-static/resources/view/homeproxy/node.js:911
10201020 msgid "Maximum streams"
10211021 msgstr "最大流数量"
10221022
1023-#: htdocs/luci-static/resources/view/homeproxy/node.js:799
1023+#: htdocs/luci-static/resources/view/homeproxy/node.js:787
10241024 #: htdocs/luci-static/resources/view/homeproxy/server.js:266
10251025 msgid "Method"
10261026 msgstr "方式"
10271027
1028-#: htdocs/luci-static/resources/view/homeproxy/node.js:961
1028+#: htdocs/luci-static/resources/view/homeproxy/node.js:963
10291029 #: htdocs/luci-static/resources/view/homeproxy/server.js:335
10301030 msgid "Minimum TLS version"
10311031 msgstr "最低 TLS 版本"
10321032
1033-#: htdocs/luci-static/resources/view/homeproxy/node.js:916
1033+#: htdocs/luci-static/resources/view/homeproxy/node.js:904
10341034 msgid ""
10351035 "Minimum multiplexed streams in a connection before opening a new connection."
10361036 msgstr "在打开新连接之前,连接中的最小多路复用流数量。"
10371037
1038-#: htdocs/luci-static/resources/view/homeproxy/node.js:915
1038+#: htdocs/luci-static/resources/view/homeproxy/node.js:903
10391039 msgid "Minimum streams"
10401040 msgstr "最小流数量"
10411041
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
10441044 msgid "Mode"
10451045 msgstr "模式"
10461046
1047-#: htdocs/luci-static/resources/view/homeproxy/node.js:890
1047+#: htdocs/luci-static/resources/view/homeproxy/node.js:878
10481048 msgid "Multiplex"
10491049 msgstr "多路复用"
10501050
1051-#: htdocs/luci-static/resources/view/homeproxy/node.js:898
1051+#: htdocs/luci-static/resources/view/homeproxy/node.js:886
10521052 msgid "Multiplex protocol."
10531053 msgstr "多路复用协议"
10541054
@@ -1056,7 +1056,7 @@ msgstr "多路复用协议"
10561056 msgid "NOT RUNNING"
10571057 msgstr "未运行"
10581058
1059-#: htdocs/luci-static/resources/view/homeproxy/node.js:1153
1059+#: htdocs/luci-static/resources/view/homeproxy/node.js:1162
10601060 msgid "NOTE: Save current settings before updating subscriptions."
10611061 msgstr "注意:更新订阅前先保存当前配置。"
10621062
@@ -1064,29 +1064,29 @@ msgstr "注意:更新订阅前先保存当前配置。"
10641064 msgid "NaïveProxy"
10651065 msgstr "NaïveProxy"
10661066
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
10691069 #: htdocs/luci-static/resources/view/homeproxy/server.js:509
10701070 msgid "Network"
10711071 msgstr "网络"
10721072
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
10751075 #: htdocs/luci-static/resources/view/homeproxy/server.js:221
10761076 #: htdocs/luci-static/resources/view/homeproxy/server.js:234
10771077 msgid "No TCP transport, plain HTTP is merged into the HTTP transport."
10781078 msgstr "无 TCP 传输层, 纯 HTTP 已合并到 HTTP 传输层。"
10791079
1080-#: htdocs/luci-static/resources/view/homeproxy/node.js:752
1080+#: htdocs/luci-static/resources/view/homeproxy/node.js:740
10811081 #: htdocs/luci-static/resources/view/homeproxy/server.js:232
10821082 msgid "No additional encryption support: It's basically duplicate encryption."
10831083 msgstr "无额外加密支持:它基本上是重复加密。"
10841084
1085-#: htdocs/luci-static/resources/view/homeproxy/node.js:1169
1085+#: htdocs/luci-static/resources/view/homeproxy/node.js:1178
10861086 msgid "No subscription available"
10871087 msgstr "无可用订阅"
10881088
1089-#: htdocs/luci-static/resources/view/homeproxy/node.js:1194
1089+#: htdocs/luci-static/resources/view/homeproxy/node.js:1203
10901090 msgid "No subscription node"
10911091 msgstr "无订阅节点"
10921092
@@ -1094,7 +1094,7 @@ msgstr "无订阅节点"
10941094 msgid "No valid share link found."
10951095 msgstr "找不到有效分享链接。"
10961096
1097-#: htdocs/luci-static/resources/view/homeproxy/client.js:324
1097+#: htdocs/luci-static/resources/view/homeproxy/client.js:317
10981098 #: htdocs/luci-static/resources/view/homeproxy/node.js:310
10991099 msgid "Node"
11001100 msgstr "节点"
@@ -1107,28 +1107,28 @@ msgstr "节点设置"
11071107 msgid "Nodes"
11081108 msgstr "节点"
11091109
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
11131113 #: htdocs/luci-static/resources/view/homeproxy/server.js:207
11141114 #: htdocs/luci-static/resources/view/homeproxy/server.js:222
11151115 msgid "None"
11161116 msgstr "无"
11171117
1118-#: htdocs/luci-static/resources/view/homeproxy/node.js:656
1118+#: htdocs/luci-static/resources/view/homeproxy/node.js:644
11191119 msgid "Obfs"
11201120 msgstr "混淆协议"
11211121
1122-#: htdocs/luci-static/resources/view/homeproxy/node.js:666
1122+#: htdocs/luci-static/resources/view/homeproxy/node.js:654
11231123 msgid "Obfs param"
11241124 msgstr "混淆参数"
11251125
1126-#: htdocs/luci-static/resources/view/homeproxy/node.js:540
1126+#: htdocs/luci-static/resources/view/homeproxy/node.js:528
11271127 #: htdocs/luci-static/resources/view/homeproxy/server.js:159
11281128 msgid "Obfuscate password"
11291129 msgstr "混淆密码"
11301130
1131-#: htdocs/luci-static/resources/view/homeproxy/client.js:817
1131+#: htdocs/luci-static/resources/view/homeproxy/client.js:810
11321132 msgid "Only process traffic from specific interfaces. Leave empty for all."
11331133 msgstr "只处理来自指定接口的流量。留空表示全部。"
11341134
@@ -1136,32 +1136,32 @@ msgstr "只处理来自指定接口的流量。留空表示全部。"
11361136 msgid "Only proxy mainland China"
11371137 msgstr "仅代理中国大陆"
11381138
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
11431143 msgid "Outbound"
11441144 msgstr "出站"
11451145
1146-#: htdocs/luci-static/resources/view/homeproxy/client.js:325
1146+#: htdocs/luci-static/resources/view/homeproxy/client.js:318
11471147 msgid "Outbound node"
11481148 msgstr "出站节点"
11491149
1150-#: htdocs/luci-static/resources/view/homeproxy/client.js:277
1150+#: htdocs/luci-static/resources/view/homeproxy/client.js:270
11511151 #: htdocs/luci-static/resources/view/homeproxy/server.js:487
11521152 msgid "Override destination"
11531153 msgstr "覆盖目标地址"
11541154
1155-#: htdocs/luci-static/resources/view/homeproxy/client.js:278
1155+#: htdocs/luci-static/resources/view/homeproxy/client.js:271
11561156 #: htdocs/luci-static/resources/view/homeproxy/server.js:488
11571157 msgid "Override the connection destination address with the sniffed domain."
11581158 msgstr "使用嗅探到的域名覆盖连接目标。"
11591159
1160-#: htdocs/luci-static/resources/view/homeproxy/node.js:801
1160+#: htdocs/luci-static/resources/view/homeproxy/node.js:789
11611161 msgid "PUT"
11621162 msgstr "PUT"
11631163
1164-#: htdocs/luci-static/resources/view/homeproxy/node.js:844
1164+#: htdocs/luci-static/resources/view/homeproxy/node.js:832
11651165 msgid "Packet encoding"
11661166 msgstr "数据包编码"
11671167
@@ -1169,44 +1169,44 @@ msgstr "数据包编码"
11691169 msgid "Parse Proxy Protocol in the connection header."
11701170 msgstr "解析连接标头中的代理协议。"
11711171
1172-#: htdocs/luci-static/resources/view/homeproxy/node.js:471
1172+#: htdocs/luci-static/resources/view/homeproxy/node.js:459
11731173 #: htdocs/luci-static/resources/view/homeproxy/server.js:93
11741174 msgid "Password"
11751175 msgstr "密码"
11761176
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
11791179 #: htdocs/luci-static/resources/view/homeproxy/server.js:262
11801180 #: htdocs/luci-static/resources/view/homeproxy/server.js:291
11811181 msgid "Path"
11821182 msgstr "路径"
11831183
1184-#: htdocs/luci-static/resources/view/homeproxy/node.js:868
1184+#: htdocs/luci-static/resources/view/homeproxy/node.js:856
11851185 msgid "Peer pubkic key"
11861186 msgstr "对端公钥"
11871187
1188-#: htdocs/luci-static/resources/view/homeproxy/client.js:266
1188+#: htdocs/luci-static/resources/view/homeproxy/client.js:260
11891189 msgid ""
11901190 "Performance may degrade slightly, so it is not recommended to enable on when "
11911191 "it is not needed."
11921192 msgstr "性能可能会略有下降,建议仅在需要时开启。"
11931193
1194-#: htdocs/luci-static/resources/view/homeproxy/node.js:813
1194+#: htdocs/luci-static/resources/view/homeproxy/node.js:801
11951195 #: htdocs/luci-static/resources/view/homeproxy/server.js:278
11961196 msgid "Ping timeout"
11971197 msgstr "Ping 超时"
11981198
1199-#: htdocs/luci-static/resources/view/homeproxy/node.js:594
1199+#: htdocs/luci-static/resources/view/homeproxy/node.js:582
12001200 msgid "Plugin"
12011201 msgstr "插件"
12021202
1203-#: htdocs/luci-static/resources/view/homeproxy/node.js:601
1203+#: htdocs/luci-static/resources/view/homeproxy/node.js:589
12041204 msgid "Plugin opts"
12051205 msgstr "插件参数"
12061206
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
12101210 #: htdocs/luci-static/resources/view/homeproxy/server.js:81
12111211 msgid "Port"
12121212 msgstr "端口"
@@ -1215,12 +1215,12 @@ msgstr "端口"
12151215 msgid "Port %s alrealy exists!"
12161216 msgstr "端口 %s 已存在!"
12171217
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
12201220 msgid "Port range"
12211221 msgstr "端口范围"
12221222
1223-#: htdocs/luci-static/resources/view/homeproxy/node.js:874
1223+#: htdocs/luci-static/resources/view/homeproxy/node.js:862
12241224 msgid "Pre-shared key"
12251225 msgstr "预共享密钥"
12261226
@@ -1232,66 +1232,66 @@ msgstr "优先 IPv4"
12321232 msgid "Prefer IPv6"
12331233 msgstr "优先 IPv6"
12341234
1235-#: htdocs/luci-static/resources/view/homeproxy/node.js:861
1235+#: htdocs/luci-static/resources/view/homeproxy/node.js:849
12361236 msgid "Private key"
12371237 msgstr "私钥"
12381238
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
12411241 msgid "Process name"
12421242 msgstr "进程名"
12431243
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
12461246 msgid "Process path"
12471247 msgstr "进程路径"
12481248
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
12541254 #: htdocs/luci-static/resources/view/homeproxy/server.js:121
12551255 msgid "Protocol"
12561256 msgstr "协议"
12571257
1258-#: htdocs/luci-static/resources/view/homeproxy/node.js:652
1258+#: htdocs/luci-static/resources/view/homeproxy/node.js:640
12591259 msgid "Protocol param"
12601260 msgstr "协议参数"
12611261
1262-#: htdocs/luci-static/resources/view/homeproxy/node.js:729
1262+#: htdocs/luci-static/resources/view/homeproxy/node.js:717
12631263 msgid "Protocol parameter. Enable length block encryption."
12641264 msgstr "协议参数。启用长度块加密。"
12651265
1266-#: htdocs/luci-static/resources/view/homeproxy/node.js:722
1266+#: htdocs/luci-static/resources/view/homeproxy/node.js:710
12671267 msgid ""
12681268 "Protocol parameter. Will waste traffic randomly if enabled (enabled by "
12691269 "default in v2ray and cannot be disabled)."
12701270 msgstr "协议参数。 如启用会随机浪费流量(在 v2ray 中默认启用并且无法禁用)。"
12711271
1272-#: htdocs/luci-static/resources/view/homeproxy/client.js:928
1272+#: htdocs/luci-static/resources/view/homeproxy/client.js:921
12731273 msgid "Proxy Domain List"
12741274 msgstr "代理域名列表"
12751275
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
12781278 msgid "Proxy IPv4 IP-s"
12791279 msgstr "代理 IPv4 地址"
12801280
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
12831283 msgid "Proxy IPv6 IP-s"
12841284 msgstr "代理 IPv6 地址"
12851285
1286-#: htdocs/luci-static/resources/view/homeproxy/client.js:847
1286+#: htdocs/luci-static/resources/view/homeproxy/client.js:840
12871287 msgid "Proxy all except listed"
12881288 msgstr "仅允许列表外"
12891289
1290-#: htdocs/luci-static/resources/view/homeproxy/client.js:844
1290+#: htdocs/luci-static/resources/view/homeproxy/client.js:837
12911291 msgid "Proxy filter mode"
12921292 msgstr "代理过滤模式"
12931293
1294-#: htdocs/luci-static/resources/view/homeproxy/client.js:846
1294+#: htdocs/luci-static/resources/view/homeproxy/client.js:839
12951295 msgid "Proxy listed only"
12961296 msgstr "仅允许列表内"
12971297
@@ -1299,23 +1299,23 @@ msgstr "仅允许列表内"
12991299 msgid "Proxy mode"
13001300 msgstr "代理模式"
13011301
1302-#: htdocs/luci-static/resources/view/homeproxy/node.js:505
1302+#: htdocs/luci-static/resources/view/homeproxy/node.js:493
13031303 #: htdocs/luci-static/resources/view/homeproxy/server.js:497
13041304 msgid "Proxy protocol"
13051305 msgstr "代理协议"
13061306
1307-#: htdocs/luci-static/resources/view/homeproxy/node.js:1038
1307+#: htdocs/luci-static/resources/view/homeproxy/node.js:1040
13081308 msgid "QQ"
13091309 msgstr "QQ"
13101310
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
13141314 #: htdocs/luci-static/resources/view/homeproxy/server.js:225
13151315 msgid "QUIC"
13161316 msgstr "QUIC"
13171317
1318-#: htdocs/luci-static/resources/view/homeproxy/node.js:562
1318+#: htdocs/luci-static/resources/view/homeproxy/node.js:550
13191319 #: htdocs/luci-static/resources/view/homeproxy/server.js:170
13201320 msgid "QUIC connection receive window"
13211321 msgstr "QUIC 连接窗口"
@@ -1324,20 +1324,20 @@ msgstr "QUIC 连接窗口"
13241324 msgid "QUIC maximum concurrent bidirectional streams"
13251325 msgstr "QUIC 最大双向并发流"
13261326
1327-#: htdocs/luci-static/resources/view/homeproxy/node.js:556
1327+#: htdocs/luci-static/resources/view/homeproxy/node.js:544
13281328 #: htdocs/luci-static/resources/view/homeproxy/server.js:163
13291329 msgid "QUIC stream receive window"
13301330 msgstr "QUIC 流接收窗口"
13311331
1332-#: htdocs/luci-static/resources/view/homeproxy/node.js:1054
1332+#: htdocs/luci-static/resources/view/homeproxy/node.js:1056
13331333 msgid "REALITY"
13341334 msgstr "REALITY"
13351335
1336-#: htdocs/luci-static/resources/view/homeproxy/node.js:1059
1336+#: htdocs/luci-static/resources/view/homeproxy/node.js:1061
13371337 msgid "REALITY public key"
13381338 msgstr "REALITY 公钥"
13391339
1340-#: htdocs/luci-static/resources/view/homeproxy/node.js:1064
1340+#: htdocs/luci-static/resources/view/homeproxy/node.js:1066
13411341 msgid "REALITY short ID"
13421342 msgstr "REALITY 标识符"
13431343
@@ -1345,19 +1345,19 @@ msgstr "REALITY 标识符"
13451345 msgid "RUNNING"
13461346 msgstr "运行中"
13471347
1348-#: htdocs/luci-static/resources/view/homeproxy/node.js:1039
1348+#: htdocs/luci-static/resources/view/homeproxy/node.js:1041
13491349 msgid "Random"
13501350 msgstr "随机"
13511351
1352-#: htdocs/luci-static/resources/view/homeproxy/node.js:1040
1352+#: htdocs/luci-static/resources/view/homeproxy/node.js:1042
13531353 msgid "Randomized"
13541354 msgstr "随机生成"
13551355
1356-#: htdocs/luci-static/resources/view/homeproxy/client.js:369
1356+#: htdocs/luci-static/resources/view/homeproxy/client.js:362
13571357 msgid "Recursive outbound detected!"
13581358 msgstr "检测到递归出站!"
13591359
1360-#: htdocs/luci-static/resources/view/homeproxy/client.js:610
1360+#: htdocs/luci-static/resources/view/homeproxy/client.js:603
13611361 msgid "Recursive resolver detected!"
13621362 msgstr "检测到递归解析器!"
13631363
@@ -1369,7 +1369,7 @@ msgstr "Redirect TCP"
13691369 msgid "Redirect TCP + TProxy UDP"
13701370 msgstr "Redirect TCP + TProxy UDP"
13711371
1372-#: htdocs/luci-static/resources/view/homeproxy/client.js:223
1372+#: htdocs/luci-static/resources/view/homeproxy/client.js:222
13731373 msgid "Redirect TCP + Tun UDP"
13741374 msgstr "Redirect TCP + Tun UDP"
13751375
@@ -1377,15 +1377,15 @@ msgstr "Redirect TCP + Tun UDP"
13771377 msgid "Refresh every %s seconds."
13781378 msgstr "每 %s 秒刷新。"
13791379
1380-#: htdocs/luci-static/resources/view/homeproxy/node.js:1191
1380+#: htdocs/luci-static/resources/view/homeproxy/node.js:1200
13811381 msgid "Remove %s nodes"
13821382 msgstr "移除 %s 个节点"
13831383
1384-#: htdocs/luci-static/resources/view/homeproxy/node.js:1181
1384+#: htdocs/luci-static/resources/view/homeproxy/node.js:1190
13851385 msgid "Remove all nodes from subscriptions"
13861386 msgstr "移除所有订阅节点"
13871387
1388-#: htdocs/luci-static/resources/view/homeproxy/client.js:623
1388+#: htdocs/luci-static/resources/view/homeproxy/client.js:616
13891389 msgid "Resolve strategy"
13901390 msgstr "解析策略"
13911391
@@ -1393,11 +1393,11 @@ msgstr "解析策略"
13931393 msgid "Resources management"
13941394 msgstr "资源管理"
13951395
1396-#: htdocs/luci-static/resources/view/homeproxy/client.js:302
1396+#: htdocs/luci-static/resources/view/homeproxy/client.js:295
13971397 msgid "Routing Nodes"
13981398 msgstr "路由节点"
13991399
1400-#: htdocs/luci-static/resources/view/homeproxy/client.js:377
1400+#: htdocs/luci-static/resources/view/homeproxy/client.js:370
14011401 msgid "Routing Rules"
14021402 msgstr "路由规则"
14031403
@@ -1409,7 +1409,7 @@ msgstr "路由设置"
14091409 msgid "Routing mode"
14101410 msgstr "路由模式"
14111411
1412-#: htdocs/luci-static/resources/view/homeproxy/client.js:310
1412+#: htdocs/luci-static/resources/view/homeproxy/client.js:303
14131413 msgid "Routing node"
14141414 msgstr "路由节点"
14151415
@@ -1417,16 +1417,20 @@ msgstr "路由节点"
14171417 msgid "Routing ports"
14181418 msgstr "路由端口"
14191419
1420-#: htdocs/luci-static/resources/view/homeproxy/client.js:385
1420+#: htdocs/luci-static/resources/view/homeproxy/client.js:378
14211421 msgid "Routing rule"
14221422 msgstr "路由规则"
14231423
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
14261426 msgid "STUN"
14271427 msgstr "STUN"
14281428
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
14301434 msgid "Safari"
14311435 msgstr "Safari"
14321436
@@ -1434,15 +1438,15 @@ msgstr "Safari"
14341438 msgid "Same as main node"
14351439 msgstr "保持与主节点一致"
14361440
1437-#: htdocs/luci-static/resources/view/homeproxy/node.js:1155
1441+#: htdocs/luci-static/resources/view/homeproxy/node.js:1164
14381442 msgid "Save current settings"
14391443 msgstr "保存当前设置"
14401444
1441-#: htdocs/luci-static/resources/view/homeproxy/node.js:1152
1445+#: htdocs/luci-static/resources/view/homeproxy/node.js:1161
14421446 msgid "Save subscriptions settings"
14431447 msgstr "保存订阅设置"
14441448
1445-#: htdocs/luci-static/resources/view/homeproxy/client.js:782
1449+#: htdocs/luci-static/resources/view/homeproxy/client.js:775
14461450 #: htdocs/luci-static/resources/view/homeproxy/server.js:41
14471451 msgid "Server"
14481452 msgstr "服务器"
@@ -1465,7 +1469,7 @@ msgstr "服务状态"
14651469 msgid "ShadowTLS"
14661470 msgstr "ShadowTLS"
14671471
1468-#: htdocs/luci-static/resources/view/homeproxy/node.js:672
1472+#: htdocs/luci-static/resources/view/homeproxy/node.js:660
14691473 msgid "ShadowTLS version"
14701474 msgstr "ShadowTLS 版本"
14711475
@@ -1478,8 +1482,8 @@ msgstr "Shadowsocks"
14781482 msgid "ShadowsocksR"
14791483 msgstr "ShadowsocksR"
14801484
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
14831487 msgid ""
14841488 "Sniffed protocol, see <a target=\"_blank\" href=\"https://sing-box.sagernet."
14851489 "org/configuration/route/sniff/\">Sniff</a> for details."
@@ -1492,44 +1496,44 @@ msgstr ""
14921496 msgid "Socks"
14931497 msgstr "Socks"
14941498
1495-#: htdocs/luci-static/resources/view/homeproxy/node.js:682
1499+#: htdocs/luci-static/resources/view/homeproxy/node.js:670
14961500 msgid "Socks version"
14971501 msgstr "Socks 版本"
14981502
1499-#: htdocs/luci-static/resources/view/homeproxy/node.js:683
1503+#: htdocs/luci-static/resources/view/homeproxy/node.js:671
15001504 msgid "Socks4"
15011505 msgstr "Socks4"
15021506
1503-#: htdocs/luci-static/resources/view/homeproxy/node.js:684
1507+#: htdocs/luci-static/resources/view/homeproxy/node.js:672
15041508 msgid "Socks4A"
15051509 msgstr "Socks4A"
15061510
1507-#: htdocs/luci-static/resources/view/homeproxy/node.js:685
1511+#: htdocs/luci-static/resources/view/homeproxy/node.js:673
15081512 msgid "Socks5"
15091513 msgstr "Socks5"
15101514
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
15131517 msgid "Source GeoIP"
15141518 msgstr "源 GeoIP"
15151519
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
15181522 msgid "Source IP CIDR"
15191523 msgstr "源 IP CIDR"
15201524
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
15231527 msgid "Source port"
15241528 msgstr "源端口"
15251529
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
15281532 msgid "Source port range"
15291533 msgstr "源端口范围"
15301534
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
15331537 msgid ""
15341538 "Specifies the period of time after which a health check will be performed "
15351539 "using a ping frame if no frames have been received on the connection.<br/"
@@ -1548,8 +1552,8 @@ msgid ""
15481552 "PING frames are not considered as activity."
15491553 msgstr "指定闲置客户端应在多长时间内使用 GOAWAY 帧关闭。PING 帧不被视为活动。"
15501554
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
15531557 msgid ""
15541558 "Specifies the timeout duration after sending a PING frame, within which a "
15551559 "response must be received.<br/>If a response to the PING frame is not "
@@ -1565,16 +1569,16 @@ msgid ""
15651569 "commas."
15661570 msgstr "指定需要被代理的目标端口。多个端口必须用逗号隔开。"
15671571
1568-#: htdocs/luci-static/resources/view/homeproxy/node.js:528
1572+#: htdocs/luci-static/resources/view/homeproxy/node.js:516
15691573 #: htdocs/luci-static/resources/view/homeproxy/server.js:147
15701574 msgid "String"
15711575 msgstr "字符串"
15721576
1573-#: htdocs/luci-static/resources/view/homeproxy/node.js:1109
1577+#: htdocs/luci-static/resources/view/homeproxy/node.js:1118
15741578 msgid "Subscription URL-s"
15751579 msgstr "订阅地址"
15761580
1577-#: htdocs/luci-static/resources/view/homeproxy/node.js:1091
1581+#: htdocs/luci-static/resources/view/homeproxy/node.js:1100
15781582 msgid "Subscriptions"
15791583 msgstr "订阅"
15801584
@@ -1587,7 +1591,7 @@ msgid "Successfully updated."
15871591 msgstr "更新成功。"
15881592
15891593 #: 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
15911595 msgid ""
15921596 "Support Hysteria, Shadowsocks(R), Trojan, v2rayN (VMess), and XTLS (VLESS) "
15931597 "online configuration delivery standard."
@@ -1595,48 +1599,52 @@ msgstr ""
15951599 "支持 Hysteria、Shadowsocks(R)、Trojan、v2rayN(VMess)和 XTLS(VLESS)在线配"
15961600 "置交付标准。"
15971601
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
16001608 #: htdocs/luci-static/resources/view/homeproxy/server.js:510
16011609 msgid "TCP"
16021610 msgstr "TCP"
16031611
1604-#: htdocs/luci-static/resources/view/homeproxy/node.js:1072
1612+#: htdocs/luci-static/resources/view/homeproxy/node.js:1074
16051613 #: htdocs/luci-static/resources/view/homeproxy/server.js:475
16061614 msgid "TCP fast open"
16071615 msgstr "TCP 快速打开"
16081616
1609-#: htdocs/luci-static/resources/view/homeproxy/client.js:239
1617+#: htdocs/luci-static/resources/view/homeproxy/client.js:238
16101618 msgid "TCP/IP stack"
16111619 msgstr "TCP/IP 协议栈"
16121620
1613-#: htdocs/luci-static/resources/view/homeproxy/client.js:240
1621+#: htdocs/luci-static/resources/view/homeproxy/client.js:239
16141622 msgid "TCP/IP stack."
16151623 msgstr "TCP/IP 协议栈。"
16161624
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
16201628 #: htdocs/luci-static/resources/view/homeproxy/server.js:314
16211629 msgid "TLS"
16221630 msgstr "TLS"
16231631
1624-#: htdocs/luci-static/resources/view/homeproxy/node.js:947
1632+#: htdocs/luci-static/resources/view/homeproxy/node.js:949
16251633 #: htdocs/luci-static/resources/view/homeproxy/server.js:330
16261634 msgid "TLS ALPN"
16271635 msgstr "TLS ALPN"
16281636
1629-#: htdocs/luci-static/resources/view/homeproxy/node.js:942
1637+#: htdocs/luci-static/resources/view/homeproxy/node.js:944
16301638 #: htdocs/luci-static/resources/view/homeproxy/server.js:325
16311639 msgid "TLS SNI"
16321640 msgstr "TLS SNI"
16331641
1634-#: htdocs/luci-static/resources/view/homeproxy/node.js:750
1642+#: htdocs/luci-static/resources/view/homeproxy/node.js:738
16351643 #: htdocs/luci-static/resources/view/homeproxy/server.js:230
16361644 msgid "TLS is not enforced. If TLS is not configured, plain HTTP 1.1 is used."
16371645 msgstr "不强制执行 TLS。如未配置 TLS,将使用纯 HTTP 1.1。"
16381646
1639-#: htdocs/luci-static/resources/view/homeproxy/client.js:587
1647+#: htdocs/luci-static/resources/view/homeproxy/client.js:580
16401648 msgid ""
16411649 "Tag of a another server to resolve the domain name in the address. Required "
16421650 "if address contains domain."
@@ -1644,15 +1652,15 @@ msgstr ""
16441652 "用于解析本 DNS 服务器的域名的另一个 DNS 服务器的标签。如果服务器地址包括域名"
16451653 "则必须。"
16461654
1647-#: htdocs/luci-static/resources/view/homeproxy/client.js:629
1655+#: htdocs/luci-static/resources/view/homeproxy/client.js:622
16481656 msgid "Tag of an outbound for connecting to the dns server."
16491657 msgstr "用于连接到 DNS 服务器的出站标签。"
16501658
1651-#: htdocs/luci-static/resources/view/homeproxy/client.js:783
1659+#: htdocs/luci-static/resources/view/homeproxy/client.js:776
16521660 msgid "Tag of the target dns server."
16531661 msgstr "目标 DNS 服务器标签。"
16541662
1655-#: htdocs/luci-static/resources/view/homeproxy/client.js:505
1663+#: htdocs/luci-static/resources/view/homeproxy/client.js:498
16561664 msgid "Tag of the target outbound."
16571665 msgstr "目标出站标签。"
16581666
@@ -1664,21 +1672,21 @@ msgstr "腾讯公共 DNS(119.29.29.29)"
16641672 msgid "The ACME CA provider to use."
16651673 msgstr "使用的 ACME CA 颁发机构。"
16661674
1667-#: htdocs/luci-static/resources/view/homeproxy/client.js:530
1675+#: htdocs/luci-static/resources/view/homeproxy/client.js:523
16681676 msgid "The DNS strategy for resolving the domain name in the address."
16691677 msgstr "解析域名的默认策略。"
16701678
1671-#: htdocs/luci-static/resources/view/homeproxy/node.js:563
1679+#: htdocs/luci-static/resources/view/homeproxy/node.js:551
16721680 #: htdocs/luci-static/resources/view/homeproxy/server.js:171
16731681 msgid "The QUIC connection-level flow control window for receiving data."
16741682 msgstr "用于接收数据的 QUIC 连接级流控制窗口。"
16751683
1676-#: htdocs/luci-static/resources/view/homeproxy/node.js:557
1684+#: htdocs/luci-static/resources/view/homeproxy/node.js:545
16771685 #: htdocs/luci-static/resources/view/homeproxy/server.js:164
16781686 msgid "The QUIC stream-level flow control window for receiving data."
16791687 msgstr "用于接收数据的 QUIC 流级流控制窗口。"
16801688
1681-#: htdocs/luci-static/resources/view/homeproxy/client.js:583
1689+#: htdocs/luci-static/resources/view/homeproxy/client.js:576
16821690 msgid "The address of the dns server. Support UDP, TCP, DoT, DoH and RCode."
16831691 msgstr "DNS 服务器的地址。支持 UDP、TCP、DoT、DoH 和 RCode。"
16841692
@@ -1697,7 +1705,7 @@ msgid ""
16971705 msgstr ""
16981706 "用于 ACME TLS-ALPN 质询的备用端口; 系统必须将 443 转发到此端口以使质询成功。"
16991707
1700-#: htdocs/luci-static/resources/view/homeproxy/client.js:407
1708+#: htdocs/luci-static/resources/view/homeproxy/client.js:400
17011709 msgid ""
17021710 "The default rule uses the following matching logic:<br/><code>(domain || "
17031711 "domain_suffix || domain_keyword || domain_regex || geosite || geoip || "
@@ -1708,7 +1716,7 @@ msgstr ""
17081716 "domain_keyword || domain_regex || geosite || geoip || ip_cidr)</code> &&<br/"
17091717 "><code>(source_geoip || source_ip_cidr)</code> &&<br/><code>其他字段</code>."
17101718
1711-#: htdocs/luci-static/resources/view/homeproxy/client.js:671
1719+#: htdocs/luci-static/resources/view/homeproxy/client.js:664
17121720 msgid ""
17131721 "The default rule uses the following matching logic:<br/><code>(domain || "
17141722 "domain_suffix || domain_keyword || domain_regex || geosite || ip_cidr)</"
@@ -1719,13 +1727,13 @@ msgstr ""
17191727 "domain_keyword || domain_regex || geosite || ip_cidr)</code> &&<br/"
17201728 "><code>(source_geoip || source_ip_cidr)</code> &&<br/><code>其他字段</code>."
17211729
1722-#: htdocs/luci-static/resources/view/homeproxy/client.js:618
1730+#: htdocs/luci-static/resources/view/homeproxy/client.js:611
17231731 msgid ""
17241732 "The domain strategy for resolving the domain name in the address. dns."
17251733 "strategy will be used if empty."
17261734 msgstr "用于解析本 DNS 服务器的域名的策略。默认使用 dns.strategy。"
17271735
1728-#: htdocs/luci-static/resources/view/homeproxy/node.js:978
1736+#: htdocs/luci-static/resources/view/homeproxy/node.js:980
17291737 #: htdocs/luci-static/resources/view/homeproxy/server.js:352
17301738 msgid ""
17311739 "The elliptic curves that will be used in an ECDHE handshake, in preference "
@@ -1738,7 +1746,7 @@ msgid ""
17381746 "account."
17391747 msgstr "创建或选择现有 ACME 服务器帐户时使用的电子邮件地址。"
17401748
1741-#: htdocs/luci-static/resources/view/homeproxy/node.js:970
1749+#: htdocs/luci-static/resources/view/homeproxy/node.js:972
17421750 #: htdocs/luci-static/resources/view/homeproxy/server.js:344
17431751 msgid "The maximum TLS version that is acceptable."
17441752 msgstr "可接受的最高 TLS 版本。"
@@ -1749,7 +1757,7 @@ msgid ""
17491757 "allowed to open."
17501758 msgstr "允许对等点打开的 QUIC 并发双向流的最大数量。"
17511759
1752-#: htdocs/luci-static/resources/view/homeproxy/node.js:962
1760+#: htdocs/luci-static/resources/view/homeproxy/node.js:964
17531761 #: htdocs/luci-static/resources/view/homeproxy/server.js:336
17541762 msgid "The minimum TLS version that is acceptable."
17551763 msgstr "可接受的最低 TLS 版本。"
@@ -1758,11 +1766,11 @@ msgstr "可接受的最低 TLS 版本。"
17581766 msgid "The modern ImmortalWrt proxy platform for ARM64/AMD64."
17591767 msgstr "为 ARM64/AMD64 设计的现代 ImmortalWrt 代理平台。"
17601768
1761-#: htdocs/luci-static/resources/view/homeproxy/client.js:338
1769+#: htdocs/luci-static/resources/view/homeproxy/client.js:331
17621770 msgid "The network interface to bind to."
17631771 msgstr "绑定到的网络接口。"
17641772
1765-#: htdocs/luci-static/resources/view/homeproxy/node.js:992
1773+#: htdocs/luci-static/resources/view/homeproxy/node.js:994
17661774 msgid "The path to the server certificate, in PEM format."
17671775 msgstr "服务端证书路径,需要 PEM 格式。"
17681776
@@ -1778,13 +1786,13 @@ msgstr "服务端私钥,需要 PEM 格式。"
17781786 msgid "The server public key, in PEM format."
17791787 msgstr "服务端公钥,需要 PEM 格式。"
17801788
1781-#: htdocs/luci-static/resources/view/homeproxy/client.js:345
1789+#: htdocs/luci-static/resources/view/homeproxy/client.js:338
17821790 msgid ""
17831791 "The tag of the upstream outbound.<br/>Other dial fields will be ignored when "
17841792 "enabled."
17851793 msgstr "上游出站的标签。<br/>启用时,其他拨号字段将被忽略。"
17861794
1787-#: htdocs/luci-static/resources/view/homeproxy/node.js:770
1795+#: htdocs/luci-static/resources/view/homeproxy/node.js:758
17881796 #: htdocs/luci-static/resources/view/homeproxy/server.js:279
17891797 msgid ""
17901798 "The timeout that after performing a keepalive check, the client will wait "
@@ -1793,8 +1801,8 @@ msgstr ""
17931801 "经过一段时间之后,客户端将执行 keepalive 检查并等待活动。如果没有检测到任何活"
17941802 "动,则会关闭连接。"
17951803
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
17981806 msgid ""
17991807 "This is <strong>DANGEROUS</strong>, your traffic is almost like "
18001808 "<strong>PLAIN TEXT</strong>! Use at your own risk!"
@@ -1808,7 +1816,7 @@ msgid ""
18081816 msgstr ""
18091817 "要与 Xray-core 兼容,请将其设置为 <code>Sec-WebSocket-Protocol</code>。"
18101818
1811-#: htdocs/luci-static/resources/view/homeproxy/node.js:737
1819+#: htdocs/luci-static/resources/view/homeproxy/node.js:725
18121820 #: htdocs/luci-static/resources/view/homeproxy/server.js:220
18131821 msgid "Transport"
18141822 msgstr "传输层"
@@ -1818,7 +1826,7 @@ msgstr "传输层"
18181826 msgid "Trojan"
18191827 msgstr "Trojan"
18201828
1821-#: htdocs/luci-static/resources/view/homeproxy/client.js:224
1829+#: htdocs/luci-static/resources/view/homeproxy/client.js:223
18221830 msgid "Tun TCP/UDP"
18231831 msgstr "Tun TCP/UDP"
18241832
@@ -1827,22 +1835,22 @@ msgstr "Tun TCP/UDP"
18271835 msgid "Type"
18281836 msgstr "类型"
18291837
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
18321840 #: htdocs/luci-static/resources/view/homeproxy/server.js:511
18331841 msgid "UDP"
18341842 msgstr "UDP"
18351843
1836-#: htdocs/luci-static/resources/view/homeproxy/node.js:1076
1844+#: htdocs/luci-static/resources/view/homeproxy/node.js:1078
18371845 #: htdocs/luci-static/resources/view/homeproxy/server.js:481
18381846 msgid "UDP Fragment"
18391847 msgstr "UDP 分片"
18401848
1841-#: htdocs/luci-static/resources/view/homeproxy/node.js:1081
1849+#: htdocs/luci-static/resources/view/homeproxy/node.js:1083
18421850 msgid "UDP over TCP"
18431851 msgstr "UDP over TCP"
18441852
1845-#: htdocs/luci-static/resources/view/homeproxy/node.js:692
1853+#: htdocs/luci-static/resources/view/homeproxy/node.js:680
18461854 #: htdocs/luci-static/resources/view/homeproxy/server.js:200
18471855 msgid "UUID"
18481856 msgstr "UUID"
@@ -1855,7 +1863,7 @@ msgstr "未知错误。"
18551863 msgid "Unknown error: %s"
18561864 msgstr "未知错误:%s"
18571865
1858-#: htdocs/luci-static/resources/view/homeproxy/node.js:1166
1866+#: htdocs/luci-static/resources/view/homeproxy/node.js:1175
18591867 msgid "Update %s subscriptions"
18601868 msgstr "更新 %s 个订阅"
18611869
@@ -1863,19 +1871,19 @@ msgstr "更新 %s 个订阅"
18631871 msgid "Update failed."
18641872 msgstr "上传失败。"
18651873
1866-#: htdocs/luci-static/resources/view/homeproxy/node.js:1161
1874+#: htdocs/luci-static/resources/view/homeproxy/node.js:1170
18671875 msgid "Update nodes from subscriptions"
18681876 msgstr "从订阅更新节点"
18691877
1870-#: htdocs/luci-static/resources/view/homeproxy/node.js:1105
1878+#: htdocs/luci-static/resources/view/homeproxy/node.js:1114
18711879 msgid "Update subscriptions via proxy."
18721880 msgstr "使用代理更新订阅。"
18731881
1874-#: htdocs/luci-static/resources/view/homeproxy/node.js:1104
1882+#: htdocs/luci-static/resources/view/homeproxy/node.js:1113
18751883 msgid "Update via proxy"
18761884 msgstr "使用代理更新"
18771885
1878-#: htdocs/luci-static/resources/view/homeproxy/node.js:998
1886+#: htdocs/luci-static/resources/view/homeproxy/node.js:1000
18791887 #: htdocs/luci-static/resources/view/homeproxy/server.js:449
18801888 msgid "Upload certificate"
18811889 msgstr "上传证书"
@@ -1884,13 +1892,13 @@ msgstr "上传证书"
18841892 msgid "Upload key"
18851893 msgstr "上传密钥"
18861894
1887-#: htdocs/luci-static/resources/view/homeproxy/node.js:1001
1895+#: htdocs/luci-static/resources/view/homeproxy/node.js:1003
18881896 #: htdocs/luci-static/resources/view/homeproxy/server.js:452
18891897 #: htdocs/luci-static/resources/view/homeproxy/server.js:468
18901898 msgid "Upload..."
18911899 msgstr "上传..."
18921900
1893-#: htdocs/luci-static/resources/view/homeproxy/client.js:260
1901+#: htdocs/luci-static/resources/view/homeproxy/client.js:254
18941902 msgid "Upstream archived. Not recommended."
18951903 msgstr "上游已存档。不建议。"
18961904
@@ -1902,19 +1910,19 @@ msgstr "使用 ACME TLS 证书颁发机构。"
19021910 msgid "Use DNS server from WAN"
19031911 msgstr "使用 WAN 下发的 DNS"
19041912
1905-#: htdocs/luci-static/resources/view/homeproxy/node.js:943
1913+#: htdocs/luci-static/resources/view/homeproxy/node.js:945
19061914 #: htdocs/luci-static/resources/view/homeproxy/server.js:326
19071915 msgid ""
19081916 "Used to verify the hostname on the returned certificates unless insecure is "
19091917 "given."
19101918 msgstr "用于验证返回证书上的主机名。如允许不安全连接,此配置无效。"
19111919
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
19141922 msgid "User"
19151923 msgstr "用户"
19161924
1917-#: htdocs/luci-static/resources/view/homeproxy/node.js:466
1925+#: htdocs/luci-static/resources/view/homeproxy/node.js:454
19181926 #: htdocs/luci-static/resources/view/homeproxy/server.js:86
19191927 msgid "Username"
19201928 msgstr "用户名"
@@ -1929,16 +1937,16 @@ msgstr "VLESS"
19291937 msgid "VMess"
19301938 msgstr "VMess"
19311939
1932-#: htdocs/luci-static/resources/view/homeproxy/client.js:910
1940+#: htdocs/luci-static/resources/view/homeproxy/client.js:903
19331941 msgid "WAN IP Policy"
19341942 msgstr "WAN IP 策略"
19351943
1936-#: htdocs/luci-static/resources/view/homeproxy/node.js:743
1944+#: htdocs/luci-static/resources/view/homeproxy/node.js:731
19371945 #: htdocs/luci-static/resources/view/homeproxy/server.js:226
19381946 msgid "WebSocket"
19391947 msgstr "WebSocket"
19401948
1941-#: htdocs/luci-static/resources/view/homeproxy/node.js:1130
1949+#: htdocs/luci-static/resources/view/homeproxy/node.js:1139
19421950 msgid "Whitelist mode"
19431951 msgstr "白名单模式"
19441952
@@ -1946,19 +1954,19 @@ msgstr "白名单模式"
19461954 msgid "WireGuard"
19471955 msgstr "WireGuard"
19481956
1949-#: htdocs/luci-static/resources/view/homeproxy/node.js:869
1957+#: htdocs/luci-static/resources/view/homeproxy/node.js:857
19501958 msgid "WireGuard peer public key."
19511959 msgstr "WireGuard 对端公钥。"
19521960
1953-#: htdocs/luci-static/resources/view/homeproxy/node.js:875
1961+#: htdocs/luci-static/resources/view/homeproxy/node.js:863
19541962 msgid "WireGuard pre-shared key."
19551963 msgstr "WireGuard 预共享密钥。"
19561964
1957-#: htdocs/luci-static/resources/view/homeproxy/node.js:862
1965+#: htdocs/luci-static/resources/view/homeproxy/node.js:850
19581966 msgid "WireGuard requires base64-encoded private keys."
19591967 msgstr "WireGuard 要求 base64 编码的私钥。"
19601968
1961-#: htdocs/luci-static/resources/view/homeproxy/node.js:506
1969+#: htdocs/luci-static/resources/view/homeproxy/node.js:494
19621970 msgid "Write Proxy Protocol in the connection header."
19631971 msgstr "在连接标头中写入代理协议。"
19641972
@@ -1966,8 +1974,8 @@ msgstr "在连接标头中写入代理协议。"
19661974 msgid "Xinfeng Public DNS (114.114.114.114)"
19671975 msgstr "信风公共 DNS(114.114.114.114)"
19681976
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
19711979 msgid "Xudp (Xray-core)"
19721980 msgstr "Xudp (Xray-core)"
19731981
@@ -1983,57 +1991,57 @@ msgstr "您的 %s 已成功上传。大小:%sB。"
19831991 msgid "ZeroSSL"
19841992 msgstr "ZeroSSL"
19851993
1986-#: htdocs/luci-static/resources/view/homeproxy/node.js:1003
1994+#: htdocs/luci-static/resources/view/homeproxy/node.js:1005
19871995 #: htdocs/luci-static/resources/view/homeproxy/server.js:454
19881996 msgid "certificate"
19891997 msgstr "证书"
19901998
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
19932001 #: htdocs/luci-static/resources/view/homeproxy/server.js:337
19942002 #: htdocs/luci-static/resources/view/homeproxy/server.js:345
19952003 msgid "default"
19962004 msgstr "默认"
19972005
1998-#: htdocs/luci-static/resources/view/homeproxy/node.js:740
2006+#: htdocs/luci-static/resources/view/homeproxy/node.js:728
19992007 #: htdocs/luci-static/resources/view/homeproxy/server.js:223
20002008 msgid "gRPC"
20012009 msgstr "gRPC"
20022010
2003-#: htdocs/luci-static/resources/view/homeproxy/node.js:781
2011+#: htdocs/luci-static/resources/view/homeproxy/node.js:769
20042012 msgid "gRPC permit without stream"
20052013 msgstr "gRPC 允许无活动连接"
20062014
2007-#: htdocs/luci-static/resources/view/homeproxy/node.js:776
2015+#: htdocs/luci-static/resources/view/homeproxy/node.js:764
20082016 #: htdocs/luci-static/resources/view/homeproxy/server.js:250
20092017 msgid "gRPC service name"
20102018 msgstr "gRPC 服务名称"
20112019
2012-#: htdocs/luci-static/resources/view/homeproxy/client.js:242
2020+#: htdocs/luci-static/resources/view/homeproxy/client.js:241
20132021 msgid "gVisor"
20142022 msgstr "gVisor"
20152023
2016-#: htdocs/luci-static/resources/view/homeproxy/node.js:1037
2024+#: htdocs/luci-static/resources/view/homeproxy/node.js:1039
20172025 msgid "iOS"
20182026 msgstr "iOS"
20192027
20202028 #: htdocs/luci-static/resources/homeproxy.js:245
20212029 #: htdocs/luci-static/resources/homeproxy.js:263
20222030 #: 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
20252033 #: htdocs/luci-static/resources/view/homeproxy/server.js:113
20262034 msgid "non-empty value"
20272035 msgstr "非空值"
20282036
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
20322040 msgid "none"
20332041 msgstr "无"
20342042
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
20372045 msgid "packet addr (v2ray-core v5+)"
20382046 msgstr "packet addr (v2ray-core v5+)"
20392047
@@ -2041,11 +2049,11 @@ msgstr "packet addr (v2ray-core v5+)"
20412049 msgid "private key"
20422050 msgstr "私钥"
20432051
2044-#: htdocs/luci-static/resources/view/homeproxy/node.js:1029
2052+#: htdocs/luci-static/resources/view/homeproxy/node.js:1031
20452053 msgid "uTLS fingerprint"
20462054 msgstr "uTLS 指纹"
20472055
2048-#: htdocs/luci-static/resources/view/homeproxy/node.js:1030
2056+#: htdocs/luci-static/resources/view/homeproxy/node.js:1032
20492057 msgid ""
20502058 "uTLS is a fork of \"crypto/tls\", which provides ClientHello fingerprinting "
20512059 "resistance."
@@ -2061,15 +2069,17 @@ msgstr "独立 UCI 标识"
20612069 msgid "unique value"
20622070 msgstr "独立值"
20632071
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
20652074 msgid "v1"
20662075 msgstr "v1"
20672076
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
20692079 msgid "v2"
20702080 msgstr "v2"
20712081
2072-#: htdocs/luci-static/resources/view/homeproxy/node.js:675
2082+#: htdocs/luci-static/resources/view/homeproxy/node.js:663
20732083 msgid "v3"
20742084 msgstr "v3"
20752085
@@ -2077,8 +2087,8 @@ msgstr "v3"
20772087 msgid "valid IP address"
20782088 msgstr "有效 IP 地址"
20792089
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
20822092 msgid "valid URL"
20832093 msgstr "有效网址"
20842094
@@ -2086,8 +2096,8 @@ msgstr "有效网址"
20862096 msgid "valid base64 key with %d characters"
20872097 msgstr "包含 %d 个字符的有效 base64 密钥"
20882098
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
20912101 msgid "valid hostname"
20922102 msgstr "有效主机名"
20932103
--- a/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.txt
+++ b/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.txt
@@ -17,9 +17,8 @@
1717 1.118.32.0/24
1818 1.119.0.0/17
1919 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
2322 1.180.0.0/14
2423 1.184.0.0/15
2524 1.188.0.0/14
@@ -33,7 +32,6 @@
3332 5.10.136.0/22
3433 5.10.140.0/24
3534 5.10.142.0/23
36-5.105.19.0/24
3735 5.154.132.0/23
3836 5.154.136.0/22
3937 5.154.140.0/23
@@ -52,15 +50,16 @@
5250 8.144.0.0/14
5351 14.16.0.0/12
5452 14.102.156.0/22
53+14.102.233.0/24
54+14.102.237.0/24
5555 14.104.0.0/13
5656 14.112.0.0/12
5757 14.134.0.0/15
5858 14.144.0.0/12
5959 14.204.0.0/15
6060 14.208.0.0/12
61-23.144.232.0/24
62-23.146.72.0/24
6361 23.146.88.0/24
62+23.148.24.0/24
6463 27.0.128.0/24
6564 27.0.130.0/23
6665 27.0.132.0/22
@@ -89,6 +88,7 @@
8988 27.184.0.0/13
9089 27.192.0.0/11
9190 27.224.0.0/14
91+31.204.26.0/23
9292 36.1.0.0/16
9393 36.4.0.0/14
9494 36.16.0.0/12
@@ -111,14 +111,16 @@
111111 36.255.116.0/22
112112 36.255.164.0/24
113113 36.255.192.0/23
114-37.77.144.0/24
115114 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
117118 38.64.76.0/23
118119 38.64.78.0/24
119120 38.64.92.0/24
120121 38.84.76.0/22
121122 38.95.232.0/23
123+38.102.232.0/24
122124 38.111.220.0/23
123125 39.64.0.0/11
124126 39.96.0.0/13
@@ -254,18 +256,17 @@
254256 43.227.104.0/22
255257 43.227.140.0/22
256258 43.227.152.0/21
257-43.227.160.0/20
258259 43.227.176.0/21
259-43.227.192.0/19
260+43.227.192.0/21
261+43.227.216.0/21
260262 43.227.252.0/22
261-43.228.0.0/19
263+43.228.0.0/21
262264 43.228.36.0/22
263-43.228.40.0/21
264-43.228.48.0/20
265265 43.228.64.0/21
266266 43.228.76.0/22
267267 43.228.116.0/22
268268 43.229.48.0/22
269+43.229.152.0/24
269270 43.229.185.0/24
270271 43.229.186.0/23
271272 43.229.216.0/22
@@ -384,7 +385,6 @@
384385 43.254.248.0/22
385386 43.255.0.0/21
386387 43.255.37.0/24
387-43.255.39.0/24
388388 43.255.68.0/22
389389 43.255.84.0/22
390390 43.255.96.0/22
@@ -442,9 +442,9 @@
442442 45.121.55.0/24
443443 45.121.212.0/22
444444 45.123.128.0/22
445-45.123.193.0/24
446-45.123.194.0/24
447445 45.124.68.0/22
446+45.124.77.0/24
447+45.124.78.0/23
448448 45.124.80.0/22
449449 45.124.124.0/22
450450 45.125.44.0/22
@@ -471,7 +471,7 @@
471471 45.202.8.0/23
472472 45.204.24.0/21
473473 45.207.22.0/23
474-45.207.24.0/21
474+45.207.24.0/22
475475 45.207.128.0/19
476476 45.207.160.0/21
477477 45.207.176.0/20
@@ -504,6 +504,7 @@
504504 45.254.48.0/23
505505 45.254.50.0/24
506506 45.254.64.0/20
507+46.8.195.0/24
507508 46.8.203.0/24
508509 46.37.112.0/24
509510 46.232.20.0/24
@@ -517,11 +518,12 @@
517518 47.120.0.0/15
518519 47.122.0.0/18
519520 47.123.0.0/16
520-47.246.0.0/22
521+47.246.0.0/23
522+47.246.2.0/24
521523 47.246.4.0/24
522524 47.246.6.0/23
523525 47.246.8.0/24
524-47.246.10.0/23
526+47.246.10.0/24
525527 47.246.12.0/23
526528 47.246.15.0/24
527529 47.246.16.0/22
@@ -537,7 +539,6 @@
537539 47.246.46.0/24
538540 47.246.48.0/23
539541 47.246.50.0/24
540-47.246.52.0/23
541542 47.246.57.0/24
542543 47.246.58.0/24
543544 47.246.60.0/22
@@ -568,6 +569,7 @@
568569 49.64.0.0/11
569570 49.112.0.0/13
570571 49.120.0.0/14
572+49.128.219.0/24
571573 49.128.223.0/24
572574 49.140.0.0/15
573575 49.208.0.0/15
@@ -623,7 +625,6 @@
623625 58.68.247.0/24
624626 58.82.0.0/17
625627 58.83.0.0/16
626-58.84.5.0/24
627628 58.87.64.0/18
628629 58.99.128.0/17
629630 58.100.0.0/15
@@ -715,14 +716,10 @@
715716 61.241.128.0/18
716717 61.241.192.0/19
717718 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
723720 61.243.128.0/18
724721 61.243.192.0/19
725-62.72.185.0/24
722+62.233.36.0/24
726723 62.234.0.0/16
727724 63.140.0.0/24
728725 63.140.3.0/24
@@ -741,7 +738,6 @@
741738 69.163.104.0/24
742739 69.163.106.0/23
743740 69.163.108.0/24
744-69.165.72.0/23
745741 69.172.70.0/24
746742 69.230.192.0/18
747743 69.231.128.0/18
@@ -759,14 +755,15 @@
759755 81.173.28.0/24
760756 82.156.0.0/15
761757 84.32.69.0/24
762-85.92.115.0/24
758+85.28.60.0/24
763759 85.133.222.0/24
764760 85.158.149.0/24
765761 85.237.205.0/24
766762 87.254.207.0/24
767763 88.218.204.0/22
764+89.19.58.0/24
768765 89.116.144.0/24
769-91.188.204.0/24
766+89.117.67.0/24
770767 92.114.85.0/24
771768 93.113.171.0/24
772769 93.183.14.0/24
@@ -796,7 +793,6 @@
796793 101.37.0.0/16
797794 101.38.0.0/15
798795 101.40.0.0/14
799-101.49.128.0/22
800796 101.50.56.0/22
801797 101.52.4.0/24
802798 101.52.6.0/24
@@ -946,6 +942,7 @@
946942 103.28.204.0/22
947943 103.28.212.0/22
948944 103.29.16.0/22
945+103.29.24.0/23
949946 103.29.136.0/22
950947 103.30.4.0/22
951948 103.30.148.0/22
@@ -954,8 +951,7 @@
954951 103.31.72.0/24
955952 103.31.200.0/22
956953 103.31.236.0/22
957-103.35.105.0/24
958-103.35.106.0/24
954+103.35.104.0/22
959955 103.35.220.0/23
960956 103.36.28.0/22
961957 103.36.60.0/22
@@ -993,7 +989,7 @@
993989 103.40.192.0/22
994990 103.40.232.0/22
995991 103.40.240.0/20
996-103.41.0.0/23
992+103.41.0.0/22
997993 103.41.16.0/22
998994 103.41.164.0/22
999995 103.42.8.0/22
@@ -1021,24 +1017,17 @@
10211017 103.45.176.0/20
10221018 103.45.248.0/22
10231019 103.46.12.0/22
1024-103.46.16.0/20
1025-103.46.32.0/19
1026-103.46.64.0/18
10271020 103.46.128.0/21
10281021 103.46.136.0/22
10291022 103.46.168.0/22
10301023 103.47.48.0/22
10311024 103.47.80.0/22
1032-103.48.168.0/24
1033-103.48.170.0/24
10341025 103.48.232.0/23
10351026 103.49.12.0/22
10361027 103.49.60.0/24
10371028 103.49.62.0/24
1038-103.49.108.0/22
10391029 103.49.180.0/22
1040-103.49.196.0/23
1041-103.49.198.0/24
1030+103.49.196.0/22
10421031 103.50.0.0/22
10431032 103.50.36.0/22
10441033 103.50.252.0/23
@@ -1052,6 +1041,7 @@
10521041 103.53.204.0/22
10531042 103.53.208.0/22
10541043 103.54.48.0/22
1044+103.54.121.0/24
10551045 103.55.172.0/22
10561046 103.55.228.0/22
10571047 103.56.20.0/22
@@ -1075,7 +1065,8 @@
10751065 103.61.143.0/24
10761066 103.61.153.0/24
10771067 103.61.154.0/23
1078-103.61.188.0/22
1068+103.61.188.0/24
1069+103.61.190.0/23
10791070 103.62.52.0/23
10801071 103.62.55.0/24
10811072 103.63.244.0/22
@@ -1091,6 +1082,7 @@
10911082 103.69.16.0/22
10921083 103.70.220.0/22
10931084 103.71.68.0/22
1085+103.71.94.0/24
10941086 103.71.120.0/21
10951087 103.71.128.0/22
10961088 103.71.196.0/22
@@ -1157,12 +1149,12 @@
11571149 103.90.188.0/22
11581150 103.91.176.0/22
11591151 103.91.208.0/22
1152+103.92.88.0/22
11601153 103.93.180.0/22
11611154 103.94.12.0/22
11621155 103.94.20.0/23
11631156 103.94.200.0/22
1164-103.95.64.0/21
1165-103.95.207.0/24
1157+103.95.68.0/22
11661158 103.95.220.0/23
11671159 103.95.222.0/24
11681160 103.95.252.0/22
@@ -1176,13 +1168,14 @@
11761168 103.98.127.0/24
11771169 103.98.168.0/22
11781170 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
11801174 103.99.40.0/23
11811175 103.99.152.0/22
11821176 103.100.64.0/22
11831177 103.101.124.0/23
1184-103.101.153.0/24
1185-103.101.176.0/21
1178+103.101.180.0/22
11861179 103.102.4.0/23
11871180 103.102.7.0/24
11881181 103.102.192.0/21
@@ -1193,7 +1186,6 @@
11931186 103.105.12.0/22
11941187 103.105.60.0/22
11951188 103.105.200.0/22
1196-103.107.8.0/24
11971189 103.107.188.0/22
11981190 103.107.216.0/22
11991191 103.108.160.0/24
@@ -1284,7 +1276,7 @@
12841276 103.144.108.0/23
12851277 103.144.158.0/23
12861278 103.145.38.0/23
1287-103.145.42.0/24
1279+103.145.42.0/23
12881280 103.145.72.0/24
12891281 103.145.90.0/23
12901282 103.145.92.0/23
@@ -1300,7 +1292,7 @@
13001292 103.150.181.0/24
13011293 103.150.210.0/23
13021294 103.150.212.0/24
1303-103.151.148.0/22
1295+103.151.148.0/23
13041296 103.151.178.0/23
13051297 103.151.216.0/23
13061298 103.152.28.0/23
@@ -1332,33 +1324,39 @@
13321324 103.164.32.0/23
13331325 103.165.110.0/23
13341326 103.166.174.0/23
1327+103.167.212.0/24
13351328 103.169.50.0/23
13361329 103.169.62.0/23
13371330 103.170.4.0/23
1338-103.170.72.0/24
1331+103.170.84.0/24
13391332 103.170.210.0/23
13401333 103.170.212.0/23
13411334 103.172.52.0/24
13421335 103.172.191.0/24
13431336 103.174.94.0/23
13441337 103.177.28.0/23
1345-103.177.45.0/24
13461338 103.179.78.0/23
1339+103.179.97.0/24
13471340 103.180.108.0/23
1341+103.181.84.0/24
13481342 103.181.164.0/23
13491343 103.181.203.0/24
13501344 103.181.234.0/24
13511345 103.183.66.0/23
1346+103.183.216.0/24
13521347 103.183.218.0/24
13531348 103.184.44.0/23
13541349 103.186.4.0/23
1355-103.186.108.0/24
1350+103.186.108.0/23
13561351 103.189.93.0/24
13571352 103.189.140.0/23
13581353 103.189.154.0/23
13591354 103.190.118.0/24
13601355 103.190.122.0/23
13611356 103.190.178.0/24
1357+103.191.102.0/24
1358+103.191.242.0/23
1359+103.192.0.0/23
13621360 103.192.4.0/23
13631361 103.192.188.0/22
13641362 103.192.212.0/22
@@ -1391,7 +1389,7 @@
13911389 103.203.216.0/22
13921390 103.204.72.0/22
13931391 103.205.4.0/22
1394-103.205.40.0/24
1392+103.205.40.0/23
13951393 103.205.136.0/24
13961394 103.205.139.0/24
13971395 103.205.188.0/22
@@ -1455,17 +1453,16 @@
14551453 103.227.120.0/22
14561454 103.227.136.0/22
14571455 103.227.228.0/22
1458-103.228.64.0/24
14591456 103.228.136.0/22
14601457 103.228.160.0/22
14611458 103.228.204.0/23
1459+103.228.208.0/22
14621460 103.228.228.0/22
14631461 103.229.148.0/22
14641462 103.229.212.0/22
14651463 103.229.216.0/21
14661464 103.229.236.0/22
1467-103.230.8.0/23
1468-103.230.200.0/22
1465+103.230.9.0/24
14691466 103.230.212.0/22
14701467 103.230.236.0/22
14711468 103.231.16.0/24
@@ -1480,10 +1477,10 @@
14801477 103.233.138.0/24
14811478 103.233.228.0/22
14821479 103.234.20.0/22
1483-103.234.54.0/24
14841480 103.234.56.0/22
14851481 103.234.96.0/22
14861482 103.234.128.0/22
1483+103.235.19.0/24
14871484 103.235.44.0/22
14881485 103.235.85.0/24
14891486 103.235.136.0/22
@@ -1492,11 +1489,10 @@
14921489 103.235.220.0/22
14931490 103.235.224.0/19
14941491 103.236.120.0/22
1495-103.236.220.0/22
14961492 103.236.240.0/20
14971493 103.237.8.0/22
14981494 103.237.28.0/23
1499-103.237.103.0/24
1495+103.237.101.0/24
15001496 103.237.248.0/21
15011497 103.238.0.0/21
15021498 103.238.16.0/22
@@ -1523,7 +1519,7 @@
15231519 103.240.84.0/22
15241520 103.240.124.0/22
15251521 103.240.244.0/22
1526-103.241.92.0/22
1522+103.241.95.0/24
15271523 103.242.128.0/23
15281524 103.242.130.0/24
15291525 103.242.168.0/23
@@ -1640,6 +1636,7 @@
16401636 106.224.0.0/14
16411637 106.228.0.0/15
16421638 106.230.0.0/16
1639+109.234.76.0/24
16431640 109.244.0.0/16
16441641 110.6.0.0/15
16451642 110.16.0.0/14
@@ -1707,6 +1704,7 @@
17071704 111.176.0.0/13
17081705 111.186.0.0/15
17091706 111.192.0.0/12
1707+111.208.121.0/24
17101708 111.212.0.0/14
17111709 111.221.28.0/24
17121710 111.221.128.0/17
@@ -1799,6 +1797,7 @@
17991797 114.28.192.0/23
18001798 114.28.224.0/22
18011799 114.28.228.0/23
1800+114.28.235.0/24
18021801 114.28.236.0/22
18031802 114.28.248.0/21
18041803 114.55.0.0/16
@@ -1929,7 +1928,6 @@
19291928 116.193.18.0/24
19301929 116.193.32.0/19
19311930 116.196.64.0/18
1932-116.196.128.0/24
19331931 116.196.176.0/21
19341932 116.196.192.0/21
19351933 116.196.218.0/23
@@ -1941,7 +1939,7 @@
19411939 116.198.176.0/21
19421940 116.198.192.0/18
19431941 116.199.0.0/17
1944-116.204.64.0/18
1942+116.204.0.0/17
19451943 116.204.132.0/22
19461944 116.205.0.0/18
19471945 116.205.128.0/17
@@ -2324,8 +2322,6 @@
23242322 121.36.0.0/15
23252323 121.40.0.0/14
23262324 121.46.0.0/20
2327-121.46.20.0/22
2328-121.46.24.0/21
23292325 121.46.128.0/21
23302326 121.46.140.0/22
23312327 121.46.144.0/20
@@ -2425,8 +2421,6 @@
24252421 122.240.0.0/13
24262422 122.248.48.0/21
24272423 122.248.56.0/22
2428-122.254.119.0/24
2429-123.0.130.0/24
24302424 123.0.139.0/24
24312425 123.0.152.0/24
24322426 123.4.0.0/14
@@ -2480,6 +2474,7 @@
24802474 123.232.0.0/14
24812475 123.244.0.0/14
24822476 123.249.0.0/17
2477+123.253.224.0/23
24832478 124.6.64.0/18
24842479 124.14.1.0/24
24852480 124.14.2.0/23
@@ -2500,6 +2495,7 @@
25002495 124.47.0.0/18
25012496 124.64.0.0/15
25022497 124.66.0.0/17
2498+124.66.208.0/24
25032499 124.67.0.0/16
25042500 124.68.252.0/23
25052501 124.70.0.0/16
@@ -2557,6 +2553,7 @@
25572553 124.249.0.0/17
25582554 124.250.0.0/15
25592555 124.254.0.0/18
2556+125.24.253.0/24
25602557 125.32.0.0/12
25612558 125.58.128.0/17
25622559 125.61.128.0/19
@@ -2585,6 +2582,8 @@
25852582 125.254.188.0/23
25862583 125.254.190.0/24
25872584 128.108.0.0/16
2585+128.254.185.0/24
2586+128.254.187.0/24
25882587 129.28.0.0/16
25892588 129.204.0.0/16
25902589 129.211.0.0/16
@@ -2687,6 +2686,8 @@
26872686 145.14.88.0/24
26882687 145.14.90.0/24
26892688 145.14.92.0/24
2689+146.19.69.0/24
2690+146.19.155.0/24
26902691 146.19.167.0/24
26912692 146.19.236.0/24
26922693 146.56.192.0/18
@@ -2699,7 +2700,8 @@
26992700 147.78.132.0/22
27002701 148.70.0.0/16
27012702 148.178.0.0/17
2702-149.126.192.0/24
2703+149.115.120.0/22
2704+149.115.124.0/24
27032705 150.107.1.0/24
27042706 150.107.3.0/24
27052707 150.109.0.0/16
@@ -2732,10 +2734,21 @@
27322734 153.99.0.0/16
27332735 153.101.0.0/16
27342736 153.118.0.0/15
2737+153.254.119.0/24
27352738 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
27362746 154.18.162.0/24
27372747 154.19.37.0/24
27382748 154.19.40.0/22
2749+154.29.88.0/24
2750+154.29.94.0/24
2751+154.38.64.0/20
27392752 154.39.71.0/24
27402753 154.48.252.0/24
27412754 154.72.40.0/21
@@ -2745,9 +2758,8 @@
27452758 154.85.44.0/23
27462759 154.85.48.0/20
27472760 154.85.64.0/23
2761+154.85.66.0/24
27482762 154.88.3.0/24
2749-154.89.2.0/24
2750-154.89.4.0/24
27512763 154.91.32.0/23
27522764 154.91.34.0/24
27532765 154.92.24.0/22
@@ -2782,8 +2794,6 @@
27822794 154.223.182.0/24
27832795 154.223.184.0/22
27842796 154.223.191.0/24
2785-155.235.232.0/21
2786-155.235.240.0/22
27872797 156.59.202.0/23
27882798 156.59.204.0/23
27892799 156.59.206.0/24
@@ -2794,7 +2804,7 @@
27942804 156.107.178.0/23
27952805 156.107.180.0/23
27962806 156.224.8.0/21
2797-156.225.96.0/23
2807+156.225.96.0/24
27982808 156.225.98.0/24
27992809 156.225.101.0/24
28002810 156.225.102.0/23
@@ -2821,6 +2831,7 @@
28212831 156.242.4.0/23
28222832 156.242.6.0/24
28232833 156.242.8.0/24
2834+156.245.5.0/24
28242835 156.246.18.0/23
28252836 156.246.20.0/24
28262837 156.247.16.0/20
@@ -2848,6 +2859,7 @@
28482859 159.226.0.0/16
28492860 160.19.208.0/21
28502861 160.83.110.0/24
2862+160.181.176.0/20
28512863 160.202.60.0/22
28522864 160.202.168.0/22
28532865 160.202.212.0/22
@@ -2864,7 +2876,7 @@
28642876 163.0.0.0/16
28652877 163.5.79.0/24
28662878 163.47.4.0/22
2867-163.53.18.0/24
2879+163.53.16.0/24
28682880 163.53.36.0/22
28692881 163.53.44.0/22
28702882 163.53.60.0/22
@@ -2885,9 +2897,7 @@
28852897 163.181.25.0/24
28862898 163.181.26.0/24
28872899 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
28912901 163.181.40.0/24
28922902 163.181.42.0/23
28932903 163.181.44.0/24
@@ -2919,12 +2929,11 @@
29192929 163.181.120.0/23
29202930 163.181.122.0/24
29212931 163.181.126.0/23
2922-163.197.32.0/24
29232932 163.204.0.0/16
29242933 163.228.0.0/16
29252934 163.244.246.0/24
29262935 166.1.161.0/24
2927-166.1.172.0/24
2936+166.1.164.0/24
29282937 166.111.0.0/16
29292938 167.139.0.0/16
29302939 167.189.0.0/16
@@ -2951,8 +2960,6 @@
29512960 171.112.0.0/12
29522961 171.208.0.0/12
29532962 172.81.192.0/18
2954-173.240.14.0/24
2955-174.136.237.0/24
29562963 174.136.239.0/24
29572964 175.0.0.0/12
29582965 175.16.0.0/13
@@ -2982,6 +2989,7 @@
29822989 175.188.188.0/22
29832990 175.190.24.0/21
29842991 175.190.126.0/23
2992+176.100.157.0/24
29852993 176.105.231.0/24
29862994 180.76.0.0/14
29872995 180.84.0.0/15
@@ -3014,9 +3022,7 @@
30143022 180.184.128.0/20
30153023 180.184.160.0/20
30163024 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
30203026 180.186.38.0/23
30213027 180.186.40.0/22
30223028 180.186.44.0/24
@@ -3081,23 +3087,28 @@
30813087 183.184.0.0/13
30823088 183.192.0.0/10
30833089 185.10.104.0/24
3090+185.25.104.0/24
30843091 185.39.51.0/24
30853092 185.75.172.0/23
30863093 185.75.174.0/24
3094+185.111.27.0/24
30873095 185.129.110.0/24
30883096 185.135.140.0/24
30893097 185.135.143.0/24
30903098 185.188.5.0/24
30913099 185.216.248.0/22
30923100 185.225.75.0/24
3101+185.232.18.0/24
30933102 185.234.214.0/23
3103+185.235.227.0/24
30943104 185.241.43.0/24
30953105 185.243.43.0/24
30963106 185.255.37.0/24
30973107 185.255.152.0/23
3098-185.255.169.0/24
30993108 188.131.128.0/17
31003109 188.240.225.0/24
3110+188.240.230.0/24
3111+188.241.243.0/24
31013112 191.101.45.0/24
31023113 191.101.47.0/24
31033114 192.55.46.0/24
@@ -3114,10 +3125,13 @@
31143125 193.108.56.0/24
31153126 193.109.82.0/24
31163127 193.112.0.0/16
3128+193.163.95.0/24
3129+193.202.113.0/24
31173130 193.228.169.0/24
31183131 194.15.39.0/24
31193132 194.50.1.0/24
31203133 194.58.42.0/24
3134+194.62.16.0/24
31213135 194.119.13.0/24
31223136 194.119.15.0/24
31233137 194.138.202.0/23
@@ -3125,7 +3139,7 @@
31253139 194.180.37.0/24
31263140 195.180.157.0/24
31273141 195.242.242.0/24
3128-198.8.58.0/23
3142+198.8.58.0/24
31293143 198.175.100.0/22
31303144 198.208.17.0/24
31313145 198.208.19.0/24
@@ -3428,10 +3442,10 @@
34283442 203.107.26.0/23
34293443 203.107.28.0/22
34303444 203.107.32.0/19
3431-203.107.72.0/22
3432-203.107.76.0/23
3445+203.107.72.0/21
34333446 203.107.80.0/21
34343447 203.107.96.0/23
3448+203.107.100.0/22
34353449 203.107.104.0/22
34363450 203.107.108.0/23
34373451 203.110.160.0/19
@@ -3467,7 +3481,7 @@
34673481 203.160.109.0/24
34683482 203.160.110.0/23
34693483 203.160.129.0/24
3470-203.160.192.0/19
3484+203.160.212.0/24
34713485 203.161.192.0/19
34723486 203.166.160.0/22
34733487 203.166.165.0/24
@@ -3550,7 +3564,6 @@
35503564 203.223.21.0/24
35513565 203.223.23.0/24
35523566 204.114.176.0/23
3553-205.132.61.0/24
35543567 206.161.216.0/23
35553568 206.161.218.0/24
35563569 206.206.126.0/24
@@ -3559,8 +3572,8 @@
35593572 207.226.153.0/24
35603573 207.226.154.0/24
35613574 208.99.48.0/24
3575+208.103.182.0/24
35623576 209.146.7.0/24
3563-209.146.100.0/22
35643577 210.2.4.0/24
35653578 210.5.0.0/19
35663579 210.5.56.0/21
@@ -3638,7 +3651,6 @@
36383651 210.78.136.0/22
36393652 210.78.144.0/23
36403653 210.78.147.0/24
3641-210.78.168.0/24
36423654 210.79.224.0/19
36433655 210.82.0.0/15
36443656 210.87.128.0/18
@@ -3819,11 +3831,13 @@
38193831 211.167.128.0/19
38203832 211.167.176.0/20
38213833 211.167.224.0/19
3834+212.23.193.0/24
3835+212.23.198.0/24
38223836 212.64.0.0/17
38233837 212.129.128.0/17
3824-212.193.10.0/24
3838+213.170.223.0/24
3839+213.173.38.0/24
38253840 213.232.94.0/24
3826-216.177.132.0/24
38273841 216.228.126.0/24
38283842 218.0.0.0/11
38293843 218.56.0.0/13
--- a/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.ver
+++ b/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.ver
@@ -1 +1 @@
1-20230209
1+20230319
--- a/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.txt
+++ b/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.txt
@@ -12,17 +12,15 @@
1212 2001:dd9::/48
1313 2001:df0:2e00::/48
1414 2001:df0:59c0::/48
15+2001:df1:4580::/48
1516 2001:df1:5fc0::/48
1617 2001:df1:6b80::/48
17-2001:df1:a100::/48
1818 2001:df1:bd80::/48
1919 2001:df3:3a80::/48
2020 2001:df3:8b80::/48
2121 2001:df3:b380::/48
2222 2001:df5:7800::/48
23-2001:df6:f400::/48
2423 2001:df7:1480::/48
25-2049:8e02:f000::/36
2624 2400:1160::/32
2725 2400:3200::/32
2826 2400:5280:f803::/48
@@ -148,10 +146,12 @@
148146 2401:ec00::/32
149147 2401:fa00:40::/43
150148 2402:840:d000::/46
151-2402:840:e000::/48
149+2402:840:e001::/48
150+2402:840:f000::/38
152151 2402:1440::/32
153152 2402:2000::/32
154153 2402:2b40:8000::/36
154+2402:3180:8000::/33
155155 2402:3c00::/32
156156 2402:3f80:1400::/40
157157 2402:4440::/32
@@ -239,13 +239,14 @@
239239 2404:2280:10d::/48
240240 2404:2280:112::/47
241241 2404:2280:124::/47
242+2404:2280:13b::/48
242243 2404:2280:147::/48
243244 2404:2280:19d::/48
244245 2404:2280:1bd::/48
245-2404:2280:1be::/48
246246 2404:2280:1c1::/48
247247 2404:2280:1c2::/47
248248 2404:2280:1c4::/47
249+2404:2280:1c7::/48
249250 2404:2280:1c8::/48
250251 2404:2280:1cb::/48
251252 2404:2280:1cc::/48
@@ -298,50 +299,10 @@
298299 2404:ea80:700:695::/64
299300 2404:ea80:700:696::/63
300301 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
345306 2405:1480:1000::/48
346307 2405:1480:2000::/48
347308 2405:1fc0:720::/48
@@ -356,17 +317,19 @@
356317 2405:6940::/48
357318 2405:6f00::/32
358319 2405:7040:6000::/47
320+2405:78c0:6e0e::/48
321+2405:78c0:6e1e::/48
322+2405:84c0:6c00::/44
359323 2405:84c0:8100::/44
360-2405:84c0:8d00::/40
361-2405:84c0:9000::/44
324+2405:84c0:9727::/48
362325 2405:84c0:9890::/44
326+2405:84c0:9e00::/40
363327 2405:84c0:fa00::/40
364328 2405:84c0:fbbb::/48
365329 2405:84c0:fdfc::/46
366-2405:84c0:ff10::/47
330+2405:84c0:ff11::/48
367331 2405:84c0:ff13::/48
368332 2405:84c0:ff1f::/48
369-2405:84c0:ff25::/48
370333 2405:84c0:ff30::/48
371334 2405:8a40::/32
372335 2405:a900::/32
@@ -379,21 +342,22 @@
379342 2406:840:10::/45
380343 2406:840:20::/48
381344 2406:840:44::/47
345+2406:840:78::/48
382346 2406:840:80::/47
383347 2406:840:90::/48
384348 2406:840:100::/47
385349 2406:840:111::/48
350+2406:840:1c0::/48
386351 2406:840:301::/48
387352 2406:840:380::/48
388353 2406:840:3c0::/48
389-2406:840:400::/48
354+2406:840:580::/48
390355 2406:840:800::/42
391356 2406:840:840::/47
392357 2406:840:860::/48
393358 2406:840:880::/48
394359 2406:840:c00::/48
395360 2406:840:c10::/48
396-2406:840:1110::/48
397361 2406:840:1860::/48
398362 2406:840:4100::/47
399363 2406:840:4380::/47
@@ -407,8 +371,8 @@
407371 2406:840:9002::/48
408372 2406:840:9200::/40
409373 2406:840:9700::/40
410-2406:840:9840::/44
411374 2406:840:9960::/44
375+2406:840:9980::/48
412376 2406:840:9ef0::/44
413377 2406:840:ac10::/44
414378 2406:840:c0a8::/48
@@ -424,9 +388,7 @@
424388 2406:840:e180::/44
425389 2406:840:e20f::/48
426390 2406:840:e247::/48
427-2406:840:e280::/44
428391 2406:840:e300::/44
429-2406:840:e340::/44
430392 2406:840:e360::/48
431393 2406:840:e36f::/48
432394 2406:840:e500::/47
@@ -436,14 +398,8 @@
436398 2406:840:e80f::/48
437399 2406:840:e841::/48
438400 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
446401 2406:840:eb80::/42
402+2406:840:f000::/44
447403 2406:840:f100::/47
448404 2406:840:f200::/44
449405 2406:840:f230::/44
@@ -460,7 +416,10 @@
460416 2406:840:fa00::/47
461417 2406:840:fcc0::/44
462418 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
464423 2406:840:fed1::/48
465424 2406:840:fed2::/48
466425 2406:840:fed4::/48
@@ -483,7 +442,6 @@
483442 2406:5340:6666::/48
484443 2406:5340:8888::/48
485444 2406:94c0::/48
486-2406:b640::/40
487445 2406:b640:100::/48
488446 2406:b640:4100::/48
489447 2406:cf00::/48
@@ -497,8 +455,9 @@
497455 2407:2440:2::/47
498456 2407:2440:4::/46
499457 2407:2440:8::/45
500-2407:2440:10::/48
458+2407:2440:10::/47
501459 2407:2440:12::/48
460+2407:2440:16::/48
502461 2407:2440:1e::/48
503462 2407:2840::/48
504463 2407:37c0::/32
@@ -519,6 +478,8 @@
519478 2407:c080::/35
520479 2407:c080:4000::/37
521480 2407:c080:5000::/37
481+2407:d340:7921::/48
482+2407:d340:8900::/44
522483 2408:4000::/22
523484 2408:8000::/48
524485 2408:8000:2::/47
@@ -1022,9 +983,6 @@
1022983 2408:8a26:c000::/34
1023984 2408:8a27:4000::/35
1024985 2409:2000:1000::/37
1025-2409:2200::/23
1026-2409:2400:1800::/37
1027-2409:2500:8::/48
1028986 2409:6100::/44
1029987 2409:8000::/20
1030988 240a:2000::/29
@@ -1088,8 +1046,10 @@
10881046 240d:c010:6c::/48
10891047 240d:c040::/44
10901048 240e::/20
1049+2602:2a3::/40
1050+2602:2a4:fe::/47
10911051 2602:faac::/40
1092-2602:fab0:10::/48
1052+2602:fab0:10::/47
10931053 2602:fafd:f10::/48
10941054 2602:fb26:700::/43
10951055 2602:fb26:720::/48
@@ -1097,6 +1057,7 @@
10971057 2602:fb26:7ff::/48
10981058 2602:fbda:600::/48
10991059 2602:fbda:666::/48
1060+2602:fbda:730::/44
11001061 2602:fc1d::/47
11011062 2602:fc52:311::/48
11021063 2602:fc52:312::/48
@@ -1111,8 +1072,11 @@
11111072 2602:feda:20::/44
11121073 2602:feda:182::/47
11131074 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
11161080 2602:feda:2d0::/47
11171081 2602:feda:2f0::/48
11181082 2602:feda:3c5::/48
@@ -1142,8 +1106,8 @@
11421106 2605:9d80:9071::/48
11431107 2605:9d80:9092::/48
11441108 2605:f440:cafe::/48
1145-2606:fdc0:ff::/48
11461109 2804:1e48::/32
1110+2a03:5840:f3::/48
11471111 2a03:5840:291::/48
11481112 2a03:5840:310::/48
11491113 2a04:3e00:1002::/48
@@ -1179,34 +1143,25 @@
11791143 2a05:1085::/32
11801144 2a05:1086:f000::/47
11811145 2a05:1087::/32
1146+2a05:dfc7:6420::/48
1147+2a05:dfc7:6430::/48
1148+2a05:dfc7:6440::/47
11821149 2a06:1287:300::/40
11831150 2a06:a001:a0c4::/48
1184-2a06:a005:5::/48
11851151 2a06:a005:f0::/44
11861152 2a06:a005:260::/43
11871153 2a06:a005:280::/42
11881154 2a06:a005:486::/48
11891155 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
11951156 2a06:a005:910::/44
11961157 2a06:a005:9c0::/48
11971158 2a06:a005:a13::/48
1198-2a06:a005:a80::/46
1199-2a06:a005:b60::/48
12001159 2a06:a005:b69::/48
1201-2a06:a005:c2e::/47
1202-2a06:a005:c30::/44
12031160 2a06:a005:c50::/44
12041161 2a06:a005:d00::/44
1205-2a06:a005:d26::/48
12061162 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
12101165 2a06:a005:d70::/44
12111166 2a06:a005:dc0::/44
12121167 2a06:a005:e50::/44
@@ -1214,37 +1169,33 @@
12141169 2a06:a005:e8a::/47
12151170 2a06:a005:ec0::/44
12161171 2a06:a005:f80::/44
1217-2a06:a005:fd1::/48
1218-2a06:a005:fe1::/48
1219-2a06:a005:ff1::/48
1220-2a06:a005:11f0::/44
12211172 2a06:a005:1200::/42
1222-2a06:a005:1240::/44
12231173 2a06:a005:13b0::/44
12241174 2a06:a005:13c0::/43
12251175 2a06:a005:13e0::/47
12261176 2a06:a005:13e8::/48
12271177 2a06:a005:13eb::/48
1228-2a06:a005:13ec::/47
1178+2a06:a005:13ed::/48
12291179 2a06:a005:1520::/44
1180+2a06:a005:15da::/48
12301181 2a06:a005:1700::/44
12311182 2a06:a005:1800::/48
12321183 2a06:a005:1880::/43
12331184 2a06:a005:1b60::/44
1185+2a06:a005:1ee0::/44
12341186 2a06:a005:2040::/44
12351187 2a06:a005:2100::/44
1188+2a06:a005:2200::/44
12361189 2a06:a005:2490::/44
1237-2a06:a005:2500::/44
12381190 2a06:a005:2510::/48
1239-2a06:a005:25b0::/44
1240-2a06:a005:26d0::/44
12411191 2a06:a005:28f1::/48
12421192 2a06:a005:28f2::/47
12431193 2a06:a005:28f4::/47
12441194 2a06:a005:2910::/44
12451195 2a06:a005:2921::/48
12461196 2a06:a005:2922::/47
1247-2a06:a005:2924::/48
1197+2a06:a005:2924::/47
1198+2a06:a005:2926::/48
12481199 2a06:a005:2930::/44
12491200 2a06:a005:2940::/43
12501201 2a06:a005:2960::/48
@@ -1252,8 +1203,10 @@
12521203 2a06:a005:2980::/44
12531204 2a06:a005:29d0::/47
12541205 2a06:a005:2a00::/42
1255-2a06:a005:2a80::/43
1206+2a06:a005:2a80::/44
12561207 2a06:a005:2af0::/44
1208+2a06:a005:2d30::/44
1209+2a06:a005:2d40::/42
12571210 2a06:e881:119::/48
12581211 2a06:e881:2509::/48
12591212 2a06:e881:5501::/48
@@ -1265,7 +1218,7 @@
12651218 2a09:4c2:2e::/48
12661219 2a09:b280::/48
12671220 2a09:b280:ff80::/46
1268-2a09:b280:ff84::/48
1221+2a09:b280:ff84::/47
12691222 2a09:b280:ffb0::/47
12701223 2a09:b280:ffb2::/48
12711224 2a09:b280:ffbb::/48
@@ -1282,6 +1235,7 @@
12821235 2a0a:6040:1b00::/40
12831236 2a0a:6040:2211::/48
12841237 2a0a:6040:2222::/48
1238+2a0a:6040:2228::/48
12851239 2a0a:6040:2233::/48
12861240 2a0a:6040:2235::/48
12871241 2a0a:6040:2255::/48
@@ -1292,41 +1246,41 @@
12921246 2a0a:6040:3420::/48
12931247 2a0a:6040:3430::/48
12941248 2a0a:6040:34ff::/48
1249+2a0a:6040:5555::/48
12951250 2a0a:6040:6c40::/44
12961251 2a0a:6040:a430::/48
12971252 2a0a:6040:a435::/48
12981253 2a0a:6040:a450::/47
1254+2a0a:6040:a720::/48
12991255 2a0a:6040:a900::/47
13001256 2a0a:6040:a902::/48
13011257 2a0a:6040:c601::/48
13021258 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
13041264 2a0a:6040:ce00::/40
13051265 2a0a:6040:d0ff::/48
13061266 2a0a:6040:d300::/48
1307-2a0a:6040:d311::/48
13081267 2a0a:6040:d320::/48
1309-2a0a:6040:d400::/48
1268+2a0a:6040:d400::/47
13101269 2a0a:6040:d600::/44
13111270 2a0a:6040:d710::/44
1312-2a0a:6040:d720::/44
1313-2a0a:6040:d740::/48
1314-2a0a:6040:d820::/48
13151271 2a0a:6040:e100::/40
13161272 2a0a:6040:e405::/48
13171273 2a0a:6040:e541::/48
13181274 2a0a:6040:e543::/48
13191275 2a0a:6040:e544::/48
13201276 2a0a:6040:e546::/48
1277+2a0a:6040:e54b::/48
13211278 2a0a:6040:e54c::/48
13221279 2a0a:6040:e900::/40
1323-2a0a:6040:ea00::/40
13241280 2a0a:6040:ec00::/40
13251281 2a0b:b86:ffe0::/48
13261282 2a0b:b87:ffb5::/48
1327-2a0b:2542::/48
13281283 2a0b:2542:300::/40
1329-2a0b:2542:400::/40
13301284 2a0b:4340:6::/48
13311285 2a0b:4340:22::/48
13321286 2a0b:4340:30::/44
@@ -1339,6 +1293,10 @@
13391293 2a0b:4340:a0::/44
13401294 2a0b:4340:c0::/44
13411295 2a0b:4340:d8::/48
1296+2a0b:4340:400::/46
1297+2a0b:4340:404::/47
1298+2a0b:4340:406::/48
1299+2a0b:4340:434::/48
13421300 2a0b:4340:530::/44
13431301 2a0b:4340:540::/44
13441302 2a0b:4340:1304::/48
@@ -1358,27 +1316,7 @@
13581316 2a0d:2581:fffc::/48
13591317 2a0d:2581:fffe::/47
13601318 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
13801319 2a0d:2687::/32
1381-2a0d:2902:caf0::/44
13821320 2a0d:2904::/44
13831321 2a0d:c7c7::/32
13841322 2a0e:800:6666::/48
@@ -1388,33 +1326,12 @@
13881326 2a0e:800:ff40::/42
13891327 2a0e:7581::/32
13901328 2a0e:8f02:f006::/48
1391-2a0e:97c0:330::/48
13921329 2a0e:97c0:550::/44
13931330 2a0e:97c0:5ef::/48
1394-2a0e:97c0:68e::/47
1331+2a0e:97c0:68f::/48
13951332 2a0e:97c0:804::/46
13961333 2a0e:97c0:831::/48
13971334 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
14181335 2a0e:97c7:aa0::/48
14191336 2a0e:97c7:c66::/48
14201337 2a0e:97c7:d99::/48
@@ -1434,16 +1351,17 @@
14341351 2a0e:aa07:e044::/48
14351352 2a0e:aa07:e046::/48
14361353 2a0e:aa07:e049::/48
1437-2a0e:aa07:e050::/48
1354+2a0e:aa07:e050::/44
14381355 2a0e:aa07:e060::/48
1356+2a0e:aa07:e070::/48
1357+2a0e:aa07:e072::/47
1358+2a0e:aa07:e074::/47
14391359 2a0e:aa07:e200::/44
14401360 2a0e:aa07:f000::/48
14411361 2a0e:aa07:f004::/48
14421362 2a0e:aa07:f009::/48
14431363 2a0e:aa07:f041::/48
14441364 2a0e:aa07:f042::/48
1445-2a0e:aa07:f097::/48
1446-2a0e:aa07:f09b::/48
14471365 2a0e:aa07:f0d0::/47
14481366 2a0e:aa07:f0d2::/48
14491367 2a0e:aa07:f0d4::/48
@@ -1452,47 +1370,43 @@
14521370 2a0e:b107:30::/48
14531371 2a0e:b107:32::/47
14541372 2a0e:b107:a0::/44
1455-2a0e:b107:1c1::/48
14561373 2a0e:b107:272::/48
14571374 2a0e:b107:510::/48
1375+2a0e:b107:512::/48
14581376 2a0e:b107:515::/48
14591377 2a0e:b107:517::/48
1460-2a0e:b107:580::/44
14611378 2a0e:b107:710::/48
14621379 2a0e:b107:790::/44
14631380 2a0e:b107:bd0::/48
1464-2a0e:b107:c10::/48
14651381 2a0e:b107:da0::/44
14661382 2a0e:b107:dce::/48
1467-2a0e:b107:ea2::/48
1468-2a0e:b107:f08::/45
1469-2a0e:b107:12c0::/44
14701383 2a0e:b107:1470::/44
14711384 2a0e:b107:14a0::/44
14721385 2a0e:b107:1572::/47
14731386 2a0e:b107:1574::/48
14741387 2a0e:b107:16b0::/44
14751388 2a0e:b107:178c::/47
1476-2a0e:b107:178e::/48
14771389 2a0e:b107:1980::/47
1478-2a0e:b107:1a40::/44
1390+2a0e:b107:1a40::/45
14791391 2a0e:b107:1b6f::/48
14801392 2a0e:b107:1d20::/47
14811393 2a0e:b107:1d25::/48
14821394 2a0f:5707:ac01::/48
14831395 2a0f:5707:fff4::/47
14841396 2a0f:7980::/44
1485-2a0f:85c1:30::/47
1397+2a0f:85c1:30::/48
14861398 2a0f:9400:6400::/40
1399+2a0f:9400:6800::/40
1400+2a0f:9400:6907::/48
14871401 2a0f:9400:6a00::/40
1488-2a0f:9400:7390::/47
1402+2a0f:9400:6c00::/40
14891403 2a0f:9400:7393::/48
14901404 2a0f:9400:7398::/48
14911405 2a0f:9400:7700::/48
14921406 2a0f:9400:770a::/48
14931407 2a0f:e401:131::/48
1494-2a0f:e401:132::/47
1495-2a10:2f00:12a::/48
1408+2a0f:e401:132::/48
1409+2a0f:e401:134::/48
14961410 2a10:2f00:13a::/48
14971411 2a10:2f00:15a::/48
14981412 2a10:2f00:186::/48
@@ -1510,27 +1424,15 @@
15101424 2a12:3fc2:aa10::/44
15111425 2a12:3fc2:ab50::/48
15121426 2a12:3fc2:e100::/44
1513-2a12:3fc2:e300::/40
15141427 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
15311431 2a12:3fc2:e72c::/47
1432+2a12:3fc2:e72e::/48
15321433 2a12:3fc2:e7fb::/48
1533-2a12:3fc2:e7fc::/46
1434+2a12:3fc2:e7fd::/48
1435+2a12:3fc2:e7fe::/47
15341436 2a12:3fc2:e800::/46
15351437 2a12:3fc2:e804::/48
15361438 2a12:3fc2:e808::/46
@@ -1538,95 +1440,229 @@
15381440 2a12:3fc2:e818::/46
15391441 2a12:3fc2:e820::/46
15401442 2a12:3fc2:e828::/45
1541-2a12:3fc2:e830::/46
15421443 2a12:3fc7::/48
15431444 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
15731587 2a12:dd47:80d0::/44
15741588 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
16251658 2a12:f8c0::/48
16261659 2a12:f8c1::/48
16271660 2a12:f8c3::/36
16281661 2a13:1800:10::/48
16291662 2a13:1800:80::/44
1663+2a13:b487:1200::/44
1664+2a13:b487:1b00::/47
1665+2a13:b487:1b02::/48
16301666 2c0f:f7a8:8011::/48
16311667 2c0f:f7a8:8050::/48
16321668 2c0f:f7a8:805f::/48
--- a/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.ver
+++ b/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.ver
@@ -1 +1 @@
1-20230209
1+20230319
--- a/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_list.txt
+++ b/applications/luci-app-homeproxy/root/etc/homeproxy/resources/china_list.txt
@@ -13,7 +13,6 @@
1313 001.com
1414 001133.app
1515 001daima.com
16-001en.com
1716 001jm.com
1817 001job.com
1918 001kd.com
@@ -28,7 +27,6 @@
2827 004218.com
2928 004678.com
3029 00544.com
31-0061.com.au
3230 00615.net
3331 007.pub
3432 00791.com
@@ -53,7 +51,6 @@
5351 00cdn.com
5452 00cha.com
5553 00cha.net
56-00dyun.xyz
5754 00ic.com
5855 00it.net
5956 00lewen.com
@@ -94,12 +91,10 @@
9491 01ke.com
9592 01ki.com
9693 01p.com
97-01retail.com
9894 01rv.com
9995 01teacher.com
10096 01tingshu.com
10197 01w.com
102-01water.com
10398 01wb.com
10499 01xs.com
105100 01yo.com
@@ -134,7 +129,6 @@
134129 021jingwu.com
135130 021js.com
136131 021lawfirm.com
137-021networks.com
138132 021phone.com
139133 021ren.com
140134 021sports.com
@@ -211,7 +205,6 @@
211205 027jz.cc
212206 027one.com
213207 027qyy.com
214-027tianle.com
215208 027tianlong.com
216209 027tytpf.com
217210 027wcbyy.com
@@ -256,7 +249,6 @@
256249 0328.com
257250 033033.com
258251 0335e.com
259-03412.com
260252 035110000.com
261253 0351data.com
262254 0351fdc.com
@@ -392,7 +384,6 @@
392384 0592dsw.com
393385 0592jj.com
394386 0592xl.com
395-05935.com
396387 0594.com
397388 0595job.com
398389 0595rc.com
@@ -555,7 +546,6 @@
555546 0852job.com
556547 0853rc.com
557548 0854job.com
558-0855job.com
559549 0856job.com
560550 0857job.com
561551 0859job.com
@@ -602,7 +592,6 @@
602592 0992.cc
603593 09ge.com
604594 09shijue.com
605-0a.fit
606595 0bug.org
607596 0car0.com
608597 0cname.com
@@ -845,6 +834,7 @@
845834 111155268.com
846835 1113.cc
847836 1113dns.com
837+1114dns.com
848838 11160066.com
849839 111com.net
850840 111g.com
@@ -930,7 +920,6 @@
930920 117play.com
931921 118114.net
932922 1188.com
933-118cha.com
934923 118cy.com
935924 118jm.com
936925 118pan.com
@@ -939,7 +928,6 @@
939928 118wa.com
940929 119120.org
941930 119958.com
942-119hn.com
943931 119tx.com
944932 119you.com
945933 11chuangye.com
@@ -970,7 +958,6 @@
970958 120askimages.com
971959 120bjgcyy.org
972960 120btc.com
973-120dxb.com
974961 120fd.com
975962 120kaoshi.com
976963 120kid.com
@@ -1027,7 +1014,6 @@
10271014 12365auto.com
10281015 12366.com
10291016 12366.net
1030-12366ca.com
10311017 12366cn.com
10321018 12366ns.com
10331019 123ad.com
@@ -1035,8 +1021,6 @@
10351021 123aoe.com
10361022 123baofeng.com
10371023 123bo.com
1038-123buyu.com
1039-123buyu.net
10401024 123ds.org
10411025 123du.cc
10421026 123ems.com
@@ -1139,6 +1123,7 @@
11391123 1351.com
11401124 135309.com
11411125 135320.com
1126+1353j.com
11421127 135650.com
11431128 13567.com
11441129 1356789.com
@@ -1188,10 +1173,8 @@
11881173 139wanke.com
11891174 139y.com
11901175 139zhuti.com
1191-13cg.com
11921176 13cr.com
11931177 13ejob.com
1194-13fuwu.com
11951178 13gm.com
11961179 13hangpifa.com
11971180 13ww.net
@@ -1532,10 +1515,8 @@
15321515 17ll.com
15331516 17luyouqi.com
15341517 17m3.com
1535-17maimaimai.com
15361518 17meiwen.com
15371519 17mf.com
1538-17miyou.com
15391520 17mqw.com
15401521 17ms.com
15411522 17neo.com
@@ -1581,6 +1562,7 @@
15811562 17wclass.com
15821563 17weike.com
15831564 17wendao.com
1565+17whz.com
15841566 17win.com
15851567 17ww.cc
15861568 17xie.com
@@ -1612,7 +1594,6 @@
16121594 180268900.com
16131595 18095.com
16141596 180qt.com
1615-181230.com
16161597 18183.com
16171598 18183g.com
16181599 1818hm.com
@@ -1723,7 +1704,6 @@
17231704 199yt.com
17241705 199zw.com
17251706 19call.com
1726-19kan.com
17271707 19lou.com
17281708 19mi.net
17291709 19mini.com
@@ -1831,6 +1811,7 @@
18311811 1qwe3r.com
18321812 1r1g.com
18331813 1rtb.com
1814+1rtb.net
18341815 1safety.cc
18351816 1sapp.com
18361817 1shang.com
@@ -1935,7 +1916,6 @@
19351916 20z.com
19361917 21-rent.com
19371918 21-sun.com
1938-210166.com
19391919 210997.com
19401920 210z.com
19411921 2113.net
@@ -1990,6 +1970,7 @@
19901970 21epub.com
19911971 21fid.com
19921972 21food.com
1973+21ge2.com
19931974 21hh.com
19941975 21hubei.com
19951976 21hubei.net
@@ -2037,7 +2018,6 @@
20372018 21voa.com
20382019 21wecan.com
20392020 21wenju.com
2040-21wmd.com
20412021 21ww.cc
20422022 21xc.com
20432023 21xcx.com
@@ -2095,7 +2075,6 @@
20952075 22k9.com
20962076 22lianmeng.com
20972077 22lrc.com
2098-22m6.com
20992078 22mt.in
21002079 22n.com
21012080 22net.com
@@ -2128,7 +2107,6 @@
21282107 233py.com
21292108 233wo.com
21302109 233ww.net
2131-233xiao.com
21322110 233xyx.com
21332111 234.com
21342112 2344.com
@@ -2203,7 +2181,6 @@
22032181 24geban.com
22042182 24haowan.com
22052183 24hmb.com
2206-24jz.com
22072184 24k99.com
22082185 24ker.com
22092186 24kplus.com
@@ -2220,7 +2197,6 @@
22202197 2500fang.com
22212198 2500sz.com
22222199 250sy.cc
2223-251633.com
22242200 2529.com
22252201 253.com
22262202 253669vqx.com
@@ -2290,7 +2266,6 @@
22902266 26ef.com
22912267 26host.com
22922268 26joy.com
2293-26ksw.com
22942269 26lady.com
22952270 26tc.com
22962271 26youxi.com
@@ -2307,7 +2282,6 @@
23072282 27aichi.com
23082283 27dt.com
23092284 27dy.com
2310-27glyy.com
23112285 27l.com
23122286 27lmfq.com
23132287 27lvpai.com
@@ -2394,6 +2368,7 @@
23942368 2ic.cc
23952369 2ita.com
23962370 2itcn.com
2371+2j-m.by
23972372 2j88.com
23982373 2jianli.com
23992374 2jiapu.com
@@ -2506,7 +2481,6 @@
25062481 3188.la
25072482 318ek.com
25082483 3198.com
2509-319n.com
25102484 31alu.com
25112485 31bxg.com
25122486 31byq.com
@@ -2530,6 +2504,7 @@
25302504 31mada.com
25312505 31martech.com
25322506 31meijia.com
2507+31ml.com
25332508 31mold.com
25342509 31myhome.com
25352510 31pump.com
@@ -2564,12 +2539,11 @@
25642539 322wl.com
25652540 3230.com
25662541 3234.com
2567-323507.com
25682542 3237.com
2569-323700.net
25702543 324.com
25712544 3259.com
25722545 326pay.com
2546+3280.com
25732547 32800.com
25742548 328f.com
25752549 328vip.com
@@ -2594,12 +2568,9 @@
25942568 3323399.com
25952569 332831.com
25962570 333-555.com
2597-3331909.com
2598-3332025.com
25992571 3332219.com
26002572 3332235.com
26012573 3332358.com
2602-3332600.com
26032574 333333.com
26042575 3335665.com
26052576 33360.com
@@ -2696,7 +2667,6 @@
26962667 3500.com
26972668 350200.com
26982669 350abc.net
2699-3511.net
27002670 352.com
27012671 3520.net
27022672 352200.com
@@ -2870,7 +2840,6 @@
28702840 3618med.com
28712841 361a.com
28722842 361dai.com
2873-361games.com
28742843 361mogame.com
28752844 361shipin.com
28762845 361sport.com
@@ -2901,6 +2870,7 @@
29012870 365cgw.com
29022871 365chanlun.com
29032872 365che.net
2873+365cyd.com
29042874 365cyd.net
29052875 365daan.com
29062876 365dhw.com
@@ -2919,7 +2889,6 @@
29192889 365htk.com
29202890 365huaer.com
29212891 365huifu.com
2922-365huo.com
29232892 365ibank.com
29242893 365icl.com
29252894 365ime.com
@@ -2956,7 +2925,6 @@
29562925 365xxy.com
29572926 365yg.com
29582927 365you.com
2959-365zzd.com
29602928 3663.com
29612929 366300.com
29622930 366ec.com
@@ -2977,6 +2945,7 @@
29772945 36cao.live
29782946 36dianping.com
29792947 36dj.com
2948+36dm.com
29802949 36hjob.com
29812950 36jr.com
29822951 36kr.com
@@ -2984,7 +2953,6 @@
29842953 36krcdn.com
29852954 36krcnd.com
29862955 36nu.com
2987-36sfw.com
29882956 36ve.net
29892957 36yc.com
29902958 36yh.com
@@ -3139,8 +3107,6 @@
31393107 3ddl.net
31403108 3ddl.org
31413109 3deazer.com
3142-3demoo.com
3143-3dfrom.com
31443110 3dgenomics.org
31453111 3dhao.com
31463112 3dhat.com
@@ -3238,9 +3204,7 @@
32383204 3s001.com
32393205 3s3w.com
32403206 3s78.com
3241-3sbase.com
32423207 3scard.com
3243-3seconds.net
32443208 3shuwu.com
32453209 3snews.net
32463210 3songshu.com
@@ -3254,7 +3218,6 @@
32543218 3v.do
32553219 3vjia.com
32563220 3vjuyuan.com
3257-3vkj.net
32583221 3vlm.net
32593222 3vsheji.com
32603223 3wads.com
@@ -3377,7 +3340,6 @@
33773340 43423manhua.com
33783341 435000.com
33793342 435200.com
3380-435214.com
33813343 4355.com
33823344 4366.com
33833345 436675.com
@@ -3425,8 +3387,6 @@
34253387 4493.com
34263388 44971.com
34273389 44dt.com
3428-44england.com
3429-44pq.co
34303390 44vs.com
34313391 453600.net
34323392 45575.com
@@ -3449,7 +3409,6 @@
34493409 46466.me
34503410 465676.tv
34513411 4658.net
3452-466.com
34533412 4662000.com
34543413 46644.com
34553414 46771313.com
@@ -3518,7 +3477,6 @@
35183477 4hpy.com
35193478 4inlook.com
35203479 4jplus.com
3521-4k-w.com
35223480 4k123.com
35233481 4kbizhi.com
35243482 4kong.com
@@ -3751,6 +3709,7 @@
37513709 51code.com
37523710 51cok.com
37533711 51comp.com
3712+51cosmo.com
37543713 51cpm.com
37553714 51credit.com
37563715 51csr.com
@@ -3907,6 +3866,7 @@
39073866 51kehui.com
39083867 51kids.com
39093868 51kik.com
3869+51kim.com
39103870 51kt.com
39113871 51ktbyte.com
39123872 51kupai.com
@@ -3943,6 +3903,7 @@
39433903 51minbingtuan.net
39443904 51miz.com
39453905 51mkf.com
3906+51mo.com
39463907 51mockup.com
39473908 51mokao.com
39483909 51mole.com
@@ -4026,7 +3987,6 @@
40263987 51sgg.cc
40273988 51share.net
40283989 51shebao.com
4029-51shebao.org
40303990 51sheyuan.com
40313991 51shiping.com
40323992 51shop.ink
@@ -4038,7 +3998,6 @@
40383998 51shyc.com
40393999 51signing.com
40404000 51sjk.com
4041-51sky.net
40424001 51sole.com
40434002 51speeds.com
40444003 51spjx.com
@@ -4058,7 +4017,6 @@
40584017 51testing.com
40594018 51testing.net
40604019 51testing.org
4061-51tfb.com
40624020 51tiangou.com
40634021 51tie.com
40644022 51tietu.net
@@ -4192,9 +4150,7 @@
41924150 52-ic.com
41934151 520.com
41944152 520.net
4195-5200.net
41964153 5200cc.com
4197-5200e.com
41984154 5200wx.com
41994155 520101.com
42004156 520520520520520.com
@@ -4220,10 +4176,8 @@
42204176 520mingmei.com
42214177 520mojing.com
42224178 520mwx.com
4223-520sz.com
42244179 520wawa.com
42254180 520way.com
4226-520wenshen.com
42274181 520xiazai.com
42284182 520xp.com
42294183 520xst.com
@@ -4257,7 +4211,7 @@
42574211 5257.com
42584212 5258.net
42594213 5258da.com
4260-5262.com
4214+525zf.com
42614215 52676.com
42624216 526net.com
42634217 527578.com
@@ -4285,7 +4239,6 @@
42854239 52audio.com
42864240 52ayw.com
42874241 52bar.com
4288-52bendi.com
42894242 52biquge.com
42904243 52bjd.com
42914244 52bji.com
@@ -4304,7 +4257,6 @@
43044257 52daohang.com
43054258 52debug.net
43064259 52design.com
4307-52dfg.com
43084260 52digua.com
43094261 52dmtp.com
43104262 52doc.com
@@ -4377,7 +4329,6 @@
43774329 52njl.net
43784330 52opencourse.com
43794331 52pcfree.com
4380-52ph.com
43814332 52pi.com
43824333 52pi.net
43834334 52pictu.com
@@ -4427,7 +4378,6 @@
44274378 52tt.com
44284379 52tup.com
44294380 52udl.com
4430-52ugame.xyz
44314381 52vr.com
44324382 52wana.com
44334383 52wanh5.cc
@@ -4543,7 +4493,6 @@
45434493 5507p.com
45444494 55178.com
45454495 55188.com
4546-551house.com
45474496 5523.com
45484497 55344.com
45494498 5548.net
@@ -4620,7 +4569,6 @@
46204569 56a.com
46214570 56ads.com
46224571 56beijing.org
4623-56ca.com
46244572 56care.com
46254573 56che.com
46264574 56china.com
@@ -4651,7 +4599,6 @@
46514599 56tchr.com
46524600 56tj.com
46534601 56uu.com
4654-56wen.com
46554602 56ye.net
46564603 56zzx.com
46574604 57.net
@@ -4730,7 +4677,6 @@
47304677 58display.com
47314678 58dns.org
47324679 58duihuan.com
4733-58fangdai.com
47344680 58food.com
47354681 58game.com
47364682 58gameup.com
@@ -4826,12 +4772,12 @@
48264772 59edu.com
48274773 59hs.com
48284774 59iedu.com
4775+59ni.com
48294776 59pk.net
48304777 59store.com
48314778 59w.net
48324779 59wj.com
48334780 59yx.com
4834-5a49.com
48354781 5a8.org
48364782 5aaa.com
48374783 5acbd.com
@@ -4869,6 +4815,7 @@
48694815 5earena.com
48704816 5earenacdn.com
48714817 5eplay.com
4818+5eplaycdn.com
48724819 5etv.com
48734820 5ewin.com
48744821 5fen.com
@@ -4884,6 +4831,7 @@
48844831 5gzm.net
48854832 5h.com
48864833 5ha.net
4834+5haoxue.net
48874835 5hrc.com
48884836 5hte21mz.com
48894837 5i-training.net
@@ -4897,7 +4845,6 @@
48974845 5iape.com
48984846 5ibc.net
48994847 5ibear.com
4900-5icaipu.com
49014848 5icbs.com
49024849 5ichecker.com
49034850 5ichong.com
@@ -4980,7 +4927,6 @@
49804927 5sem.com
49814928 5sha.com
49824929 5sharing.com
4983-5shiki.com
49844930 5snow.com
49854931 5stmt.com
49864932 5sw.com
@@ -5030,7 +4976,6 @@
50304976 60.cm
50314977 600052.com
50324978 60012.com
5033-600525.net
50344979 600895.com
50354980 600zi.com
50364981 601601.com
@@ -5103,7 +5048,6 @@
51035048 61tg.com
51045049 61xiangce.com
51055050 62.com
5106-6210k.com
51075051 623k.com
51085052 626688.com
51095053 62669.com
@@ -5195,7 +5139,6 @@
51955139 6655.com
51965140 6655.la
51975141 6660333.com
5198-6665890.com
51995142 6666519.net
52005143 666666.so
52015144 66667aaa.com
@@ -5215,11 +5158,9 @@
52155158 6678net.com
52165159 66825.com
52175160 668559.com
5218-6686x1.com
52195161 6688.com
52205162 66889.net
52215163 668895.com
5222-6688dns.com
52235164 6688pay.com
52245165 668app.com
52255166 668lw.com
@@ -5291,7 +5232,6 @@
52915232 678py.com
52925233 67joy.com
52935234 67lm.com
5294-67mb.com
52955235 67mo.com
52965236 67wanwan.com
52975237 67yes.com
@@ -5345,7 +5285,6 @@
53455285 69jianzhi.com
53465286 69mok.com
53475287 69ps.com
5348-69shu.org
53495288 69xiu.com
53505289 69yc.com
53515290 69ys.com
@@ -5442,7 +5381,6 @@
54425381 703804.com
54435382 7080edu.com
54445383 7082.com
5445-709xs.com
54465384 70dh.com
54475385 70dir.com
54485386 70god.com
@@ -5486,7 +5424,6 @@
54865424 71k.com
54875425 71lady.com
54885426 71lady.net
5489-71one.net
54905427 71p.net
54915428 71study.com
54925429 71txt.com
@@ -5614,6 +5551,7 @@
56145551 7724.com
56155552 7724yx.com
56165553 7725.com
5554+77275.cc
56175555 7729.com
56185556 77313.com
56195557 77348k.com
@@ -5727,13 +5665,11 @@
57275665 7capp.com
57285666 7ccj.com
57295667 7chacha.com
5730-7chajiu.com
57315668 7cmz.com
57325669 7cname.com
57335670 7cxk.com
57345671 7dah8.com
57355672 7dapei.com
5736-7dianw.com
57375673 7didc.com
57385674 7do.net
57395675 7down.com
@@ -5758,7 +5694,6 @@
57585694 7hon.com
57595695 7huang.org
57605696 7i2.com
5761-7icp.com
57625697 7ipr.com
57635698 7jia.com
57645699 7jia2.com
@@ -5868,7 +5803,6 @@
58685803 800mei.net
58695804 800pharm.com
58705805 800tu.com
5871-800ux.com
58725806 800vod.com
58735807 800xs.net
58745808 800you.com
@@ -5902,7 +5836,6 @@
59025836 80juqing.com
59035837 80kongjian.com
59045838 80kuku.com
5905-80ml.com
59065839 80nb.com
59075840 80note.com
59085841 80paper.com
@@ -5932,10 +5865,10 @@
59325865 81677.com
59335866 8169.com
59345867 817398.com
5868+8175835ccc.com
59355869 81761.com
59365870 817711.com
59375871 818.com
5938-818371.com
59395872 818it.com
59405873 818ps.com
59415874 818rmb.com
@@ -6024,9 +5957,9 @@
60245957 85384.com
60255958 853lab.com
60265959 85462.lc
5960+8555220.com
60275961 8558.org
60285962 85679999.com
6029-857yzf.com
60305963 8587.se
60315964 85878078.com
60325965 858game.com
@@ -6040,6 +5973,7 @@
60405973 8616.at
60415974 86175.com
60425975 861817.com
5976+861ppt.com
60435977 86215.com
60445978 8624x.com
60455979 86255845.com
@@ -6079,6 +6013,7 @@
60796013 86jg.com
60806014 86jobs.com
60816015 86joy.com
6016+86kang.com
60826017 86kl.com
60836018 86kongqi.com
60846019 86lawyer.com
@@ -6178,11 +6113,9 @@
61786113 888ppt.com
61796114 888rj.com
61806115 8890tu.com
6181-8898wz.com
61826116 88995799.com
61836117 88999.com
61846118 8899yyy.vip
6185-889su.com
61866119 88bank.com
61876120 88bx.com
61886121 88cdn.com
@@ -6214,7 +6147,6 @@
62146147 88zha.com
62156148 88zyw.net
62166149 8910.io
6217-89125845.vip
62186150 89178.com
62196151 89243599.vip
62206152 89274.st
@@ -6248,6 +6180,7 @@
62486180 8cheche.com
62496181 8cname.com
62506182 8cnet.com
6183+8d7hhh8x.com
62516184 8da.com
62526185 8ddao.com
62536186 8dexpress.com
@@ -6260,6 +6193,7 @@
62606193 8dwww.com
62616194 8e8z.com
62626195 8europe.com
6196+8fe.com
62636197 8fenxiang.com
62646198 8gov.com
62656199 8gw.com
@@ -6272,7 +6206,6 @@
62726206 8jxn.com
62736207 8jzw.cc
62746208 8k7k.com
6275-8k8z.com
62766209 8kana.com
62776210 8kzw.com
62786211 8l8e.com
@@ -6441,6 +6374,7 @@
64416374 91fifa.com
64426375 91game.com
64436376 91gaoding.com
6377+91goodschool.com
64446378 91guzhi.com
64456379 91h5.cc
64466380 91haiju.com
@@ -6590,7 +6524,6 @@
65906524 92aq.com
65916525 92ay.com
65926526 92bbs.net
6593-92bizhi.com
65946527 92cloud.com
65956528 92demo.com
65966529 92dp.com
@@ -6686,7 +6619,6 @@
66866619 94mxd.com
66876620 94nw.com
66886621 94php.com
6689-94pm.com
66906622 94q.com
66916623 94qy.com
66926624 94rp.com
@@ -6773,6 +6705,7 @@
67736705 96516.net
67746706 96520.com
67756707 96533.com
6708+965373.com
67766709 9665.com
67776710 966599.com
67786711 9666sr.com
@@ -6786,7 +6719,6 @@
67866719 96877.net
67876720 968pk.com
67886721 969009.com
6789-9697.com
67906722 969g.com
67916723 96bbs.com
67926724 96caifu.com
@@ -6806,7 +6738,6 @@
68066738 96yx.com
68076739 96zxue.com
68086740 97-7.com
6809-970655.com
68106741 9718.com
68116742 9718game.com
68126743 9724.com
@@ -6847,6 +6778,7 @@
68476778 980512.com
68486779 980cje.com
68496780 98158.com
6781+98182.com
68506782 984g.com
68516783 985.so
68526784 985dh.com
@@ -6855,6 +6787,7 @@
68556787 98654.com
68566788 987.com
68576789 9871.org
6790+9873.com
68586791 987app.com
68596792 987jx.com
68606793 987jx.net
@@ -6874,10 +6807,11 @@
68746807 98mp.com
68756808 98nice.com
68766809 98one.com
6810+98t.la
68776811 98t.net
68786812 98weixin.com
6813+98wubi.com
68796814 98znz.com
6880-99-ss.com
68816815 99.com
68826816 99083.com
68836817 99114.com
@@ -6904,6 +6838,7 @@
69046838 9966w.com
69056839 996a.com
69066840 996dns.com
6841+996pic.com
69076842 9973.com
69086843 997788.com
69096844 998.com
@@ -6994,7 +6929,6 @@
69946929 99weiqi.com
69956930 99wuxian.com
69966931 99xr.com
6997-99xxg.com
69986932 99xyx.com
69996933 99yoo.com
70006934 99youmeng.com
@@ -7110,6 +7044,7 @@
71107044 9wee.net
71117045 9weihu.com
71127046 9wuli.com
7047+9wwx.com
71137048 9xgame.com
71147049 9xiazaiqi.com
71157050 9xiu.com
@@ -7133,7 +7068,6 @@
71337068 9zjob.com
71347069 9zx.com
71357070 a-du.net
7136-a-hospital.com
71377071 a-jazz.com
71387072 a-liai.com
71397073 a-map.link
@@ -7153,7 +7087,6 @@ a5.net
71537087 a5idc.net
71547088 a632079.me
71557089 a67dy.com
7156-a6a1.com
71577090 a6shi.com
71587091 a7.com
71597092 a8.com
@@ -7220,13 +7153,13 @@ abclogs.com
72207153 abcs8.com
72217154 abctang.com
72227155 abcve.com
7223-abcxs.com
72247156 abcxyzkk.xyz
72257157 abcydia.com
72267158 abd007.com
72277159 abdstem.com
72287160 abe-tech.com
72297161 abeacon.com
7162+abgxxc.com
72307163 abhouses.com
72317164 abiechina.com
72327165 abiestem.com
@@ -7390,6 +7323,7 @@ adapay.tech
73907323 adarrive.com
73917324 adaxin.com
73927325 adbats.com
7326+adbkwai.com
73937327 adbxb.com
73947328 adc-expo.com
73957329 adccd.com
@@ -7450,7 +7384,6 @@ adminportal.cdnetworks.com
74507384 adminso.com
74517385 admintony.com
74527386 adminxy.com
7453-admpub.com
74547387 admqr.com
74557388 adnineplus.com
74567389 adnyg.com
@@ -7485,6 +7418,7 @@ adtchrome.com
74857418 adtianmai.com
74867419 adtime.com
74877420 adtmm.com
7421+adtxl.com
74887422 adubest.com
74897423 adukwai.com
74907424 adunicorn.com
@@ -7580,7 +7514,6 @@ agefans.app
75807514 agenge.com
75817515 agenow.com
75827516 agentzh.org
7583-agfoodpartnership.com
75847517 aggresmart.com
75857518 aghcdn.com
75867519 agile-china.com
@@ -7625,7 +7558,6 @@ ahchuangyebang.com
76257558 ahcjhjj.com
76267559 ahcnb.com
76277560 ahdf56.com
7628-ahdltj.com
76297561 ahdsez.com
76307562 ahdzfp.com
76317563 aheading.com
@@ -7660,7 +7592,6 @@ ahlib.com
76607592 ahlife.com
76617593 ahljnews.com
76627594 ahlsm1.com
7663-ahmayun.com
76647595 ahmky.com
76657596 ahnanfang.com
76667597 ahnews.org
@@ -7685,7 +7616,6 @@ ahuano.com
76857616 ahudows.com
76867617 ahugeship.com
76877618 ahuyi.com
7688-ahwkdz.com
76897619 ahwwnews.com
76907620 ahwxcs.com
76917621 ahxwkj.com
@@ -7864,6 +7794,7 @@ aimapp.net
78647794 aimatech.com
78657795 aimatrix.ai
78667796 aimeas.com
7797+aimei39.com
78677798 aimeideni.com
78687799 aimeike.tv
78697800 aimeit.com
@@ -7906,7 +7837,6 @@ aiqygogo.com
79067837 aiqzu.net
79077838 air-level.com
79087839 air-matters.com
7909-air-quality.com
79107840 air.cc
79117841 airbft.com
79127842 airchangan.com
@@ -7918,6 +7848,7 @@ airchinajet.com
79187848 airchinamedia.com
79197849 aircn.org
79207850 aircourses.com
7851+airdoc.com
79217852 airdropin.com
79227853 airen1314.com
79237854 airguilin.com
@@ -7971,7 +7902,6 @@ aitiancheng.com
79717902 aitrans.net
79727903 aitransfy.com
79737904 aituan.com
7974-aitupian.com
79757905 aituwo.com
79767906 aityp.com
79777907 aiufida.com
@@ -7982,6 +7912,7 @@ aiuxian.com
79827912 aiuxstudio.com
79837913 aiviy.com
79847914 aiviysoft.com
7915+aivote.com
79857916 aiwall.com
79867917 aiwan4399.com
79877918 aiwan91.com
@@ -8064,7 +7995,6 @@ ajkimg.com
80647995 ajmide.com
80657996 ajrcb.com
80667997 ajs17.com
8067-aju.space
80687998 ajwang.com
80697999 ajweishequ.com
80708000 ajxlx.com
@@ -8233,6 +8163,7 @@ aliplay.com
82338163 aliplus.com
82348164 aliqiche.com
82358165 aliresearch.com
8166+alisabelen.com
82368167 alisoft.com
82378168 alisports.com
82388169 alitchina.com
@@ -8452,7 +8383,6 @@ amo9.com
84528383 amobbs.com
84538384 amoe.cc
84548385 amon.org
8455-amon1997.com
84568386 ampc8.com
84578387 ampcn.com
84588388 amplesky.com
@@ -8462,13 +8392,11 @@ ams-ic.com
84628392 amsjsy.com
84638393 amsoveasea.com
84648394 amssro.net
8465-amtlf.com
84668395 amtron-ic.com
84678396 amuletj.com
84688397 amuletor.com
84698398 amunion.com
84708399 amuren.com
8471-amwayapp.com
84728400 amwiki.org
84738401 amysql.com
84748402 amyxun.com
@@ -8493,6 +8421,7 @@ ancii.com
84938421 ancun.com
84948422 andaike.com
84958423 andan.me
8424+andcaifu.com
84968425 andeyi1688.com
84978426 andfx.net
84988427 andhj.com
@@ -8501,7 +8430,6 @@ andpay.me
85018430 andreader.com
85028431 android-doc.com
85038432 android-studio.org
8504-androidchina.net
85058433 androidinvest.com
85068434 androidmi.com
85078435 androidonline.net
@@ -8534,7 +8462,6 @@ anglo-chinese.com
85348462 angogotech.net
85358463 angruo.com
85368464 angrymiao.com
8537-anguanjia.com
85388465 angui.org
85398466 angwei.net
85408467 anhei2.com
@@ -8590,14 +8517,11 @@ anlu114.com
85908517 anmobc.com
85918518 anmoxiansheng.com
85928519 ann9.com
8593-annangela.moe
8594-anneishuo.com
85958520 annelhair.com
85968521 annhe.net
85978522 annto.com
85988523 anoah.com
85998524 anonym-hi.com
8600-anoob.icu
86018525 anorectal.net
86028526 anosmcloud.com
86038527 anoyi.com
@@ -8610,7 +8534,6 @@ anquanbao.com
86108534 anquanke.com
86118535 anquanquan.info
86128536 anquantong.com
8613-anquanxia.com
86148537 anrayer.com
86158538 anren.org
86168539 anrenmind.com
@@ -8656,6 +8579,7 @@ anw.red
86568579 anweishi.com
86578580 anweizhi.com
86588581 anwen.cc
8582+anwsa.com
86598583 anxcn.com
86608584 anxia.com
86618585 anxiaoer.com
@@ -8680,7 +8604,6 @@ anyang100.com
86808604 anyangedu.com
86818605 anyant.com
86828606 anybeen.com
8683-anydd.com
86848607 anyelse.com
86858608 anyew.com
86868609 anyforweb.com
@@ -8701,7 +8624,6 @@ anyunjianzhan.com
87018624 anyv.net
87028625 anyview.net
87038626 anyway.fm
8704-anywlan.com
87058627 anywood.com
87068628 anyxz.com
87078629 anzerclub.com
@@ -8722,7 +8644,6 @@ aoapp.com
87228644 aobacore.com
87238645 aobaishi.com
87248646 aobosoft.com
8725-aoc.com
87268647 aocde.com
87278648 aocdn.com
87288649 aoch.com
@@ -8816,6 +8737,7 @@ apclc.com
88168737 apcupse.com
88178738 apdcdn.com
88188739 ape8.com
8740+apecome.com
88198741 apeeri.com
88208742 apehorse.com
88218743 apeiwan.com
@@ -8835,6 +8757,7 @@ apicase.io
88358757 apicloud.com
88368758 apicvn.com
88378759 apigwtencent.com
8760+apimkt.net
88388761 apiview.com
88398762 apizb.com
88408763 apizl.com
@@ -9029,7 +8952,6 @@ archsummit.com
90298952 arcsoftai.com
90308953 arctime.org
90318954 ardsec.com
9032-areachina.com
90338955 areader.com
90348956 arebz.com
90358957 arefly.com
@@ -9082,7 +9004,6 @@ artgohome.com
90829004 artgoin.com
90839005 arthome163.com
90849006 arthurchiao.art
9085-arti200.com
90869007 artimg.net
90879008 artintern.net
90889009 artlinkart.com
@@ -9156,7 +9077,6 @@ asketchup.com
91569077 askk.cc
91579078 asklib.com
91589079 asklicai.com
9159-askmaclean.com
91609080 askpanda.cc
91619081 askququ.com
91629082 asktao.com
@@ -9341,7 +9261,6 @@ auwinner.com
93419261 auxgroup.com
93429262 auyou.com
93439263 av-ic.com
9344-av010.com
93459264 av199.com
93469265 av2.me
93479266 av269.com
@@ -9355,8 +9274,8 @@ avatr.com
93559274 avc-mr.com
93569275 avc-ott.com
93579276 avdll.com
9277+avemaria.fun
93589278 aves.art
9359-avexchina.com
93609279 avgh5.com
93619280 avhome.net
93629281 avic.com
@@ -9395,12 +9314,15 @@ awotuan.com
93959314 awoyun.com
93969315 awsdns-cn-36.net
93979316 awsdns-cn-57.com
9317+awsdns-cn-58.net
9318+awsl.wang
93989319 awsok.com
93999320 awspal.com
94009321 awstar.net
94019322 awtmt.com
94029323 awuming.com
94039324 awx1.com
9325+awyyzx.com
94049326 ax2nc4.ren
94059327 ax630.com
94069328 axatp.com
@@ -9468,7 +9390,6 @@ b-element.com
94689390 b-eurochina.com
94699391 b-fairy.com
94709392 b086.com
9471-b0w.me
94729393 b1446.com
94739394 b178.com
94749395 b1bj.com
@@ -9490,7 +9411,6 @@ b2bvip.net
94909411 b2byao.com
94919412 b2cedu.com
94929413 b2q.com
9493-b35ii.com
94949414 b3inside.com
94959415 b3log.org
94969416 b3logfile.com
@@ -9619,6 +9539,7 @@ baidupcs.com
96199539 baidusmartapps.com
96209540 baidusobing.com
96219541 baidustatic.com
9542+baidusx.com
96229543 baidutab.com
96239544 baidutieba.com
96249545 baidutt.com
@@ -9630,7 +9551,6 @@ baiduyun.com
96309551 baiduyun.wiki
96319552 baiduyundns.com
96329553 baiduyundns.net
9633-baiduyunpan.com
96349554 baiduyunsousou.com
96359555 baiduyy.com
96369556 baiduzjn.com
@@ -9658,6 +9578,7 @@ baihuoke.com
96589578 baihuwang.com
96599579 baiila.com
96609580 baiinfo.com
9581+baijia.com
96619582 baijiacloud.com
96629583 baijiahulian.com
96639584 baijiasheping.com
@@ -9744,7 +9665,6 @@ baixingcdn.com
97449665 baixingjd.com
97459666 baixingmall.com
97469667 baixingzixun.com
9747-baixiongz.com
97489668 baixiu.org
97499669 baiyangwang.com
97509670 baiyangzb.com
@@ -9823,6 +9743,7 @@ bangcle.com
98239743 bangdao-tech.com
98249744 banggo.com
98259745 banghaiwai.com
9746+bangjixia.com
98269747 bangkao.com
98279748 bangkebao.com
98289749 banglianai.com
@@ -9848,7 +9769,6 @@ banjiamao.com
98489769 banjixiaoguanjia.com
98499770 banjuanshu.com
98509771 bank-of-china.com
9851-bank-swift-code.info
98529772 bankcomm.com
98539773 bankcomm.com.mo
98549774 bankcomm.com.tw
@@ -9873,6 +9793,7 @@ banma.com
98739793 banmaaike.com
98749794 banmajsq.com
98759795 banmamedia.com
9796+banmashuo.com
98769797 banmasrf.com
98779798 banpie.info
98789799 banqumusic.com
@@ -9887,6 +9808,7 @@ banxiayue.com
98879808 banyuetan.org
98889809 banyuetanxcx.com
98899810 banyunjuhe.com
9811+banzhe.xyz
98909812 banzou.name
98919813 bao-cun.com
98929814 bao-fang.com
@@ -9909,7 +9831,6 @@ baobeihr.com
99099831 baobeihuijia.com
99109832 baobeita.com
99119833 baobeituan.com
9912-baocai.com
99139834 baocdn.com
99149835 baochaojianghu.com
99159836 baodan360.com
@@ -10042,6 +9963,7 @@ batterydir.com
100429963 batterykey.com
100439964 battlecare.net
100449965 battleofballs.com
9966+batupian.net
100459967 baudu.com
100469968 baufortune.com
100479969 bauschlombchina.com
@@ -10055,7 +9977,6 @@ baydn.com
100559977 baye.tech
100569978 bayescom.com
100579979 bayimob.com
10058-bayinfu.com
100599980 bayinh.com
100609981 bayinmao.com
100619982 bayuegua.com
@@ -10077,9 +9998,9 @@ bazp.net
100779998 bb-edu.com
100789999 bb-game.com
1007910000 bb-pco.com
10080-bb-seo.com
1008110001 bb06.com
1008210002 bb179.com
10003+bb8gk.com
1008310004 bbanp.com
1008410005 bbaod.com
1008510006 bbaqw.com
@@ -10137,7 +10058,6 @@ bbugifts.com
1013710058 bbwfish.com
1013810059 bbwxbbs.com
1013910060 bbxinwen.com
10140-bbytpjm.com
1014110061 bbzhh.com
1014210062 bbzhi.com
1014310063 bcactc.com
@@ -10149,11 +10069,9 @@ bcbm66666.com
1014910069 bcbm688.com
1015010070 bcbpm.com
1015110071 bcbvi.com
10152-bccfw.com
1015310072 bccn.net
1015410073 bccnsoft.com
1015510074 bccv.com
10156-bcczbj.com
1015710075 bcdaren.com
1015810076 bcdy.net
1015910077 bceapp.com
@@ -10183,7 +10101,6 @@ bcty365.com
1018310101 bcvbw.com
1018410102 bcwangluo.net
1018510103 bcweibo.com
10186-bcwhy.com
1018710104 bcwxfy.com
1018810105 bcxgame.com
1018910106 bcxww.com
@@ -10191,7 +10108,6 @@ bcy.net
1019110108 bcyimg.com
1019210109 bczcdn.com
1019310110 bczs.net
10194-bczx.cc
1019510111 bd-apaas.com
1019610112 bd-caict.com
1019710113 bd-film.cc
@@ -10266,6 +10182,7 @@ bearyboard.com
1026610182 bearychat.com
1026710183 beasure.com
1026810184 beats-digital.com
10185+beatsbydre.com
1026910186 beatu.net
1027010187 beautifullinux.com
1027110188 beautifulzzzz.com
@@ -10274,6 +10191,7 @@ beckwai.com
1027410191 bedtimepoem.com
1027510192 beduu.com
1027610193 bee-net.com
10194+bee-station.com
1027710195 beebeepop.com
1027810196 beebeeto.com
1027910197 beecook.com
@@ -10305,7 +10223,6 @@ beianw.net
1030510223 beibaozq.com
1030610224 beibei.com
1030710225 beibeicdn.com
10308-beibj.com
1030910226 beicdn.com
1031010227 beidahuang.net
1031110228 beidasoft.com
@@ -10321,7 +10238,6 @@ beieryouxi.com
1032110238 beifabook.com
1032210239 beifang.net
1032310240 beifangfoshifen.com
10324-beifangyanxue.net
1032510241 beifeng.com
1032610242 beifuni.com
1032710243 beiguorc.com
@@ -10564,8 +10480,8 @@ bgsdk.net
1056410480 bgsdyz.com
1056510481 bgteach.com
1056610482 bguai.com
10483+bgwcsz.com
1056710484 bgwl.net
10568-bgxlre.com
1056910485 bgyfhyx.com
1057010486 bh.sb
1057110487 bh1t.com
@@ -10616,6 +10532,7 @@ biao12.com
1061610532 biaodan.info
1061710533 biaodiancloud.com
1061810534 biaodianfu.com
10535+biaofaw.com
1061910536 biaoge.com
1062010537 biaoge.me
1062110538 biaoju01.com
@@ -10629,6 +10546,7 @@ biaoqingjia.com
1062910546 biaoqingmm.com
1063010547 biaotukeji.com
1063110548 biaoyi.com
10549+biaozhangshi.com
1063210550 biaozhiku.com
1063310551 biaozhun.org
1063410552 biaozhun8.com
@@ -10640,7 +10558,6 @@ bibenet.com
1064010558 bibgame.com
1064110559 bibibi.net
1064210560 bibiku.com
10643-biblibili.com
1064410561 bibuzhengxing.com
1064510562 bid-view.com
1064610563 bidchance.com
@@ -10691,7 +10608,6 @@ bigerdata.com
1069110608 bigeshuju.com
1069210609 biggerlens.com
1069310610 biggeryun.com
10694-biggsai.com
1069510611 bigherdsman.com
1069610612 bightbc.com
1069710613 bigjpg.com
@@ -10720,6 +10636,7 @@ biji.com
1072010636 biji.io
1072110637 biji13.com
1072210638 bijiago.com
10639+bijianzw.com
1072310640 bijiao.org
1072410641 bijiasso.com
1072510642 bijiatu.com
@@ -10776,7 +10693,6 @@ billowlink.com
1077610693 billwang.net
1077710694 bilnn.com
1077810695 bim-times.com
10779-bimcn.org
1078010696 bimilou.com
1078110697 bimo.cc
1078210698 binaryai.net
@@ -10883,7 +10799,6 @@ biqugexs.la
1088310799 biqugexsw.com
1088410800 biqugexsw8.com
1088510801 biqugexx.com
10886-biqugu.net
1088710802 biquguan.com
1088810803 biqukan.com
1088910804 biquke.com
@@ -10902,7 +10817,6 @@ biqutxt.com
1090210817 biquw.com
1090310818 biquwo.com
1090410819 biquwo.net
10905-biquwu.cc
1090610820 biquwx.la
1090710821 biquxs.com
1090810822 biquyue.com
@@ -10997,7 +10911,6 @@ bizchallenge.net
1099710911 bizcharts.net
1099810912 bizcn.com
1099910913 bizconfstreaming.com
11000-bizgame.com
1100110914 bizhi360.com
1100210915 bizhi88.com
1100310916 bizhicool.com
@@ -11014,7 +10927,6 @@ bizvane.com
1101410927 bj-apc.com
1101510928 bj-big.com
1101610929 bj-dsmzyy.com
11017-bj-ka.com
1101810930 bj-kpn.com
1101910931 bj-sagtar.com
1102010932 bj-sea.com
@@ -11113,7 +11025,6 @@ bjidit.com
1111311025 bjinfobank.com
1111411026 bjipwqzx.com
1111511027 bjiwex.com
11116-bjjbsj.com
1111711028 bjjchf.com
1111811029 bjjdwx.com
1111911030 bjjf.cc
@@ -11142,7 +11053,6 @@ bjllsy.com
1114211053 bjlmfq.com
1114311054 bjlongview.com
1114411055 bjlot.com
11145-bjlxss.com
1114611056 bjlyw.com
1114711057 bjmailqq.com
1114811058 bjmama.com
@@ -11187,7 +11097,6 @@ bjsctx.com
1118711097 bjsdfz.com
1118811098 bjsdr.org
1118911099 bjsfrj.com
11190-bjshcw.com
1119111100 bjsheng.com
1119211101 bjsidao.com
1119311102 bjsjob.com
@@ -11336,7 +11245,6 @@ bliner.me
1133611245 bling.link
1133711246 blingabc.com
1133811247 blingclubs.com
11339-blinkol.com
1134011248 blissmall.net
1134111249 blizzardcn.com
1134211250 bln7.com
@@ -11464,7 +11372,6 @@ boanying.com
1146411372 bob-cardif.com
1146511373 bob-leasing.com
1146611374 bob.com
11467-bob2012.com
1146811375 bob4885.com
1146911376 bobaow.com
1147011377 bobbns.com
@@ -11572,6 +11479,7 @@ bomin-china.com
1157211479 bomman.com
1157311480 bon-top.com
1157411481 bon-wine.com
11482+bonbonbongame.com
1157511483 bondlady.com
1157611484 bongmi.com
1157711485 bongv.com
@@ -11588,7 +11496,6 @@ boohee.com
1158811496 book118.com
1158911497 book1234.com
1159011498 bookask.com
11591-bookba.net
1159211499 bookdao.com
1159311500 bookdown.net
1159411501 bookersea.com
@@ -11691,6 +11598,7 @@ boyunso.com
1169111598 boyuonline.com
1169211599 bozhihua.com
1169311600 bozhong.com
11601+bozhou666.com
1169411602 bphetaomiao.com
1169511603 bpimg.com
1169611604 bppan.com
@@ -11706,7 +11614,6 @@ bqg8.cc
1170611614 bqg8.la
1170711615 bqg99.cc
1170811616 bqgyy.com
11709-bqiapp.com
1171011617 bqimg.com
1171111618 bqpoint.com
1171211619 bqq8.com
@@ -11739,7 +11646,6 @@ bronzesoft.com
1173911646 brother-cn.net
1174011647 brother-movie.com
1174111648 brother.co.jp
11742-brother66.com
1174311649 browurl.com
1174411650 brsiee.com
1174511651 brtbeacon.com
@@ -11771,7 +11677,6 @@ bshare.com
1177111677 bsida.com
1177211678 bsidu.com
1177311679 bsjhhzs.com
11774-bsjquanwu.com
1177511680 bskrt.com
1177611681 bskuav.com
1177711682 bsmz.net
@@ -11820,7 +11725,6 @@ btcwatch.com
1182011725 btdad.live
1182111726 btdad17.xyz
1182211727 btdog.com
11823-btdtech.net
1182411728 btgame.com
1182511729 btgame01.com
1182611730 btgang.com
@@ -11963,10 +11867,8 @@ bvimg.com
1196311867 bvseo.com
1196411868 bvttsg.com
1196511869 bw1006.com
11966-bw3.site
1196711870 bw30yun.com
1196811871 bw36jnxjfna.com
11969-bw4.site
1197011872 bw40.net
1197111873 bw8848.com
1197211874 bwae.org
@@ -11985,6 +11887,7 @@ bwlc.net
1198511887 bwmelon.com
1198611888 bwptl.com
1198711889 bwpx.com
11890+bwsm.org
1198811891 bwsoft.net
1198911892 bwton.com
1199011893 bwv8.com
@@ -11998,6 +11901,7 @@ bxdaka.com
1199811901 bxdlkj.com
1199911902 bxfaka.com
1200011903 bxgdl.com
11904+bxgdunhua.com
1200111905 bxgjyc.com
1200211906 bxgtd.com
1200311907 bxhaibao.com
@@ -12037,7 +11941,6 @@ byete.com
1203711941 byf.com
1203811942 byfcw.com
1203911943 byfen.com
12040-byfuh.com
1204111944 byfunds.com
1204211945 byfzxy.com
1204311946 bygamesdk.com
@@ -12077,7 +11980,6 @@ byte008.com
1207711980 byteacctimg.com
1207811981 byteactivity.com
1207911982 byteadverts.com
12080-bytebye.com
1208111983 bytecdn.com
1208211984 bytecdntp.com
1208311985 byted-static.com
@@ -12094,6 +11996,7 @@ byteedu.com
1209411996 byteeffecttos.com
1209511997 bytefae.com
1209611998 bytefcdn.com
11999+bytefcdnrd.com
1209712000 bytegecko.com
1209812001 bytegeckoext.com
1209912002 bytegoofy.com
@@ -12176,7 +12079,6 @@ c1ass.com
1217612079 c1s.com
1217712080 c2h4.org
1217812081 c360dn.com
12179-c366.com
1218012082 c3acg.com
1218112083 c3crm.com
1218212084 c3player.com
@@ -12192,7 +12094,6 @@ c4hcdn.com
1219212094 c4ys.com
1219312095 c4yx.com
1219412096 c50forum.com
12195-c571.com
1219612097 c5game.com
1219712098 c6c.com
1219812099 c6n708.ren
@@ -12319,6 +12220,7 @@ cailiaoren.com
1231912220 cailutong.com
1232012221 caimai.cc
1232112222 caimei365.com
12223+caimogu.cc
1232212224 caimogu.net
1232312225 caimomo.com
1232412226 cainachina.com
@@ -12362,6 +12264,7 @@ caiyu.com
1236212264 caiyun.com
1236312265 caiyunai.com
1236412266 caiyunapp.com
12267+caiyuncdn.com
1236512268 caiyunyi.com
1236612269 caizhaowang.com
1236712270 caizhihr.com
@@ -12375,7 +12278,6 @@ caldigit.net
1237512278 cali-light.com
1237612279 calibur.tv
1237712280 callda.com
12378-callmewhy.com
1237912281 callmyfun.com
1238012282 caloinfo.com
1238112283 calorietech.com
@@ -12391,6 +12293,7 @@ camelsee.com
1239112293 camera360.com
1239212294 camgle.com
1239312295 camnpr.com
12296+camoryapps.com
1239412297 campanilechina.com
1239512298 campus-app.net
1239612299 campuschina.org
@@ -12462,10 +12365,8 @@ caohaifeng.com
1246212365 caohejing.com
1246312366 caohejing.org
1246412367 caohua.com
12465-caomeibook.com
1246612368 caomeishuma.com
1246712369 caomeixz10.xyz
12468-caomin5168.com
1246912370 caoniang.com
1247012371 caotama.com
1247112372 caoxianfc.com
@@ -12600,14 +12501,12 @@ cbnmall.com
1260012501 cbnri.org
1260112502 cbnweek.com
1260212503 cboad.com
12603-cbsrb.com
1260412504 cbsrc.com
1260512505 cbtimer.com
1260612506 cburi.com
1260712507 cbvac.com
1260812508 cbw111.com
1260912509 cby.me
12610-cc-1.com
1261112510 cc-glass.com
1261212511 cc.co
1261312512 cc0808.com
@@ -12630,7 +12529,6 @@ ccbcos.com
1263012529 ccbft.com
1263112530 ccbfund.com
1263212531 ccbfutures.com
12633-ccbiji.com
1263412532 ccbintl.com.hk
1263512533 ccbleasing.com
1263612534 ccbookfair.com
@@ -12667,7 +12565,6 @@ ccedisp.com
1266712565 ccedpw.com
1266812566 ccee.com
1266912567 cceea.net
12670-cceep.com
1267112568 ccefb.com
1267212569 ccement.com
1267312570 ccen.net
@@ -12708,7 +12605,6 @@ ccidwise.com
1270812605 ccieh3c.com
1270912606 ccieshow.com
1271012607 ccigchina.com
12711-ccigmall.com
1271212608 ccihr.com
1271312609 ccimz.com
1271412610 ccipp.org
@@ -12812,7 +12708,6 @@ cctime.com
1281212708 cction.com
1281312709 cctlife.com
1281412710 cctocloud.com
12815-cctongwen.com
1281612711 cctpress.com
1281712712 cctry.com
1281812713 cctv-19.com
@@ -12859,11 +12754,9 @@ ccxjd.com
1285912754 ccyjjd.com
1286012755 ccyts.com
1286112756 ccyunmai.com
12862-ccyyls.com
1286312757 ccziben.com
1286412758 cczq.com
1286512759 cczq.net
12866-ccztv.com
1286712760 cd-cxh.com
1286812761 cd-kc.com
1286912762 cd-zc.com
@@ -12929,7 +12822,6 @@ cdjzx120.com
1292912822 cdjzzg.com
1293012823 cdkf.com
1293112824 cdkhw.com
12932-cdkx.net
1293312825 cdlaobing.com
1293412826 cdlbyl.com
1293512827 cdlfvip.com
@@ -13047,6 +12939,7 @@ cdnhwczth23.com
1304712939 cdnhwcztu09.com
1304812940 cdnhwczxh101.com
1304912941 cdnidc.net
12942+cdnjson.com
1305012943 cdnjtzy.com
1305112944 cdnle.com
1305212945 cdnle.net
@@ -13377,6 +13270,7 @@ cguiw.com
1337713270 cgvoo.com
1337813271 cgwang.com
1337913272 cgwell.com
13273+cgwenjian.com
1338013274 cgwic.com
1338113275 cgws.com
1338213276 cgxc.cc
@@ -13390,7 +13284,6 @@ cgyu.com
1339013284 cgzair.com
1339113285 cgzy.net
1339213286 cgzyw.com
13393-cgzz8.com
1339413287 ch-auto.com
1339513288 ch-tools.com
1339613289 ch-water.com
@@ -13402,6 +13295,7 @@ ch999img.com
1340213295 cha-tm.com
1340313296 cha001.com
1340413297 cha127.com
13298+cha138.com
1340513299 chabeichong.com
1340613300 chachaba.com
1340713301 chachaqu.com
@@ -13437,7 +13331,6 @@ chainknow.com
1343713331 chainnode.com
1343813332 chainsdir.com
1343913333 chainsql.net
13440-chainwon.cc
1344113334 chainwon.com
1344213335 chairyfish.com
1344313336 chaishiguan.com
@@ -13586,6 +13479,7 @@ charmelady.com
1358613479 charmingglobe.com
1358713480 chartboost-china.com
1358813481 chashebao.com
13482+chatgpter.com
1358913483 chatm.com
1359013484 chatnos.com
1359113485 chawenti.com
@@ -13600,7 +13494,6 @@ chayueshebao.com
1360013494 chayuqing.com
1360113495 chazhaokan.com
1360213496 chazhengla.com
13603-chazhilan.com
1360413497 chazidian.com
1360513498 chazishop.com
1360613499 chaziyu.com
@@ -13688,7 +13581,6 @@ chenfan.info
1368813581 cheng-nuo.com
1368913582 cheng-sen.com
1369013583 cheng.xin
13691-cheng95.com
1369213584 chengadx.com
1369313585 chengchuanren.com
1369413586 chengdebank.com
@@ -13724,7 +13616,6 @@ chenguangblog.com
1372413616 chengxiangqian.com
1372513617 chengxinyouxuan.com
1372613618 chengxuan.com
13727-chengyangnews.com
1372813619 chengyangyang.com
1372913620 chengye-capital.com
1373013621 chengyucd.com
@@ -13788,7 +13679,6 @@ cheshirex.com
1378813679 cheshouye.com
1378913680 chesthospital.com
1379013681 chesudi.com
13791-chesusu.com
1379213682 chetuanwang.net
1379313683 chetuobang.com
1379413684 chetx.com
@@ -13862,6 +13752,7 @@ china-315.com
1386213752 china-ah.com
1386313753 china-asahi.com
1386413754 china-asm.com
13755+china-audit.com
1386513756 china-b.com
1386613757 china-caa.org
1386713758 china-cas.org
@@ -13875,7 +13766,6 @@ china-ceco.com
1387513766 china-ced.com
1387613767 china-cfa.org
1387713768 china-chair.com
13878-china-changjiang.net
1387913769 china-channel.com
1388013770 china-chuwei.com
1388113771 china-cicc.org
@@ -13991,7 +13881,6 @@ china724.com
1399113881 china777.org
1399213882 china95.net
1399313883 china95.xyz
13994-china9s.com
1399513884 china9y.com
1399613885 chinaacc.com
1399713886 chinaadec.com
@@ -13999,7 +13888,6 @@ chinaaet.com
1399913888 chinaagrisci.com
1400013889 chinaagv.com
1400113890 chinaairer.com
14002-chinaalex.com
1400313891 chinaamc.com
1400413892 chinaamuse.com
1400513893 chinaanonymous.com
@@ -14123,7 +14011,6 @@ chinadzyl.com
1412314011 chinae.net
1412414012 chinaeastlaw.com
1412514013 chinaecnet.com
14126-chinaecotech.org
1412714014 chinaeda.org
1412814015 chinaedu.com
1412914016 chinaedu.net
@@ -14172,6 +14059,8 @@ chinagdg.com
1417214059 chinagiftsfair.com
1417314060 chinagoldcoin.net
1417414061 chinagoldgroup.com
14062+chinagongcheng.com
14063+chinagov.pw
1417514064 chinagp.net
1417614065 chinagps.cc
1417714066 chinagrid.net
@@ -14271,7 +14160,6 @@ chinalims.net
1427114160 chinalincoln.com
1427214161 chinalink-sh.net
1427314162 chinalink.tv
14274-chinalinuxpub.com
1427514163 chinalions.com
1427614164 chinalive.com
1427714165 chinaliyou.com
@@ -14543,7 +14431,6 @@ chinca.org
1454314431 chindiaforum.com
1454414432 chine-info.com
1454514433 chinee.com
14546-chinese-luxury.com
1454714434 chinese-no1.com
1454814435 chineseacc.com
1454914436 chineseafs.org
@@ -14590,9 +14477,6 @@ chishine3d.com
1459014477 chishoes.com
1459114478 chitanda.me
1459214479 chitu.com
14593-chitu101.com
14594-chitu103.com
14595-chitu104.com
1459614480 chitu107.com
1459714481 chivast.com
1459814482 chivox.com
@@ -14672,7 +14556,6 @@ chongya.vip
1467214556 chongyacdn.com
1467314557 chongyejia.com
1467414558 chongyitang.org
14675-chongzhi.com
1467614559 chonka.com
1467714560 chotee.com
1467814561 chouchoujiang.com
@@ -14820,7 +14703,9 @@ chunhui12.com
1482014703 chunjingtech.com
1482114704 chunjiws.com
1482214705 chunmi.com
14706+chunmiaosh.com
1482314707 chunqiuwang.com
14708+chunquff.com
1482414709 chunshuitang.com
1482514710 chunshuizhijia.com
1482614711 chunsuns.com
@@ -14871,10 +14756,10 @@ chzhw.com
1487114756 chzybj.com
1487214757 ci123.com
1487314758 ci800.com
14874-ciamiecn.com
1487514759 ciaoca.com
1487614760 ciatcm.org
1487714761 cibaike.com
14762+cibawl.com
1487814763 cibfintech.com
1487914764 cibn.cc
1488014765 cibn.com
@@ -14998,7 +14883,6 @@ citics.com
1499814883 citics.com.hk
1499914884 citicsf.com
1500014885 citicsinfo.com
15001-citicsqh.com
1500214886 citicsteel.com
1500314887 citidigital.com
1500414888 citisa.org
@@ -15014,6 +14898,7 @@ citssh.com
1501414898 citszz.com
1501514899 citure.net
1501614900 citvc.com
14901+city12580.com
1501714902 city8.com
1501814903 city84.com
1501914904 citygf.com
@@ -15041,6 +14926,7 @@ ciyew.com
1504114926 ciyocon.com
1504214927 ciyuan.men
1504314928 ciyuanji.com
14929+cizhixin.com
1504414930 cizip.com
1504514931 cj-elec.com
1504614932 cjavapy.com
@@ -15067,7 +14953,6 @@ cjkj.ink
1506714953 cjkypo.com
1506814954 cjkz.com
1506914955 cjlap.com
15070-cjlhs.com
1507114956 cjm.so
1507214957 cjmakeding.com
1507314958 cjmit.com
@@ -15097,7 +14982,6 @@ ckdzb.com
1509714982 ckefu.com
1509814983 ckernel.org
1509914984 ckeyedu.com
15100-ckgcjl.com
1510114985 ckimg.com
1510214986 ckjr001.com
1510314987 ckmov.com
@@ -15187,6 +15071,7 @@ cloud-xm.com
1518715071 cloud-zhaoqing.com
1518815072 cloud-zhongwei.com
1518915073 cloud301.net
15074+cloud56.net
1519015075 cloud887325.com
1519115076 cloudacc-inc.com
1519215077 cloudajs.org
@@ -15338,7 +15223,6 @@ clusterdnsserver.com
1533815223 clx360.com
1533915224 clyric.com
1534015225 clz.me
15341-clzqlhj.com
1534215226 cm-analysis.com
1534315227 cm-iov.com
1534415228 cm-worklink.com
@@ -15414,6 +15298,7 @@ cmschina.com
1541415298 cmscmc.org
1541515299 cmseasy.cc
1541615300 cmsfg.com
15301+cmsforo.com
1541715302 cmsjournal.net
1541815303 cmskcrm.com
1541915304 cmsn.biz
@@ -15481,8 +15366,6 @@ cn360cn.com
1548115366 cn365c.com
1548215367 cn365d.com
1548315368 cn365e.com
15484-cn3k5.com
15485-cn3v.net
1548615369 cn3wm.com
1548715370 cn486.com
1548815371 cn4e.com
@@ -15663,7 +15546,6 @@ cnfq.com
1566315546 cnfqy.com
1566415547 cnfrag.com
1566515548 cnfruit.com
15666-cnfsae.com
1566715549 cnfuyin.org
1566815550 cnfxj.org
1566915551 cnfyyj.com
@@ -15891,6 +15773,7 @@ cnratchet.com
1589115773 cnrceo.com
1589215774 cnrcloudfm.com
1589315775 cnrdm.com
15776+cnrdn.com
1589415777 cnreagent.com
1589515778 cnree.com
1589615779 cnrencai.com
@@ -16076,6 +15959,7 @@ code4apk.com
1607615959 code666.com
1607715960 code668.com
1607815961 codeaha.com
15962+codebaoku.com
1607915963 codebe.org
1608015964 codebus.net
1608115965 codebye.com
@@ -16097,6 +15981,7 @@ codepiano.com
1609715981 codepku.com
1609815982 codeplayer.vip
1609915983 codeplaygames.com
15984+codeprj.com
1610015985 coder.work
1610115986 coder100.com
1610215987 coder4.com
@@ -16197,10 +16082,9 @@ colourlife.com
1619716082 com-rail.com
1619816083 com.fi
1619916084 com.tv
16200-com21.com
1620116085 com4loves.com
1620216086 comac.cc
16203-comba.xyz
16087+comake.online
1620416088 combofin.com
1620516089 combomen.com
1620616090 combpm.com
@@ -16264,7 +16148,6 @@ controlinai.com
1626416148 conuo.com
1626516149 convergemob.com
1626616150 convertlab.com
16267-conwos.com
1626816151 conyedit.com
1626916152 coobar.com
1627016153 cooboys.com
@@ -16278,7 +16161,6 @@ coofans.com
1627816161 cooffee.net
1627916162 cooh5.com
1628016163 coohua.com
16281-cookbookchina.com
1628216164 cookcai.com
1628316165 cookie4you.com
1628416166 cool-admin.com
@@ -16441,7 +16323,6 @@ cpppf.org
1644116323 cppwh.com
1644216324 cps1688.com
1644316325 cps800.com
16444-cps88.cc
1644516326 cpsbeijing.org
1644616327 cpsenglish.com
1644716328 cptae.com
@@ -16558,14 +16439,12 @@ cqqigao.com
1655816439 cqqiyi.com
1655916440 cqqnb.net
1656016441 cqqp.com
16561-cqqsl.com
1656216442 cqqsyy.com
1656316443 cqqzgrh.com
1656416444 cqrc.net
1656516445 cqrcb.com
1656616446 cqscmy.net
1656716447 cqshenou.com
16568-cqskl.com
1656916448 cqslib.org
1657016449 cqslsc.com
1657116450 cqsms.net
@@ -16683,7 +16562,6 @@ crmeb.net
1668316562 crmg-ms.com
1668416563 crmgz.com
1668516564 crmip.com
16686-crmvscrm.com
1668716565 crnds.com
1668816566 crnews.net
1668916567 crodigy.com
@@ -16706,6 +16584,7 @@ crystaledu.com
1670616584 cryuantafund.com
1670716585 cs-air.com
1670816586 cs-cjl.com
16587+cs-qsyq.com
1670916588 cs-show.com
1671016589 cs0799.com
1671116590 cs090.com
@@ -16747,7 +16626,6 @@ csdiy.wiki
1674716626 csdn.com
1674816627 csdn.net
1674916628 csdnxiazai.xyz
16750-csdqp.com
1675116629 csdxcw.com
1675216630 csdyx.com
1675316631 csea767.com
@@ -16766,6 +16644,7 @@ csharpkit.com
1676616644 cshixi.com
1676716645 cshnkj.com
1676816646 cshope.net
16647+cshuandu.com
1676916648 cshufanyi.com
1677016649 cshxdc.com
1677116650 cshyqx.com
@@ -16868,7 +16747,6 @@ cszsjy.com
1686816747 cszx.com
1686916748 cszybdf.com
1687016749 cszykt.com
16871-cszywl.net
1687216750 cszzjc.com
1687316751 ct-cdm.com
1687416752 ct-laser.com
@@ -16981,6 +16859,7 @@ cucdc.com
1698116859 cuchost.com
1698216860 cuctv.com
1698316861 cudaojia.com
16862+cueber.com
1698416863 cuebzzy.com
1698516864 cuekit.com
1698616865 cuelog.com
@@ -17007,7 +16886,6 @@ culaiwan.com
1700716886 cumtenn.com
1700816887 cumulon.com
1700916888 cunan.com
17010-cuncun8.com
1701116889 cuncunle.com
1701216890 cuncx.com
1701316891 cunfang.com
@@ -17070,7 +16948,6 @@ cwqu.com
1707016948 cwroom.com
1707116949 cwxzx.com
1707216950 cwyan.com
17073-cwziyouren.com
1707416951 cx312.com
1707516952 cx580.com
1707616953 cx930.net
@@ -17100,6 +16977,8 @@ cxtxt.com
1710016977 cxvlog.com
1710116978 cxw.com
1710216979 cxwl.com
16980+cxwyf.net
16981+cxwyg.net
1710316982 cxxjs.com
1710416983 cxy61.com
1710516984 cxy7.com
@@ -17146,7 +17025,6 @@ cycnet.com
1714617025 cycoi.com
1714717026 cycoo.com
1714817027 cydiakk.com
17149-cydiami.com
1715017028 cydow.com
1715117029 cydp5.com
1715217030 cyedu.org
@@ -17189,6 +17067,7 @@ cytstibet.com
1718917067 cyudun.net
1719017068 cyuew.com
1719117069 cywetc.com
17070+cywyjj.com
1719217071 cyy18.com
1719317072 cyypscl.com
1719417073 cyyself.name
@@ -17244,7 +17123,6 @@ czopen.com
1724417123 czos.xyz
1724517124 czpoly.com
1724617125 czrj.com
17247-czry888.com
1724817126 czsbtjx.com
1724917127 czsrc.com
1725017128 czssx.com
@@ -17274,7 +17152,6 @@ d1cm.com
1727417152 d1com.com
1727517153 d1dengju.com
1727617154 d1ev.com
17277-d1fm.com
1727817155 d1lx.com
1727917156 d1net.com
1728017157 d1sm.net
@@ -17304,7 +17181,6 @@ d5wx.com
1730417181 d65d6.com
1730517182 d777.com
1730617183 d77777777.com
17307-d7baike.net
1730817184 d7ol.com
1730917185 d7vg.com
1731017186 d8th.com
@@ -17346,7 +17222,6 @@ dadakan.com
1734617222 dadaojiayuan.com
1734717223 dadayou.com
1734817224 dadclab.com
17349-daddychess.online
1735017225 daddymami.net
1735117226 dadetong.com
1735217227 dadianstudio.com
@@ -17361,7 +17236,6 @@ dadoubao.com
1736117236 dadunet.com
1736217237 daerzhu.com
1736317238 daf-rs.com
17364-dafa53.com
1736517239 dafaji.com
1736617240 dafang24.com
1736717241 dafangya.com
@@ -17373,7 +17247,6 @@ dagangcheng.com
1737317247 dagongcredit.com
1737417248 dagongnet.com
1737517249 dagufood.com
17376-daguu.com
1737717250 daguzhe.com
1737817251 dahainan.com
1737917252 dahaiyang.com
@@ -17399,7 +17272,6 @@ dahuaddns.com
1739917272 dahuatech.com
1740017273 dahuawang.com
1740117274 dahuifuwu.com
17402-dahuitu.net
1740317275 dahulu.com
1740417276 dahuoji.biz
1740517277 dai361.com
@@ -17412,7 +17284,6 @@ daicuo.net
1741217284 daicuo.vip
1741317285 daicuo.wang
1741417286 daidaidui.club
17415-daidaitong.com
1741617287 daidaitv.com
1741717288 daidongxi.com
1741817289 daigou.com
@@ -17440,7 +17311,6 @@ daimajiayuan.com
1744017311 daimami.com
1744117312 daimasucai.com
1744217313 daimg.com
17443-daimiyun.com
1744417314 daishangqian.com
1744517315 daishu.com
1744617316 daishujiankang.com
@@ -17467,7 +17337,6 @@ dajiangtai.com
1746717337 dajianhui.com
1746817338 dajiashequ.com
1746917339 dajiashuo.com
17470-dajiatou.com
1747117340 dajiayouxuan.com
1747217341 dajiazhao.com
1747317342 dajiazhongyi.com
@@ -17540,7 +17409,6 @@ dangbei.net
1754017409 dangbeiprojector.com
1754117410 dangcdn.com
1754217411 dangdang.com
17543-dangfudh.xyz
1754417412 dangguai.com
1754517413 danghongyun.com
1754617414 danghuan.com
@@ -17575,6 +17443,7 @@ danlan.org
1757517443 danlirencomedy.com
1757617444 danlu.net
1757717445 danmaku.live
17446+danmaku.tv
1757817447 danmakupie.com
1757917448 danmei.la
1758017449 danmi.com
@@ -17725,7 +17594,6 @@ datasoldier.net
1772517594 datastoragesummit.com
1772617595 datatang.com
1772717596 datathinking.com
17728-datathinking.net
1772917597 datatist.com
1773017598 datayes.com
1773117599 datazt.com
@@ -17752,7 +17620,6 @@ dawndiy.com
1775217620 dawnlab.me
1775317621 dawnled.net
1775417622 dawuhanapp.com
17755-dawuxia.net
1775617623 dawx.com
1775717624 dawx.net
1775817625 daxi.com
@@ -17800,7 +17667,6 @@ dayu-valve.com
1780017667 dayu.com
1780117668 dayuad.com
1780217669 dayuansouti.com
17803-dayucn.net
1780417670 dayue8.com
1780517671 dayugame.net
1780617672 dayugslb.com
@@ -17847,7 +17713,6 @@ dbcdh.com
1784717713 dbcsq.com
1784817714 dbcxz1.net
1784917715 dbdna.com
17850-dbfansub.com
1785117716 dbgeek.org
1785217717 dbh123.net
1785317718 dbkan.com
@@ -17896,7 +17761,6 @@ dcybkj.com
1789617761 dd-advisor.com
1789717762 dd-gz.com
1789817763 dd-img.com
17899-dd.net
1790017764 dd128.com
1790117765 dd2007.com
1790217766 dd373.com