aesirx-analytics 2.2.11 → 2.2.13

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.
@@ -1,1388 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __commonJS = (cb, mod) => function __require() {
8
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
19
- // If the importer is in node compatibility mode or this is not an ESM
20
- // file that has been converted to a CommonJS file using a Babel-
21
- // compatible transform (i.e. "__esModule" has not been set), then set
22
- // "default" to the CommonJS "module.exports" for node compatibility.
23
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
24
- mod
25
- ));
26
-
27
- // node_modules/void-elements/index.js
28
- var require_void_elements = __commonJS({
29
- "node_modules/void-elements/index.js"(exports, module) {
30
- module.exports = {
31
- "area": true,
32
- "base": true,
33
- "br": true,
34
- "col": true,
35
- "embed": true,
36
- "hr": true,
37
- "img": true,
38
- "input": true,
39
- "link": true,
40
- "meta": true,
41
- "param": true,
42
- "source": true,
43
- "track": true,
44
- "wbr": true
45
- };
46
- }
47
- });
48
-
49
- // node_modules/react-i18next/dist/es/useTranslation.js
50
- import { useState, useEffect, useContext, useRef } from "react";
51
-
52
- // node_modules/react-i18next/dist/es/context.js
53
- import { createContext } from "react";
54
-
55
- // node_modules/react-i18next/dist/es/unescape.js
56
- var matchHtmlEntity = /&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g;
57
- var htmlEntities = {
58
- "&": "&",
59
- "&": "&",
60
- "&lt;": "<",
61
- "&#60;": "<",
62
- "&gt;": ">",
63
- "&#62;": ">",
64
- "&apos;": "'",
65
- "&#39;": "'",
66
- "&quot;": '"',
67
- "&#34;": '"',
68
- "&nbsp;": " ",
69
- "&#160;": " ",
70
- "&copy;": "\xA9",
71
- "&#169;": "\xA9",
72
- "&reg;": "\xAE",
73
- "&#174;": "\xAE",
74
- "&hellip;": "\u2026",
75
- "&#8230;": "\u2026",
76
- "&#x2F;": "/",
77
- "&#47;": "/"
78
- };
79
- var unescapeHtmlEntity = (m) => htmlEntities[m];
80
- var unescape = (text) => text.replace(matchHtmlEntity, unescapeHtmlEntity);
81
-
82
- // node_modules/react-i18next/dist/es/defaults.js
83
- var defaultOptions = {
84
- bindI18n: "languageChanged",
85
- bindI18nStore: "",
86
- transEmptyNodeValue: "",
87
- transSupportBasicHtmlNodes: true,
88
- transWrapTextNodes: "",
89
- transKeepBasicHtmlNodesFor: ["br", "strong", "i", "p"],
90
- useSuspense: true,
91
- unescape
92
- };
93
- function setDefaults() {
94
- let options = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
95
- defaultOptions = {
96
- ...defaultOptions,
97
- ...options
98
- };
99
- }
100
- function getDefaults() {
101
- return defaultOptions;
102
- }
103
-
104
- // node_modules/react-i18next/dist/es/i18nInstance.js
105
- var i18nInstance;
106
- function setI18n(instance) {
107
- i18nInstance = instance;
108
- }
109
- function getI18n() {
110
- return i18nInstance;
111
- }
112
-
113
- // node_modules/react-i18next/dist/es/initReactI18next.js
114
- var initReactI18next = {
115
- type: "3rdParty",
116
- init(instance) {
117
- setDefaults(instance.options.react);
118
- setI18n(instance);
119
- }
120
- };
121
-
122
- // node_modules/react-i18next/dist/es/context.js
123
- var I18nContext = createContext();
124
- var ReportNamespaces = class {
125
- constructor() {
126
- this.usedNamespaces = {};
127
- }
128
- addUsedNamespaces(namespaces) {
129
- namespaces.forEach((ns) => {
130
- if (!this.usedNamespaces[ns])
131
- this.usedNamespaces[ns] = true;
132
- });
133
- }
134
- getUsedNamespaces() {
135
- return Object.keys(this.usedNamespaces);
136
- }
137
- };
138
-
139
- // node_modules/react-i18next/dist/es/utils.js
140
- function warn() {
141
- if (console && console.warn) {
142
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
143
- args[_key] = arguments[_key];
144
- }
145
- if (typeof args[0] === "string")
146
- args[0] = `react-i18next:: ${args[0]}`;
147
- console.warn(...args);
148
- }
149
- }
150
- var alreadyWarned = {};
151
- function warnOnce() {
152
- for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
153
- args[_key2] = arguments[_key2];
154
- }
155
- if (typeof args[0] === "string" && alreadyWarned[args[0]])
156
- return;
157
- if (typeof args[0] === "string")
158
- alreadyWarned[args[0]] = /* @__PURE__ */ new Date();
159
- warn(...args);
160
- }
161
- var loadedClb = (i18n2, cb) => () => {
162
- if (i18n2.isInitialized) {
163
- cb();
164
- } else {
165
- const initialized = () => {
166
- setTimeout(() => {
167
- i18n2.off("initialized", initialized);
168
- }, 0);
169
- cb();
170
- };
171
- i18n2.on("initialized", initialized);
172
- }
173
- };
174
- function loadNamespaces(i18n2, ns, cb) {
175
- i18n2.loadNamespaces(ns, loadedClb(i18n2, cb));
176
- }
177
- function loadLanguages(i18n2, lng, ns, cb) {
178
- if (typeof ns === "string")
179
- ns = [ns];
180
- ns.forEach((n) => {
181
- if (i18n2.options.ns.indexOf(n) < 0)
182
- i18n2.options.ns.push(n);
183
- });
184
- i18n2.loadLanguages(lng, loadedClb(i18n2, cb));
185
- }
186
- function oldI18nextHasLoadedNamespace(ns, i18n2) {
187
- let options = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
188
- const lng = i18n2.languages[0];
189
- const fallbackLng = i18n2.options ? i18n2.options.fallbackLng : false;
190
- const lastLng = i18n2.languages[i18n2.languages.length - 1];
191
- if (lng.toLowerCase() === "cimode")
192
- return true;
193
- const loadNotPending = (l, n) => {
194
- const loadState = i18n2.services.backendConnector.state[`${l}|${n}`];
195
- return loadState === -1 || loadState === 2;
196
- };
197
- if (options.bindI18n && options.bindI18n.indexOf("languageChanging") > -1 && i18n2.services.backendConnector.backend && i18n2.isLanguageChangingTo && !loadNotPending(i18n2.isLanguageChangingTo, ns))
198
- return false;
199
- if (i18n2.hasResourceBundle(lng, ns))
200
- return true;
201
- if (!i18n2.services.backendConnector.backend || i18n2.options.resources && !i18n2.options.partialBundledLanguages)
202
- return true;
203
- if (loadNotPending(lng, ns) && (!fallbackLng || loadNotPending(lastLng, ns)))
204
- return true;
205
- return false;
206
- }
207
- function hasLoadedNamespace(ns, i18n2) {
208
- let options = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
209
- if (!i18n2.languages || !i18n2.languages.length) {
210
- warnOnce("i18n.languages were undefined or empty", i18n2.languages);
211
- return true;
212
- }
213
- const isNewerI18next = i18n2.options.ignoreJSONStructure !== void 0;
214
- if (!isNewerI18next) {
215
- return oldI18nextHasLoadedNamespace(ns, i18n2, options);
216
- }
217
- return i18n2.hasLoadedNamespace(ns, {
218
- lng: options.lng,
219
- precheck: (i18nInstance2, loadNotPending) => {
220
- if (options.bindI18n && options.bindI18n.indexOf("languageChanging") > -1 && i18nInstance2.services.backendConnector.backend && i18nInstance2.isLanguageChangingTo && !loadNotPending(i18nInstance2.isLanguageChangingTo, ns))
221
- return false;
222
- }
223
- });
224
- }
225
-
226
- // node_modules/react-i18next/dist/es/useTranslation.js
227
- var usePrevious = (value, ignore) => {
228
- const ref = useRef();
229
- useEffect(() => {
230
- ref.current = ignore ? ref.current : value;
231
- }, [value, ignore]);
232
- return ref.current;
233
- };
234
- function useTranslation(ns) {
235
- let props = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
236
- const {
237
- i18n: i18nFromProps
238
- } = props;
239
- const {
240
- i18n: i18nFromContext,
241
- defaultNS: defaultNSFromContext
242
- } = useContext(I18nContext) || {};
243
- const i18n2 = i18nFromProps || i18nFromContext || getI18n();
244
- if (i18n2 && !i18n2.reportNamespaces)
245
- i18n2.reportNamespaces = new ReportNamespaces();
246
- if (!i18n2) {
247
- warnOnce("You will need to pass in an i18next instance by using initReactI18next");
248
- const notReadyT = (k, optsOrDefaultValue) => {
249
- if (typeof optsOrDefaultValue === "string")
250
- return optsOrDefaultValue;
251
- if (optsOrDefaultValue && typeof optsOrDefaultValue === "object" && typeof optsOrDefaultValue.defaultValue === "string")
252
- return optsOrDefaultValue.defaultValue;
253
- return Array.isArray(k) ? k[k.length - 1] : k;
254
- };
255
- const retNotReady = [notReadyT, {}, false];
256
- retNotReady.t = notReadyT;
257
- retNotReady.i18n = {};
258
- retNotReady.ready = false;
259
- return retNotReady;
260
- }
261
- if (i18n2.options.react && i18n2.options.react.wait !== void 0)
262
- warnOnce("It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.");
263
- const i18nOptions = {
264
- ...getDefaults(),
265
- ...i18n2.options.react,
266
- ...props
267
- };
268
- const {
269
- useSuspense,
270
- keyPrefix
271
- } = i18nOptions;
272
- let namespaces = ns || defaultNSFromContext || i18n2.options && i18n2.options.defaultNS;
273
- namespaces = typeof namespaces === "string" ? [namespaces] : namespaces || ["translation"];
274
- if (i18n2.reportNamespaces.addUsedNamespaces)
275
- i18n2.reportNamespaces.addUsedNamespaces(namespaces);
276
- const ready = (i18n2.isInitialized || i18n2.initializedStoreOnce) && namespaces.every((n) => hasLoadedNamespace(n, i18n2, i18nOptions));
277
- function getT() {
278
- return i18n2.getFixedT(props.lng || null, i18nOptions.nsMode === "fallback" ? namespaces : namespaces[0], keyPrefix);
279
- }
280
- const [t, setT] = useState(getT);
281
- let joinedNS = namespaces.join();
282
- if (props.lng)
283
- joinedNS = `${props.lng}${joinedNS}`;
284
- const previousJoinedNS = usePrevious(joinedNS);
285
- const isMounted = useRef(true);
286
- useEffect(() => {
287
- const {
288
- bindI18n,
289
- bindI18nStore
290
- } = i18nOptions;
291
- isMounted.current = true;
292
- if (!ready && !useSuspense) {
293
- if (props.lng) {
294
- loadLanguages(i18n2, props.lng, namespaces, () => {
295
- if (isMounted.current)
296
- setT(getT);
297
- });
298
- } else {
299
- loadNamespaces(i18n2, namespaces, () => {
300
- if (isMounted.current)
301
- setT(getT);
302
- });
303
- }
304
- }
305
- if (ready && previousJoinedNS && previousJoinedNS !== joinedNS && isMounted.current) {
306
- setT(getT);
307
- }
308
- function boundReset() {
309
- if (isMounted.current)
310
- setT(getT);
311
- }
312
- if (bindI18n && i18n2)
313
- i18n2.on(bindI18n, boundReset);
314
- if (bindI18nStore && i18n2)
315
- i18n2.store.on(bindI18nStore, boundReset);
316
- return () => {
317
- isMounted.current = false;
318
- if (bindI18n && i18n2)
319
- bindI18n.split(" ").forEach((e2) => i18n2.off(e2, boundReset));
320
- if (bindI18nStore && i18n2)
321
- bindI18nStore.split(" ").forEach((e2) => i18n2.store.off(e2, boundReset));
322
- };
323
- }, [i18n2, joinedNS]);
324
- const isInitial = useRef(true);
325
- useEffect(() => {
326
- if (isMounted.current && !isInitial.current) {
327
- setT(getT);
328
- }
329
- isInitial.current = false;
330
- }, [i18n2, keyPrefix]);
331
- const ret = [t, i18n2, ready];
332
- ret.t = t;
333
- ret.i18n = i18n2;
334
- ret.ready = ready;
335
- if (ready)
336
- return ret;
337
- if (!ready && !useSuspense)
338
- return ret;
339
- throw new Promise((resolve) => {
340
- if (props.lng) {
341
- loadLanguages(i18n2, props.lng, namespaces, () => resolve());
342
- } else {
343
- loadNamespaces(i18n2, namespaces, () => resolve());
344
- }
345
- });
346
- }
347
-
348
- // node_modules/react-i18next/dist/es/Trans.js
349
- import { useContext as useContext2 } from "react";
350
-
351
- // node_modules/react-i18next/dist/es/TransWithoutContext.js
352
- import React, { isValidElement, cloneElement, createElement, Children } from "react";
353
-
354
- // node_modules/html-parse-stringify/dist/html-parse-stringify.module.js
355
- var import_void_elements = __toESM(require_void_elements());
356
-
357
- // node_modules/react-i18next/dist/es/withTranslation.js
358
- import { createElement as createElement2, forwardRef as forwardRefReact } from "react";
359
-
360
- // node_modules/react-i18next/dist/es/I18nextProvider.js
361
- import { createElement as createElement3, useMemo } from "react";
362
- function I18nextProvider(_ref) {
363
- let {
364
- i18n: i18n2,
365
- defaultNS,
366
- children
367
- } = _ref;
368
- const value = useMemo(() => ({
369
- i18n: i18n2,
370
- defaultNS
371
- }), [i18n2, defaultNS]);
372
- return createElement3(I18nContext.Provider, {
373
- value
374
- }, children);
375
- }
376
-
377
- // node_modules/react-i18next/dist/es/withSSR.js
378
- import { createElement as createElement4 } from "react";
379
-
380
- // node_modules/react-i18next/dist/es/useSSR.js
381
- import { useContext as useContext3 } from "react";
382
-
383
- // src/utils/AnalyticsContextProvider.tsx
384
- import React3, { useRef as useRef2, useState as useState2 } from "react";
385
-
386
- // src/translations/dk/common.json
387
- var common_default = {
388
- txt_tier_1_tier: "Tier 1",
389
- txt_tier_1_name: "Sessionsbaseret",
390
- txt_tier_1_levelname: "Grundl\xE6ggende",
391
- txt_tier_1_content: "Ideelt til nye bes\xF8gende p\xE5 webstedet, eller hvis du ikke vil have dine data gemt ud over dit nuv\xE6rende bes\xF8g.",
392
- txt_tier_1_content_custom: "I en 30-minutters session bruger vi kun adf\xE6rdsdata (ikke personlige data) til at forbedre din browseroplevelse.",
393
- txt_tier_1_term: "Du giver kun samtykke til dataindsamling i en 30-minutters session.",
394
- txt_tier_1_term_custom: "30-minutters sessionsbaseret privatliv",
395
- txt_tier_1_upgrade: "Opgrader til niveau 2-samtykke - medium",
396
- txt_tier_1_upgradetext: " & tilf\xF8j en Web3 Wallet for st\xF8rre datakontrol og samtykke eller tilbagekald til enhver tid, du v\xE6lger.",
397
- txt_tier_2_tier: "Tier 2",
398
- txt_tier_2_name: "AesirX Shield of Privacy",
399
- txt_tier_2_levelname: "Medium",
400
- txt_tier_2_content: "Ideel til personlige onlineoplevelser og sikker samtykkestyring p\xE5 tv\xE6rs af sessioner og platforme.",
401
- txt_tier_2_content_custom: "Nyd personliggjorte onlineoplevelser p\xE5 tv\xE6rs af flere sessioner og platforme med sikker administration af samtykke.",
402
- txt_tier_2_term: "Du giver samtykke til databrug p\xE5 tv\xE6rs af flere sessioner.",
403
- txt_tier_2_term_custom: "Forbedrede digitale oplevelser med Shield of Privacy",
404
- txt_tier_2_upgrade: "Opgrader til niveau 3-samtykke - h\xF8j",
405
- txt_tier_2_upgradetext: " & tilf\xF8j tegnebogsbaseret decentraliseret samtykke for at give eksplicit samtykke til dataindsamling og -behandling for den mest sikre, private og personlige oplevelse.",
406
- txt_tier_3_tier: "Tier 3",
407
- txt_tier_3_name: "Decentral tegnebog",
408
- txt_tier_3_levelname: "H\xF8j",
409
- txt_tier_3_content: "Brug din Web3 Wallet til at f\xE5 st\xF8rre kontrol over dine data.",
410
- txt_tier_3_content_custom: "Nyd st\xF8rre privatliv og mere kontrol over dine data med muligheden for at tilbagekalde samtykke til enhver tid.",
411
- txt_tier_3_term: "Du giver samtykke til, at dine data bliver brugt, som kan tilbagekaldes n\xE5r som helst, du v\xE6lger.",
412
- txt_tier_3_term_custom: "Web3 Wallet Integration",
413
- txt_tier_3_upgrade: "Opgrader til niveau 4-samtykke - superavanceret (vores h\xF8jeste niveau!)",
414
- txt_tier_3_upgradetext: " & tilf\xF8j AesirX Shield of Privacy for at give eksplicit samtykke til dataindsamling og -behandling for den mest sikre, private og personlige oplevelse.",
415
- txt_tier_4_tier: "Tier 4",
416
- txt_tier_4_name: "Kombineret tegnebog + AesirX Shield of Privacy",
417
- txt_tier_4_levelname: "Superavanceret",
418
- txt_tier_4_content: "Brug din Web3 Wallet + AesirX Shield of Privacy og f\xE5 fuld kontrol p\xE5 flere websteder over din databrug. Giv samtykke eller tilbagekald tilladelser til enhver tid for \xE6gte decentraliseret dataejerskab.",
419
- txt_tier_4_content_custom: "Kombiner din Web3 Wallet med AesirX SoP for fuld kontrol p\xE5 flere websteder og \xE6gte decentraliseret dataejerskab.",
420
- txt_tier_4_term: "Du giver samtykke til, at dine data bliver brugt, som kan tilbagekaldes n\xE5r som helst, du v\xE6lger.",
421
- txt_tier_4_term_custom: "Fuld datakontrol med Shield of Privacy",
422
- txt_tier_4_upgradetext: "Den mest personlige og privatlivsbevarende oplevelse!",
423
- txt_show_details: "Vis detaljer",
424
- txt_hide_details: "Skjul detaljer",
425
- txt_no_collect: "Vi indsamler ingen personlige data, kun brugerindsigt.",
426
- txt_shield_of_privacy: "Shield of Privacy",
427
- txt_you_can_revoke: "Tilbagekald dit samtykke til databrug, n\xE5r du \xF8nsker det.",
428
- txt_go_to: "G\xE5 til",
429
- txt_link: "link",
430
- txt_for_more_information: "for mere information.",
431
- txt_manage_consent: "Administrer samtykke",
432
- txt_revoke_consent: "Tilbagekald samtykke",
433
- txt_yes_i_consent: "Ja, jeg giver samtykke",
434
- txt_reject_consent: "Afvis samtykke",
435
- txt_please_connect: "Tilslut venligst din Concordium tegnebog",
436
- txt_please_sign: "Skriv venligst beskeden p\xE5 din tegnebog to gange og vent p\xE5, at den bliver gemt.",
437
- txt_saving: "Gemmer...",
438
- txt_please_connect_your_wallet: "Forbind venligst til din tegnebog",
439
- txt_connecting: "Opretter forbindelse",
440
- txt_here: "HER",
441
- txt_visit: "Bes\xF8g",
442
- txt_take_full_control: "Tag fuld kontrol over dine personlige data",
443
- txt_consent: "Samtykke",
444
- txt_about: "Om",
445
- txt_detail: "Detaljer",
446
- txt_consent_to_data: "Samtykke til databrug via Shield of Privacy (SoP) for fuld kontrol over dine personlige data. Oplev privatlivsrespekterende, sikker og personlig browsing uden cookies.",
447
- txt_ethical_compliant: "Etisk og kompatibel:",
448
- txt_detail_1: "<span class='fw-semibold text-dark'>Revolution\xE6r datakontrol:</span> Giv dig selv fuld kontrol over dine data.",
449
- txt_detail_2: "<span class='fw-semibold text-dark'>Dine data forbliver dine:</span> Vi garanterer, at dine data aldrig s\xE6lges eller deles.",
450
- txt_detail_3: "<span class='fw-semibold text-dark'>Vi bruger aldrig cookies:</span> Dit indhold er personliggjort uden brug af cookies.",
451
- txt_understanding_your_consent: "Forst\xE5 dine samtykkeniveauer",
452
- txt_this_website_uses: "Denne hjemmeside bruger en revolutionerende 4-trins decentraliseret samtykkemodel. Hvert niveau repr\xE6senterer et forskelligt niveau af tilladelse eller adgang, som brugere kan give til deres data.",
453
- txt_about_1: "Overholdelse sikret: Brug af SoP sikrer overholdelse af GDPR, CCPA og andre love om beskyttelse af personlige oplysninger.",
454
- txt_about_2: "Fleksibelt samtykke: Du kan til enhver tid \xE6ndre eller tr\xE6kke dit samtykke tilbage via vores <a class='text-success fw-semibold text-decoration-underline' href='https://dapp.shield.aesirx.io' target='_blank'>dApp</a>.",
455
- txt_about_3: "F\xE5 flere oplysninger: Opdag vores tilgang til databehandling i vores <a class='text-success fw-semibold text-decoration-underline' href='https://aesirx.io/privacy-policy' target= '_blank'>Privatlivspolitik</a>.",
456
- txt_about_4: "For virksomheder: Forbedre tillid, sikre brugeridentiteter og forhindre brud. Mere info p\xE5 <a class='text-success fw-semibold text-decoration-underline' href='https://shield.aesirx. io' target='_blank'>https://shield.aesirx.io</a>.",
457
- txt_your_current_level: "Dit nuv\xE6rende samtykkeniveau er:",
458
- txt_upgrade_consent_to: "Opgrader samtykke til:",
459
- txt_upgrade_consent: "Opgraderingssamtykke",
460
- txt_change_consent: "Skift samtykke",
461
- txt_upgrade_consent_text: "Opgrader dit samtykkeniveau og l\xE5s op for de fulde fordele ved Shield of Privacy for tilpassede, sikre, ID-godkendte digitale oplevelser.",
462
- txt_cancel: "Annuller"
463
- };
464
-
465
- // src/translations/en/common.json
466
- var common_default2 = {
467
- txt_tier_1_tier: "Tier 1",
468
- txt_tier_1_name: "Session-Based",
469
- txt_tier_1_levelname: "Basic",
470
- txt_tier_1_content: "Ideal for new site visitors or if you don't want your data stored beyond your current visit.",
471
- txt_tier_1_content_custom: "For a 30-minute session, we only use behavioral data (not personal data) to enhance your browsing experience.",
472
- txt_tier_1_term: "You consent to data collection for a 30-minute session only.",
473
- txt_tier_1_term_custom: "30-Minute Session Based Privacy",
474
- txt_tier_1_upgrade: "Upgrade to Tier 2 Consent - Medium",
475
- txt_tier_1_upgradetext: " & add on a Web3 Wallet for greater data control & consent or revoke at any time you choose.",
476
- txt_tier_2_tier: "Tier 2",
477
- txt_tier_2_name: "AesirX Shield of Privacy",
478
- txt_tier_2_levelname: "Medium",
479
- txt_tier_2_content: "Ideal for personalized online experiences & secure consent management across sessions & platforms.",
480
- txt_tier_2_content_custom: "Enjoy personalized online experiences across multiple sessions & platforms, with secure consent management.",
481
- txt_tier_2_term: "You consent to data use across multiple sessions.",
482
- txt_tier_2_term_custom: "Enhanced Digital Experiences with Shield of Privacy",
483
- txt_tier_2_upgrade: "Upgrade to Tier 3 Consent - High",
484
- txt_tier_2_upgradetext: " & add on Wallet-Based Decentralized Consent to give explicit consent for data collection & processing for the most secure, private & personalized experience.",
485
- txt_tier_3_tier: "Tier 3",
486
- txt_tier_3_name: "Decentralized Wallet",
487
- txt_tier_3_levelname: "High",
488
- txt_tier_3_content: "Utilize your Web3 Wallet for greater control over your data.",
489
- txt_tier_3_content_custom: "Enjoy greater privacy and more control over your data with the option to revoke consent at any time.",
490
- txt_tier_3_term: "You consent for your data to be used, which can be revoked at any time you choose.",
491
- txt_tier_3_term_custom: "Web3 Wallet Integration",
492
- txt_tier_3_upgrade: "Upgrade to Tier 4 Consent - Super Advanced (our highest tier!)",
493
- txt_tier_3_upgradetext: " & add on AesirX Shield of Privacy to give explicit consent for data collection & processing for the most secure, private & personalized experience.",
494
- txt_tier_4_tier: "Tier 4",
495
- txt_tier_4_name: "Combined Wallet + AesirX Shield of Privacy",
496
- txt_tier_4_levelname: "Super Advanced",
497
- txt_tier_4_content: "Use your Web3 Wallet + AesirX Shield of Privacy & get full multi-site control of your data use. Consent or revoke permissions at any time for true decentralized data ownership.",
498
- txt_tier_4_content_custom: "Combine your Web3 Wallet with AesirX SoP for full multi-site control & true decentralized data ownership.",
499
- txt_tier_4_term: "You consent for your data to be used, which can be revoked at any time you choose.",
500
- txt_tier_4_term_custom: "Full Data Control with Shield of Privacy",
501
- txt_tier_4_upgradetext: "The most personalized and privacy-preserving experience!",
502
- txt_show_details: "Show details",
503
- txt_hide_details: "Hide details",
504
- txt_no_collect: "We do not collect any personal data, only user insights.",
505
- txt_shield_of_privacy: "Shield of Privacy",
506
- txt_you_can_revoke: "Revoke your consent for data use whenever you wish.",
507
- txt_go_to: "Go to",
508
- txt_link: "link",
509
- txt_for_more_information: "for more information.",
510
- txt_manage_consent: "Manage Consent",
511
- txt_revoke_consent: "Revoke Consent",
512
- txt_yes_i_consent: "Yes, I consent",
513
- txt_reject_consent: "Reject Consent",
514
- txt_please_connect: "Please connect your Web3 wallet",
515
- txt_please_sign: "Please sign the message on your wallet twice and wait for it to be saved.",
516
- txt_saving: "Saving...",
517
- txt_please_connect_your_wallet: "Please connect to your wallet",
518
- txt_connecting: "Connecting",
519
- txt_here: "HERE",
520
- txt_visit: "Visit",
521
- txt_take_full_control: "Take full control over your personal data",
522
- txt_consent: "Consent",
523
- txt_about: "About",
524
- txt_detail: "Details",
525
- txt_consent_to_data: "Consent to data use via Shield of Privacy (SoP) for full control over your personal data. Experience privacy-respecting, secure, & personalized browsing without cookies.",
526
- txt_ethical_compliant: "Ethical & Compliant :",
527
- txt_detail_1: "<span class='fw-semibold text-dark'>Revolutionary Data Control:</span> Empower yourself with full control over your data.",
528
- txt_detail_2: "<span class='fw-semibold text-dark'>Your Data Stays Yours:</span> We guarantee that your data is never sold or shared.",
529
- txt_detail_3: "<span class='fw-semibold text-dark'>We Never Use Cookies:</span> Your content is personalized without the use of cookies.",
530
- txt_understanding_your_consent: "Understanding Your Consent Levels",
531
- txt_this_website_uses: "This website uses a revolutionary 4-Tier Decentralized Consent Model. Each tier represents a different level of permission or access that users can grant to their data.",
532
- txt_about_1: "Compliance Assured: Using SoP ensures compliance with GDPR, CCPA, & other privacy laws.",
533
- txt_about_2: "Flexible Consent: You can change or withdraw your consent anytime via our <a class='text-success fw-semibold text-decoration-underline' href='https://dapp.shield.aesirx.io' target='_blank'>dApp</a>.",
534
- txt_about_3: "Learn More: Discover our approach to data processing in our <a class='text-success fw-semibold text-decoration-underline' href='https://aesirx.io/privacy-policy' target='_blank'>Privacy Policy</a>.",
535
- txt_about_4: "For Businesses: Enhance trust, secure user identities, & prevent breaches. More info at <a class='text-success fw-semibold text-decoration-underline' href='https://shield.aesirx.io' target='_blank'>https://shield.aesirx.io</a>.",
536
- txt_your_current_level: "Your Current Level of Consent is:",
537
- txt_upgrade_consent_to: "Upgrade Consent to:",
538
- txt_upgrade_consent: "Upgrade Consent",
539
- txt_change_consent: "Change Consent",
540
- txt_upgrade_consent_text: "Upgrade your Level of Consent & unlock the full benefits of Shield of Privacy for customized, secure, ID-authenticated digital experiences.",
541
- txt_cancel: "Cancel"
542
- };
543
-
544
- // src/translations/es/common.json
545
- var common_default3 = {
546
- txt_tier_1_tier: "Nivel 1",
547
- txt_tier_1_name: "Basado en sesi\xF3n",
548
- txt_tier_1_levelname: "B\xE1sico",
549
- txt_tier_1_content: "Ideal para nuevos visitantes del sitio o si no desea que sus datos se almacenen m\xE1s all\xE1 de su visita actual",
550
- txt_tier_1_content_custom: "Durante una sesi\xF3n de 30 minutos, solo utilizamos datos de comportamiento (no datos personales) para mejorar tu experiencia de navegaci\xF3n.",
551
- txt_tier_1_term: "Consientes la recopilaci\xF3n de datos solo para una sesi\xF3n de 30 minutos.",
552
- txt_tier_1_term_custom: "Privacidad basada en sesiones de 30 minutos",
553
- txt_tier_1_upgrade: "Actualizar a Consentimiento de Nivel 2 - Medio",
554
- txt_tier_1_upgradetext: " Y agregue una billetera Web3 para un mayor control de datos y consentimiento o revoque en cualquier momento que elija.",
555
- txt_tier_2_tier: "Nivel 2",
556
- txt_tier_2_name: "Escudo de Privacidad de AesirX",
557
- txt_tier_2_levelname: "Medio",
558
- txt_tier_2_content: "Ideal para experiencias en l\xEDnea personalizadas y administraci\xF3n segura de consentimiento en sesiones y plataformas",
559
- txt_tier_2_content_custom: "Disfruta de experiencias en l\xEDnea personalizadas en m\xFAltiples sesiones y plataformas, con gesti\xF3n segura del consentimiento.",
560
- txt_tier_2_term: "Consientes el uso de datos en m\xFAltiples sesiones.",
561
- txt_tier_2_term_custom: "Experiencias digitales mejoradas con Escudo de Privacidad",
562
- txt_tier_2_upgrade: "Actualizar a Consentimiento de Nivel 3 - Alto",
563
- txt_tier_2_upgradetext: " & agregue el Consentimiento descentralizado basado en billetera para dar consentimiento expl\xEDcito para la recopilaci\xF3n y el procesamiento de datos para la experiencia m\xE1s segura, privada y personalizada.",
564
- txt_tier_3_tier: "Nivel 3",
565
- txt_tier_3_name: "Monedero Descentralizado",
566
- txt_tier_3_levelname: "Alto",
567
- txt_tier_3_content: "Utilice su Monedero Web3 para un mayor control sobre sus datos.",
568
- txt_tier_3_content_custom: "Disfruta de una mayor privacidad y m\xE1s control sobre tus datos con la opci\xF3n de revocar el consentimiento en cualquier momento.",
569
- txt_tier_3_term: "Usted da su consentimiento para que se utilicen sus datos, que puede revocar en cualquier momento que elija.",
570
- txt_tier_3_term_custom: "Integraci\xF3n de billetera Web3",
571
- txt_tier_3_upgrade: "Actualizar a Consentimiento de Nivel 4 - S\xFAper Avanzado (\xA1nuestro nivel m\xE1s alto!)",
572
- txt_tier_3_upgradetext: " & agregue AesirX Shield of Privacy para dar consentimiento expl\xEDcito para la recopilaci\xF3n y procesamiento de datos para la experiencia m\xE1s segura, privada y personalizada.",
573
- txt_tier_4_tier: "Nivel 4",
574
- txt_tier_4_name: "Monedero Combinado + Escudo de Privacidad AesirX",
575
- txt_tier_4_levelname: "S\xFAper Avanzado",
576
- txt_tier_4_content: "Use su Monedero Web3 + AesirX Shield of Privacy y obtenga un control total del uso de sus datos en m\xFAltiples sitios. Consienta o revoque los permisos en cualquier momento para una verdadera propiedad descentralizada de los datos.",
577
- txt_tier_4_content_custom: "Combine su Web3 Wallet con AesirX SoP para un control total de m\xFAltiples sitios y una verdadera propiedad descentralizada de los datos.",
578
- txt_tier_4_term: "Usted da su consentimiento para que se utilicen sus datos, que puede revocar en cualquier momento que elija.",
579
- txt_tier_4_term_custom: "Control total de datos con escudo de privacidad",
580
- txt_tier_4_upgradetext: "\xA1La experiencia m\xE1s personalizada y que preserva la privacidad!",
581
- txt_show_details: "Mostrar detalles",
582
- txt_hide_details: "Ocultar detalles",
583
- txt_no_collect: "No recopilamos ning\xFAn dato personal, solo informaci\xF3n del usuario",
584
- txt_shield_of_privacy: "Shield of Privacy",
585
- txt_you_can_revoke: "Revocar tu consentimiento al uso de datos en cualquier momento.",
586
- txt_go_to: "Ir a",
587
- txt_link: "enlace",
588
- txt_for_more_information: "para m\xE1s informaci\xF3n.",
589
- txt_manage_consent: "Administrar consentimiento",
590
- txt_revoke_consent: "Revocar consentimiento",
591
- txt_yes_i_consent: "S\xED, doy mi consentimiento",
592
- txt_reject_consent: "Rechazar consentimiento",
593
- txt_please_connect: "Conecte su billetera Concordium",
594
- txt_please_sign: "Por favor, firme el mensaje en su billetera dos veces y espere a que se guarde.",
595
- txt_saving: "Guardando...",
596
- txt_please_connect_your_wallet: "Con\xE9ctese a su billetera",
597
- txt_connecting: "Conectando",
598
- txt_here: "AQU\xCD",
599
- txt_visit: "Visita",
600
- txt_take_full_control: "Toma control total sobre tus datos personales",
601
- txt_consent: "Consentimiento",
602
- txt_about: "Acerca de",
603
- txt_detail: "Detalles",
604
- txt_consent_to_data: "Consentimiento para el uso de datos a trav\xE9s del Escudo de Privacidad (SoP) para un control total sobre sus datos personales. Experimente una navegaci\xF3n personalizada, segura y respetuosa con la privacidad sin cookies.",
605
- txt_ethical_compliant: "\xC9tico y compatible :",
606
- txt_detail_1: "<span class='fw-semibold text-dark'>Control de datos revolucionario:</span> Otorga control total sobre tus datos.",
607
- txt_detail_2: "<span class='fw-semibold text-dark'>Tus datos siguen siendo tuyos:</span> Garantizamos que tus datos nunca se venden ni se comparten.",
608
- txt_detail_3: "<span class='fw-semibold text-dark'>Nunca utilizamos cookies:</span> Su contenido es personalizado sin el uso de cookies.",
609
- txt_understanding_your_consent: "Comprensi\xF3n de sus niveles de consentimiento",
610
- txt_this_website_uses: "Este sitio web utiliza un revolucionario modelo de consentimiento descentralizado de 4 niveles. Cada nivel representa un nivel diferente de permiso o acceso que los usuarios pueden otorgar a sus datos.",
611
- txt_about_1: "Cumplimiento garantizado: el uso de SoP garantiza el cumplimiento de GDPR, CCPA y otras leyes de privacidad.",
612
- txt_about_2: "Consentimiento flexible: puede cambiar o retirar su consentimiento en cualquier momento a trav\xE9s de nuestro <a class='text-success fw-semibold text-decoration-underline' href='https://dapp.shield.aesirx.io' target='_blank'>dApp</a>.",
613
- txt_about_3: "M\xE1s informaci\xF3n: Descubra nuestro enfoque del procesamiento de datos en nuestro <a class='text-success fw-semibold text-decoration-underline' href='https://aesirx.io/privacy-policy' target= '_blank'>Pol\xEDtica de Privacidad</a>.",
614
- txt_about_4: "Para empresas: mejore la confianza, proteja las identidades de los usuarios y evite infracciones. M\xE1s informaci\xF3n en <a class='text-success fw-semibold text-decoration-underline' href='https://shield.aesirx. io' target='_blank'>https://shield.aesirx.io</a>.",
615
- txt_your_current_level: "Su nivel actual de consentimiento es:",
616
- txt_upgrade_consent_to: "Actualizar consentimiento a:",
617
- txt_upgrade_consent: "Consentimiento de actualizaci\xF3n",
618
- txt_change_consent: "Cambiar consentimiento",
619
- txt_upgrade_consent_text: "Mejora tu nivel de consentimiento y desbloquea todos los beneficios del Escudo de Privacidad para experiencias digitales personalizadas, seguras y autenticadas por identificaci\xF3n.",
620
- txt_cancel: "Cancelar"
621
- };
622
-
623
- // src/translations/hr/common.json
624
- var common_default4 = {
625
- txt_tier_1_tier: "Razina 1",
626
- txt_tier_1_name: "Na temelju sesije",
627
- txt_tier_1_levelname: "Osnovno",
628
- txt_tier_1_content: "Idealno za nove posjetitelje stranice ili ako ne \u017Eelite da se va\u0161i podaci pohranjuju nakon trenutne posjete.",
629
- txt_tier_1_content_custom: "Za sesiju od 30 minuta koristimo samo podatke o pona\u0161anju (ne osobne podatke) kako bismo pobolj\u0161ali va\u0161e iskustvo pregledavanja.",
630
- txt_tier_1_term: "Pristajete na prikupljanje podataka samo za sesiju od 30 minuta.",
631
- txt_tier_1_term_custom: "Privatnost temeljena na 30-minutnoj sesiji",
632
- txt_tier_1_upgrade: "Nadogradnja na Tier 2 Consent - Medium",
633
- txt_tier_1_upgradetext: "i dodajte Web3 Wallet za ve\u0107u kontrolu podataka i pristanak ili opoziv u bilo kojem trenutku po va\u0161em izboru.",
634
- txt_tier_2_tier: "Razina 2",
635
- txt_tier_2_name: "AesirX Shield of Privacy",
636
- txt_tier_2_levelname: "Srednji",
637
- txt_tier_2_content: "Idealan za personalizirana online iskustva i sigurno upravljanje pristankom na svim sesijama i platformama.",
638
- txt_tier_2_content_custom: "U\u017Eivajte u personaliziranim online iskustvima na vi\u0161e sesija i platformi, uz sigurno upravljanje pristankom.",
639
- txt_tier_2_term: "Pristajete na kori\u0161tenje podataka u vi\u0161e sesija.",
640
- txt_tier_2_term_custom: "Pobolj\u0161ana digitalna iskustva sa Shield of Privacy",
641
- txt_tier_2_upgrade: "Nadogradnja na Tier 3 Consent - High",
642
- txt_tier_2_upgradetext: "i dodajte decentralizirani pristanak temeljen na nov\u010Daniku za davanje izri\u010Ditog pristanka za prikupljanje i obradu podataka za najsigurnije, privatno i personalizirano iskustvo.",
643
- txt_tier_3_tier: "Razina 3",
644
- txt_tier_3_name: "Decentralizirani nov\u010Danik",
645
- txt_tier_3_levelname: "Visoka",
646
- txt_tier_3_content: "Upotrijebite svoj Web3 nov\u010Danik za ve\u0107u kontrolu nad svojim podacima.",
647
- txt_tier_3_content_custom: "U\u017Eivajte u ve\u0107oj privatnosti i ve\u0107oj kontroli nad svojim podacima uz opciju opoziva privole u bilo kojem trenutku.",
648
- txt_tier_3_term: "Pristajete na kori\u0161tenje va\u0161ih podataka, \u0161to se mo\u017Ee opozvati u bilo kojem trenutku po va\u0161em izboru.",
649
- txt_tier_3_term_custom: "Integracija Web3 nov\u010Danika",
650
- txt_tier_3_upgrade: "Nadogradite na Tier 4 Consent - Super Advanced (na\u0161a najvi\u0161a razina!)",
651
- txt_tier_3_upgradetext: "i dodajte AesirX Shield of Privacy kako biste dali izri\u010Dit pristanak za prikupljanje i obradu podataka za najsigurnije, privatno i personalizirano iskustvo.",
652
- txt_tier_4_tier: "Razina 4",
653
- txt_tier_4_name: "Kombinirani nov\u010Danik + AesirX Shield of Privacy",
654
- txt_tier_4_levelname: "Super napredno",
655
- txt_tier_4_content: "Upotrijebite svoj Web3 Wallet + AesirX Shield of Privacy i ostvarite potpunu vi\u0161estruku kontrolu nad upotrebom podataka. Dajte pristanak ili opozovite dopu\u0161tenja u bilo kojem trenutku za pravo decentralizirano vlasni\u0161tvo nad podacima.",
656
- txt_tier_4_content_custom: "Kombinirajte svoj Web3 nov\u010Danik s AesirX SoP za potpunu kontrolu vi\u0161e stranica i pravo decentralizirano vlasni\u0161tvo nad podacima.",
657
- txt_tier_4_term: "Pristajete na kori\u0161tenje va\u0161ih podataka, \u0161to se mo\u017Ee opozvati u bilo kojem trenutku po va\u0161em izboru.",
658
- txt_tier_4_term_custom: "Potpuna kontrola podataka uz za\u0161titu privatnosti",
659
- txt_tier_4_upgradetext: "Najpersonaliziranije iskustvo koje \u010Duva privatnost!",
660
- txt_show_details: "Prika\u017Ei detalje",
661
- txt_hide_details: "Sakrij detalje",
662
- txt_no_collect: "Ne prikupljamo nikakve osobne podatke, samo korisni\u010Dke uvide.",
663
- txt_shield_of_privacy: "Shield of Privacy",
664
- txt_you_can_revoke: "Opozovite svoj pristanak za kori\u0161tenje podataka kad god to \u017Eelite.",
665
- txt_go_to: "Idi na",
666
- txt_link: "link",
667
- txt_for_more_information: "za vi\u0161e informacija.",
668
- txt_manage_consent: "Upravljanje pristankom",
669
- txt_revoke_consent: "Opozovi privolu",
670
- txt_yes_i_consent: "Da, pristajem",
671
- txt_reject_consent: "Odbij pristanak",
672
- txt_please_connect: "Molimo pove\u017Eite svoj Concordium nov\u010Danik",
673
- txt_please_sign: "Molimo vas da dvaput potpi\u0161ete poruku na svom nov\u010Daniku i pri\u010Dekate da se spremi.",
674
- txt_saving: "Spremanje...",
675
- txt_please_connect_your_wallet: "Pove\u017Eite se sa svojim nov\u010Danikom",
676
- txt_connecting: "Povezivanje",
677
- txt_here: "OVDJE",
678
- txt_visit: "Posjetiti",
679
- txt_take_full_control: "Preuzmite potpunu kontrolu nad svojim osobnim podacima",
680
- txt_consent: "Pristanak",
681
- txt_about: "O",
682
- txt_detail: "Detalji",
683
- txt_consent_to_data: "Pristanak na kori\u0161tenje podataka putem Shield of Privacy (SoP) za potpunu kontrolu nad va\u0161im osobnim podacima. Do\u017Eivite sigurno i personalizirano pregledavanje bez kola\u010Di\u0107a koje po\u0161tuje privatnost.",
684
- txt_ethical_compliant: "Eti\u010Dko i uskla\u0111eno:",
685
- txt_detail_1: "<span class='fw-semibold text-dark'>Revolucionarna kontrola podataka:</span> Osna\u017Eite se s potpunom kontrolom nad svojim podacima.",
686
- txt_detail_2: "<span class='fw-semibold text-dark'>Va\u0161i podaci ostaju va\u0161i:</span> Jam\u010Dimo da se va\u0161i podaci nikada ne prodaju ili dijele.",
687
- txt_detail_3: "<span class='fw-semibold text-dark'>Nikada ne koristimo kola\u010Di\u0107e:</span> Va\u0161 je sadr\u017Eaj personaliziran bez upotrebe kola\u010Di\u0107a.",
688
- txt_understanding_your_consent: "Razumijevanje va\u0161ih razina pristanka",
689
- txt_this_website_uses: "Ova web stranica koristi revolucionarni 4-slojni decentralizirani model pristanka. Svaka razina predstavlja razli\u010Ditu razinu dopu\u0161tenja ili pristupa koje korisnici mogu dati svojim podacima.",
690
- txt_about_1: "Zajam\u010Dena uskla\u0111enost: kori\u0161tenje SoP-a osigurava uskla\u0111enost s GDPR-om, CCPA-om i drugim zakonima o privatnosti.",
691
- txt_about_2: "Fleksibilni pristanak: mo\u017Eete promijeniti ili povu\u0107i svoj pristanak bilo kada putem na\u0161eg <a class='text-success fw-semibold text-decoration-underline' href='https://dapp.shield.aesirx.io' target='_blank'>dApp</a>.",
692
- txt_about_3: "Saznajte vi\u0161e: otkrijte na\u0161 pristup obradi podataka u na\u0161em <a class='text-success fw-semibold text-decoration-underline' href='https://aesirx.io/privacy-policy' target= '_blank'>Pravila o privatnosti</a>.",
693
- txt_about_4: "Za tvrtke: Pove\u0107ajte povjerenje, osigurajte korisni\u010Dke identitete i sprije\u010Dite provale. Vi\u0161e informacija na <a class='text-success fw-semibold text-decoration-underline' href='https://shield.aesirx. io' target='_blank'>https://shield.aesirx.io</a>.",
694
- txt_your_current_level: "Va\u0161a trenutna razina pristanka je:",
695
- txt_upgrade_consent_to: "Nadogradi pristanak na:",
696
- txt_upgrade_consent: "Pristanak za nadogradnju",
697
- txt_change_consent: "Promijeni privolu",
698
- txt_upgrade_consent_text: "Nadogradite svoju razinu pristanka i otklju\u010Dajte sve prednosti Shield of Privacy za prilago\u0111ena, sigurna digitalna iskustva s autentifikacijom ID-a.",
699
- txt_cancel: "Odustani"
700
- };
701
-
702
- // src/translations/th/common.json
703
- var common_default5 = {
704
- txt_tier_1_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 1",
705
- txt_tier_1_name: "\u0E15\u0E32\u0E21\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19",
706
- txt_tier_1_levelname: "\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19",
707
- txt_tier_1_content: "\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E22\u0E35\u0E48\u0E22\u0E21\u0E0A\u0E21\u0E40\u0E27\u0E47\u0E1A\u0E44\u0E0B\u0E15\u0E4C\u0E23\u0E32\u0E22\u0E43\u0E2B\u0E21\u0E48\u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E2B\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E40\u0E01\u0E47\u0E1A\u0E44\u0E27\u0E49\u0E19\u0E2D\u0E01\u0E40\u0E2B\u0E19\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E40\u0E22\u0E35\u0E48\u0E22\u0E21\u0E0A\u0E21\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
708
- txt_tier_1_content_custom: "\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19 30 \u0E19\u0E32\u0E17\u0E35 \u0E40\u0E23\u0E32\u0E08\u0E30\u0E43\u0E0A\u0E49\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E1E\u0E24\u0E15\u0E34\u0E01\u0E23\u0E23\u0E21 (\u0E44\u0E21\u0E48\u0E43\u0E0A\u0E48\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25) \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E01\u0E32\u0E23\u0E17\u0E48\u0E2D\u0E07\u0E40\u0E27\u0E47\u0E1A\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
709
- txt_tier_1_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E21\u0E35\u0E01\u0E32\u0E23\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19 30 \u0E19\u0E32\u0E17\u0E35\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19",
710
- txt_tier_1_term_custom: "\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E15\u0E32\u0E21\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19 30 \u0E19\u0E32\u0E17\u0E35",
711
- txt_tier_1_upgrade: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E01\u0E32\u0E23\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E23\u0E30\u0E14\u0E31\u0E1A 2 - \u0E1B\u0E32\u0E19\u0E01\u0E25\u0E32\u0E07",
712
- txt_tier_1_upgradetext: " & \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E43\u0E19 Web3 Wallet \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E14\u0E35\u0E02\u0E36\u0E49\u0E19 & \u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E44\u0E14\u0E49\u0E17\u0E38\u0E01\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E40\u0E25\u0E37\u0E2D\u0E01",
713
- txt_tier_2_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 2",
714
- txt_tier_2_name: "\u0E42\u0E25\u0E48\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E02\u0E2D\u0E07 AesirX",
715
- txt_tier_2_levelname: "\u0E1B\u0E32\u0E19\u0E01\u0E25\u0E32\u0E07",
716
- txt_tier_2_content: "\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25\u0E41\u0E25\u0E30\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E17\u0E35\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22\u0E43\u0E19\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19\u0E41\u0E25\u0E30\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E15\u0E48\u0E32\u0E07\u0E46",
717
- txt_tier_2_content_custom: "\u0E40\u0E1E\u0E25\u0E34\u0E14\u0E40\u0E1E\u0E25\u0E34\u0E19\u0E01\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E1C\u0E48\u0E32\u0E19\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19\u0E41\u0E25\u0E30\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E17\u0E35\u0E48\u0E2B\u0E25\u0E32\u0E01\u0E2B\u0E25\u0E32\u0E22 \u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E17\u0E35\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22",
718
- txt_tier_2_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E2B\u0E25\u0E32\u0E22\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19",
719
- txt_tier_2_term_custom: "\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E14\u0E34\u0E08\u0E34\u0E17\u0E31\u0E25\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E1B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E38\u0E07\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E01\u0E32\u0E23\u0E1B\u0E01\u0E1B\u0E49\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27",
720
- txt_tier_2_upgrade: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E23\u0E30\u0E14\u0E31\u0E1A 3 \u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21 - \u0E2A\u0E39\u0E07",
721
- txt_tier_2_upgradetext: " & \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E41\u0E1A\u0E1A\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E28\u0E39\u0E19\u0E22\u0E4C\u0E1A\u0E19 Wallet \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E0A\u0E31\u0E14\u0E41\u0E08\u0E49\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E01\u0E47\u0E1A\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E41\u0E25\u0E30\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22 \u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27 \u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E21\u0E32\u0E01\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14",
722
- txt_tier_3_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 3",
723
- txt_tier_3_name: "\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E2A\u0E15\u0E32\u0E07\u0E04\u0E4C\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E2D\u0E33\u0E19\u0E32\u0E08",
724
- txt_tier_3_levelname: "\u0E2A\u0E39\u0E07",
725
- txt_tier_3_content: "\u0E43\u0E0A\u0E49 Web3 Wallet \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E14\u0E35\u0E22\u0E34\u0E48\u0E07\u0E02\u0E36\u0E49\u0E19",
726
- txt_tier_3_content_custom: "\u0E40\u0E1E\u0E25\u0E34\u0E14\u0E40\u0E1E\u0E25\u0E34\u0E19\u0E44\u0E1B\u0E01\u0E31\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E17\u0E35\u0E48\u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19\u0E41\u0E25\u0E30\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19\u0E14\u0E49\u0E27\u0E22\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32",
727
- txt_tier_3_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E0B\u0E36\u0E48\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E40\u0E25\u0E37\u0E2D\u0E01",
728
- txt_tier_3_term_custom: "\u0E1A\u0E39\u0E23\u0E13\u0E32\u0E01\u0E32\u0E23 Web3 Wallet",
729
- txt_tier_3_upgrade: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E23\u0E30\u0E14\u0E31\u0E1A 4 - \u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07 (\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14\u0E02\u0E2D\u0E07\u0E40\u0E23\u0E32!)",
730
- txt_tier_3_upgradetext: " & \u0E40\u0E1E\u0E34\u0E48\u0E21 AesirX Shield of Privacy \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E0A\u0E31\u0E14\u0E41\u0E08\u0E49\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E01\u0E47\u0E1A\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E41\u0E25\u0E30\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22 \u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27 \u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E21\u0E32\u0E01\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14",
731
- txt_tier_4_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 4",
732
- txt_tier_4_name: "\u0E23\u0E27\u0E21 Wallet + AesirX Shield of Privacy",
733
- txt_tier_4_levelname: "\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07",
734
- txt_tier_4_content: "\u0E43\u0E0A\u0E49 Web3 Wallet \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 + AesirX Shield of Privacy \u0E41\u0E25\u0E30\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E41\u0E1A\u0E1A\u0E2B\u0E25\u0E32\u0E22\u0E44\u0E0B\u0E15\u0E4C \u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E1A\u0E1A\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E28\u0E39\u0E19\u0E22\u0E4C\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E41\u0E17\u0E49\u0E08\u0E23\u0E34\u0E07",
735
- txt_tier_4_content_custom: "\u0E23\u0E27\u0E21 Web3 Wallet \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E40\u0E02\u0E49\u0E32\u0E01\u0E31\u0E1A AesirX SoP \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E2B\u0E25\u0E32\u0E22\u0E44\u0E0B\u0E15\u0E4C\u0E40\u0E15\u0E47\u0E21\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A & \u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E1A\u0E1A\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E2D\u0E33\u0E19\u0E32\u0E08\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E41\u0E17\u0E49\u0E08\u0E23\u0E34\u0E07",
736
- txt_tier_4_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E0B\u0E36\u0E48\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E40\u0E25\u0E37\u0E2D\u0E01",
737
- txt_tier_4_term_custom: "\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E15\u0E47\u0E21\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E42\u0E25\u0E48\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27",
738
- txt_tier_4_upgradetext: "\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E41\u0E25\u0E30\u0E23\u0E31\u0E01\u0E29\u0E32\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E21\u0E32\u0E01\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14!",
739
- txt_show_details: "\u0E41\u0E2A\u0E14\u0E07\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14",
740
- txt_hide_details: "\u0E0B\u0E48\u0E2D\u0E19\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14",
741
- txt_no_collect: "\u0E40\u0E23\u0E32\u0E44\u0E21\u0E48\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25\u0E43\u0E14\u0E46 \u0E40\u0E01\u0E47\u0E1A\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E0A\u0E34\u0E07\u0E25\u0E36\u0E01\u0E02\u0E2D\u0E07\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49",
742
- txt_shield_of_privacy: "Shield of Privacy",
743
- txt_you_can_revoke: "\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E19\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E38\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23",
744
- txt_go_to: "\u0E44\u0E1B\u0E17\u0E35\u0E48",
745
- txt_link: "\u0E25\u0E34\u0E07\u0E01\u0E4C",
746
- txt_for_more_information: "\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
747
- txt_manage_consent: "\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
748
- txt_revoke_consent: "\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
749
- txt_yes_i_consent: "\u0E43\u0E0A\u0E48 \u0E09\u0E31\u0E19\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
750
- txt_reject_consent: "\u0E1B\u0E0F\u0E34\u0E40\u0E2A\u0E18\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
751
- txt_Please_connect: "\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E2A\u0E15\u0E32\u0E07\u0E04\u0E4C Concordium \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
752
- txt_please_sign: "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E40\u0E0B\u0E47\u0E19\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E1A\u0E19\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E40\u0E07\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2A\u0E2D\u0E07\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E25\u0E30\u0E23\u0E2D\u0E43\u0E2B\u0E49\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01",
753
- txt_saving: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01...",
754
- txt_Please_connect_your_wallet: "\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E01\u0E31\u0E1A\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E40\u0E07\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
755
- txt_connecting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D",
756
- txt_here: "\u0E17\u0E35\u0E48\u0E19\u0E35\u0E48",
757
- txt_visit: "\u0E40\u0E22\u0E35\u0E48\u0E22\u0E21",
758
- txt_take_full_control: "\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E15\u0E47\u0E21\u0E17\u0E35\u0E48",
759
- txt_consent: "\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
760
- txt_about: "\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A",
761
- txt_detail: "\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14",
762
- txt_consent_to_data: "\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E1C\u0E48\u0E32\u0E19 Shield of Privacy (SoP) \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E15\u0E47\u0E21\u0E17\u0E35\u0E48 \u0E2A\u0E31\u0E21\u0E1C\u0E31\u0E2A\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E01\u0E32\u0E23\u0E17\u0E48\u0E2D\u0E07\u0E40\u0E27\u0E47\u0E1A\u0E17\u0E35\u0E48\u0E40\u0E04\u0E32\u0E23\u0E1E\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27 \u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22 \u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E42\u0E14\u0E22\u0E44\u0E21\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E0A\u0E49\u0E04\u0E38\u0E01\u0E01\u0E35\u0E49",
763
- txt_ethical_Compliant: "\u0E21\u0E35\u0E08\u0E23\u0E34\u0E22\u0E18\u0E23\u0E23\u0E21\u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E1B\u0E15\u0E32\u0E21\u0E02\u0E49\u0E2D\u0E01\u0E33\u0E2B\u0E19\u0E14 :",
764
- txt_detail_1: "<span class='fw-semibold text-dark'>\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E1A\u0E1A\u0E1B\u0E0F\u0E34\u0E27\u0E31\u0E15\u0E34:</span> \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E28\u0E31\u0E01\u0E22\u0E20\u0E32\u0E1E\u0E43\u0E2B\u0E49\u0E15\u0E31\u0E27\u0E40\u0E2D\u0E07\u0E14\u0E49\u0E27\u0E22\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E40\u0E15\u0E47\u0E21\u0E17\u0E35\u0E48",
765
- txt_detail_2: "<span class='fw-semibold text-dark'>\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E22\u0E31\u0E07\u0E04\u0E07\u0E40\u0E1B\u0E47\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13:</span> \u0E40\u0E23\u0E32\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19\u0E27\u0E48\u0E32\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E30\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E02\u0E32\u0E22\u0E2B\u0E23\u0E37\u0E2D\u0E41\u0E1A\u0E48\u0E07\u0E1B\u0E31\u0E19",
766
- txt_detail_3: "<span class='fw-semibold text-dark'>\u0E40\u0E23\u0E32\u0E44\u0E21\u0E48\u0E40\u0E04\u0E22\u0E43\u0E0A\u0E49\u0E04\u0E38\u0E01\u0E01\u0E35\u0E49:</span> \u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E1B\u0E23\u0E31\u0E1A\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E43\u0E19\u0E41\u0E1A\u0E1A\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E42\u0E14\u0E22\u0E44\u0E21\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E43\u0E0A\u0E49\u0E04\u0E38\u0E01\u0E01\u0E35\u0E49",
767
- txt_understand_your_consent: "\u0E17\u0E33\u0E04\u0E27\u0E32\u0E21\u0E40\u0E02\u0E49\u0E32\u0E43\u0E08\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
768
- txt_this_website_uses: "\u0E40\u0E27\u0E47\u0E1A\u0E44\u0E0B\u0E15\u0E4C\u0E19\u0E35\u0E49\u0E43\u0E0A\u0E49\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E01\u0E32\u0E23\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E41\u0E1A\u0E1A\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E2D\u0E33\u0E19\u0E32\u0E08 4 \u0E23\u0E30\u0E14\u0E31\u0E1A\u0E17\u0E35\u0E48\u0E1B\u0E0F\u0E34\u0E27\u0E31\u0E15\u0E34\u0E27\u0E07\u0E01\u0E32\u0E23 \u0E41\u0E15\u0E48\u0E25\u0E30\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E41\u0E2A\u0E14\u0E07\u0E16\u0E36\u0E07\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15\u0E2B\u0E23\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E16\u0E36\u0E07\u0E17\u0E35\u0E48\u0E41\u0E15\u0E01\u0E15\u0E48\u0E32\u0E07\u0E01\u0E31\u0E19\u0E0B\u0E36\u0E48\u0E07\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E21\u0E2D\u0E1A\u0E43\u0E2B\u0E49\u0E01\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E15\u0E19\u0E44\u0E14\u0E49",
769
- txt_about_1: "\u0E21\u0E31\u0E48\u0E19\u0E43\u0E08\u0E43\u0E19\u0E01\u0E32\u0E23\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E15\u0E32\u0E21\u0E02\u0E49\u0E2D\u0E01\u0E33\u0E2B\u0E19\u0E14: \u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49 SoP \u0E0A\u0E48\u0E27\u0E22\u0E43\u0E2B\u0E49\u0E21\u0E31\u0E48\u0E19\u0E43\u0E08\u0E44\u0E14\u0E49\u0E16\u0E36\u0E07\u0E01\u0E32\u0E23\u0E1B\u0E0F\u0E34\u0E1A\u0E31\u0E15\u0E34\u0E15\u0E32\u0E21 GDPR, CCPA \u0E41\u0E25\u0E30\u0E01\u0E0E\u0E2B\u0E21\u0E32\u0E22\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E2D\u0E37\u0E48\u0E19\u0E46",
770
- txt_about_2: "\u0E01\u0E32\u0E23\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E41\u0E1A\u0E1A\u0E22\u0E37\u0E14\u0E2B\u0E22\u0E38\u0E48\u0E19: \u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32\u0E1C\u0E48\u0E32\u0E19\u0E17\u0E32\u0E07 <a class='text-success fw-semibold text- decoration-underline' href='https://dapp.shield.aesirx.io' \u0E02\u0E2D\u0E07\u0E40\u0E23\u0E32 target='_blank'>dApp</a>",
771
- txt_about_3: "\u0E40\u0E23\u0E35\u0E22\u0E19\u0E23\u0E39\u0E49\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21: \u0E04\u0E49\u0E19\u0E1E\u0E1A\u0E41\u0E19\u0E27\u0E17\u0E32\u0E07\u0E02\u0E2D\u0E07\u0E40\u0E23\u0E32\u0E43\u0E19\u0E01\u0E32\u0E23\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19 <a class='text-success fw-semibold text- decoration-underline' href='https://aesirx.io/privacy-policy' target= '_blank'>\u0E19\u0E42\u0E22\u0E1A\u0E32\u0E22\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27</a>",
772
- txt_about_4: "\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E18\u0E38\u0E23\u0E01\u0E34\u0E08: \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E27\u0E32\u0E21\u0E44\u0E27\u0E49\u0E27\u0E32\u0E07\u0E43\u0E08 \u0E23\u0E31\u0E01\u0E29\u0E32\u0E04\u0E27\u0E32\u0E21\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22\u0E15\u0E31\u0E27\u0E15\u0E19\u0E02\u0E2D\u0E07\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49 \u0E41\u0E25\u0E30\u0E1B\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E19\u0E01\u0E32\u0E23\u0E25\u0E30\u0E40\u0E21\u0E34\u0E14 \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\u0E17\u0E35\u0E48 <a class='text-success fw-semibold text- decoration-underline' href='https://shield.aesirx io' target='_blank'>https://shield.aesirx.io</a>",
773
- txt_your_current_level: "\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E04\u0E37\u0E2D:",
774
- txt_upgrade_consent_to: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E40\u0E1B\u0E47\u0E19:",
775
- txt_upgrade_consent: "\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E31\u0E1E\u0E40\u0E01\u0E23\u0E14",
776
- txt_change_consent: "\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
777
- txt_upgrade_consent_text: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E41\u0E25\u0E30\u0E1B\u0E25\u0E14\u0E25\u0E47\u0E2D\u0E01\u0E2A\u0E34\u0E17\u0E18\u0E34\u0E1B\u0E23\u0E30\u0E42\u0E22\u0E0A\u0E19\u0E4C\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07 Shield of Privacy \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E14\u0E34\u0E08\u0E34\u0E17\u0E31\u0E25\u0E17\u0E35\u0E48\u0E44\u0E14\u0E49\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E1B\u0E23\u0E31\u0E1A\u0E41\u0E15\u0E48\u0E07 \u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22 \u0E41\u0E25\u0E30\u0E23\u0E31\u0E1A\u0E23\u0E2D\u0E07\u0E04\u0E27\u0E32\u0E21\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07\u0E14\u0E49\u0E27\u0E22 ID",
778
- txt_cancel: "\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01"
779
- };
780
-
781
- // src/translations/ua/common.json
782
- var common_default6 = {
783
- txt_tier_1_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 1",
784
- txt_tier_1_name: "\u041D\u0430 \u043E\u0441\u043D\u043E\u0432\u0456 \u0441\u0435\u0430\u043D\u0441\u0443",
785
- txt_tier_1_levelname: "\u041E\u0441\u043D\u043E\u0432\u043D\u0438\u0439",
786
- txt_tier_1_content: "\u0406\u0434\u0435\u0430\u043B\u044C\u043D\u043E \u043F\u0456\u0434\u0445\u043E\u0434\u0438\u0442\u044C \u0434\u043B\u044F \u043D\u043E\u0432\u0438\u0445 \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0447\u0456\u0432 \u0441\u0430\u0439\u0442\u0443 \u0430\u0431\u043E \u044F\u043A\u0449\u043E \u0432\u0438 \u043D\u0435 \u0445\u043E\u0447\u0435\u0442\u0435, \u0449\u043E\u0431 \u0432\u0430\u0448\u0456 \u0434\u0430\u043D\u0456 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u043B\u0438\u0441\u044F \u043F\u0456\u0441\u043B\u044F \u043F\u043E\u0442\u043E\u0447\u043D\u043E\u0433\u043E \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u043D\u043D\u044F.",
787
- txt_tier_1_content_custom: "\u041F\u0440\u043E\u0442\u044F\u0433\u043E\u043C 30-\u0445\u0432\u0438\u043B\u0438\u043D\u043D\u043E\u0433\u043E \u0441\u0435\u0430\u043D\u0441\u0443 \u043C\u0438 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u043C\u043E \u043B\u0438\u0448\u0435 \u043F\u043E\u0432\u0435\u0434\u0456\u043D\u043A\u043E\u0432\u0456 \u0434\u0430\u043D\u0456 (\u0430 \u043D\u0435 \u043E\u0441\u043E\u0431\u0438\u0441\u0442\u0456 \u0434\u0430\u043D\u0456), \u0449\u043E\u0431 \u043F\u043E\u043A\u0440\u0430\u0449\u0438\u0442\u0438 \u0432\u0430\u0448\u0456 \u0432\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0432\u0456\u0434 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0443.",
788
- txt_tier_1_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0437\u0431\u0456\u0440 \u0434\u0430\u043D\u0438\u0445 \u043B\u0438\u0448\u0435 \u043F\u0440\u043E\u0442\u044F\u0433\u043E\u043C 30-\u0445\u0432\u0438\u043B\u0438\u043D\u043D\u043E\u0433\u043E \u0441\u0435\u0430\u043D\u0441\u0443.",
789
- txt_tier_1_term_custom: "\u041A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u0456\u0441\u0442\u044C \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0456 30-\u0445\u0432\u0438\u043B\u0438\u043D\u043D\u043E\u0457 \u0441\u0435\u0441\u0456\u0457",
790
- txt_tier_1_upgrade: "\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0434\u043E \u0437\u0433\u043E\u0434\u0438 \u0440\u0456\u0432\u043D\u044F 2 - \u0441\u0435\u0440\u0435\u0434\u043D\u0456\u0439",
791
- txt_tier_1_upgradetext: "\u0406 \u0434\u043E\u0434\u0430\u0439\u0442\u0435 Web3 Wallet \u0434\u043B\u044F \u043A\u0440\u0430\u0449\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u0434\u0430\u043D\u0438\u0445 \u0456 \u0437\u0433\u043E\u0434\u0438 \u0430\u0431\u043E \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u043D\u043D\u044F \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441",
792
- txt_tier_2_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 2",
793
- txt_tier_2_name: "\u0429\u0438\u0442 \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 AesirX",
794
- txt_tier_2_levelname: "\u0421\u0435\u0440\u0435\u0434\u043D\u0456\u0439",
795
- txt_tier_2_content: "\u0406\u0434\u0435\u0430\u043B\u044C\u043D\u043E \u043F\u0456\u0434\u0445\u043E\u0434\u0438\u0442\u044C \u0434\u043B\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u043E\u043D\u043B\u0430\u0439\u043D-\u0434\u043E\u0441\u0432\u0456\u0434\u0443 \u0442\u0430 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u0433\u043E \u043A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0437\u0433\u043E\u0434\u043E\u044E \u043D\u0430 \u0441\u0435\u0430\u043D\u0441\u0430\u0445 \u0456 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430\u0445.",
796
- txt_tier_2_content_custom: "\u041D\u0430\u0441\u043E\u043B\u043E\u0434\u0436\u0443\u0439\u0442\u0435\u0441\u044C \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0438\u043C\u0438 \u043E\u043D\u043B\u0430\u0439\u043D-\u0456\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430\u043C\u0438 \u043D\u0430 \u043A\u0456\u043B\u044C\u043A\u043E\u0445 \u0441\u0435\u0430\u043D\u0441\u0430\u0445 \u0456 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430\u0445 \u0456\u0437 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u0438\u043C \u043A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F\u043C \u0437\u0433\u043E\u0434\u043E\u044E.",
797
- txt_tier_2_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445 \u043F\u0440\u043E\u0442\u044F\u0433\u043E\u043C \u043A\u0456\u043B\u044C\u043A\u043E\u0445 \u0441\u0435\u0430\u043D\u0441\u0456\u0432.",
798
- txt_tier_2_term_custom: "\u041F\u043E\u043A\u0440\u0430\u0449\u0435\u043D\u0438\u0439 \u0446\u0438\u0444\u0440\u043E\u0432\u0438\u0439 \u0434\u043E\u0441\u0432\u0456\u0434 \u0456\u0437 \u0449\u0438\u0442\u043E\u043C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456",
799
- txt_tier_2_upgrade: "\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0434\u043E \u0440\u0456\u0432\u043D\u044F \u0437\u0433\u043E\u0434\u0438 3 - \u0432\u0438\u0441\u043E\u043A\u0438\u0439",
800
- txt_tier_2_upgradetext: "\u0406 \u0434\u043E\u0434\u0430\u0439\u0442\u0435 \u0434\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0443 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0456 Wallet, \u0449\u043E\u0431 \u0434\u0430\u0442\u0438 \u0447\u0456\u0442\u043A\u0443 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0437\u0431\u0456\u0440 \u0456 \u043E\u0431\u0440\u043E\u0431\u043A\u0443 \u0434\u0430\u043D\u0438\u0445 \u0434\u043B\u044F \u043D\u0430\u0439\u0431\u0456\u043B\u044C\u0448 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u0433\u043E, \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0433\u043E \u0442\u0430 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0434\u043E\u0441\u0432\u0456\u0434\u0443.",
801
- txt_tier_3_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 3",
802
- txt_tier_3_name: "\u0414\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0438\u0439 \u0433\u0430\u043C\u0430\u043D\u0435\u0446\u044C",
803
- txt_tier_3_levelname: "\u0412\u0438\u0441\u043E\u043A\u0438\u0439",
804
- txt_tier_3_content: "\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u0441\u0432\u0456\u0439 Web3 Wallet \u0434\u043B\u044F \u0431\u0456\u043B\u044C\u0448\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043D\u0430\u0434 \u0441\u0432\u043E\u0457\u043C\u0438 \u0434\u0430\u043D\u0438\u043C\u0438.",
805
- txt_tier_3_content_custom: "\u041D\u0430\u0441\u043E\u043B\u043E\u0434\u0436\u0443\u0439\u0442\u0435\u0441\u044C \u0431\u0456\u043B\u044C\u0448\u043E\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u0456\u0441\u0442\u044E \u0442\u0430 \u0431\u0456\u043B\u044C\u0448\u0438\u043C \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435\u043C \u043D\u0430\u0434 \u0441\u0432\u043E\u0457\u043C\u0438 \u0434\u0430\u043D\u0438\u043C\u0438 \u0437 \u043C\u043E\u0436\u043B\u0438\u0432\u0456\u0441\u0442\u044E \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0437\u0433\u043E\u0434\u0443 \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441",
806
- txt_tier_3_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0443 \u043C\u043E\u0436\u043D\u0430 \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441.",
807
- txt_tier_3_term_custom: "\u0406\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0456\u044F \u0433\u0430\u043C\u0430\u043D\u0446\u044F Web3",
808
- txt_tier_3_upgrade: "\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0434\u043E Tier 4 Consent - Super Advanced (\u043D\u0430\u0448 \u043D\u0430\u0439\u0432\u0438\u0449\u0438\u0439 \u0440\u0456\u0432\u0435\u043D\u044C!)",
809
- txt_tier_3_upgradetext: "\u0406 \u0434\u043E\u0434\u0430\u0439\u0442\u0435 AesirX Shield of Privacy, \u0449\u043E\u0431 \u0434\u0430\u0442\u0438 \u0447\u0456\u0442\u043A\u0443 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0437\u0431\u0456\u0440 \u0456 \u043E\u0431\u0440\u043E\u0431\u043A\u0443 \u0434\u0430\u043D\u0438\u0445 \u0434\u043B\u044F \u043D\u0430\u0439\u0431\u0456\u043B\u044C\u0448 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u0433\u043E, \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0433\u043E \u0442\u0430 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0434\u043E\u0441\u0432\u0456\u0434\u0443.",
810
- txt_tier_4_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 4",
811
- txt_tier_4_name: "\u041A\u043E\u043C\u0431\u0456\u043D\u043E\u0432\u0430\u043D\u0438\u0439 \u0433\u0430\u043C\u0430\u043D\u0435\u0446\u044C + AesirX Shield of Privacy",
812
- txt_tier_4_levelname: "\u0421\u0443\u043F\u0435\u0440 \u043F\u0440\u043E\u0441\u0443\u043D\u0443\u0442\u0438\u0439",
813
- txt_tier_4_content: "\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u0441\u0432\u0456\u0439 Web3 Wallet + AesirX Shield of Privacy \u0442\u0430 \u043E\u0442\u0440\u0438\u043C\u0430\u0439\u0442\u0435 \u043F\u043E\u0432\u043D\u0438\u0439 \u0431\u0430\u0433\u0430\u0442\u043E\u0441\u0430\u0439\u0442\u043E\u0432\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043D\u0430\u0434 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F\u043C \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043D\u0438\u0445. \u0414\u0430\u0439\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u0430\u0431\u043E \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0439\u0442\u0435 \u0434\u043E\u0437\u0432\u043E\u043B\u0438 \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441 \u0434\u043B\u044F \u0441\u043F\u0440\u0430\u0432\u0436\u043D\u044C\u043E\u0433\u043E \u0434\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0432\u043E\u043B\u043E\u0434\u0456\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u043C\u0438.",
814
- txt_tier_4_content_custom: "\u041F\u043E\u0454\u0434\u043D\u0430\u0439\u0442\u0435 \u0441\u0432\u0456\u0439 \u0433\u0430\u043C\u0430\u043D\u0435\u0446\u044C Web3 \u0456\u0437 SoP AesirX \u0434\u043B\u044F \u043F\u043E\u0432\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u0456\u043B\u044C\u043A\u043E\u0445 \u0441\u0430\u0439\u0442\u0456\u0432 \u0456 \u0441\u043F\u0440\u0430\u0432\u0436\u043D\u044C\u043E\u0433\u043E \u0434\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0432\u043E\u043B\u043E\u0434\u0456\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u043C\u0438.",
815
- txt_tier_4_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0443 \u043C\u043E\u0436\u043D\u0430 \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441.",
816
- txt_tier_4_term_custom: "\u041F\u043E\u0432\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u0434\u0430\u043D\u0438\u0445 \u0456\u0437 \u0437\u0430\u0445\u0438\u0441\u0442\u043E\u043C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456",
817
- txt_tier_4_upgradetext: "\u041D\u0430\u0439\u0431\u0456\u043B\u044C\u0448 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0438\u0439 \u0434\u043E\u0441\u0432\u0456\u0434 \u0456\u0437 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043D\u044F\u043C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456!",
818
- txt_show_details: "\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u0434\u0435\u0442\u0430\u043B\u0456",
819
- txt_hide_details: "\u041F\u0440\u0438\u0445\u043E\u0432\u0430\u0442\u0438 \u0434\u0435\u0442\u0430\u043B\u0456",
820
- txt_no_collect: "\u041C\u0438 \u043D\u0435 \u0437\u0431\u0438\u0440\u0430\u0454\u043C\u043E \u043E\u0441\u043E\u0431\u0438\u0441\u0442\u0456 \u0434\u0430\u043D\u0456, \u043B\u0438\u0448\u0435 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0443 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456\u0432.",
821
- txt_shield_of_privacy: "Shield of Privacy",
822
- txt_you_can_revoke: "\u0412\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0439\u0442\u0435 \u0441\u0432\u043E\u044E \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445, \u043A\u043E\u043B\u0438 \u0437\u0430\u0431\u0430\u0436\u0430\u0454\u0442\u0435.",
823
- txt_go_to: "\u041F\u0435\u0440\u0435\u0439\u0442\u0438",
824
- txt_link: "\u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F",
825
- txt_for_more_information: "\u0434\u043B\u044F \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u0434\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u043E\u0457 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457.",
826
- txt_manage_consent: "\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0437\u0433\u043E\u0434\u043E\u044E",
827
- txt_revoke_consent: "\u0412\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0437\u0433\u043E\u0434\u0443",
828
- txt_yes_i_consent: "\u0422\u0430\u043A, \u044F \u0437\u0433\u043E\u0434\u0435\u043D",
829
- txt_reject_consent: "\u0412\u0456\u0434\u0445\u0438\u043B\u0438\u0442\u0438 \u0437\u0433\u043E\u0434\u0443",
830
- txt_please_connect: "\u041F\u0456\u0434\u043A\u043B\u044E\u0447\u0456\u0442\u044C \u0441\u0432\u0456\u0439 \u0433\u0430\u043C\u0430\u043D\u0435\u0446\u044C Concordium",
831
- txt_please_sign: "\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0434\u0432\u0456\u0447\u0456 \u043F\u0456\u0434\u043F\u0438\u0448\u0456\u0442\u044C \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F \u0443 \u0441\u0432\u043E\u0454\u043C\u0443 \u0433\u0430\u043C\u0430\u043D\u0446\u0456 \u0442\u0430 \u0437\u0430\u0447\u0435\u043A\u0430\u0439\u0442\u0435, \u043F\u043E\u043A\u0438 \u0432\u043E\u043D\u043E \u0431\u0443\u0434\u0435 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043E.",
832
- txt_saving: "\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043D\u044F...",
833
- txt_please_connect_your_wallet: "\u041F\u0456\u0434\u043A\u043B\u044E\u0447\u0456\u0442\u044C\u0441\u044F \u0434\u043E \u0441\u0432\u043E\u0433\u043E \u0433\u0430\u043C\u0430\u043D\u0446\u044F",
834
- txt_connecting: "\u041F\u0456\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u044F",
835
- txt_here: "\u0422\u0423\u0422",
836
- txt_visit: "\u0412\u0456\u0434\u0432\u0456\u0434\u0430\u0439\u0442\u0435",
837
- txt_take_full_control: "\u041F\u043E\u0432\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043D\u0430\u0434 \u0441\u0432\u043E\u0457\u043C\u0438 \u043E\u0441\u043E\u0431\u0438\u0441\u0442\u0438\u043C\u0438 \u0434\u0430\u043D\u0438\u043C\u0438",
838
- txt_consent: "\u0417\u0433\u043E\u0434\u0430",
839
- txt_about: "\u041F\u0440\u043E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0443",
840
- txt_detail: "\u0414\u0435\u0442\u0430\u043B\u0456",
841
- txt_consent_to_data: "\u0417\u0433\u043E\u0434\u0430 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445 \u0447\u0435\u0440\u0435\u0437 Shield of Privacy (SoP) \u0434\u043B\u044F \u043F\u043E\u0432\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043D\u0430\u0434 \u0432\u0430\u0448\u0438\u043C\u0438 \u043E\u0441\u043E\u0431\u0438\u0441\u0442\u0438\u043C\u0438 \u0434\u0430\u043D\u0438\u043C\u0438. \u041D\u0430\u0441\u043E\u043B\u043E\u0434\u0436\u0443\u0439\u0442\u0435\u0441\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u0438\u043C, \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u0438\u043C \u0456 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0438\u043C \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u043E\u043C \u0431\u0435\u0437 \u0444\u0430\u0439\u043B\u0456\u0432 cookie.",
842
- txt_ethical_compliant: "\u0415\u0442\u0438\u0447\u043D\u0438\u0439 \u0456 \u0441\u0443\u043C\u0456\u0441\u043D\u0438\u0439:",
843
- txt_detail_1: "<span class='fw-semibold text-dark'>\u0420\u0435\u0432\u043E\u043B\u044E\u0446\u0456\u0439\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u0434\u0430\u043D\u0438\u0445:</span> \u043D\u0430\u0434\u0430\u0439\u0442\u0435 \u0441\u043E\u0431\u0456 \u043F\u043E\u0432\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043D\u0430\u0434 \u0441\u0432\u043E\u0457\u043C\u0438 \u0434\u0430\u043D\u0438\u043C\u0438.",
844
- txt_detail_2: "<span class='fw-semibold text-dark'>\u0412\u0430\u0448\u0456 \u0434\u0430\u043D\u0456 \u0437\u0430\u043B\u0438\u0448\u0430\u044E\u0442\u044C\u0441\u044F \u0432\u0430\u0448\u0438\u043C\u0438:</span> \u043C\u0438 \u0433\u0430\u0440\u0430\u043D\u0442\u0443\u0454\u043C\u043E, \u0449\u043E \u0432\u0430\u0448\u0456 \u0434\u0430\u043D\u0456 \u043D\u0456\u043A\u043E\u043B\u0438 \u043D\u0435 \u043F\u0440\u043E\u0434\u0430\u044E\u0442\u044C\u0441\u044F \u0442\u0430 \u043D\u0435 \u043D\u0430\u0434\u0430\u044E\u0442\u044C\u0441\u044F.",
845
- txt_detail_3: "<span class='fw-semibold text-dark'>\u041C\u0438 \u043D\u0456\u043A\u043E\u043B\u0438 \u043D\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u043C\u043E \u0444\u0430\u0439\u043B\u0438 cookie:</span> \u0432\u0430\u0448 \u0432\u043C\u0456\u0441\u0442 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u0443\u0454\u0442\u044C\u0441\u044F \u0431\u0435\u0437 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0444\u0430\u0439\u043B\u0456\u0432 cookie.",
846
- txt_understanding_your_consent: "\u0420\u043E\u0437\u0443\u043C\u0456\u043D\u043D\u044F \u0432\u0430\u0448\u0438\u0445 \u0440\u0456\u0432\u043D\u0456\u0432 \u0437\u0433\u043E\u0434\u0438",
847
- txt_this_website_uses: "\u0426\u0435\u0439 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454 \u0440\u0435\u0432\u043E\u043B\u044E\u0446\u0456\u0439\u043D\u0443 4-\u0440\u0456\u0432\u043D\u0435\u0432\u0443 \u0434\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0443 \u043C\u043E\u0434\u0435\u043B\u044C \u0437\u0433\u043E\u0434\u0438. \u041A\u043E\u0436\u0435\u043D \u0440\u0456\u0432\u0435\u043D\u044C \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u044F\u0454 \u0440\u0456\u0437\u043D\u0438\u0439 \u0440\u0456\u0432\u0435\u043D\u044C \u0434\u043E\u0437\u0432\u043E\u043B\u0443 \u0430\u0431\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u0443, \u044F\u043A\u0438\u0439 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456 \u043C\u043E\u0436\u0443\u0442\u044C \u043D\u0430\u0434\u0430\u0442\u0438 \u0434\u043E \u0441\u0432\u043E\u0457\u0445 \u0434\u0430\u043D\u0438\u0445.",
848
- txt_about_1: "\u0412\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u0456\u0441\u0442\u044C \u0433\u0430\u0440\u0430\u043D\u0442\u043E\u0432\u0430\u043D\u043E: \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F SoP \u0437\u0430\u0431\u0435\u0437\u043F\u0435\u0447\u0443\u0454 \u0434\u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F GDPR, CCPA \u0442\u0430 \u0456\u043D\u0448\u0438\u0445 \u0437\u0430\u043A\u043E\u043D\u0456\u0432 \u043F\u0440\u043E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u0456\u0441\u0442\u044C.",
849
- txt_about_2: "\u0413\u043D\u0443\u0447\u043A\u0430 \u0437\u0433\u043E\u0434\u0430: \u0432\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0431\u0443\u0434\u044C-\u043A\u043E\u043B\u0438 \u0437\u043C\u0456\u043D\u0438\u0442\u0438 \u0430\u0431\u043E \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0441\u0432\u043E\u044E \u0437\u0433\u043E\u0434\u0443 \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E \u043D\u0430\u0448\u043E\u0433\u043E <a class='text-success fw-semibold text-decoration-underline' href='https://dapp.shield.aesirx.io' target='_blank'>dApp</a>.",
850
- txt_about_3: "\u0414\u0456\u0437\u043D\u0430\u0439\u0442\u0435\u0441\u044F \u0431\u0456\u043B\u044C\u0448\u0435: \u0434\u0456\u0437\u043D\u0430\u0439\u0442\u0435\u0441\u044F \u043F\u0440\u043E \u043D\u0430\u0448 \u043F\u0456\u0434\u0445\u0456\u0434 \u0434\u043E \u043E\u0431\u0440\u043E\u0431\u043A\u0438 \u0434\u0430\u043D\u0438\u0445 \u0443 <a class='text-success fw-semibold text-decoration-underline' href='https://aesirx.io/privacy-policy' target= '_blank'>\u041F\u043E\u043B\u0456\u0442\u0438\u043A\u0430 \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456</a>.",
851
- txt_about_4: "\u0414\u043B\u044F \u043A\u043E\u043C\u043F\u0430\u043D\u0456\u0439: \u043F\u0456\u0434\u0432\u0438\u0449\u0443\u0439\u0442\u0435 \u0434\u043E\u0432\u0456\u0440\u0443, \u0437\u0430\u0445\u0438\u0449\u0430\u0439\u0442\u0435 \u0456\u0434\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u0439\u043D\u0456 \u0434\u0430\u043D\u0456 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456\u0432 \u0456 \u0437\u0430\u043F\u043E\u0431\u0456\u0433\u0430\u0439\u0442\u0435 \u0437\u043B\u0430\u043C\u0430\u043C. \u0411\u0456\u043B\u044C\u0448\u0435 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457 \u043D\u0430 <a class='text-success fw-semibold text-decoration-underline' href='https://shield.aesirx. io' target='_blank'>https://shield.aesirx.io</a>.",
852
- txt_your_current_level: "\u0412\u0430\u0448 \u043F\u043E\u0442\u043E\u0447\u043D\u0438\u0439 \u0440\u0456\u0432\u0435\u043D\u044C \u0437\u0433\u043E\u0434\u0438:",
853
- txt_upgrade_consent_to: "\u041E\u043D\u043E\u0432\u0438\u0442\u0438 \u0437\u0433\u043E\u0434\u0443 \u0434\u043E:",
854
- txt_upgrade_consent: "\u0417\u0433\u043E\u0434\u0430 \u043D\u0430 \u043E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F",
855
- txt_change_consent: "\u0417\u043C\u0456\u043D\u0438\u0442\u0438 \u0437\u0433\u043E\u0434\u0443",
856
- txt_upgrade_consent_text: "\u041F\u0456\u0434\u0432\u0438\u0449\u0442\u0435 \u0441\u0432\u0456\u0439 \u0440\u0456\u0432\u0435\u043D\u044C \u0437\u0433\u043E\u0434\u0438 \u0442\u0430 \u0440\u043E\u0437\u0431\u043B\u043E\u043A\u0443\u0439\u0442\u0435 \u0432\u0441\u0456 \u043F\u0435\u0440\u0435\u0432\u0430\u0433\u0438 Shield of Privacy \u0434\u043B\u044F \u043D\u0430\u043B\u0430\u0448\u0442\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u0433\u043E \u0446\u0438\u0444\u0440\u043E\u0432\u043E\u0433\u043E \u0434\u043E\u0441\u0432\u0456\u0434\u0443 \u0437 \u0430\u0432\u0442\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0446\u0456\u0454\u044E \u0456\u0434\u0435\u043D\u0442\u0438\u0444\u0456\u043A\u0430\u0442\u043E\u0440\u0430",
857
- txt_cancel: "\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438"
858
- };
859
-
860
- // src/translations/vi/common.json
861
- var common_default7 = {
862
- txt_tier_1_tier: "C\u1EA5p 1",
863
- txt_tier_1_name: "D\u1EF1a tr\xEAn phi\xEAn",
864
- txt_tier_1_levelname: "C\u01A1 b\u1EA3n",
865
- txt_tier_1_content: "L\xFD t\u01B0\u1EDFng cho kh\xE1ch truy c\u1EADp trang web m\u1EDBi ho\u1EB7c n\u1EBFu b\u1EA1n kh\xF4ng mu\u1ED1n d\u1EEF li\u1EC7u c\u1EE7a m\xECnh \u0111\u01B0\u1EE3c l\u01B0u tr\u1EEF sau l\u1EA7n truy c\u1EADp hi\u1EC7n t\u1EA1i.",
866
- txt_tier_1_content_custom: "Trong phi\xEAn 30 ph\xFAt, ch\xFAng t\xF4i ch\u1EC9 s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u h\xE0nh vi (kh\xF4ng ph\u1EA3i d\u1EEF li\u1EC7u c\xE1 nh\xE2n) \u0111\u1EC3 n\xE2ng cao tr\u1EA3i nghi\u1EC7m duy\u1EC7t web c\u1EE7a b\u1EA1n.",
867
- txt_tier_1_term: "B\u1EA1n \u0111\u1ED3ng \xFD v\u1EDBi vi\u1EC7c thu th\u1EADp d\u1EEF li\u1EC7u ch\u1EC9 trong phi\xEAn 30 ph\xFAt.",
868
- txt_tier_1_term_custom: "Quy\u1EC1n ri\xEAng t\u01B0 d\u1EF1a tr\xEAn phi\xEAn 30 ph\xFAt",
869
- txt_tier_1_upgrade: "N\xE2ng c\u1EA5p l\xEAn \u0110\u1ED3ng \xFD C\u1EA5p 2 - Trung b\xECnh",
870
- txt_tier_1_upgradetext: " & th\xEAm v\xE0o V\xED Web3 \u0111\u1EC3 c\xF3 s\u1EF1 \u0111\u1ED3ng \xFD v\xE0 ki\u1EC3m so\xE1t d\u1EEF li\u1EC7u t\u1ED1t h\u01A1n ho\u1EB7c thu h\u1ED3i b\u1EA5t k\u1EF3 l\xFAc n\xE0o b\u1EA1n ch\u1ECDn.",
871
- txt_tier_2_tier: "C\u1EA5p 2",
872
- txt_tier_2_name: "AesirX Shield of Privacy",
873
- txt_tier_2_levelname: "Trung b\xECnh",
874
- txt_tier_2_content: "L\xFD t\u01B0\u1EDFng cho tr\u1EA3i nghi\u1EC7m tr\u1EF1c tuy\u1EBFn \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a v\xE0 qu\u1EA3n l\xFD s\u1EF1 \u0111\u1ED3ng \xFD an to\xE0n tr\xEAn c\xE1c phi\xEAn v\xE0 n\u1EC1n t\u1EA3ng.",
875
- txt_tier_2_content_custom: "T\u1EADn h\u01B0\u1EDFng tr\u1EA3i nghi\u1EC7m tr\u1EF1c tuy\u1EBFn \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a tr\xEAn nhi\u1EC1u phi\xEAn v\xE0 n\u1EC1n t\u1EA3ng v\u1EDBi t\xEDnh n\u0103ng qu\u1EA3n l\xFD s\u1EF1 \u0111\u1ED3ng \xFD an to\xE0n.",
876
- txt_tier_2_term: "B\u1EA1n \u0111\u1ED3ng \xFD cho ph\xE9p s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u trong nhi\u1EC1u phi\xEAn.",
877
- txt_tier_2_term_custom: "Tr\u1EA3i nghi\u1EC7m k\u1EF9 thu\u1EADt s\u1ED1 n\xE2ng cao v\u1EDBi L\xE1 ch\u1EAFn b\u1EA3o m\u1EADt",
878
- txt_tier_2_upgrade: "N\xE2ng c\u1EA5p l\xEAn \u0110\u1ED3ng \xFD B\u1EADc 3 - Cao",
879
- txt_tier_2_upgradetext: " & th\xEAm v\xE0o \u0110\u1ED3ng \xFD phi t\u1EADp trung d\u1EF1a tr\xEAn v\xED \u0111\u1EC3 \u0111\u01B0a ra s\u1EF1 \u0111\u1ED3ng \xFD r\xF5 r\xE0ng \u0111\u1ED1i v\u1EDBi vi\u1EC7c thu th\u1EADp v\xE0 x\u1EED l\xFD d\u1EEF li\u1EC7u \u0111\u1EC3 c\xF3 tr\u1EA3i nghi\u1EC7m an to\xE0n, ri\xEAng t\u01B0 v\xE0 \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a nh\u1EA5t.",
880
- txt_tier_3_tier: "C\u1EA5p 3",
881
- txt_tier_3_name: "V\xED phi t\u1EADp trung",
882
- txt_tier_3_levelname: "Cao",
883
- txt_tier_3_content: "S\u1EED d\u1EE5ng V\xED Web3 \u0111\u1EC3 ki\u1EC3m so\xE1t t\u1ED1t h\u01A1n d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n.",
884
- txt_tier_3_content_custom: "T\u1EADn h\u01B0\u1EDFng quy\u1EC1n ri\xEAng t\u01B0 cao h\u01A1n v\xE0 ki\u1EC3m so\xE1t d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n nhi\u1EC1u h\u01A1n v\u1EDBi t\xF9y ch\u1ECDn thu h\u1ED3i s\u1EF1 \u0111\u1ED3ng \xFD b\u1EA5t c\u1EE9 l\xFAc n\xE0o.",
885
- txt_tier_3_term: "B\u1EA1n \u0111\u1ED3ng \xFD cho d\u1EEF li\u1EC7u c\u1EE7a m\xECnh \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng, c\xF3 th\u1EC3 thu h\u1ED3i b\u1EA5t k\u1EF3 l\xFAc n\xE0o b\u1EA1n ch\u1ECDn.",
886
- txt_tier_3_term_custom: "T\xEDch h\u1EE3p V\xED Web3",
887
- txt_tier_3_upgrade: "N\xE2ng c\u1EA5p l\xEAn \u0110\u1ED3ng \xFD B\u1EADc 4 - Si\xEAu Cao c\u1EA5p (b\u1EADc cao nh\u1EA5t c\u1EE7a ch\xFAng t\xF4i!)",
888
- txt_tier_3_upgradetext: " & th\xEAm AesirX Shield of Privacy \u0111\u1EC3 \u0111\u01B0a ra s\u1EF1 \u0111\u1ED3ng \xFD r\xF5 r\xE0ng \u0111\u1ED1i v\u1EDBi vi\u1EC7c thu th\u1EADp v\xE0 x\u1EED l\xFD d\u1EEF li\u1EC7u \u0111\u1EC3 c\xF3 tr\u1EA3i nghi\u1EC7m an to\xE0n, ri\xEAng t\u01B0 v\xE0 \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a nh\u1EA5t.",
889
- txt_tier_4_tier: "C\u1EA5p 4",
890
- txt_tier_4_name: "V\xED k\u1EBFt h\u1EE3p + AesirX Shield of Privacy",
891
- txt_tier_4_levelname: "Si\xEAu N\xE2ng Cao",
892
- txt_tier_4_content: "S\u1EED d\u1EE5ng V\xED Web3 + AesirX Shield of Privacy c\u1EE7a b\u1EA1n v\xE0 c\xF3 to\xE0n quy\u1EC1n ki\u1EC3m so\xE1t tr\xEAn nhi\u1EC1u trang web \u0111\u1ED1i v\u1EDBi vi\u1EC7c s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n. \u0110\u1ED3ng \xFD ho\u1EB7c thu h\u1ED3i quy\u1EC1n b\u1EA5t c\u1EE9 l\xFAc n\xE0o \u0111\u1ED1i v\u1EDBi quy\u1EC1n s\u1EDF h\u1EEFu d\u1EEF li\u1EC7u phi t\u1EADp trung th\u1EF1c s\u1EF1.",
893
- txt_tier_4_content_custom: "K\u1EBFt h\u1EE3p V\xED Web3 c\u1EE7a b\u1EA1n v\u1EDBi AesirX SoP \u0111\u1EC3 c\xF3 to\xE0n quy\u1EC1n ki\u1EC3m so\xE1t nhi\u1EC1u trang web v\xE0 quy\u1EC1n s\u1EDF h\u1EEFu d\u1EEF li\u1EC7u phi t\u1EADp trung th\u1EF1c s\u1EF1.",
894
- txt_tier_4_term: "B\u1EA1n \u0111\u1ED3ng \xFD cho d\u1EEF li\u1EC7u c\u1EE7a m\xECnh \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng, c\xF3 th\u1EC3 thu h\u1ED3i b\u1EA5t k\u1EF3 l\xFAc n\xE0o b\u1EA1n ch\u1ECDn.",
895
- txt_tier_4_term_custom: "Ki\u1EC3m so\xE1t to\xE0n b\u1ED9 d\u1EEF li\u1EC7u v\u1EDBi l\xE1 ch\u1EAFn b\u1EA3o m\u1EADt",
896
- txt_tier_4_upgradetext: "Tr\u1EA3i nghi\u1EC7m c\xE1 nh\xE2n h\xF3a v\xE0 b\u1EA3o v\u1EC7 quy\u1EC1n ri\xEAng t\u01B0 cao nh\u1EA5t!",
897
- txt_show_details: "Hi\u1EC3n th\u1ECB chi ti\u1EBFt",
898
- txt_hide_details: "\u1EA8n chi ti\u1EBFt",
899
- txt_no_collect: "Ch\xFAng t\xF4i kh\xF4ng thu th\u1EADp b\u1EA5t k\u1EF3 d\u1EEF li\u1EC7u c\xE1 nh\xE2n n\xE0o, ch\u1EC9 thu th\u1EADp th\xF4ng tin chi ti\u1EBFt c\u1EE7a ng\u01B0\u1EDDi d\xF9ng.",
900
- txt_shield_of_privacy: "Shield of Privacy",
901
- txt_you_can_revoke: "Thu h\u1ED3i s\u1EF1 \u0111\u1ED3ng \xFD c\u1EE7a b\u1EA1n v\u1EC1 vi\u1EC7c s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u b\u1EA5t c\u1EE9 khi n\xE0o b\u1EA1n mu\u1ED1n.",
902
- txt_go_to: "\u0110i t\u1EDBi",
903
- txt_link: "li\xEAn k\u1EBFt",
904
- txt_for_more_information: "\u0111\u1EC3 bi\u1EBFt th\xEAm th\xF4ng tin.",
905
- txt_manage_consent: "Qu\u1EA3n l\xFD s\u1EF1 \u0111\u1ED3ng \xFD",
906
- txt_revoke_consent: "Thu h\u1ED3i s\u1EF1 \u0111\u1ED3ng \xFD",
907
- txt_yes_i_consent: "V\xE2ng, t\xF4i \u0111\u1ED3ng \xFD",
908
- txt_reject_consent: "T\u1EEB ch\u1ED1i",
909
- txt_please_connect: "Vui l\xF2ng k\u1EBFt n\u1ED1i v\xED Concordium c\u1EE7a b\u1EA1n",
910
- txt_please_sign: "Vui l\xF2ng k\xFD v\xE0o tin nh\u1EAFn tr\xEAn v\xED c\u1EE7a b\u1EA1n hai l\u1EA7n v\xE0 \u0111\u1EE3i n\xF3 \u0111\u01B0\u1EE3c l\u01B0u.",
911
- txt_save: "\u0110ang l\u01B0u...",
912
- txt_please_connect_your_wallet: "Vui l\xF2ng k\u1EBFt n\u1ED1i v\u1EDBi v\xED c\u1EE7a b\u1EA1n",
913
- txt_connecting: "\u0110ang k\u1EBFt n\u1ED1i",
914
- txt_here: "\u0110\xC2Y",
915
- txt_visit: "\u0110\u1EBFn",
916
- txt_take_full_control: "Ki\u1EC3m so\xE1t ho\xE0n to\xE0n d\u1EEF li\u1EC7u c\xE1 nh\xE2n c\u1EE7a b\u1EA1n",
917
- txt_consent: "\u0110\u1ED3ng \xFD",
918
- txt_about: "Gi\u1EDBi thi\u1EC7u",
919
- txt_detail: "Chi ti\u1EBFt",
920
- txt_consent_to_data: "\u0110\u1ED3ng \xFD s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u th\xF4ng qua L\xE1 ch\u1EAFn b\u1EA3o m\u1EADt (SoP) \u0111\u1EC3 c\xF3 to\xE0n quy\u1EC1n ki\u1EC3m so\xE1t d\u1EEF li\u1EC7u c\xE1 nh\xE2n c\u1EE7a b\u1EA1n. Tr\u1EA3i nghi\u1EC7m duy\u1EC7t web t\xF4n tr\u1ECDng quy\u1EC1n ri\xEAng t\u01B0, an to\xE0n v\xE0 c\xE1 nh\xE2n h\xF3a m\xE0 kh\xF4ng c\u1EA7n cookie.",
921
- txt_ethical_Compliance: "C\xF3 \u0111\u1EA1o \u0111\u1EE9c & tu\xE2n th\u1EE7 :",
922
- txt_detail_1: "<span class='fw-semibold text-dark'>Ki\u1EC3m so\xE1t d\u1EEF li\u1EC7u mang t\xEDnh c\xE1ch m\u1EA1ng:</span> Trao quy\u1EC1n cho b\u1EA3n th\xE2n v\u1EDBi to\xE0n quy\u1EC1n ki\u1EC3m so\xE1t d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n.",
923
- txt_detail_2: "<span class='fw-semibold text-dark'>D\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n v\u1EABn l\xE0 c\u1EE7a b\u1EA1n:</span> Ch\xFAng t\xF4i \u0111\u1EA3m b\u1EA3o r\u1EB1ng d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n kh\xF4ng bao gi\u1EDD \u0111\u01B0\u1EE3c b\xE1n ho\u1EB7c chia s\u1EBB.",
924
- txt_detail_3: "<span class='fw-semibold text-dark'>Ch\xFAng t\xF4i kh\xF4ng bao gi\u1EDD s\u1EED d\u1EE5ng cookie:</span> N\u1ED9i dung c\u1EE7a b\u1EA1n \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a m\xE0 kh\xF4ng s\u1EED d\u1EE5ng cookie.",
925
- "txt_under Hi\u1EC3u_your_consent": "Hi\u1EC3u m\u1EE9c \u0111\u1ED9 \u0111\u1ED3ng \xFD c\u1EE7a b\u1EA1n",
926
- txt_this_website_uses: "Trang web n\xE0y s\u1EED d\u1EE5ng M\xF4 h\xECnh \u0111\u1ED3ng \xFD ph\xE2n c\u1EA5p 4 c\u1EA5p mang t\xEDnh c\xE1ch m\u1EA1ng. M\u1ED7i c\u1EA5p th\u1EC3 hi\u1EC7n m\u1ED9t c\u1EA5p \u0111\u1ED9 quy\u1EC1n ho\u1EB7c quy\u1EC1n truy c\u1EADp kh\xE1c nhau m\xE0 ng\u01B0\u1EDDi d\xF9ng c\xF3 th\u1EC3 c\u1EA5p cho d\u1EEF li\u1EC7u c\u1EE7a h\u1ECD.",
927
- txt_about_1: "\u0110\u1EA3m b\u1EA3o tu\xE2n th\u1EE7: S\u1EED d\u1EE5ng SoP \u0111\u1EA3m b\u1EA3o tu\xE2n th\u1EE7 GDPR, CCPA v\xE0 c\xE1c lu\u1EADt v\u1EC1 quy\u1EC1n ri\xEAng t\u01B0 kh\xE1c.",
928
- txt_about_2: "S\u1EF1 \u0111\u1ED3ng \xFD linh ho\u1EA1t: B\u1EA1n c\xF3 th\u1EC3 thay \u0111\u1ED5i ho\u1EB7c r\xFAt l\u1EA1i s\u1EF1 \u0111\u1ED3ng \xFD c\u1EE7a m\xECnh b\u1EA5t c\u1EE9 l\xFAc n\xE0o th\xF4ng qua <a class='text-success fw-semibold text-design-underline' href='https://dapp.shield.aesirx.io' c\u1EE7a ch\xFAng t\xF4i target='_blank'>dApp</a>.",
929
- txt_about_3: "T\xECm hi\u1EC3u th\xEAm: Kh\xE1m ph\xE1 ph\u01B0\u01A1ng ph\xE1p x\u1EED l\xFD d\u1EEF li\u1EC7u c\u1EE7a ch\xFAng t\xF4i trong <a class='text-success fw-semibold text-trang tr\xED-underline' href='https://aesirx.io/privacy-policy' target= '_blank'>Ch\xEDnh s\xE1ch quy\u1EC1n ri\xEAng t\u01B0</a>.",
930
- txt_about_4: "D\xE0nh cho doanh nghi\u1EC7p: N\xE2ng cao l\xF2ng tin, b\u1EA3o m\u1EADt danh t\xEDnh ng\u01B0\u1EDDi d\xF9ng v\xE0 ng\u0103n ch\u1EB7n vi ph\u1EA1m. Th\xF4ng tin th\xEAm t\u1EA1i <a class='text-success fw-semibold text-design-underline' href='https://shield.aesirx. io' target='_blank'>https://shield.aesirx.io</a>.",
931
- txt_your_current_level: "M\u1EE9c \u0111\u1ED9 \u0111\u1ED3ng \xFD hi\u1EC7n t\u1EA1i c\u1EE7a b\u1EA1n l\xE0:",
932
- txt_upgrade_consent_to: "\u0110\u1ED3ng \xFD n\xE2ng c\u1EA5p l\xEAn:",
933
- txt_upgrade_consent: "\u0110\u1ED3ng \xFD n\xE2ng c\u1EA5p",
934
- txt_change_consent: "Thay \u0111\u1ED5i \u0111\u1ED3ng \xFD",
935
- txt_upgrade_consent_text: "N\xE2ng c\u1EA5p m\u1EE9c \u0111\u1ED9 \u0111\u1ED3ng \xFD c\u1EE7a b\u1EA1n v\xE0 t\u1EADn h\u01B0\u1EDFng to\xE0n b\u1ED9 l\u1EE3i \xEDch c\u1EE7a L\xE1 ch\u1EAFn b\u1EA3o m\u1EADt \u0111\u1EC3 c\xF3 \u0111\u01B0\u1EE3c tr\u1EA3i nghi\u1EC7m k\u1EF9 thu\u1EADt s\u1ED1 \u0111\u01B0\u1EE3c x\xE1c th\u1EF1c b\u1EB1ng ID, t\xF9y ch\u1EC9nh, an to\xE0n.",
936
- txt_cancel: "H\u1EE7y"
937
- };
938
-
939
- // src/translations/fr/common.json
940
- var common_default8 = {
941
- txt_tier_1_tier: "Niveau 1",
942
- txt_tier_1_name: "Bas\xE9 sur la session",
943
- txt_tier_1_levelname: "De base",
944
- txt_tier_1_content: "Id\xE9al pour les nouveaux visiteurs du site ou si vous ne souhaitez pas que vos donn\xE9es soient stock\xE9es au-del\xE0 de votre visite actuelle.",
945
- txt_tier_1_content_custom: "Pour une session de 30 minutes, nous utilisons uniquement des donn\xE9es comportementales (et non des donn\xE9es personnelles) pour am\xE9liorer votre exp\xE9rience de navigation.",
946
- txt_tier_1_term: "Vous consentez \xE0 la collecte de donn\xE9es pour une session de 30\xA0minutes uniquement.",
947
- txt_tier_1_term_custom: "Confidentialit\xE9 bas\xE9e sur une session de 30 minutes",
948
- txt_tier_1_upgrade: "Mettre \xE0 niveau vers le consentement de niveau 2 - Moyen",
949
- txt_tier_1_upgradetext: "\xA0& ajouter un portefeuille Web3 pour un meilleur contr\xF4le des donn\xE9es et un consentement ou r\xE9voquer \xE0 tout moment.",
950
- txt_tier_2_tier: "Niveau 2",
951
- txt_tier_2_name: "Bouclier de confidentialit\xE9 AesirX",
952
- txt_tier_2_levelname: "Moyen",
953
- txt_tier_2_content: "Id\xE9al pour des exp\xE9riences en ligne personnalis\xE9es et une gestion s\xE9curis\xE9e du consentement entre les sessions et les plateformes.",
954
- txt_tier_2_content_custom: "Profitez d'exp\xE9riences en ligne personnalis\xE9es sur plusieurs sessions et plateformes, avec une gestion s\xE9curis\xE9e du consentement.",
955
- txt_tier_2_term: "Vous consentez \xE0 l'utilisation des donn\xE9es sur plusieurs sessions.",
956
- txt_tier_2_term_custom: "Exp\xE9riences num\xE9riques am\xE9lior\xE9es avec Bouclier de confidentialit\xE9",
957
- txt_tier_2_upgrade: "Mettre \xE0 niveau vers le consentement de niveau 3 - \xC9lev\xE9",
958
- txt_tier_2_upgradetext: " & ajoutez le consentement d\xE9centralis\xE9 bas\xE9 sur le portefeuille pour donner un consentement explicite \xE0 la collecte et au traitement des donn\xE9es pour l'exp\xE9rience la plus s\xE9curis\xE9e, priv\xE9e et personnalis\xE9e.",
959
- txt_tier_3_tier: "Niveau 3",
960
- txt_tier_3_name: "Portefeuille d\xE9centralis\xE9",
961
- txt_tier_3_levelname: "\xC9lev\xE9",
962
- txt_tier_3_content: "Utilisez votre portefeuille Web3 pour un meilleur contr\xF4le sur vos donn\xE9es.",
963
- txt_tier_3_content_custom: "Profitez d'une plus grande confidentialit\xE9 et d'un meilleur contr\xF4le sur vos donn\xE9es avec la possibilit\xE9 de r\xE9voquer votre consentement \xE0 tout moment.",
964
- txt_tier_3_term: "Vous consentez \xE0 ce que vos donn\xE9es soient utilis\xE9es, qui peuvent \xEAtre r\xE9voqu\xE9es \xE0 tout moment.",
965
- txt_tier_3_term_custom: "Int\xE9gration du portefeuille Web3",
966
- txt_tier_3_upgrade: "Mettre \xE0 niveau vers le consentement de niveau 4 - Super avanc\xE9 (notre niveau le plus \xE9lev\xE9\xA0!)",
967
- txt_tier_3_upgradetext: " & ajouter AesirX Shield of Privacy pour donner un consentement explicite \xE0 la collecte et au traitement des donn\xE9es pour l'exp\xE9rience la plus s\xE9curis\xE9e, priv\xE9e et personnalis\xE9e.",
968
- txt_tier_4_tier: "Niveau 4",
969
- txt_tier_4_name: "Portefeuille combin\xE9 + bouclier de confidentialit\xE9 AesirX",
970
- txt_tier_4_levelname: "Super avanc\xE9",
971
- txt_tier_4_content: "Utilisez votre portefeuille Web3 + AesirX Shield of Privacy et obtenez un contr\xF4le multisite total de l'utilisation de vos donn\xE9es. Consentez ou r\xE9voquez les autorisations \xE0 tout moment pour une v\xE9ritable propri\xE9t\xE9 d\xE9centralis\xE9e des donn\xE9es.",
972
- txt_tier_4_content_custom: "Combinez votre portefeuille Web3 avec AesirX SoP pour un contr\xF4le multi-sites complet et une v\xE9ritable propri\xE9t\xE9 d\xE9centralis\xE9e des donn\xE9es.",
973
- txt_tier_4_term: "Vous consentez \xE0 ce que vos donn\xE9es soient utilis\xE9es, qui peuvent \xEAtre r\xE9voqu\xE9es \xE0 tout moment.",
974
- txt_tier_4_term_custom: "Contr\xF4le total des donn\xE9es avec bouclier de confidentialit\xE9",
975
- txt_tier_4_upgradetext: "L'exp\xE9rience la plus personnalis\xE9e et la plus respectueuse de la vie priv\xE9e\xA0!",
976
- txt_show_details: "Afficher les d\xE9tails",
977
- txt_hide_details: "Masquer les d\xE9tails",
978
- txt_no_collect: "Nous ne collectons aucune donn\xE9e personnelle, uniquement des informations sur les utilisateurs.",
979
- txt_shield_of_privacy: "Shield of Privacy",
980
- txt_you_can_revoke: "R\xE9voquer votre consentement \xE0 l'utilisation des donn\xE9es quand vous le souhaitez.",
981
- txt_go_to: "Aller \xE0",
982
- txt_link: "lien",
983
- txt_for_more_information: "pour plus d'informations.",
984
- txt_manage_consent: "G\xE9rer le consentement",
985
- txt_revoke_consent: "R\xE9voquer le consentement",
986
- txt_yes_i_consent: "Oui, je consens",
987
- txt_reject_consent: "Refuser le consentement",
988
- txt_Please_connect: "Veuillez connecter votre portefeuille Concordium",
989
- txt_Please_sign: "Veuillez signer deux fois le message sur votre portefeuille et attendre qu'il soit enregistr\xE9.",
990
- txt_saving: "Enregistrement en cours...",
991
- txt_Please_connect_your_wallet: "Veuillez vous connecter \xE0 votre portefeuille",
992
- txt_connecting: "Connexion",
993
- txt_here: "ICI",
994
- txt_visit: "Visite",
995
- txt_take_full_control: "Prenez le contr\xF4le total de vos donn\xE9es personnelles",
996
- txt_consent: "Consentement",
997
- txt_about: "\xC0 propos",
998
- txt_detail: "D\xE9tails",
999
- txt_consent_to_data: "Consentement \xE0 l'utilisation des donn\xE9es via Shield of Privacy (SoP) pour un contr\xF4le total sur vos donn\xE9es personnelles. B\xE9n\xE9ficiez d'une navigation respectueuse de la vie priv\xE9e, s\xE9curis\xE9e et personnalis\xE9e sans cookies.",
1000
- txt_ethical_compliant: "\xC9thique et conforme\xA0:",
1001
- txt_detail_1: "<span class='fw-semibold text-dark'>Contr\xF4le r\xE9volutionnaire des donn\xE9es\xA0:</span> Donnez-vous le contr\xF4le total de vos donn\xE9es.",
1002
- txt_detail_2: "<span class='fw-semibold text-dark'>Vos donn\xE9es restent les v\xF4tres\xA0:</span> Nous garantissons que vos donn\xE9es ne sont jamais vendues ou partag\xE9es.",
1003
- txt_detail_3: "<span class='fw-semibold text-dark'>Nous n'utilisons jamais de cookies\xA0:</span> Votre contenu est personnalis\xE9 sans utilisation de cookies.",
1004
- txt_understanding_your_consent: "Comprendre vos niveaux de consentement",
1005
- txt_this_website_uses: "Ce site Web utilise un mod\xE8le de consentement d\xE9centralis\xE9 r\xE9volutionnaire \xE0 4 niveaux. Chaque niveau repr\xE9sente un niveau diff\xE9rent d'autorisation ou d'acc\xE8s que les utilisateurs peuvent accorder \xE0 leurs donn\xE9es.",
1006
- txt_about_1: "Conformit\xE9 assur\xE9e\xA0: l'utilisation de SoP garantit la conformit\xE9 au RGPD, au CCPA et aux autres lois sur la confidentialit\xE9.",
1007
- txt_about_2: "Consentement flexible\xA0: vous pouvez modifier ou retirer votre consentement \xE0 tout moment via notre <a class='text-success fw-semibold text-decoration-underline' href='https://dapp.shield.aesirx.io' target='_blank'>dApp</a>.",
1008
- txt_about_3: "En savoir plus\xA0: d\xE9couvrez notre approche du traitement des donn\xE9es dans notre <a class='text-success fw-semibold text-decoration-underline' href='https://aesirx.io/privacy-policy' target= '_blank'>Politique de confidentialit\xE9</a>.",
1009
- txt_about_4: "Pour les entreprises\xA0: am\xE9liorez la confiance, s\xE9curisez les identit\xE9s des utilisateurs et pr\xE9venez les violations. Plus d'informations sur <a class='text-success fw-semibold text-decoration-underline' href='https://shield.aesirx. io' target='_blank'>https://shield.aesirx.io</a>.",
1010
- txt_your_current_level: "Votre niveau de consentement actuel est :",
1011
- txt_upgrade_consent_to: "Mettre \xE0 niveau le consentement vers :",
1012
- txt_upgrade_consent: "Consentement de mise \xE0 niveau",
1013
- txt_change_consent: "Modifier le consentement",
1014
- txt_upgrade_consent_text: "Am\xE9liorez votre niveau de consentement et b\xE9n\xE9ficiez de tous les avantages du Bouclier de confidentialit\xE9 pour des exp\xE9riences num\xE9riques personnalis\xE9es, s\xE9curis\xE9es et authentifi\xE9es par identification.",
1015
- txt_cancel: "Annuler"
1016
- };
1017
-
1018
- // src/translations/index.js
1019
- var appLanguages = {
1020
- en: common_default2,
1021
- da: common_default,
1022
- vi: common_default7,
1023
- th: common_default5,
1024
- hr: common_default4,
1025
- uk: common_default6,
1026
- es: common_default3,
1027
- fr: common_default8
1028
- };
1029
-
1030
- // src/utils/I18nextProvider.tsx
1031
- import React2, { createContext as createContext2, useContext as useContext4 } from "react";
1032
- import i18n from "i18next";
1033
- import LanguageDetector from "i18next-browser-languagedetector";
1034
- var defaultLanguages = {
1035
- en: {
1036
- title: "English",
1037
- translation: common_default2
1038
- },
1039
- da: {
1040
- title: "Dansk",
1041
- translation: common_default
1042
- },
1043
- vi: {
1044
- title: "Ti\u1EBFng Vi\u1EC7t",
1045
- translation: common_default7
1046
- },
1047
- th: {
1048
- title: "\u0E20\u0E32\u0E29\u0E32\u0E44\u0E17\u0E22",
1049
- translation: common_default5
1050
- },
1051
- hr: {
1052
- title: "Hrvatski",
1053
- translation: common_default4
1054
- },
1055
- uk: {
1056
- title: "Y\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430",
1057
- translation: common_default6
1058
- },
1059
- es: {
1060
- title: "Espa\xF1ol",
1061
- translation: common_default3
1062
- },
1063
- fr: {
1064
- title: "Fran\xE7ais",
1065
- translation: common_default8
1066
- }
1067
- };
1068
- var I18NextContext = createContext2({
1069
- listLanguages: []
1070
- });
1071
- var AesirXI18nextProvider = ({
1072
- children,
1073
- appLanguages: appLanguages2
1074
- }) => {
1075
- const listLanguages = [];
1076
- if (!i18n.isInitialized) {
1077
- i18n.use(LanguageDetector).use(initReactI18next).init({
1078
- resources: defaultLanguages,
1079
- lng: typeof window !== "undefined" && document.documentElement.lang || "en",
1080
- fallbackLng: "en",
1081
- debug: true
1082
- });
1083
- }
1084
- Object.entries(appLanguages2).forEach(([key, resource]) => {
1085
- i18n.addResourceBundle(key, "translation", resource);
1086
- listLanguages.push({ label: defaultLanguages[key].title, value: key });
1087
- });
1088
- return /* @__PURE__ */ React2.createElement(I18NextContext.Provider, { value: { listLanguages } }, /* @__PURE__ */ React2.createElement(I18nextProvider, { i18n }, children));
1089
- };
1090
-
1091
- // src/utils/AnalyticsContextProvider.tsx
1092
- var AnalyticsContext = React3.createContext({
1093
- event_uuid: void 0,
1094
- visitor_uuid: void 0,
1095
- setEventID: void 0,
1096
- setUUID: void 0,
1097
- ref: void 0
1098
- });
1099
- var AnalyticsContextProvider = ({ children }) => {
1100
- const [eventID, setEventID] = useState2();
1101
- const [UUID, setUUID] = useState2();
1102
- const ref = useRef2();
1103
- return /* @__PURE__ */ React3.createElement(
1104
- AnalyticsContext.Provider,
1105
- {
1106
- value: {
1107
- event_uuid: eventID,
1108
- visitor_uuid: UUID,
1109
- setEventID,
1110
- setUUID,
1111
- ref
1112
- }
1113
- },
1114
- /* @__PURE__ */ React3.createElement(AesirXI18nextProvider, { appLanguages }, children)
1115
- );
1116
- };
1117
- var AnalyticsContextProvider_default = AnalyticsContextProvider;
1118
-
1119
- // src/utils/consent.ts
1120
- import { stringMessage } from "@concordium/react-components";
1121
- import axios from "axios";
1122
- var agreeConsents = async (endpoint, level, uuid, consent, wallet, signature, web3id, jwt, network = "concordium", gtagId, gtmId, layout) => {
1123
- const url = `${endpoint}/consent/v1/level${level}/${uuid}`;
1124
- const urlV2 = `${endpoint}/consent/v2/level${level}/${uuid}`;
1125
- if (sessionStorage.getItem("consentGranted") !== "true") {
1126
- gtagId && consentModeGrant(true, gtagId, layout);
1127
- gtmId && consentModeGrant(false, gtmId, layout);
1128
- }
1129
- try {
1130
- switch (level) {
1131
- case 1:
1132
- await axios.post(`${url}/${consent}`);
1133
- break;
1134
- case 2:
1135
- await axios.post(
1136
- `${url}`,
1137
- { consent: [1, 2] },
1138
- {
1139
- headers: {
1140
- "Content-Type": "application/json",
1141
- Authorization: "Bearer " + jwt
1142
- }
1143
- }
1144
- );
1145
- break;
1146
- case 3:
1147
- await axios.post(`${url}/${network}/${wallet}`, {
1148
- signature,
1149
- consent
1150
- });
1151
- break;
1152
- case 4:
1153
- await axios.post(
1154
- `${urlV2}/${network}/${wallet}`,
1155
- {
1156
- signature,
1157
- consent
1158
- },
1159
- {
1160
- headers: {
1161
- "Content-Type": "application/json",
1162
- Authorization: "Bearer " + jwt
1163
- }
1164
- }
1165
- );
1166
- break;
1167
- default:
1168
- break;
1169
- }
1170
- } catch (error) {
1171
- throw error;
1172
- }
1173
- };
1174
- var consentModeGrant = async (isGtag, id, layout) => {
1175
- if (layout !== "advance-consent-mode") {
1176
- isGtag ? loadGtagScript(id) : loadGtmScript(id);
1177
- }
1178
- sessionStorage.setItem("consentGranted", "true");
1179
- function gtag(p0, p1, p2) {
1180
- dataLayer.push(arguments);
1181
- }
1182
- gtag("consent", "update", {
1183
- ad_user_data: "granted",
1184
- ad_personalization: "granted",
1185
- ad_storage: "granted",
1186
- analytics_storage: "granted"
1187
- });
1188
- };
1189
- var loadGtagScript = (gtagId) => {
1190
- const gtagScript = document.createElement("script");
1191
- gtagScript.async = true;
1192
- gtagScript.src = `https://www.googletagmanager.com/gtag/js?id=${gtagId}`;
1193
- const firstScript = document.getElementsByTagName("script")[0];
1194
- firstScript.parentNode.insertBefore(gtagScript, firstScript);
1195
- };
1196
- var loadGtmScript = (gtmId) => {
1197
- const gtmScript = document.createElement("script");
1198
- gtmScript.async = true;
1199
- gtmScript.src = `https://www.googletagmanager.com/gtm.js?id=${gtmId}`;
1200
- const firstScript = document.getElementsByTagName("script")[0];
1201
- firstScript.parentNode.insertBefore(gtmScript, firstScript);
1202
- };
1203
- var getConsents = async (endpoint, uuid) => {
1204
- try {
1205
- const response = (await axios.get(`${endpoint}/visitor/v1/${uuid}`))?.data?.visitor_consents;
1206
- return response;
1207
- } catch (error) {
1208
- throw error;
1209
- }
1210
- };
1211
- var getSignature = async (endpoint, address, provider, text, network = "concordium") => {
1212
- try {
1213
- const nonce = await getNonce(endpoint, address, text, network);
1214
- return getSignedNonce(nonce, address, provider);
1215
- } catch (error) {
1216
- throw error;
1217
- }
1218
- };
1219
- var getNonce = async (endpoint, address, text, network = "concordium") => {
1220
- try {
1221
- const nonce = (await axios.post(`${endpoint}/wallet/v1/${network}/${address}/nonce`, { text }))?.data.nonce;
1222
- return nonce;
1223
- } catch (error) {
1224
- throw error;
1225
- }
1226
- };
1227
- var getSignedNonce = async (nonce, address, provider) => {
1228
- const signature = await provider.signMessage(address, stringMessage(`${nonce}`));
1229
- return Buffer.from(
1230
- typeof signature === "object" && signature !== null ? JSON.stringify(signature) : signature,
1231
- "utf-8"
1232
- ).toString("base64");
1233
- };
1234
- var revokeConsents = async (endpoint, level, uuid, wallet, signature, web3id, jwt, network = "concordium") => {
1235
- const url = `${endpoint}/consent/v1/level${level}/revoke/${uuid}`;
1236
- const urlV2 = `${endpoint}/consent/v2/level${level}/revoke/${uuid}`;
1237
- sessionStorage.setItem("consentGranted", "false");
1238
- try {
1239
- switch (level) {
1240
- case "2":
1241
- await axios.put(`${url}`, null, {
1242
- headers: {
1243
- "Content-Type": "application/json",
1244
- Authorization: "Bearer " + jwt
1245
- }
1246
- });
1247
- break;
1248
- case "3":
1249
- await axios.put(`${url}/${network}/${wallet}`, {
1250
- signature
1251
- });
1252
- break;
1253
- case "4":
1254
- await axios.put(
1255
- `${urlV2}/${network}/${wallet}`,
1256
- {
1257
- signature
1258
- },
1259
- {
1260
- headers: {
1261
- "Content-Type": "application/json",
1262
- Authorization: "Bearer " + jwt
1263
- }
1264
- }
1265
- );
1266
- break;
1267
- default:
1268
- break;
1269
- }
1270
- } catch (error) {
1271
- throw error;
1272
- }
1273
- };
1274
- var getMember = async (endpoint, accessToken) => {
1275
- try {
1276
- const member = await axios.get(
1277
- `${endpoint}/index.php?webserviceClient=site&webserviceVersion=1.0.0&option=persona&api=hal&task=getTokenByUser`,
1278
- {
1279
- headers: {
1280
- "Content-Type": "application/json",
1281
- Authorization: "Bearer " + accessToken
1282
- }
1283
- }
1284
- );
1285
- if (member?.data?.result?.member_id) {
1286
- const data = await axios.get(
1287
- `${endpoint}/index.php?webserviceClient=site&webserviceVersion=1.0.0&option=member&api=hal&id=${member?.data?.result?.member_id}`,
1288
- {
1289
- headers: {
1290
- "Content-Type": "application/json",
1291
- Authorization: "Bearer " + accessToken
1292
- }
1293
- }
1294
- );
1295
- return data?.data;
1296
- }
1297
- } catch (error) {
1298
- console.log("getMember", error);
1299
- throw error;
1300
- }
1301
- };
1302
- var getWalletNonce = async (endpoint, wallet, publicAddress) => {
1303
- try {
1304
- const reqAuthFormData = {
1305
- publicAddress,
1306
- wallet,
1307
- text: `Login with nonce: {}`
1308
- };
1309
- const config = {
1310
- method: "post",
1311
- url: `${endpoint}/index.php?webserviceClient=site&webserviceVersion=1.0.0&option=member&task=getWalletNonce&api=hal`,
1312
- headers: {
1313
- "Content-Type": "application/json"
1314
- },
1315
- data: reqAuthFormData
1316
- };
1317
- const { data } = await axios(config);
1318
- if (data.result) {
1319
- return data.result;
1320
- }
1321
- throw false;
1322
- } catch (error) {
1323
- throw error;
1324
- }
1325
- };
1326
- var verifySignature = async (endpoint, wallet, publicAddress, signature) => {
1327
- try {
1328
- const returnParams = new URLSearchParams(window.location.search)?.get("return");
1329
- const reqAuthFormData = {
1330
- wallet,
1331
- publicAddress,
1332
- signature
1333
- };
1334
- const config = {
1335
- method: "post",
1336
- url: `${endpoint}/index.php?webserviceClient=site&webserviceVersion=1.0.0&option=member&task=walletLogin&api=hal&return=${returnParams ?? null}`,
1337
- headers: {
1338
- "Content-Type": "application/json"
1339
- },
1340
- data: reqAuthFormData
1341
- };
1342
- const { data } = await axios(config);
1343
- if (data?.result) {
1344
- return data?.result;
1345
- } else {
1346
- throw false;
1347
- }
1348
- } catch (error) {
1349
- console.log(error);
1350
- throw error;
1351
- }
1352
- };
1353
- var getConsentTemplate = async (domain) => {
1354
- try {
1355
- const endpointWeb3 = "https://web3id.backend.aesirx.io:8001";
1356
- const data = await axios.get(`${endpointWeb3}/datastream/template/${domain}`, {
1357
- headers: {
1358
- "Content-Type": "application/json"
1359
- }
1360
- });
1361
- if (data) {
1362
- return data;
1363
- }
1364
- } catch (error) {
1365
- console.log("error", error);
1366
- }
1367
- };
1368
-
1369
- export {
1370
- useTranslation,
1371
- AnalyticsContext,
1372
- AnalyticsContextProvider_default,
1373
- agreeConsents,
1374
- loadGtagScript,
1375
- loadGtmScript,
1376
- getConsents,
1377
- getSignature,
1378
- getNonce,
1379
- revokeConsents,
1380
- getMember,
1381
- getWalletNonce,
1382
- verifySignature,
1383
- getConsentTemplate
1384
- };
1385
- /*
1386
- * @copyright Copyright (C) 2022 AesirX. All rights reserved.
1387
- * @license GNU General Public License version 3, see LICENSE.
1388
- */