@sailfish-ai/sf-veritas 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -8
- package/dist/sf-veritas.cjs +8 -8
- package/dist/sf-veritas.mjs +354 -353
- package/dist/types/setupConfig.d.ts +6 -2
- package/package.json +1 -1
package/dist/sf-veritas.mjs
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import { AsyncLocalStorage as
|
|
5
|
-
import { v4 as
|
|
6
|
-
import { readFileSync as
|
|
7
|
-
import * as
|
|
8
|
-
import { join as
|
|
9
|
-
import
|
|
10
|
-
import { Worker as
|
|
11
|
-
import { URL as
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
class
|
|
1
|
+
var $a = Object.defineProperty;
|
|
2
|
+
var Da = (a, e, i) => e in a ? $a(a, e, { enumerable: !0, configurable: !0, writable: !0, value: i }) : a[e] = i;
|
|
3
|
+
var k = (a, e, i) => Da(a, typeof e != "symbol" ? e + "" : e, i);
|
|
4
|
+
import { AsyncLocalStorage as qa } from "node:async_hooks";
|
|
5
|
+
import { v4 as ea } from "uuid";
|
|
6
|
+
import { readFileSync as Ta } from "fs";
|
|
7
|
+
import * as Ca from "path";
|
|
8
|
+
import { join as Na } from "path";
|
|
9
|
+
import Sa from "cross-fetch";
|
|
10
|
+
import { Worker as Ea } from "worker_threads";
|
|
11
|
+
import { URL as K } from "node:url";
|
|
12
|
+
import X from "http";
|
|
13
|
+
import Y from "https";
|
|
14
|
+
class Aa {
|
|
15
15
|
constructor(e) {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
this.apiKey = (e == null ? void 0 : e.apiKey) || process.env.SAILFISH_API_KEY, this.apiGraphqlEndpoint = (e == null ? void 0 : e.apiGraphqlEndpoint) || process.env.SAILFISH_GRAPHQL_ENDPOINT || "https://api-service.sailfishqa.com/graphql/", this.sfDebug = (e == null ? void 0 : e.debug) === !0 || process.env.SF_DEBUG === "true", this.serviceIdentifier = (e == null ? void 0 : e.serviceIdentifier) || process.env.SERVICE_IDENTIFIER, this.serviceUUID =
|
|
16
|
+
k(this, "apiKey");
|
|
17
|
+
k(this, "apiGraphqlEndpoint");
|
|
18
|
+
k(this, "sfDebug");
|
|
19
|
+
k(this, "serviceIdentifier");
|
|
20
|
+
k(this, "serviceVersion");
|
|
21
|
+
k(this, "serviceUUID");
|
|
22
|
+
k(this, "serviceAdditionalMetadata");
|
|
23
|
+
k(this, "profilingModeEnabled");
|
|
24
|
+
k(this, "profilingMaxDepth");
|
|
25
|
+
k(this, "profilingMaxVariableSizeKb");
|
|
26
|
+
k(this, "domainsToNotPropagateHeadersTo");
|
|
27
|
+
k(this, "nodeModulesToCollectLocalVariablesOn");
|
|
28
|
+
k(this, "printConfigurationStatuses");
|
|
29
|
+
k(this, "logLevel");
|
|
30
|
+
k(this, "stackDepthLocals");
|
|
31
|
+
k(this, "stackDepthCodeTraceDepth");
|
|
32
|
+
k(this, "packageLibraryType");
|
|
33
|
+
k(this, "version");
|
|
34
|
+
k(this, "_serviceIdentificationReceived", !1);
|
|
35
|
+
this.apiKey = (e == null ? void 0 : e.apiKey) || process.env.SAILFISH_API_KEY, this.apiGraphqlEndpoint = (e == null ? void 0 : e.apiGraphqlEndpoint) || process.env.SAILFISH_GRAPHQL_ENDPOINT || "https://api-service.sailfishqa.com/graphql/", this.sfDebug = (e == null ? void 0 : e.debug) === !0 || process.env.SF_DEBUG === "true", this.serviceIdentifier = (e == null ? void 0 : e.serviceIdentifier) || process.env.SERVICE_IDENTIFIER, this.serviceUUID = ea(), this.serviceVersion = (e == null ? void 0 : e.serviceVersion) || process.env.SERVICE_VERSION, this.serviceAdditionalMetadata = (e == null ? void 0 : e.serviceAdditionalMetadata) || {}, this.profilingModeEnabled = (e == null ? void 0 : e.profilingModeEnabled) ?? !1, this.profilingMaxDepth = (e == null ? void 0 : e.profilingMaxDepth) ?? 5, this.profilingMaxVariableSizeKb = (e == null ? void 0 : e.profilingMaxVariableSizeKb) ?? 25, this.domainsToNotPropagateHeadersTo = (e == null ? void 0 : e.domainsToNotPropagateHeadersTo) || [], this.nodeModulesToCollectLocalVariablesOn = (e == null ? void 0 : e.nodeModulesToCollectLocalVariablesOn) || [], this.printConfigurationStatuses = process.env.PRINT_CONFIGURATION_STATUSES || "true", this.logLevel = process.env.LOG_LEVEL || "INFO", this.stackDepthLocals = process.env.SAILFISH_EXCEPTION_STACK_DEPTH_LOCALS !== void 0 ? parseInt(process.env.SAILFISH_EXCEPTION_STACK_DEPTH_LOCALS, 10) : 5, isNaN(this.stackDepthLocals) && (this.stackDepthLocals = -1), this.stackDepthCodeTraceDepth = process.env.SAILFISH_EXCEPTION_STACK_DEPTH_CODE_TRACE_DEPTH !== void 0 ? parseInt(process.env.SAILFISH_EXCEPTION_STACK_DEPTH_CODE_TRACE_DEPTH, 10) : -1, isNaN(this.stackDepthCodeTraceDepth) && (this.stackDepthCodeTraceDepth = -1), this.packageLibraryType = "JS/TS BACKEND", this.version = this.getPackageVersion();
|
|
36
36
|
}
|
|
37
37
|
getPackageVersion() {
|
|
38
38
|
try {
|
|
39
|
-
const e =
|
|
40
|
-
return JSON.parse(
|
|
39
|
+
const e = Na(__dirname, "../package.json");
|
|
40
|
+
return JSON.parse(Ta(e, "utf-8")).version;
|
|
41
41
|
} catch (e) {
|
|
42
|
-
return
|
|
42
|
+
return m().sfDebug && console.error("Failed to retrieve the package version:", e), "undefined";
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
get serviceIdentificationReceived() {
|
|
@@ -49,24 +49,24 @@ class Ea {
|
|
|
49
49
|
this._serviceIdentificationReceived = e;
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
|
-
let
|
|
53
|
-
function
|
|
54
|
-
if (!
|
|
55
|
-
return
|
|
52
|
+
let E;
|
|
53
|
+
function m() {
|
|
54
|
+
if (!E) throw new Error("Configuration has not been initialized. Please call initializeConfig() before using getConfig().");
|
|
55
|
+
return E;
|
|
56
56
|
}
|
|
57
|
-
new
|
|
58
|
-
const
|
|
57
|
+
new qa();
|
|
58
|
+
const Z = new qa(), va = { handledExceptions: /* @__PURE__ */ new Set(), reentrancyGuardLoggingActive: !1, reentrancyGuardLoggingPreActive: !1, reentrancyGuardPrintActive: !1, reentrancyGuardPrintPreActive: !1, reentrancyGuardExceptionActive: !1, reentrancyGuardExceptionPreActive: !1 }, I = class I {
|
|
59
59
|
constructor() {
|
|
60
60
|
}
|
|
61
61
|
static getInstance() {
|
|
62
|
-
return
|
|
62
|
+
return I.instance || (I.instance = new I()), I.instance;
|
|
63
63
|
}
|
|
64
64
|
getCurrentContext() {
|
|
65
|
-
return
|
|
65
|
+
return Z.getStore() || va;
|
|
66
66
|
}
|
|
67
67
|
setCurrentContext(e) {
|
|
68
|
-
const i =
|
|
69
|
-
|
|
68
|
+
const i = Z.getStore() || va;
|
|
69
|
+
Z.enterWith({ ...i, ...e });
|
|
70
70
|
}
|
|
71
71
|
getTraceId() {
|
|
72
72
|
return this.getCurrentContext().traceId;
|
|
@@ -75,8 +75,8 @@ const X = new ja(), fa = { handledExceptions: /* @__PURE__ */ new Set(), reentra
|
|
|
75
75
|
this.setCurrentContext({ traceId: e });
|
|
76
76
|
}
|
|
77
77
|
getOrSetSfTraceId(e, i = !1) {
|
|
78
|
-
let
|
|
79
|
-
return
|
|
78
|
+
let n = this.getTraceId();
|
|
79
|
+
return n || (n = e || (i ? ea() : `nonsession-applogs-v3/${m().apiKey}/${ea()}`), this.setTraceId(n), m().sfDebug && console.log(" Created new trace ID:", n), n);
|
|
80
80
|
}
|
|
81
81
|
getHandledExceptions() {
|
|
82
82
|
return this.getCurrentContext().handledExceptions;
|
|
@@ -92,17 +92,17 @@ const X = new ja(), fa = { handledExceptions: /* @__PURE__ */ new Set(), reentra
|
|
|
92
92
|
this.setCurrentContext({ handledExceptions: /* @__PURE__ */ new Set() });
|
|
93
93
|
}
|
|
94
94
|
};
|
|
95
|
-
|
|
96
|
-
let
|
|
97
|
-
class
|
|
95
|
+
k(I, "instance");
|
|
96
|
+
let _ = I;
|
|
97
|
+
class G {
|
|
98
98
|
constructor() {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
this.apiKey =
|
|
99
|
+
k(this, "apiKey");
|
|
100
|
+
k(this, "endpoint");
|
|
101
|
+
k(this, "queryType", "mutation");
|
|
102
|
+
k(this, "operationName", "");
|
|
103
|
+
k(this, "serviceUUID", m().serviceUUID);
|
|
104
|
+
k(this, "contextManager");
|
|
105
|
+
this.apiKey = m().apiKey, this.endpoint = m().apiGraphqlEndpoint, this.contextManager = _.getInstance();
|
|
106
106
|
}
|
|
107
107
|
get queryName() {
|
|
108
108
|
return this.operationName ? this.operationName.charAt(0).toLowerCase() + this.operationName.slice(1) : "";
|
|
@@ -124,37 +124,37 @@ class _ {
|
|
|
124
124
|
this.serviceUUID = e;
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
|
-
const
|
|
128
|
-
async function
|
|
127
|
+
const Pa = Sa;
|
|
128
|
+
async function C(a, e, i, n) {
|
|
129
129
|
try {
|
|
130
|
-
const o =
|
|
131
|
-
|
|
132
|
-
var
|
|
133
|
-
if (!
|
|
134
|
-
const
|
|
135
|
-
(
|
|
136
|
-
const
|
|
137
|
-
console.error(
|
|
138
|
-
}(
|
|
139
|
-
const
|
|
140
|
-
|
|
141
|
-
}(
|
|
142
|
-
}).catch((
|
|
143
|
-
o.sfDebug && console.error("Fetch error:",
|
|
130
|
+
const o = m(), r = JSON.stringify({ query: i, variables: n, operationName: e });
|
|
131
|
+
Pa(a, { method: "POST", headers: { "Content-Type": "application/json" }, body: r }).then(async (s) => {
|
|
132
|
+
var h;
|
|
133
|
+
if (!s.ok) return void (o.sfDebug && console.error(`GraphQL request failed with status ${s.status} for ${e}`));
|
|
134
|
+
const l = await s.json();
|
|
135
|
+
(h = l.errors) != null && h.length ? function(c, t, b) {
|
|
136
|
+
const u = Object.keys(c)[0];
|
|
137
|
+
console.error(u === "identifyServiceDetails" ? `IdentifyServiceDetails NOT sent successfully for service: UUID=${b.serviceUUID}` : `GraphQL request failed with errors: ${JSON.stringify(t)} for operation key ${u}`);
|
|
138
|
+
}(l.data, l.errors, o) : o.sfDebug && function(c, t, b) {
|
|
139
|
+
const u = Object.keys(c)[0], g = c[u] || !1;
|
|
140
|
+
u === "identifyServiceDetails" && (b.setServiceIdentificationReceived(g), m().sfDebug && console.info(`IdentifyServiceDetails sent successfully for service: UUID=${b.serviceUUID}; serviceIdentificationReceived=${u === "identifyServiceDetails" ? g : "N/A"}`));
|
|
141
|
+
}(l.data, 0, o);
|
|
142
|
+
}).catch((s) => {
|
|
143
|
+
o.sfDebug && console.error("Fetch error:", s);
|
|
144
144
|
});
|
|
145
145
|
} catch (o) {
|
|
146
|
-
|
|
146
|
+
m().sfDebug && console.error("Error sending data to GraphQL server:", o);
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
|
-
class
|
|
149
|
+
class oa extends G {
|
|
150
150
|
constructor() {
|
|
151
151
|
super(), this.setOperationName("IdentifyServiceDetails");
|
|
152
152
|
}
|
|
153
153
|
async doSend(e) {
|
|
154
|
-
if (!
|
|
154
|
+
if (!m().serviceIdentificationReceived) try {
|
|
155
155
|
this.send();
|
|
156
156
|
} catch (i) {
|
|
157
|
-
|
|
157
|
+
m().sfDebug && console.error(" Error during service identification:", i);
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
160
|
async send() {
|
|
@@ -180,42 +180,42 @@ class ea extends _ {
|
|
|
180
180
|
version: $version,
|
|
181
181
|
)
|
|
182
182
|
}
|
|
183
|
-
`, i = this.getVariables({ serviceIdentifier:
|
|
184
|
-
|
|
183
|
+
`, i = this.getVariables({ serviceIdentifier: m().serviceIdentifier, serviceVersion: m().serviceVersion, library: m().packageLibraryType, version: m().version, serviceAdditionalMetadata: m().serviceAdditionalMetadata });
|
|
184
|
+
C(this.endpoint, this.operationName, e, i);
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
|
-
function
|
|
187
|
+
function Ma(a) {
|
|
188
188
|
try {
|
|
189
189
|
return JSON.stringify(a), !0;
|
|
190
190
|
} catch {
|
|
191
191
|
return !1;
|
|
192
192
|
}
|
|
193
193
|
}
|
|
194
|
-
class
|
|
194
|
+
class Ua extends G {
|
|
195
195
|
constructor() {
|
|
196
196
|
super();
|
|
197
|
-
|
|
197
|
+
k(this, "serviceIdentifier", new oa());
|
|
198
198
|
this.setOperationName("CollectMetadata");
|
|
199
199
|
}
|
|
200
200
|
async sendAppIdentifier() {
|
|
201
201
|
this.serviceIdentifier.doSend({});
|
|
202
202
|
}
|
|
203
|
-
async doSend(i,
|
|
204
|
-
this.sendAppIdentifier(), this.send(i,
|
|
205
|
-
}
|
|
206
|
-
async send(i,
|
|
207
|
-
if (!
|
|
208
|
-
let
|
|
209
|
-
if (!
|
|
210
|
-
const
|
|
211
|
-
const
|
|
212
|
-
if (
|
|
213
|
-
return { traitsJson: JSON.stringify(
|
|
214
|
-
}(
|
|
215
|
-
|
|
203
|
+
async doSend(i, n, o, r) {
|
|
204
|
+
this.sendAppIdentifier(), this.send(i, n, o, r);
|
|
205
|
+
}
|
|
206
|
+
async send(i, n, o, r) {
|
|
207
|
+
if (!n && !r) throw new Error('Must pass in either traits or traits_json to "add_or_update_traits"');
|
|
208
|
+
let s = [];
|
|
209
|
+
if (!r) {
|
|
210
|
+
const h = function(c) {
|
|
211
|
+
const t = {}, b = [];
|
|
212
|
+
if (c) for (const [u, g] of Object.entries(c)) Ma(g) ? t[u] = g : b.push(u);
|
|
213
|
+
return { traitsJson: JSON.stringify(t), excludedFields: b };
|
|
214
|
+
}(n);
|
|
215
|
+
r = h.traitsJson, s = h.excludedFields;
|
|
216
216
|
}
|
|
217
|
-
const
|
|
218
|
-
|
|
217
|
+
const l = this.getVariables({ userId: i, traitsJson: r, excludedFields: s, override: o, library: m().packageLibraryType, version: m().version });
|
|
218
|
+
C(this.endpoint, this.operationName, this.getQuery(), l);
|
|
219
219
|
}
|
|
220
220
|
getQuery() {
|
|
221
221
|
return `
|
|
@@ -225,23 +225,23 @@ class Ma extends _ {
|
|
|
225
225
|
`;
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
|
-
class
|
|
228
|
+
class Ia {
|
|
229
229
|
constructor(e) {
|
|
230
|
-
|
|
231
|
-
this.apiKey = e, this.metadataTransmitter = new
|
|
230
|
+
k(this, "metadataTransmitter");
|
|
231
|
+
this.apiKey = e, this.metadataTransmitter = new Ua();
|
|
232
232
|
}
|
|
233
|
-
identify(e, i,
|
|
234
|
-
i ||
|
|
233
|
+
identify(e, i, n, o = !1) {
|
|
234
|
+
i || n ? this.addOrUpdateMetadata(e, i, n, o) : this.addOrUpdateMetadata(e, {}, void 0, o);
|
|
235
235
|
}
|
|
236
|
-
addOrUpdateMetadata(e, i = {},
|
|
237
|
-
if (!i && !
|
|
238
|
-
|
|
236
|
+
addOrUpdateMetadata(e, i = {}, n, o = !1) {
|
|
237
|
+
if (!i && !n) throw new Error('Must pass in either traits or traitsJson to "addOrUpdateMetadata"');
|
|
238
|
+
m().sfDebug && console.log(" [[DEBUG - addOrUpdateMetadata]] Starting operation"), m().sfDebug && console.log(" addOrUpdateMetadata...SENDING DATA...", e, i, n), this.metadataTransmitter.doSend(e, i, o, n);
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
|
-
class
|
|
241
|
+
class ia extends G {
|
|
242
242
|
constructor() {
|
|
243
243
|
super();
|
|
244
|
-
|
|
244
|
+
k(this, "serviceIdentifier", new oa());
|
|
245
245
|
}
|
|
246
246
|
checkIfContentsShouldBeIgnored(i) {
|
|
247
247
|
return /HTTP\s(POST|GET)\s(\/healthz|\/graphql\/).*/.test(i);
|
|
@@ -254,8 +254,8 @@ class oa extends _ {
|
|
|
254
254
|
}
|
|
255
255
|
async send(i) {
|
|
256
256
|
if (this.checkIfContentsShouldBeIgnored(i)) return;
|
|
257
|
-
const
|
|
258
|
-
|
|
257
|
+
const n = this.getVariables({ contents: i[0], level: i[1] });
|
|
258
|
+
C(this.endpoint, this.operationName, this.getQuery(), n);
|
|
259
259
|
}
|
|
260
260
|
getQuery() {
|
|
261
261
|
return `
|
|
@@ -265,97 +265,97 @@ class oa extends _ {
|
|
|
265
265
|
`;
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
|
-
class
|
|
269
|
-
constructor({ file: e, line: i, function:
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
this.file = e, this.line = i, this.function =
|
|
268
|
+
class T {
|
|
269
|
+
constructor({ file: e, line: i, function: n, code: o, locals: r = {}, offender: s = !1 }) {
|
|
270
|
+
k(this, "file");
|
|
271
|
+
k(this, "line");
|
|
272
|
+
k(this, "function");
|
|
273
|
+
k(this, "code");
|
|
274
|
+
k(this, "locals");
|
|
275
|
+
k(this, "offender");
|
|
276
|
+
this.file = e, this.line = i, this.function = n, this.code = o, this.locals = r, this.offender = s;
|
|
277
277
|
}
|
|
278
278
|
toDict() {
|
|
279
|
-
const e = { file: this.file, line: this.line, function: this.function, code: this.code, locals: Object.fromEntries(Object.entries(this.locals).map(([i,
|
|
279
|
+
const e = { file: this.file, line: this.line, function: this.function, code: this.code, locals: Object.fromEntries(Object.entries(this.locals).map(([i, n]) => [i, String(n)])) };
|
|
280
280
|
return this.offender && (e.offender = this.offender), e;
|
|
281
281
|
}
|
|
282
282
|
toJson() {
|
|
283
283
|
return JSON.stringify(this.toDict());
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
|
-
class
|
|
286
|
+
class V {
|
|
287
287
|
static encode(e) {
|
|
288
|
-
return e instanceof
|
|
288
|
+
return e instanceof T ? e.toDict() : Array.isArray(e) ? e.map((i) => V.encode(i)) : typeof e == "object" && e !== null ? JSON.stringify(e) : e;
|
|
289
289
|
}
|
|
290
290
|
static stringify(e) {
|
|
291
|
-
return JSON.stringify(
|
|
291
|
+
return JSON.stringify(V.encode(e), (i, n) => n instanceof T ? n.toDict() : n);
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
|
-
function
|
|
295
|
-
const e =
|
|
296
|
-
let
|
|
297
|
-
i.listenerCount("message") === 0 && i.on("message", (
|
|
298
|
-
if (typeof
|
|
299
|
-
if (!
|
|
300
|
-
const
|
|
301
|
-
return
|
|
302
|
-
`).slice(1).map((
|
|
303
|
-
const
|
|
304
|
-
if (
|
|
305
|
-
const [,
|
|
306
|
-
return new
|
|
294
|
+
function Oa(a) {
|
|
295
|
+
const e = Ca.resolve(__dirname, "./debuggerWorker.js"), i = new Ea(e, { workerData: { captureAllExceptions: !0 } });
|
|
296
|
+
let n = null;
|
|
297
|
+
i.listenerCount("message") === 0 && i.on("message", (r) => {
|
|
298
|
+
if (typeof r == "string" && m().sfDebug && console.log(`[Worker] ${r}`), r.readyToGetParameters && i.postMessage({ sfDebug: m().sfDebug, stackDepthLocals: m().stackDepthLocals }), r.type === "exception") {
|
|
299
|
+
if (!n) return void (m().sfDebug && console.error("[Veritas Main] No current error to merge with debugger frames."));
|
|
300
|
+
const s = function(u) {
|
|
301
|
+
return u ? u.split(`
|
|
302
|
+
`).slice(1).map((g) => {
|
|
303
|
+
const p = /at (.+?) \((.+):(\d+):(\d+)\)/.exec(g) || /at (.+):(\d+):(\d+)/.exec(g);
|
|
304
|
+
if (p) {
|
|
305
|
+
const [, y, v, x] = p;
|
|
306
|
+
return new T({ function: y || "<anonymous>", locals: {}, file: v || "<unknown>", line: parseInt(x, 10) || 0, code: "<not captured>" });
|
|
307
307
|
}
|
|
308
|
-
return new
|
|
308
|
+
return new T({ function: "<unknown>", locals: {}, file: "<unknown>", line: 0, code: "<not captured>" });
|
|
309
309
|
}) : [];
|
|
310
|
-
}(
|
|
311
|
-
if (
|
|
312
|
-
const
|
|
313
|
-
|
|
314
|
-
const
|
|
315
|
-
const
|
|
316
|
-
for (let v = 0; v <
|
|
317
|
-
const x =
|
|
318
|
-
z ?
|
|
310
|
+
}(n.stack), l = r.frames;
|
|
311
|
+
if (s.length === 0) return void (m().sfDebug && console.error("[Veritas Main] No stack frames found in the error."));
|
|
312
|
+
const h = [s[0]];
|
|
313
|
+
s[1] && l[0] && h.push(new T({ function: l[0].function || s[1].function || "<anonymous>", locals: l[0].locals || {}, file: s[1].file || l[0].file || "<unknown>", line: s[1].line || l[0].line || 0, code: l[0].code || "<not captured>" }));
|
|
314
|
+
const c = function(u, g) {
|
|
315
|
+
const p = [], y = u.length;
|
|
316
|
+
for (let v = 0; v < y; v++) {
|
|
317
|
+
const x = u[v], z = g[v];
|
|
318
|
+
z ? p.push(new T({ function: z.function || x.function || "<anonymous>", locals: z.locals || {}, file: x.file || z.file || "<unknown>", line: x.line || z.line || 0, code: z.code || "<not captured>" })) : p.push(x);
|
|
319
319
|
}
|
|
320
|
-
return
|
|
321
|
-
}(
|
|
322
|
-
|
|
323
|
-
const
|
|
324
|
-
|
|
320
|
+
return p;
|
|
321
|
+
}(s.slice(2), l.slice(1));
|
|
322
|
+
h.push(...c);
|
|
323
|
+
const t = m().stackDepthCodeTraceDepth, b = t === -1 ? h : h.slice(0, t + 1);
|
|
324
|
+
m().sfDebug && console.log("FINAL FRAMES : ", b), a.setOperationName("CollectExceptions"), a.doSend(n.message, b), n = null;
|
|
325
325
|
}
|
|
326
|
-
}), i.listenerCount("error") === 0 && i.on("error", (
|
|
327
|
-
|
|
326
|
+
}), i.listenerCount("error") === 0 && i.on("error", (r) => {
|
|
327
|
+
m().sfDebug && console.error("[Veritas Main] Worker error:", r);
|
|
328
328
|
}), i.listenerCount("exit") === 0 && i.on("exit", () => {
|
|
329
|
-
|
|
330
|
-
}), process.on("exit", () => i.terminate()), process.on("uncaughtException", (
|
|
331
|
-
|
|
332
|
-
}), process.on("unhandledRejection", (
|
|
333
|
-
|
|
329
|
+
m().sfDebug && console.log("[Veritas Main] Worker exited.");
|
|
330
|
+
}), process.on("exit", () => i.terminate()), process.on("uncaughtException", (r) => {
|
|
331
|
+
n = r, i.postMessage({ type: "processException" });
|
|
332
|
+
}), process.on("unhandledRejection", (r) => {
|
|
333
|
+
n = r instanceof Error ? r : new Error(String(r)), i.postMessage({ type: "processException" });
|
|
334
334
|
});
|
|
335
335
|
const o = Error;
|
|
336
|
-
global.Error = function(...
|
|
337
|
-
const
|
|
338
|
-
return Object.setPrototypeOf(
|
|
339
|
-
|
|
340
|
-
}),
|
|
336
|
+
global.Error = function(...r) {
|
|
337
|
+
const s = new o(...r);
|
|
338
|
+
return Object.setPrototypeOf(s, o.prototype), setImmediate(() => {
|
|
339
|
+
s instanceof o && (n = s, i.postMessage({ type: "processException" }));
|
|
340
|
+
}), s;
|
|
341
341
|
}, global.Error.prototype = o.prototype;
|
|
342
342
|
}
|
|
343
|
-
class
|
|
343
|
+
class Ha extends G {
|
|
344
344
|
constructor() {
|
|
345
345
|
super();
|
|
346
|
-
|
|
346
|
+
k(this, "serviceIdentifier", new oa());
|
|
347
347
|
this.setOperationName("CollectExceptions");
|
|
348
348
|
}
|
|
349
349
|
async sendAppIdentifier() {
|
|
350
350
|
this.serviceIdentifier.doSend({});
|
|
351
351
|
}
|
|
352
|
-
async doSend(i,
|
|
353
|
-
this.sendAppIdentifier(), this.send(i,
|
|
352
|
+
async doSend(i, n) {
|
|
353
|
+
this.sendAppIdentifier(), this.send(i, n);
|
|
354
354
|
}
|
|
355
|
-
async send(i,
|
|
356
|
-
|
|
357
|
-
const o = JSON.stringify(
|
|
358
|
-
|
|
355
|
+
async send(i, n) {
|
|
356
|
+
m().sfDebug && console.log(" SENDING EXCEPTION...");
|
|
357
|
+
const o = JSON.stringify(V.encode(n)), r = this.getVariables({ exceptionMessage: i, traceJson: o, reentrancyGuardPreactive: !1, library: m().packageLibraryType, version: m().version });
|
|
358
|
+
C(this.endpoint, this.operationName, this.getQuery(), r);
|
|
359
359
|
}
|
|
360
360
|
getQuery() {
|
|
361
361
|
return `
|
|
@@ -365,7 +365,7 @@ class Oa extends _ {
|
|
|
365
365
|
`;
|
|
366
366
|
}
|
|
367
367
|
}
|
|
368
|
-
class
|
|
368
|
+
class La extends ia {
|
|
369
369
|
constructor() {
|
|
370
370
|
super(), this.setOperationName("DomainsToNotPassHeaderTo");
|
|
371
371
|
}
|
|
@@ -385,229 +385,229 @@ class Ha extends oa {
|
|
|
385
385
|
domains: $domains
|
|
386
386
|
)
|
|
387
387
|
}
|
|
388
|
-
`,
|
|
389
|
-
|
|
388
|
+
`, n = { apiKey: this.apiKey, serviceUuid: this.serviceUUID, domains: e };
|
|
389
|
+
C(this.endpoint, this.operationName, i, n);
|
|
390
390
|
}
|
|
391
391
|
}
|
|
392
|
-
function
|
|
393
|
-
let i = 0,
|
|
392
|
+
function wa(a, e) {
|
|
393
|
+
let i = 0, n = a.length, o = !1;
|
|
394
394
|
if (!e) {
|
|
395
395
|
if (a.startsWith("data:")) return null;
|
|
396
396
|
for (; i < a.length && a.charCodeAt(i) <= 32; ) i += 1;
|
|
397
|
-
for (;
|
|
397
|
+
for (; n > i + 1 && a.charCodeAt(n - 1) <= 32; ) n -= 1;
|
|
398
398
|
if (a.charCodeAt(i) === 47 && a.charCodeAt(i + 1) === 47) i += 2;
|
|
399
399
|
else {
|
|
400
|
-
const
|
|
401
|
-
if (
|
|
402
|
-
const
|
|
403
|
-
if (!(
|
|
404
|
-
if (!(
|
|
405
|
-
if (!(
|
|
406
|
-
if (!(
|
|
400
|
+
const c = a.indexOf(":/", i);
|
|
401
|
+
if (c !== -1) {
|
|
402
|
+
const t = c - i, b = a.charCodeAt(i), u = a.charCodeAt(i + 1), g = a.charCodeAt(i + 2), p = a.charCodeAt(i + 3), y = a.charCodeAt(i + 4);
|
|
403
|
+
if (!(t === 5 && b === 104 && u === 116 && g === 116 && p === 112 && y === 115)) {
|
|
404
|
+
if (!(t === 4 && b === 104 && u === 116 && g === 116 && p === 112)) {
|
|
405
|
+
if (!(t === 3 && b === 119 && u === 115 && g === 115)) {
|
|
406
|
+
if (!(t === 2 && b === 119 && u === 115)) for (let v = i; v < c; v += 1) {
|
|
407
407
|
const x = 32 | a.charCodeAt(v);
|
|
408
408
|
if (!(x >= 97 && x <= 122 || x >= 48 && x <= 57 || x === 46 || x === 45 || x === 43)) return null;
|
|
409
409
|
}
|
|
410
410
|
}
|
|
411
411
|
}
|
|
412
412
|
}
|
|
413
|
-
for (i =
|
|
413
|
+
for (i = c + 2; a.charCodeAt(i) === 47; ) i += 1;
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
|
-
let
|
|
417
|
-
for (let
|
|
418
|
-
const
|
|
419
|
-
if (
|
|
420
|
-
|
|
416
|
+
let s = -1, l = -1, h = -1;
|
|
417
|
+
for (let c = i; c < n; c += 1) {
|
|
418
|
+
const t = a.charCodeAt(c);
|
|
419
|
+
if (t === 35 || t === 47 || t === 63) {
|
|
420
|
+
n = c;
|
|
421
421
|
break;
|
|
422
422
|
}
|
|
423
|
-
|
|
423
|
+
t === 64 ? s = c : t === 93 ? l = c : t === 58 ? h = c : t >= 65 && t <= 90 && (o = !0);
|
|
424
424
|
}
|
|
425
|
-
if (
|
|
426
|
-
|
|
425
|
+
if (s !== -1 && s > i && s < n && (i = s + 1), a.charCodeAt(i) === 91) return l !== -1 ? a.slice(i + 1, l).toLowerCase() : null;
|
|
426
|
+
h !== -1 && h > i && h < n && (n = h);
|
|
427
427
|
}
|
|
428
|
-
for (;
|
|
429
|
-
const
|
|
430
|
-
return o ?
|
|
428
|
+
for (; n > i + 1 && a.charCodeAt(n - 1) === 46; ) n -= 1;
|
|
429
|
+
const r = i !== 0 || n !== a.length ? a.slice(i, n) : a;
|
|
430
|
+
return o ? r.toLowerCase() : r;
|
|
431
431
|
}
|
|
432
|
-
function
|
|
432
|
+
function xa(a) {
|
|
433
433
|
return a >= 97 && a <= 122 || a >= 48 && a <= 57 || a > 127;
|
|
434
434
|
}
|
|
435
|
-
function
|
|
436
|
-
if (a.length > 255 || a.length === 0 || !
|
|
435
|
+
function za(a) {
|
|
436
|
+
if (a.length > 255 || a.length === 0 || !xa(a.charCodeAt(0)) && a.charCodeAt(0) !== 46 && a.charCodeAt(0) !== 95) return !1;
|
|
437
437
|
let e = -1, i = -1;
|
|
438
|
-
const
|
|
439
|
-
for (let o = 0; o <
|
|
440
|
-
const
|
|
441
|
-
if (
|
|
438
|
+
const n = a.length;
|
|
439
|
+
for (let o = 0; o < n; o += 1) {
|
|
440
|
+
const r = a.charCodeAt(o);
|
|
441
|
+
if (r === 46) {
|
|
442
442
|
if (o - e > 64 || i === 46 || i === 45 || i === 95) return !1;
|
|
443
443
|
e = o;
|
|
444
|
-
} else if (!
|
|
445
|
-
i =
|
|
444
|
+
} else if (!xa(r) && r !== 45 && r !== 95) return !1;
|
|
445
|
+
i = r;
|
|
446
446
|
}
|
|
447
|
-
return
|
|
447
|
+
return n - e - 1 <= 63 && i !== 45;
|
|
448
448
|
}
|
|
449
|
-
const
|
|
450
|
-
return { allowIcannDomains: a, allowPrivateDomains: e, detectIp: i, extractHostname:
|
|
449
|
+
const Ka = function({ allowIcannDomains: a = !0, allowPrivateDomains: e = !1, detectIp: i = !0, extractHostname: n = !0, mixedInputs: o = !0, validHosts: r = null, validateHostname: s = !0 }) {
|
|
450
|
+
return { allowIcannDomains: a, allowPrivateDomains: e, detectIp: i, extractHostname: n, mixedInputs: o, validHosts: r, validateHostname: s };
|
|
451
451
|
}({});
|
|
452
|
-
function
|
|
453
|
-
const
|
|
454
|
-
return
|
|
455
|
-
return { allowIcannDomains:
|
|
456
|
-
}(
|
|
457
|
-
}(
|
|
458
|
-
return typeof a != "string" ? o : (
|
|
459
|
-
if (
|
|
460
|
-
let
|
|
461
|
-
if (
|
|
462
|
-
let
|
|
463
|
-
for (;
|
|
464
|
-
const
|
|
465
|
-
if (
|
|
466
|
-
else if (!(
|
|
452
|
+
function _a(a, e, i, n, o) {
|
|
453
|
+
const r = function(c) {
|
|
454
|
+
return c === void 0 ? Ka : function({ allowIcannDomains: t = !0, allowPrivateDomains: b = !1, detectIp: u = !0, extractHostname: g = !0, mixedInputs: p = !0, validHosts: y = null, validateHostname: v = !0 }) {
|
|
455
|
+
return { allowIcannDomains: t, allowPrivateDomains: b, detectIp: u, extractHostname: g, mixedInputs: p, validHosts: y, validateHostname: v };
|
|
456
|
+
}(c);
|
|
457
|
+
}(n);
|
|
458
|
+
return typeof a != "string" ? o : (r.extractHostname ? r.mixedInputs ? o.hostname = wa(a, za(a)) : o.hostname = wa(a, !1) : o.hostname = a, o.hostname === null || r.detectIp && (o.isIp = function(c) {
|
|
459
|
+
if (c.length < 3) return !1;
|
|
460
|
+
let t = c.startsWith("[") ? 1 : 0, b = c.length;
|
|
461
|
+
if (c[b - 1] === "]" && (b -= 1), b - t > 39) return !1;
|
|
462
|
+
let u = !1;
|
|
463
|
+
for (; t < b; t += 1) {
|
|
464
|
+
const g = c.charCodeAt(t);
|
|
465
|
+
if (g === 58) u = !0;
|
|
466
|
+
else if (!(g >= 48 && g <= 57 || g >= 97 && g <= 102 || g >= 65 && g <= 90)) return !1;
|
|
467
467
|
}
|
|
468
|
-
return
|
|
469
|
-
}(
|
|
470
|
-
if (
|
|
471
|
-
let
|
|
472
|
-
for (let
|
|
473
|
-
const
|
|
474
|
-
if (
|
|
475
|
-
else if (
|
|
468
|
+
return u;
|
|
469
|
+
}(s = o.hostname) || function(c) {
|
|
470
|
+
if (c.length < 7 || c.length > 15) return !1;
|
|
471
|
+
let t = 0;
|
|
472
|
+
for (let b = 0; b < c.length; b += 1) {
|
|
473
|
+
const u = c.charCodeAt(b);
|
|
474
|
+
if (u === 46) t += 1;
|
|
475
|
+
else if (u < 48 || u > 57) return !1;
|
|
476
476
|
}
|
|
477
|
-
return
|
|
478
|
-
}(
|
|
479
|
-
if (
|
|
480
|
-
const
|
|
481
|
-
for (const
|
|
482
|
-
return !!
|
|
483
|
-
}(
|
|
477
|
+
return t === 3 && c.charCodeAt(0) !== 46 && c.charCodeAt(c.length - 1) !== 46;
|
|
478
|
+
}(s), o.isIp) ? o : r.validateHostname && r.extractHostname && !za(o.hostname) ? (o.hostname = null, o) : (i(o.hostname, r, o), o.publicSuffix === null || (o.domain = function(c, t, b) {
|
|
479
|
+
if (b.validHosts !== null) {
|
|
480
|
+
const g = b.validHosts;
|
|
481
|
+
for (const p of g) if (function(y, v) {
|
|
482
|
+
return !!y.endsWith(v) && (y.length === v.length || y[y.length - v.length - 1] === ".");
|
|
483
|
+
}(t, p)) return p;
|
|
484
484
|
}
|
|
485
|
-
let
|
|
486
|
-
if (
|
|
487
|
-
return
|
|
488
|
-
const
|
|
489
|
-
return v === -1 ?
|
|
490
|
-
}(
|
|
491
|
-
}(o.publicSuffix, o.hostname,
|
|
492
|
-
return
|
|
493
|
-
}(o.hostname, o.domain), o.domainWithoutSuffix = (
|
|
494
|
-
var
|
|
485
|
+
let u = 0;
|
|
486
|
+
if (t.startsWith(".")) for (; u < t.length && t[u] === "."; ) u += 1;
|
|
487
|
+
return c.length === t.length - u ? null : function(g, p) {
|
|
488
|
+
const y = g.length - p.length - 2, v = g.lastIndexOf(".", y);
|
|
489
|
+
return v === -1 ? g : g.slice(v + 1);
|
|
490
|
+
}(t, c);
|
|
491
|
+
}(o.publicSuffix, o.hostname, r), o.domain === null || (o.subdomain = function(c, t) {
|
|
492
|
+
return t.length === c.length ? "" : c.slice(0, -t.length - 1);
|
|
493
|
+
}(o.hostname, o.domain), o.domainWithoutSuffix = (l = o.domain, h = o.publicSuffix, l.slice(0, -h.length - 1)))), o));
|
|
494
|
+
var s, l, h;
|
|
495
495
|
}
|
|
496
|
-
const
|
|
497
|
-
const a = [1, {}], e = [0, { city: a }];
|
|
498
|
-
return [0, { ck: [0, { www: a }], jp: [0, { kawasaki:
|
|
499
|
-
}(),
|
|
500
|
-
const a = [1, {}], e = [2, {}], i = [1, { com: a, edu: a, gov: a, net: a, org: a }],
|
|
501
|
-
return [0, { ac: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, drr: e, feedback: e, forms: e }], ad: a, ae: [1, { ac: a, co: a, gov: a, mil: a, net: a, org: a, sch: a }], aero: [1, { airline: a, airport: a, "accident-investigation": a, "accident-prevention": a, aerobatic: a, aeroclub: a, aerodrome: a, agents: a, "air-surveillance": a, "air-traffic-control": a, aircraft: a, airtraffic: a, ambulance: a, association: a, author: a, ballooning: a, broker: a, caa: a, cargo: a, catering: a, certification: a, championship: a, charter: a, civilaviation: a, club: a, conference: a, consultant: a, consulting: a, control: a, council: a, crew: a, design: a, dgca: a, educator: a, emergency: a, engine: a, engineer: a, entertainment: a, equipment: a, exchange: a, express: a, federation: a, flight: a, freight: a, fuel: a, gliding: a, government: a, groundhandling: a, group: a, hanggliding: a, homebuilt: a, insurance: a, journal: a, journalist: a, leasing: a, logistics: a, magazine: a, maintenance: a, marketplace: a, media: a, microlight: a, modelling: a, navigation: a, parachuting: a, paragliding: a, "passenger-association": a, pilot: a, press: a, production: a, recreation: a, repbody: a, res: a, research: a, rotorcraft: a, safety: a, scientist: a, services: a, show: a, skydiving: a, software: a, student: a, taxi: a, trader: a, trading: a, trainer: a, union: a, workinggroup: a, works: a }], af: i, ag: [1, { co: a, com: a, net: a, nom: a, org: a }], ai: [1, { com: a, net: a, off: a, org: a, uwu: e, framer: e }], al: s, am: [1, { co: a, com: a, commune: a, net: a, org: a, radio: e }], ao: [1, { co: a, ed: a, edu: a, gov: a, gv: a, it: a, og: a, org: a, pb: a }], aq: a, ar: [1, { bet: a, com: a, coop: a, edu: a, gob: a, gov: a, int: a, mil: a, musica: a, mutual: a, net: a, org: a, senasa: a, tur: a }], arpa: [1, { e164: a, home: a, "in-addr": a, ip6: a, iris: a, uri: a, urn: a }], as: c, asia: [1, { cloudns: e, daemon: e, dix: e }], at: [1, { ac: [1, { sth: a }], co: a, gv: a, or: a, funkfeuer: [0, { wien: e }], futurecms: [0, { "*": e, ex: o, in: o }], futurehosting: e, futuremailing: e, ortsinfo: [0, { ex: o, kunden: o }], biz: e, info: e, "123webseite": e, priv: e, myspreadshop: e, "12hp": e, "2ix": e, "4lima": e, "lima-city": e }], au: [1, { asn: a, com: [1, { cloudlets: [0, { mel: e }], myspreadshop: e }], edu: [1, { act: a, catholic: a, nsw: [1, { schools: a }], nt: a, qld: a, sa: a, tas: a, vic: a, wa: a }], gov: [1, { qld: a, sa: a, tas: a, vic: a, wa: a }], id: a, net: a, org: a, conf: a, oz: a, act: a, nsw: a, nt: a, qld: a, sa: a, tas: a, vic: a, wa: a }], aw: [1, { com: a }], ax: a, az: [1, { biz: a, co: a, com: a, edu: a, gov: a, info: a, int: a, mil: a, name: a, net: a, org: a, pp: a, pro: a }], ba: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, rs: e }], bb: [1, { biz: a, co: a, com: a, edu: a, gov: a, info: a, net: a, org: a, store: a, tv: a }], bd: u, be: [1, { ac: a, cloudns: e, webhosting: e, interhostsolutions: [0, { cloud: e }], kuleuven: [0, { ezproxy: e }], "123website": e, myspreadshop: e, transurl: o }], bf: c, bg: [1, { 0: a, 1: a, 2: a, 3: a, 4: a, 5: a, 6: a, 7: a, 8: a, 9: a, a, b: a, c: a, d: a, e: a, f: a, g: a, h: a, i: a, j: a, k: a, l: a, m: a, n: a, o: a, p: a, q: a, r: a, s: a, t: a, u: a, v: a, w: a, x: a, y: a, z: a, barsy: e }], bh: i, bi: [1, { co: a, com: a, edu: a, or: a, org: a }], biz: [1, { activetrail: e, "cloud-ip": e, cloudns: e, jozi: e, dyndns: e, "for-better": e, "for-more": e, "for-some": e, "for-the": e, selfip: e, webhop: e, orx: e, mmafan: e, myftp: e, "no-ip": e, dscloud: e }], bj: [1, { africa: a, agro: a, architectes: a, assur: a, avocats: a, co: a, com: a, eco: a, econo: a, edu: a, info: a, loisirs: a, money: a, net: a, org: a, ote: a, restaurant: a, resto: a, tourism: a, univ: a }], bm: i, bn: [1, { com: a, edu: a, gov: a, net: a, org: a, co: e }], bo: [1, { com: a, edu: a, gob: a, int: a, mil: a, net: a, org: a, tv: a, web: a, academia: a, agro: a, arte: a, blog: a, bolivia: a, ciencia: a, cooperativa: a, democracia: a, deporte: a, ecologia: a, economia: a, empresa: a, indigena: a, industria: a, info: a, medicina: a, movimiento: a, musica: a, natural: a, nombre: a, noticias: a, patria: a, plurinacional: a, politica: a, profesional: a, pueblo: a, revista: a, salud: a, tecnologia: a, tksat: a, transporte: a, wiki: a }], br: [1, { "9guacu": a, abc: a, adm: a, adv: a, agr: a, aju: a, am: a, anani: a, aparecida: a, app: a, arq: a, art: a, ato: a, b: a, barueri: a, belem: a, bet: a, bhz: a, bib: a, bio: a, blog: a, bmd: a, boavista: a, bsb: a, campinagrande: a, campinas: a, caxias: a, cim: a, cng: a, cnt: a, com: [1, { simplesite: e }], contagem: a, coop: a, coz: a, cri: a, cuiaba: a, curitiba: a, def: a, des: a, det: a, dev: a, ecn: a, eco: a, edu: a, emp: a, enf: a, eng: a, esp: a, etc: a, eti: a, far: a, feira: a, flog: a, floripa: a, fm: a, fnd: a, fortal: a, fot: a, foz: a, fst: a, g12: a, geo: a, ggf: a, goiania: a, gov: [1, { ac: a, al: a, am: a, ap: a, ba: a, ce: a, df: a, es: a, go: a, ma: a, mg: a, ms: a, mt: a, pa: a, pb: a, pe: a, pi: a, pr: a, rj: a, rn: a, ro: a, rr: a, rs: a, sc: a, se: a, sp: a, to: a }], gru: a, imb: a, ind: a, inf: a, jab: a, jampa: a, jdf: a, joinville: a, jor: a, jus: a, leg: [1, { ac: e, al: e, am: e, ap: e, ba: e, ce: e, df: e, es: e, go: e, ma: e, mg: e, ms: e, mt: e, pa: e, pb: e, pe: e, pi: e, pr: e, rj: e, rn: e, ro: e, rr: e, rs: e, sc: e, se: e, sp: e, to: e }], leilao: a, lel: a, log: a, londrina: a, macapa: a, maceio: a, manaus: a, maringa: a, mat: a, med: a, mil: a, morena: a, mp: a, mus: a, natal: a, net: a, niteroi: a, nom: u, not: a, ntr: a, odo: a, ong: a, org: a, osasco: a, palmas: a, poa: a, ppg: a, pro: a, psc: a, psi: a, pvh: a, qsl: a, radio: a, rec: a, recife: a, rep: a, ribeirao: a, rio: a, riobranco: a, riopreto: a, salvador: a, sampa: a, santamaria: a, santoandre: a, saobernardo: a, saogonca: a, seg: a, sjc: a, slg: a, slz: a, sorocaba: a, srv: a, taxi: a, tc: a, tec: a, teo: a, the: a, tmp: a, trd: a, tur: a, tv: a, udi: a, vet: a, vix: a, vlog: a, wiki: a, zlg: a }], bs: [1, { com: a, edu: a, gov: a, net: a, org: a, we: e }], bt: i, bv: a, bw: [1, { ac: a, co: a, gov: a, net: a, org: a }], by: [1, { gov: a, mil: a, com: a, of: a, mediatech: e }], bz: [1, { co: a, com: a, edu: a, gov: a, net: a, org: a, za: e, mydns: e, gsj: e }], ca: [1, { ab: a, bc: a, mb: a, nb: a, nf: a, nl: a, ns: a, nt: a, nu: a, on: a, pe: a, qc: a, sk: a, yk: a, gc: a, barsy: e, awdev: o, co: e, "no-ip": e, myspreadshop: e, box: e }], cat: a, cc: [1, { cleverapps: e, cloudns: e, ftpaccess: e, "game-server": e, myphotos: e, scrapping: e, twmail: e, csx: e, fantasyleague: e, spawn: [0, { instances: e }] }], cd: c, cf: a, cg: a, ch: [1, { square7: e, cloudns: e, cloudscale: [0, { cust: e, lpg: f, rma: f }], flow: [0, { ae: [0, { alp1: e }], appengine: e }], "linkyard-cloud": e, gotdns: e, dnsking: e, "123website": e, myspreadshop: e, firenet: [0, { "*": e, svc: o }], "12hp": e, "2ix": e, "4lima": e, "lima-city": e }], ci: [1, { ac: a, "xn--aroport-bya": a, aéroport: a, asso: a, co: a, com: a, ed: a, edu: a, go: a, gouv: a, int: a, net: a, or: a, org: a, fin: e }], ck: u, cl: [1, { co: a, gob: a, gov: a, mil: a, cloudns: e }], cm: [1, { co: a, com: a, gov: a, net: a }], cn: [1, { ac: a, com: [1, { amazonaws: [0, { "cn-north-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: z, s3: e, "s3-accesspoint": e, "s3-deprecated": e, "s3-object-lambda": e, "s3-website": e }], "cn-northwest-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: ia, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e }], compute: o, airflow: [0, { "cn-north-1": o, "cn-northwest-1": o }], eb: [0, { "cn-north-1": e, "cn-northwest-1": e }], elb: o }], sagemaker: [0, { "cn-north-1": m, "cn-northwest-1": m }] }], edu: a, gov: a, mil: a, net: a, org: a, "xn--55qx5d": a, 公司: a, "xn--od0alg": a, 網絡: a, "xn--io0a7i": a, 网络: a, ah: a, bj: a, cq: a, fj: a, gd: a, gs: a, gx: a, gz: a, ha: a, hb: a, he: a, hi: a, hk: a, hl: a, hn: a, jl: a, js: a, jx: a, ln: a, mo: a, nm: a, nx: a, qh: a, sc: a, sd: a, sh: [1, { as: e }], sn: a, sx: a, tj: a, tw: a, xj: a, xz: a, yn: a, zj: a, "canva-apps": e, canvasite: x, myqnapcloud: e, quickconnect: sa }], co: [1, { com: a, edu: a, gov: a, mil: a, net: a, nom: a, org: a, carrd: e, crd: e, otap: o, leadpages: e, lpages: e, mypi: e, n4t: e, xmit: o, firewalledreplit: n, repl: n, supabase: e }], com: [1, { a2hosted: e, cpserver: e, adobeaemcloud: [2, { dev: o }], africa: e, airkitapps: e, "airkitapps-au": e, aivencloud: e, kasserver: e, amazonaws: [0, { "af-south-1": C, "ap-east-1": N, "ap-northeast-1": I, "ap-northeast-2": I, "ap-northeast-3": C, "ap-south-1": I, "ap-south-2": $, "ap-southeast-1": I, "ap-southeast-2": I, "ap-southeast-3": $, "ap-southeast-4": $, "ap-southeast-5": [0, { "execute-api": e, dualstack: z, s3: e, "s3-accesspoint": e, "s3-deprecated": e, "s3-object-lambda": e, "s3-website": e }], "ca-central-1": na, "ca-west-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: E, s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-fips": e, "s3-object-lambda": e, "s3-website": e }], "eu-central-1": I, "eu-central-2": $, "eu-north-1": N, "eu-south-1": C, "eu-south-2": $, "eu-west-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: z, s3: e, "s3-accesspoint": e, "s3-deprecated": e, "s3-object-lambda": e, "s3-website": e, "analytics-gateway": e, "aws-cloud9": j, cloud9: q }], "eu-west-2": N, "eu-west-3": C, "il-central-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: z, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e, "aws-cloud9": j, cloud9: [0, { vfs: e }] }], "me-central-1": $, "me-south-1": N, "sa-east-1": C, "us-east-1": [2, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: E, s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-deprecated": e, "s3-fips": e, "s3-object-lambda": e, "s3-website": e, "analytics-gateway": e, "aws-cloud9": j, cloud9: q }], "us-east-2": ta, "us-gov-east-1": ra, "us-gov-west-1": ra, "us-west-1": na, "us-west-2": ta, compute: o, "compute-1": o, airflow: [0, { "af-south-1": o, "ap-east-1": o, "ap-northeast-1": o, "ap-northeast-2": o, "ap-northeast-3": o, "ap-south-1": o, "ap-south-2": o, "ap-southeast-1": o, "ap-southeast-2": o, "ap-southeast-3": o, "ap-southeast-4": o, "ca-central-1": o, "ca-west-1": o, "eu-central-1": o, "eu-central-2": o, "eu-north-1": o, "eu-south-1": o, "eu-south-2": o, "eu-west-1": o, "eu-west-2": o, "eu-west-3": o, "il-central-1": o, "me-central-1": o, "me-south-1": o, "sa-east-1": o, "us-east-1": o, "us-east-2": o, "us-west-1": o, "us-west-2": o }], s3: e, "s3-1": e, "s3-ap-east-1": e, "s3-ap-northeast-1": e, "s3-ap-northeast-2": e, "s3-ap-northeast-3": e, "s3-ap-south-1": e, "s3-ap-southeast-1": e, "s3-ap-southeast-2": e, "s3-ca-central-1": e, "s3-eu-central-1": e, "s3-eu-north-1": e, "s3-eu-west-1": e, "s3-eu-west-2": e, "s3-eu-west-3": e, "s3-external-1": e, "s3-fips-us-gov-east-1": e, "s3-fips-us-gov-west-1": e, "s3-global": [0, { accesspoint: [0, { mrap: e }] }], "s3-me-south-1": e, "s3-sa-east-1": e, "s3-us-east-2": e, "s3-us-gov-east-1": e, "s3-us-gov-west-1": e, "s3-us-west-1": e, "s3-us-west-2": e, "s3-website-ap-northeast-1": e, "s3-website-ap-southeast-1": e, "s3-website-ap-southeast-2": e, "s3-website-eu-west-1": e, "s3-website-sa-east-1": e, "s3-website-us-east-1": e, "s3-website-us-gov-west-1": e, "s3-website-us-west-1": e, "s3-website-us-west-2": e, elb: o }], amazoncognito: [0, { "af-south-1": y, "ap-east-1": y, "ap-northeast-1": y, "ap-northeast-2": y, "ap-northeast-3": y, "ap-south-1": y, "ap-south-2": y, "ap-southeast-1": y, "ap-southeast-2": y, "ap-southeast-3": y, "ap-southeast-4": y, "ca-central-1": y, "ca-west-1": y, "eu-central-1": y, "eu-central-2": y, "eu-north-1": y, "eu-south-1": y, "eu-south-2": y, "eu-west-1": y, "eu-west-2": y, "eu-west-3": y, "il-central-1": y, "me-central-1": y, "me-south-1": y, "sa-east-1": y, "us-east-1": A, "us-east-2": A, "us-gov-west-1": [0, { "auth-fips": e }], "us-west-1": A, "us-west-2": A }], amplifyapp: e, awsapprunner: o, awsapps: e, elasticbeanstalk: [2, { "af-south-1": e, "ap-east-1": e, "ap-northeast-1": e, "ap-northeast-2": e, "ap-northeast-3": e, "ap-south-1": e, "ap-southeast-1": e, "ap-southeast-2": e, "ap-southeast-3": e, "ca-central-1": e, "eu-central-1": e, "eu-north-1": e, "eu-south-1": e, "eu-west-1": e, "eu-west-2": e, "eu-west-3": e, "il-central-1": e, "me-south-1": e, "sa-east-1": e, "us-east-1": e, "us-east-2": e, "us-gov-east-1": e, "us-gov-west-1": e, "us-west-1": e, "us-west-2": e }], awsglobalaccelerator: e, siiites: e, appspacehosted: e, appspaceusercontent: e, "on-aptible": e, myasustor: e, "balena-devices": e, boutir: e, bplaced: e, cafjs: e, "canva-apps": e, "cdn77-storage": e, br: e, cn: e, de: e, eu: e, jpn: e, mex: e, ru: e, sa: e, uk: e, us: e, za: e, "clever-cloud": [0, { services: o }], dnsabr: e, "ip-ddns": e, jdevcloud: e, wpdevcloud: e, "cf-ipfs": e, "cloudflare-ipfs": e, trycloudflare: e, co: e, builtwithdark: e, datadetect: [0, { demo: e, instance: e }], dattolocal: e, dattorelay: e, dattoweb: e, mydatto: e, digitaloceanspaces: o, discordsays: e, discordsez: e, drayddns: e, dreamhosters: e, durumis: e, mydrobo: e, blogdns: e, cechire: e, dnsalias: e, dnsdojo: e, doesntexist: e, dontexist: e, doomdns: e, "dyn-o-saur": e, dynalias: e, "dyndns-at-home": e, "dyndns-at-work": e, "dyndns-blog": e, "dyndns-free": e, "dyndns-home": e, "dyndns-ip": e, "dyndns-mail": e, "dyndns-office": e, "dyndns-pics": e, "dyndns-remote": e, "dyndns-server": e, "dyndns-web": e, "dyndns-wiki": e, "dyndns-work": e, "est-a-la-maison": e, "est-a-la-masion": e, "est-le-patron": e, "est-mon-blogueur": e, "from-ak": e, "from-al": e, "from-ar": e, "from-ca": e, "from-ct": e, "from-dc": e, "from-de": e, "from-fl": e, "from-ga": e, "from-hi": e, "from-ia": e, "from-id": e, "from-il": e, "from-in": e, "from-ks": e, "from-ky": e, "from-ma": e, "from-md": e, "from-mi": e, "from-mn": e, "from-mo": e, "from-ms": e, "from-mt": e, "from-nc": e, "from-nd": e, "from-ne": e, "from-nh": e, "from-nj": e, "from-nm": e, "from-nv": e, "from-oh": e, "from-ok": e, "from-or": e, "from-pa": e, "from-pr": e, "from-ri": e, "from-sc": e, "from-sd": e, "from-tn": e, "from-tx": e, "from-ut": e, "from-va": e, "from-vt": e, "from-wa": e, "from-wi": e, "from-wv": e, "from-wy": e, getmyip: e, gotdns: e, "hobby-site": e, homelinux: e, homeunix: e, iamallama: e, "is-a-anarchist": e, "is-a-blogger": e, "is-a-bookkeeper": e, "is-a-bulls-fan": e, "is-a-caterer": e, "is-a-chef": e, "is-a-conservative": e, "is-a-cpa": e, "is-a-cubicle-slave": e, "is-a-democrat": e, "is-a-designer": e, "is-a-doctor": e, "is-a-financialadvisor": e, "is-a-geek": e, "is-a-green": e, "is-a-guru": e, "is-a-hard-worker": e, "is-a-hunter": e, "is-a-landscaper": e, "is-a-lawyer": e, "is-a-liberal": e, "is-a-libertarian": e, "is-a-llama": e, "is-a-musician": e, "is-a-nascarfan": e, "is-a-nurse": e, "is-a-painter": e, "is-a-personaltrainer": e, "is-a-photographer": e, "is-a-player": e, "is-a-republican": e, "is-a-rockstar": e, "is-a-socialist": e, "is-a-student": e, "is-a-teacher": e, "is-a-techie": e, "is-a-therapist": e, "is-an-accountant": e, "is-an-actor": e, "is-an-actress": e, "is-an-anarchist": e, "is-an-artist": e, "is-an-engineer": e, "is-an-entertainer": e, "is-certified": e, "is-gone": e, "is-into-anime": e, "is-into-cars": e, "is-into-cartoons": e, "is-into-games": e, "is-leet": e, "is-not-certified": e, "is-slick": e, "is-uberleet": e, "is-with-theband": e, "isa-geek": e, "isa-hockeynut": e, issmarterthanyou: e, "likes-pie": e, likescandy: e, "neat-url": e, "saves-the-whales": e, selfip: e, "sells-for-less": e, "sells-for-u": e, servebbs: e, "simple-url": e, "space-to-rent": e, "teaches-yoga": e, writesthisblog: e, ddnsfree: e, ddnsgeek: e, giize: e, gleeze: e, kozow: e, loseyourip: e, ooguy: e, theworkpc: e, mytuleap: e, "tuleap-partners": e, encoreapi: e, evennode: [0, { "eu-1": e, "eu-2": e, "eu-3": e, "eu-4": e, "us-1": e, "us-2": e, "us-3": e, "us-4": e }], onfabrica: e, "fastly-edge": e, "fastly-terrarium": e, "fastvps-server": e, mydobiss: e, firebaseapp: e, fldrv: e, forgeblocks: e, framercanvas: e, "freebox-os": e, freeboxos: e, freemyip: e, aliases121: e, gentapps: e, gentlentapis: e, githubusercontent: e, "0emm": o, appspot: [2, { r: o }], blogspot: e, codespot: e, googleapis: e, googlecode: e, pagespeedmobilizer: e, withgoogle: e, withyoutube: e, grayjayleagues: e, hatenablog: e, hatenadiary: e, herokuapp: e, gr: e, smushcdn: e, wphostedmail: e, wpmucdn: e, pixolino: e, "apps-1and1": e, "live-website": e, dopaas: e, "hosted-by-previder": V, hosteur: [0, { "rag-cloud": e, "rag-cloud-ch": e }], "ik-server": [0, { jcloud: e, "jcloud-ver-jpc": e }], jelastic: [0, { demo: e }], massivegrid: V, wafaicloud: [0, { jed: e, ryd: e }], webadorsite: e, joyent: [0, { cns: o }], lpusercontent: e, linode: [0, { members: e, nodebalancer: o }], linodeobjects: o, linodeusercontent: [0, { ip: e }], barsycenter: e, barsyonline: e, modelscape: e, mwcloudnonprod: e, polyspace: e, mazeplay: e, miniserver: e, atmeta: e, fbsbx: ca, meteorapp: la, routingthecloud: e, mydbserver: e, hostedpi: e, "mythic-beasts": [0, { caracal: e, customer: e, fentiger: e, lynx: e, ocelot: e, oncilla: e, onza: e, sphinx: e, vs: e, x: e, yali: e }], nospamproxy: [0, { cloud: [2, { o365: e }] }], "4u": e, nfshost: e, "3utilities": e, blogsyte: e, ciscofreak: e, damnserver: e, ddnsking: e, ditchyourip: e, dnsiskinky: e, dynns: e, geekgalaxy: e, "health-carereform": e, homesecuritymac: e, homesecuritypc: e, myactivedirectory: e, mysecuritycamera: e, myvnc: e, "net-freaks": e, onthewifi: e, point2this: e, quicksytes: e, securitytactics: e, servebeer: e, servecounterstrike: e, serveexchange: e, serveftp: e, servegame: e, servehalflife: e, servehttp: e, servehumour: e, serveirc: e, servemp3: e, servep2p: e, servepics: e, servequake: e, servesarcasm: e, stufftoread: e, unusualperson: e, workisboring: e, "001www": e, myiphost: e, observableusercontent: [0, { static: e }], simplesite: e, orsites: e, operaunite: e, "customer-oci": [0, { "*": e, oci: o, ocp: o, ocs: o }], oraclecloudapps: o, oraclegovcloudapps: o, "authgear-staging": e, authgearapps: e, skygearapp: e, outsystemscloud: e, ownprovider: e, pgfog: e, pagexl: e, gotpantheon: e, paywhirl: o, upsunapp: e, "platter-app": e, "postman-echo": e, prgmr: [0, { xen: e }], pythonanywhere: la, qa2: e, "alpha-myqnapcloud": e, "dev-myqnapcloud": e, mycloudnas: e, mynascloud: e, myqnapcloud: e, qualifioapp: e, ladesk: e, qbuser: e, quipelements: o, rackmaze: e, "readthedocs-hosted": e, rhcloud: e, onrender: e, render: G, "180r": e, dojin: e, sakuratan: e, sakuraweb: e, x0: e, code: [0, { builder: o, "dev-builder": o, "stg-builder": o }], salesforce: [0, { platform: [0, { "code-builder-stg": [0, { test: [0, { "001": o }] }] }] }], logoip: e, scrysec: e, "firewall-gateway": e, myshopblocks: e, myshopify: e, shopitsite: e, "1kapp": e, appchizi: e, applinzi: e, sinaapp: e, vipsinaapp: e, streamlitapp: e, "try-snowplow": e, "playstation-cloud": e, myspreadshop: e, "w-corp-staticblitz": e, "w-credentialless-staticblitz": e, "w-staticblitz": e, "stackhero-network": e, stdlib: [0, { api: e }], strapiapp: [2, { media: e }], "streak-link": e, streaklinks: e, streakusercontent: e, "temp-dns": e, dsmynas: e, familyds: e, mytabit: e, taveusercontent: e, "tb-hosting": R, reservd: e, thingdustdata: e, "townnews-staging": e, typeform: [0, { pro: e }], hk: e, it: e, vultrobjects: o, wafflecell: e, hotelwithflight: e, "reserve-online": e, cprapid: e, pleskns: e, remotewd: e, wiardweb: [0, { pages: e }], wixsite: e, wixstudio: e, messwithdns: e, "woltlab-demo": e, wpenginepowered: [2, { js: e }], xnbay: [2, { u2: e, "u2-local": e }], yolasite: e }], coop: a, cr: [1, { ac: a, co: a, ed: a, fi: a, go: a, or: a, sa: a }], cu: [1, { com: a, edu: a, gob: a, inf: a, nat: a, net: a, org: a }], cv: [1, { com: a, edu: a, id: a, int: a, net: a, nome: a, org: a, publ: a }], cw: P, cx: [1, { gov: a, cloudns: e, ath: e, info: e, assessments: e, calculators: e, funnels: e, paynow: e, quizzes: e, researched: e, tests: e }], cy: [1, { ac: a, biz: a, com: [1, { scaleforce: F }], ekloges: a, gov: a, ltd: a, mil: a, net: a, org: a, press: a, pro: a, tm: a }], cz: [1, { contentproxy9: [0, { rsc: e }], realm: e, e4: e, co: e, metacentrum: [0, { cloud: o, custom: e }], muni: [0, { cloud: [0, { flt: e, usr: e }] }] }], de: [1, { bplaced: e, square7: e, com: e, cosidns: ua, dnsupdater: e, "dynamisches-dns": e, "internet-dns": e, "l-o-g-i-n": e, ddnss: [2, { dyn: e, dyndns: e }], "dyn-ip24": e, dyndns1: e, "home-webserver": [2, { dyn: e }], "myhome-server": e, dnshome: e, fuettertdasnetz: e, isteingeek: e, istmein: e, lebtimnetz: e, leitungsen: e, traeumtgerade: e, frusky: o, goip: e, "xn--gnstigbestellen-zvb": e, günstigbestellen: e, "xn--gnstigliefern-wob": e, günstigliefern: e, "hs-heilbronn": [0, { it: [0, { pages: e, "pages-research": e }] }], "dyn-berlin": e, "in-berlin": e, "in-brb": e, "in-butter": e, "in-dsl": e, "in-vpn": e, iservschule: e, "mein-iserv": e, schulplattform: e, schulserver: e, "test-iserv": e, keymachine: e, "git-repos": e, "lcube-server": e, "svn-repos": e, barsy: e, webspaceconfig: e, "123webseite": e, rub: e, "ruhr-uni-bochum": [2, { noc: [0, { io: e }] }], logoip: e, "firewall-gateway": e, "my-gateway": e, "my-router": e, spdns: e, speedpartner: [0, { customer: e }], myspreadshop: e, "taifun-dns": e, "12hp": e, "2ix": e, "4lima": e, "lima-city": e, "dd-dns": e, "dray-dns": e, draydns: e, "dyn-vpn": e, dynvpn: e, "mein-vigor": e, "my-vigor": e, "my-wan": e, "syno-ds": e, "synology-diskstation": e, "synology-ds": e, uberspace: o, "virtual-user": e, virtualuser: e, "community-pro": e, diskussionsbereich: e }], dj: a, dk: [1, { biz: e, co: e, firm: e, reg: e, store: e, "123hjemmeside": e, myspreadshop: e }], dm: da, do: [1, { art: a, com: a, edu: a, gob: a, gov: a, mil: a, net: a, org: a, sld: a, web: a }], dz: [1, { art: a, asso: a, com: a, edu: a, gov: a, net: a, org: a, pol: a, soc: a, tm: a }], ec: [1, { com: a, edu: a, fin: a, gob: a, gov: a, info: a, k12: a, med: a, mil: a, net: a, org: a, pro: a, base: e, official: e }], edu: [1, { rit: [0, { "git-pages": e }] }], ee: [1, { aip: a, com: a, edu: a, fie: a, gov: a, lib: a, med: a, org: a, pri: a, riik: a }], eg: [1, { ac: a, com: a, edu: a, eun: a, gov: a, info: a, me: a, mil: a, name: a, net: a, org: a, sci: a, sport: a, tv: a }], er: u, es: [1, { com: a, edu: a, gob: a, nom: a, org: a, "123miweb": e, myspreadshop: e }], et: [1, { biz: a, com: a, edu: a, gov: a, info: a, name: a, net: a, org: a }], eu: [1, { airkitapps: e, cloudns: e, dogado: [0, { jelastic: e }], barsy: e, spdns: e, transurl: o, diskstation: e }], fi: [1, { aland: a, dy: e, "xn--hkkinen-5wa": e, häkkinen: e, iki: e, cloudplatform: [0, { fi: e }], datacenter: [0, { demo: e, paas: e }], kapsi: e, "123kotisivu": e, myspreadshop: e }], fj: [1, { ac: a, biz: a, com: a, gov: a, info: a, mil: a, name: a, net: a, org: a, pro: a }], fk: u, fm: [1, { com: a, edu: a, net: a, org: a, radio: e, user: o }], fo: a, fr: [1, { asso: a, com: a, gouv: a, nom: a, prd: a, tm: a, avoues: a, cci: a, greta: a, "huissier-justice": a, "en-root": e, "fbx-os": e, fbxos: e, "freebox-os": e, freeboxos: e, goupile: e, "123siteweb": e, "on-web": e, "chirurgiens-dentistes-en-france": e, dedibox: e, aeroport: e, avocat: e, chambagri: e, "chirurgiens-dentistes": e, "experts-comptables": e, medecin: e, notaires: e, pharmacien: e, port: e, veterinaire: e, myspreadshop: e, ynh: e }], ga: a, gb: a, gd: [1, { edu: a, gov: a }], ge: [1, { com: a, edu: a, gov: a, net: a, org: a, pvt: a, school: a }], gf: a, gg: [1, { co: a, net: a, org: a, kaas: e, stackit: e, panel: [2, { daemon: e }] }], gh: [1, { com: a, edu: a, gov: a, mil: a, org: a }], gi: [1, { com: a, edu: a, gov: a, ltd: a, mod: a, org: a }], gl: [1, { co: a, com: a, edu: a, net: a, org: a, biz: e }], gm: a, gn: [1, { ac: a, com: a, edu: a, gov: a, net: a, org: a }], gov: a, gp: [1, { asso: a, com: a, edu: a, mobi: a, net: a, org: a }], gq: a, gr: [1, { com: a, edu: a, gov: a, net: a, org: a, barsy: e, simplesite: e }], gs: a, gt: [1, { com: a, edu: a, gob: a, ind: a, mil: a, net: a, org: a }], gu: [1, { com: a, edu: a, gov: a, guam: a, info: a, net: a, org: a, web: a }], gw: a, gy: da, hk: [1, { com: a, edu: a, gov: a, idv: a, net: a, org: a, "xn--ciqpn": a, 个人: a, "xn--gmqw5a": a, 個人: a, "xn--55qx5d": a, 公司: a, "xn--mxtq1m": a, 政府: a, "xn--lcvr32d": a, 敎育: a, "xn--wcvs22d": a, 教育: a, "xn--gmq050i": a, 箇人: a, "xn--uc0atv": a, 組織: a, "xn--uc0ay4a": a, 組织: a, "xn--od0alg": a, 網絡: a, "xn--zf0avx": a, 網络: a, "xn--mk0axi": a, 组織: a, "xn--tn0ag": a, 组织: a, "xn--od0aq3b": a, 网絡: a, "xn--io0a7i": a, 网络: a, secaas: e, inc: e, ltd: e }], hm: a, hn: [1, { com: a, edu: a, gob: a, mil: a, net: a, org: a }], hr: [1, { com: a, from: a, iz: a, name: a, brendly: ha, free: e }], ht: [1, { adult: a, art: a, asso: a, com: a, coop: a, edu: a, firm: a, gouv: a, info: a, med: a, net: a, org: a, perso: a, pol: a, pro: a, rel: a, shop: a, rt: e }], hu: [1, { 2e3: a, agrar: a, bolt: a, casino: a, city: a, co: a, erotica: a, erotika: a, film: a, forum: a, games: a, hotel: a, info: a, ingatlan: a, jogasz: a, konyvelo: a, lakas: a, media: a, news: a, org: a, priv: a, reklam: a, sex: a, shop: a, sport: a, suli: a, szex: a, tm: a, tozsde: a, utazas: a, video: a }], id: [1, { ac: a, biz: a, co: a, desa: a, go: a, mil: a, my: [1, { rss: e }], net: a, or: a, ponpes: a, sch: a, web: a }], ie: [1, { gov: a, myspreadshop: e }], il: [1, { ac: a, co: [1, { ravpage: e, mytabit: e, tabitorder: e }], gov: a, idf: a, k12: a, muni: a, net: a, org: a }], "xn--4dbrk0ce": [1, { "xn--4dbgdty6c": a, "xn--5dbhl8d": a, "xn--8dbq2a": a, "xn--hebda8b": a }], ישראל: [1, { אקדמיה: a, ישוב: a, צהל: a, ממשל: a }], im: [1, { ac: a, co: [1, { ltd: a, plc: a }], com: a, net: a, org: a, tt: a, tv: a }], in: [1, { "5g": a, "6g": a, ac: a, ai: a, am: a, bihar: a, biz: a, business: a, ca: a, cn: a, co: a, com: a, coop: a, cs: a, delhi: a, dr: a, edu: a, er: a, firm: a, gen: a, gov: a, gujarat: a, ind: a, info: a, int: a, internet: a, io: a, me: a, mil: a, net: a, nic: a, org: a, pg: a, post: a, pro: a, res: a, travel: a, tv: a, uk: a, up: a, us: a, cloudns: e, barsy: e, web: e, supabase: e }], info: [1, { cloudns: e, "dynamic-dns": e, "barrel-of-knowledge": e, "barrell-of-knowledge": e, dyndns: e, "for-our": e, "groks-the": e, "groks-this": e, "here-for-more": e, knowsitall: e, selfip: e, webhop: e, barsy: e, mayfirst: e, mittwald: e, mittwaldserver: e, typo3server: e, dvrcam: e, ilovecollege: e, "no-ip": e, forumz: e, nsupdate: e, dnsupdate: e, "v-info": e }], int: [1, { eu: a }], io: [1, { 2038: e, co: a, com: a, edu: a, gov: a, mil: a, net: a, nom: a, org: a, "on-acorn": o, myaddr: e, apigee: e, "b-data": e, beagleboard: e, bitbucket: e, bluebite: e, boxfuse: e, brave: [0, { s: o }], browsersafetymark: e, bigv: [0, { uk0: e }], cleverapps: e, dappnode: [0, { dyndns: e }], darklang: e, definima: e, dedyn: e, drud: e, "fh-muenster": e, shw: e, forgerock: [0, { id: e }], github: e, gitlab: e, lolipop: e, "hasura-app": e, hostyhosting: e, hypernode: e, moonscale: o, beebyte: V, beebyteapp: [0, { sekd1: e }], jele: e, webthings: e, loginline: e, barsy: e, azurecontainer: o, ngrok: [2, { ap: e, au: e, eu: e, in: e, jp: e, sa: e, us: e }], nodeart: [0, { stage: e }], pantheonsite: e, pstmn: [2, { mock: e }], protonet: e, qcx: [2, { sys: o }], qoto: e, vaporcloud: e, myrdbx: e, "rb-hosting": R, "on-k3s": o, "on-rio": o, readthedocs: e, resindevice: e, resinstaging: [0, { devices: e }], hzc: e, sandcats: e, scrypted: [0, { client: e }], "mo-siemens": e, lair: ca, stolos: o, spacekit: e, musician: e, utwente: e, edugit: e, telebit: e, thingdust: [0, { dev: J, disrec: J, prod: ka, testing: J }], tickets: e, webflow: e, webflowtest: e, editorx: e, wixstudio: e, basicserver: e, virtualserver: e }], iq: s, ir: [1, { ac: a, co: a, gov: a, id: a, net: a, org: a, sch: a, "xn--mgba3a4f16a": a, ایران: a, "xn--mgba3a4fra": a, ايران: a, arvanedge: e }], is: a, it: [1, { edu: a, gov: a, abr: a, abruzzo: a, "aosta-valley": a, aostavalley: a, bas: a, basilicata: a, cal: a, calabria: a, cam: a, campania: a, "emilia-romagna": a, emiliaromagna: a, emr: a, "friuli-v-giulia": a, "friuli-ve-giulia": a, "friuli-vegiulia": a, "friuli-venezia-giulia": a, "friuli-veneziagiulia": a, "friuli-vgiulia": a, "friuliv-giulia": a, "friulive-giulia": a, friulivegiulia: a, "friulivenezia-giulia": a, friuliveneziagiulia: a, friulivgiulia: a, fvg: a, laz: a, lazio: a, lig: a, liguria: a, lom: a, lombardia: a, lombardy: a, lucania: a, mar: a, marche: a, mol: a, molise: a, piedmont: a, piemonte: a, pmn: a, pug: a, puglia: a, sar: a, sardegna: a, sardinia: a, sic: a, sicilia: a, sicily: a, taa: a, tos: a, toscana: a, "trentin-sud-tirol": a, "xn--trentin-sd-tirol-rzb": a, "trentin-süd-tirol": a, "trentin-sudtirol": a, "xn--trentin-sdtirol-7vb": a, "trentin-südtirol": a, "trentin-sued-tirol": a, "trentin-suedtirol": a, trentino: a, "trentino-a-adige": a, "trentino-aadige": a, "trentino-alto-adige": a, "trentino-altoadige": a, "trentino-s-tirol": a, "trentino-stirol": a, "trentino-sud-tirol": a, "xn--trentino-sd-tirol-c3b": a, "trentino-süd-tirol": a, "trentino-sudtirol": a, "xn--trentino-sdtirol-szb": a, "trentino-südtirol": a, "trentino-sued-tirol": a, "trentino-suedtirol": a, "trentinoa-adige": a, trentinoaadige: a, "trentinoalto-adige": a, trentinoaltoadige: a, "trentinos-tirol": a, trentinostirol: a, "trentinosud-tirol": a, "xn--trentinosd-tirol-rzb": a, "trentinosüd-tirol": a, trentinosudtirol: a, "xn--trentinosdtirol-7vb": a, trentinosüdtirol: a, "trentinosued-tirol": a, trentinosuedtirol: a, "trentinsud-tirol": a, "xn--trentinsd-tirol-6vb": a, "trentinsüd-tirol": a, trentinsudtirol: a, "xn--trentinsdtirol-nsb": a, trentinsüdtirol: a, "trentinsued-tirol": a, trentinsuedtirol: a, tuscany: a, umb: a, umbria: a, "val-d-aosta": a, "val-daosta": a, "vald-aosta": a, valdaosta: a, "valle-aosta": a, "valle-d-aosta": a, "valle-daosta": a, valleaosta: a, "valled-aosta": a, valledaosta: a, "vallee-aoste": a, "xn--valle-aoste-ebb": a, "vallée-aoste": a, "vallee-d-aoste": a, "xn--valle-d-aoste-ehb": a, "vallée-d-aoste": a, valleeaoste: a, "xn--valleaoste-e7a": a, valléeaoste: a, valleedaoste: a, "xn--valledaoste-ebb": a, valléedaoste: a, vao: a, vda: a, ven: a, veneto: a, ag: a, agrigento: a, al: a, alessandria: a, "alto-adige": a, altoadige: a, an: a, ancona: a, "andria-barletta-trani": a, "andria-trani-barletta": a, andriabarlettatrani: a, andriatranibarletta: a, ao: a, aosta: a, aoste: a, ap: a, aq: a, aquila: a, ar: a, arezzo: a, "ascoli-piceno": a, ascolipiceno: a, asti: a, at: a, av: a, avellino: a, ba: a, balsan: a, "balsan-sudtirol": a, "xn--balsan-sdtirol-nsb": a, "balsan-südtirol": a, "balsan-suedtirol": a, bari: a, "barletta-trani-andria": a, barlettatraniandria: a, belluno: a, benevento: a, bergamo: a, bg: a, bi: a, biella: a, bl: a, bn: a, bo: a, bologna: a, bolzano: a, "bolzano-altoadige": a, bozen: a, "bozen-sudtirol": a, "xn--bozen-sdtirol-2ob": a, "bozen-südtirol": a, "bozen-suedtirol": a, br: a, brescia: a, brindisi: a, bs: a, bt: a, bulsan: a, "bulsan-sudtirol": a, "xn--bulsan-sdtirol-nsb": a, "bulsan-südtirol": a, "bulsan-suedtirol": a, bz: a, ca: a, cagliari: a, caltanissetta: a, "campidano-medio": a, campidanomedio: a, campobasso: a, "carbonia-iglesias": a, carboniaiglesias: a, "carrara-massa": a, carraramassa: a, caserta: a, catania: a, catanzaro: a, cb: a, ce: a, "cesena-forli": a, "xn--cesena-forl-mcb": a, "cesena-forlì": a, cesenaforli: a, "xn--cesenaforl-i8a": a, cesenaforlì: a, ch: a, chieti: a, ci: a, cl: a, cn: a, co: a, como: a, cosenza: a, cr: a, cremona: a, crotone: a, cs: a, ct: a, cuneo: a, cz: a, "dell-ogliastra": a, dellogliastra: a, en: a, enna: a, fc: a, fe: a, fermo: a, ferrara: a, fg: a, fi: a, firenze: a, florence: a, fm: a, foggia: a, "forli-cesena": a, "xn--forl-cesena-fcb": a, "forlì-cesena": a, forlicesena: a, "xn--forlcesena-c8a": a, forlìcesena: a, fr: a, frosinone: a, ge: a, genoa: a, genova: a, go: a, gorizia: a, gr: a, grosseto: a, "iglesias-carbonia": a, iglesiascarbonia: a, im: a, imperia: a, is: a, isernia: a, kr: a, "la-spezia": a, laquila: a, laspezia: a, latina: a, lc: a, le: a, lecce: a, lecco: a, li: a, livorno: a, lo: a, lodi: a, lt: a, lu: a, lucca: a, macerata: a, mantova: a, "massa-carrara": a, massacarrara: a, matera: a, mb: a, mc: a, me: a, "medio-campidano": a, mediocampidano: a, messina: a, mi: a, milan: a, milano: a, mn: a, mo: a, modena: a, monza: a, "monza-brianza": a, "monza-e-della-brianza": a, monzabrianza: a, monzaebrianza: a, monzaedellabrianza: a, ms: a, mt: a, na: a, naples: a, napoli: a, no: a, novara: a, nu: a, nuoro: a, og: a, ogliastra: a, "olbia-tempio": a, olbiatempio: a, or: a, oristano: a, ot: a, pa: a, padova: a, padua: a, palermo: a, parma: a, pavia: a, pc: a, pd: a, pe: a, perugia: a, "pesaro-urbino": a, pesarourbino: a, pescara: a, pg: a, pi: a, piacenza: a, pisa: a, pistoia: a, pn: a, po: a, pordenone: a, potenza: a, pr: a, prato: a, pt: a, pu: a, pv: a, pz: a, ra: a, ragusa: a, ravenna: a, rc: a, re: a, "reggio-calabria": a, "reggio-emilia": a, reggiocalabria: a, reggioemilia: a, rg: a, ri: a, rieti: a, rimini: a, rm: a, rn: a, ro: a, roma: a, rome: a, rovigo: a, sa: a, salerno: a, sassari: a, savona: a, si: a, siena: a, siracusa: a, so: a, sondrio: a, sp: a, sr: a, ss: a, "xn--sdtirol-n2a": a, südtirol: a, suedtirol: a, sv: a, ta: a, taranto: a, te: a, "tempio-olbia": a, tempioolbia: a, teramo: a, terni: a, tn: a, to: a, torino: a, tp: a, tr: a, "trani-andria-barletta": a, "trani-barletta-andria": a, traniandriabarletta: a, tranibarlettaandria: a, trapani: a, trento: a, treviso: a, trieste: a, ts: a, turin: a, tv: a, ud: a, udine: a, "urbino-pesaro": a, urbinopesaro: a, va: a, varese: a, vb: a, vc: a, ve: a, venezia: a, venice: a, verbania: a, vercelli: a, verona: a, vi: a, "vibo-valentia": a, vibovalentia: a, vicenza: a, viterbo: a, vr: a, vs: a, vt: a, vv: a, "12chars": e, ibxos: e, iliadboxos: e, neen: [0, { jc: e }], "123homepage": e, "16-b": e, "32-b": e, "64-b": e, myspreadshop: e, syncloud: e }], je: [1, { co: a, net: a, org: a, of: e }], jm: u, jo: [1, { agri: a, ai: a, com: a, edu: a, eng: a, fm: a, gov: a, mil: a, net: a, org: a, per: a, phd: a, sch: a, tv: a }], jobs: a, jp: [1, { ac: a, ad: a, co: a, ed: a, go: a, gr: a, lg: a, ne: [1, { aseinet: ga, gehirn: e, ivory: e, "mail-box": e, mints: e, mokuren: e, opal: e, sakura: e, sumomo: e, topaz: e }], or: a, aichi: [1, { aisai: a, ama: a, anjo: a, asuke: a, chiryu: a, chita: a, fuso: a, gamagori: a, handa: a, hazu: a, hekinan: a, higashiura: a, ichinomiya: a, inazawa: a, inuyama: a, isshiki: a, iwakura: a, kanie: a, kariya: a, kasugai: a, kira: a, kiyosu: a, komaki: a, konan: a, kota: a, mihama: a, miyoshi: a, nishio: a, nisshin: a, obu: a, oguchi: a, oharu: a, okazaki: a, owariasahi: a, seto: a, shikatsu: a, shinshiro: a, shitara: a, tahara: a, takahama: a, tobishima: a, toei: a, togo: a, tokai: a, tokoname: a, toyoake: a, toyohashi: a, toyokawa: a, toyone: a, toyota: a, tsushima: a, yatomi: a }], akita: [1, { akita: a, daisen: a, fujisato: a, gojome: a, hachirogata: a, happou: a, higashinaruse: a, honjo: a, honjyo: a, ikawa: a, kamikoani: a, kamioka: a, katagami: a, kazuno: a, kitaakita: a, kosaka: a, kyowa: a, misato: a, mitane: a, moriyoshi: a, nikaho: a, noshiro: a, odate: a, oga: a, ogata: a, semboku: a, yokote: a, yurihonjo: a }], aomori: [1, { aomori: a, gonohe: a, hachinohe: a, hashikami: a, hiranai: a, hirosaki: a, itayanagi: a, kuroishi: a, misawa: a, mutsu: a, nakadomari: a, noheji: a, oirase: a, owani: a, rokunohe: a, sannohe: a, shichinohe: a, shingo: a, takko: a, towada: a, tsugaru: a, tsuruta: a }], chiba: [1, { abiko: a, asahi: a, chonan: a, chosei: a, choshi: a, chuo: a, funabashi: a, futtsu: a, hanamigawa: a, ichihara: a, ichikawa: a, ichinomiya: a, inzai: a, isumi: a, kamagaya: a, kamogawa: a, kashiwa: a, katori: a, katsuura: a, kimitsu: a, kisarazu: a, kozaki: a, kujukuri: a, kyonan: a, matsudo: a, midori: a, mihama: a, minamiboso: a, mobara: a, mutsuzawa: a, nagara: a, nagareyama: a, narashino: a, narita: a, noda: a, oamishirasato: a, omigawa: a, onjuku: a, otaki: a, sakae: a, sakura: a, shimofusa: a, shirako: a, shiroi: a, shisui: a, sodegaura: a, sosa: a, tako: a, tateyama: a, togane: a, tohnosho: a, tomisato: a, urayasu: a, yachimata: a, yachiyo: a, yokaichiba: a, yokoshibahikari: a, yotsukaido: a }], ehime: [1, { ainan: a, honai: a, ikata: a, imabari: a, iyo: a, kamijima: a, kihoku: a, kumakogen: a, masaki: a, matsuno: a, matsuyama: a, namikata: a, niihama: a, ozu: a, saijo: a, seiyo: a, shikokuchuo: a, tobe: a, toon: a, uchiko: a, uwajima: a, yawatahama: a }], fukui: [1, { echizen: a, eiheiji: a, fukui: a, ikeda: a, katsuyama: a, mihama: a, minamiechizen: a, obama: a, ohi: a, ono: a, sabae: a, sakai: a, takahama: a, tsuruga: a, wakasa: a }], fukuoka: [1, { ashiya: a, buzen: a, chikugo: a, chikuho: a, chikujo: a, chikushino: a, chikuzen: a, chuo: a, dazaifu: a, fukuchi: a, hakata: a, higashi: a, hirokawa: a, hisayama: a, iizuka: a, inatsuki: a, kaho: a, kasuga: a, kasuya: a, kawara: a, keisen: a, koga: a, kurate: a, kurogi: a, kurume: a, minami: a, miyako: a, miyama: a, miyawaka: a, mizumaki: a, munakata: a, nakagawa: a, nakama: a, nishi: a, nogata: a, ogori: a, okagaki: a, okawa: a, oki: a, omuta: a, onga: a, onojo: a, oto: a, saigawa: a, sasaguri: a, shingu: a, shinyoshitomi: a, shonai: a, soeda: a, sue: a, tachiarai: a, tagawa: a, takata: a, toho: a, toyotsu: a, tsuiki: a, ukiha: a, umi: a, usui: a, yamada: a, yame: a, yanagawa: a, yukuhashi: a }], fukushima: [1, { aizubange: a, aizumisato: a, aizuwakamatsu: a, asakawa: a, bandai: a, date: a, fukushima: a, furudono: a, futaba: a, hanawa: a, higashi: a, hirata: a, hirono: a, iitate: a, inawashiro: a, ishikawa: a, iwaki: a, izumizaki: a, kagamiishi: a, kaneyama: a, kawamata: a, kitakata: a, kitashiobara: a, koori: a, koriyama: a, kunimi: a, miharu: a, mishima: a, namie: a, nango: a, nishiaizu: a, nishigo: a, okuma: a, omotego: a, ono: a, otama: a, samegawa: a, shimogo: a, shirakawa: a, showa: a, soma: a, sukagawa: a, taishin: a, tamakawa: a, tanagura: a, tenei: a, yabuki: a, yamato: a, yamatsuri: a, yanaizu: a, yugawa: a }], gifu: [1, { anpachi: a, ena: a, gifu: a, ginan: a, godo: a, gujo: a, hashima: a, hichiso: a, hida: a, higashishirakawa: a, ibigawa: a, ikeda: a, kakamigahara: a, kani: a, kasahara: a, kasamatsu: a, kawaue: a, kitagata: a, mino: a, minokamo: a, mitake: a, mizunami: a, motosu: a, nakatsugawa: a, ogaki: a, sakahogi: a, seki: a, sekigahara: a, shirakawa: a, tajimi: a, takayama: a, tarui: a, toki: a, tomika: a, wanouchi: a, yamagata: a, yaotsu: a, yoro: a }], gunma: [1, { annaka: a, chiyoda: a, fujioka: a, higashiagatsuma: a, isesaki: a, itakura: a, kanna: a, kanra: a, katashina: a, kawaba: a, kiryu: a, kusatsu: a, maebashi: a, meiwa: a, midori: a, minakami: a, naganohara: a, nakanojo: a, nanmoku: a, numata: a, oizumi: a, ora: a, ota: a, shibukawa: a, shimonita: a, shinto: a, showa: a, takasaki: a, takayama: a, tamamura: a, tatebayashi: a, tomioka: a, tsukiyono: a, tsumagoi: a, ueno: a, yoshioka: a }], hiroshima: [1, { asaminami: a, daiwa: a, etajima: a, fuchu: a, fukuyama: a, hatsukaichi: a, higashihiroshima: a, hongo: a, jinsekikogen: a, kaita: a, kui: a, kumano: a, kure: a, mihara: a, miyoshi: a, naka: a, onomichi: a, osakikamijima: a, otake: a, saka: a, sera: a, seranishi: a, shinichi: a, shobara: a, takehara: a }], hokkaido: [1, { abashiri: a, abira: a, aibetsu: a, akabira: a, akkeshi: a, asahikawa: a, ashibetsu: a, ashoro: a, assabu: a, atsuma: a, bibai: a, biei: a, bifuka: a, bihoro: a, biratori: a, chippubetsu: a, chitose: a, date: a, ebetsu: a, embetsu: a, eniwa: a, erimo: a, esan: a, esashi: a, fukagawa: a, fukushima: a, furano: a, furubira: a, haboro: a, hakodate: a, hamatonbetsu: a, hidaka: a, higashikagura: a, higashikawa: a, hiroo: a, hokuryu: a, hokuto: a, honbetsu: a, horokanai: a, horonobe: a, ikeda: a, imakane: a, ishikari: a, iwamizawa: a, iwanai: a, kamifurano: a, kamikawa: a, kamishihoro: a, kamisunagawa: a, kamoenai: a, kayabe: a, kembuchi: a, kikonai: a, kimobetsu: a, kitahiroshima: a, kitami: a, kiyosato: a, koshimizu: a, kunneppu: a, kuriyama: a, kuromatsunai: a, kushiro: a, kutchan: a, kyowa: a, mashike: a, matsumae: a, mikasa: a, minamifurano: a, mombetsu: a, moseushi: a, mukawa: a, muroran: a, naie: a, nakagawa: a, nakasatsunai: a, nakatombetsu: a, nanae: a, nanporo: a, nayoro: a, nemuro: a, niikappu: a, niki: a, nishiokoppe: a, noboribetsu: a, numata: a, obihiro: a, obira: a, oketo: a, okoppe: a, otaru: a, otobe: a, otofuke: a, otoineppu: a, oumu: a, ozora: a, pippu: a, rankoshi: a, rebun: a, rikubetsu: a, rishiri: a, rishirifuji: a, saroma: a, sarufutsu: a, shakotan: a, shari: a, shibecha: a, shibetsu: a, shikabe: a, shikaoi: a, shimamaki: a, shimizu: a, shimokawa: a, shinshinotsu: a, shintoku: a, shiranuka: a, shiraoi: a, shiriuchi: a, sobetsu: a, sunagawa: a, taiki: a, takasu: a, takikawa: a, takinoue: a, teshikaga: a, tobetsu: a, tohma: a, tomakomai: a, tomari: a, toya: a, toyako: a, toyotomi: a, toyoura: a, tsubetsu: a, tsukigata: a, urakawa: a, urausu: a, uryu: a, utashinai: a, wakkanai: a, wassamu: a, yakumo: a, yoichi: a }], hyogo: [1, { aioi: a, akashi: a, ako: a, amagasaki: a, aogaki: a, asago: a, ashiya: a, awaji: a, fukusaki: a, goshiki: a, harima: a, himeji: a, ichikawa: a, inagawa: a, itami: a, kakogawa: a, kamigori: a, kamikawa: a, kasai: a, kasuga: a, kawanishi: a, miki: a, minamiawaji: a, nishinomiya: a, nishiwaki: a, ono: a, sanda: a, sannan: a, sasayama: a, sayo: a, shingu: a, shinonsen: a, shiso: a, sumoto: a, taishi: a, taka: a, takarazuka: a, takasago: a, takino: a, tamba: a, tatsuno: a, toyooka: a, yabu: a, yashiro: a, yoka: a, yokawa: a }], ibaraki: [1, { ami: a, asahi: a, bando: a, chikusei: a, daigo: a, fujishiro: a, hitachi: a, hitachinaka: a, hitachiomiya: a, hitachiota: a, ibaraki: a, ina: a, inashiki: a, itako: a, iwama: a, joso: a, kamisu: a, kasama: a, kashima: a, kasumigaura: a, koga: a, miho: a, mito: a, moriya: a, naka: a, namegata: a, oarai: a, ogawa: a, omitama: a, ryugasaki: a, sakai: a, sakuragawa: a, shimodate: a, shimotsuma: a, shirosato: a, sowa: a, suifu: a, takahagi: a, tamatsukuri: a, tokai: a, tomobe: a, tone: a, toride: a, tsuchiura: a, tsukuba: a, uchihara: a, ushiku: a, yachiyo: a, yamagata: a, yawara: a, yuki: a }], ishikawa: [1, { anamizu: a, hakui: a, hakusan: a, kaga: a, kahoku: a, kanazawa: a, kawakita: a, komatsu: a, nakanoto: a, nanao: a, nomi: a, nonoichi: a, noto: a, shika: a, suzu: a, tsubata: a, tsurugi: a, uchinada: a, wajima: a }], iwate: [1, { fudai: a, fujisawa: a, hanamaki: a, hiraizumi: a, hirono: a, ichinohe: a, ichinoseki: a, iwaizumi: a, iwate: a, joboji: a, kamaishi: a, kanegasaki: a, karumai: a, kawai: a, kitakami: a, kuji: a, kunohe: a, kuzumaki: a, miyako: a, mizusawa: a, morioka: a, ninohe: a, noda: a, ofunato: a, oshu: a, otsuchi: a, rikuzentakata: a, shiwa: a, shizukuishi: a, sumita: a, tanohata: a, tono: a, yahaba: a, yamada: a }], kagawa: [1, { ayagawa: a, higashikagawa: a, kanonji: a, kotohira: a, manno: a, marugame: a, mitoyo: a, naoshima: a, sanuki: a, tadotsu: a, takamatsu: a, tonosho: a, uchinomi: a, utazu: a, zentsuji: a }], kagoshima: [1, { akune: a, amami: a, hioki: a, isa: a, isen: a, izumi: a, kagoshima: a, kanoya: a, kawanabe: a, kinko: a, kouyama: a, makurazaki: a, matsumoto: a, minamitane: a, nakatane: a, nishinoomote: a, satsumasendai: a, soo: a, tarumizu: a, yusui: a }], kanagawa: [1, { aikawa: a, atsugi: a, ayase: a, chigasaki: a, ebina: a, fujisawa: a, hadano: a, hakone: a, hiratsuka: a, isehara: a, kaisei: a, kamakura: a, kiyokawa: a, matsuda: a, minamiashigara: a, miura: a, nakai: a, ninomiya: a, odawara: a, oi: a, oiso: a, sagamihara: a, samukawa: a, tsukui: a, yamakita: a, yamato: a, yokosuka: a, yugawara: a, zama: a, zushi: a }], kochi: [1, { aki: a, geisei: a, hidaka: a, higashitsuno: a, ino: a, kagami: a, kami: a, kitagawa: a, kochi: a, mihara: a, motoyama: a, muroto: a, nahari: a, nakamura: a, nankoku: a, nishitosa: a, niyodogawa: a, ochi: a, okawa: a, otoyo: a, otsuki: a, sakawa: a, sukumo: a, susaki: a, tosa: a, tosashimizu: a, toyo: a, tsuno: a, umaji: a, yasuda: a, yusuhara: a }], kumamoto: [1, { amakusa: a, arao: a, aso: a, choyo: a, gyokuto: a, kamiamakusa: a, kikuchi: a, kumamoto: a, mashiki: a, mifune: a, minamata: a, minamioguni: a, nagasu: a, nishihara: a, oguni: a, ozu: a, sumoto: a, takamori: a, uki: a, uto: a, yamaga: a, yamato: a, yatsushiro: a }], kyoto: [1, { ayabe: a, fukuchiyama: a, higashiyama: a, ide: a, ine: a, joyo: a, kameoka: a, kamo: a, kita: a, kizu: a, kumiyama: a, kyotamba: a, kyotanabe: a, kyotango: a, maizuru: a, minami: a, minamiyamashiro: a, miyazu: a, muko: a, nagaokakyo: a, nakagyo: a, nantan: a, oyamazaki: a, sakyo: a, seika: a, tanabe: a, uji: a, ujitawara: a, wazuka: a, yamashina: a, yawata: a }], mie: [1, { asahi: a, inabe: a, ise: a, kameyama: a, kawagoe: a, kiho: a, kisosaki: a, kiwa: a, komono: a, kumano: a, kuwana: a, matsusaka: a, meiwa: a, mihama: a, minamiise: a, misugi: a, miyama: a, nabari: a, shima: a, suzuka: a, tado: a, taiki: a, taki: a, tamaki: a, toba: a, tsu: a, udono: a, ureshino: a, watarai: a, yokkaichi: a }], miyagi: [1, { furukawa: a, higashimatsushima: a, ishinomaki: a, iwanuma: a, kakuda: a, kami: a, kawasaki: a, marumori: a, matsushima: a, minamisanriku: a, misato: a, murata: a, natori: a, ogawara: a, ohira: a, onagawa: a, osaki: a, rifu: a, semine: a, shibata: a, shichikashuku: a, shikama: a, shiogama: a, shiroishi: a, tagajo: a, taiwa: a, tome: a, tomiya: a, wakuya: a, watari: a, yamamoto: a, zao: a }], miyazaki: [1, { aya: a, ebino: a, gokase: a, hyuga: a, kadogawa: a, kawaminami: a, kijo: a, kitagawa: a, kitakata: a, kitaura: a, kobayashi: a, kunitomi: a, kushima: a, mimata: a, miyakonojo: a, miyazaki: a, morotsuka: a, nichinan: a, nishimera: a, nobeoka: a, saito: a, shiiba: a, shintomi: a, takaharu: a, takanabe: a, takazaki: a, tsuno: a }], nagano: [1, { achi: a, agematsu: a, anan: a, aoki: a, asahi: a, azumino: a, chikuhoku: a, chikuma: a, chino: a, fujimi: a, hakuba: a, hara: a, hiraya: a, iida: a, iijima: a, iiyama: a, iizuna: a, ikeda: a, ikusaka: a, ina: a, karuizawa: a, kawakami: a, kiso: a, kisofukushima: a, kitaaiki: a, komagane: a, komoro: a, matsukawa: a, matsumoto: a, miasa: a, minamiaiki: a, minamimaki: a, minamiminowa: a, minowa: a, miyada: a, miyota: a, mochizuki: a, nagano: a, nagawa: a, nagiso: a, nakagawa: a, nakano: a, nozawaonsen: a, obuse: a, ogawa: a, okaya: a, omachi: a, omi: a, ookuwa: a, ooshika: a, otaki: a, otari: a, sakae: a, sakaki: a, saku: a, sakuho: a, shimosuwa: a, shinanomachi: a, shiojiri: a, suwa: a, suzaka: a, takagi: a, takamori: a, takayama: a, tateshina: a, tatsuno: a, togakushi: a, togura: a, tomi: a, ueda: a, wada: a, yamagata: a, yamanouchi: a, yasaka: a, yasuoka: a }], nagasaki: [1, { chijiwa: a, futsu: a, goto: a, hasami: a, hirado: a, iki: a, isahaya: a, kawatana: a, kuchinotsu: a, matsuura: a, nagasaki: a, obama: a, omura: a, oseto: a, saikai: a, sasebo: a, seihi: a, shimabara: a, shinkamigoto: a, togitsu: a, tsushima: a, unzen: a }], nara: [1, { ando: a, gose: a, heguri: a, higashiyoshino: a, ikaruga: a, ikoma: a, kamikitayama: a, kanmaki: a, kashiba: a, kashihara: a, katsuragi: a, kawai: a, kawakami: a, kawanishi: a, koryo: a, kurotaki: a, mitsue: a, miyake: a, nara: a, nosegawa: a, oji: a, ouda: a, oyodo: a, sakurai: a, sango: a, shimoichi: a, shimokitayama: a, shinjo: a, soni: a, takatori: a, tawaramoto: a, tenkawa: a, tenri: a, uda: a, yamatokoriyama: a, yamatotakada: a, yamazoe: a, yoshino: a }], niigata: [1, { aga: a, agano: a, gosen: a, itoigawa: a, izumozaki: a, joetsu: a, kamo: a, kariwa: a, kashiwazaki: a, minamiuonuma: a, mitsuke: a, muika: a, murakami: a, myoko: a, nagaoka: a, niigata: a, ojiya: a, omi: a, sado: a, sanjo: a, seiro: a, seirou: a, sekikawa: a, shibata: a, tagami: a, tainai: a, tochio: a, tokamachi: a, tsubame: a, tsunan: a, uonuma: a, yahiko: a, yoita: a, yuzawa: a }], oita: [1, { beppu: a, bungoono: a, bungotakada: a, hasama: a, hiji: a, himeshima: a, hita: a, kamitsue: a, kokonoe: a, kuju: a, kunisaki: a, kusu: a, oita: a, saiki: a, taketa: a, tsukumi: a, usa: a, usuki: a, yufu: a }], okayama: [1, { akaiwa: a, asakuchi: a, bizen: a, hayashima: a, ibara: a, kagamino: a, kasaoka: a, kibichuo: a, kumenan: a, kurashiki: a, maniwa: a, misaki: a, nagi: a, niimi: a, nishiawakura: a, okayama: a, satosho: a, setouchi: a, shinjo: a, shoo: a, soja: a, takahashi: a, tamano: a, tsuyama: a, wake: a, yakage: a }], okinawa: [1, { aguni: a, ginowan: a, ginoza: a, gushikami: a, haebaru: a, higashi: a, hirara: a, iheya: a, ishigaki: a, ishikawa: a, itoman: a, izena: a, kadena: a, kin: a, kitadaito: a, kitanakagusuku: a, kumejima: a, kunigami: a, minamidaito: a, motobu: a, nago: a, naha: a, nakagusuku: a, nakijin: a, nanjo: a, nishihara: a, ogimi: a, okinawa: a, onna: a, shimoji: a, taketomi: a, tarama: a, tokashiki: a, tomigusuku: a, tonaki: a, urasoe: a, uruma: a, yaese: a, yomitan: a, yonabaru: a, yonaguni: a, zamami: a }], osaka: [1, { abeno: a, chihayaakasaka: a, chuo: a, daito: a, fujiidera: a, habikino: a, hannan: a, higashiosaka: a, higashisumiyoshi: a, higashiyodogawa: a, hirakata: a, ibaraki: a, ikeda: a, izumi: a, izumiotsu: a, izumisano: a, kadoma: a, kaizuka: a, kanan: a, kashiwara: a, katano: a, kawachinagano: a, kishiwada: a, kita: a, kumatori: a, matsubara: a, minato: a, minoh: a, misaki: a, moriguchi: a, neyagawa: a, nishi: a, nose: a, osakasayama: a, sakai: a, sayama: a, sennan: a, settsu: a, shijonawate: a, shimamoto: a, suita: a, tadaoka: a, taishi: a, tajiri: a, takaishi: a, takatsuki: a, tondabayashi: a, toyonaka: a, toyono: a, yao: a }], saga: [1, { ariake: a, arita: a, fukudomi: a, genkai: a, hamatama: a, hizen: a, imari: a, kamimine: a, kanzaki: a, karatsu: a, kashima: a, kitagata: a, kitahata: a, kiyama: a, kouhoku: a, kyuragi: a, nishiarita: a, ogi: a, omachi: a, ouchi: a, saga: a, shiroishi: a, taku: a, tara: a, tosu: a, yoshinogari: a }], saitama: [1, { arakawa: a, asaka: a, chichibu: a, fujimi: a, fujimino: a, fukaya: a, hanno: a, hanyu: a, hasuda: a, hatogaya: a, hatoyama: a, hidaka: a, higashichichibu: a, higashimatsuyama: a, honjo: a, ina: a, iruma: a, iwatsuki: a, kamiizumi: a, kamikawa: a, kamisato: a, kasukabe: a, kawagoe: a, kawaguchi: a, kawajima: a, kazo: a, kitamoto: a, koshigaya: a, kounosu: a, kuki: a, kumagaya: a, matsubushi: a, minano: a, misato: a, miyashiro: a, miyoshi: a, moroyama: a, nagatoro: a, namegawa: a, niiza: a, ogano: a, ogawa: a, ogose: a, okegawa: a, omiya: a, otaki: a, ranzan: a, ryokami: a, saitama: a, sakado: a, satte: a, sayama: a, shiki: a, shiraoka: a, soka: a, sugito: a, toda: a, tokigawa: a, tokorozawa: a, tsurugashima: a, urawa: a, warabi: a, yashio: a, yokoze: a, yono: a, yorii: a, yoshida: a, yoshikawa: a, yoshimi: a }], shiga: [1, { aisho: a, gamo: a, higashiomi: a, hikone: a, koka: a, konan: a, kosei: a, koto: a, kusatsu: a, maibara: a, moriyama: a, nagahama: a, nishiazai: a, notogawa: a, omihachiman: a, otsu: a, ritto: a, ryuoh: a, takashima: a, takatsuki: a, torahime: a, toyosato: a, yasu: a }], shimane: [1, { akagi: a, ama: a, gotsu: a, hamada: a, higashiizumo: a, hikawa: a, hikimi: a, izumo: a, kakinoki: a, masuda: a, matsue: a, misato: a, nishinoshima: a, ohda: a, okinoshima: a, okuizumo: a, shimane: a, tamayu: a, tsuwano: a, unnan: a, yakumo: a, yasugi: a, yatsuka: a }], shizuoka: [1, { arai: a, atami: a, fuji: a, fujieda: a, fujikawa: a, fujinomiya: a, fukuroi: a, gotemba: a, haibara: a, hamamatsu: a, higashiizu: a, ito: a, iwata: a, izu: a, izunokuni: a, kakegawa: a, kannami: a, kawanehon: a, kawazu: a, kikugawa: a, kosai: a, makinohara: a, matsuzaki: a, minamiizu: a, mishima: a, morimachi: a, nishiizu: a, numazu: a, omaezaki: a, shimada: a, shimizu: a, shimoda: a, shizuoka: a, susono: a, yaizu: a, yoshida: a }], tochigi: [1, { ashikaga: a, bato: a, haga: a, ichikai: a, iwafune: a, kaminokawa: a, kanuma: a, karasuyama: a, kuroiso: a, mashiko: a, mibu: a, moka: a, motegi: a, nasu: a, nasushiobara: a, nikko: a, nishikata: a, nogi: a, ohira: a, ohtawara: a, oyama: a, sakura: a, sano: a, shimotsuke: a, shioya: a, takanezawa: a, tochigi: a, tsuga: a, ujiie: a, utsunomiya: a, yaita: a }], tokushima: [1, { aizumi: a, anan: a, ichiba: a, itano: a, kainan: a, komatsushima: a, matsushige: a, mima: a, minami: a, miyoshi: a, mugi: a, nakagawa: a, naruto: a, sanagochi: a, shishikui: a, tokushima: a, wajiki: a }], tokyo: [1, { adachi: a, akiruno: a, akishima: a, aogashima: a, arakawa: a, bunkyo: a, chiyoda: a, chofu: a, chuo: a, edogawa: a, fuchu: a, fussa: a, hachijo: a, hachioji: a, hamura: a, higashikurume: a, higashimurayama: a, higashiyamato: a, hino: a, hinode: a, hinohara: a, inagi: a, itabashi: a, katsushika: a, kita: a, kiyose: a, kodaira: a, koganei: a, kokubunji: a, komae: a, koto: a, kouzushima: a, kunitachi: a, machida: a, meguro: a, minato: a, mitaka: a, mizuho: a, musashimurayama: a, musashino: a, nakano: a, nerima: a, ogasawara: a, okutama: a, ome: a, oshima: a, ota: a, setagaya: a, shibuya: a, shinagawa: a, shinjuku: a, suginami: a, sumida: a, tachikawa: a, taito: a, tama: a, toshima: a }], tottori: [1, { chizu: a, hino: a, kawahara: a, koge: a, kotoura: a, misasa: a, nanbu: a, nichinan: a, sakaiminato: a, tottori: a, wakasa: a, yazu: a, yonago: a }], toyama: [1, { asahi: a, fuchu: a, fukumitsu: a, funahashi: a, himi: a, imizu: a, inami: a, johana: a, kamiichi: a, kurobe: a, nakaniikawa: a, namerikawa: a, nanto: a, nyuzen: a, oyabe: a, taira: a, takaoka: a, tateyama: a, toga: a, tonami: a, toyama: a, unazuki: a, uozu: a, yamada: a }], wakayama: [1, { arida: a, aridagawa: a, gobo: a, hashimoto: a, hidaka: a, hirogawa: a, inami: a, iwade: a, kainan: a, kamitonda: a, katsuragi: a, kimino: a, kinokawa: a, kitayama: a, koya: a, koza: a, kozagawa: a, kudoyama: a, kushimoto: a, mihama: a, misato: a, nachikatsuura: a, shingu: a, shirahama: a, taiji: a, tanabe: a, wakayama: a, yuasa: a, yura: a }], yamagata: [1, { asahi: a, funagata: a, higashine: a, iide: a, kahoku: a, kaminoyama: a, kaneyama: a, kawanishi: a, mamurogawa: a, mikawa: a, murayama: a, nagai: a, nakayama: a, nanyo: a, nishikawa: a, obanazawa: a, oe: a, oguni: a, ohkura: a, oishida: a, sagae: a, sakata: a, sakegawa: a, shinjo: a, shirataka: a, shonai: a, takahata: a, tendo: a, tozawa: a, tsuruoka: a, yamagata: a, yamanobe: a, yonezawa: a, yuza: a }], yamaguchi: [1, { abu: a, hagi: a, hikari: a, hofu: a, iwakuni: a, kudamatsu: a, mitou: a, nagato: a, oshima: a, shimonoseki: a, shunan: a, tabuse: a, tokuyama: a, toyota: a, ube: a, yuu: a }], yamanashi: [1, { chuo: a, doshi: a, fuefuki: a, fujikawa: a, fujikawaguchiko: a, fujiyoshida: a, hayakawa: a, hokuto: a, ichikawamisato: a, kai: a, kofu: a, koshu: a, kosuge: a, "minami-alps": a, minobu: a, nakamichi: a, nanbu: a, narusawa: a, nirasaki: a, nishikatsura: a, oshino: a, otsuki: a, showa: a, tabayama: a, tsuru: a, uenohara: a, yamanakako: a, yamanashi: a }], "xn--ehqz56n": a, 三重: a, "xn--1lqs03n": a, 京都: a, "xn--qqqt11m": a, 佐賀: a, "xn--f6qx53a": a, 兵庫: a, "xn--djrs72d6uy": a, 北海道: a, "xn--mkru45i": a, 千葉: a, "xn--0trq7p7nn": a, 和歌山: a, "xn--5js045d": a, 埼玉: a, "xn--kbrq7o": a, 大分: a, "xn--pssu33l": a, 大阪: a, "xn--ntsq17g": a, 奈良: a, "xn--uisz3g": a, 宮城: a, "xn--6btw5a": a, 宮崎: a, "xn--1ctwo": a, 富山: a, "xn--6orx2r": a, 山口: a, "xn--rht61e": a, 山形: a, "xn--rht27z": a, 山梨: a, "xn--nit225k": a, 岐阜: a, "xn--rht3d": a, 岡山: a, "xn--djty4k": a, 岩手: a, "xn--klty5x": a, 島根: a, "xn--kltx9a": a, 広島: a, "xn--kltp7d": a, 徳島: a, "xn--c3s14m": a, 愛媛: a, "xn--vgu402c": a, 愛知: a, "xn--efvn9s": a, 新潟: a, "xn--1lqs71d": a, 東京: a, "xn--4pvxs": a, 栃木: a, "xn--uuwu58a": a, 沖縄: a, "xn--zbx025d": a, 滋賀: a, "xn--8pvr4u": a, 熊本: a, "xn--5rtp49c": a, 石川: a, "xn--ntso0iqx3a": a, 神奈川: a, "xn--elqq16h": a, 福井: a, "xn--4it168d": a, 福岡: a, "xn--klt787d": a, 福島: a, "xn--rny31h": a, 秋田: a, "xn--7t0a264c": a, 群馬: a, "xn--uist22h": a, 茨城: a, "xn--8ltr62k": a, 長崎: a, "xn--2m4a15e": a, 長野: a, "xn--32vp30h": a, 青森: a, "xn--4it797k": a, 静岡: a, "xn--5rtq34k": a, 香川: a, "xn--k7yn95e": a, 高知: a, "xn--tor131o": a, 鳥取: a, "xn--d5qv7z876c": a, 鹿児島: a, kawasaki: u, kitakyushu: u, kobe: u, nagoya: u, sapporo: u, sendai: u, yokohama: u, buyshop: e, fashionstore: e, handcrafted: e, kawaiishop: e, supersale: e, theshop: e, "0am": e, "0g0": e, "0j0": e, "0t0": e, mydns: e, pgw: e, wjg: e, usercontent: e, angry: e, babyblue: e, babymilk: e, backdrop: e, bambina: e, bitter: e, blush: e, boo: e, boy: e, boyfriend: e, but: e, candypop: e, capoo: e, catfood: e, cheap: e, chicappa: e, chillout: e, chips: e, chowder: e, chu: e, ciao: e, cocotte: e, coolblog: e, cranky: e, cutegirl: e, daa: e, deca: e, deci: e, digick: e, egoism: e, fakefur: e, fem: e, flier: e, floppy: e, fool: e, frenchkiss: e, girlfriend: e, girly: e, gloomy: e, gonna: e, greater: e, hacca: e, heavy: e, her: e, hiho: e, hippy: e, holy: e, hungry: e, icurus: e, itigo: e, jellybean: e, kikirara: e, kill: e, kilo: e, kuron: e, littlestar: e, lolipopmc: e, lolitapunk: e, lomo: e, lovepop: e, lovesick: e, main: e, mods: e, mond: e, mongolian: e, moo: e, namaste: e, nikita: e, nobushi: e, noor: e, oops: e, parallel: e, parasite: e, pecori: e, peewee: e, penne: e, pepper: e, perma: e, pigboat: e, pinoko: e, punyu: e, pupu: e, pussycat: e, pya: e, raindrop: e, readymade: e, sadist: e, schoolbus: e, secret: e, staba: e, stripper: e, sub: e, sunnyday: e, thick: e, tonkotsu: e, under: e, upper: e, velvet: e, verse: e, versus: e, vivian: e, watson: e, weblike: e, whitesnow: e, zombie: e, hateblo: e, hatenablog: e, hatenadiary: e, "2-d": e, bona: e, crap: e, daynight: e, eek: e, flop: e, halfmoon: e, jeez: e, matrix: e, mimoza: e, netgamers: e, nyanta: e, o0o0: e, rdy: e, rgr: e, rulez: e, sakurastorage: [0, { isk01: W, isk02: W }], saloon: e, sblo: e, skr: e, tank: e, "uh-oh": e, undo: e, webaccel: [0, { rs: e, user: e }], websozai: e, xii: e }], ke: [1, { ac: a, co: a, go: a, info: a, me: a, mobi: a, ne: a, or: a, sc: a }], kg: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, us: e }], kh: u, ki: pa, km: [1, { ass: a, com: a, edu: a, gov: a, mil: a, nom: a, org: a, prd: a, tm: a, asso: a, coop: a, gouv: a, medecin: a, notaires: a, pharmaciens: a, presse: a, veterinaire: a }], kn: [1, { edu: a, gov: a, net: a, org: a }], kp: [1, { com: a, edu: a, gov: a, org: a, rep: a, tra: a }], kr: [1, { ac: a, co: a, es: a, go: a, hs: a, kg: a, mil: a, ms: a, ne: a, or: a, pe: a, re: a, sc: a, busan: a, chungbuk: a, chungnam: a, daegu: a, daejeon: a, gangwon: a, gwangju: a, gyeongbuk: a, gyeonggi: a, gyeongnam: a, incheon: a, jeju: a, jeonbuk: a, jeonnam: a, seoul: a, ulsan: a }], kw: [1, { com: a, edu: a, emb: a, gov: a, ind: a, net: a, org: a }], ky: P, kz: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, jcloud: e }], la: [1, { com: a, edu: a, gov: a, info: a, int: a, net: a, org: a, per: a, bnr: e }], lb: i, lc: [1, { co: a, com: a, edu: a, gov: a, net: a, org: a, oy: e }], li: [1, { caa: e }], lk: [1, { ac: a, assn: a, com: a, edu: a, gov: a, grp: a, hotel: a, int: a, ltd: a, net: a, ngo: a, org: a, sch: a, soc: a, web: a }], lr: i, ls: [1, { ac: a, biz: a, co: a, edu: a, gov: a, info: a, net: a, org: a, sc: a }], lt: c, lu: [1, { "123website": e }], lv: [1, { asn: a, com: a, conf: a, edu: a, gov: a, id: a, mil: a, net: a, org: a }], ly: [1, { com: a, edu: a, gov: a, id: a, med: a, net: a, org: a, plc: a, sch: a }], ma: [1, { ac: a, co: a, gov: a, net: a, org: a, press: a }], mc: [1, { asso: a, tm: a }], md: [1, { ir: e }], me: [1, { ac: a, co: a, edu: a, gov: a, its: a, net: a, org: a, priv: a, c66: e, craft: e, edgestack: e, filegear: e, glitch: e, "filegear-sg": e, lohmus: e, barsy: e, mcdir: e, brasilia: e, ddns: e, dnsfor: e, hopto: e, loginto: e, noip: e, webhop: e, soundcast: e, tcp4: e, vp4: e, diskstation: e, dscloud: e, i234: e, myds: e, synology: e, transip: R, nohost: e }], mg: [1, { co: a, com: a, edu: a, gov: a, mil: a, nom: a, org: a, prd: a }], mh: a, mil: a, mk: [1, { com: a, edu: a, gov: a, inf: a, name: a, net: a, org: a }], ml: [1, { com: a, edu: a, gouv: a, gov: a, net: a, org: a, presse: a }], mm: u, mn: [1, { edu: a, gov: a, org: a, nyc: e }], mo: i, mobi: [1, { barsy: e, dscloud: e }], mp: [1, { ju: e }], mq: a, mr: c, ms: [1, { com: a, edu: a, gov: a, net: a, org: a, lab: e, minisite: e }], mt: P, mu: [1, { ac: a, co: a, com: a, gov: a, net: a, or: a, org: a }], museum: a, mv: [1, { aero: a, biz: a, com: a, coop: a, edu: a, gov: a, info: a, int: a, mil: a, museum: a, name: a, net: a, org: a, pro: a }], mw: [1, { ac: a, biz: a, co: a, com: a, coop: a, edu: a, gov: a, int: a, net: a, org: a }], mx: [1, { com: a, edu: a, gob: a, net: a, org: a }], my: [1, { biz: a, com: a, edu: a, gov: a, mil: a, name: a, net: a, org: a }], mz: [1, { ac: a, adv: a, co: a, edu: a, gov: a, mil: a, net: a, org: a }], na: [1, { alt: a, co: a, com: a, gov: a, net: a, org: a }], name: [1, { her: ba, his: ba }], nc: [1, { asso: a, nom: a }], ne: a, net: [1, { adobeaemcloud: e, "adobeio-static": e, adobeioruntime: e, akadns: e, akamai: e, "akamai-staging": e, akamaiedge: e, "akamaiedge-staging": e, akamaihd: e, "akamaihd-staging": e, akamaiorigin: e, "akamaiorigin-staging": e, akamaized: e, "akamaized-staging": e, edgekey: e, "edgekey-staging": e, edgesuite: e, "edgesuite-staging": e, alwaysdata: e, myamaze: e, cloudfront: e, appudo: e, "atlassian-dev": [0, { prod: U }], myfritz: e, onavstack: e, shopselect: e, blackbaudcdn: e, boomla: e, bplaced: e, square7: e, cdn77: [0, { r: e }], "cdn77-ssl": e, gb: e, hu: e, jp: e, se: e, uk: e, clickrising: e, "ddns-ip": e, "dns-cloud": e, "dns-dynamic": e, cloudaccess: e, cloudflare: [2, { cdn: e }], cloudflareanycast: U, cloudflarecn: U, cloudflareglobal: U, ctfcloud: e, "feste-ip": e, "knx-server": e, "static-access": e, cryptonomic: o, dattolocal: e, mydatto: e, debian: e, definima: e, "at-band-camp": e, blogdns: e, "broke-it": e, buyshouses: e, dnsalias: e, dnsdojo: e, "does-it": e, dontexist: e, dynalias: e, dynathome: e, endofinternet: e, "from-az": e, "from-co": e, "from-la": e, "from-ny": e, "gets-it": e, "ham-radio-op": e, homeftp: e, homeip: e, homelinux: e, homeunix: e, "in-the-band": e, "is-a-chef": e, "is-a-geek": e, "isa-geek": e, "kicks-ass": e, "office-on-the": e, podzone: e, "scrapper-site": e, selfip: e, "sells-it": e, servebbs: e, serveftp: e, thruhere: e, webhop: e, casacam: e, dynu: e, dynv6: e, twmail: e, ru: e, channelsdvr: [2, { u: e }], fastly: [0, { freetls: e, map: e, prod: [0, { a: e, global: e }], ssl: [0, { a: e, b: e, global: e }] }], fastlylb: [2, { map: e }], edgeapp: e, "keyword-on": e, "live-on": e, "server-on": e, "cdn-edges": e, heteml: e, cloudfunctions: e, "grafana-dev": e, iobb: e, moonscale: e, "in-dsl": e, "in-vpn": e, "apps-1and1": e, ipifony: e, cloudjiffy: [2, { "fra1-de": e, "west1-us": e }], elastx: [0, { "jls-sto1": e, "jls-sto2": e, "jls-sto3": e }], massivegrid: [0, { paas: [0, { "fr-1": e, "lon-1": e, "lon-2": e, "ny-1": e, "ny-2": e, "sg-1": e }] }], saveincloud: [0, { jelastic: e, "nordeste-idc": e }], scaleforce: F, kinghost: e, uni5: e, krellian: e, ggff: e, localcert: e, localhostcert: e, barsy: e, memset: e, "azure-api": e, "azure-mobile": e, azureedge: e, azurefd: e, azurestaticapps: [2, { 1: e, 2: e, 3: e, 4: e, 5: e, 6: e, 7: e, centralus: e, eastasia: e, eastus2: e, westeurope: e, westus2: e }], azurewebsites: e, cloudapp: e, trafficmanager: e, windows: [0, { core: [0, { blob: e }], servicebus: e }], mynetname: [0, { sn: e }], routingthecloud: e, bounceme: e, ddns: e, "eating-organic": e, mydissent: e, myeffect: e, mymediapc: e, mypsx: e, mysecuritycamera: e, nhlfan: e, "no-ip": e, pgafan: e, privatizehealthinsurance: e, redirectme: e, serveblog: e, serveminecraft: e, sytes: e, dnsup: e, hicam: e, "now-dns": e, ownip: e, vpndns: e, cloudycluster: e, ovh: [0, { hosting: o, webpaas: o }], rackmaze: e, myradweb: e, in: e, squares: e, schokokeks: e, "firewall-gateway": e, seidat: e, senseering: e, siteleaf: e, mafelo: e, myspreadshop: e, "vps-host": [2, { jelastic: [0, { atl: e, njs: e, ric: e }] }], srcf: [0, { soc: e, user: e }], supabase: e, dsmynas: e, familyds: e, ts: [2, { c: o }], torproject: [2, { pages: e }], vusercontent: e, "reserve-online": e, "community-pro": e, meinforum: e, yandexcloud: [2, { storage: e, website: e }], za: e }], nf: [1, { arts: a, com: a, firm: a, info: a, net: a, other: a, per: a, rec: a, store: a, web: a }], ng: [1, { com: a, edu: a, gov: a, i: a, mil: a, mobi: a, name: a, net: a, org: a, sch: a, biz: [2, { co: e, dl: e, go: e, lg: e, on: e }], col: e, firm: e, gen: e, ltd: e, ngo: e, plc: e }], ni: [1, { ac: a, biz: a, co: a, com: a, edu: a, gob: a, in: a, info: a, int: a, mil: a, net: a, nom: a, org: a, web: a }], nl: [1, { co: e, "hosting-cluster": e, gov: e, khplay: e, "123website": e, myspreadshop: e, transurl: o, cistron: e, demon: e }], no: [1, { fhs: a, folkebibl: a, fylkesbibl: a, idrett: a, museum: a, priv: a, vgs: a, dep: a, herad: a, kommune: a, mil: a, stat: a, aa: w, ah: w, bu: w, fm: w, hl: w, hm: w, "jan-mayen": w, mr: w, nl: w, nt: w, of: w, ol: w, oslo: w, rl: w, sf: w, st: w, svalbard: w, tm: w, tr: w, va: w, vf: w, akrehamn: a, "xn--krehamn-dxa": a, åkrehamn: a, algard: a, "xn--lgrd-poac": a, ålgård: a, arna: a, bronnoysund: a, "xn--brnnysund-m8ac": a, brønnøysund: a, brumunddal: a, bryne: a, drobak: a, "xn--drbak-wua": a, drøbak: a, egersund: a, fetsund: a, floro: a, "xn--flor-jra": a, florø: a, fredrikstad: a, hokksund: a, honefoss: a, "xn--hnefoss-q1a": a, hønefoss: a, jessheim: a, jorpeland: a, "xn--jrpeland-54a": a, jørpeland: a, kirkenes: a, kopervik: a, krokstadelva: a, langevag: a, "xn--langevg-jxa": a, langevåg: a, leirvik: a, mjondalen: a, "xn--mjndalen-64a": a, mjøndalen: a, "mo-i-rana": a, mosjoen: a, "xn--mosjen-eya": a, mosjøen: a, nesoddtangen: a, orkanger: a, osoyro: a, "xn--osyro-wua": a, osøyro: a, raholt: a, "xn--rholt-mra": a, råholt: a, sandnessjoen: a, "xn--sandnessjen-ogb": a, sandnessjøen: a, skedsmokorset: a, slattum: a, spjelkavik: a, stathelle: a, stavern: a, stjordalshalsen: a, "xn--stjrdalshalsen-sqb": a, stjørdalshalsen: a, tananger: a, tranby: a, vossevangen: a, aarborte: a, aejrie: a, afjord: a, "xn--fjord-lra": a, åfjord: a, agdenes: a, akershus: ya, aknoluokta: a, "xn--koluokta-7ya57h": a, ákŋoluokta: a, al: a, "xn--l-1fa": a, ål: a, alaheadju: a, "xn--laheadju-7ya": a, álaheadju: a, alesund: a, "xn--lesund-hua": a, ålesund: a, alstahaug: a, alta: a, "xn--lt-liac": a, áltá: a, alvdal: a, amli: a, "xn--mli-tla": a, åmli: a, amot: a, "xn--mot-tla": a, åmot: a, andasuolo: a, andebu: a, andoy: a, "xn--andy-ira": a, andøy: a, ardal: a, "xn--rdal-poa": a, årdal: a, aremark: a, arendal: a, "xn--s-1fa": a, ås: a, aseral: a, "xn--seral-lra": a, åseral: a, asker: a, askim: a, askoy: a, "xn--asky-ira": a, askøy: a, askvoll: a, asnes: a, "xn--snes-poa": a, åsnes: a, audnedaln: a, aukra: a, aure: a, aurland: a, "aurskog-holand": a, "xn--aurskog-hland-jnb": a, "aurskog-høland": a, austevoll: a, austrheim: a, averoy: a, "xn--avery-yua": a, averøy: a, badaddja: a, "xn--bdddj-mrabd": a, bådåddjå: a, "xn--brum-voa": a, bærum: a, bahcavuotna: a, "xn--bhcavuotna-s4a": a, báhcavuotna: a, bahccavuotna: a, "xn--bhccavuotna-k7a": a, báhccavuotna: a, baidar: a, "xn--bidr-5nac": a, báidár: a, bajddar: a, "xn--bjddar-pta": a, bájddar: a, balat: a, "xn--blt-elab": a, bálát: a, balestrand: a, ballangen: a, balsfjord: a, bamble: a, bardu: a, barum: a, batsfjord: a, "xn--btsfjord-9za": a, båtsfjord: a, bearalvahki: a, "xn--bearalvhki-y4a": a, bearalváhki: a, beardu: a, beiarn: a, berg: a, bergen: a, berlevag: a, "xn--berlevg-jxa": a, berlevåg: a, bievat: a, "xn--bievt-0qa": a, bievát: a, bindal: a, birkenes: a, bjarkoy: a, "xn--bjarky-fya": a, bjarkøy: a, bjerkreim: a, bjugn: a, bodo: a, "xn--bod-2na": a, bodø: a, bokn: a, bomlo: a, "xn--bmlo-gra": a, bømlo: a, bremanger: a, bronnoy: a, "xn--brnny-wuac": a, brønnøy: a, budejju: a, buskerud: ya, bygland: a, bykle: a, cahcesuolo: a, "xn--hcesuolo-7ya35b": a, čáhcesuolo: a, davvenjarga: a, "xn--davvenjrga-y4a": a, davvenjárga: a, davvesiida: a, deatnu: a, dielddanuorri: a, divtasvuodna: a, divttasvuotna: a, donna: a, "xn--dnna-gra": a, dønna: a, dovre: a, drammen: a, drangedal: a, dyroy: a, "xn--dyry-ira": a, dyrøy: a, eid: a, eidfjord: a, eidsberg: a, eidskog: a, eidsvoll: a, eigersund: a, elverum: a, enebakk: a, engerdal: a, etne: a, etnedal: a, evenassi: a, "xn--eveni-0qa01ga": a, evenášši: a, evenes: a, "evje-og-hornnes": a, farsund: a, fauske: a, fedje: a, fet: a, finnoy: a, "xn--finny-yua": a, finnøy: a, fitjar: a, fjaler: a, fjell: a, fla: a, "xn--fl-zia": a, flå: a, flakstad: a, flatanger: a, flekkefjord: a, flesberg: a, flora: a, folldal: a, forde: a, "xn--frde-gra": a, førde: a, forsand: a, fosnes: a, "xn--frna-woa": a, fræna: a, frana: a, frei: a, frogn: a, froland: a, frosta: a, froya: a, "xn--frya-hra": a, frøya: a, fuoisku: a, fuossko: a, fusa: a, fyresdal: a, gaivuotna: a, "xn--givuotna-8ya": a, gáivuotna: a, galsa: a, "xn--gls-elac": a, gálsá: a, gamvik: a, gangaviika: a, "xn--ggaviika-8ya47h": a, gáŋgaviika: a, gaular: a, gausdal: a, giehtavuoatna: a, gildeskal: a, "xn--gildeskl-g0a": a, gildeskål: a, giske: a, gjemnes: a, gjerdrum: a, gjerstad: a, gjesdal: a, gjovik: a, "xn--gjvik-wua": a, gjøvik: a, gloppen: a, gol: a, gran: a, grane: a, granvin: a, gratangen: a, grimstad: a, grong: a, grue: a, gulen: a, guovdageaidnu: a, ha: a, "xn--h-2fa": a, hå: a, habmer: a, "xn--hbmer-xqa": a, hábmer: a, hadsel: a, "xn--hgebostad-g3a": a, hægebostad: a, hagebostad: a, halden: a, halsa: a, hamar: a, hamaroy: a, hammarfeasta: a, "xn--hmmrfeasta-s4ac": a, hámmárfeasta: a, hammerfest: a, hapmir: a, "xn--hpmir-xqa": a, hápmir: a, haram: a, hareid: a, harstad: a, hasvik: a, hattfjelldal: a, haugesund: a, hedmark: [0, { os: a, valer: a, "xn--vler-qoa": a, våler: a }], hemne: a, hemnes: a, hemsedal: a, hitra: a, hjartdal: a, hjelmeland: a, hobol: a, "xn--hobl-ira": a, hobøl: a, hof: a, hol: a, hole: a, holmestrand: a, holtalen: a, "xn--holtlen-hxa": a, holtålen: a, hordaland: [0, { os: a }], hornindal: a, horten: a, hoyanger: a, "xn--hyanger-q1a": a, høyanger: a, hoylandet: a, "xn--hylandet-54a": a, høylandet: a, hurdal: a, hurum: a, hvaler: a, hyllestad: a, ibestad: a, inderoy: a, "xn--indery-fya": a, inderøy: a, iveland: a, ivgu: a, jevnaker: a, jolster: a, "xn--jlster-bya": a, jølster: a, jondal: a, kafjord: a, "xn--kfjord-iua": a, kåfjord: a, karasjohka: a, "xn--krjohka-hwab49j": a, kárášjohka: a, karasjok: a, karlsoy: a, karmoy: a, "xn--karmy-yua": a, karmøy: a, kautokeino: a, klabu: a, "xn--klbu-woa": a, klæbu: a, klepp: a, kongsberg: a, kongsvinger: a, kraanghke: a, "xn--kranghke-b0a": a, kråanghke: a, kragero: a, "xn--krager-gya": a, kragerø: a, kristiansand: a, kristiansund: a, krodsherad: a, "xn--krdsherad-m8a": a, krødsherad: a, "xn--kvfjord-nxa": a, kvæfjord: a, "xn--kvnangen-k0a": a, kvænangen: a, kvafjord: a, kvalsund: a, kvam: a, kvanangen: a, kvinesdal: a, kvinnherad: a, kviteseid: a, kvitsoy: a, "xn--kvitsy-fya": a, kvitsøy: a, laakesvuemie: a, "xn--lrdal-sra": a, lærdal: a, lahppi: a, "xn--lhppi-xqa": a, láhppi: a, lardal: a, larvik: a, lavagis: a, lavangen: a, leangaviika: a, "xn--leagaviika-52b": a, leaŋgaviika: a, lebesby: a, leikanger: a, leirfjord: a, leka: a, leksvik: a, lenvik: a, lerdal: a, lesja: a, levanger: a, lier: a, lierne: a, lillehammer: a, lillesand: a, lindas: a, "xn--linds-pra": a, lindås: a, lindesnes: a, loabat: a, "xn--loabt-0qa": a, loabát: a, lodingen: a, "xn--ldingen-q1a": a, lødingen: a, lom: a, loppa: a, lorenskog: a, "xn--lrenskog-54a": a, lørenskog: a, loten: a, "xn--lten-gra": a, løten: a, lund: a, lunner: a, luroy: a, "xn--lury-ira": a, lurøy: a, luster: a, lyngdal: a, lyngen: a, malatvuopmi: a, "xn--mlatvuopmi-s4a": a, málatvuopmi: a, malselv: a, "xn--mlselv-iua": a, målselv: a, malvik: a, mandal: a, marker: a, marnardal: a, masfjorden: a, masoy: a, "xn--msy-ula0h": a, måsøy: a, "matta-varjjat": a, "xn--mtta-vrjjat-k7af": a, "mátta-várjjat": a, meland: a, meldal: a, melhus: a, meloy: a, "xn--mely-ira": a, meløy: a, meraker: a, "xn--merker-kua": a, meråker: a, midsund: a, "midtre-gauldal": a, moareke: a, "xn--moreke-jua": a, moåreke: a, modalen: a, modum: a, molde: a, "more-og-romsdal": [0, { heroy: a, sande: a }], "xn--mre-og-romsdal-qqb": [0, { "xn--hery-ira": a, sande: a }], "møre-og-romsdal": [0, { herøy: a, sande: a }], moskenes: a, moss: a, mosvik: a, muosat: a, "xn--muost-0qa": a, muosát: a, naamesjevuemie: a, "xn--nmesjevuemie-tcba": a, nååmesjevuemie: a, "xn--nry-yla5g": a, nærøy: a, namdalseid: a, namsos: a, namsskogan: a, nannestad: a, naroy: a, narviika: a, narvik: a, naustdal: a, navuotna: a, "xn--nvuotna-hwa": a, návuotna: a, "nedre-eiker": a, nesna: a, nesodden: a, nesseby: a, nesset: a, nissedal: a, nittedal: a, "nord-aurdal": a, "nord-fron": a, "nord-odal": a, norddal: a, nordkapp: a, nordland: [0, { bo: a, "xn--b-5ga": a, bø: a, heroy: a, "xn--hery-ira": a, herøy: a }], "nordre-land": a, nordreisa: a, "nore-og-uvdal": a, notodden: a, notteroy: a, "xn--nttery-byae": a, nøtterøy: a, odda: a, oksnes: a, "xn--ksnes-uua": a, øksnes: a, omasvuotna: a, oppdal: a, oppegard: a, "xn--oppegrd-ixa": a, oppegård: a, orkdal: a, orland: a, "xn--rland-uua": a, ørland: a, orskog: a, "xn--rskog-uua": a, ørskog: a, orsta: a, "xn--rsta-fra": a, ørsta: a, osen: a, osteroy: a, "xn--ostery-fya": a, osterøy: a, ostfold: [0, { valer: a }], "xn--stfold-9xa": [0, { "xn--vler-qoa": a }], østfold: [0, { våler: a }], "ostre-toten": a, "xn--stre-toten-zcb": a, "østre-toten": a, overhalla: a, "ovre-eiker": a, "xn--vre-eiker-k8a": a, "øvre-eiker": a, oyer: a, "xn--yer-zna": a, øyer: a, oygarden: a, "xn--ygarden-p1a": a, øygarden: a, "oystre-slidre": a, "xn--ystre-slidre-ujb": a, "øystre-slidre": a, porsanger: a, porsangu: a, "xn--porsgu-sta26f": a, porsáŋgu: a, porsgrunn: a, rade: a, "xn--rde-ula": a, råde: a, radoy: a, "xn--rady-ira": a, radøy: a, "xn--rlingen-mxa": a, rælingen: a, rahkkeravju: a, "xn--rhkkervju-01af": a, ráhkkerávju: a, raisa: a, "xn--risa-5na": a, ráisa: a, rakkestad: a, ralingen: a, rana: a, randaberg: a, rauma: a, rendalen: a, rennebu: a, rennesoy: a, "xn--rennesy-v1a": a, rennesøy: a, rindal: a, ringebu: a, ringerike: a, ringsaker: a, risor: a, "xn--risr-ira": a, risør: a, rissa: a, roan: a, rodoy: a, "xn--rdy-0nab": a, rødøy: a, rollag: a, romsa: a, romskog: a, "xn--rmskog-bya": a, rømskog: a, roros: a, "xn--rros-gra": a, røros: a, rost: a, "xn--rst-0na": a, røst: a, royken: a, "xn--ryken-vua": a, røyken: a, royrvik: a, "xn--ryrvik-bya": a, røyrvik: a, ruovat: a, rygge: a, salangen: a, salat: a, "xn--slat-5na": a, sálat: a, "xn--slt-elab": a, sálát: a, saltdal: a, samnanger: a, sandefjord: a, sandnes: a, sandoy: a, "xn--sandy-yua": a, sandøy: a, sarpsborg: a, sauda: a, sauherad: a, sel: a, selbu: a, selje: a, seljord: a, siellak: a, sigdal: a, siljan: a, sirdal: a, skanit: a, "xn--sknit-yqa": a, skánit: a, skanland: a, "xn--sknland-fxa": a, skånland: a, skaun: a, skedsmo: a, ski: a, skien: a, skierva: a, "xn--skierv-uta": a, skiervá: a, skiptvet: a, skjak: a, "xn--skjk-soa": a, skjåk: a, skjervoy: a, "xn--skjervy-v1a": a, skjervøy: a, skodje: a, smola: a, "xn--smla-hra": a, smøla: a, snaase: a, "xn--snase-nra": a, snåase: a, snasa: a, "xn--snsa-roa": a, snåsa: a, snillfjord: a, snoasa: a, sogndal: a, sogne: a, "xn--sgne-gra": a, søgne: a, sokndal: a, sola: a, solund: a, somna: a, "xn--smna-gra": a, sømna: a, "sondre-land": a, "xn--sndre-land-0cb": a, "søndre-land": a, songdalen: a, "sor-aurdal": a, "xn--sr-aurdal-l8a": a, "sør-aurdal": a, "sor-fron": a, "xn--sr-fron-q1a": a, "sør-fron": a, "sor-odal": a, "xn--sr-odal-q1a": a, "sør-odal": a, "sor-varanger": a, "xn--sr-varanger-ggb": a, "sør-varanger": a, sorfold: a, "xn--srfold-bya": a, sørfold: a, sorreisa: a, "xn--srreisa-q1a": a, sørreisa: a, sortland: a, sorum: a, "xn--srum-gra": a, sørum: a, spydeberg: a, stange: a, stavanger: a, steigen: a, steinkjer: a, stjordal: a, "xn--stjrdal-s1a": a, stjørdal: a, stokke: a, "stor-elvdal": a, stord: a, stordal: a, storfjord: a, strand: a, stranda: a, stryn: a, sula: a, suldal: a, sund: a, sunndal: a, surnadal: a, sveio: a, svelvik: a, sykkylven: a, tana: a, telemark: [0, { bo: a, "xn--b-5ga": a, bø: a }], time: a, tingvoll: a, tinn: a, tjeldsund: a, tjome: a, "xn--tjme-hra": a, tjøme: a, tokke: a, tolga: a, tonsberg: a, "xn--tnsberg-q1a": a, tønsberg: a, torsken: a, "xn--trna-woa": a, træna: a, trana: a, tranoy: a, "xn--trany-yua": a, tranøy: a, troandin: a, trogstad: a, "xn--trgstad-r1a": a, trøgstad: a, tromsa: a, tromso: a, "xn--troms-zua": a, tromsø: a, trondheim: a, trysil: a, tvedestrand: a, tydal: a, tynset: a, tysfjord: a, tysnes: a, "xn--tysvr-vra": a, tysvær: a, tysvar: a, ullensaker: a, ullensvang: a, ulvik: a, unjarga: a, "xn--unjrga-rta": a, unjárga: a, utsira: a, vaapste: a, vadso: a, "xn--vads-jra": a, vadsø: a, "xn--vry-yla5g": a, værøy: a, vaga: a, "xn--vg-yiab": a, vågå: a, vagan: a, "xn--vgan-qoa": a, vågan: a, vagsoy: a, "xn--vgsy-qoa0j": a, vågsøy: a, vaksdal: a, valle: a, vang: a, vanylven: a, vardo: a, "xn--vard-jra": a, vardø: a, varggat: a, "xn--vrggt-xqad": a, várggát: a, varoy: a, vefsn: a, vega: a, vegarshei: a, "xn--vegrshei-c0a": a, vegårshei: a, vennesla: a, verdal: a, verran: a, vestby: a, vestfold: [0, { sande: a }], vestnes: a, "vestre-slidre": a, "vestre-toten": a, vestvagoy: a, "xn--vestvgy-ixa6o": a, vestvågøy: a, vevelstad: a, vik: a, vikna: a, vindafjord: a, voagat: a, volda: a, voss: a, co: e, "123hjemmeside": e, myspreadshop: e }], np: u, nr: pa, nu: [1, { merseine: e, mine: e, shacknet: e, enterprisecloud: e }], nz: [1, { ac: a, co: a, cri: a, geek: a, gen: a, govt: a, health: a, iwi: a, kiwi: a, maori: a, "xn--mori-qsa": a, māori: a, mil: a, net: a, org: a, parliament: a, school: a, cloudns: e }], om: [1, { co: a, com: a, edu: a, gov: a, med: a, museum: a, net: a, org: a, pro: a }], onion: a, org: [1, { altervista: e, pimienta: e, poivron: e, potager: e, sweetpepper: e, cdn77: [0, { c: e, rsc: e }], "cdn77-secure": [0, { origin: [0, { ssl: e }] }], ae: e, cloudns: e, "ip-dynamic": e, ddnss: e, duckdns: e, tunk: e, blogdns: e, blogsite: e, boldlygoingnowhere: e, dnsalias: e, dnsdojo: e, doesntexist: e, dontexist: e, doomdns: e, dvrdns: e, dynalias: e, dyndns: [2, { go: e, home: e }], endofinternet: e, endoftheinternet: e, "from-me": e, "game-host": e, gotdns: e, "hobby-site": e, homedns: e, homeftp: e, homelinux: e, homeunix: e, "is-a-bruinsfan": e, "is-a-candidate": e, "is-a-celticsfan": e, "is-a-chef": e, "is-a-geek": e, "is-a-knight": e, "is-a-linux-user": e, "is-a-patsfan": e, "is-a-soxfan": e, "is-found": e, "is-lost": e, "is-saved": e, "is-very-bad": e, "is-very-evil": e, "is-very-good": e, "is-very-nice": e, "is-very-sweet": e, "isa-geek": e, "kicks-ass": e, misconfused: e, podzone: e, readmyblog: e, selfip: e, sellsyourhome: e, servebbs: e, serveftp: e, servegame: e, "stuff-4-sale": e, webhop: e, accesscam: e, camdvr: e, freeddns: e, mywire: e, webredirect: e, twmail: e, eu: [2, { al: e, asso: e, at: e, au: e, be: e, bg: e, ca: e, cd: e, ch: e, cn: e, cy: e, cz: e, de: e, dk: e, edu: e, ee: e, es: e, fi: e, fr: e, gr: e, hr: e, hu: e, ie: e, il: e, in: e, int: e, is: e, it: e, jp: e, kr: e, lt: e, lu: e, lv: e, me: e, mk: e, mt: e, my: e, net: e, ng: e, nl: e, no: e, nz: e, pl: e, pt: e, ro: e, ru: e, se: e, si: e, sk: e, tr: e, uk: e, us: e }], fedorainfracloud: e, fedorapeople: e, fedoraproject: [0, { cloud: e, os: G, stg: [0, { os: G }] }], freedesktop: e, hatenadiary: e, hepforge: e, "in-dsl": e, "in-vpn": e, js: e, barsy: e, mayfirst: e, routingthecloud: e, bmoattachments: e, "cable-modem": e, collegefan: e, couchpotatofries: e, hopto: e, mlbfan: e, myftp: e, mysecuritycamera: e, nflfan: e, "no-ip": e, "read-books": e, ufcfan: e, zapto: e, dynserv: e, "now-dns": e, "is-local": e, httpbin: e, pubtls: e, jpn: e, "my-firewall": e, myfirewall: e, spdns: e, "small-web": e, dsmynas: e, familyds: e, teckids: W, tuxfamily: e, diskstation: e, hk: e, us: e, toolforge: e, wmcloud: e, wmflabs: e, za: e }], pa: [1, { abo: a, ac: a, com: a, edu: a, gob: a, ing: a, med: a, net: a, nom: a, org: a, sld: a }], pe: [1, { com: a, edu: a, gob: a, mil: a, net: a, nom: a, org: a }], pf: [1, { com: a, edu: a, org: a }], pg: u, ph: [1, { com: a, edu: a, gov: a, i: a, mil: a, net: a, ngo: a, org: a, cloudns: e }], pk: [1, { ac: a, biz: a, com: a, edu: a, fam: a, gkp: a, gob: a, gog: a, gok: a, gon: a, gop: a, gos: a, gov: a, net: a, org: a, web: a }], pl: [1, { com: a, net: a, org: a, agro: a, aid: a, atm: a, auto: a, biz: a, edu: a, gmina: a, gsm: a, info: a, mail: a, media: a, miasta: a, mil: a, nieruchomosci: a, nom: a, pc: a, powiat: a, priv: a, realestate: a, rel: a, sex: a, shop: a, sklep: a, sos: a, szkola: a, targi: a, tm: a, tourism: a, travel: a, turystyka: a, gov: [1, { ap: a, griw: a, ic: a, is: a, kmpsp: a, konsulat: a, kppsp: a, kwp: a, kwpsp: a, mup: a, mw: a, oia: a, oirm: a, oke: a, oow: a, oschr: a, oum: a, pa: a, pinb: a, piw: a, po: a, pr: a, psp: a, psse: a, pup: a, rzgw: a, sa: a, sdn: a, sko: a, so: a, sr: a, starostwo: a, ug: a, ugim: a, um: a, umig: a, upow: a, uppo: a, us: a, uw: a, uzs: a, wif: a, wiih: a, winb: a, wios: a, witd: a, wiw: a, wkz: a, wsa: a, wskr: a, wsse: a, wuoz: a, wzmiuw: a, zp: a, zpisdn: a }], augustow: a, "babia-gora": a, bedzin: a, beskidy: a, bialowieza: a, bialystok: a, bielawa: a, bieszczady: a, boleslawiec: a, bydgoszcz: a, bytom: a, cieszyn: a, czeladz: a, czest: a, dlugoleka: a, elblag: a, elk: a, glogow: a, gniezno: a, gorlice: a, grajewo: a, ilawa: a, jaworzno: a, "jelenia-gora": a, jgora: a, kalisz: a, karpacz: a, kartuzy: a, kaszuby: a, katowice: a, "kazimierz-dolny": a, kepno: a, ketrzyn: a, klodzko: a, kobierzyce: a, kolobrzeg: a, konin: a, konskowola: a, kutno: a, lapy: a, lebork: a, legnica: a, lezajsk: a, limanowa: a, lomza: a, lowicz: a, lubin: a, lukow: a, malbork: a, malopolska: a, mazowsze: a, mazury: a, mielec: a, mielno: a, mragowo: a, naklo: a, nowaruda: a, nysa: a, olawa: a, olecko: a, olkusz: a, olsztyn: a, opoczno: a, opole: a, ostroda: a, ostroleka: a, ostrowiec: a, ostrowwlkp: a, pila: a, pisz: a, podhale: a, podlasie: a, polkowice: a, pomorskie: a, pomorze: a, prochowice: a, pruszkow: a, przeworsk: a, pulawy: a, radom: a, "rawa-maz": a, rybnik: a, rzeszow: a, sanok: a, sejny: a, skoczow: a, slask: a, slupsk: a, sosnowiec: a, "stalowa-wola": a, starachowice: a, stargard: a, suwalki: a, swidnica: a, swiebodzin: a, swinoujscie: a, szczecin: a, szczytno: a, tarnobrzeg: a, tgory: a, turek: a, tychy: a, ustka: a, walbrzych: a, warmia: a, warszawa: a, waw: a, wegrow: a, wielun: a, wlocl: a, wloclawek: a, wodzislaw: a, wolomin: a, wroclaw: a, zachpomor: a, zagan: a, zarow: a, zgora: a, zgorzelec: a, art: e, gliwice: e, krakow: e, poznan: e, wroc: e, zakopane: e, beep: e, "ecommerce-shop": e, cfolks: e, dfirma: e, dkonto: e, you2: e, shoparena: e, homesklep: e, sdscloud: e, unicloud: e, lodz: e, pabianice: e, plock: e, sieradz: e, skierniewice: e, zgierz: e, krasnik: e, leczna: e, lubartow: e, lublin: e, poniatowa: e, swidnik: e, co: e, torun: e, simplesite: e, myspreadshop: e, gda: e, gdansk: e, gdynia: e, med: e, sopot: e, bielsko: e }], pm: [1, { own: e, name: e }], pn: [1, { co: a, edu: a, gov: a, net: a, org: a }], post: a, pr: [1, { biz: a, com: a, edu: a, gov: a, info: a, isla: a, name: a, net: a, org: a, pro: a, ac: a, est: a, prof: a }], pro: [1, { aaa: a, aca: a, acct: a, avocat: a, bar: a, cpa: a, eng: a, jur: a, law: a, med: a, recht: a, "12chars": e, cloudns: e, barsy: e, ngrok: e }], ps: [1, { com: a, edu: a, gov: a, net: a, org: a, plo: a, sec: a }], pt: [1, { com: a, edu: a, gov: a, int: a, net: a, nome: a, org: a, publ: a, "123paginaweb": e }], pw: [1, { gov: a, cloudns: e, x443: e }], py: [1, { com: a, coop: a, edu: a, gov: a, mil: a, net: a, org: a }], qa: [1, { com: a, edu: a, gov: a, mil: a, name: a, net: a, org: a, sch: a }], re: [1, { asso: a, com: a, netlib: e, can: e }], ro: [1, { arts: a, com: a, firm: a, info: a, nom: a, nt: a, org: a, rec: a, store: a, tm: a, www: a, co: e, shop: e, barsy: e }], rs: [1, { ac: a, co: a, edu: a, gov: a, in: a, org: a, brendly: ha, ua: e, barsy: e, ox: e }], ru: [1, { ac: e, edu: e, gov: e, int: e, mil: e, eurodir: e, adygeya: e, bashkiria: e, bir: e, cbg: e, com: e, dagestan: e, grozny: e, kalmykia: e, kustanai: e, marine: e, mordovia: e, msk: e, mytis: e, nalchik: e, nov: e, pyatigorsk: e, spb: e, vladikavkaz: e, vladimir: e, na4u: e, mircloud: e, myjino: [2, { hosting: o, landing: o, spectrum: o, vps: o }], cldmail: [0, { hb: e }], mcdir: [2, { vps: e }], mcpre: e, net: e, org: e, pp: e, lk3: e, ras: e }], rw: [1, { ac: a, co: a, coop: a, gov: a, mil: a, net: a, org: a }], sa: [1, { com: a, edu: a, gov: a, med: a, net: a, org: a, pub: a, sch: a }], sb: i, sc: i, sd: [1, { com: a, edu: a, gov: a, info: a, med: a, net: a, org: a, tv: a }], se: [1, { a, ac: a, b: a, bd: a, brand: a, c: a, d: a, e: a, f: a, fh: a, fhsk: a, fhv: a, g: a, h: a, i: a, k: a, komforb: a, kommunalforbund: a, komvux: a, l: a, lanbib: a, m: a, n: a, naturbruksgymn: a, o: a, org: a, p: a, parti: a, pp: a, press: a, r: a, s: a, t: a, tm: a, u: a, w: a, x: a, y: a, z: a, com: e, conf: e, iopsys: e, "123minsida": e, itcouldbewor: e, myspreadshop: e }], sg: [1, { com: a, edu: a, gov: a, net: a, org: a, enscaled: e }], sh: [1, { com: a, gov: a, mil: a, net: a, org: a, hashbang: e, platform: [0, { ent: e, eu: e, us: e }], now: e }], si: [1, { f5: e, gitapp: e, gitpage: e }], sj: a, sk: a, sl: i, sm: a, sn: [1, { art: a, com: a, edu: a, gouv: a, org: a, perso: a, univ: a }], so: [1, { com: a, edu: a, gov: a, me: a, net: a, org: a, surveys: e }], sr: a, ss: [1, { biz: a, co: a, com: a, edu: a, gov: a, me: a, net: a, org: a, sch: a }], st: [1, { co: a, com: a, consulado: a, edu: a, embaixada: a, mil: a, net: a, org: a, principe: a, saotome: a, store: a, helioho: e, kirara: e, noho: e }], su: [1, { abkhazia: e, adygeya: e, aktyubinsk: e, arkhangelsk: e, armenia: e, ashgabad: e, azerbaijan: e, balashov: e, bashkiria: e, bryansk: e, bukhara: e, chimkent: e, dagestan: e, "east-kazakhstan": e, exnet: e, georgia: e, grozny: e, ivanovo: e, jambyl: e, kalmykia: e, kaluga: e, karacol: e, karaganda: e, karelia: e, khakassia: e, krasnodar: e, kurgan: e, kustanai: e, lenug: e, mangyshlak: e, mordovia: e, msk: e, murmansk: e, nalchik: e, navoi: e, "north-kazakhstan": e, nov: e, obninsk: e, penza: e, pokrovsk: e, sochi: e, spb: e, tashkent: e, termez: e, togliatti: e, troitsk: e, tselinograd: e, tula: e, tuva: e, vladikavkaz: e, vladimir: e, vologda: e }], sv: [1, { com: a, edu: a, gob: a, org: a, red: a }], sx: c, sy: s, sz: [1, { ac: a, co: a, org: a }], tc: a, td: a, tel: a, tf: [1, { sch: e }], tg: a, th: [1, { ac: a, co: a, go: a, in: a, mi: a, net: a, or: a, online: e, shop: e }], tj: [1, { ac: a, biz: a, co: a, com: a, edu: a, go: a, gov: a, int: a, mil: a, name: a, net: a, nic: a, org: a, test: a, web: a }], tk: a, tl: c, tm: [1, { co: a, com: a, edu: a, gov: a, mil: a, net: a, nom: a, org: a }], tn: [1, { com: a, ens: a, fin: a, gov: a, ind: a, info: a, intl: a, mincom: a, nat: a, net: a, org: a, perso: a, tourism: a, orangecloud: e }], to: [1, { 611: e, com: a, edu: a, gov: a, mil: a, net: a, org: a, oya: e, x0: e, quickconnect: sa, vpnplus: e }], tr: [1, { av: a, bbs: a, bel: a, biz: a, com: a, dr: a, edu: a, gen: a, gov: a, info: a, k12: a, kep: a, mil: a, name: a, net: a, org: a, pol: a, tel: a, tsk: a, tv: a, web: a, nc: c }], tt: [1, { biz: a, co: a, com: a, edu: a, gov: a, info: a, mil: a, name: a, net: a, org: a, pro: a }], tv: [1, { "better-than": e, dyndns: e, "on-the-web": e, "worse-than": e, from: e, sakura: e }], tw: [1, { club: a, com: [1, { mymailer: e }], ebiz: a, edu: a, game: a, gov: a, idv: a, mil: a, net: a, org: a, url: e, mydns: e }], tz: [1, { ac: a, co: a, go: a, hotel: a, info: a, me: a, mil: a, mobi: a, ne: a, or: a, sc: a, tv: a }], ua: [1, { com: a, edu: a, gov: a, in: a, net: a, org: a, cherkassy: a, cherkasy: a, chernigov: a, chernihiv: a, chernivtsi: a, chernovtsy: a, ck: a, cn: a, cr: a, crimea: a, cv: a, dn: a, dnepropetrovsk: a, dnipropetrovsk: a, donetsk: a, dp: a, if: a, "ivano-frankivsk": a, kh: a, kharkiv: a, kharkov: a, kherson: a, khmelnitskiy: a, khmelnytskyi: a, kiev: a, kirovograd: a, km: a, kr: a, kropyvnytskyi: a, krym: a, ks: a, kv: a, kyiv: a, lg: a, lt: a, lugansk: a, luhansk: a, lutsk: a, lv: a, lviv: a, mk: a, mykolaiv: a, nikolaev: a, od: a, odesa: a, odessa: a, pl: a, poltava: a, rivne: a, rovno: a, rv: a, sb: a, sebastopol: a, sevastopol: a, sm: a, sumy: a, te: a, ternopil: a, uz: a, uzhgorod: a, uzhhorod: a, vinnica: a, vinnytsia: a, vn: a, volyn: a, yalta: a, zakarpattia: a, zaporizhzhe: a, zaporizhzhia: a, zhitomir: a, zhytomyr: a, zp: a, zt: a, cc: e, inf: e, ltd: e, cx: e, ie: e, biz: e, co: e, pp: e, v: e }], ug: [1, { ac: a, co: a, com: a, go: a, ne: a, or: a, org: a, sc: a }], uk: [1, { ac: a, co: [1, { bytemark: [0, { dh: e, vm: e }], layershift: F, barsy: e, barsyonline: e, retrosnub: ka, "nh-serv": e, "no-ip": e, adimo: e, myspreadshop: e }], gov: [1, { api: e, campaign: e, service: e }], ltd: a, me: a, net: a, nhs: a, org: [1, { glug: e, lug: e, lugs: e, affinitylottery: e, raffleentry: e, weeklylottery: e }], plc: a, police: a, sch: u, conn: e, copro: e, hosp: e, "independent-commission": e, "independent-inquest": e, "independent-inquiry": e, "independent-panel": e, "independent-review": e, "public-inquiry": e, "royal-commission": e, pymnt: e, barsy: e, nimsite: e, oraclegovcloudapps: o }], us: [1, { dni: a, isa: a, nsn: a, ak: g, al: g, ar: g, as: g, az: g, ca: g, co: g, ct: g, dc: g, de: [1, { cc: a, lib: e }], fl: g, ga: g, gu: g, hi: O, ia: g, id: g, il: g, in: g, ks: g, ky: g, la: g, ma: [1, { k12: [1, { chtr: a, paroch: a, pvt: a }], cc: a, lib: a }], md: g, me: g, mi: [1, { k12: a, cc: a, lib: a, "ann-arbor": a, cog: a, dst: a, eaton: a, gen: a, mus: a, tec: a, washtenaw: a }], mn: g, mo: g, ms: g, mt: g, nc: g, nd: O, ne: g, nh: g, nj: g, nm: g, nv: g, ny: g, oh: g, ok: g, or: g, pa: g, pr: g, ri: O, sc: g, sd: O, tn: g, tx: g, ut: g, va: g, vi: g, vt: g, wa: g, wi: g, wv: [1, { cc: a }], wy: g, cloudns: e, drud: e, "is-by": e, "land-4-sale": e, "stuff-4-sale": e, heliohost: e, enscaled: [0, { phx: e }], mircloud: e, ngo: e, golffan: e, noip: e, pointto: e, freeddns: e, srv: [2, { gh: e, gl: e }], platterp: e, servername: e }], uy: [1, { com: a, edu: a, gub: a, mil: a, net: a, org: a }], uz: [1, { co: a, com: a, net: a, org: a }], va: a, vc: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, gv: [2, { d: e }], "0e": o, mydns: e }], ve: [1, { arts: a, bib: a, co: a, com: a, e12: a, edu: a, firm: a, gob: a, gov: a, info: a, int: a, mil: a, net: a, nom: a, org: a, rar: a, rec: a, store: a, tec: a, web: a }], vg: a, vi: [1, { co: a, com: a, k12: a, net: a, org: a }], vn: [1, { ac: a, ai: a, biz: a, com: a, edu: a, gov: a, health: a, id: a, info: a, int: a, io: a, name: a, net: a, org: a, pro: a, angiang: a, bacgiang: a, backan: a, baclieu: a, bacninh: a, "baria-vungtau": a, bentre: a, binhdinh: a, binhduong: a, binhphuoc: a, binhthuan: a, camau: a, cantho: a, caobang: a, daklak: a, daknong: a, danang: a, dienbien: a, dongnai: a, dongthap: a, gialai: a, hagiang: a, haiduong: a, haiphong: a, hanam: a, hanoi: a, hatinh: a, haugiang: a, hoabinh: a, hungyen: a, khanhhoa: a, kiengiang: a, kontum: a, laichau: a, lamdong: a, langson: a, laocai: a, longan: a, namdinh: a, nghean: a, ninhbinh: a, ninhthuan: a, phutho: a, phuyen: a, quangbinh: a, quangnam: a, quangngai: a, quangninh: a, quangtri: a, soctrang: a, sonla: a, tayninh: a, thaibinh: a, thainguyen: a, thanhhoa: a, thanhphohochiminh: a, thuathienhue: a, tiengiang: a, travinh: a, tuyenquang: a, vinhlong: a, vinhphuc: a, yenbai: a }], vu: P, wf: [1, { biz: e, sch: e }], ws: [1, { com: a, edu: a, gov: a, net: a, org: a, advisor: o, cloud66: e, dyndns: e, mypets: e }], yt: [1, { org: e }], "xn--mgbaam7a8h": a, امارات: a, "xn--y9a3aq": a, հայ: a, "xn--54b7fta0cc": a, বাংলা: a, "xn--90ae": a, бг: a, "xn--mgbcpq6gpa1a": a, البحرين: a, "xn--90ais": a, бел: a, "xn--fiqs8s": a, 中国: a, "xn--fiqz9s": a, 中國: a, "xn--lgbbat1ad8j": a, الجزائر: a, "xn--wgbh1c": a, مصر: a, "xn--e1a4c": a, ею: a, "xn--qxa6a": a, ευ: a, "xn--mgbah1a3hjkrd": a, موريتانيا: a, "xn--node": a, გე: a, "xn--qxam": a, ελ: a, "xn--j6w193g": [1, { "xn--gmqw5a": a, "xn--55qx5d": a, "xn--mxtq1m": a, "xn--wcvs22d": a, "xn--uc0atv": a, "xn--od0alg": a }], 香港: [1, { 個人: a, 公司: a, 政府: a, 教育: a, 組織: a, 網絡: a }], "xn--2scrj9c": a, ಭಾರತ: a, "xn--3hcrj9c": a, ଭାରତ: a, "xn--45br5cyl": a, ভাৰত: a, "xn--h2breg3eve": a, भारतम्: a, "xn--h2brj9c8c": a, भारोत: a, "xn--mgbgu82a": a, ڀارت: a, "xn--rvc1e0am3e": a, ഭാരതം: a, "xn--h2brj9c": a, भारत: a, "xn--mgbbh1a": a, بارت: a, "xn--mgbbh1a71e": a, بھارت: a, "xn--fpcrj9c3d": a, భారత్: a, "xn--gecrj9c": a, ભારત: a, "xn--s9brj9c": a, ਭਾਰਤ: a, "xn--45brj9c": a, ভারত: a, "xn--xkc2dl3a5ee0h": a, இந்தியா: a, "xn--mgba3a4f16a": a, ایران: a, "xn--mgba3a4fra": a, ايران: a, "xn--mgbtx2b": a, عراق: a, "xn--mgbayh7gpa": a, الاردن: a, "xn--3e0b707e": a, 한국: a, "xn--80ao21a": a, қаз: a, "xn--q7ce6a": a, ລາວ: a, "xn--fzc2c9e2c": a, ලංකා: a, "xn--xkc2al3hye2a": a, இலங்கை: a, "xn--mgbc0a9azcg": a, المغرب: a, "xn--d1alf": a, мкд: a, "xn--l1acc": a, мон: a, "xn--mix891f": a, 澳門: a, "xn--mix082f": a, 澳门: a, "xn--mgbx4cd0ab": a, مليسيا: a, "xn--mgb9awbf": a, عمان: a, "xn--mgbai9azgqp6j": a, پاکستان: a, "xn--mgbai9a5eva00b": a, پاكستان: a, "xn--ygbi2ammx": a, فلسطين: a, "xn--90a3ac": [1, { "xn--80au": a, "xn--90azh": a, "xn--d1at": a, "xn--c1avg": a, "xn--o1ac": a, "xn--o1ach": a }], срб: [1, { ак: a, обр: a, од: a, орг: a, пр: a, упр: a }], "xn--p1ai": a, рф: a, "xn--wgbl6a": a, قطر: a, "xn--mgberp4a5d4ar": a, السعودية: a, "xn--mgberp4a5d4a87g": a, السعودیة: a, "xn--mgbqly7c0a67fbc": a, السعودیۃ: a, "xn--mgbqly7cvafr": a, السعوديه: a, "xn--mgbpl2fh": a, سودان: a, "xn--yfro4i67o": a, 新加坡: a, "xn--clchc0ea0b2g2a9gcd": a, சிங்கப்பூர்: a, "xn--ogbpf8fl": a, سورية: a, "xn--mgbtf8fl": a, سوريا: a, "xn--o3cw4h": [1, { "xn--o3cyx2a": a, "xn--12co0c3b4eva": a, "xn--m3ch0j3a": a, "xn--h3cuzk1di": a, "xn--12c1fe0br": a, "xn--12cfi8ixb8l": a }], ไทย: [1, { ทหาร: a, ธุรกิจ: a, เน็ต: a, รัฐบาล: a, ศึกษา: a, องค์กร: a }], "xn--pgbs0dh": a, تونس: a, "xn--kpry57d": a, 台灣: a, "xn--kprw13d": a, 台湾: a, "xn--nnx388a": a, 臺灣: a, "xn--j1amh": a, укр: a, "xn--mgb2ddes": a, اليمن: a, xxx: a, ye: s, za: [0, { ac: a, agric: a, alt: a, co: a, edu: a, gov: a, grondar: a, law: a, mil: a, net: a, ngo: a, nic: a, nis: a, nom: a, org: a, school: a, tm: a, web: a }], zm: [1, { ac: a, biz: a, co: a, com: a, edu: a, gov: a, info: a, mil: a, net: a, org: a, sch: a }], zw: [1, { ac: a, co: a, gov: a, mil: a, org: a }], aaa: a, aarp: a, abb: a, abbott: a, abbvie: a, abc: a, able: a, abogado: a, abudhabi: a, academy: [1, { official: e }], accenture: a, accountant: a, accountants: a, aco: a, actor: a, ads: a, adult: a, aeg: a, aetna: a, afl: a, africa: a, agakhan: a, agency: a, aig: a, airbus: a, airforce: a, airtel: a, akdn: a, alibaba: a, alipay: a, allfinanz: a, allstate: a, ally: a, alsace: a, alstom: a, amazon: a, americanexpress: a, americanfamily: a, amex: a, amfam: a, amica: a, amsterdam: a, analytics: a, android: a, anquan: a, anz: a, aol: a, apartments: a, app: [1, { adaptable: e, aiven: e, beget: o, clerk: e, clerkstage: e, wnext: e, csb: [2, { preview: e }], deta: e, ondigitalocean: e, easypanel: e, encr: e, evervault: t, expo: [2, { staging: e }], edgecompute: e, "on-fleek": e, flutterflow: e, framer: e, hosted: o, run: o, web: e, hasura: e, loginline: e, medusajs: e, messerli: e, netfy: e, netlify: e, ngrok: e, "ngrok-free": e, developer: o, noop: e, northflank: o, upsun: o, replit: n, nyat: e, snowflake: [0, { "*": e, privatelink: o }], streamlit: e, storipress: e, telebit: e, typedream: e, vercel: e, bookonline: e, wdh: e, zeabur: e }], apple: a, aquarelle: a, arab: a, aramco: a, archi: a, army: a, art: a, arte: a, asda: a, associates: a, athleta: a, attorney: a, auction: a, audi: a, audible: a, audio: a, auspost: a, author: a, auto: a, autos: a, aws: [1, { sagemaker: [0, { "ap-northeast-1": l, "ap-northeast-2": l, "ap-south-1": l, "ap-southeast-1": l, "ap-southeast-2": l, "ca-central-1": d, "eu-central-1": l, "eu-west-1": l, "eu-west-2": l, "us-east-1": d, "us-east-2": d, "us-west-2": d, "af-south-1": m, "ap-east-1": m, "ap-northeast-3": m, "ap-south-2": r, "ap-southeast-3": m, "ap-southeast-4": r, "ca-west-1": [0, { notebook: e, "notebook-fips": e }], "eu-central-2": r, "eu-north-1": m, "eu-south-1": m, "eu-south-2": m, "eu-west-3": m, "il-central-1": m, "me-central-1": m, "me-south-1": m, "sa-east-1": m, "us-gov-east-1": k, "us-gov-west-1": k, "us-west-1": [0, { notebook: e, "notebook-fips": e, studio: e }], experiments: o }], repost: [0, { private: o }] }], axa: a, azure: a, baby: a, baidu: a, banamex: a, band: a, bank: a, bar: a, barcelona: a, barclaycard: a, barclays: a, barefoot: a, bargains: a, baseball: a, basketball: [1, { aus: e, nz: e }], bauhaus: a, bayern: a, bbc: a, bbt: a, bbva: a, bcg: a, bcn: a, beats: a, beauty: a, beer: a, bentley: a, berlin: a, best: a, bestbuy: a, bet: a, bharti: a, bible: a, bid: a, bike: a, bing: a, bingo: a, bio: a, black: a, blackfriday: a, blockbuster: a, blog: a, bloomberg: a, blue: a, bms: a, bmw: a, bnpparibas: a, boats: a, boehringer: a, bofa: a, bom: a, bond: a, boo: a, book: a, booking: a, bosch: a, bostik: a, boston: a, bot: a, boutique: a, box: a, bradesco: a, bridgestone: a, broadway: a, broker: a, brother: a, brussels: a, build: [1, { v0: e }], builders: [1, { cloudsite: e }], business: b, buy: a, buzz: a, bzh: a, cab: a, cafe: a, cal: a, call: a, calvinklein: a, cam: a, camera: a, camp: [1, { emf: [0, { at: e }] }], canon: a, capetown: a, capital: a, capitalone: a, car: a, caravan: a, cards: a, care: a, career: a, careers: a, cars: a, casa: [1, { nabu: [0, { ui: e }] }], case: a, cash: a, casino: a, catering: a, catholic: a, cba: a, cbn: a, cbre: a, center: a, ceo: a, cern: a, cfa: a, cfd: a, chanel: a, channel: a, charity: a, chase: a, chat: a, cheap: a, chintai: a, christmas: a, chrome: a, church: a, cipriani: a, circle: a, cisco: a, citadel: a, citi: a, citic: a, city: a, claims: a, cleaning: a, click: a, clinic: a, clinique: a, clothing: a, cloud: [1, { elementor: e, encoway: [0, { eu: e }], statics: o, ravendb: e, axarnet: [0, { "es-1": e }], diadem: e, jelastic: [0, { vip: e }], jele: e, "jenv-aruba": [0, { aruba: [0, { eur: [0, { it1: e }] }], it1: e }], keliweb: [2, { cs: e }], oxa: [2, { tn: e, uk: e }], primetel: [2, { uk: e }], reclaim: [0, { ca: e, uk: e, us: e }], trendhosting: [0, { ch: e, de: e }], jotelulu: e, kuleuven: e, linkyard: e, magentosite: o, matlab: e, observablehq: e, perspecta: e, vapor: e, "on-rancher": o, scw: [0, { baremetal: [0, { "fr-par-1": e, "fr-par-2": e, "nl-ams-1": e }], "fr-par": [0, { cockpit: e, fnc: [2, { functions: e }], k8s: v, s3: e, "s3-website": e, whm: e }], instances: [0, { priv: e, pub: e }], k8s: e, "nl-ams": [0, { cockpit: e, k8s: v, s3: e, "s3-website": e, whm: e }], "pl-waw": [0, { cockpit: e, k8s: v, s3: e, "s3-website": e }], scalebook: e, smartlabeling: e }], servebolt: e, onstackit: [0, { runs: e }], trafficplex: e, "unison-services": e, urown: e, voorloper: e, zap: e }], club: [1, { cloudns: e, jele: e, barsy: e }], clubmed: a, coach: a, codes: [1, { owo: o }], coffee: a, college: a, cologne: a, commbank: a, community: [1, { nog: e, ravendb: e, myforum: e }], company: a, compare: a, computer: a, comsec: a, condos: a, construction: a, consulting: a, contact: a, contractors: a, cooking: a, cool: [1, { elementor: e, de: e }], corsica: a, country: a, coupon: a, coupons: a, courses: a, cpa: a, credit: a, creditcard: a, creditunion: a, cricket: a, crown: a, crs: a, cruise: a, cruises: a, cuisinella: a, cymru: a, cyou: a, dad: a, dance: a, data: a, date: a, dating: a, datsun: a, day: a, dclk: a, dds: a, deal: a, dealer: a, deals: a, degree: a, delivery: a, dell: a, deloitte: a, delta: a, democrat: a, dental: a, dentist: a, desi: a, design: [1, { graphic: e, bss: e }], dev: [1, { "12chars": e, myaddr: e, panel: e, lcl: o, lclstage: o, stg: o, stgstage: o, pages: e, r2: e, workers: e, curv: e, deno: e, "deno-staging": e, deta: e, evervault: t, fly: e, githubpreview: e, gateway: o, hrsn: e, "is-a-good": e, "is-a": e, iserv: e, runcontainers: e, localcert: [0, { user: o }], loginline: e, barsy: e, mediatech: e, modx: e, ngrok: e, "ngrok-free": e, "is-a-fullstack": e, "is-cool": e, "is-not-a": e, localplayer: e, xmit: e, "platter-app": e, replit: [2, { archer: e, bones: e, canary: e, global: e, hacker: e, id: e, janeway: e, kim: e, kira: e, kirk: e, odo: e, paris: e, picard: e, pike: e, prerelease: e, reed: e, riker: e, sisko: e, spock: e, staging: e, sulu: e, tarpit: e, teams: e, tucker: e, wesley: e, worf: e }], crm: [0, { d: o, w: o, wa: o, wb: o, wc: o, wd: o, we: o, wf: o }], vercel: e, webhare: o }], dhl: a, diamonds: a, diet: a, digital: [1, { cloudapps: [2, { london: e }] }], direct: [1, { libp2p: e }], directory: a, discount: a, discover: a, dish: a, diy: a, dnp: a, docs: a, doctor: a, dog: a, domains: a, dot: a, download: a, drive: a, dtv: a, dubai: a, dunlop: a, dupont: a, durban: a, dvag: a, dvr: a, earth: a, eat: a, eco: a, edeka: a, education: b, email: [1, { crisp: [0, { on: e }], tawk: ma, tawkto: ma }], emerck: a, energy: a, engineer: a, engineering: a, enterprises: a, epson: a, equipment: a, ericsson: a, erni: a, esq: a, estate: [1, { compute: o }], eurovision: a, eus: [1, { party: ga }], events: [1, { koobin: e, co: e }], exchange: a, expert: a, exposed: a, express: a, extraspace: a, fage: a, fail: a, fairwinds: a, faith: a, family: a, fan: a, fans: a, farm: [1, { storj: e }], farmers: a, fashion: a, fast: a, fedex: a, feedback: a, ferrari: a, ferrero: a, fidelity: a, fido: a, film: a, final: a, finance: a, financial: b, fire: a, firestone: a, firmdale: a, fish: a, fishing: a, fit: a, fitness: a, flickr: a, flights: a, flir: a, florist: a, flowers: a, fly: a, foo: a, food: a, football: a, ford: a, forex: a, forsale: a, forum: a, foundation: a, fox: a, free: a, fresenius: a, frl: a, frogans: a, frontier: a, ftr: a, fujitsu: a, fun: a, fund: a, furniture: a, futbol: a, fyi: a, gal: a, gallery: a, gallo: a, gallup: a, game: a, games: [1, { pley: e, sheezy: e }], gap: a, garden: a, gay: [1, { pages: e }], gbiz: a, gdn: [1, { cnpy: e }], gea: a, gent: a, genting: a, george: a, ggee: a, gift: a, gifts: a, gives: a, giving: a, glass: a, gle: a, global: a, globo: a, gmail: a, gmbh: a, gmo: a, gmx: a, godaddy: a, gold: a, goldpoint: a, golf: a, goo: a, goodyear: a, goog: [1, { cloud: e, translate: e, usercontent: o }], google: a, gop: a, got: a, grainger: a, graphics: a, gratis: a, green: a, gripe: a, grocery: a, group: [1, { discourse: e }], gucci: a, guge: a, guide: a, guitars: a, guru: a, hair: a, hamburg: a, hangout: a, haus: a, hbo: a, hdfc: a, hdfcbank: a, health: [1, { hra: e }], healthcare: a, help: a, helsinki: a, here: a, hermes: a, hiphop: a, hisamitsu: a, hitachi: a, hiv: a, hkt: a, hockey: a, holdings: a, holiday: a, homedepot: a, homegoods: a, homes: a, homesense: a, honda: a, horse: a, hospital: a, host: [1, { cloudaccess: e, freesite: e, easypanel: e, fastvps: e, myfast: e, tempurl: e, wpmudev: e, jele: e, mircloud: e, wp2: e, half: e }], hosting: [1, { opencraft: e }], hot: a, hotels: a, hotmail: a, house: a, how: a, hsbc: a, hughes: a, hyatt: a, hyundai: a, ibm: a, icbc: a, ice: a, icu: a, ieee: a, ifm: a, ikano: a, imamat: a, imdb: a, immo: a, immobilien: a, inc: a, industries: a, infiniti: a, ing: a, ink: a, institute: a, insurance: a, insure: a, international: a, intuit: a, investments: a, ipiranga: a, irish: a, ismaili: a, ist: a, istanbul: a, itau: a, itv: a, jaguar: a, java: a, jcb: a, jeep: a, jetzt: a, jewelry: a, jio: a, jll: a, jmp: a, jnj: a, joburg: a, jot: a, joy: a, jpmorgan: a, jprs: a, juegos: a, juniper: a, kaufen: a, kddi: a, kerryhotels: a, kerrylogistics: a, kerryproperties: a, kfh: a, kia: a, kids: a, kim: a, kindle: a, kitchen: a, kiwi: a, koeln: a, komatsu: a, kosher: a, kpmg: a, kpn: a, krd: [1, { co: e, edu: e }], kred: a, kuokgroup: a, kyoto: a, lacaixa: a, lamborghini: a, lamer: a, lancaster: a, land: a, landrover: a, lanxess: a, lasalle: a, lat: a, latino: a, latrobe: a, law: a, lawyer: a, lds: a, lease: a, leclerc: a, lefrak: a, legal: a, lego: a, lexus: a, lgbt: a, lidl: a, life: a, lifeinsurance: a, lifestyle: a, lighting: a, like: a, lilly: a, limited: a, limo: a, lincoln: a, link: [1, { myfritz: e, cyon: e, dweb: o, nftstorage: [0, { ipfs: e }], mypep: e }], lipsy: a, live: [1, { aem: e, hlx: e, ewp: o }], living: a, llc: a, llp: a, loan: a, loans: a, locker: a, locus: a, lol: [1, { omg: e }], london: a, lotte: a, lotto: a, love: a, lpl: a, lplfinancial: a, ltd: a, ltda: a, lundbeck: a, luxe: a, luxury: a, madrid: a, maif: a, maison: a, makeup: a, man: a, management: [1, { router: e }], mango: a, map: a, market: a, marketing: a, markets: a, marriott: a, marshalls: a, mattel: a, mba: a, mckinsey: a, med: a, media: M, meet: a, melbourne: a, meme: a, memorial: a, men: a, menu: [1, { barsy: e, barsyonline: e }], merck: a, merckmsd: a, miami: a, microsoft: a, mini: a, mint: a, mit: a, mitsubishi: a, mlb: a, mls: a, mma: a, mobile: a, moda: a, moe: a, moi: a, mom: [1, { ind: e }], monash: a, money: a, monster: a, mormon: a, mortgage: a, moscow: a, moto: a, motorcycles: a, mov: a, movie: a, msd: a, mtn: a, mtr: a, music: a, nab: a, nagoya: a, navy: a, nba: a, nec: a, netbank: a, netflix: a, network: [1, { alces: o, co: e, arvo: e, azimuth: e, tlon: e }], neustar: a, new: a, news: [1, { noticeable: e }], next: a, nextdirect: a, nexus: a, nfl: a, ngo: a, nhk: a, nico: a, nike: a, nikon: a, ninja: a, nissan: a, nissay: a, nokia: a, norton: a, now: a, nowruz: a, nowtv: a, nra: a, nrw: a, ntt: a, nyc: a, obi: a, observer: a, office: a, okinawa: a, olayan: a, olayangroup: a, ollo: a, omega: a, one: [1, { kin: o, service: e }], ong: [1, { obl: e }], onl: a, online: [1, { eero: e, "eero-stage": e, websitebuilder: e, barsy: e }], ooo: a, open: a, oracle: a, orange: [1, { tech: e }], organic: a, origins: a, osaka: a, otsuka: a, ott: a, ovh: [1, { nerdpol: e }], page: [1, { aem: e, hlx: e, hlx3: e, translated: e, codeberg: e, heyflow: e, prvcy: e, rocky: e, pdns: e, plesk: e }], panasonic: a, paris: a, pars: a, partners: a, parts: a, party: a, pay: a, pccw: a, pet: a, pfizer: a, pharmacy: a, phd: a, philips: a, phone: a, photo: a, photography: a, photos: M, physio: a, pics: a, pictet: a, pictures: [1, { 1337: e }], pid: a, pin: a, ping: a, pink: a, pioneer: a, pizza: [1, { ngrok: e }], place: b, play: a, playstation: a, plumbing: a, plus: a, pnc: a, pohl: a, poker: a, politie: a, porn: a, pramerica: a, praxi: a, press: a, prime: a, prod: a, productions: a, prof: a, progressive: a, promo: a, properties: a, property: a, protection: a, pru: a, prudential: a, pub: [1, { id: o, kin: o, barsy: e }], pwc: a, qpon: a, quebec: a, quest: a, racing: a, radio: a, read: a, realestate: a, realtor: a, realty: a, recipes: a, red: a, redstone: a, redumbrella: a, rehab: a, reise: a, reisen: a, reit: a, reliance: a, ren: a, rent: a, rentals: a, repair: a, report: a, republican: a, rest: a, restaurant: a, review: a, reviews: a, rexroth: a, rich: a, richardli: a, ricoh: a, ril: a, rio: a, rip: [1, { clan: e }], rocks: [1, { myddns: e, stackit: e, "lima-city": e, webspace: e }], rodeo: a, rogers: a, room: a, rsvp: a, rugby: a, ruhr: a, run: [1, { development: e, ravendb: e, servers: e, build: o, code: o, database: o, migration: o, onporter: e, repl: e, stackit: e, val: [0, { express: e, web: e }], wix: e }], rwe: a, ryukyu: a, saarland: a, safe: a, safety: a, sakura: a, sale: a, salon: a, samsclub: a, samsung: a, sandvik: a, sandvikcoromant: a, sanofi: a, sap: a, sarl: a, sas: a, save: a, saxo: a, sbi: a, sbs: a, scb: a, schaeffler: a, schmidt: a, scholarships: a, school: a, schule: a, schwarz: a, science: a, scot: [1, { gov: [2, { service: e }] }], search: a, seat: a, secure: a, security: a, seek: a, select: a, sener: a, services: [1, { loginline: e }], seven: a, sew: a, sex: a, sexy: a, sfr: a, shangrila: a, sharp: a, shell: a, shia: a, shiksha: a, shoes: a, shop: [1, { base: e, hoplix: e, barsy: e, barsyonline: e, shopware: e }], shopping: a, shouji: a, show: a, silk: a, sina: a, singles: a, site: [1, { canva: x, cloudera: o, convex: e, cyon: e, fastvps: e, heyflow: e, jele: e, jouwweb: e, loginline: e, barsy: e, notion: e, omniwe: e, opensocial: e, madethis: e, platformsh: o, tst: o, byen: e, srht: e, novecore: e, wpsquared: e }], ski: a, skin: a, sky: a, skype: a, sling: a, smart: a, smile: a, sncf: a, soccer: a, social: a, softbank: a, software: a, sohu: a, solar: a, solutions: [1, { diher: e }], song: a, sony: a, soy: a, spa: a, space: [1, { myfast: e, heiyu: e, hf: [2, { static: e }], "app-ionos": e, project: e, uber: e, xs4all: e }], sport: a, spot: a, srl: a, stada: a, staples: a, star: a, statebank: a, statefarm: a, stc: a, stcgroup: a, stockholm: a, storage: a, store: [1, { barsy: e, sellfy: e, shopware: e, storebase: e }], stream: a, studio: a, study: a, style: a, sucks: a, supplies: a, supply: a, support: [1, { barsy: e }], surf: a, surgery: a, suzuki: a, swatch: a, swiss: a, sydney: a, systems: [1, { knightpoint: e }], tab: a, taipei: a, talk: a, taobao: a, target: a, tatamotors: a, tatar: a, tattoo: a, tax: a, taxi: a, tci: a, tdk: a, team: [1, { discourse: e, jelastic: e }], tech: [1, { cleverapps: e }], technology: b, temasek: a, tennis: a, teva: a, thd: a, theater: a, theatre: a, tiaa: a, tickets: a, tienda: a, tips: a, tires: a, tirol: a, tjmaxx: a, tjx: a, tkmaxx: a, tmall: a, today: [1, { prequalifyme: e }], tokyo: a, tools: [1, { addr: ua, myaddr: e }], top: [1, { "now-dns": e, ntdll: e, wadl: o }], toray: a, toshiba: a, total: a, tours: a, town: a, toyota: a, toys: a, trade: a, trading: a, training: a, travel: a, travelers: a, travelersinsurance: a, trust: a, trv: a, tube: a, tui: a, tunes: a, tushu: a, tvs: a, ubank: a, ubs: a, unicom: a, university: a, uno: a, uol: a, ups: a, vacations: a, vana: a, vanguard: a, vegas: a, ventures: a, verisign: a, versicherung: a, vet: a, viajes: a, video: a, vig: a, viking: a, villas: a, vin: a, vip: a, virgin: a, visa: a, vision: a, viva: a, vivo: a, vlaanderen: a, vodka: a, volvo: a, vote: a, voting: a, voto: a, voyage: a, wales: a, walmart: a, walter: a, wang: a, wanggou: a, watch: a, watches: a, weather: a, weatherchannel: a, webcam: a, weber: a, website: M, wed: a, wedding: a, weibo: a, weir: a, whoswho: a, wien: a, wiki: M, williamhill: a, win: a, windows: a, wine: a, winners: a, wme: a, wolterskluwer: a, woodside: a, work: a, works: a, world: a, wow: a, wtc: a, wtf: a, xbox: a, xerox: a, xihuan: a, xin: a, "xn--11b4c3d": a, कॉम: a, "xn--1ck2e1b": a, セール: a, "xn--1qqw23a": a, 佛山: a, "xn--30rr7y": a, 慈善: a, "xn--3bst00m": a, 集团: a, "xn--3ds443g": a, 在线: a, "xn--3pxu8k": a, 点看: a, "xn--42c2d9a": a, คอม: a, "xn--45q11c": a, 八卦: a, "xn--4gbrim": a, موقع: a, "xn--55qw42g": a, 公益: a, "xn--55qx5d": a, 公司: a, "xn--5su34j936bgsg": a, 香格里拉: a, "xn--5tzm5g": a, 网站: a, "xn--6frz82g": a, 移动: a, "xn--6qq986b3xl": a, 我爱你: a, "xn--80adxhks": a, москва: a, "xn--80aqecdr1a": a, католик: a, "xn--80asehdb": a, онлайн: a, "xn--80aswg": a, сайт: a, "xn--8y0a063a": a, 联通: a, "xn--9dbq2a": a, קום: a, "xn--9et52u": a, 时尚: a, "xn--9krt00a": a, 微博: a, "xn--b4w605ferd": a, 淡马锡: a, "xn--bck1b9a5dre4c": a, ファッション: a, "xn--c1avg": a, орг: a, "xn--c2br7g": a, नेट: a, "xn--cck2b3b": a, ストア: a, "xn--cckwcxetd": a, アマゾン: a, "xn--cg4bki": a, 삼성: a, "xn--czr694b": a, 商标: a, "xn--czrs0t": a, 商店: a, "xn--czru2d": a, 商城: a, "xn--d1acj3b": a, дети: a, "xn--eckvdtc9d": a, ポイント: a, "xn--efvy88h": a, 新闻: a, "xn--fct429k": a, 家電: a, "xn--fhbei": a, كوم: a, "xn--fiq228c5hs": a, 中文网: a, "xn--fiq64b": a, 中信: a, "xn--fjq720a": a, 娱乐: a, "xn--flw351e": a, 谷歌: a, "xn--fzys8d69uvgm": a, 電訊盈科: a, "xn--g2xx48c": a, 购物: a, "xn--gckr3f0f": a, クラウド: a, "xn--gk3at1e": a, 通販: a, "xn--hxt814e": a, 网店: a, "xn--i1b6b1a6a2e": a, संगठन: a, "xn--imr513n": a, 餐厅: a, "xn--io0a7i": a, 网络: a, "xn--j1aef": a, ком: a, "xn--jlq480n2rg": a, 亚马逊: a, "xn--jvr189m": a, 食品: a, "xn--kcrx77d1x4a": a, 飞利浦: a, "xn--kput3i": a, 手机: a, "xn--mgba3a3ejt": a, ارامكو: a, "xn--mgba7c0bbn0a": a, العليان: a, "xn--mgbab2bd": a, بازار: a, "xn--mgbca7dzdo": a, ابوظبي: a, "xn--mgbi4ecexp": a, كاثوليك: a, "xn--mgbt3dhd": a, همراه: a, "xn--mk1bu44c": a, 닷컴: a, "xn--mxtq1m": a, 政府: a, "xn--ngbc5azd": a, شبكة: a, "xn--ngbe9e0a": a, بيتك: a, "xn--ngbrx": a, عرب: a, "xn--nqv7f": a, 机构: a, "xn--nqv7fs00ema": a, 组织机构: a, "xn--nyqy26a": a, 健康: a, "xn--otu796d": a, 招聘: a, "xn--p1acf": [1, { "xn--90amc": e, "xn--j1aef": e, "xn--j1ael8b": e, "xn--h1ahn": e, "xn--j1adp": e, "xn--c1avg": e, "xn--80aaa0cvac": e, "xn--h1aliz": e, "xn--90a1af": e, "xn--41a": e }], рус: [1, { биз: e, ком: e, крым: e, мир: e, мск: e, орг: e, самара: e, сочи: e, спб: e, я: e }], "xn--pssy2u": a, 大拿: a, "xn--q9jyb4c": a, みんな: a, "xn--qcka1pmc": a, グーグル: a, "xn--rhqv96g": a, 世界: a, "xn--rovu88b": a, 書籍: a, "xn--ses554g": a, 网址: a, "xn--t60b56a": a, 닷넷: a, "xn--tckwe": a, コム: a, "xn--tiq49xqyj": a, 天主教: a, "xn--unup4y": a, 游戏: a, "xn--vermgensberater-ctb": a, vermögensberater: a, "xn--vermgensberatung-pwb": a, vermögensberatung: a, "xn--vhquv": a, 企业: a, "xn--vuq861b": a, 信息: a, "xn--w4r85el8fhu5dnra": a, 嘉里大酒店: a, "xn--w4rs40l": a, 嘉里: a, "xn--xhq521b": a, 广东: a, "xn--zfr164b": a, 政务: a, xyz: [1, { telebit: o }], yachts: a, yahoo: a, yamaxun: a, yandex: a, yodobashi: a, yoga: a, yokohama: a, you: a, youtube: a, yun: a, zappos: a, zara: a, zero: a, zip: a, zone: [1, { cloud66: e, triton: o, stackit: e, lima: e }], zuerich: a }];
|
|
496
|
+
const Va = /* @__PURE__ */ function() {
|
|
497
|
+
const a = [1, {}], e = [2, {}], i = [0, { city: a }];
|
|
498
|
+
return [0, { ck: [0, { www: a }], jp: [0, { kawasaki: i, kitakyushu: i, kobe: i, nagoya: i, sapporo: i, sendai: i, yokohama: i }], dev: [0, { hrsn: [0, { psl: [0, { wc: [0, { ignored: e, sub: [0, { ignored: e }] }] }] }] }] }];
|
|
499
|
+
}(), Ga = /* @__PURE__ */ function() {
|
|
500
|
+
const a = [1, {}], e = [2, {}], i = [1, { com: a, edu: a, gov: a, net: a, org: a }], n = [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a }], o = [0, { "*": e }], r = [0, { relay: e }], s = [2, { id: e }], l = [1, { gov: a }], h = [0, { "transfer-webapp": e }], c = [0, { notebook: e, studio: e }], t = [0, { labeling: e, notebook: e, studio: e }], b = [0, { notebook: e }], u = [0, { labeling: e, notebook: e, "notebook-fips": e, studio: e }], g = [0, { notebook: e, "notebook-fips": e, studio: e, "studio-fips": e }], p = [0, { "*": a }], y = [1, { co: e }], v = [0, { objects: e }], x = [2, { nodes: e }], z = [0, { my: o }], q = [0, { s3: e, "s3-accesspoint": e, "s3-website": e }], na = [0, { s3: e, "s3-accesspoint": e }], sa = [0, { direct: e }], j = [0, { "webview-assets": e }], S = [0, { vfs: e, "webview-assets": e }], N = [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: q, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e, "aws-cloud9": j, cloud9: S }], A = [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: na, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e, "aws-cloud9": j, cloud9: S }], $ = [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: q, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e, "analytics-gateway": e, "aws-cloud9": j, cloud9: S }], D = [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: q, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e }], P = [0, { s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-fips": e, "s3-website": e }], ta = [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: P, s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-fips": e, "s3-object-lambda": e, "s3-website": e, "aws-cloud9": j, cloud9: S }], ra = [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: P, s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-deprecated": e, "s3-fips": e, "s3-object-lambda": e, "s3-website": e, "analytics-gateway": e, "aws-cloud9": j, cloud9: S }], ca = [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: [0, { s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-fips": e }], s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-fips": e, "s3-object-lambda": e, "s3-website": e }], f = [0, { auth: e }], M = [0, { auth: e, "auth-fips": e }], ua = [0, { apps: e }], R = [0, { paas: e }], la = [2, { eu: e }], F = [0, { app: e }], J = [0, { site: e }], U = [1, { com: a, edu: a, net: a, org: a }], W = [0, { j: e }], da = [0, { dyn: e }], ma = [1, { co: a, com: a, edu: a, gov: a, net: a, org: a }], ga = [0, { p: e }], ha = [0, { user: e }], pa = [0, { shop: e }], Q = [0, { cust: e, reservd: e }], ka = [0, { cust: e }], B = [0, { s3: e }], ba = [1, { biz: a, com: a, edu: a, gov: a, info: a, net: a, org: a }], O = [1, { framer: e }], ya = [0, { forgot: e }], H = [0, { cdn: e }], w = [1, { gs: a }], fa = [0, { nes: a }], d = [1, { k12: a, cc: a, lib: a }], L = [1, { cc: a, lib: a }];
|
|
501
|
+
return [0, { ac: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, drr: e, feedback: e, forms: e }], ad: a, ae: [1, { ac: a, co: a, gov: a, mil: a, net: a, org: a, sch: a }], aero: [1, { airline: a, airport: a, "accident-investigation": a, "accident-prevention": a, aerobatic: a, aeroclub: a, aerodrome: a, agents: a, "air-surveillance": a, "air-traffic-control": a, aircraft: a, airtraffic: a, ambulance: a, association: a, author: a, ballooning: a, broker: a, caa: a, cargo: a, catering: a, certification: a, championship: a, charter: a, civilaviation: a, club: a, conference: a, consultant: a, consulting: a, control: a, council: a, crew: a, design: a, dgca: a, educator: a, emergency: a, engine: a, engineer: a, entertainment: a, equipment: a, exchange: a, express: a, federation: a, flight: a, freight: a, fuel: a, gliding: a, government: a, groundhandling: a, group: a, hanggliding: a, homebuilt: a, insurance: a, journal: a, journalist: a, leasing: a, logistics: a, magazine: a, maintenance: a, marketplace: a, media: a, microlight: a, modelling: a, navigation: a, parachuting: a, paragliding: a, "passenger-association": a, pilot: a, press: a, production: a, recreation: a, repbody: a, res: a, research: a, rotorcraft: a, safety: a, scientist: a, services: a, show: a, skydiving: a, software: a, student: a, taxi: a, trader: a, trading: a, trainer: a, union: a, workinggroup: a, works: a }], af: i, ag: [1, { co: a, com: a, net: a, nom: a, org: a }], ai: [1, { com: a, net: a, off: a, org: a, uwu: e, framer: e }], al: n, am: [1, { co: a, com: a, commune: a, net: a, org: a, radio: e }], ao: [1, { co: a, ed: a, edu: a, gov: a, gv: a, it: a, og: a, org: a, pb: a }], aq: a, ar: [1, { bet: a, com: a, coop: a, edu: a, gob: a, gov: a, int: a, mil: a, musica: a, mutual: a, net: a, org: a, senasa: a, tur: a }], arpa: [1, { e164: a, home: a, "in-addr": a, ip6: a, iris: a, uri: a, urn: a }], as: l, asia: [1, { cloudns: e, daemon: e, dix: e }], at: [1, { ac: [1, { sth: a }], co: a, gv: a, or: a, funkfeuer: [0, { wien: e }], futurecms: [0, { "*": e, ex: o, in: o }], futurehosting: e, futuremailing: e, ortsinfo: [0, { ex: o, kunden: o }], biz: e, info: e, "123webseite": e, priv: e, myspreadshop: e, "12hp": e, "2ix": e, "4lima": e, "lima-city": e }], au: [1, { asn: a, com: [1, { cloudlets: [0, { mel: e }], myspreadshop: e }], edu: [1, { act: a, catholic: a, nsw: [1, { schools: a }], nt: a, qld: a, sa: a, tas: a, vic: a, wa: a }], gov: [1, { qld: a, sa: a, tas: a, vic: a, wa: a }], id: a, net: a, org: a, conf: a, oz: a, act: a, nsw: a, nt: a, qld: a, sa: a, tas: a, vic: a, wa: a }], aw: [1, { com: a }], ax: a, az: [1, { biz: a, co: a, com: a, edu: a, gov: a, info: a, int: a, mil: a, name: a, net: a, org: a, pp: a, pro: a }], ba: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, rs: e }], bb: [1, { biz: a, co: a, com: a, edu: a, gov: a, info: a, net: a, org: a, store: a, tv: a }], bd: p, be: [1, { ac: a, cloudns: e, webhosting: e, interhostsolutions: [0, { cloud: e }], kuleuven: [0, { ezproxy: e }], "123website": e, myspreadshop: e, transurl: o }], bf: l, bg: [1, { 0: a, 1: a, 2: a, 3: a, 4: a, 5: a, 6: a, 7: a, 8: a, 9: a, a, b: a, c: a, d: a, e: a, f: a, g: a, h: a, i: a, j: a, k: a, l: a, m: a, n: a, o: a, p: a, q: a, r: a, s: a, t: a, u: a, v: a, w: a, x: a, y: a, z: a, barsy: e }], bh: i, bi: [1, { co: a, com: a, edu: a, or: a, org: a }], biz: [1, { activetrail: e, "cloud-ip": e, cloudns: e, jozi: e, dyndns: e, "for-better": e, "for-more": e, "for-some": e, "for-the": e, selfip: e, webhop: e, orx: e, mmafan: e, myftp: e, "no-ip": e, dscloud: e }], bj: [1, { africa: a, agro: a, architectes: a, assur: a, avocats: a, co: a, com: a, eco: a, econo: a, edu: a, info: a, loisirs: a, money: a, net: a, org: a, ote: a, restaurant: a, resto: a, tourism: a, univ: a }], bm: i, bn: [1, { com: a, edu: a, gov: a, net: a, org: a, co: e }], bo: [1, { com: a, edu: a, gob: a, int: a, mil: a, net: a, org: a, tv: a, web: a, academia: a, agro: a, arte: a, blog: a, bolivia: a, ciencia: a, cooperativa: a, democracia: a, deporte: a, ecologia: a, economia: a, empresa: a, indigena: a, industria: a, info: a, medicina: a, movimiento: a, musica: a, natural: a, nombre: a, noticias: a, patria: a, plurinacional: a, politica: a, profesional: a, pueblo: a, revista: a, salud: a, tecnologia: a, tksat: a, transporte: a, wiki: a }], br: [1, { "9guacu": a, abc: a, adm: a, adv: a, agr: a, aju: a, am: a, anani: a, aparecida: a, app: a, arq: a, art: a, ato: a, b: a, barueri: a, belem: a, bet: a, bhz: a, bib: a, bio: a, blog: a, bmd: a, boavista: a, bsb: a, campinagrande: a, campinas: a, caxias: a, cim: a, cng: a, cnt: a, com: [1, { simplesite: e }], contagem: a, coop: a, coz: a, cri: a, cuiaba: a, curitiba: a, def: a, des: a, det: a, dev: a, ecn: a, eco: a, edu: a, emp: a, enf: a, eng: a, esp: a, etc: a, eti: a, far: a, feira: a, flog: a, floripa: a, fm: a, fnd: a, fortal: a, fot: a, foz: a, fst: a, g12: a, geo: a, ggf: a, goiania: a, gov: [1, { ac: a, al: a, am: a, ap: a, ba: a, ce: a, df: a, es: a, go: a, ma: a, mg: a, ms: a, mt: a, pa: a, pb: a, pe: a, pi: a, pr: a, rj: a, rn: a, ro: a, rr: a, rs: a, sc: a, se: a, sp: a, to: a }], gru: a, imb: a, ind: a, inf: a, jab: a, jampa: a, jdf: a, joinville: a, jor: a, jus: a, leg: [1, { ac: e, al: e, am: e, ap: e, ba: e, ce: e, df: e, es: e, go: e, ma: e, mg: e, ms: e, mt: e, pa: e, pb: e, pe: e, pi: e, pr: e, rj: e, rn: e, ro: e, rr: e, rs: e, sc: e, se: e, sp: e, to: e }], leilao: a, lel: a, log: a, londrina: a, macapa: a, maceio: a, manaus: a, maringa: a, mat: a, med: a, mil: a, morena: a, mp: a, mus: a, natal: a, net: a, niteroi: a, nom: p, not: a, ntr: a, odo: a, ong: a, org: a, osasco: a, palmas: a, poa: a, ppg: a, pro: a, psc: a, psi: a, pvh: a, qsl: a, radio: a, rec: a, recife: a, rep: a, ribeirao: a, rio: a, riobranco: a, riopreto: a, salvador: a, sampa: a, santamaria: a, santoandre: a, saobernardo: a, saogonca: a, seg: a, sjc: a, slg: a, slz: a, sorocaba: a, srv: a, taxi: a, tc: a, tec: a, teo: a, the: a, tmp: a, trd: a, tur: a, tv: a, udi: a, vet: a, vix: a, vlog: a, wiki: a, zlg: a }], bs: [1, { com: a, edu: a, gov: a, net: a, org: a, we: e }], bt: i, bv: a, bw: [1, { ac: a, co: a, gov: a, net: a, org: a }], by: [1, { gov: a, mil: a, com: a, of: a, mediatech: e }], bz: [1, { co: a, com: a, edu: a, gov: a, net: a, org: a, za: e, mydns: e, gsj: e }], ca: [1, { ab: a, bc: a, mb: a, nb: a, nf: a, nl: a, ns: a, nt: a, nu: a, on: a, pe: a, qc: a, sk: a, yk: a, gc: a, barsy: e, awdev: o, co: e, "no-ip": e, myspreadshop: e, box: e }], cat: a, cc: [1, { cleverapps: e, cloudns: e, ftpaccess: e, "game-server": e, myphotos: e, scrapping: e, twmail: e, csx: e, fantasyleague: e, spawn: [0, { instances: e }] }], cd: l, cf: a, cg: a, ch: [1, { square7: e, cloudns: e, cloudscale: [0, { cust: e, lpg: v, rma: v }], flow: [0, { ae: [0, { alp1: e }], appengine: e }], "linkyard-cloud": e, gotdns: e, dnsking: e, "123website": e, myspreadshop: e, firenet: [0, { "*": e, svc: o }], "12hp": e, "2ix": e, "4lima": e, "lima-city": e }], ci: [1, { ac: a, "xn--aroport-bya": a, aéroport: a, asso: a, co: a, com: a, ed: a, edu: a, go: a, gouv: a, int: a, net: a, or: a, org: a }], ck: p, cl: [1, { co: a, gob: a, gov: a, mil: a, cloudns: e }], cm: [1, { co: a, com: a, gov: a, net: a }], cn: [1, { ac: a, com: [1, { amazonaws: [0, { "cn-north-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: q, s3: e, "s3-accesspoint": e, "s3-deprecated": e, "s3-object-lambda": e, "s3-website": e }], "cn-northwest-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: na, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e }], compute: o, airflow: [0, { "cn-north-1": o, "cn-northwest-1": o }], eb: [0, { "cn-north-1": e, "cn-northwest-1": e }], elb: o }], sagemaker: [0, { "cn-north-1": c, "cn-northwest-1": c }] }], edu: a, gov: a, mil: a, net: a, org: a, "xn--55qx5d": a, 公司: a, "xn--od0alg": a, 網絡: a, "xn--io0a7i": a, 网络: a, ah: a, bj: a, cq: a, fj: a, gd: a, gs: a, gx: a, gz: a, ha: a, hb: a, he: a, hi: a, hk: a, hl: a, hn: a, jl: a, js: a, jx: a, ln: a, mo: a, nm: a, nx: a, qh: a, sc: a, sd: a, sh: [1, { as: e }], sn: a, sx: a, tj: a, tw: a, xj: a, xz: a, yn: a, zj: a, "canva-apps": e, canvasite: z, myqnapcloud: e, quickconnect: sa }], co: [1, { com: a, edu: a, gov: a, mil: a, net: a, nom: a, org: a, carrd: e, crd: e, otap: o, leadpages: e, lpages: e, mypi: e, xmit: o, firewalledreplit: s, repl: s, supabase: e }], com: [1, { a2hosted: e, cpserver: e, adobeaemcloud: [2, { dev: o }], africa: e, airkitapps: e, "airkitapps-au": e, aivencloud: e, kasserver: e, amazonaws: [0, { "af-south-1": N, "ap-east-1": A, "ap-northeast-1": $, "ap-northeast-2": $, "ap-northeast-3": N, "ap-south-1": $, "ap-south-2": D, "ap-southeast-1": $, "ap-southeast-2": $, "ap-southeast-3": D, "ap-southeast-4": D, "ap-southeast-5": [0, { "execute-api": e, dualstack: q, s3: e, "s3-accesspoint": e, "s3-deprecated": e, "s3-object-lambda": e, "s3-website": e }], "ca-central-1": ta, "ca-west-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: P, s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-fips": e, "s3-object-lambda": e, "s3-website": e }], "eu-central-1": $, "eu-central-2": D, "eu-north-1": A, "eu-south-1": N, "eu-south-2": D, "eu-west-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: q, s3: e, "s3-accesspoint": e, "s3-deprecated": e, "s3-object-lambda": e, "s3-website": e, "analytics-gateway": e, "aws-cloud9": j, cloud9: S }], "eu-west-2": A, "eu-west-3": N, "il-central-1": [0, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: q, s3: e, "s3-accesspoint": e, "s3-object-lambda": e, "s3-website": e, "aws-cloud9": j, cloud9: [0, { vfs: e }] }], "me-central-1": D, "me-south-1": A, "sa-east-1": N, "us-east-1": [2, { "execute-api": e, "emrappui-prod": e, "emrnotebooks-prod": e, "emrstudio-prod": e, dualstack: P, s3: e, "s3-accesspoint": e, "s3-accesspoint-fips": e, "s3-deprecated": e, "s3-fips": e, "s3-object-lambda": e, "s3-website": e, "analytics-gateway": e, "aws-cloud9": j, cloud9: S }], "us-east-2": ra, "us-gov-east-1": ca, "us-gov-west-1": ca, "us-west-1": ta, "us-west-2": ra, compute: o, "compute-1": o, airflow: [0, { "af-south-1": o, "ap-east-1": o, "ap-northeast-1": o, "ap-northeast-2": o, "ap-northeast-3": o, "ap-south-1": o, "ap-south-2": o, "ap-southeast-1": o, "ap-southeast-2": o, "ap-southeast-3": o, "ap-southeast-4": o, "ca-central-1": o, "ca-west-1": o, "eu-central-1": o, "eu-central-2": o, "eu-north-1": o, "eu-south-1": o, "eu-south-2": o, "eu-west-1": o, "eu-west-2": o, "eu-west-3": o, "il-central-1": o, "me-central-1": o, "me-south-1": o, "sa-east-1": o, "us-east-1": o, "us-east-2": o, "us-west-1": o, "us-west-2": o }], s3: e, "s3-1": e, "s3-ap-east-1": e, "s3-ap-northeast-1": e, "s3-ap-northeast-2": e, "s3-ap-northeast-3": e, "s3-ap-south-1": e, "s3-ap-southeast-1": e, "s3-ap-southeast-2": e, "s3-ca-central-1": e, "s3-eu-central-1": e, "s3-eu-north-1": e, "s3-eu-west-1": e, "s3-eu-west-2": e, "s3-eu-west-3": e, "s3-external-1": e, "s3-fips-us-gov-east-1": e, "s3-fips-us-gov-west-1": e, "s3-global": [0, { accesspoint: [0, { mrap: e }] }], "s3-me-south-1": e, "s3-sa-east-1": e, "s3-us-east-2": e, "s3-us-gov-east-1": e, "s3-us-gov-west-1": e, "s3-us-west-1": e, "s3-us-west-2": e, "s3-website-ap-northeast-1": e, "s3-website-ap-southeast-1": e, "s3-website-ap-southeast-2": e, "s3-website-eu-west-1": e, "s3-website-sa-east-1": e, "s3-website-us-east-1": e, "s3-website-us-gov-west-1": e, "s3-website-us-west-1": e, "s3-website-us-west-2": e, elb: o }], amazoncognito: [0, { "af-south-1": f, "ap-east-1": f, "ap-northeast-1": f, "ap-northeast-2": f, "ap-northeast-3": f, "ap-south-1": f, "ap-south-2": f, "ap-southeast-1": f, "ap-southeast-2": f, "ap-southeast-3": f, "ap-southeast-4": f, "ca-central-1": f, "ca-west-1": f, "eu-central-1": f, "eu-central-2": f, "eu-north-1": f, "eu-south-1": f, "eu-south-2": f, "eu-west-1": f, "eu-west-2": f, "eu-west-3": f, "il-central-1": f, "me-central-1": f, "me-south-1": f, "sa-east-1": f, "us-east-1": M, "us-east-2": M, "us-gov-west-1": [0, { "auth-fips": e }], "us-west-1": M, "us-west-2": M }], amplifyapp: e, awsapprunner: o, awsapps: e, elasticbeanstalk: [2, { "af-south-1": e, "ap-east-1": e, "ap-northeast-1": e, "ap-northeast-2": e, "ap-northeast-3": e, "ap-south-1": e, "ap-southeast-1": e, "ap-southeast-2": e, "ap-southeast-3": e, "ca-central-1": e, "eu-central-1": e, "eu-north-1": e, "eu-south-1": e, "eu-west-1": e, "eu-west-2": e, "eu-west-3": e, "il-central-1": e, "me-south-1": e, "sa-east-1": e, "us-east-1": e, "us-east-2": e, "us-gov-east-1": e, "us-gov-west-1": e, "us-west-1": e, "us-west-2": e }], awsglobalaccelerator: e, siiites: e, appspacehosted: e, appspaceusercontent: e, "on-aptible": e, myasustor: e, "balena-devices": e, boutir: e, bplaced: e, cafjs: e, "canva-apps": e, "cdn77-storage": e, br: e, cn: e, de: e, eu: e, jpn: e, mex: e, ru: e, sa: e, uk: e, us: e, za: e, "clever-cloud": [0, { services: o }], dnsabr: e, "ip-ddns": e, jdevcloud: e, wpdevcloud: e, "cf-ipfs": e, "cloudflare-ipfs": e, trycloudflare: e, co: e, builtwithdark: e, datadetect: [0, { demo: e, instance: e }], dattolocal: e, dattorelay: e, dattoweb: e, mydatto: e, digitaloceanspaces: o, discordsays: e, discordsez: e, drayddns: e, dreamhosters: e, durumis: e, mydrobo: e, blogdns: e, cechire: e, dnsalias: e, dnsdojo: e, doesntexist: e, dontexist: e, doomdns: e, "dyn-o-saur": e, dynalias: e, "dyndns-at-home": e, "dyndns-at-work": e, "dyndns-blog": e, "dyndns-free": e, "dyndns-home": e, "dyndns-ip": e, "dyndns-mail": e, "dyndns-office": e, "dyndns-pics": e, "dyndns-remote": e, "dyndns-server": e, "dyndns-web": e, "dyndns-wiki": e, "dyndns-work": e, "est-a-la-maison": e, "est-a-la-masion": e, "est-le-patron": e, "est-mon-blogueur": e, "from-ak": e, "from-al": e, "from-ar": e, "from-ca": e, "from-ct": e, "from-dc": e, "from-de": e, "from-fl": e, "from-ga": e, "from-hi": e, "from-ia": e, "from-id": e, "from-il": e, "from-in": e, "from-ks": e, "from-ky": e, "from-ma": e, "from-md": e, "from-mi": e, "from-mn": e, "from-mo": e, "from-ms": e, "from-mt": e, "from-nc": e, "from-nd": e, "from-ne": e, "from-nh": e, "from-nj": e, "from-nm": e, "from-nv": e, "from-oh": e, "from-ok": e, "from-or": e, "from-pa": e, "from-pr": e, "from-ri": e, "from-sc": e, "from-sd": e, "from-tn": e, "from-tx": e, "from-ut": e, "from-va": e, "from-vt": e, "from-wa": e, "from-wi": e, "from-wv": e, "from-wy": e, getmyip: e, gotdns: e, "hobby-site": e, homelinux: e, homeunix: e, iamallama: e, "is-a-anarchist": e, "is-a-blogger": e, "is-a-bookkeeper": e, "is-a-bulls-fan": e, "is-a-caterer": e, "is-a-chef": e, "is-a-conservative": e, "is-a-cpa": e, "is-a-cubicle-slave": e, "is-a-democrat": e, "is-a-designer": e, "is-a-doctor": e, "is-a-financialadvisor": e, "is-a-geek": e, "is-a-green": e, "is-a-guru": e, "is-a-hard-worker": e, "is-a-hunter": e, "is-a-landscaper": e, "is-a-lawyer": e, "is-a-liberal": e, "is-a-libertarian": e, "is-a-llama": e, "is-a-musician": e, "is-a-nascarfan": e, "is-a-nurse": e, "is-a-painter": e, "is-a-personaltrainer": e, "is-a-photographer": e, "is-a-player": e, "is-a-republican": e, "is-a-rockstar": e, "is-a-socialist": e, "is-a-student": e, "is-a-teacher": e, "is-a-techie": e, "is-a-therapist": e, "is-an-accountant": e, "is-an-actor": e, "is-an-actress": e, "is-an-anarchist": e, "is-an-artist": e, "is-an-engineer": e, "is-an-entertainer": e, "is-certified": e, "is-gone": e, "is-into-anime": e, "is-into-cars": e, "is-into-cartoons": e, "is-into-games": e, "is-leet": e, "is-not-certified": e, "is-slick": e, "is-uberleet": e, "is-with-theband": e, "isa-geek": e, "isa-hockeynut": e, issmarterthanyou: e, "likes-pie": e, likescandy: e, "neat-url": e, "saves-the-whales": e, selfip: e, "sells-for-less": e, "sells-for-u": e, servebbs: e, "simple-url": e, "space-to-rent": e, "teaches-yoga": e, writesthisblog: e, ddnsfree: e, ddnsgeek: e, giize: e, gleeze: e, kozow: e, loseyourip: e, ooguy: e, theworkpc: e, mytuleap: e, "tuleap-partners": e, encoreapi: e, evennode: [0, { "eu-1": e, "eu-2": e, "eu-3": e, "eu-4": e, "us-1": e, "us-2": e, "us-3": e, "us-4": e }], onfabrica: e, "fastly-edge": e, "fastly-terrarium": e, "fastvps-server": e, mydobiss: e, firebaseapp: e, fldrv: e, forgeblocks: e, framercanvas: e, "freebox-os": e, freeboxos: e, freemyip: e, aliases121: e, gentapps: e, gentlentapis: e, githubusercontent: e, "0emm": o, appspot: [2, { r: o }], blogspot: e, codespot: e, googleapis: e, googlecode: e, pagespeedmobilizer: e, withgoogle: e, withyoutube: e, grayjayleagues: e, hatenablog: e, hatenadiary: e, herokuapp: e, gr: e, smushcdn: e, wphostedmail: e, wpmucdn: e, pixolino: e, "apps-1and1": e, "live-website": e, dopaas: e, "hosted-by-previder": R, hosteur: [0, { "rag-cloud": e, "rag-cloud-ch": e }], "ik-server": [0, { jcloud: e, "jcloud-ver-jpc": e }], jelastic: [0, { demo: e }], massivegrid: R, wafaicloud: [0, { jed: e, ryd: e }], webadorsite: e, joyent: [0, { cns: o }], lpusercontent: e, linode: [0, { members: e, nodebalancer: o }], linodeobjects: o, linodeusercontent: [0, { ip: e }], barsycenter: e, barsyonline: e, modelscape: e, mwcloudnonprod: e, polyspace: e, mazeplay: e, miniserver: e, atmeta: e, fbsbx: ua, meteorapp: la, routingthecloud: e, mydbserver: e, hostedpi: e, "mythic-beasts": [0, { caracal: e, customer: e, fentiger: e, lynx: e, ocelot: e, oncilla: e, onza: e, sphinx: e, vs: e, x: e, yali: e }], nospamproxy: [0, { cloud: [2, { o365: e }] }], "4u": e, nfshost: e, "3utilities": e, blogsyte: e, ciscofreak: e, damnserver: e, ddnsking: e, ditchyourip: e, dnsiskinky: e, dynns: e, geekgalaxy: e, "health-carereform": e, homesecuritymac: e, homesecuritypc: e, myactivedirectory: e, mysecuritycamera: e, myvnc: e, "net-freaks": e, onthewifi: e, point2this: e, quicksytes: e, securitytactics: e, servebeer: e, servecounterstrike: e, serveexchange: e, serveftp: e, servegame: e, servehalflife: e, servehttp: e, servehumour: e, serveirc: e, servemp3: e, servep2p: e, servepics: e, servequake: e, servesarcasm: e, stufftoread: e, unusualperson: e, workisboring: e, myiphost: e, observableusercontent: [0, { static: e }], simplesite: e, orsites: e, operaunite: e, "customer-oci": [0, { "*": e, oci: o, ocp: o, ocs: o }], oraclecloudapps: o, oraclegovcloudapps: o, "authgear-staging": e, authgearapps: e, skygearapp: e, outsystemscloud: e, ownprovider: e, pgfog: e, pagexl: e, gotpantheon: e, paywhirl: o, upsunapp: e, "postman-echo": e, prgmr: [0, { xen: e }], pythonanywhere: la, qa2: e, "alpha-myqnapcloud": e, "dev-myqnapcloud": e, mycloudnas: e, mynascloud: e, myqnapcloud: e, qualifioapp: e, ladesk: e, qbuser: e, quipelements: o, rackmaze: e, "readthedocs-hosted": e, rhcloud: e, onrender: e, render: F, "subsc-pay": e, "180r": e, dojin: e, sakuratan: e, sakuraweb: e, x0: e, code: [0, { builder: o, "dev-builder": o, "stg-builder": o }], salesforce: [0, { platform: [0, { "code-builder-stg": [0, { test: [0, { "001": o }] }] }] }], logoip: e, scrysec: e, "firewall-gateway": e, myshopblocks: e, myshopify: e, shopitsite: e, "1kapp": e, appchizi: e, applinzi: e, sinaapp: e, vipsinaapp: e, streamlitapp: e, "try-snowplow": e, "playstation-cloud": e, myspreadshop: e, "w-corp-staticblitz": e, "w-credentialless-staticblitz": e, "w-staticblitz": e, "stackhero-network": e, stdlib: [0, { api: e }], strapiapp: [2, { media: e }], "streak-link": e, streaklinks: e, streakusercontent: e, "temp-dns": e, dsmynas: e, familyds: e, mytabit: e, taveusercontent: e, "tb-hosting": J, reservd: e, thingdustdata: e, "townnews-staging": e, typeform: [0, { pro: e }], hk: e, it: e, vultrobjects: o, wafflecell: e, hotelwithflight: e, "reserve-online": e, cprapid: e, pleskns: e, remotewd: e, wiardweb: [0, { pages: e }], wixsite: e, wixstudio: e, messwithdns: e, "woltlab-demo": e, wpenginepowered: [2, { js: e }], xnbay: [2, { u2: e, "u2-local": e }], yolasite: e }], coop: a, cr: [1, { ac: a, co: a, ed: a, fi: a, go: a, or: a, sa: a }], cu: [1, { com: a, edu: a, gob: a, inf: a, nat: a, net: a, org: a }], cv: [1, { com: a, edu: a, id: a, int: a, net: a, nome: a, org: a, publ: a }], cw: U, cx: [1, { gov: a, cloudns: e, ath: e, info: e, assessments: e, calculators: e, funnels: e, paynow: e, quizzes: e, researched: e, tests: e }], cy: [1, { ac: a, biz: a, com: [1, { scaleforce: W }], ekloges: a, gov: a, ltd: a, mil: a, net: a, org: a, press: a, pro: a, tm: a }], cz: [1, { contentproxy9: [0, { rsc: e }], realm: e, e4: e, co: e, metacentrum: [0, { cloud: o, custom: e }], muni: [0, { cloud: [0, { flt: e, usr: e }] }] }], de: [1, { bplaced: e, square7: e, com: e, cosidns: da, dnsupdater: e, "dynamisches-dns": e, "internet-dns": e, "l-o-g-i-n": e, ddnss: [2, { dyn: e, dyndns: e }], "dyn-ip24": e, dyndns1: e, "home-webserver": [2, { dyn: e }], "myhome-server": e, dnshome: e, fuettertdasnetz: e, isteingeek: e, istmein: e, lebtimnetz: e, leitungsen: e, traeumtgerade: e, frusky: o, goip: e, "xn--gnstigbestellen-zvb": e, günstigbestellen: e, "xn--gnstigliefern-wob": e, günstigliefern: e, "hs-heilbronn": [0, { it: [0, { pages: e, "pages-research": e }] }], "dyn-berlin": e, "in-berlin": e, "in-brb": e, "in-butter": e, "in-dsl": e, "in-vpn": e, iservschule: e, "mein-iserv": e, schulplattform: e, schulserver: e, "test-iserv": e, keymachine: e, "git-repos": e, "lcube-server": e, "svn-repos": e, barsy: e, webspaceconfig: e, "123webseite": e, rub: e, "ruhr-uni-bochum": [2, { noc: [0, { io: e }] }], logoip: e, "firewall-gateway": e, "my-gateway": e, "my-router": e, spdns: e, speedpartner: [0, { customer: e }], myspreadshop: e, "taifun-dns": e, "12hp": e, "2ix": e, "4lima": e, "lima-city": e, "dd-dns": e, "dray-dns": e, draydns: e, "dyn-vpn": e, dynvpn: e, "mein-vigor": e, "my-vigor": e, "my-wan": e, "syno-ds": e, "synology-diskstation": e, "synology-ds": e, uberspace: o, "virtual-user": e, virtualuser: e, "community-pro": e, diskussionsbereich: e }], dj: a, dk: [1, { biz: e, co: e, firm: e, reg: e, store: e, "123hjemmeside": e, myspreadshop: e }], dm: ma, do: [1, { art: a, com: a, edu: a, gob: a, gov: a, mil: a, net: a, org: a, sld: a, web: a }], dz: [1, { art: a, asso: a, com: a, edu: a, gov: a, net: a, org: a, pol: a, soc: a, tm: a }], ec: [1, { com: a, edu: a, fin: a, gob: a, gov: a, info: a, k12: a, med: a, mil: a, net: a, org: a, pro: a, base: e, official: e }], edu: [1, { rit: [0, { "git-pages": e }] }], ee: [1, { aip: a, com: a, edu: a, fie: a, gov: a, lib: a, med: a, org: a, pri: a, riik: a }], eg: [1, { ac: a, com: a, edu: a, eun: a, gov: a, info: a, me: a, mil: a, name: a, net: a, org: a, sci: a, sport: a, tv: a }], er: p, es: [1, { com: a, edu: a, gob: a, nom: a, org: a, "123miweb": e, myspreadshop: e }], et: [1, { biz: a, com: a, edu: a, gov: a, info: a, name: a, net: a, org: a }], eu: [1, { airkitapps: e, cloudns: e, dogado: [0, { jelastic: e }], barsy: e, spdns: e, transurl: o, diskstation: e }], fi: [1, { aland: a, dy: e, "xn--hkkinen-5wa": e, häkkinen: e, iki: e, cloudplatform: [0, { fi: e }], datacenter: [0, { demo: e, paas: e }], kapsi: e, "123kotisivu": e, myspreadshop: e }], fj: [1, { ac: a, biz: a, com: a, gov: a, info: a, mil: a, name: a, net: a, org: a, pro: a }], fk: p, fm: [1, { com: a, edu: a, net: a, org: a, radio: e, user: o }], fo: a, fr: [1, { asso: a, com: a, gouv: a, nom: a, prd: a, tm: a, avoues: a, cci: a, greta: a, "huissier-justice": a, "en-root": e, "fbx-os": e, fbxos: e, "freebox-os": e, freeboxos: e, goupile: e, "123siteweb": e, "on-web": e, "chirurgiens-dentistes-en-france": e, dedibox: e, aeroport: e, avocat: e, chambagri: e, "chirurgiens-dentistes": e, "experts-comptables": e, medecin: e, notaires: e, pharmacien: e, port: e, veterinaire: e, myspreadshop: e, ynh: e }], ga: a, gb: a, gd: [1, { edu: a, gov: a }], ge: [1, { com: a, edu: a, gov: a, net: a, org: a, pvt: a, school: a }], gf: a, gg: [1, { co: a, net: a, org: a, botdash: e, kaas: e, stackit: e, panel: [2, { daemon: e }] }], gh: [1, { com: a, edu: a, gov: a, mil: a, org: a }], gi: [1, { com: a, edu: a, gov: a, ltd: a, mod: a, org: a }], gl: [1, { co: a, com: a, edu: a, net: a, org: a, biz: e }], gm: a, gn: [1, { ac: a, com: a, edu: a, gov: a, net: a, org: a }], gov: a, gp: [1, { asso: a, com: a, edu: a, mobi: a, net: a, org: a }], gq: a, gr: [1, { com: a, edu: a, gov: a, net: a, org: a, barsy: e, simplesite: e }], gs: a, gt: [1, { com: a, edu: a, gob: a, ind: a, mil: a, net: a, org: a }], gu: [1, { com: a, edu: a, gov: a, guam: a, info: a, net: a, org: a, web: a }], gw: a, gy: ma, hk: [1, { com: a, edu: a, gov: a, idv: a, net: a, org: a, "xn--ciqpn": a, 个人: a, "xn--gmqw5a": a, 個人: a, "xn--55qx5d": a, 公司: a, "xn--mxtq1m": a, 政府: a, "xn--lcvr32d": a, 敎育: a, "xn--wcvs22d": a, 教育: a, "xn--gmq050i": a, 箇人: a, "xn--uc0atv": a, 組織: a, "xn--uc0ay4a": a, 組织: a, "xn--od0alg": a, 網絡: a, "xn--zf0avx": a, 網络: a, "xn--mk0axi": a, 组織: a, "xn--tn0ag": a, 组织: a, "xn--od0aq3b": a, 网絡: a, "xn--io0a7i": a, 网络: a, inc: e, ltd: e }], hm: a, hn: [1, { com: a, edu: a, gob: a, mil: a, net: a, org: a }], hr: [1, { com: a, from: a, iz: a, name: a, brendly: pa }], ht: [1, { adult: a, art: a, asso: a, com: a, coop: a, edu: a, firm: a, gouv: a, info: a, med: a, net: a, org: a, perso: a, pol: a, pro: a, rel: a, shop: a, rt: e }], hu: [1, { 2e3: a, agrar: a, bolt: a, casino: a, city: a, co: a, erotica: a, erotika: a, film: a, forum: a, games: a, hotel: a, info: a, ingatlan: a, jogasz: a, konyvelo: a, lakas: a, media: a, news: a, org: a, priv: a, reklam: a, sex: a, shop: a, sport: a, suli: a, szex: a, tm: a, tozsde: a, utazas: a, video: a }], id: [1, { ac: a, biz: a, co: a, desa: a, go: a, mil: a, my: a, net: a, or: a, ponpes: a, sch: a, web: a }], ie: [1, { gov: a, myspreadshop: e }], il: [1, { ac: a, co: [1, { ravpage: e, mytabit: e, tabitorder: e }], gov: a, idf: a, k12: a, muni: a, net: a, org: a }], "xn--4dbrk0ce": [1, { "xn--4dbgdty6c": a, "xn--5dbhl8d": a, "xn--8dbq2a": a, "xn--hebda8b": a }], ישראל: [1, { אקדמיה: a, ישוב: a, צהל: a, ממשל: a }], im: [1, { ac: a, co: [1, { ltd: a, plc: a }], com: a, net: a, org: a, tt: a, tv: a }], in: [1, { "5g": a, "6g": a, ac: a, ai: a, am: a, bihar: a, biz: a, business: a, ca: a, cn: a, co: a, com: a, coop: a, cs: a, delhi: a, dr: a, edu: a, er: a, firm: a, gen: a, gov: a, gujarat: a, ind: a, info: a, int: a, internet: a, io: a, me: a, mil: a, net: a, nic: a, org: a, pg: a, post: a, pro: a, res: a, travel: a, tv: a, uk: a, up: a, us: a, cloudns: e, barsy: e, web: e, supabase: e }], info: [1, { cloudns: e, "dynamic-dns": e, "barrel-of-knowledge": e, "barrell-of-knowledge": e, dyndns: e, "for-our": e, "groks-the": e, "groks-this": e, "here-for-more": e, knowsitall: e, selfip: e, webhop: e, barsy: e, mayfirst: e, mittwald: e, mittwaldserver: e, typo3server: e, dvrcam: e, ilovecollege: e, "no-ip": e, forumz: e, nsupdate: e, dnsupdate: e, "v-info": e }], int: [1, { eu: a }], io: [1, { 2038: e, co: a, com: a, edu: a, gov: a, mil: a, net: a, nom: a, org: a, "on-acorn": o, myaddr: e, apigee: e, "b-data": e, beagleboard: e, bitbucket: e, bluebite: e, boxfuse: e, brave: [0, { s: o }], browsersafetymark: e, bigv: [0, { uk0: e }], cleverapps: e, cloudbeesusercontent: e, dappnode: [0, { dyndns: e }], darklang: e, definima: e, dedyn: e, "fh-muenster": e, shw: e, forgerock: [0, { id: e }], github: e, gitlab: e, lolipop: e, "hasura-app": e, hostyhosting: e, hypernode: e, moonscale: o, beebyte: R, beebyteapp: [0, { sekd1: e }], jele: e, webthings: e, loginline: e, barsy: e, azurecontainer: o, ngrok: [2, { ap: e, au: e, eu: e, in: e, jp: e, sa: e, us: e }], nodeart: [0, { stage: e }], pantheonsite: e, pstmn: [2, { mock: e }], protonet: e, qcx: [2, { sys: o }], qoto: e, vaporcloud: e, myrdbx: e, "rb-hosting": J, "on-k3s": o, "on-rio": o, readthedocs: e, resindevice: e, resinstaging: [0, { devices: e }], hzc: e, sandcats: e, scrypted: [0, { client: e }], "mo-siemens": e, lair: ua, stolos: o, musician: e, utwente: e, edugit: e, telebit: e, thingdust: [0, { dev: Q, disrec: Q, prod: ka, testing: Q }], tickets: e, webflow: e, webflowtest: e, editorx: e, wixstudio: e, basicserver: e, virtualserver: e }], iq: n, ir: [1, { ac: a, co: a, gov: a, id: a, net: a, org: a, sch: a, "xn--mgba3a4f16a": a, ایران: a, "xn--mgba3a4fra": a, ايران: a, arvanedge: e }], is: a, it: [1, { edu: a, gov: a, abr: a, abruzzo: a, "aosta-valley": a, aostavalley: a, bas: a, basilicata: a, cal: a, calabria: a, cam: a, campania: a, "emilia-romagna": a, emiliaromagna: a, emr: a, "friuli-v-giulia": a, "friuli-ve-giulia": a, "friuli-vegiulia": a, "friuli-venezia-giulia": a, "friuli-veneziagiulia": a, "friuli-vgiulia": a, "friuliv-giulia": a, "friulive-giulia": a, friulivegiulia: a, "friulivenezia-giulia": a, friuliveneziagiulia: a, friulivgiulia: a, fvg: a, laz: a, lazio: a, lig: a, liguria: a, lom: a, lombardia: a, lombardy: a, lucania: a, mar: a, marche: a, mol: a, molise: a, piedmont: a, piemonte: a, pmn: a, pug: a, puglia: a, sar: a, sardegna: a, sardinia: a, sic: a, sicilia: a, sicily: a, taa: a, tos: a, toscana: a, "trentin-sud-tirol": a, "xn--trentin-sd-tirol-rzb": a, "trentin-süd-tirol": a, "trentin-sudtirol": a, "xn--trentin-sdtirol-7vb": a, "trentin-südtirol": a, "trentin-sued-tirol": a, "trentin-suedtirol": a, trentino: a, "trentino-a-adige": a, "trentino-aadige": a, "trentino-alto-adige": a, "trentino-altoadige": a, "trentino-s-tirol": a, "trentino-stirol": a, "trentino-sud-tirol": a, "xn--trentino-sd-tirol-c3b": a, "trentino-süd-tirol": a, "trentino-sudtirol": a, "xn--trentino-sdtirol-szb": a, "trentino-südtirol": a, "trentino-sued-tirol": a, "trentino-suedtirol": a, "trentinoa-adige": a, trentinoaadige: a, "trentinoalto-adige": a, trentinoaltoadige: a, "trentinos-tirol": a, trentinostirol: a, "trentinosud-tirol": a, "xn--trentinosd-tirol-rzb": a, "trentinosüd-tirol": a, trentinosudtirol: a, "xn--trentinosdtirol-7vb": a, trentinosüdtirol: a, "trentinosued-tirol": a, trentinosuedtirol: a, "trentinsud-tirol": a, "xn--trentinsd-tirol-6vb": a, "trentinsüd-tirol": a, trentinsudtirol: a, "xn--trentinsdtirol-nsb": a, trentinsüdtirol: a, "trentinsued-tirol": a, trentinsuedtirol: a, tuscany: a, umb: a, umbria: a, "val-d-aosta": a, "val-daosta": a, "vald-aosta": a, valdaosta: a, "valle-aosta": a, "valle-d-aosta": a, "valle-daosta": a, valleaosta: a, "valled-aosta": a, valledaosta: a, "vallee-aoste": a, "xn--valle-aoste-ebb": a, "vallée-aoste": a, "vallee-d-aoste": a, "xn--valle-d-aoste-ehb": a, "vallée-d-aoste": a, valleeaoste: a, "xn--valleaoste-e7a": a, valléeaoste: a, valleedaoste: a, "xn--valledaoste-ebb": a, valléedaoste: a, vao: a, vda: a, ven: a, veneto: a, ag: a, agrigento: a, al: a, alessandria: a, "alto-adige": a, altoadige: a, an: a, ancona: a, "andria-barletta-trani": a, "andria-trani-barletta": a, andriabarlettatrani: a, andriatranibarletta: a, ao: a, aosta: a, aoste: a, ap: a, aq: a, aquila: a, ar: a, arezzo: a, "ascoli-piceno": a, ascolipiceno: a, asti: a, at: a, av: a, avellino: a, ba: a, balsan: a, "balsan-sudtirol": a, "xn--balsan-sdtirol-nsb": a, "balsan-südtirol": a, "balsan-suedtirol": a, bari: a, "barletta-trani-andria": a, barlettatraniandria: a, belluno: a, benevento: a, bergamo: a, bg: a, bi: a, biella: a, bl: a, bn: a, bo: a, bologna: a, bolzano: a, "bolzano-altoadige": a, bozen: a, "bozen-sudtirol": a, "xn--bozen-sdtirol-2ob": a, "bozen-südtirol": a, "bozen-suedtirol": a, br: a, brescia: a, brindisi: a, bs: a, bt: a, bulsan: a, "bulsan-sudtirol": a, "xn--bulsan-sdtirol-nsb": a, "bulsan-südtirol": a, "bulsan-suedtirol": a, bz: a, ca: a, cagliari: a, caltanissetta: a, "campidano-medio": a, campidanomedio: a, campobasso: a, "carbonia-iglesias": a, carboniaiglesias: a, "carrara-massa": a, carraramassa: a, caserta: a, catania: a, catanzaro: a, cb: a, ce: a, "cesena-forli": a, "xn--cesena-forl-mcb": a, "cesena-forlì": a, cesenaforli: a, "xn--cesenaforl-i8a": a, cesenaforlì: a, ch: a, chieti: a, ci: a, cl: a, cn: a, co: a, como: a, cosenza: a, cr: a, cremona: a, crotone: a, cs: a, ct: a, cuneo: a, cz: a, "dell-ogliastra": a, dellogliastra: a, en: a, enna: a, fc: a, fe: a, fermo: a, ferrara: a, fg: a, fi: a, firenze: a, florence: a, fm: a, foggia: a, "forli-cesena": a, "xn--forl-cesena-fcb": a, "forlì-cesena": a, forlicesena: a, "xn--forlcesena-c8a": a, forlìcesena: a, fr: a, frosinone: a, ge: a, genoa: a, genova: a, go: a, gorizia: a, gr: a, grosseto: a, "iglesias-carbonia": a, iglesiascarbonia: a, im: a, imperia: a, is: a, isernia: a, kr: a, "la-spezia": a, laquila: a, laspezia: a, latina: a, lc: a, le: a, lecce: a, lecco: a, li: a, livorno: a, lo: a, lodi: a, lt: a, lu: a, lucca: a, macerata: a, mantova: a, "massa-carrara": a, massacarrara: a, matera: a, mb: a, mc: a, me: a, "medio-campidano": a, mediocampidano: a, messina: a, mi: a, milan: a, milano: a, mn: a, mo: a, modena: a, monza: a, "monza-brianza": a, "monza-e-della-brianza": a, monzabrianza: a, monzaebrianza: a, monzaedellabrianza: a, ms: a, mt: a, na: a, naples: a, napoli: a, no: a, novara: a, nu: a, nuoro: a, og: a, ogliastra: a, "olbia-tempio": a, olbiatempio: a, or: a, oristano: a, ot: a, pa: a, padova: a, padua: a, palermo: a, parma: a, pavia: a, pc: a, pd: a, pe: a, perugia: a, "pesaro-urbino": a, pesarourbino: a, pescara: a, pg: a, pi: a, piacenza: a, pisa: a, pistoia: a, pn: a, po: a, pordenone: a, potenza: a, pr: a, prato: a, pt: a, pu: a, pv: a, pz: a, ra: a, ragusa: a, ravenna: a, rc: a, re: a, "reggio-calabria": a, "reggio-emilia": a, reggiocalabria: a, reggioemilia: a, rg: a, ri: a, rieti: a, rimini: a, rm: a, rn: a, ro: a, roma: a, rome: a, rovigo: a, sa: a, salerno: a, sassari: a, savona: a, si: a, siena: a, siracusa: a, so: a, sondrio: a, sp: a, sr: a, ss: a, "xn--sdtirol-n2a": a, südtirol: a, suedtirol: a, sv: a, ta: a, taranto: a, te: a, "tempio-olbia": a, tempioolbia: a, teramo: a, terni: a, tn: a, to: a, torino: a, tp: a, tr: a, "trani-andria-barletta": a, "trani-barletta-andria": a, traniandriabarletta: a, tranibarlettaandria: a, trapani: a, trento: a, treviso: a, trieste: a, ts: a, turin: a, tv: a, ud: a, udine: a, "urbino-pesaro": a, urbinopesaro: a, va: a, varese: a, vb: a, vc: a, ve: a, venezia: a, venice: a, verbania: a, vercelli: a, verona: a, vi: a, "vibo-valentia": a, vibovalentia: a, vicenza: a, viterbo: a, vr: a, vs: a, vt: a, vv: a, "12chars": e, ibxos: e, iliadboxos: e, neen: [0, { jc: e }], "123homepage": e, "16-b": e, "32-b": e, "64-b": e, myspreadshop: e, syncloud: e }], je: [1, { co: a, net: a, org: a, of: e }], jm: p, jo: [1, { agri: a, ai: a, com: a, edu: a, eng: a, fm: a, gov: a, mil: a, net: a, org: a, per: a, phd: a, sch: a, tv: a }], jobs: a, jp: [1, { ac: a, ad: a, co: a, ed: a, go: a, gr: a, lg: a, ne: [1, { aseinet: ha, gehirn: e, ivory: e, "mail-box": e, mints: e, mokuren: e, opal: e, sakura: e, sumomo: e, topaz: e }], or: a, aichi: [1, { aisai: a, ama: a, anjo: a, asuke: a, chiryu: a, chita: a, fuso: a, gamagori: a, handa: a, hazu: a, hekinan: a, higashiura: a, ichinomiya: a, inazawa: a, inuyama: a, isshiki: a, iwakura: a, kanie: a, kariya: a, kasugai: a, kira: a, kiyosu: a, komaki: a, konan: a, kota: a, mihama: a, miyoshi: a, nishio: a, nisshin: a, obu: a, oguchi: a, oharu: a, okazaki: a, owariasahi: a, seto: a, shikatsu: a, shinshiro: a, shitara: a, tahara: a, takahama: a, tobishima: a, toei: a, togo: a, tokai: a, tokoname: a, toyoake: a, toyohashi: a, toyokawa: a, toyone: a, toyota: a, tsushima: a, yatomi: a }], akita: [1, { akita: a, daisen: a, fujisato: a, gojome: a, hachirogata: a, happou: a, higashinaruse: a, honjo: a, honjyo: a, ikawa: a, kamikoani: a, kamioka: a, katagami: a, kazuno: a, kitaakita: a, kosaka: a, kyowa: a, misato: a, mitane: a, moriyoshi: a, nikaho: a, noshiro: a, odate: a, oga: a, ogata: a, semboku: a, yokote: a, yurihonjo: a }], aomori: [1, { aomori: a, gonohe: a, hachinohe: a, hashikami: a, hiranai: a, hirosaki: a, itayanagi: a, kuroishi: a, misawa: a, mutsu: a, nakadomari: a, noheji: a, oirase: a, owani: a, rokunohe: a, sannohe: a, shichinohe: a, shingo: a, takko: a, towada: a, tsugaru: a, tsuruta: a }], chiba: [1, { abiko: a, asahi: a, chonan: a, chosei: a, choshi: a, chuo: a, funabashi: a, futtsu: a, hanamigawa: a, ichihara: a, ichikawa: a, ichinomiya: a, inzai: a, isumi: a, kamagaya: a, kamogawa: a, kashiwa: a, katori: a, katsuura: a, kimitsu: a, kisarazu: a, kozaki: a, kujukuri: a, kyonan: a, matsudo: a, midori: a, mihama: a, minamiboso: a, mobara: a, mutsuzawa: a, nagara: a, nagareyama: a, narashino: a, narita: a, noda: a, oamishirasato: a, omigawa: a, onjuku: a, otaki: a, sakae: a, sakura: a, shimofusa: a, shirako: a, shiroi: a, shisui: a, sodegaura: a, sosa: a, tako: a, tateyama: a, togane: a, tohnosho: a, tomisato: a, urayasu: a, yachimata: a, yachiyo: a, yokaichiba: a, yokoshibahikari: a, yotsukaido: a }], ehime: [1, { ainan: a, honai: a, ikata: a, imabari: a, iyo: a, kamijima: a, kihoku: a, kumakogen: a, masaki: a, matsuno: a, matsuyama: a, namikata: a, niihama: a, ozu: a, saijo: a, seiyo: a, shikokuchuo: a, tobe: a, toon: a, uchiko: a, uwajima: a, yawatahama: a }], fukui: [1, { echizen: a, eiheiji: a, fukui: a, ikeda: a, katsuyama: a, mihama: a, minamiechizen: a, obama: a, ohi: a, ono: a, sabae: a, sakai: a, takahama: a, tsuruga: a, wakasa: a }], fukuoka: [1, { ashiya: a, buzen: a, chikugo: a, chikuho: a, chikujo: a, chikushino: a, chikuzen: a, chuo: a, dazaifu: a, fukuchi: a, hakata: a, higashi: a, hirokawa: a, hisayama: a, iizuka: a, inatsuki: a, kaho: a, kasuga: a, kasuya: a, kawara: a, keisen: a, koga: a, kurate: a, kurogi: a, kurume: a, minami: a, miyako: a, miyama: a, miyawaka: a, mizumaki: a, munakata: a, nakagawa: a, nakama: a, nishi: a, nogata: a, ogori: a, okagaki: a, okawa: a, oki: a, omuta: a, onga: a, onojo: a, oto: a, saigawa: a, sasaguri: a, shingu: a, shinyoshitomi: a, shonai: a, soeda: a, sue: a, tachiarai: a, tagawa: a, takata: a, toho: a, toyotsu: a, tsuiki: a, ukiha: a, umi: a, usui: a, yamada: a, yame: a, yanagawa: a, yukuhashi: a }], fukushima: [1, { aizubange: a, aizumisato: a, aizuwakamatsu: a, asakawa: a, bandai: a, date: a, fukushima: a, furudono: a, futaba: a, hanawa: a, higashi: a, hirata: a, hirono: a, iitate: a, inawashiro: a, ishikawa: a, iwaki: a, izumizaki: a, kagamiishi: a, kaneyama: a, kawamata: a, kitakata: a, kitashiobara: a, koori: a, koriyama: a, kunimi: a, miharu: a, mishima: a, namie: a, nango: a, nishiaizu: a, nishigo: a, okuma: a, omotego: a, ono: a, otama: a, samegawa: a, shimogo: a, shirakawa: a, showa: a, soma: a, sukagawa: a, taishin: a, tamakawa: a, tanagura: a, tenei: a, yabuki: a, yamato: a, yamatsuri: a, yanaizu: a, yugawa: a }], gifu: [1, { anpachi: a, ena: a, gifu: a, ginan: a, godo: a, gujo: a, hashima: a, hichiso: a, hida: a, higashishirakawa: a, ibigawa: a, ikeda: a, kakamigahara: a, kani: a, kasahara: a, kasamatsu: a, kawaue: a, kitagata: a, mino: a, minokamo: a, mitake: a, mizunami: a, motosu: a, nakatsugawa: a, ogaki: a, sakahogi: a, seki: a, sekigahara: a, shirakawa: a, tajimi: a, takayama: a, tarui: a, toki: a, tomika: a, wanouchi: a, yamagata: a, yaotsu: a, yoro: a }], gunma: [1, { annaka: a, chiyoda: a, fujioka: a, higashiagatsuma: a, isesaki: a, itakura: a, kanna: a, kanra: a, katashina: a, kawaba: a, kiryu: a, kusatsu: a, maebashi: a, meiwa: a, midori: a, minakami: a, naganohara: a, nakanojo: a, nanmoku: a, numata: a, oizumi: a, ora: a, ota: a, shibukawa: a, shimonita: a, shinto: a, showa: a, takasaki: a, takayama: a, tamamura: a, tatebayashi: a, tomioka: a, tsukiyono: a, tsumagoi: a, ueno: a, yoshioka: a }], hiroshima: [1, { asaminami: a, daiwa: a, etajima: a, fuchu: a, fukuyama: a, hatsukaichi: a, higashihiroshima: a, hongo: a, jinsekikogen: a, kaita: a, kui: a, kumano: a, kure: a, mihara: a, miyoshi: a, naka: a, onomichi: a, osakikamijima: a, otake: a, saka: a, sera: a, seranishi: a, shinichi: a, shobara: a, takehara: a }], hokkaido: [1, { abashiri: a, abira: a, aibetsu: a, akabira: a, akkeshi: a, asahikawa: a, ashibetsu: a, ashoro: a, assabu: a, atsuma: a, bibai: a, biei: a, bifuka: a, bihoro: a, biratori: a, chippubetsu: a, chitose: a, date: a, ebetsu: a, embetsu: a, eniwa: a, erimo: a, esan: a, esashi: a, fukagawa: a, fukushima: a, furano: a, furubira: a, haboro: a, hakodate: a, hamatonbetsu: a, hidaka: a, higashikagura: a, higashikawa: a, hiroo: a, hokuryu: a, hokuto: a, honbetsu: a, horokanai: a, horonobe: a, ikeda: a, imakane: a, ishikari: a, iwamizawa: a, iwanai: a, kamifurano: a, kamikawa: a, kamishihoro: a, kamisunagawa: a, kamoenai: a, kayabe: a, kembuchi: a, kikonai: a, kimobetsu: a, kitahiroshima: a, kitami: a, kiyosato: a, koshimizu: a, kunneppu: a, kuriyama: a, kuromatsunai: a, kushiro: a, kutchan: a, kyowa: a, mashike: a, matsumae: a, mikasa: a, minamifurano: a, mombetsu: a, moseushi: a, mukawa: a, muroran: a, naie: a, nakagawa: a, nakasatsunai: a, nakatombetsu: a, nanae: a, nanporo: a, nayoro: a, nemuro: a, niikappu: a, niki: a, nishiokoppe: a, noboribetsu: a, numata: a, obihiro: a, obira: a, oketo: a, okoppe: a, otaru: a, otobe: a, otofuke: a, otoineppu: a, oumu: a, ozora: a, pippu: a, rankoshi: a, rebun: a, rikubetsu: a, rishiri: a, rishirifuji: a, saroma: a, sarufutsu: a, shakotan: a, shari: a, shibecha: a, shibetsu: a, shikabe: a, shikaoi: a, shimamaki: a, shimizu: a, shimokawa: a, shinshinotsu: a, shintoku: a, shiranuka: a, shiraoi: a, shiriuchi: a, sobetsu: a, sunagawa: a, taiki: a, takasu: a, takikawa: a, takinoue: a, teshikaga: a, tobetsu: a, tohma: a, tomakomai: a, tomari: a, toya: a, toyako: a, toyotomi: a, toyoura: a, tsubetsu: a, tsukigata: a, urakawa: a, urausu: a, uryu: a, utashinai: a, wakkanai: a, wassamu: a, yakumo: a, yoichi: a }], hyogo: [1, { aioi: a, akashi: a, ako: a, amagasaki: a, aogaki: a, asago: a, ashiya: a, awaji: a, fukusaki: a, goshiki: a, harima: a, himeji: a, ichikawa: a, inagawa: a, itami: a, kakogawa: a, kamigori: a, kamikawa: a, kasai: a, kasuga: a, kawanishi: a, miki: a, minamiawaji: a, nishinomiya: a, nishiwaki: a, ono: a, sanda: a, sannan: a, sasayama: a, sayo: a, shingu: a, shinonsen: a, shiso: a, sumoto: a, taishi: a, taka: a, takarazuka: a, takasago: a, takino: a, tamba: a, tatsuno: a, toyooka: a, yabu: a, yashiro: a, yoka: a, yokawa: a }], ibaraki: [1, { ami: a, asahi: a, bando: a, chikusei: a, daigo: a, fujishiro: a, hitachi: a, hitachinaka: a, hitachiomiya: a, hitachiota: a, ibaraki: a, ina: a, inashiki: a, itako: a, iwama: a, joso: a, kamisu: a, kasama: a, kashima: a, kasumigaura: a, koga: a, miho: a, mito: a, moriya: a, naka: a, namegata: a, oarai: a, ogawa: a, omitama: a, ryugasaki: a, sakai: a, sakuragawa: a, shimodate: a, shimotsuma: a, shirosato: a, sowa: a, suifu: a, takahagi: a, tamatsukuri: a, tokai: a, tomobe: a, tone: a, toride: a, tsuchiura: a, tsukuba: a, uchihara: a, ushiku: a, yachiyo: a, yamagata: a, yawara: a, yuki: a }], ishikawa: [1, { anamizu: a, hakui: a, hakusan: a, kaga: a, kahoku: a, kanazawa: a, kawakita: a, komatsu: a, nakanoto: a, nanao: a, nomi: a, nonoichi: a, noto: a, shika: a, suzu: a, tsubata: a, tsurugi: a, uchinada: a, wajima: a }], iwate: [1, { fudai: a, fujisawa: a, hanamaki: a, hiraizumi: a, hirono: a, ichinohe: a, ichinoseki: a, iwaizumi: a, iwate: a, joboji: a, kamaishi: a, kanegasaki: a, karumai: a, kawai: a, kitakami: a, kuji: a, kunohe: a, kuzumaki: a, miyako: a, mizusawa: a, morioka: a, ninohe: a, noda: a, ofunato: a, oshu: a, otsuchi: a, rikuzentakata: a, shiwa: a, shizukuishi: a, sumita: a, tanohata: a, tono: a, yahaba: a, yamada: a }], kagawa: [1, { ayagawa: a, higashikagawa: a, kanonji: a, kotohira: a, manno: a, marugame: a, mitoyo: a, naoshima: a, sanuki: a, tadotsu: a, takamatsu: a, tonosho: a, uchinomi: a, utazu: a, zentsuji: a }], kagoshima: [1, { akune: a, amami: a, hioki: a, isa: a, isen: a, izumi: a, kagoshima: a, kanoya: a, kawanabe: a, kinko: a, kouyama: a, makurazaki: a, matsumoto: a, minamitane: a, nakatane: a, nishinoomote: a, satsumasendai: a, soo: a, tarumizu: a, yusui: a }], kanagawa: [1, { aikawa: a, atsugi: a, ayase: a, chigasaki: a, ebina: a, fujisawa: a, hadano: a, hakone: a, hiratsuka: a, isehara: a, kaisei: a, kamakura: a, kiyokawa: a, matsuda: a, minamiashigara: a, miura: a, nakai: a, ninomiya: a, odawara: a, oi: a, oiso: a, sagamihara: a, samukawa: a, tsukui: a, yamakita: a, yamato: a, yokosuka: a, yugawara: a, zama: a, zushi: a }], kochi: [1, { aki: a, geisei: a, hidaka: a, higashitsuno: a, ino: a, kagami: a, kami: a, kitagawa: a, kochi: a, mihara: a, motoyama: a, muroto: a, nahari: a, nakamura: a, nankoku: a, nishitosa: a, niyodogawa: a, ochi: a, okawa: a, otoyo: a, otsuki: a, sakawa: a, sukumo: a, susaki: a, tosa: a, tosashimizu: a, toyo: a, tsuno: a, umaji: a, yasuda: a, yusuhara: a }], kumamoto: [1, { amakusa: a, arao: a, aso: a, choyo: a, gyokuto: a, kamiamakusa: a, kikuchi: a, kumamoto: a, mashiki: a, mifune: a, minamata: a, minamioguni: a, nagasu: a, nishihara: a, oguni: a, ozu: a, sumoto: a, takamori: a, uki: a, uto: a, yamaga: a, yamato: a, yatsushiro: a }], kyoto: [1, { ayabe: a, fukuchiyama: a, higashiyama: a, ide: a, ine: a, joyo: a, kameoka: a, kamo: a, kita: a, kizu: a, kumiyama: a, kyotamba: a, kyotanabe: a, kyotango: a, maizuru: a, minami: a, minamiyamashiro: a, miyazu: a, muko: a, nagaokakyo: a, nakagyo: a, nantan: a, oyamazaki: a, sakyo: a, seika: a, tanabe: a, uji: a, ujitawara: a, wazuka: a, yamashina: a, yawata: a }], mie: [1, { asahi: a, inabe: a, ise: a, kameyama: a, kawagoe: a, kiho: a, kisosaki: a, kiwa: a, komono: a, kumano: a, kuwana: a, matsusaka: a, meiwa: a, mihama: a, minamiise: a, misugi: a, miyama: a, nabari: a, shima: a, suzuka: a, tado: a, taiki: a, taki: a, tamaki: a, toba: a, tsu: a, udono: a, ureshino: a, watarai: a, yokkaichi: a }], miyagi: [1, { furukawa: a, higashimatsushima: a, ishinomaki: a, iwanuma: a, kakuda: a, kami: a, kawasaki: a, marumori: a, matsushima: a, minamisanriku: a, misato: a, murata: a, natori: a, ogawara: a, ohira: a, onagawa: a, osaki: a, rifu: a, semine: a, shibata: a, shichikashuku: a, shikama: a, shiogama: a, shiroishi: a, tagajo: a, taiwa: a, tome: a, tomiya: a, wakuya: a, watari: a, yamamoto: a, zao: a }], miyazaki: [1, { aya: a, ebino: a, gokase: a, hyuga: a, kadogawa: a, kawaminami: a, kijo: a, kitagawa: a, kitakata: a, kitaura: a, kobayashi: a, kunitomi: a, kushima: a, mimata: a, miyakonojo: a, miyazaki: a, morotsuka: a, nichinan: a, nishimera: a, nobeoka: a, saito: a, shiiba: a, shintomi: a, takaharu: a, takanabe: a, takazaki: a, tsuno: a }], nagano: [1, { achi: a, agematsu: a, anan: a, aoki: a, asahi: a, azumino: a, chikuhoku: a, chikuma: a, chino: a, fujimi: a, hakuba: a, hara: a, hiraya: a, iida: a, iijima: a, iiyama: a, iizuna: a, ikeda: a, ikusaka: a, ina: a, karuizawa: a, kawakami: a, kiso: a, kisofukushima: a, kitaaiki: a, komagane: a, komoro: a, matsukawa: a, matsumoto: a, miasa: a, minamiaiki: a, minamimaki: a, minamiminowa: a, minowa: a, miyada: a, miyota: a, mochizuki: a, nagano: a, nagawa: a, nagiso: a, nakagawa: a, nakano: a, nozawaonsen: a, obuse: a, ogawa: a, okaya: a, omachi: a, omi: a, ookuwa: a, ooshika: a, otaki: a, otari: a, sakae: a, sakaki: a, saku: a, sakuho: a, shimosuwa: a, shinanomachi: a, shiojiri: a, suwa: a, suzaka: a, takagi: a, takamori: a, takayama: a, tateshina: a, tatsuno: a, togakushi: a, togura: a, tomi: a, ueda: a, wada: a, yamagata: a, yamanouchi: a, yasaka: a, yasuoka: a }], nagasaki: [1, { chijiwa: a, futsu: a, goto: a, hasami: a, hirado: a, iki: a, isahaya: a, kawatana: a, kuchinotsu: a, matsuura: a, nagasaki: a, obama: a, omura: a, oseto: a, saikai: a, sasebo: a, seihi: a, shimabara: a, shinkamigoto: a, togitsu: a, tsushima: a, unzen: a }], nara: [1, { ando: a, gose: a, heguri: a, higashiyoshino: a, ikaruga: a, ikoma: a, kamikitayama: a, kanmaki: a, kashiba: a, kashihara: a, katsuragi: a, kawai: a, kawakami: a, kawanishi: a, koryo: a, kurotaki: a, mitsue: a, miyake: a, nara: a, nosegawa: a, oji: a, ouda: a, oyodo: a, sakurai: a, sango: a, shimoichi: a, shimokitayama: a, shinjo: a, soni: a, takatori: a, tawaramoto: a, tenkawa: a, tenri: a, uda: a, yamatokoriyama: a, yamatotakada: a, yamazoe: a, yoshino: a }], niigata: [1, { aga: a, agano: a, gosen: a, itoigawa: a, izumozaki: a, joetsu: a, kamo: a, kariwa: a, kashiwazaki: a, minamiuonuma: a, mitsuke: a, muika: a, murakami: a, myoko: a, nagaoka: a, niigata: a, ojiya: a, omi: a, sado: a, sanjo: a, seiro: a, seirou: a, sekikawa: a, shibata: a, tagami: a, tainai: a, tochio: a, tokamachi: a, tsubame: a, tsunan: a, uonuma: a, yahiko: a, yoita: a, yuzawa: a }], oita: [1, { beppu: a, bungoono: a, bungotakada: a, hasama: a, hiji: a, himeshima: a, hita: a, kamitsue: a, kokonoe: a, kuju: a, kunisaki: a, kusu: a, oita: a, saiki: a, taketa: a, tsukumi: a, usa: a, usuki: a, yufu: a }], okayama: [1, { akaiwa: a, asakuchi: a, bizen: a, hayashima: a, ibara: a, kagamino: a, kasaoka: a, kibichuo: a, kumenan: a, kurashiki: a, maniwa: a, misaki: a, nagi: a, niimi: a, nishiawakura: a, okayama: a, satosho: a, setouchi: a, shinjo: a, shoo: a, soja: a, takahashi: a, tamano: a, tsuyama: a, wake: a, yakage: a }], okinawa: [1, { aguni: a, ginowan: a, ginoza: a, gushikami: a, haebaru: a, higashi: a, hirara: a, iheya: a, ishigaki: a, ishikawa: a, itoman: a, izena: a, kadena: a, kin: a, kitadaito: a, kitanakagusuku: a, kumejima: a, kunigami: a, minamidaito: a, motobu: a, nago: a, naha: a, nakagusuku: a, nakijin: a, nanjo: a, nishihara: a, ogimi: a, okinawa: a, onna: a, shimoji: a, taketomi: a, tarama: a, tokashiki: a, tomigusuku: a, tonaki: a, urasoe: a, uruma: a, yaese: a, yomitan: a, yonabaru: a, yonaguni: a, zamami: a }], osaka: [1, { abeno: a, chihayaakasaka: a, chuo: a, daito: a, fujiidera: a, habikino: a, hannan: a, higashiosaka: a, higashisumiyoshi: a, higashiyodogawa: a, hirakata: a, ibaraki: a, ikeda: a, izumi: a, izumiotsu: a, izumisano: a, kadoma: a, kaizuka: a, kanan: a, kashiwara: a, katano: a, kawachinagano: a, kishiwada: a, kita: a, kumatori: a, matsubara: a, minato: a, minoh: a, misaki: a, moriguchi: a, neyagawa: a, nishi: a, nose: a, osakasayama: a, sakai: a, sayama: a, sennan: a, settsu: a, shijonawate: a, shimamoto: a, suita: a, tadaoka: a, taishi: a, tajiri: a, takaishi: a, takatsuki: a, tondabayashi: a, toyonaka: a, toyono: a, yao: a }], saga: [1, { ariake: a, arita: a, fukudomi: a, genkai: a, hamatama: a, hizen: a, imari: a, kamimine: a, kanzaki: a, karatsu: a, kashima: a, kitagata: a, kitahata: a, kiyama: a, kouhoku: a, kyuragi: a, nishiarita: a, ogi: a, omachi: a, ouchi: a, saga: a, shiroishi: a, taku: a, tara: a, tosu: a, yoshinogari: a }], saitama: [1, { arakawa: a, asaka: a, chichibu: a, fujimi: a, fujimino: a, fukaya: a, hanno: a, hanyu: a, hasuda: a, hatogaya: a, hatoyama: a, hidaka: a, higashichichibu: a, higashimatsuyama: a, honjo: a, ina: a, iruma: a, iwatsuki: a, kamiizumi: a, kamikawa: a, kamisato: a, kasukabe: a, kawagoe: a, kawaguchi: a, kawajima: a, kazo: a, kitamoto: a, koshigaya: a, kounosu: a, kuki: a, kumagaya: a, matsubushi: a, minano: a, misato: a, miyashiro: a, miyoshi: a, moroyama: a, nagatoro: a, namegawa: a, niiza: a, ogano: a, ogawa: a, ogose: a, okegawa: a, omiya: a, otaki: a, ranzan: a, ryokami: a, saitama: a, sakado: a, satte: a, sayama: a, shiki: a, shiraoka: a, soka: a, sugito: a, toda: a, tokigawa: a, tokorozawa: a, tsurugashima: a, urawa: a, warabi: a, yashio: a, yokoze: a, yono: a, yorii: a, yoshida: a, yoshikawa: a, yoshimi: a }], shiga: [1, { aisho: a, gamo: a, higashiomi: a, hikone: a, koka: a, konan: a, kosei: a, koto: a, kusatsu: a, maibara: a, moriyama: a, nagahama: a, nishiazai: a, notogawa: a, omihachiman: a, otsu: a, ritto: a, ryuoh: a, takashima: a, takatsuki: a, torahime: a, toyosato: a, yasu: a }], shimane: [1, { akagi: a, ama: a, gotsu: a, hamada: a, higashiizumo: a, hikawa: a, hikimi: a, izumo: a, kakinoki: a, masuda: a, matsue: a, misato: a, nishinoshima: a, ohda: a, okinoshima: a, okuizumo: a, shimane: a, tamayu: a, tsuwano: a, unnan: a, yakumo: a, yasugi: a, yatsuka: a }], shizuoka: [1, { arai: a, atami: a, fuji: a, fujieda: a, fujikawa: a, fujinomiya: a, fukuroi: a, gotemba: a, haibara: a, hamamatsu: a, higashiizu: a, ito: a, iwata: a, izu: a, izunokuni: a, kakegawa: a, kannami: a, kawanehon: a, kawazu: a, kikugawa: a, kosai: a, makinohara: a, matsuzaki: a, minamiizu: a, mishima: a, morimachi: a, nishiizu: a, numazu: a, omaezaki: a, shimada: a, shimizu: a, shimoda: a, shizuoka: a, susono: a, yaizu: a, yoshida: a }], tochigi: [1, { ashikaga: a, bato: a, haga: a, ichikai: a, iwafune: a, kaminokawa: a, kanuma: a, karasuyama: a, kuroiso: a, mashiko: a, mibu: a, moka: a, motegi: a, nasu: a, nasushiobara: a, nikko: a, nishikata: a, nogi: a, ohira: a, ohtawara: a, oyama: a, sakura: a, sano: a, shimotsuke: a, shioya: a, takanezawa: a, tochigi: a, tsuga: a, ujiie: a, utsunomiya: a, yaita: a }], tokushima: [1, { aizumi: a, anan: a, ichiba: a, itano: a, kainan: a, komatsushima: a, matsushige: a, mima: a, minami: a, miyoshi: a, mugi: a, nakagawa: a, naruto: a, sanagochi: a, shishikui: a, tokushima: a, wajiki: a }], tokyo: [1, { adachi: a, akiruno: a, akishima: a, aogashima: a, arakawa: a, bunkyo: a, chiyoda: a, chofu: a, chuo: a, edogawa: a, fuchu: a, fussa: a, hachijo: a, hachioji: a, hamura: a, higashikurume: a, higashimurayama: a, higashiyamato: a, hino: a, hinode: a, hinohara: a, inagi: a, itabashi: a, katsushika: a, kita: a, kiyose: a, kodaira: a, koganei: a, kokubunji: a, komae: a, koto: a, kouzushima: a, kunitachi: a, machida: a, meguro: a, minato: a, mitaka: a, mizuho: a, musashimurayama: a, musashino: a, nakano: a, nerima: a, ogasawara: a, okutama: a, ome: a, oshima: a, ota: a, setagaya: a, shibuya: a, shinagawa: a, shinjuku: a, suginami: a, sumida: a, tachikawa: a, taito: a, tama: a, toshima: a }], tottori: [1, { chizu: a, hino: a, kawahara: a, koge: a, kotoura: a, misasa: a, nanbu: a, nichinan: a, sakaiminato: a, tottori: a, wakasa: a, yazu: a, yonago: a }], toyama: [1, { asahi: a, fuchu: a, fukumitsu: a, funahashi: a, himi: a, imizu: a, inami: a, johana: a, kamiichi: a, kurobe: a, nakaniikawa: a, namerikawa: a, nanto: a, nyuzen: a, oyabe: a, taira: a, takaoka: a, tateyama: a, toga: a, tonami: a, toyama: a, unazuki: a, uozu: a, yamada: a }], wakayama: [1, { arida: a, aridagawa: a, gobo: a, hashimoto: a, hidaka: a, hirogawa: a, inami: a, iwade: a, kainan: a, kamitonda: a, katsuragi: a, kimino: a, kinokawa: a, kitayama: a, koya: a, koza: a, kozagawa: a, kudoyama: a, kushimoto: a, mihama: a, misato: a, nachikatsuura: a, shingu: a, shirahama: a, taiji: a, tanabe: a, wakayama: a, yuasa: a, yura: a }], yamagata: [1, { asahi: a, funagata: a, higashine: a, iide: a, kahoku: a, kaminoyama: a, kaneyama: a, kawanishi: a, mamurogawa: a, mikawa: a, murayama: a, nagai: a, nakayama: a, nanyo: a, nishikawa: a, obanazawa: a, oe: a, oguni: a, ohkura: a, oishida: a, sagae: a, sakata: a, sakegawa: a, shinjo: a, shirataka: a, shonai: a, takahata: a, tendo: a, tozawa: a, tsuruoka: a, yamagata: a, yamanobe: a, yonezawa: a, yuza: a }], yamaguchi: [1, { abu: a, hagi: a, hikari: a, hofu: a, iwakuni: a, kudamatsu: a, mitou: a, nagato: a, oshima: a, shimonoseki: a, shunan: a, tabuse: a, tokuyama: a, toyota: a, ube: a, yuu: a }], yamanashi: [1, { chuo: a, doshi: a, fuefuki: a, fujikawa: a, fujikawaguchiko: a, fujiyoshida: a, hayakawa: a, hokuto: a, ichikawamisato: a, kai: a, kofu: a, koshu: a, kosuge: a, "minami-alps": a, minobu: a, nakamichi: a, nanbu: a, narusawa: a, nirasaki: a, nishikatsura: a, oshino: a, otsuki: a, showa: a, tabayama: a, tsuru: a, uenohara: a, yamanakako: a, yamanashi: a }], "xn--ehqz56n": a, 三重: a, "xn--1lqs03n": a, 京都: a, "xn--qqqt11m": a, 佐賀: a, "xn--f6qx53a": a, 兵庫: a, "xn--djrs72d6uy": a, 北海道: a, "xn--mkru45i": a, 千葉: a, "xn--0trq7p7nn": a, 和歌山: a, "xn--5js045d": a, 埼玉: a, "xn--kbrq7o": a, 大分: a, "xn--pssu33l": a, 大阪: a, "xn--ntsq17g": a, 奈良: a, "xn--uisz3g": a, 宮城: a, "xn--6btw5a": a, 宮崎: a, "xn--1ctwo": a, 富山: a, "xn--6orx2r": a, 山口: a, "xn--rht61e": a, 山形: a, "xn--rht27z": a, 山梨: a, "xn--nit225k": a, 岐阜: a, "xn--rht3d": a, 岡山: a, "xn--djty4k": a, 岩手: a, "xn--klty5x": a, 島根: a, "xn--kltx9a": a, 広島: a, "xn--kltp7d": a, 徳島: a, "xn--c3s14m": a, 愛媛: a, "xn--vgu402c": a, 愛知: a, "xn--efvn9s": a, 新潟: a, "xn--1lqs71d": a, 東京: a, "xn--4pvxs": a, 栃木: a, "xn--uuwu58a": a, 沖縄: a, "xn--zbx025d": a, 滋賀: a, "xn--8pvr4u": a, 熊本: a, "xn--5rtp49c": a, 石川: a, "xn--ntso0iqx3a": a, 神奈川: a, "xn--elqq16h": a, 福井: a, "xn--4it168d": a, 福岡: a, "xn--klt787d": a, 福島: a, "xn--rny31h": a, 秋田: a, "xn--7t0a264c": a, 群馬: a, "xn--uist22h": a, 茨城: a, "xn--8ltr62k": a, 長崎: a, "xn--2m4a15e": a, 長野: a, "xn--32vp30h": a, 青森: a, "xn--4it797k": a, 静岡: a, "xn--5rtq34k": a, 香川: a, "xn--k7yn95e": a, 高知: a, "xn--tor131o": a, 鳥取: a, "xn--d5qv7z876c": a, 鹿児島: a, kawasaki: p, kitakyushu: p, kobe: p, nagoya: p, sapporo: p, sendai: p, yokohama: p, buyshop: e, fashionstore: e, handcrafted: e, kawaiishop: e, supersale: e, theshop: e, "0am": e, "0g0": e, "0j0": e, "0t0": e, mydns: e, pgw: e, wjg: e, usercontent: e, angry: e, babyblue: e, babymilk: e, backdrop: e, bambina: e, bitter: e, blush: e, boo: e, boy: e, boyfriend: e, but: e, candypop: e, capoo: e, catfood: e, cheap: e, chicappa: e, chillout: e, chips: e, chowder: e, chu: e, ciao: e, cocotte: e, coolblog: e, cranky: e, cutegirl: e, daa: e, deca: e, deci: e, digick: e, egoism: e, fakefur: e, fem: e, flier: e, floppy: e, fool: e, frenchkiss: e, girlfriend: e, girly: e, gloomy: e, gonna: e, greater: e, hacca: e, heavy: e, her: e, hiho: e, hippy: e, holy: e, hungry: e, icurus: e, itigo: e, jellybean: e, kikirara: e, kill: e, kilo: e, kuron: e, littlestar: e, lolipopmc: e, lolitapunk: e, lomo: e, lovepop: e, lovesick: e, main: e, mods: e, mond: e, mongolian: e, moo: e, namaste: e, nikita: e, nobushi: e, noor: e, oops: e, parallel: e, parasite: e, pecori: e, peewee: e, penne: e, pepper: e, perma: e, pigboat: e, pinoko: e, punyu: e, pupu: e, pussycat: e, pya: e, raindrop: e, readymade: e, sadist: e, schoolbus: e, secret: e, staba: e, stripper: e, sub: e, sunnyday: e, thick: e, tonkotsu: e, under: e, upper: e, velvet: e, verse: e, versus: e, vivian: e, watson: e, weblike: e, whitesnow: e, zombie: e, hateblo: e, hatenablog: e, hatenadiary: e, "2-d": e, bona: e, crap: e, daynight: e, eek: e, flop: e, halfmoon: e, jeez: e, matrix: e, mimoza: e, netgamers: e, nyanta: e, o0o0: e, rdy: e, rgr: e, rulez: e, sakurastorage: [0, { isk01: B, isk02: B }], saloon: e, sblo: e, skr: e, tank: e, "uh-oh": e, undo: e, webaccel: [0, { rs: e, user: e }], websozai: e, xii: e }], ke: [1, { ac: a, co: a, go: a, info: a, me: a, mobi: a, ne: a, or: a, sc: a }], kg: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, us: e }], kh: p, ki: ba, km: [1, { ass: a, com: a, edu: a, gov: a, mil: a, nom: a, org: a, prd: a, tm: a, asso: a, coop: a, gouv: a, medecin: a, notaires: a, pharmaciens: a, presse: a, veterinaire: a }], kn: [1, { edu: a, gov: a, net: a, org: a }], kp: [1, { com: a, edu: a, gov: a, org: a, rep: a, tra: a }], kr: [1, { ac: a, co: a, es: a, go: a, hs: a, kg: a, mil: a, ms: a, ne: a, or: a, pe: a, re: a, sc: a, busan: a, chungbuk: a, chungnam: a, daegu: a, daejeon: a, gangwon: a, gwangju: a, gyeongbuk: a, gyeonggi: a, gyeongnam: a, incheon: a, jeju: a, jeonbuk: a, jeonnam: a, seoul: a, ulsan: a }], kw: [1, { com: a, edu: a, emb: a, gov: a, ind: a, net: a, org: a }], ky: U, kz: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, jcloud: e }], la: [1, { com: a, edu: a, gov: a, info: a, int: a, net: a, org: a, per: a, bnr: e }], lb: i, lc: [1, { co: a, com: a, edu: a, gov: a, net: a, org: a, oy: e }], li: a, lk: [1, { ac: a, assn: a, com: a, edu: a, gov: a, grp: a, hotel: a, int: a, ltd: a, net: a, ngo: a, org: a, sch: a, soc: a, web: a }], lr: i, ls: [1, { ac: a, biz: a, co: a, edu: a, gov: a, info: a, net: a, org: a, sc: a }], lt: l, lu: [1, { "123website": e }], lv: [1, { asn: a, com: a, conf: a, edu: a, gov: a, id: a, mil: a, net: a, org: a }], ly: [1, { com: a, edu: a, gov: a, id: a, med: a, net: a, org: a, plc: a, sch: a }], ma: [1, { ac: a, co: a, gov: a, net: a, org: a, press: a }], mc: [1, { asso: a, tm: a }], md: [1, { ir: e }], me: [1, { ac: a, co: a, edu: a, gov: a, its: a, net: a, org: a, priv: a, c66: e, craft: e, edgestack: e, filegear: e, glitch: e, "filegear-sg": e, lohmus: e, barsy: e, mcdir: e, brasilia: e, ddns: e, dnsfor: e, hopto: e, loginto: e, noip: e, webhop: e, soundcast: e, tcp4: e, vp4: e, diskstation: e, dscloud: e, i234: e, myds: e, synology: e, transip: J, nohost: e }], mg: [1, { co: a, com: a, edu: a, gov: a, mil: a, nom: a, org: a, prd: a }], mh: a, mil: a, mk: [1, { com: a, edu: a, gov: a, inf: a, name: a, net: a, org: a }], ml: [1, { ac: a, art: a, asso: a, com: a, edu: a, gouv: a, gov: a, info: a, inst: a, net: a, org: a, pr: a, presse: a }], mm: p, mn: [1, { edu: a, gov: a, org: a, nyc: e }], mo: i, mobi: [1, { barsy: e, dscloud: e }], mp: [1, { ju: e }], mq: a, mr: l, ms: [1, { com: a, edu: a, gov: a, net: a, org: a, minisite: e }], mt: U, mu: [1, { ac: a, co: a, com: a, gov: a, net: a, or: a, org: a }], museum: a, mv: [1, { aero: a, biz: a, com: a, coop: a, edu: a, gov: a, info: a, int: a, mil: a, museum: a, name: a, net: a, org: a, pro: a }], mw: [1, { ac: a, biz: a, co: a, com: a, coop: a, edu: a, gov: a, int: a, net: a, org: a }], mx: [1, { com: a, edu: a, gob: a, net: a, org: a }], my: [1, { biz: a, com: a, edu: a, gov: a, mil: a, name: a, net: a, org: a }], mz: [1, { ac: a, adv: a, co: a, edu: a, gov: a, mil: a, net: a, org: a }], na: [1, { alt: a, co: a, com: a, gov: a, net: a, org: a }], name: [1, { her: ya, his: ya }], nc: [1, { asso: a, nom: a }], ne: a, net: [1, { adobeaemcloud: e, "adobeio-static": e, adobeioruntime: e, akadns: e, akamai: e, "akamai-staging": e, akamaiedge: e, "akamaiedge-staging": e, akamaihd: e, "akamaihd-staging": e, akamaiorigin: e, "akamaiorigin-staging": e, akamaized: e, "akamaized-staging": e, edgekey: e, "edgekey-staging": e, edgesuite: e, "edgesuite-staging": e, alwaysdata: e, myamaze: e, cloudfront: e, appudo: e, "atlassian-dev": [0, { prod: H }], myfritz: e, onavstack: e, shopselect: e, blackbaudcdn: e, boomla: e, bplaced: e, square7: e, cdn77: [0, { r: e }], "cdn77-ssl": e, gb: e, hu: e, jp: e, se: e, uk: e, clickrising: e, "ddns-ip": e, "dns-cloud": e, "dns-dynamic": e, cloudaccess: e, cloudflare: [2, { cdn: e }], cloudflareanycast: H, cloudflarecn: H, cloudflareglobal: H, ctfcloud: e, "feste-ip": e, "knx-server": e, "static-access": e, cryptonomic: o, dattolocal: e, mydatto: e, debian: e, definima: e, "at-band-camp": e, blogdns: e, "broke-it": e, buyshouses: e, dnsalias: e, dnsdojo: e, "does-it": e, dontexist: e, dynalias: e, dynathome: e, endofinternet: e, "from-az": e, "from-co": e, "from-la": e, "from-ny": e, "gets-it": e, "ham-radio-op": e, homeftp: e, homeip: e, homelinux: e, homeunix: e, "in-the-band": e, "is-a-chef": e, "is-a-geek": e, "isa-geek": e, "kicks-ass": e, "office-on-the": e, podzone: e, "scrapper-site": e, selfip: e, "sells-it": e, servebbs: e, serveftp: e, thruhere: e, webhop: e, casacam: e, dynu: e, dynv6: e, twmail: e, ru: e, channelsdvr: [2, { u: e }], fastly: [0, { freetls: e, map: e, prod: [0, { a: e, global: e }], ssl: [0, { a: e, b: e, global: e }] }], fastlylb: [2, { map: e }], edgeapp: e, "keyword-on": e, "live-on": e, "server-on": e, "cdn-edges": e, heteml: e, cloudfunctions: e, "grafana-dev": e, iobb: e, moonscale: e, "in-dsl": e, "in-vpn": e, botdash: e, "apps-1and1": e, ipifony: e, cloudjiffy: [2, { "fra1-de": e, "west1-us": e }], elastx: [0, { "jls-sto1": e, "jls-sto2": e, "jls-sto3": e }], massivegrid: [0, { paas: [0, { "fr-1": e, "lon-1": e, "lon-2": e, "ny-1": e, "ny-2": e, "sg-1": e }] }], saveincloud: [0, { jelastic: e, "nordeste-idc": e }], scaleforce: W, kinghost: e, uni5: e, krellian: e, ggff: e, localcert: e, localhostcert: e, barsy: e, memset: e, "azure-api": e, "azure-mobile": e, azureedge: e, azurefd: e, azurestaticapps: [2, { 1: e, 2: e, 3: e, 4: e, 5: e, 6: e, 7: e, centralus: e, eastasia: e, eastus2: e, westeurope: e, westus2: e }], azurewebsites: e, cloudapp: e, trafficmanager: e, windows: [0, { core: [0, { blob: e }], servicebus: e }], mynetname: [0, { sn: e }], routingthecloud: e, bounceme: e, ddns: e, "eating-organic": e, mydissent: e, myeffect: e, mymediapc: e, mypsx: e, mysecuritycamera: e, nhlfan: e, "no-ip": e, pgafan: e, privatizehealthinsurance: e, redirectme: e, serveblog: e, serveminecraft: e, sytes: e, dnsup: e, hicam: e, "now-dns": e, ownip: e, vpndns: e, cloudycluster: e, ovh: [0, { hosting: o, webpaas: o }], rackmaze: e, myradweb: e, in: e, "subsc-pay": e, squares: e, schokokeks: e, "firewall-gateway": e, seidat: e, senseering: e, siteleaf: e, mafelo: e, myspreadshop: e, "vps-host": [2, { jelastic: [0, { atl: e, njs: e, ric: e }] }], srcf: [0, { soc: e, user: e }], supabase: e, dsmynas: e, familyds: e, ts: [2, { c: o }], torproject: [2, { pages: e }], vusercontent: e, "reserve-online": e, "community-pro": e, meinforum: e, yandexcloud: [2, { storage: e, website: e }], za: e }], nf: [1, { arts: a, com: a, firm: a, info: a, net: a, other: a, per: a, rec: a, store: a, web: a }], ng: [1, { com: a, edu: a, gov: a, i: a, mil: a, mobi: a, name: a, net: a, org: a, sch: a, biz: [2, { co: e, dl: e, go: e, lg: e, on: e }], col: e, firm: e, gen: e, ltd: e, ngo: e, plc: e }], ni: [1, { ac: a, biz: a, co: a, com: a, edu: a, gob: a, in: a, info: a, int: a, mil: a, net: a, nom: a, org: a, web: a }], nl: [1, { co: e, "hosting-cluster": e, gov: e, khplay: e, "123website": e, myspreadshop: e, transurl: o, cistron: e, demon: e }], no: [1, { fhs: a, folkebibl: a, fylkesbibl: a, idrett: a, museum: a, priv: a, vgs: a, dep: a, herad: a, kommune: a, mil: a, stat: a, aa: w, ah: w, bu: w, fm: w, hl: w, hm: w, "jan-mayen": w, mr: w, nl: w, nt: w, of: w, ol: w, oslo: w, rl: w, sf: w, st: w, svalbard: w, tm: w, tr: w, va: w, vf: w, akrehamn: a, "xn--krehamn-dxa": a, åkrehamn: a, algard: a, "xn--lgrd-poac": a, ålgård: a, arna: a, bronnoysund: a, "xn--brnnysund-m8ac": a, brønnøysund: a, brumunddal: a, bryne: a, drobak: a, "xn--drbak-wua": a, drøbak: a, egersund: a, fetsund: a, floro: a, "xn--flor-jra": a, florø: a, fredrikstad: a, hokksund: a, honefoss: a, "xn--hnefoss-q1a": a, hønefoss: a, jessheim: a, jorpeland: a, "xn--jrpeland-54a": a, jørpeland: a, kirkenes: a, kopervik: a, krokstadelva: a, langevag: a, "xn--langevg-jxa": a, langevåg: a, leirvik: a, mjondalen: a, "xn--mjndalen-64a": a, mjøndalen: a, "mo-i-rana": a, mosjoen: a, "xn--mosjen-eya": a, mosjøen: a, nesoddtangen: a, orkanger: a, osoyro: a, "xn--osyro-wua": a, osøyro: a, raholt: a, "xn--rholt-mra": a, råholt: a, sandnessjoen: a, "xn--sandnessjen-ogb": a, sandnessjøen: a, skedsmokorset: a, slattum: a, spjelkavik: a, stathelle: a, stavern: a, stjordalshalsen: a, "xn--stjrdalshalsen-sqb": a, stjørdalshalsen: a, tananger: a, tranby: a, vossevangen: a, aarborte: a, aejrie: a, afjord: a, "xn--fjord-lra": a, åfjord: a, agdenes: a, akershus: fa, aknoluokta: a, "xn--koluokta-7ya57h": a, ákŋoluokta: a, al: a, "xn--l-1fa": a, ål: a, alaheadju: a, "xn--laheadju-7ya": a, álaheadju: a, alesund: a, "xn--lesund-hua": a, ålesund: a, alstahaug: a, alta: a, "xn--lt-liac": a, áltá: a, alvdal: a, amli: a, "xn--mli-tla": a, åmli: a, amot: a, "xn--mot-tla": a, åmot: a, andasuolo: a, andebu: a, andoy: a, "xn--andy-ira": a, andøy: a, ardal: a, "xn--rdal-poa": a, årdal: a, aremark: a, arendal: a, "xn--s-1fa": a, ås: a, aseral: a, "xn--seral-lra": a, åseral: a, asker: a, askim: a, askoy: a, "xn--asky-ira": a, askøy: a, askvoll: a, asnes: a, "xn--snes-poa": a, åsnes: a, audnedaln: a, aukra: a, aure: a, aurland: a, "aurskog-holand": a, "xn--aurskog-hland-jnb": a, "aurskog-høland": a, austevoll: a, austrheim: a, averoy: a, "xn--avery-yua": a, averøy: a, badaddja: a, "xn--bdddj-mrabd": a, bådåddjå: a, "xn--brum-voa": a, bærum: a, bahcavuotna: a, "xn--bhcavuotna-s4a": a, báhcavuotna: a, bahccavuotna: a, "xn--bhccavuotna-k7a": a, báhccavuotna: a, baidar: a, "xn--bidr-5nac": a, báidár: a, bajddar: a, "xn--bjddar-pta": a, bájddar: a, balat: a, "xn--blt-elab": a, bálát: a, balestrand: a, ballangen: a, balsfjord: a, bamble: a, bardu: a, barum: a, batsfjord: a, "xn--btsfjord-9za": a, båtsfjord: a, bearalvahki: a, "xn--bearalvhki-y4a": a, bearalváhki: a, beardu: a, beiarn: a, berg: a, bergen: a, berlevag: a, "xn--berlevg-jxa": a, berlevåg: a, bievat: a, "xn--bievt-0qa": a, bievát: a, bindal: a, birkenes: a, bjarkoy: a, "xn--bjarky-fya": a, bjarkøy: a, bjerkreim: a, bjugn: a, bodo: a, "xn--bod-2na": a, bodø: a, bokn: a, bomlo: a, "xn--bmlo-gra": a, bømlo: a, bremanger: a, bronnoy: a, "xn--brnny-wuac": a, brønnøy: a, budejju: a, buskerud: fa, bygland: a, bykle: a, cahcesuolo: a, "xn--hcesuolo-7ya35b": a, čáhcesuolo: a, davvenjarga: a, "xn--davvenjrga-y4a": a, davvenjárga: a, davvesiida: a, deatnu: a, dielddanuorri: a, divtasvuodna: a, divttasvuotna: a, donna: a, "xn--dnna-gra": a, dønna: a, dovre: a, drammen: a, drangedal: a, dyroy: a, "xn--dyry-ira": a, dyrøy: a, eid: a, eidfjord: a, eidsberg: a, eidskog: a, eidsvoll: a, eigersund: a, elverum: a, enebakk: a, engerdal: a, etne: a, etnedal: a, evenassi: a, "xn--eveni-0qa01ga": a, evenášši: a, evenes: a, "evje-og-hornnes": a, farsund: a, fauske: a, fedje: a, fet: a, finnoy: a, "xn--finny-yua": a, finnøy: a, fitjar: a, fjaler: a, fjell: a, fla: a, "xn--fl-zia": a, flå: a, flakstad: a, flatanger: a, flekkefjord: a, flesberg: a, flora: a, folldal: a, forde: a, "xn--frde-gra": a, førde: a, forsand: a, fosnes: a, "xn--frna-woa": a, fræna: a, frana: a, frei: a, frogn: a, froland: a, frosta: a, froya: a, "xn--frya-hra": a, frøya: a, fuoisku: a, fuossko: a, fusa: a, fyresdal: a, gaivuotna: a, "xn--givuotna-8ya": a, gáivuotna: a, galsa: a, "xn--gls-elac": a, gálsá: a, gamvik: a, gangaviika: a, "xn--ggaviika-8ya47h": a, gáŋgaviika: a, gaular: a, gausdal: a, giehtavuoatna: a, gildeskal: a, "xn--gildeskl-g0a": a, gildeskål: a, giske: a, gjemnes: a, gjerdrum: a, gjerstad: a, gjesdal: a, gjovik: a, "xn--gjvik-wua": a, gjøvik: a, gloppen: a, gol: a, gran: a, grane: a, granvin: a, gratangen: a, grimstad: a, grong: a, grue: a, gulen: a, guovdageaidnu: a, ha: a, "xn--h-2fa": a, hå: a, habmer: a, "xn--hbmer-xqa": a, hábmer: a, hadsel: a, "xn--hgebostad-g3a": a, hægebostad: a, hagebostad: a, halden: a, halsa: a, hamar: a, hamaroy: a, hammarfeasta: a, "xn--hmmrfeasta-s4ac": a, hámmárfeasta: a, hammerfest: a, hapmir: a, "xn--hpmir-xqa": a, hápmir: a, haram: a, hareid: a, harstad: a, hasvik: a, hattfjelldal: a, haugesund: a, hedmark: [0, { os: a, valer: a, "xn--vler-qoa": a, våler: a }], hemne: a, hemnes: a, hemsedal: a, hitra: a, hjartdal: a, hjelmeland: a, hobol: a, "xn--hobl-ira": a, hobøl: a, hof: a, hol: a, hole: a, holmestrand: a, holtalen: a, "xn--holtlen-hxa": a, holtålen: a, hordaland: [0, { os: a }], hornindal: a, horten: a, hoyanger: a, "xn--hyanger-q1a": a, høyanger: a, hoylandet: a, "xn--hylandet-54a": a, høylandet: a, hurdal: a, hurum: a, hvaler: a, hyllestad: a, ibestad: a, inderoy: a, "xn--indery-fya": a, inderøy: a, iveland: a, ivgu: a, jevnaker: a, jolster: a, "xn--jlster-bya": a, jølster: a, jondal: a, kafjord: a, "xn--kfjord-iua": a, kåfjord: a, karasjohka: a, "xn--krjohka-hwab49j": a, kárášjohka: a, karasjok: a, karlsoy: a, karmoy: a, "xn--karmy-yua": a, karmøy: a, kautokeino: a, klabu: a, "xn--klbu-woa": a, klæbu: a, klepp: a, kongsberg: a, kongsvinger: a, kraanghke: a, "xn--kranghke-b0a": a, kråanghke: a, kragero: a, "xn--krager-gya": a, kragerø: a, kristiansand: a, kristiansund: a, krodsherad: a, "xn--krdsherad-m8a": a, krødsherad: a, "xn--kvfjord-nxa": a, kvæfjord: a, "xn--kvnangen-k0a": a, kvænangen: a, kvafjord: a, kvalsund: a, kvam: a, kvanangen: a, kvinesdal: a, kvinnherad: a, kviteseid: a, kvitsoy: a, "xn--kvitsy-fya": a, kvitsøy: a, laakesvuemie: a, "xn--lrdal-sra": a, lærdal: a, lahppi: a, "xn--lhppi-xqa": a, láhppi: a, lardal: a, larvik: a, lavagis: a, lavangen: a, leangaviika: a, "xn--leagaviika-52b": a, leaŋgaviika: a, lebesby: a, leikanger: a, leirfjord: a, leka: a, leksvik: a, lenvik: a, lerdal: a, lesja: a, levanger: a, lier: a, lierne: a, lillehammer: a, lillesand: a, lindas: a, "xn--linds-pra": a, lindås: a, lindesnes: a, loabat: a, "xn--loabt-0qa": a, loabát: a, lodingen: a, "xn--ldingen-q1a": a, lødingen: a, lom: a, loppa: a, lorenskog: a, "xn--lrenskog-54a": a, lørenskog: a, loten: a, "xn--lten-gra": a, løten: a, lund: a, lunner: a, luroy: a, "xn--lury-ira": a, lurøy: a, luster: a, lyngdal: a, lyngen: a, malatvuopmi: a, "xn--mlatvuopmi-s4a": a, málatvuopmi: a, malselv: a, "xn--mlselv-iua": a, målselv: a, malvik: a, mandal: a, marker: a, marnardal: a, masfjorden: a, masoy: a, "xn--msy-ula0h": a, måsøy: a, "matta-varjjat": a, "xn--mtta-vrjjat-k7af": a, "mátta-várjjat": a, meland: a, meldal: a, melhus: a, meloy: a, "xn--mely-ira": a, meløy: a, meraker: a, "xn--merker-kua": a, meråker: a, midsund: a, "midtre-gauldal": a, moareke: a, "xn--moreke-jua": a, moåreke: a, modalen: a, modum: a, molde: a, "more-og-romsdal": [0, { heroy: a, sande: a }], "xn--mre-og-romsdal-qqb": [0, { "xn--hery-ira": a, sande: a }], "møre-og-romsdal": [0, { herøy: a, sande: a }], moskenes: a, moss: a, mosvik: a, muosat: a, "xn--muost-0qa": a, muosát: a, naamesjevuemie: a, "xn--nmesjevuemie-tcba": a, nååmesjevuemie: a, "xn--nry-yla5g": a, nærøy: a, namdalseid: a, namsos: a, namsskogan: a, nannestad: a, naroy: a, narviika: a, narvik: a, naustdal: a, navuotna: a, "xn--nvuotna-hwa": a, návuotna: a, "nedre-eiker": a, nesna: a, nesodden: a, nesseby: a, nesset: a, nissedal: a, nittedal: a, "nord-aurdal": a, "nord-fron": a, "nord-odal": a, norddal: a, nordkapp: a, nordland: [0, { bo: a, "xn--b-5ga": a, bø: a, heroy: a, "xn--hery-ira": a, herøy: a }], "nordre-land": a, nordreisa: a, "nore-og-uvdal": a, notodden: a, notteroy: a, "xn--nttery-byae": a, nøtterøy: a, odda: a, oksnes: a, "xn--ksnes-uua": a, øksnes: a, omasvuotna: a, oppdal: a, oppegard: a, "xn--oppegrd-ixa": a, oppegård: a, orkdal: a, orland: a, "xn--rland-uua": a, ørland: a, orskog: a, "xn--rskog-uua": a, ørskog: a, orsta: a, "xn--rsta-fra": a, ørsta: a, osen: a, osteroy: a, "xn--ostery-fya": a, osterøy: a, ostfold: [0, { valer: a }], "xn--stfold-9xa": [0, { "xn--vler-qoa": a }], østfold: [0, { våler: a }], "ostre-toten": a, "xn--stre-toten-zcb": a, "østre-toten": a, overhalla: a, "ovre-eiker": a, "xn--vre-eiker-k8a": a, "øvre-eiker": a, oyer: a, "xn--yer-zna": a, øyer: a, oygarden: a, "xn--ygarden-p1a": a, øygarden: a, "oystre-slidre": a, "xn--ystre-slidre-ujb": a, "øystre-slidre": a, porsanger: a, porsangu: a, "xn--porsgu-sta26f": a, porsáŋgu: a, porsgrunn: a, rade: a, "xn--rde-ula": a, råde: a, radoy: a, "xn--rady-ira": a, radøy: a, "xn--rlingen-mxa": a, rælingen: a, rahkkeravju: a, "xn--rhkkervju-01af": a, ráhkkerávju: a, raisa: a, "xn--risa-5na": a, ráisa: a, rakkestad: a, ralingen: a, rana: a, randaberg: a, rauma: a, rendalen: a, rennebu: a, rennesoy: a, "xn--rennesy-v1a": a, rennesøy: a, rindal: a, ringebu: a, ringerike: a, ringsaker: a, risor: a, "xn--risr-ira": a, risør: a, rissa: a, roan: a, rodoy: a, "xn--rdy-0nab": a, rødøy: a, rollag: a, romsa: a, romskog: a, "xn--rmskog-bya": a, rømskog: a, roros: a, "xn--rros-gra": a, røros: a, rost: a, "xn--rst-0na": a, røst: a, royken: a, "xn--ryken-vua": a, røyken: a, royrvik: a, "xn--ryrvik-bya": a, røyrvik: a, ruovat: a, rygge: a, salangen: a, salat: a, "xn--slat-5na": a, sálat: a, "xn--slt-elab": a, sálát: a, saltdal: a, samnanger: a, sandefjord: a, sandnes: a, sandoy: a, "xn--sandy-yua": a, sandøy: a, sarpsborg: a, sauda: a, sauherad: a, sel: a, selbu: a, selje: a, seljord: a, siellak: a, sigdal: a, siljan: a, sirdal: a, skanit: a, "xn--sknit-yqa": a, skánit: a, skanland: a, "xn--sknland-fxa": a, skånland: a, skaun: a, skedsmo: a, ski: a, skien: a, skierva: a, "xn--skierv-uta": a, skiervá: a, skiptvet: a, skjak: a, "xn--skjk-soa": a, skjåk: a, skjervoy: a, "xn--skjervy-v1a": a, skjervøy: a, skodje: a, smola: a, "xn--smla-hra": a, smøla: a, snaase: a, "xn--snase-nra": a, snåase: a, snasa: a, "xn--snsa-roa": a, snåsa: a, snillfjord: a, snoasa: a, sogndal: a, sogne: a, "xn--sgne-gra": a, søgne: a, sokndal: a, sola: a, solund: a, somna: a, "xn--smna-gra": a, sømna: a, "sondre-land": a, "xn--sndre-land-0cb": a, "søndre-land": a, songdalen: a, "sor-aurdal": a, "xn--sr-aurdal-l8a": a, "sør-aurdal": a, "sor-fron": a, "xn--sr-fron-q1a": a, "sør-fron": a, "sor-odal": a, "xn--sr-odal-q1a": a, "sør-odal": a, "sor-varanger": a, "xn--sr-varanger-ggb": a, "sør-varanger": a, sorfold: a, "xn--srfold-bya": a, sørfold: a, sorreisa: a, "xn--srreisa-q1a": a, sørreisa: a, sortland: a, sorum: a, "xn--srum-gra": a, sørum: a, spydeberg: a, stange: a, stavanger: a, steigen: a, steinkjer: a, stjordal: a, "xn--stjrdal-s1a": a, stjørdal: a, stokke: a, "stor-elvdal": a, stord: a, stordal: a, storfjord: a, strand: a, stranda: a, stryn: a, sula: a, suldal: a, sund: a, sunndal: a, surnadal: a, sveio: a, svelvik: a, sykkylven: a, tana: a, telemark: [0, { bo: a, "xn--b-5ga": a, bø: a }], time: a, tingvoll: a, tinn: a, tjeldsund: a, tjome: a, "xn--tjme-hra": a, tjøme: a, tokke: a, tolga: a, tonsberg: a, "xn--tnsberg-q1a": a, tønsberg: a, torsken: a, "xn--trna-woa": a, træna: a, trana: a, tranoy: a, "xn--trany-yua": a, tranøy: a, troandin: a, trogstad: a, "xn--trgstad-r1a": a, trøgstad: a, tromsa: a, tromso: a, "xn--troms-zua": a, tromsø: a, trondheim: a, trysil: a, tvedestrand: a, tydal: a, tynset: a, tysfjord: a, tysnes: a, "xn--tysvr-vra": a, tysvær: a, tysvar: a, ullensaker: a, ullensvang: a, ulvik: a, unjarga: a, "xn--unjrga-rta": a, unjárga: a, utsira: a, vaapste: a, vadso: a, "xn--vads-jra": a, vadsø: a, "xn--vry-yla5g": a, værøy: a, vaga: a, "xn--vg-yiab": a, vågå: a, vagan: a, "xn--vgan-qoa": a, vågan: a, vagsoy: a, "xn--vgsy-qoa0j": a, vågsøy: a, vaksdal: a, valle: a, vang: a, vanylven: a, vardo: a, "xn--vard-jra": a, vardø: a, varggat: a, "xn--vrggt-xqad": a, várggát: a, varoy: a, vefsn: a, vega: a, vegarshei: a, "xn--vegrshei-c0a": a, vegårshei: a, vennesla: a, verdal: a, verran: a, vestby: a, vestfold: [0, { sande: a }], vestnes: a, "vestre-slidre": a, "vestre-toten": a, vestvagoy: a, "xn--vestvgy-ixa6o": a, vestvågøy: a, vevelstad: a, vik: a, vikna: a, vindafjord: a, voagat: a, volda: a, voss: a, co: e, "123hjemmeside": e, myspreadshop: e }], np: p, nr: ba, nu: [1, { merseine: e, mine: e, shacknet: e, enterprisecloud: e }], nz: [1, { ac: a, co: a, cri: a, geek: a, gen: a, govt: a, health: a, iwi: a, kiwi: a, maori: a, "xn--mori-qsa": a, māori: a, mil: a, net: a, org: a, parliament: a, school: a, cloudns: e }], om: [1, { co: a, com: a, edu: a, gov: a, med: a, museum: a, net: a, org: a, pro: a }], onion: a, org: [1, { altervista: e, pimienta: e, poivron: e, potager: e, sweetpepper: e, cdn77: [0, { c: e, rsc: e }], "cdn77-secure": [0, { origin: [0, { ssl: e }] }], ae: e, cloudns: e, "ip-dynamic": e, ddnss: e, duckdns: e, tunk: e, blogdns: e, blogsite: e, boldlygoingnowhere: e, dnsalias: e, dnsdojo: e, doesntexist: e, dontexist: e, doomdns: e, dvrdns: e, dynalias: e, dyndns: [2, { go: e, home: e }], endofinternet: e, endoftheinternet: e, "from-me": e, "game-host": e, gotdns: e, "hobby-site": e, homedns: e, homeftp: e, homelinux: e, homeunix: e, "is-a-bruinsfan": e, "is-a-candidate": e, "is-a-celticsfan": e, "is-a-chef": e, "is-a-geek": e, "is-a-knight": e, "is-a-linux-user": e, "is-a-patsfan": e, "is-a-soxfan": e, "is-found": e, "is-lost": e, "is-saved": e, "is-very-bad": e, "is-very-evil": e, "is-very-good": e, "is-very-nice": e, "is-very-sweet": e, "isa-geek": e, "kicks-ass": e, misconfused: e, podzone: e, readmyblog: e, selfip: e, sellsyourhome: e, servebbs: e, serveftp: e, servegame: e, "stuff-4-sale": e, webhop: e, accesscam: e, camdvr: e, freeddns: e, mywire: e, webredirect: e, twmail: e, eu: [2, { al: e, asso: e, at: e, au: e, be: e, bg: e, ca: e, cd: e, ch: e, cn: e, cy: e, cz: e, de: e, dk: e, edu: e, ee: e, es: e, fi: e, fr: e, gr: e, hr: e, hu: e, ie: e, il: e, in: e, int: e, is: e, it: e, jp: e, kr: e, lt: e, lu: e, lv: e, me: e, mk: e, mt: e, my: e, net: e, ng: e, nl: e, no: e, nz: e, pl: e, pt: e, ro: e, ru: e, se: e, si: e, sk: e, tr: e, uk: e, us: e }], fedorainfracloud: e, fedorapeople: e, fedoraproject: [0, { cloud: e, os: F, stg: [0, { os: F }] }], freedesktop: e, hatenadiary: e, hepforge: e, "in-dsl": e, "in-vpn": e, js: e, barsy: e, mayfirst: e, routingthecloud: e, bmoattachments: e, "cable-modem": e, collegefan: e, couchpotatofries: e, hopto: e, mlbfan: e, myftp: e, mysecuritycamera: e, nflfan: e, "no-ip": e, "read-books": e, ufcfan: e, zapto: e, dynserv: e, "now-dns": e, "is-local": e, httpbin: e, pubtls: e, jpn: e, "my-firewall": e, myfirewall: e, spdns: e, "small-web": e, dsmynas: e, familyds: e, teckids: B, tuxfamily: e, diskstation: e, hk: e, us: e, toolforge: e, wmcloud: e, wmflabs: e, za: e }], pa: [1, { abo: a, ac: a, com: a, edu: a, gob: a, ing: a, med: a, net: a, nom: a, org: a, sld: a }], pe: [1, { com: a, edu: a, gob: a, mil: a, net: a, nom: a, org: a }], pf: [1, { com: a, edu: a, org: a }], pg: p, ph: [1, { com: a, edu: a, gov: a, i: a, mil: a, net: a, ngo: a, org: a, cloudns: e }], pk: [1, { ac: a, biz: a, com: a, edu: a, fam: a, gkp: a, gob: a, gog: a, gok: a, gop: a, gos: a, gov: a, net: a, org: a, web: a }], pl: [1, { com: a, net: a, org: a, agro: a, aid: a, atm: a, auto: a, biz: a, edu: a, gmina: a, gsm: a, info: a, mail: a, media: a, miasta: a, mil: a, nieruchomosci: a, nom: a, pc: a, powiat: a, priv: a, realestate: a, rel: a, sex: a, shop: a, sklep: a, sos: a, szkola: a, targi: a, tm: a, tourism: a, travel: a, turystyka: a, gov: [1, { ap: a, griw: a, ic: a, is: a, kmpsp: a, konsulat: a, kppsp: a, kwp: a, kwpsp: a, mup: a, mw: a, oia: a, oirm: a, oke: a, oow: a, oschr: a, oum: a, pa: a, pinb: a, piw: a, po: a, pr: a, psp: a, psse: a, pup: a, rzgw: a, sa: a, sdn: a, sko: a, so: a, sr: a, starostwo: a, ug: a, ugim: a, um: a, umig: a, upow: a, uppo: a, us: a, uw: a, uzs: a, wif: a, wiih: a, winb: a, wios: a, witd: a, wiw: a, wkz: a, wsa: a, wskr: a, wsse: a, wuoz: a, wzmiuw: a, zp: a, zpisdn: a }], augustow: a, "babia-gora": a, bedzin: a, beskidy: a, bialowieza: a, bialystok: a, bielawa: a, bieszczady: a, boleslawiec: a, bydgoszcz: a, bytom: a, cieszyn: a, czeladz: a, czest: a, dlugoleka: a, elblag: a, elk: a, glogow: a, gniezno: a, gorlice: a, grajewo: a, ilawa: a, jaworzno: a, "jelenia-gora": a, jgora: a, kalisz: a, karpacz: a, kartuzy: a, kaszuby: a, katowice: a, "kazimierz-dolny": a, kepno: a, ketrzyn: a, klodzko: a, kobierzyce: a, kolobrzeg: a, konin: a, konskowola: a, kutno: a, lapy: a, lebork: a, legnica: a, lezajsk: a, limanowa: a, lomza: a, lowicz: a, lubin: a, lukow: a, malbork: a, malopolska: a, mazowsze: a, mazury: a, mielec: a, mielno: a, mragowo: a, naklo: a, nowaruda: a, nysa: a, olawa: a, olecko: a, olkusz: a, olsztyn: a, opoczno: a, opole: a, ostroda: a, ostroleka: a, ostrowiec: a, ostrowwlkp: a, pila: a, pisz: a, podhale: a, podlasie: a, polkowice: a, pomorskie: a, pomorze: a, prochowice: a, pruszkow: a, przeworsk: a, pulawy: a, radom: a, "rawa-maz": a, rybnik: a, rzeszow: a, sanok: a, sejny: a, skoczow: a, slask: a, slupsk: a, sosnowiec: a, "stalowa-wola": a, starachowice: a, stargard: a, suwalki: a, swidnica: a, swiebodzin: a, swinoujscie: a, szczecin: a, szczytno: a, tarnobrzeg: a, tgory: a, turek: a, tychy: a, ustka: a, walbrzych: a, warmia: a, warszawa: a, waw: a, wegrow: a, wielun: a, wlocl: a, wloclawek: a, wodzislaw: a, wolomin: a, wroclaw: a, zachpomor: a, zagan: a, zarow: a, zgora: a, zgorzelec: a, art: e, gliwice: e, krakow: e, poznan: e, wroc: e, zakopane: e, beep: e, "ecommerce-shop": e, cfolks: e, dfirma: e, dkonto: e, you2: e, shoparena: e, homesklep: e, sdscloud: e, unicloud: e, lodz: e, pabianice: e, plock: e, sieradz: e, skierniewice: e, zgierz: e, krasnik: e, leczna: e, lubartow: e, lublin: e, poniatowa: e, swidnik: e, co: e, torun: e, simplesite: e, myspreadshop: e, gda: e, gdansk: e, gdynia: e, med: e, sopot: e, bielsko: e }], pm: [1, { own: e, name: e }], pn: [1, { co: a, edu: a, gov: a, net: a, org: a }], post: a, pr: [1, { biz: a, com: a, edu: a, gov: a, info: a, isla: a, name: a, net: a, org: a, pro: a, ac: a, est: a, prof: a }], pro: [1, { aaa: a, aca: a, acct: a, avocat: a, bar: a, cpa: a, eng: a, jur: a, law: a, med: a, recht: a, "12chars": e, cloudns: e, barsy: e, ngrok: e }], ps: [1, { com: a, edu: a, gov: a, net: a, org: a, plo: a, sec: a }], pt: [1, { com: a, edu: a, gov: a, int: a, net: a, nome: a, org: a, publ: a, "123paginaweb": e }], pw: [1, { gov: a, cloudns: e, x443: e }], py: [1, { com: a, coop: a, edu: a, gov: a, mil: a, net: a, org: a }], qa: [1, { com: a, edu: a, gov: a, mil: a, name: a, net: a, org: a, sch: a }], re: [1, { asso: a, com: a, netlib: e, can: e }], ro: [1, { arts: a, com: a, firm: a, info: a, nom: a, nt: a, org: a, rec: a, store: a, tm: a, www: a, co: e, shop: e, barsy: e }], rs: [1, { ac: a, co: a, edu: a, gov: a, in: a, org: a, brendly: pa, barsy: e, ox: e }], ru: [1, { ac: e, edu: e, gov: e, int: e, mil: e, eurodir: e, adygeya: e, bashkiria: e, bir: e, cbg: e, com: e, dagestan: e, grozny: e, kalmykia: e, kustanai: e, marine: e, mordovia: e, msk: e, mytis: e, nalchik: e, nov: e, pyatigorsk: e, spb: e, vladikavkaz: e, vladimir: e, na4u: e, mircloud: e, myjino: [2, { hosting: o, landing: o, spectrum: o, vps: o }], cldmail: [0, { hb: e }], mcdir: [2, { vps: e }], mcpre: e, net: e, org: e, pp: e, lk3: e, ras: e }], rw: [1, { ac: a, co: a, coop: a, gov: a, mil: a, net: a, org: a }], sa: [1, { com: a, edu: a, gov: a, med: a, net: a, org: a, pub: a, sch: a }], sb: i, sc: i, sd: [1, { com: a, edu: a, gov: a, info: a, med: a, net: a, org: a, tv: a }], se: [1, { a, ac: a, b: a, bd: a, brand: a, c: a, d: a, e: a, f: a, fh: a, fhsk: a, fhv: a, g: a, h: a, i: a, k: a, komforb: a, kommunalforbund: a, komvux: a, l: a, lanbib: a, m: a, n: a, naturbruksgymn: a, o: a, org: a, p: a, parti: a, pp: a, press: a, r: a, s: a, t: a, tm: a, u: a, w: a, x: a, y: a, z: a, com: e, iopsys: e, "123minsida": e, itcouldbewor: e, myspreadshop: e }], sg: [1, { com: a, edu: a, gov: a, net: a, org: a, enscaled: e }], sh: [1, { com: a, gov: a, mil: a, net: a, org: a, hashbang: e, botda: e, platform: [0, { ent: e, eu: e, us: e }], now: e }], si: [1, { f5: e, gitapp: e, gitpage: e }], sj: a, sk: a, sl: i, sm: a, sn: [1, { art: a, com: a, edu: a, gouv: a, org: a, perso: a, univ: a }], so: [1, { com: a, edu: a, gov: a, me: a, net: a, org: a, surveys: e }], sr: a, ss: [1, { biz: a, co: a, com: a, edu: a, gov: a, me: a, net: a, org: a, sch: a }], st: [1, { co: a, com: a, consulado: a, edu: a, embaixada: a, mil: a, net: a, org: a, principe: a, saotome: a, store: a, helioho: e, kirara: e, noho: e }], su: [1, { abkhazia: e, adygeya: e, aktyubinsk: e, arkhangelsk: e, armenia: e, ashgabad: e, azerbaijan: e, balashov: e, bashkiria: e, bryansk: e, bukhara: e, chimkent: e, dagestan: e, "east-kazakhstan": e, exnet: e, georgia: e, grozny: e, ivanovo: e, jambyl: e, kalmykia: e, kaluga: e, karacol: e, karaganda: e, karelia: e, khakassia: e, krasnodar: e, kurgan: e, kustanai: e, lenug: e, mangyshlak: e, mordovia: e, msk: e, murmansk: e, nalchik: e, navoi: e, "north-kazakhstan": e, nov: e, obninsk: e, penza: e, pokrovsk: e, sochi: e, spb: e, tashkent: e, termez: e, togliatti: e, troitsk: e, tselinograd: e, tula: e, tuva: e, vladikavkaz: e, vladimir: e, vologda: e }], sv: [1, { com: a, edu: a, gob: a, org: a, red: a }], sx: l, sy: n, sz: [1, { ac: a, co: a, org: a }], tc: a, td: a, tel: a, tf: [1, { sch: e }], tg: a, th: [1, { ac: a, co: a, go: a, in: a, mi: a, net: a, or: a, online: e, shop: e }], tj: [1, { ac: a, biz: a, co: a, com: a, edu: a, go: a, gov: a, int: a, mil: a, name: a, net: a, nic: a, org: a, test: a, web: a }], tk: a, tl: l, tm: [1, { co: a, com: a, edu: a, gov: a, mil: a, net: a, nom: a, org: a }], tn: [1, { com: a, ens: a, fin: a, gov: a, ind: a, info: a, intl: a, mincom: a, nat: a, net: a, org: a, perso: a, tourism: a, orangecloud: e }], to: [1, { 611: e, com: a, edu: a, gov: a, mil: a, net: a, org: a, oya: e, x0: e, quickconnect: sa, vpnplus: e }], tr: [1, { av: a, bbs: a, bel: a, biz: a, com: a, dr: a, edu: a, gen: a, gov: a, info: a, k12: a, kep: a, mil: a, name: a, net: a, org: a, pol: a, tel: a, tsk: a, tv: a, web: a, nc: l }], tt: [1, { biz: a, co: a, com: a, edu: a, gov: a, info: a, mil: a, name: a, net: a, org: a, pro: a }], tv: [1, { "better-than": e, dyndns: e, "on-the-web": e, "worse-than": e, from: e, sakura: e }], tw: [1, { club: a, com: [1, { mymailer: e }], ebiz: a, edu: a, game: a, gov: a, idv: a, mil: a, net: a, org: a, url: e, mydns: e }], tz: [1, { ac: a, co: a, go: a, hotel: a, info: a, me: a, mil: a, mobi: a, ne: a, or: a, sc: a, tv: a }], ua: [1, { com: a, edu: a, gov: a, in: a, net: a, org: a, cherkassy: a, cherkasy: a, chernigov: a, chernihiv: a, chernivtsi: a, chernovtsy: a, ck: a, cn: a, cr: a, crimea: a, cv: a, dn: a, dnepropetrovsk: a, dnipropetrovsk: a, donetsk: a, dp: a, if: a, "ivano-frankivsk": a, kh: a, kharkiv: a, kharkov: a, kherson: a, khmelnitskiy: a, khmelnytskyi: a, kiev: a, kirovograd: a, km: a, kr: a, kropyvnytskyi: a, krym: a, ks: a, kv: a, kyiv: a, lg: a, lt: a, lugansk: a, luhansk: a, lutsk: a, lv: a, lviv: a, mk: a, mykolaiv: a, nikolaev: a, od: a, odesa: a, odessa: a, pl: a, poltava: a, rivne: a, rovno: a, rv: a, sb: a, sebastopol: a, sevastopol: a, sm: a, sumy: a, te: a, ternopil: a, uz: a, uzhgorod: a, uzhhorod: a, vinnica: a, vinnytsia: a, vn: a, volyn: a, yalta: a, zakarpattia: a, zaporizhzhe: a, zaporizhzhia: a, zhitomir: a, zhytomyr: a, zp: a, zt: a, cc: e, inf: e, ltd: e, cx: e, ie: e, biz: e, co: e, pp: e, v: e }], ug: [1, { ac: a, co: a, com: a, edu: a, go: a, gov: a, mil: a, ne: a, or: a, org: a, sc: a, us: a }], uk: [1, { ac: a, co: [1, { bytemark: [0, { dh: e, vm: e }], layershift: W, barsy: e, barsyonline: e, retrosnub: ka, "nh-serv": e, "no-ip": e, adimo: e, myspreadshop: e }], gov: [1, { api: e, campaign: e, service: e }], ltd: a, me: a, net: a, nhs: a, org: [1, { glug: e, lug: e, lugs: e, affinitylottery: e, raffleentry: e, weeklylottery: e }], plc: a, police: a, sch: p, conn: e, copro: e, hosp: e, "independent-commission": e, "independent-inquest": e, "independent-inquiry": e, "independent-panel": e, "independent-review": e, "public-inquiry": e, "royal-commission": e, pymnt: e, barsy: e, nimsite: e, oraclegovcloudapps: o }], us: [1, { dni: a, isa: a, nsn: a, ak: d, al: d, ar: d, as: d, az: d, ca: d, co: d, ct: d, dc: d, de: [1, { cc: a, lib: e }], fl: d, ga: d, gu: d, hi: L, ia: d, id: d, il: d, in: d, ks: d, ky: d, la: d, ma: [1, { k12: [1, { chtr: a, paroch: a, pvt: a }], cc: a, lib: a }], md: d, me: d, mi: [1, { k12: a, cc: a, lib: a, "ann-arbor": a, cog: a, dst: a, eaton: a, gen: a, mus: a, tec: a, washtenaw: a }], mn: d, mo: d, ms: d, mt: d, nc: d, nd: L, ne: d, nh: d, nj: d, nm: d, nv: d, ny: d, oh: d, ok: d, or: d, pa: d, pr: d, ri: L, sc: d, sd: L, tn: d, tx: d, ut: d, va: d, vi: d, vt: d, wa: d, wi: d, wv: [1, { cc: a }], wy: d, cloudns: e, "is-by": e, "land-4-sale": e, "stuff-4-sale": e, heliohost: e, enscaled: [0, { phx: e }], mircloud: e, ngo: e, golffan: e, noip: e, pointto: e, freeddns: e, srv: [2, { gh: e, gl: e }], platterp: e, servername: e }], uy: [1, { com: a, edu: a, gub: a, mil: a, net: a, org: a }], uz: [1, { co: a, com: a, net: a, org: a }], va: a, vc: [1, { com: a, edu: a, gov: a, mil: a, net: a, org: a, gv: [2, { d: e }], "0e": o, mydns: e }], ve: [1, { arts: a, bib: a, co: a, com: a, e12: a, edu: a, firm: a, gob: a, gov: a, info: a, int: a, mil: a, net: a, nom: a, org: a, rar: a, rec: a, store: a, tec: a, web: a }], vg: [1, { edu: a }], vi: [1, { co: a, com: a, k12: a, net: a, org: a }], vn: [1, { ac: a, ai: a, biz: a, com: a, edu: a, gov: a, health: a, id: a, info: a, int: a, io: a, name: a, net: a, org: a, pro: a, angiang: a, bacgiang: a, backan: a, baclieu: a, bacninh: a, "baria-vungtau": a, bentre: a, binhdinh: a, binhduong: a, binhphuoc: a, binhthuan: a, camau: a, cantho: a, caobang: a, daklak: a, daknong: a, danang: a, dienbien: a, dongnai: a, dongthap: a, gialai: a, hagiang: a, haiduong: a, haiphong: a, hanam: a, hanoi: a, hatinh: a, haugiang: a, hoabinh: a, hungyen: a, khanhhoa: a, kiengiang: a, kontum: a, laichau: a, lamdong: a, langson: a, laocai: a, longan: a, namdinh: a, nghean: a, ninhbinh: a, ninhthuan: a, phutho: a, phuyen: a, quangbinh: a, quangnam: a, quangngai: a, quangninh: a, quangtri: a, soctrang: a, sonla: a, tayninh: a, thaibinh: a, thainguyen: a, thanhhoa: a, thanhphohochiminh: a, thuathienhue: a, tiengiang: a, travinh: a, tuyenquang: a, vinhlong: a, vinhphuc: a, yenbai: a }], vu: U, wf: [1, { biz: e, sch: e }], ws: [1, { com: a, edu: a, gov: a, net: a, org: a, advisor: o, cloud66: e, dyndns: e, mypets: e }], yt: [1, { org: e }], "xn--mgbaam7a8h": a, امارات: a, "xn--y9a3aq": a, հայ: a, "xn--54b7fta0cc": a, বাংলা: a, "xn--90ae": a, бг: a, "xn--mgbcpq6gpa1a": a, البحرين: a, "xn--90ais": a, бел: a, "xn--fiqs8s": a, 中国: a, "xn--fiqz9s": a, 中國: a, "xn--lgbbat1ad8j": a, الجزائر: a, "xn--wgbh1c": a, مصر: a, "xn--e1a4c": a, ею: a, "xn--qxa6a": a, ευ: a, "xn--mgbah1a3hjkrd": a, موريتانيا: a, "xn--node": a, გე: a, "xn--qxam": a, ελ: a, "xn--j6w193g": [1, { "xn--gmqw5a": a, "xn--55qx5d": a, "xn--mxtq1m": a, "xn--wcvs22d": a, "xn--uc0atv": a, "xn--od0alg": a }], 香港: [1, { 個人: a, 公司: a, 政府: a, 教育: a, 組織: a, 網絡: a }], "xn--2scrj9c": a, ಭಾರತ: a, "xn--3hcrj9c": a, ଭାରତ: a, "xn--45br5cyl": a, ভাৰত: a, "xn--h2breg3eve": a, भारतम्: a, "xn--h2brj9c8c": a, भारोत: a, "xn--mgbgu82a": a, ڀارت: a, "xn--rvc1e0am3e": a, ഭാരതം: a, "xn--h2brj9c": a, भारत: a, "xn--mgbbh1a": a, بارت: a, "xn--mgbbh1a71e": a, بھارت: a, "xn--fpcrj9c3d": a, భారత్: a, "xn--gecrj9c": a, ભારત: a, "xn--s9brj9c": a, ਭਾਰਤ: a, "xn--45brj9c": a, ভারত: a, "xn--xkc2dl3a5ee0h": a, இந்தியா: a, "xn--mgba3a4f16a": a, ایران: a, "xn--mgba3a4fra": a, ايران: a, "xn--mgbtx2b": a, عراق: a, "xn--mgbayh7gpa": a, الاردن: a, "xn--3e0b707e": a, 한국: a, "xn--80ao21a": a, қаз: a, "xn--q7ce6a": a, ລາວ: a, "xn--fzc2c9e2c": a, ලංකා: a, "xn--xkc2al3hye2a": a, இலங்கை: a, "xn--mgbc0a9azcg": a, المغرب: a, "xn--d1alf": a, мкд: a, "xn--l1acc": a, мон: a, "xn--mix891f": a, 澳門: a, "xn--mix082f": a, 澳门: a, "xn--mgbx4cd0ab": a, مليسيا: a, "xn--mgb9awbf": a, عمان: a, "xn--mgbai9azgqp6j": a, پاکستان: a, "xn--mgbai9a5eva00b": a, پاكستان: a, "xn--ygbi2ammx": a, فلسطين: a, "xn--90a3ac": [1, { "xn--80au": a, "xn--90azh": a, "xn--d1at": a, "xn--c1avg": a, "xn--o1ac": a, "xn--o1ach": a }], срб: [1, { ак: a, обр: a, од: a, орг: a, пр: a, упр: a }], "xn--p1ai": a, рф: a, "xn--wgbl6a": a, قطر: a, "xn--mgberp4a5d4ar": a, السعودية: a, "xn--mgberp4a5d4a87g": a, السعودیة: a, "xn--mgbqly7c0a67fbc": a, السعودیۃ: a, "xn--mgbqly7cvafr": a, السعوديه: a, "xn--mgbpl2fh": a, سودان: a, "xn--yfro4i67o": a, 新加坡: a, "xn--clchc0ea0b2g2a9gcd": a, சிங்கப்பூர்: a, "xn--ogbpf8fl": a, سورية: a, "xn--mgbtf8fl": a, سوريا: a, "xn--o3cw4h": [1, { "xn--o3cyx2a": a, "xn--12co0c3b4eva": a, "xn--m3ch0j3a": a, "xn--h3cuzk1di": a, "xn--12c1fe0br": a, "xn--12cfi8ixb8l": a }], ไทย: [1, { ทหาร: a, ธุรกิจ: a, เน็ต: a, รัฐบาล: a, ศึกษา: a, องค์กร: a }], "xn--pgbs0dh": a, تونس: a, "xn--kpry57d": a, 台灣: a, "xn--kprw13d": a, 台湾: a, "xn--nnx388a": a, 臺灣: a, "xn--j1amh": a, укр: a, "xn--mgb2ddes": a, اليمن: a, xxx: a, ye: n, za: [0, { ac: a, agric: a, alt: a, co: a, edu: a, gov: a, grondar: a, law: a, mil: a, net: a, ngo: a, nic: a, nis: a, nom: a, org: a, school: a, tm: a, web: a }], zm: [1, { ac: a, biz: a, co: a, com: a, edu: a, gov: a, info: a, mil: a, net: a, org: a, sch: a }], zw: [1, { ac: a, co: a, gov: a, mil: a, org: a }], aaa: a, aarp: a, abb: a, abbott: a, abbvie: a, abc: a, able: a, abogado: a, abudhabi: a, academy: [1, { official: e }], accenture: a, accountant: a, accountants: a, aco: a, actor: a, ads: a, adult: a, aeg: a, aetna: a, afl: a, africa: a, agakhan: a, agency: a, aig: a, airbus: a, airforce: a, airtel: a, akdn: a, alibaba: a, alipay: a, allfinanz: a, allstate: a, ally: a, alsace: a, alstom: a, amazon: a, americanexpress: a, americanfamily: a, amex: a, amfam: a, amica: a, amsterdam: a, analytics: a, android: a, anquan: a, anz: a, aol: a, apartments: a, app: [1, { adaptable: e, aiven: e, beget: o, clerk: e, clerkstage: e, wnext: e, csb: [2, { preview: e }], deta: e, ondigitalocean: e, easypanel: e, encr: e, evervault: r, expo: [2, { staging: e }], edgecompute: e, "on-fleek": e, flutterflow: e, framer: e, hosted: o, run: o, web: e, hasura: e, botdash: e, loginline: e, medusajs: e, messerli: e, netfy: e, netlify: e, ngrok: e, "ngrok-free": e, developer: o, noop: e, northflank: o, upsun: o, replit: s, nyat: e, snowflake: [0, { "*": e, privatelink: o }], streamlit: e, storipress: e, telebit: e, typedream: e, vercel: e, bookonline: e, wdh: e, zeabur: e }], apple: a, aquarelle: a, arab: a, aramco: a, archi: a, army: a, art: a, arte: a, asda: a, associates: a, athleta: a, attorney: a, auction: a, audi: a, audible: a, audio: a, auspost: a, author: a, auto: a, autos: a, aws: [1, { sagemaker: [0, { "ap-northeast-1": t, "ap-northeast-2": t, "ap-south-1": t, "ap-southeast-1": t, "ap-southeast-2": t, "ca-central-1": u, "eu-central-1": t, "eu-west-1": t, "eu-west-2": t, "us-east-1": u, "us-east-2": u, "us-west-2": u, "af-south-1": c, "ap-east-1": c, "ap-northeast-3": c, "ap-south-2": b, "ap-southeast-3": c, "ap-southeast-4": b, "ca-west-1": [0, { notebook: e, "notebook-fips": e }], "eu-central-2": c, "eu-north-1": c, "eu-south-1": c, "eu-south-2": c, "eu-west-3": c, "il-central-1": c, "me-central-1": c, "me-south-1": c, "sa-east-1": c, "us-gov-east-1": g, "us-gov-west-1": g, "us-west-1": [0, { notebook: e, "notebook-fips": e, studio: e }], experiments: o }], repost: [0, { private: o }], on: [0, { "ap-northeast-1": h, "ap-southeast-1": h, "ap-southeast-2": h, "eu-central-1": h, "eu-north-1": h, "eu-west-1": h, "us-east-1": h, "us-east-2": h, "us-west-2": h }] }], axa: a, azure: a, baby: a, baidu: a, banamex: a, band: a, bank: a, bar: a, barcelona: a, barclaycard: a, barclays: a, barefoot: a, bargains: a, baseball: a, basketball: [1, { aus: e, nz: e }], bauhaus: a, bayern: a, bbc: a, bbt: a, bbva: a, bcg: a, bcn: a, beats: a, beauty: a, beer: a, bentley: a, berlin: a, best: a, bestbuy: a, bet: a, bharti: a, bible: a, bid: a, bike: a, bing: a, bingo: a, bio: a, black: a, blackfriday: a, blockbuster: a, blog: a, bloomberg: a, blue: a, bms: a, bmw: a, bnpparibas: a, boats: a, boehringer: a, bofa: a, bom: a, bond: a, boo: a, book: a, booking: a, bosch: a, bostik: a, boston: a, bot: a, boutique: a, box: a, bradesco: a, bridgestone: a, broadway: a, broker: a, brother: a, brussels: a, build: [1, { v0: e }], builders: [1, { cloudsite: e }], business: y, buy: a, buzz: a, bzh: a, cab: a, cafe: a, cal: a, call: a, calvinklein: a, cam: a, camera: a, camp: [1, { emf: [0, { at: e }] }], canon: a, capetown: a, capital: a, capitalone: a, car: a, caravan: a, cards: a, care: a, career: a, careers: a, cars: a, casa: [1, { nabu: [0, { ui: e }] }], case: a, cash: a, casino: a, catering: a, catholic: a, cba: a, cbn: a, cbre: a, center: a, ceo: a, cern: a, cfa: a, cfd: a, chanel: a, channel: a, charity: a, chase: a, chat: a, cheap: a, chintai: a, christmas: a, chrome: a, church: a, cipriani: a, circle: a, cisco: a, citadel: a, citi: a, citic: a, city: a, claims: a, cleaning: a, click: a, clinic: a, clinique: a, clothing: a, cloud: [1, { elementor: e, encoway: [0, { eu: e }], statics: o, ravendb: e, axarnet: [0, { "es-1": e }], diadem: e, jelastic: [0, { vip: e }], jele: e, "jenv-aruba": [0, { aruba: [0, { eur: [0, { it1: e }] }], it1: e }], keliweb: [2, { cs: e }], oxa: [2, { tn: e, uk: e }], primetel: [2, { uk: e }], reclaim: [0, { ca: e, uk: e, us: e }], trendhosting: [0, { ch: e, de: e }], jotelulu: e, kuleuven: e, linkyard: e, magentosite: o, matlab: e, observablehq: e, perspecta: e, vapor: e, "on-rancher": o, scw: [0, { baremetal: [0, { "fr-par-1": e, "fr-par-2": e, "nl-ams-1": e }], "fr-par": [0, { cockpit: e, fnc: [2, { functions: e }], k8s: x, s3: e, "s3-website": e, whm: e }], instances: [0, { priv: e, pub: e }], k8s: e, "nl-ams": [0, { cockpit: e, k8s: x, s3: e, "s3-website": e, whm: e }], "pl-waw": [0, { cockpit: e, k8s: x, s3: e, "s3-website": e }], scalebook: e, smartlabeling: e }], servebolt: e, onstackit: [0, { runs: e }], trafficplex: e, "unison-services": e, urown: e, voorloper: e, zap: e }], club: [1, { cloudns: e, jele: e, barsy: e }], clubmed: a, coach: a, codes: [1, { owo: o }], coffee: a, college: a, cologne: a, commbank: a, community: [1, { nog: e, ravendb: e, myforum: e }], company: a, compare: a, computer: a, comsec: a, condos: a, construction: a, consulting: a, contact: a, contractors: a, cooking: a, cool: [1, { elementor: e, de: e }], corsica: a, country: a, coupon: a, coupons: a, courses: a, cpa: a, credit: a, creditcard: a, creditunion: a, cricket: a, crown: a, crs: a, cruise: a, cruises: a, cuisinella: a, cymru: a, cyou: a, dad: a, dance: a, data: a, date: a, dating: a, datsun: a, day: a, dclk: a, dds: a, deal: a, dealer: a, deals: a, degree: a, delivery: a, dell: a, deloitte: a, delta: a, democrat: a, dental: a, dentist: a, desi: a, design: [1, { graphic: e, bss: e }], dev: [1, { "12chars": e, myaddr: e, panel: e, lcl: o, lclstage: o, stg: o, stgstage: o, pages: e, r2: e, workers: e, deno: e, "deno-staging": e, deta: e, evervault: r, fly: e, githubpreview: e, gateway: o, hrsn: [2, { psl: [0, { sub: e, wc: [0, { "*": e, sub: o }] }] }], botdash: e, "is-a-good": e, "is-a": e, iserv: e, runcontainers: e, localcert: [0, { user: o }], loginline: e, barsy: e, mediatech: e, modx: e, ngrok: e, "ngrok-free": e, "is-a-fullstack": e, "is-cool": e, "is-not-a": e, localplayer: e, xmit: e, "platter-app": e, replit: [2, { archer: e, bones: e, canary: e, global: e, hacker: e, id: e, janeway: e, kim: e, kira: e, kirk: e, odo: e, paris: e, picard: e, pike: e, prerelease: e, reed: e, riker: e, sisko: e, spock: e, staging: e, sulu: e, tarpit: e, teams: e, tucker: e, wesley: e, worf: e }], crm: [0, { d: o, w: o, wa: o, wb: o, wc: o, wd: o, we: o, wf: o }], vercel: e, webhare: o }], dhl: a, diamonds: a, diet: a, digital: [1, { cloudapps: [2, { london: e }] }], direct: [1, { libp2p: e }], directory: a, discount: a, discover: a, dish: a, diy: a, dnp: a, docs: a, doctor: a, dog: a, domains: a, dot: a, download: a, drive: a, dtv: a, dubai: a, dunlop: a, dupont: a, durban: a, dvag: a, dvr: a, earth: a, eat: a, eco: a, edeka: a, education: y, email: [1, { crisp: [0, { on: e }], tawk: ga, tawkto: ga }], emerck: a, energy: a, engineer: a, engineering: a, enterprises: a, epson: a, equipment: a, ericsson: a, erni: a, esq: a, estate: [1, { compute: o }], eurovision: a, eus: [1, { party: ha }], events: [1, { koobin: e, co: e }], exchange: a, expert: a, exposed: a, express: a, extraspace: a, fage: a, fail: a, fairwinds: a, faith: a, family: a, fan: a, fans: a, farm: [1, { storj: e }], farmers: a, fashion: a, fast: a, fedex: a, feedback: a, ferrari: a, ferrero: a, fidelity: a, fido: a, film: a, final: a, finance: a, financial: y, fire: a, firestone: a, firmdale: a, fish: a, fishing: a, fit: a, fitness: a, flickr: a, flights: a, flir: a, florist: a, flowers: a, fly: a, foo: a, food: a, football: a, ford: a, forex: a, forsale: a, forum: a, foundation: a, fox: a, free: a, fresenius: a, frl: a, frogans: a, frontier: a, ftr: a, fujitsu: a, fun: a, fund: a, furniture: a, futbol: a, fyi: a, gal: a, gallery: a, gallo: a, gallup: a, game: a, games: [1, { pley: e, sheezy: e }], gap: a, garden: a, gay: [1, { pages: e }], gbiz: a, gdn: [1, { cnpy: e }], gea: a, gent: a, genting: a, george: a, ggee: a, gift: a, gifts: a, gives: a, giving: a, glass: a, gle: a, global: a, globo: a, gmail: a, gmbh: a, gmo: a, gmx: a, godaddy: a, gold: a, goldpoint: a, golf: a, goo: a, goodyear: a, goog: [1, { cloud: e, translate: e, usercontent: o }], google: a, gop: a, got: a, grainger: a, graphics: a, gratis: a, green: a, gripe: a, grocery: a, group: [1, { discourse: e }], gucci: a, guge: a, guide: a, guitars: a, guru: a, hair: a, hamburg: a, hangout: a, haus: a, hbo: a, hdfc: a, hdfcbank: a, health: [1, { hra: e }], healthcare: a, help: a, helsinki: a, here: a, hermes: a, hiphop: a, hisamitsu: a, hitachi: a, hiv: a, hkt: a, hockey: a, holdings: a, holiday: a, homedepot: a, homegoods: a, homes: a, homesense: a, honda: a, horse: a, hospital: a, host: [1, { cloudaccess: e, freesite: e, easypanel: e, fastvps: e, myfast: e, tempurl: e, wpmudev: e, jele: e, mircloud: e, wp2: e, half: e }], hosting: [1, { opencraft: e }], hot: a, hotels: a, hotmail: a, house: a, how: a, hsbc: a, hughes: a, hyatt: a, hyundai: a, ibm: a, icbc: a, ice: a, icu: a, ieee: a, ifm: a, ikano: a, imamat: a, imdb: a, immo: a, immobilien: a, inc: a, industries: a, infiniti: a, ing: a, ink: a, institute: a, insurance: a, insure: a, international: a, intuit: a, investments: a, ipiranga: a, irish: a, ismaili: a, ist: a, istanbul: a, itau: a, itv: a, jaguar: a, java: a, jcb: a, jeep: a, jetzt: a, jewelry: a, jio: a, jll: a, jmp: a, jnj: a, joburg: a, jot: a, joy: a, jpmorgan: a, jprs: a, juegos: a, juniper: a, kaufen: a, kddi: a, kerryhotels: a, kerrylogistics: a, kerryproperties: a, kfh: a, kia: a, kids: a, kim: a, kindle: a, kitchen: a, kiwi: a, koeln: a, komatsu: a, kosher: a, kpmg: a, kpn: a, krd: [1, { co: e, edu: e }], kred: a, kuokgroup: a, kyoto: a, lacaixa: a, lamborghini: a, lamer: a, lancaster: a, land: a, landrover: a, lanxess: a, lasalle: a, lat: a, latino: a, latrobe: a, law: a, lawyer: a, lds: a, lease: a, leclerc: a, lefrak: a, legal: a, lego: a, lexus: a, lgbt: a, lidl: a, life: a, lifeinsurance: a, lifestyle: a, lighting: a, like: a, lilly: a, limited: a, limo: a, lincoln: a, link: [1, { myfritz: e, cyon: e, dweb: o, nftstorage: [0, { ipfs: e }], mypep: e }], lipsy: a, live: [1, { aem: e, hlx: e, ewp: o }], living: a, llc: a, llp: a, loan: a, loans: a, locker: a, locus: a, lol: [1, { omg: e }], london: a, lotte: a, lotto: a, love: a, lpl: a, lplfinancial: a, ltd: a, ltda: a, lundbeck: a, luxe: a, luxury: a, madrid: a, maif: a, maison: a, makeup: a, man: a, management: [1, { router: e }], mango: a, map: a, market: a, marketing: a, markets: a, marriott: a, marshalls: a, mattel: a, mba: a, mckinsey: a, med: a, media: O, meet: a, melbourne: a, meme: a, memorial: a, men: a, menu: [1, { barsy: e, barsyonline: e }], merck: a, merckmsd: a, miami: a, microsoft: a, mini: a, mint: a, mit: a, mitsubishi: a, mlb: a, mls: a, mma: a, mobile: a, moda: a, moe: a, moi: a, mom: [1, { ind: e }], monash: a, money: a, monster: a, mormon: a, mortgage: a, moscow: a, moto: a, motorcycles: a, mov: a, movie: a, msd: a, mtn: a, mtr: a, music: a, nab: a, nagoya: a, navy: a, nba: a, nec: a, netbank: a, netflix: a, network: [1, { alces: o, co: e, arvo: e, azimuth: e, tlon: e }], neustar: a, new: a, news: [1, { noticeable: e }], next: a, nextdirect: a, nexus: a, nfl: a, ngo: a, nhk: a, nico: a, nike: a, nikon: a, ninja: a, nissan: a, nissay: a, nokia: a, norton: a, now: a, nowruz: a, nowtv: a, nra: a, nrw: a, ntt: a, nyc: a, obi: a, observer: a, office: a, okinawa: a, olayan: a, olayangroup: a, ollo: a, omega: a, one: [1, { kin: o, service: e }], ong: [1, { obl: e }], onl: a, online: [1, { eero: e, "eero-stage": e, websitebuilder: e, barsy: e }], ooo: a, open: a, oracle: a, orange: [1, { tech: e }], organic: a, origins: a, osaka: a, otsuka: a, ott: a, ovh: [1, { nerdpol: e }], page: [1, { aem: e, hlx: e, hlx3: e, translated: e, codeberg: e, heyflow: e, prvcy: e, rocky: e, pdns: e, plesk: e }], panasonic: a, paris: a, pars: a, partners: a, parts: a, party: a, pay: a, pccw: a, pet: a, pfizer: a, pharmacy: a, phd: a, philips: a, phone: a, photo: a, photography: a, photos: O, physio: a, pics: a, pictet: a, pictures: [1, { 1337: e }], pid: a, pin: a, ping: a, pink: a, pioneer: a, pizza: [1, { ngrok: e }], place: y, play: a, playstation: a, plumbing: a, plus: a, pnc: a, pohl: a, poker: a, politie: a, porn: a, pramerica: a, praxi: a, press: a, prime: a, prod: a, productions: a, prof: a, progressive: a, promo: a, properties: a, property: a, protection: a, pru: a, prudential: a, pub: [1, { id: o, kin: o, barsy: e }], pwc: a, qpon: a, quebec: a, quest: a, racing: a, radio: a, read: a, realestate: a, realtor: a, realty: a, recipes: a, red: a, redstone: a, redumbrella: a, rehab: a, reise: a, reisen: a, reit: a, reliance: a, ren: a, rent: a, rentals: a, repair: a, report: a, republican: a, rest: a, restaurant: a, review: a, reviews: a, rexroth: a, rich: a, richardli: a, ricoh: a, ril: a, rio: a, rip: [1, { clan: e }], rocks: [1, { myddns: e, stackit: e, "lima-city": e, webspace: e }], rodeo: a, rogers: a, room: a, rsvp: a, rugby: a, ruhr: a, run: [1, { development: e, ravendb: e, liara: [2, { iran: e }], servers: e, build: o, code: o, database: o, migration: o, onporter: e, repl: e, stackit: e, val: [0, { express: e, web: e }], wix: e }], rwe: a, ryukyu: a, saarland: a, safe: a, safety: a, sakura: a, sale: a, salon: a, samsclub: a, samsung: a, sandvik: a, sandvikcoromant: a, sanofi: a, sap: a, sarl: a, sas: a, save: a, saxo: a, sbi: a, sbs: a, scb: a, schaeffler: a, schmidt: a, scholarships: a, school: a, schule: a, schwarz: a, science: a, scot: [1, { gov: [2, { service: e }] }], search: a, seat: a, secure: a, security: a, seek: a, select: a, sener: a, services: [1, { loginline: e }], seven: a, sew: a, sex: a, sexy: a, sfr: a, shangrila: a, sharp: a, shell: a, shia: a, shiksha: a, shoes: a, shop: [1, { base: e, hoplix: e, barsy: e, barsyonline: e, shopware: e }], shopping: a, shouji: a, show: a, silk: a, sina: a, singles: a, site: [1, { canva: z, cloudera: o, convex: e, cyon: e, fastvps: e, heyflow: e, jele: e, jouwweb: e, loginline: e, barsy: e, notion: e, omniwe: e, opensocial: e, madethis: e, platformsh: o, tst: o, byen: e, srht: e, novecore: e, wpsquared: e }], ski: a, skin: a, sky: a, skype: a, sling: a, smart: a, smile: a, sncf: a, soccer: a, social: a, softbank: a, software: a, sohu: a, solar: a, solutions: a, song: a, sony: a, soy: a, spa: a, space: [1, { myfast: e, heiyu: e, hf: [2, { static: e }], "app-ionos": e, project: e, uber: e, xs4all: e }], sport: a, spot: a, srl: a, stada: a, staples: a, star: a, statebank: a, statefarm: a, stc: a, stcgroup: a, stockholm: a, storage: a, store: [1, { barsy: e, sellfy: e, shopware: e, storebase: e }], stream: a, studio: a, study: a, style: a, sucks: a, supplies: a, supply: a, support: [1, { barsy: e }], surf: a, surgery: a, suzuki: a, swatch: a, swiss: a, sydney: a, systems: [1, { knightpoint: e }], tab: a, taipei: a, talk: a, taobao: a, target: a, tatamotors: a, tatar: a, tattoo: a, tax: a, taxi: a, tci: a, tdk: a, team: [1, { discourse: e, jelastic: e }], tech: [1, { cleverapps: e }], technology: y, temasek: a, tennis: a, teva: a, thd: a, theater: a, theatre: a, tiaa: a, tickets: a, tienda: a, tips: a, tires: a, tirol: a, tjmaxx: a, tjx: a, tkmaxx: a, tmall: a, today: [1, { prequalifyme: e }], tokyo: a, tools: [1, { addr: da, myaddr: e }], top: [1, { ntdll: e, wadl: o }], toray: a, toshiba: a, total: a, tours: a, town: a, toyota: a, toys: a, trade: a, trading: a, training: a, travel: a, travelers: a, travelersinsurance: a, trust: a, trv: a, tube: a, tui: a, tunes: a, tushu: a, tvs: a, ubank: a, ubs: a, unicom: a, university: a, uno: a, uol: a, ups: a, vacations: a, vana: a, vanguard: a, vegas: a, ventures: a, verisign: a, versicherung: a, vet: a, viajes: a, video: a, vig: a, viking: a, villas: a, vin: a, vip: a, virgin: a, visa: a, vision: a, viva: a, vivo: a, vlaanderen: a, vodka: a, volvo: a, vote: a, voting: a, voto: a, voyage: a, wales: a, walmart: a, walter: a, wang: a, wanggou: a, watch: a, watches: a, weather: a, weatherchannel: a, webcam: a, weber: a, website: O, wed: a, wedding: a, weibo: a, weir: a, whoswho: a, wien: a, wiki: O, williamhill: a, win: a, windows: a, wine: a, winners: a, wme: a, wolterskluwer: a, woodside: a, work: a, works: a, world: a, wow: a, wtc: a, wtf: a, xbox: a, xerox: a, xihuan: a, xin: a, "xn--11b4c3d": a, कॉम: a, "xn--1ck2e1b": a, セール: a, "xn--1qqw23a": a, 佛山: a, "xn--30rr7y": a, 慈善: a, "xn--3bst00m": a, 集团: a, "xn--3ds443g": a, 在线: a, "xn--3pxu8k": a, 点看: a, "xn--42c2d9a": a, คอม: a, "xn--45q11c": a, 八卦: a, "xn--4gbrim": a, موقع: a, "xn--55qw42g": a, 公益: a, "xn--55qx5d": a, 公司: a, "xn--5su34j936bgsg": a, 香格里拉: a, "xn--5tzm5g": a, 网站: a, "xn--6frz82g": a, 移动: a, "xn--6qq986b3xl": a, 我爱你: a, "xn--80adxhks": a, москва: a, "xn--80aqecdr1a": a, католик: a, "xn--80asehdb": a, онлайн: a, "xn--80aswg": a, сайт: a, "xn--8y0a063a": a, 联通: a, "xn--9dbq2a": a, קום: a, "xn--9et52u": a, 时尚: a, "xn--9krt00a": a, 微博: a, "xn--b4w605ferd": a, 淡马锡: a, "xn--bck1b9a5dre4c": a, ファッション: a, "xn--c1avg": a, орг: a, "xn--c2br7g": a, नेट: a, "xn--cck2b3b": a, ストア: a, "xn--cckwcxetd": a, アマゾン: a, "xn--cg4bki": a, 삼성: a, "xn--czr694b": a, 商标: a, "xn--czrs0t": a, 商店: a, "xn--czru2d": a, 商城: a, "xn--d1acj3b": a, дети: a, "xn--eckvdtc9d": a, ポイント: a, "xn--efvy88h": a, 新闻: a, "xn--fct429k": a, 家電: a, "xn--fhbei": a, كوم: a, "xn--fiq228c5hs": a, 中文网: a, "xn--fiq64b": a, 中信: a, "xn--fjq720a": a, 娱乐: a, "xn--flw351e": a, 谷歌: a, "xn--fzys8d69uvgm": a, 電訊盈科: a, "xn--g2xx48c": a, 购物: a, "xn--gckr3f0f": a, クラウド: a, "xn--gk3at1e": a, 通販: a, "xn--hxt814e": a, 网店: a, "xn--i1b6b1a6a2e": a, संगठन: a, "xn--imr513n": a, 餐厅: a, "xn--io0a7i": a, 网络: a, "xn--j1aef": a, ком: a, "xn--jlq480n2rg": a, 亚马逊: a, "xn--jvr189m": a, 食品: a, "xn--kcrx77d1x4a": a, 飞利浦: a, "xn--kput3i": a, 手机: a, "xn--mgba3a3ejt": a, ارامكو: a, "xn--mgba7c0bbn0a": a, العليان: a, "xn--mgbab2bd": a, بازار: a, "xn--mgbca7dzdo": a, ابوظبي: a, "xn--mgbi4ecexp": a, كاثوليك: a, "xn--mgbt3dhd": a, همراه: a, "xn--mk1bu44c": a, 닷컴: a, "xn--mxtq1m": a, 政府: a, "xn--ngbc5azd": a, شبكة: a, "xn--ngbe9e0a": a, بيتك: a, "xn--ngbrx": a, عرب: a, "xn--nqv7f": a, 机构: a, "xn--nqv7fs00ema": a, 组织机构: a, "xn--nyqy26a": a, 健康: a, "xn--otu796d": a, 招聘: a, "xn--p1acf": [1, { "xn--90amc": e, "xn--j1aef": e, "xn--j1ael8b": e, "xn--h1ahn": e, "xn--j1adp": e, "xn--c1avg": e, "xn--80aaa0cvac": e, "xn--h1aliz": e, "xn--90a1af": e, "xn--41a": e }], рус: [1, { биз: e, ком: e, крым: e, мир: e, мск: e, орг: e, самара: e, сочи: e, спб: e, я: e }], "xn--pssy2u": a, 大拿: a, "xn--q9jyb4c": a, みんな: a, "xn--qcka1pmc": a, グーグル: a, "xn--rhqv96g": a, 世界: a, "xn--rovu88b": a, 書籍: a, "xn--ses554g": a, 网址: a, "xn--t60b56a": a, 닷넷: a, "xn--tckwe": a, コム: a, "xn--tiq49xqyj": a, 天主教: a, "xn--unup4y": a, 游戏: a, "xn--vermgensberater-ctb": a, vermögensberater: a, "xn--vermgensberatung-pwb": a, vermögensberatung: a, "xn--vhquv": a, 企业: a, "xn--vuq861b": a, 信息: a, "xn--w4r85el8fhu5dnra": a, 嘉里大酒店: a, "xn--w4rs40l": a, 嘉里: a, "xn--xhq521b": a, 广东: a, "xn--zfr164b": a, 政务: a, xyz: [1, { botdash: e, telebit: o }], yachts: a, yahoo: a, yamaxun: a, yandex: a, yodobashi: a, yoga: a, yokohama: a, you: a, youtube: a, yun: a, zappos: a, zara: a, zero: a, zip: a, zone: [1, { cloud66: e, triton: o, stackit: e, lima: e }], zuerich: a }];
|
|
502
502
|
}();
|
|
503
|
-
function
|
|
504
|
-
let o = null,
|
|
505
|
-
for (;
|
|
506
|
-
const
|
|
507
|
-
|
|
503
|
+
function ja(a, e, i, n) {
|
|
504
|
+
let o = null, r = e;
|
|
505
|
+
for (; r !== void 0 && (r[0] & n && (o = { index: i + 1, isIcann: r[0] === 1, isPrivate: r[0] === 2 }), i !== -1); ) {
|
|
506
|
+
const s = r[1];
|
|
507
|
+
r = Object.prototype.hasOwnProperty.call(s, a[i]) ? s[a[i]] : s["*"], i -= 1;
|
|
508
508
|
}
|
|
509
509
|
return o;
|
|
510
510
|
}
|
|
511
|
-
function
|
|
512
|
-
var
|
|
513
|
-
if (function(
|
|
514
|
-
if (!
|
|
515
|
-
const
|
|
516
|
-
if (
|
|
517
|
-
if (
|
|
518
|
-
if (
|
|
519
|
-
if (
|
|
520
|
-
if (
|
|
521
|
-
if (
|
|
511
|
+
function Ra(a, e, i) {
|
|
512
|
+
var n;
|
|
513
|
+
if (function(h, c, t) {
|
|
514
|
+
if (!c.allowPrivateDomains && h.length > 3) {
|
|
515
|
+
const b = h.length - 1, u = h.charCodeAt(b), g = h.charCodeAt(b - 1), p = h.charCodeAt(b - 2), y = h.charCodeAt(b - 3);
|
|
516
|
+
if (u === 109 && g === 111 && p === 99 && y === 46) return t.isIcann = !0, t.isPrivate = !1, t.publicSuffix = "com", !0;
|
|
517
|
+
if (u === 103 && g === 114 && p === 111 && y === 46) return t.isIcann = !0, t.isPrivate = !1, t.publicSuffix = "org", !0;
|
|
518
|
+
if (u === 117 && g === 100 && p === 101 && y === 46) return t.isIcann = !0, t.isPrivate = !1, t.publicSuffix = "edu", !0;
|
|
519
|
+
if (u === 118 && g === 111 && p === 103 && y === 46) return t.isIcann = !0, t.isPrivate = !1, t.publicSuffix = "gov", !0;
|
|
520
|
+
if (u === 116 && g === 101 && p === 110 && y === 46) return t.isIcann = !0, t.isPrivate = !1, t.publicSuffix = "net", !0;
|
|
521
|
+
if (u === 101 && g === 100 && p === 46) return t.isIcann = !0, t.isPrivate = !1, t.publicSuffix = "de", !0;
|
|
522
522
|
}
|
|
523
523
|
return !1;
|
|
524
524
|
}(a, e, i)) return;
|
|
525
|
-
const o = a.split("."),
|
|
526
|
-
if (
|
|
527
|
-
const
|
|
528
|
-
if (
|
|
529
|
-
i.isIcann = !1, i.isPrivate = !1, i.publicSuffix = (
|
|
525
|
+
const o = a.split("."), r = (e.allowPrivateDomains ? 2 : 0) | (e.allowIcannDomains ? 1 : 0), s = ja(o, Va, o.length - 1, r);
|
|
526
|
+
if (s !== null) return i.isIcann = s.isIcann, i.isPrivate = s.isPrivate, void (i.publicSuffix = o.slice(s.index + 1).join("."));
|
|
527
|
+
const l = ja(o, Ga, o.length - 1, r);
|
|
528
|
+
if (l !== null) return i.isIcann = l.isIcann, i.isPrivate = l.isPrivate, void (i.publicSuffix = o.slice(l.index).join("."));
|
|
529
|
+
i.isIcann = !1, i.isPrivate = !1, i.publicSuffix = (n = o[o.length - 1]) !== null && n !== void 0 ? n : null;
|
|
530
530
|
}
|
|
531
|
-
globalThis.fetch =
|
|
532
|
-
const
|
|
531
|
+
globalThis.fetch = Sa;
|
|
532
|
+
const Fa = ["identitytoolkit.googleapis.com", "t.co", "*.twitter.com", "*.gravatar.com", "*.googleapis.com", "*.amazonaws.com", "*.smooch.io", "*.zendesk.com"], aa = new class {
|
|
533
533
|
constructor() {
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
this.contextManager =
|
|
534
|
+
k(this, "headerNameTracing", "X-Sf3-Rid");
|
|
535
|
+
k(this, "domainsToNotPropagateHeadersTo", []);
|
|
536
|
+
k(this, "contextManager");
|
|
537
|
+
k(this, "domainCache", /* @__PURE__ */ new Map());
|
|
538
|
+
this.contextManager = _.getInstance();
|
|
539
539
|
}
|
|
540
540
|
extractDomain(a) {
|
|
541
541
|
try {
|
|
542
|
-
const e = function(i,
|
|
543
|
-
return
|
|
542
|
+
const e = function(i, n = {}) {
|
|
543
|
+
return _a(i, 0, Ra, n, { domain: null, domainWithoutSuffix: null, hostname: null, isIcann: null, isIp: null, isPrivate: null, publicSuffix: null, subdomain: null });
|
|
544
544
|
}(a);
|
|
545
545
|
if (e && e.domain && e.publicSuffix) return e.subdomain ? `${e.subdomain}.${e.domain}.${e.publicSuffix}` : `${e.domain}.${e.publicSuffix}`;
|
|
546
546
|
} catch (e) {
|
|
547
|
-
|
|
547
|
+
m().sfDebug && console.error("Error extracting domain:", e, a);
|
|
548
548
|
}
|
|
549
549
|
return "";
|
|
550
550
|
}
|
|
551
551
|
domainMatchesExclusionList(a) {
|
|
552
552
|
if (this.domainCache.has(a)) return this.domainCache.get(a);
|
|
553
553
|
const e = this.domainsToNotPropagateHeadersTo.some((i) => {
|
|
554
|
-
const
|
|
555
|
-
return new RegExp(`^${
|
|
554
|
+
const n = i.replace(/\*/g, ".*");
|
|
555
|
+
return new RegExp(`^${n}$`).test(a);
|
|
556
556
|
});
|
|
557
557
|
return this.domainCache.set(a, e), e;
|
|
558
558
|
}
|
|
559
559
|
addHeaders(a, e) {
|
|
560
|
-
const i = this.contextManager.getOrSetSfTraceId(),
|
|
561
|
-
|
|
560
|
+
const i = this.contextManager.getOrSetSfTraceId(), n = this.extractDomain(e);
|
|
561
|
+
n && !this.domainMatchesExclusionList(n) && (a[this.headerNameTracing] = i);
|
|
562
562
|
}
|
|
563
563
|
getDomainsToNotPropagateHeadersTo(a = []) {
|
|
564
|
-
return this.domainsToNotPropagateHeadersTo = [...
|
|
564
|
+
return this.domainsToNotPropagateHeadersTo = [...Fa, ...a].map((e) => e.toLowerCase()), this.domainCache.clear(), this.domainsToNotPropagateHeadersTo;
|
|
565
565
|
}
|
|
566
566
|
}();
|
|
567
|
-
function
|
|
567
|
+
function Ja(a = []) {
|
|
568
568
|
(function(e, i) {
|
|
569
569
|
try {
|
|
570
570
|
require.resolve(i), e(), console.log(`Patched ${i}`);
|
|
571
|
-
} catch (
|
|
572
|
-
console.warn(`Could not patch ${i}: ${
|
|
571
|
+
} catch (n) {
|
|
572
|
+
console.warn(`Could not patch ${i}: ${n.message}`);
|
|
573
573
|
}
|
|
574
574
|
})(() => function(e = []) {
|
|
575
|
-
|
|
576
|
-
const i =
|
|
577
|
-
|
|
578
|
-
let
|
|
575
|
+
m().sfDebug && console.log("Initializing HTTP/HTTPS request patch..."), new La().doSend(aa.getDomainsToNotPropagateHeadersTo(e)), m().sfDebug && console.log("Domains excluded from header propagation:", e);
|
|
576
|
+
const i = X.request.bind(X), n = Y.request.bind(Y);
|
|
577
|
+
X.request = function(o, r) {
|
|
578
|
+
let s;
|
|
579
579
|
try {
|
|
580
580
|
if (typeof o == "string") {
|
|
581
|
-
const
|
|
582
|
-
|
|
583
|
-
} else o instanceof
|
|
584
|
-
if (
|
|
585
|
-
const
|
|
586
|
-
e.some((
|
|
587
|
-
} else
|
|
588
|
-
} catch (
|
|
589
|
-
throw
|
|
581
|
+
const l = new K(o);
|
|
582
|
+
s = { protocol: l.protocol || "http:", hostname: l.hostname, path: l.pathname + l.search, headers: {} };
|
|
583
|
+
} else o instanceof K ? s = { protocol: o.protocol || "http:", hostname: o.hostname, path: o.pathname + o.search, headers: {} } : (s = { ...o }, s.protocol || (s.protocol = "http:"));
|
|
584
|
+
if (s.headers) {
|
|
585
|
+
const l = `${s.protocol}//${s.hostname}`;
|
|
586
|
+
e.some((h) => l.includes(h)) ? m().sfDebug && console.log(`Skipping header addition for excluded domain: ${l}`) : aa.addHeaders(s.headers, l);
|
|
587
|
+
} else m().sfDebug && console.warn("No headers found in HTTP request options. Skipping header addition.");
|
|
588
|
+
} catch (l) {
|
|
589
|
+
throw m().sfDebug && console.error("Error while processing HTTP request options:", l), l;
|
|
590
590
|
}
|
|
591
|
-
return i(
|
|
592
|
-
},
|
|
593
|
-
let
|
|
591
|
+
return i(s, r);
|
|
592
|
+
}, Y.request = function(o, r) {
|
|
593
|
+
let s;
|
|
594
594
|
try {
|
|
595
595
|
if (typeof o == "string") {
|
|
596
|
-
const
|
|
597
|
-
|
|
598
|
-
} else o instanceof
|
|
599
|
-
if (
|
|
600
|
-
const
|
|
601
|
-
e.some((
|
|
602
|
-
} else
|
|
603
|
-
} catch (
|
|
604
|
-
throw
|
|
596
|
+
const l = new K(o);
|
|
597
|
+
s = { protocol: l.protocol || "https:", hostname: l.hostname, path: l.pathname + l.search, headers: {} };
|
|
598
|
+
} else o instanceof K ? s = { protocol: o.protocol || "https:", hostname: o.hostname, path: o.pathname + o.search, headers: {} } : (s = { ...o }, s.protocol || (s.protocol = "https:"));
|
|
599
|
+
if (s.headers) {
|
|
600
|
+
const l = `${s.protocol}//${s.hostname}`;
|
|
601
|
+
e.some((h) => l.includes(h)) ? m().sfDebug && console.log(`Skipping header addition for excluded domain: ${l}`) : aa.addHeaders(s.headers, l);
|
|
602
|
+
} else m().sfDebug && console.warn("No headers found in HTTPS request options. Skipping header addition.");
|
|
603
|
+
} catch (l) {
|
|
604
|
+
throw m().sfDebug && console.error("Error while processing HTTPS request options:", l), l;
|
|
605
605
|
}
|
|
606
|
-
return s
|
|
607
|
-
},
|
|
606
|
+
return n(s, r);
|
|
607
|
+
}, m().sfDebug && console.log("✅ HTTP and HTTPS request methods patched globally.");
|
|
608
608
|
}(a), "http");
|
|
609
609
|
}
|
|
610
|
-
class
|
|
610
|
+
class Wa extends ia {
|
|
611
611
|
constructor() {
|
|
612
612
|
super(), this.setOperationName("UpdateServiceDetails");
|
|
613
613
|
}
|
|
@@ -628,46 +628,47 @@ class Ja extends oa {
|
|
|
628
628
|
)
|
|
629
629
|
}
|
|
630
630
|
`, i = this.getVariables();
|
|
631
|
-
|
|
631
|
+
C(this.endpoint, this.operationName, e, i);
|
|
632
632
|
}
|
|
633
633
|
}
|
|
634
634
|
function se(a) {
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
635
|
+
const { config: e, created: i } = function(r) {
|
|
636
|
+
let s = !1;
|
|
637
|
+
return E || (s = !0, r || (r = {}), E = new Aa(r)), { config: E, created: s };
|
|
638
|
+
}(a);
|
|
639
|
+
if (!i) return;
|
|
639
640
|
if (e.sfDebug && console.log(" Updated configuration after applying options:", e), !e.apiKey || !e.apiGraphqlEndpoint) return void console.error(" The required config is not provided : ", e);
|
|
640
|
-
const
|
|
641
|
-
|
|
642
|
-
function
|
|
643
|
-
|
|
641
|
+
const n = new ia();
|
|
642
|
+
n.setServiceUUID(e.serviceUUID), function(r) {
|
|
643
|
+
function s(u, g) {
|
|
644
|
+
r.setOperationName("CollectLogs"), r.doSend([g, u]);
|
|
644
645
|
}
|
|
645
|
-
const
|
|
646
|
-
console.log = (...
|
|
647
|
-
|
|
648
|
-
}, console.error = (...
|
|
649
|
-
|
|
650
|
-
}, console.warn = (...
|
|
651
|
-
|
|
652
|
-
}, console.info = (...
|
|
653
|
-
|
|
654
|
-
},
|
|
655
|
-
|
|
646
|
+
const l = console.log.bind(console), h = console.error.bind(console), c = console.warn.bind(console), t = console.info.bind(console), b = console.debug.bind(console);
|
|
647
|
+
console.log = (...u) => {
|
|
648
|
+
s("INFO", u.join(" ")), l(...u);
|
|
649
|
+
}, console.error = (...u) => {
|
|
650
|
+
s("ERROR", u.join(" ")), h(...u);
|
|
651
|
+
}, console.warn = (...u) => {
|
|
652
|
+
s("WARN", u.join(" ")), c(...u);
|
|
653
|
+
}, console.info = (...u) => {
|
|
654
|
+
s("INFO", u.join(" ")), t(...u);
|
|
655
|
+
}, m().logLevel === "DEBUG" && (console.debug = (...u) => {
|
|
656
|
+
s("DEBUG", u.join(" ")), b(...u);
|
|
656
657
|
});
|
|
657
|
-
}(
|
|
658
|
-
const
|
|
659
|
-
|
|
658
|
+
}(n), Ja(e.domainsToNotPropagateHeadersTo);
|
|
659
|
+
const o = new Ha();
|
|
660
|
+
o.setServiceUUID(e.serviceUUID), Oa(o), new Wa().send();
|
|
660
661
|
}
|
|
661
|
-
function
|
|
662
|
-
const o =
|
|
663
|
-
new
|
|
662
|
+
function te(a, e, i, n = !1) {
|
|
663
|
+
const o = m();
|
|
664
|
+
new Ia(o.apiKey).identify(a, e, i, n);
|
|
664
665
|
}
|
|
665
|
-
function
|
|
666
|
-
const o =
|
|
667
|
-
new
|
|
666
|
+
function re(a, e = {}, i, n = !1) {
|
|
667
|
+
const o = m();
|
|
668
|
+
new Ia(o.apiKey).addOrUpdateMetadata(a, e, i, n);
|
|
668
669
|
}
|
|
669
670
|
export {
|
|
670
|
-
|
|
671
|
-
|
|
671
|
+
re as addOrUpdateMetadata,
|
|
672
|
+
te as identify,
|
|
672
673
|
se as setupInterceptors
|
|
673
674
|
};
|