@smileid/web-components 11.4.5 → 11.5.0

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.
Files changed (83) hide show
  1. package/dist/esm/{DocumentCaptureScreens-D2G0NOQr.js → DocumentCaptureScreens-ucJDu5nH.js} +555 -2470
  2. package/dist/esm/DocumentCaptureScreens-ucJDu5nH.js.map +1 -0
  3. package/dist/esm/{EndUserConsent-uHfA3txP.js → EndUserConsent-CsiwoThZ.js} +3 -3
  4. package/dist/esm/{EndUserConsent-uHfA3txP.js.map → EndUserConsent-CsiwoThZ.js.map} +1 -1
  5. package/dist/esm/{Navigation-Bb7MPLE8.js → Navigation-Xg565kcu.js} +28 -22
  6. package/dist/esm/Navigation-Xg565kcu.js.map +1 -0
  7. package/dist/esm/SelfieCaptureScreens-D3KuMzZA.js +11471 -0
  8. package/dist/esm/SelfieCaptureScreens-D3KuMzZA.js.map +1 -0
  9. package/dist/esm/{TotpConsent-Depzg0ti.js → TotpConsent-CRtmtudl.js} +2 -2
  10. package/dist/esm/{TotpConsent-Depzg0ti.js.map → TotpConsent-CRtmtudl.js.map} +1 -1
  11. package/dist/esm/combobox.js +1 -1
  12. package/dist/esm/document.js +1 -1
  13. package/dist/esm/end-user-consent.js +1 -1
  14. package/dist/esm/index-CUwa6MPI.js +1363 -0
  15. package/dist/esm/{index-C4RTMbgw.js.map → index-CUwa6MPI.js.map} +1 -1
  16. package/dist/esm/localisation.js +1 -1
  17. package/dist/esm/main.js +6 -6
  18. package/dist/esm/navigation.js +1 -1
  19. package/dist/esm/package-BmVbDNny.js +2535 -0
  20. package/dist/esm/package-BmVbDNny.js.map +1 -0
  21. package/dist/esm/selfie.js +1 -1
  22. package/dist/esm/smart-camera-web.js +67 -37
  23. package/dist/esm/smart-camera-web.js.map +1 -1
  24. package/dist/esm/totp-consent.js +1 -1
  25. package/dist/smart-camera-web.js +877 -122
  26. package/dist/smart-camera-web.js.map +1 -1
  27. package/dist/types/main.d.ts +11 -0
  28. package/lib/components/navigation/src/Navigation.js +27 -8
  29. package/lib/components/selfie/src/SelfieCaptureScreens.js +56 -8
  30. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieCapture.tsx +684 -0
  31. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieConsent.tsx +71 -0
  32. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieSubmission.tsx +181 -0
  33. package/lib/components/selfie/src/enhanced-smartselfie-capture/OvalProgress.tsx +87 -0
  34. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/Icon.svg +8 -0
  35. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/accessories.svg +77 -0
  36. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/active_liveness_animation.lottie +0 -0
  37. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/device.svg +12 -0
  38. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/device_orientation.lottie +0 -0
  39. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/good.svg +52 -0
  40. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/id-card.svg +9 -0
  41. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/illustrations.tsx +852 -0
  42. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/instructions-img.svg +3 -0
  43. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/multiple-faces.svg +69 -0
  44. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/person.svg +6 -0
  45. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/phone.svg +8 -0
  46. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/poor-lighting.svg +53 -0
  47. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/too_dark_animation.lottie +0 -0
  48. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/ActiveLivenessOverlay.tsx +226 -0
  49. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/AlertDisplay.tsx +38 -0
  50. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/BackNavigation.tsx +45 -0
  51. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CameraPreview.tsx +96 -0
  52. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CaptureControls.tsx +97 -0
  53. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CaptureGuidelines.tsx +374 -0
  54. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/ConsentView.tsx +460 -0
  55. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/SubmissionView.tsx +426 -0
  56. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/index.ts +3 -0
  57. package/lib/components/selfie/src/enhanced-smartselfie-capture/constants.ts +23 -0
  58. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/index.ts +2 -0
  59. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/useCamera.ts +238 -0
  60. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/useFaceCapture.ts +1075 -0
  61. package/lib/components/selfie/src/enhanced-smartselfie-capture/index.ts +1 -0
  62. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/alertMessages.ts +20 -0
  63. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/canvas.ts +108 -0
  64. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/faceDetection.ts +545 -0
  65. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/imageCapture.ts +66 -0
  66. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/imageQuality.ts +151 -0
  67. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/index.ts +5 -0
  68. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/mediapipeManager.ts +215 -0
  69. package/lib/components/selfie/src/selfie-capture-wrapper/SelfieCaptureWrapper.tsx +24 -1
  70. package/lib/components/selfie/src/smartselfie-capture/SmartSelfieCapture.tsx +2 -2
  71. package/lib/components/selfie/src/smartselfie-capture/hooks/useFaceCapture.ts +15 -7
  72. package/lib/components/selfie/src/smartselfie-capture/utils/canvas.ts +4 -6
  73. package/lib/components/signature-pad/package.json +1 -1
  74. package/lib/components/smart-camera-web/src/SmartCameraWeb.js +64 -7
  75. package/lib/domain/localisation/index.js +2 -2
  76. package/package.json +2 -2
  77. package/dist/esm/DocumentCaptureScreens-D2G0NOQr.js.map +0 -1
  78. package/dist/esm/Navigation-Bb7MPLE8.js.map +0 -1
  79. package/dist/esm/SelfieCaptureScreens-Dr7VzON7.js +0 -7651
  80. package/dist/esm/SelfieCaptureScreens-Dr7VzON7.js.map +0 -1
  81. package/dist/esm/index-C4RTMbgw.js +0 -1360
  82. package/dist/esm/package-D6YrpMcO.js +0 -565
  83. package/dist/esm/package-D6YrpMcO.js.map +0 -1
@@ -0,0 +1,1363 @@
1
+ var M = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
2
+ function Zn(e) {
3
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
4
+ }
5
+ var J, Er;
6
+ function ei() {
7
+ if (Er) return J;
8
+ Er = 1;
9
+ function e() {
10
+ this.__data__ = [], this.size = 0;
11
+ }
12
+ return J = e, J;
13
+ }
14
+ var Y, Gr;
15
+ function E() {
16
+ if (Gr) return Y;
17
+ Gr = 1;
18
+ function e(r, t) {
19
+ return r === t || r !== r && t !== t;
20
+ }
21
+ return Y = e, Y;
22
+ }
23
+ var Q, Hr;
24
+ function G() {
25
+ if (Hr) return Q;
26
+ Hr = 1;
27
+ var e = E();
28
+ function r(t, n) {
29
+ for (var i = t.length; i--; )
30
+ if (e(t[i][0], n))
31
+ return i;
32
+ return -1;
33
+ }
34
+ return Q = r, Q;
35
+ }
36
+ var X, Ur;
37
+ function ri() {
38
+ if (Ur) return X;
39
+ Ur = 1;
40
+ var e = G(), r = Array.prototype, t = r.splice;
41
+ function n(i) {
42
+ var a = this.__data__, o = e(a, i);
43
+ if (o < 0)
44
+ return !1;
45
+ var s = a.length - 1;
46
+ return o == s ? a.pop() : t.call(a, o, 1), --this.size, !0;
47
+ }
48
+ return X = n, X;
49
+ }
50
+ var Z, Vr;
51
+ function ti() {
52
+ if (Vr) return Z;
53
+ Vr = 1;
54
+ var e = G();
55
+ function r(t) {
56
+ var n = this.__data__, i = e(n, t);
57
+ return i < 0 ? void 0 : n[i][1];
58
+ }
59
+ return Z = r, Z;
60
+ }
61
+ var ee, $r;
62
+ function ni() {
63
+ if ($r) return ee;
64
+ $r = 1;
65
+ var e = G();
66
+ function r(t) {
67
+ return e(this.__data__, t) > -1;
68
+ }
69
+ return ee = r, ee;
70
+ }
71
+ var re, Kr;
72
+ function ii() {
73
+ if (Kr) return re;
74
+ Kr = 1;
75
+ var e = G();
76
+ function r(t, n) {
77
+ var i = this.__data__, a = e(i, t);
78
+ return a < 0 ? (++this.size, i.push([t, n])) : i[a][1] = n, this;
79
+ }
80
+ return re = r, re;
81
+ }
82
+ var te, Wr;
83
+ function H() {
84
+ if (Wr) return te;
85
+ Wr = 1;
86
+ var e = ei(), r = ri(), t = ti(), n = ni(), i = ii();
87
+ function a(o) {
88
+ var s = -1, u = o == null ? 0 : o.length;
89
+ for (this.clear(); ++s < u; ) {
90
+ var c = o[s];
91
+ this.set(c[0], c[1]);
92
+ }
93
+ }
94
+ return a.prototype.clear = e, a.prototype.delete = r, a.prototype.get = t, a.prototype.has = n, a.prototype.set = i, te = a, te;
95
+ }
96
+ var ne, Jr;
97
+ function ai() {
98
+ if (Jr) return ne;
99
+ Jr = 1;
100
+ var e = H();
101
+ function r() {
102
+ this.__data__ = new e(), this.size = 0;
103
+ }
104
+ return ne = r, ne;
105
+ }
106
+ var ie, Yr;
107
+ function oi() {
108
+ if (Yr) return ie;
109
+ Yr = 1;
110
+ function e(r) {
111
+ var t = this.__data__, n = t.delete(r);
112
+ return this.size = t.size, n;
113
+ }
114
+ return ie = e, ie;
115
+ }
116
+ var ae, Qr;
117
+ function si() {
118
+ if (Qr) return ae;
119
+ Qr = 1;
120
+ function e(r) {
121
+ return this.__data__.get(r);
122
+ }
123
+ return ae = e, ae;
124
+ }
125
+ var oe, Xr;
126
+ function ui() {
127
+ if (Xr) return oe;
128
+ Xr = 1;
129
+ function e(r) {
130
+ return this.__data__.has(r);
131
+ }
132
+ return oe = e, oe;
133
+ }
134
+ var se, Zr;
135
+ function kn() {
136
+ if (Zr) return se;
137
+ Zr = 1;
138
+ var e = typeof M == "object" && M && M.Object === Object && M;
139
+ return se = e, se;
140
+ }
141
+ var ue, et;
142
+ function P() {
143
+ if (et) return ue;
144
+ et = 1;
145
+ var e = kn(), r = typeof self == "object" && self && self.Object === Object && self, t = e || r || Function("return this")();
146
+ return ue = t, ue;
147
+ }
148
+ var ce, rt;
149
+ function Dn() {
150
+ if (rt) return ce;
151
+ rt = 1;
152
+ var e = P(), r = e.Symbol;
153
+ return ce = r, ce;
154
+ }
155
+ var le, tt;
156
+ function ci() {
157
+ if (tt) return le;
158
+ tt = 1;
159
+ var e = Dn(), r = Object.prototype, t = r.hasOwnProperty, n = r.toString, i = e ? e.toStringTag : void 0;
160
+ function a(o) {
161
+ var s = t.call(o, i), u = o[i];
162
+ try {
163
+ o[i] = void 0;
164
+ var c = !0;
165
+ } catch {
166
+ }
167
+ var l = n.call(o);
168
+ return c && (s ? o[i] = u : delete o[i]), l;
169
+ }
170
+ return le = a, le;
171
+ }
172
+ var de, nt;
173
+ function li() {
174
+ if (nt) return de;
175
+ nt = 1;
176
+ var e = Object.prototype, r = e.toString;
177
+ function t(n) {
178
+ return r.call(n);
179
+ }
180
+ return de = t, de;
181
+ }
182
+ var fe, it;
183
+ function U() {
184
+ if (it) return fe;
185
+ it = 1;
186
+ var e = Dn(), r = ci(), t = li(), n = "[object Null]", i = "[object Undefined]", a = e ? e.toStringTag : void 0;
187
+ function o(s) {
188
+ return s == null ? s === void 0 ? i : n : a && a in Object(s) ? r(s) : t(s);
189
+ }
190
+ return fe = o, fe;
191
+ }
192
+ var pe, at;
193
+ function A() {
194
+ if (at) return pe;
195
+ at = 1;
196
+ function e(r) {
197
+ var t = typeof r;
198
+ return r != null && (t == "object" || t == "function");
199
+ }
200
+ return pe = e, pe;
201
+ }
202
+ var ve, ot;
203
+ function xr() {
204
+ if (ot) return ve;
205
+ ot = 1;
206
+ var e = U(), r = A(), t = "[object AsyncFunction]", n = "[object Function]", i = "[object GeneratorFunction]", a = "[object Proxy]";
207
+ function o(s) {
208
+ if (!r(s))
209
+ return !1;
210
+ var u = e(s);
211
+ return u == n || u == i || u == t || u == a;
212
+ }
213
+ return ve = o, ve;
214
+ }
215
+ var he, st;
216
+ function di() {
217
+ if (st) return he;
218
+ st = 1;
219
+ var e = P(), r = e["__core-js_shared__"];
220
+ return he = r, he;
221
+ }
222
+ var me, ut;
223
+ function fi() {
224
+ if (ut) return me;
225
+ ut = 1;
226
+ var e = di(), r = (function() {
227
+ var n = /[^.]+$/.exec(e && e.keys && e.keys.IE_PROTO || "");
228
+ return n ? "Symbol(src)_1." + n : "";
229
+ })();
230
+ function t(n) {
231
+ return !!r && r in n;
232
+ }
233
+ return me = t, me;
234
+ }
235
+ var ge, ct;
236
+ function pi() {
237
+ if (ct) return ge;
238
+ ct = 1;
239
+ var e = Function.prototype, r = e.toString;
240
+ function t(n) {
241
+ if (n != null) {
242
+ try {
243
+ return r.call(n);
244
+ } catch {
245
+ }
246
+ try {
247
+ return n + "";
248
+ } catch {
249
+ }
250
+ }
251
+ return "";
252
+ }
253
+ return ge = t, ge;
254
+ }
255
+ var ye, lt;
256
+ function vi() {
257
+ if (lt) return ye;
258
+ lt = 1;
259
+ var e = xr(), r = fi(), t = A(), n = pi(), i = /[\\^$.*+?()[\]{}|]/g, a = /^\[object .+?Constructor\]$/, o = Function.prototype, s = Object.prototype, u = o.toString, c = s.hasOwnProperty, l = RegExp(
260
+ "^" + u.call(c).replace(i, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"
261
+ );
262
+ function f(p) {
263
+ if (!t(p) || r(p))
264
+ return !1;
265
+ var y = e(p) ? l : a;
266
+ return y.test(n(p));
267
+ }
268
+ return ye = f, ye;
269
+ }
270
+ var be, dt;
271
+ function hi() {
272
+ if (dt) return be;
273
+ dt = 1;
274
+ function e(r, t) {
275
+ return r?.[t];
276
+ }
277
+ return be = e, be;
278
+ }
279
+ var _e, ft;
280
+ function jr() {
281
+ if (ft) return _e;
282
+ ft = 1;
283
+ var e = vi(), r = hi();
284
+ function t(n, i) {
285
+ var a = r(n, i);
286
+ return e(a) ? a : void 0;
287
+ }
288
+ return _e = t, _e;
289
+ }
290
+ var qe, pt;
291
+ function Ln() {
292
+ if (pt) return qe;
293
+ pt = 1;
294
+ var e = jr(), r = P(), t = e(r, "Map");
295
+ return qe = t, qe;
296
+ }
297
+ var Ce, vt;
298
+ function V() {
299
+ if (vt) return Ce;
300
+ vt = 1;
301
+ var e = jr(), r = e(Object, "create");
302
+ return Ce = r, Ce;
303
+ }
304
+ var Se, ht;
305
+ function mi() {
306
+ if (ht) return Se;
307
+ ht = 1;
308
+ var e = V();
309
+ function r() {
310
+ this.__data__ = e ? e(null) : {}, this.size = 0;
311
+ }
312
+ return Se = r, Se;
313
+ }
314
+ var Te, mt;
315
+ function gi() {
316
+ if (mt) return Te;
317
+ mt = 1;
318
+ function e(r) {
319
+ var t = this.has(r) && delete this.__data__[r];
320
+ return this.size -= t ? 1 : 0, t;
321
+ }
322
+ return Te = e, Te;
323
+ }
324
+ var Re, gt;
325
+ function yi() {
326
+ if (gt) return Re;
327
+ gt = 1;
328
+ var e = V(), r = "__lodash_hash_undefined__", t = Object.prototype, n = t.hasOwnProperty;
329
+ function i(a) {
330
+ var o = this.__data__;
331
+ if (e) {
332
+ var s = o[a];
333
+ return s === r ? void 0 : s;
334
+ }
335
+ return n.call(o, a) ? o[a] : void 0;
336
+ }
337
+ return Re = i, Re;
338
+ }
339
+ var Ie, yt;
340
+ function bi() {
341
+ if (yt) return Ie;
342
+ yt = 1;
343
+ var e = V(), r = Object.prototype, t = r.hasOwnProperty;
344
+ function n(i) {
345
+ var a = this.__data__;
346
+ return e ? a[i] !== void 0 : t.call(a, i);
347
+ }
348
+ return Ie = n, Ie;
349
+ }
350
+ var Ae, bt;
351
+ function _i() {
352
+ if (bt) return Ae;
353
+ bt = 1;
354
+ var e = V(), r = "__lodash_hash_undefined__";
355
+ function t(n, i) {
356
+ var a = this.__data__;
357
+ return this.size += this.has(n) ? 0 : 1, a[n] = e && i === void 0 ? r : i, this;
358
+ }
359
+ return Ae = t, Ae;
360
+ }
361
+ var we, _t;
362
+ function qi() {
363
+ if (_t) return we;
364
+ _t = 1;
365
+ var e = mi(), r = gi(), t = yi(), n = bi(), i = _i();
366
+ function a(o) {
367
+ var s = -1, u = o == null ? 0 : o.length;
368
+ for (this.clear(); ++s < u; ) {
369
+ var c = o[s];
370
+ this.set(c[0], c[1]);
371
+ }
372
+ }
373
+ return a.prototype.clear = e, a.prototype.delete = r, a.prototype.get = t, a.prototype.has = n, a.prototype.set = i, we = a, we;
374
+ }
375
+ var Pe, qt;
376
+ function Ci() {
377
+ if (qt) return Pe;
378
+ qt = 1;
379
+ var e = qi(), r = H(), t = Ln();
380
+ function n() {
381
+ this.size = 0, this.__data__ = {
382
+ hash: new e(),
383
+ map: new (t || r)(),
384
+ string: new e()
385
+ };
386
+ }
387
+ return Pe = n, Pe;
388
+ }
389
+ var Oe, Ct;
390
+ function Si() {
391
+ if (Ct) return Oe;
392
+ Ct = 1;
393
+ function e(r) {
394
+ var t = typeof r;
395
+ return t == "string" || t == "number" || t == "symbol" || t == "boolean" ? r !== "__proto__" : r === null;
396
+ }
397
+ return Oe = e, Oe;
398
+ }
399
+ var ke, St;
400
+ function $() {
401
+ if (St) return ke;
402
+ St = 1;
403
+ var e = Si();
404
+ function r(t, n) {
405
+ var i = t.__data__;
406
+ return e(n) ? i[typeof n == "string" ? "string" : "hash"] : i.map;
407
+ }
408
+ return ke = r, ke;
409
+ }
410
+ var De, Tt;
411
+ function Ti() {
412
+ if (Tt) return De;
413
+ Tt = 1;
414
+ var e = $();
415
+ function r(t) {
416
+ var n = e(this, t).delete(t);
417
+ return this.size -= n ? 1 : 0, n;
418
+ }
419
+ return De = r, De;
420
+ }
421
+ var Le, Rt;
422
+ function Ri() {
423
+ if (Rt) return Le;
424
+ Rt = 1;
425
+ var e = $();
426
+ function r(t) {
427
+ return e(this, t).get(t);
428
+ }
429
+ return Le = r, Le;
430
+ }
431
+ var ze, It;
432
+ function Ii() {
433
+ if (It) return ze;
434
+ It = 1;
435
+ var e = $();
436
+ function r(t) {
437
+ return e(this, t).has(t);
438
+ }
439
+ return ze = r, ze;
440
+ }
441
+ var xe, At;
442
+ function Ai() {
443
+ if (At) return xe;
444
+ At = 1;
445
+ var e = $();
446
+ function r(t, n) {
447
+ var i = e(this, t), a = i.size;
448
+ return i.set(t, n), this.size += i.size == a ? 0 : 1, this;
449
+ }
450
+ return xe = r, xe;
451
+ }
452
+ var je, wt;
453
+ function wi() {
454
+ if (wt) return je;
455
+ wt = 1;
456
+ var e = Ci(), r = Ti(), t = Ri(), n = Ii(), i = Ai();
457
+ function a(o) {
458
+ var s = -1, u = o == null ? 0 : o.length;
459
+ for (this.clear(); ++s < u; ) {
460
+ var c = o[s];
461
+ this.set(c[0], c[1]);
462
+ }
463
+ }
464
+ return a.prototype.clear = e, a.prototype.delete = r, a.prototype.get = t, a.prototype.has = n, a.prototype.set = i, je = a, je;
465
+ }
466
+ var Be, Pt;
467
+ function Pi() {
468
+ if (Pt) return Be;
469
+ Pt = 1;
470
+ var e = H(), r = Ln(), t = wi(), n = 200;
471
+ function i(a, o) {
472
+ var s = this.__data__;
473
+ if (s instanceof e) {
474
+ var u = s.__data__;
475
+ if (!r || u.length < n - 1)
476
+ return u.push([a, o]), this.size = ++s.size, this;
477
+ s = this.__data__ = new t(u);
478
+ }
479
+ return s.set(a, o), this.size = s.size, this;
480
+ }
481
+ return Be = i, Be;
482
+ }
483
+ var Me, Ot;
484
+ function Oi() {
485
+ if (Ot) return Me;
486
+ Ot = 1;
487
+ var e = H(), r = ai(), t = oi(), n = si(), i = ui(), a = Pi();
488
+ function o(s) {
489
+ var u = this.__data__ = new e(s);
490
+ this.size = u.size;
491
+ }
492
+ return o.prototype.clear = r, o.prototype.delete = t, o.prototype.get = n, o.prototype.has = i, o.prototype.set = a, Me = o, Me;
493
+ }
494
+ var Fe, kt;
495
+ function zn() {
496
+ if (kt) return Fe;
497
+ kt = 1;
498
+ var e = jr(), r = (function() {
499
+ try {
500
+ var t = e(Object, "defineProperty");
501
+ return t({}, "", {}), t;
502
+ } catch {
503
+ }
504
+ })();
505
+ return Fe = r, Fe;
506
+ }
507
+ var Ne, Dt;
508
+ function Br() {
509
+ if (Dt) return Ne;
510
+ Dt = 1;
511
+ var e = zn();
512
+ function r(t, n, i) {
513
+ n == "__proto__" && e ? e(t, n, {
514
+ configurable: !0,
515
+ enumerable: !0,
516
+ value: i,
517
+ writable: !0
518
+ }) : t[n] = i;
519
+ }
520
+ return Ne = r, Ne;
521
+ }
522
+ var Ee, Lt;
523
+ function xn() {
524
+ if (Lt) return Ee;
525
+ Lt = 1;
526
+ var e = Br(), r = E();
527
+ function t(n, i, a) {
528
+ (a !== void 0 && !r(n[i], a) || a === void 0 && !(i in n)) && e(n, i, a);
529
+ }
530
+ return Ee = t, Ee;
531
+ }
532
+ var Ge, zt;
533
+ function ki() {
534
+ if (zt) return Ge;
535
+ zt = 1;
536
+ function e(r) {
537
+ return function(t, n, i) {
538
+ for (var a = -1, o = Object(t), s = i(t), u = s.length; u--; ) {
539
+ var c = s[r ? u : ++a];
540
+ if (n(o[c], c, o) === !1)
541
+ break;
542
+ }
543
+ return t;
544
+ };
545
+ }
546
+ return Ge = e, Ge;
547
+ }
548
+ var He, xt;
549
+ function Di() {
550
+ if (xt) return He;
551
+ xt = 1;
552
+ var e = ki(), r = e();
553
+ return He = r, He;
554
+ }
555
+ var D = { exports: {} };
556
+ D.exports;
557
+ var jt;
558
+ function Li() {
559
+ return jt || (jt = 1, (function(e, r) {
560
+ var t = P(), n = r && !r.nodeType && r, i = n && !0 && e && !e.nodeType && e, a = i && i.exports === n, o = a ? t.Buffer : void 0, s = o ? o.allocUnsafe : void 0;
561
+ function u(c, l) {
562
+ if (l)
563
+ return c.slice();
564
+ var f = c.length, p = s ? s(f) : new c.constructor(f);
565
+ return c.copy(p), p;
566
+ }
567
+ e.exports = u;
568
+ })(D, D.exports)), D.exports;
569
+ }
570
+ var Ue, Bt;
571
+ function zi() {
572
+ if (Bt) return Ue;
573
+ Bt = 1;
574
+ var e = P(), r = e.Uint8Array;
575
+ return Ue = r, Ue;
576
+ }
577
+ var Ve, Mt;
578
+ function xi() {
579
+ if (Mt) return Ve;
580
+ Mt = 1;
581
+ var e = zi();
582
+ function r(t) {
583
+ var n = new t.constructor(t.byteLength);
584
+ return new e(n).set(new e(t)), n;
585
+ }
586
+ return Ve = r, Ve;
587
+ }
588
+ var $e, Ft;
589
+ function ji() {
590
+ if (Ft) return $e;
591
+ Ft = 1;
592
+ var e = xi();
593
+ function r(t, n) {
594
+ var i = n ? e(t.buffer) : t.buffer;
595
+ return new t.constructor(i, t.byteOffset, t.length);
596
+ }
597
+ return $e = r, $e;
598
+ }
599
+ var Ke, Nt;
600
+ function Bi() {
601
+ if (Nt) return Ke;
602
+ Nt = 1;
603
+ function e(r, t) {
604
+ var n = -1, i = r.length;
605
+ for (t || (t = Array(i)); ++n < i; )
606
+ t[n] = r[n];
607
+ return t;
608
+ }
609
+ return Ke = e, Ke;
610
+ }
611
+ var We, Et;
612
+ function Mi() {
613
+ if (Et) return We;
614
+ Et = 1;
615
+ var e = A(), r = Object.create, t = /* @__PURE__ */ (function() {
616
+ function n() {
617
+ }
618
+ return function(i) {
619
+ if (!e(i))
620
+ return {};
621
+ if (r)
622
+ return r(i);
623
+ n.prototype = i;
624
+ var a = new n();
625
+ return n.prototype = void 0, a;
626
+ };
627
+ })();
628
+ return We = t, We;
629
+ }
630
+ var Je, Gt;
631
+ function Fi() {
632
+ if (Gt) return Je;
633
+ Gt = 1;
634
+ function e(r, t) {
635
+ return function(n) {
636
+ return r(t(n));
637
+ };
638
+ }
639
+ return Je = e, Je;
640
+ }
641
+ var Ye, Ht;
642
+ function jn() {
643
+ if (Ht) return Ye;
644
+ Ht = 1;
645
+ var e = Fi(), r = e(Object.getPrototypeOf, Object);
646
+ return Ye = r, Ye;
647
+ }
648
+ var Qe, Ut;
649
+ function Bn() {
650
+ if (Ut) return Qe;
651
+ Ut = 1;
652
+ var e = Object.prototype;
653
+ function r(t) {
654
+ var n = t && t.constructor, i = typeof n == "function" && n.prototype || e;
655
+ return t === i;
656
+ }
657
+ return Qe = r, Qe;
658
+ }
659
+ var Xe, Vt;
660
+ function Ni() {
661
+ if (Vt) return Xe;
662
+ Vt = 1;
663
+ var e = Mi(), r = jn(), t = Bn();
664
+ function n(i) {
665
+ return typeof i.constructor == "function" && !t(i) ? e(r(i)) : {};
666
+ }
667
+ return Xe = n, Xe;
668
+ }
669
+ var Ze, $t;
670
+ function j() {
671
+ if ($t) return Ze;
672
+ $t = 1;
673
+ function e(r) {
674
+ return r != null && typeof r == "object";
675
+ }
676
+ return Ze = e, Ze;
677
+ }
678
+ var er, Kt;
679
+ function Ei() {
680
+ if (Kt) return er;
681
+ Kt = 1;
682
+ var e = U(), r = j(), t = "[object Arguments]";
683
+ function n(i) {
684
+ return r(i) && e(i) == t;
685
+ }
686
+ return er = n, er;
687
+ }
688
+ var rr, Wt;
689
+ function Mn() {
690
+ if (Wt) return rr;
691
+ Wt = 1;
692
+ var e = Ei(), r = j(), t = Object.prototype, n = t.hasOwnProperty, i = t.propertyIsEnumerable, a = e(/* @__PURE__ */ (function() {
693
+ return arguments;
694
+ })()) ? e : function(o) {
695
+ return r(o) && n.call(o, "callee") && !i.call(o, "callee");
696
+ };
697
+ return rr = a, rr;
698
+ }
699
+ var tr, Jt;
700
+ function Fn() {
701
+ if (Jt) return tr;
702
+ Jt = 1;
703
+ var e = Array.isArray;
704
+ return tr = e, tr;
705
+ }
706
+ var nr, Yt;
707
+ function Nn() {
708
+ if (Yt) return nr;
709
+ Yt = 1;
710
+ var e = 9007199254740991;
711
+ function r(t) {
712
+ return typeof t == "number" && t > -1 && t % 1 == 0 && t <= e;
713
+ }
714
+ return nr = r, nr;
715
+ }
716
+ var ir, Qt;
717
+ function Mr() {
718
+ if (Qt) return ir;
719
+ Qt = 1;
720
+ var e = xr(), r = Nn();
721
+ function t(n) {
722
+ return n != null && r(n.length) && !e(n);
723
+ }
724
+ return ir = t, ir;
725
+ }
726
+ var ar, Xt;
727
+ function Gi() {
728
+ if (Xt) return ar;
729
+ Xt = 1;
730
+ var e = Mr(), r = j();
731
+ function t(n) {
732
+ return r(n) && e(n);
733
+ }
734
+ return ar = t, ar;
735
+ }
736
+ var L = { exports: {} }, or, Zt;
737
+ function Hi() {
738
+ if (Zt) return or;
739
+ Zt = 1;
740
+ function e() {
741
+ return !1;
742
+ }
743
+ return or = e, or;
744
+ }
745
+ L.exports;
746
+ var en;
747
+ function En() {
748
+ return en || (en = 1, (function(e, r) {
749
+ var t = P(), n = Hi(), i = r && !r.nodeType && r, a = i && !0 && e && !e.nodeType && e, o = a && a.exports === i, s = o ? t.Buffer : void 0, u = s ? s.isBuffer : void 0, c = u || n;
750
+ e.exports = c;
751
+ })(L, L.exports)), L.exports;
752
+ }
753
+ var sr, rn;
754
+ function Ui() {
755
+ if (rn) return sr;
756
+ rn = 1;
757
+ var e = U(), r = jn(), t = j(), n = "[object Object]", i = Function.prototype, a = Object.prototype, o = i.toString, s = a.hasOwnProperty, u = o.call(Object);
758
+ function c(l) {
759
+ if (!t(l) || e(l) != n)
760
+ return !1;
761
+ var f = r(l);
762
+ if (f === null)
763
+ return !0;
764
+ var p = s.call(f, "constructor") && f.constructor;
765
+ return typeof p == "function" && p instanceof p && o.call(p) == u;
766
+ }
767
+ return sr = c, sr;
768
+ }
769
+ var ur, tn;
770
+ function Vi() {
771
+ if (tn) return ur;
772
+ tn = 1;
773
+ var e = U(), r = Nn(), t = j(), n = "[object Arguments]", i = "[object Array]", a = "[object Boolean]", o = "[object Date]", s = "[object Error]", u = "[object Function]", c = "[object Map]", l = "[object Number]", f = "[object Object]", p = "[object RegExp]", y = "[object Set]", _ = "[object String]", C = "[object WeakMap]", S = "[object ArrayBuffer]", w = "[object DataView]", h = "[object Float32Array]", K = "[object Float64Array]", W = "[object Int8Array]", O = "[object Int16Array]", R = "[object Int32Array]", b = "[object Uint8Array]", m = "[object Uint8ClampedArray]", B = "[object Uint16Array]", g = "[object Uint32Array]", d = {};
774
+ d[h] = d[K] = d[W] = d[O] = d[R] = d[b] = d[m] = d[B] = d[g] = !0, d[n] = d[i] = d[S] = d[a] = d[w] = d[o] = d[s] = d[u] = d[c] = d[l] = d[f] = d[p] = d[y] = d[_] = d[C] = !1;
775
+ function k(I) {
776
+ return t(I) && r(I.length) && !!d[e(I)];
777
+ }
778
+ return ur = k, ur;
779
+ }
780
+ var cr, nn;
781
+ function $i() {
782
+ if (nn) return cr;
783
+ nn = 1;
784
+ function e(r) {
785
+ return function(t) {
786
+ return r(t);
787
+ };
788
+ }
789
+ return cr = e, cr;
790
+ }
791
+ var z = { exports: {} };
792
+ z.exports;
793
+ var an;
794
+ function Ki() {
795
+ return an || (an = 1, (function(e, r) {
796
+ var t = kn(), n = r && !r.nodeType && r, i = n && !0 && e && !e.nodeType && e, a = i && i.exports === n, o = a && t.process, s = (function() {
797
+ try {
798
+ var u = i && i.require && i.require("util").types;
799
+ return u || o && o.binding && o.binding("util");
800
+ } catch {
801
+ }
802
+ })();
803
+ e.exports = s;
804
+ })(z, z.exports)), z.exports;
805
+ }
806
+ var lr, on;
807
+ function Gn() {
808
+ if (on) return lr;
809
+ on = 1;
810
+ var e = Vi(), r = $i(), t = Ki(), n = t && t.isTypedArray, i = n ? r(n) : e;
811
+ return lr = i, lr;
812
+ }
813
+ var dr, sn;
814
+ function Hn() {
815
+ if (sn) return dr;
816
+ sn = 1;
817
+ function e(r, t) {
818
+ if (!(t === "constructor" && typeof r[t] == "function") && t != "__proto__")
819
+ return r[t];
820
+ }
821
+ return dr = e, dr;
822
+ }
823
+ var fr, un;
824
+ function Wi() {
825
+ if (un) return fr;
826
+ un = 1;
827
+ var e = Br(), r = E(), t = Object.prototype, n = t.hasOwnProperty;
828
+ function i(a, o, s) {
829
+ var u = a[o];
830
+ (!(n.call(a, o) && r(u, s)) || s === void 0 && !(o in a)) && e(a, o, s);
831
+ }
832
+ return fr = i, fr;
833
+ }
834
+ var pr, cn;
835
+ function Ji() {
836
+ if (cn) return pr;
837
+ cn = 1;
838
+ var e = Wi(), r = Br();
839
+ function t(n, i, a, o) {
840
+ var s = !a;
841
+ a || (a = {});
842
+ for (var u = -1, c = i.length; ++u < c; ) {
843
+ var l = i[u], f = o ? o(a[l], n[l], l, a, n) : void 0;
844
+ f === void 0 && (f = n[l]), s ? r(a, l, f) : e(a, l, f);
845
+ }
846
+ return a;
847
+ }
848
+ return pr = t, pr;
849
+ }
850
+ var vr, ln;
851
+ function Yi() {
852
+ if (ln) return vr;
853
+ ln = 1;
854
+ function e(r, t) {
855
+ for (var n = -1, i = Array(r); ++n < r; )
856
+ i[n] = t(n);
857
+ return i;
858
+ }
859
+ return vr = e, vr;
860
+ }
861
+ var hr, dn;
862
+ function Un() {
863
+ if (dn) return hr;
864
+ dn = 1;
865
+ var e = 9007199254740991, r = /^(?:0|[1-9]\d*)$/;
866
+ function t(n, i) {
867
+ var a = typeof n;
868
+ return i = i ?? e, !!i && (a == "number" || a != "symbol" && r.test(n)) && n > -1 && n % 1 == 0 && n < i;
869
+ }
870
+ return hr = t, hr;
871
+ }
872
+ var mr, fn;
873
+ function Qi() {
874
+ if (fn) return mr;
875
+ fn = 1;
876
+ var e = Yi(), r = Mn(), t = Fn(), n = En(), i = Un(), a = Gn(), o = Object.prototype, s = o.hasOwnProperty;
877
+ function u(c, l) {
878
+ var f = t(c), p = !f && r(c), y = !f && !p && n(c), _ = !f && !p && !y && a(c), C = f || p || y || _, S = C ? e(c.length, String) : [], w = S.length;
879
+ for (var h in c)
880
+ (l || s.call(c, h)) && !(C && // Safari 9 has enumerable `arguments.length` in strict mode.
881
+ (h == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
882
+ y && (h == "offset" || h == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays.
883
+ _ && (h == "buffer" || h == "byteLength" || h == "byteOffset") || // Skip index properties.
884
+ i(h, w))) && S.push(h);
885
+ return S;
886
+ }
887
+ return mr = u, mr;
888
+ }
889
+ var gr, pn;
890
+ function Xi() {
891
+ if (pn) return gr;
892
+ pn = 1;
893
+ function e(r) {
894
+ var t = [];
895
+ if (r != null)
896
+ for (var n in Object(r))
897
+ t.push(n);
898
+ return t;
899
+ }
900
+ return gr = e, gr;
901
+ }
902
+ var yr, vn;
903
+ function Zi() {
904
+ if (vn) return yr;
905
+ vn = 1;
906
+ var e = A(), r = Bn(), t = Xi(), n = Object.prototype, i = n.hasOwnProperty;
907
+ function a(o) {
908
+ if (!e(o))
909
+ return t(o);
910
+ var s = r(o), u = [];
911
+ for (var c in o)
912
+ c == "constructor" && (s || !i.call(o, c)) || u.push(c);
913
+ return u;
914
+ }
915
+ return yr = a, yr;
916
+ }
917
+ var br, hn;
918
+ function Vn() {
919
+ if (hn) return br;
920
+ hn = 1;
921
+ var e = Qi(), r = Zi(), t = Mr();
922
+ function n(i) {
923
+ return t(i) ? e(i, !0) : r(i);
924
+ }
925
+ return br = n, br;
926
+ }
927
+ var _r, mn;
928
+ function ea() {
929
+ if (mn) return _r;
930
+ mn = 1;
931
+ var e = Ji(), r = Vn();
932
+ function t(n) {
933
+ return e(n, r(n));
934
+ }
935
+ return _r = t, _r;
936
+ }
937
+ var qr, gn;
938
+ function ra() {
939
+ if (gn) return qr;
940
+ gn = 1;
941
+ var e = xn(), r = Li(), t = ji(), n = Bi(), i = Ni(), a = Mn(), o = Fn(), s = Gi(), u = En(), c = xr(), l = A(), f = Ui(), p = Gn(), y = Hn(), _ = ea();
942
+ function C(S, w, h, K, W, O, R) {
943
+ var b = y(S, h), m = y(w, h), B = R.get(m);
944
+ if (B) {
945
+ e(S, h, B);
946
+ return;
947
+ }
948
+ var g = O ? O(b, m, h + "", S, w, R) : void 0, d = g === void 0;
949
+ if (d) {
950
+ var k = o(m), I = !k && u(m), Nr = !k && !I && p(m);
951
+ g = m, k || I || Nr ? o(b) ? g = b : s(b) ? g = n(b) : I ? (d = !1, g = r(m, !0)) : Nr ? (d = !1, g = t(m, !0)) : g = [] : f(m) || a(m) ? (g = b, a(b) ? g = _(b) : (!l(b) || c(b)) && (g = i(m))) : d = !1;
952
+ }
953
+ d && (R.set(m, g), W(g, m, K, O, R), R.delete(m)), e(S, h, g);
954
+ }
955
+ return qr = C, qr;
956
+ }
957
+ var Cr, yn;
958
+ function ta() {
959
+ if (yn) return Cr;
960
+ yn = 1;
961
+ var e = Oi(), r = xn(), t = Di(), n = ra(), i = A(), a = Vn(), o = Hn();
962
+ function s(u, c, l, f, p) {
963
+ u !== c && t(c, function(y, _) {
964
+ if (p || (p = new e()), i(y))
965
+ n(u, c, _, l, s, f, p);
966
+ else {
967
+ var C = f ? f(o(u, _), y, _ + "", u, c, p) : void 0;
968
+ C === void 0 && (C = y), r(u, _, C);
969
+ }
970
+ }, a);
971
+ }
972
+ return Cr = s, Cr;
973
+ }
974
+ var Sr, bn;
975
+ function $n() {
976
+ if (bn) return Sr;
977
+ bn = 1;
978
+ function e(r) {
979
+ return r;
980
+ }
981
+ return Sr = e, Sr;
982
+ }
983
+ var Tr, _n;
984
+ function na() {
985
+ if (_n) return Tr;
986
+ _n = 1;
987
+ function e(r, t, n) {
988
+ switch (n.length) {
989
+ case 0:
990
+ return r.call(t);
991
+ case 1:
992
+ return r.call(t, n[0]);
993
+ case 2:
994
+ return r.call(t, n[0], n[1]);
995
+ case 3:
996
+ return r.call(t, n[0], n[1], n[2]);
997
+ }
998
+ return r.apply(t, n);
999
+ }
1000
+ return Tr = e, Tr;
1001
+ }
1002
+ var Rr, qn;
1003
+ function ia() {
1004
+ if (qn) return Rr;
1005
+ qn = 1;
1006
+ var e = na(), r = Math.max;
1007
+ function t(n, i, a) {
1008
+ return i = r(i === void 0 ? n.length - 1 : i, 0), function() {
1009
+ for (var o = arguments, s = -1, u = r(o.length - i, 0), c = Array(u); ++s < u; )
1010
+ c[s] = o[i + s];
1011
+ s = -1;
1012
+ for (var l = Array(i + 1); ++s < i; )
1013
+ l[s] = o[s];
1014
+ return l[i] = a(c), e(n, this, l);
1015
+ };
1016
+ }
1017
+ return Rr = t, Rr;
1018
+ }
1019
+ var Ir, Cn;
1020
+ function aa() {
1021
+ if (Cn) return Ir;
1022
+ Cn = 1;
1023
+ function e(r) {
1024
+ return function() {
1025
+ return r;
1026
+ };
1027
+ }
1028
+ return Ir = e, Ir;
1029
+ }
1030
+ var Ar, Sn;
1031
+ function oa() {
1032
+ if (Sn) return Ar;
1033
+ Sn = 1;
1034
+ var e = aa(), r = zn(), t = $n(), n = r ? function(i, a) {
1035
+ return r(i, "toString", {
1036
+ configurable: !0,
1037
+ enumerable: !1,
1038
+ value: e(a),
1039
+ writable: !0
1040
+ });
1041
+ } : t;
1042
+ return Ar = n, Ar;
1043
+ }
1044
+ var wr, Tn;
1045
+ function sa() {
1046
+ if (Tn) return wr;
1047
+ Tn = 1;
1048
+ var e = 800, r = 16, t = Date.now;
1049
+ function n(i) {
1050
+ var a = 0, o = 0;
1051
+ return function() {
1052
+ var s = t(), u = r - (s - o);
1053
+ if (o = s, u > 0) {
1054
+ if (++a >= e)
1055
+ return arguments[0];
1056
+ } else
1057
+ a = 0;
1058
+ return i.apply(void 0, arguments);
1059
+ };
1060
+ }
1061
+ return wr = n, wr;
1062
+ }
1063
+ var Pr, Rn;
1064
+ function ua() {
1065
+ if (Rn) return Pr;
1066
+ Rn = 1;
1067
+ var e = oa(), r = sa(), t = r(e);
1068
+ return Pr = t, Pr;
1069
+ }
1070
+ var Or, In;
1071
+ function ca() {
1072
+ if (In) return Or;
1073
+ In = 1;
1074
+ var e = $n(), r = ia(), t = ua();
1075
+ function n(i, a) {
1076
+ return t(r(i, a, e), i + "");
1077
+ }
1078
+ return Or = n, Or;
1079
+ }
1080
+ var kr, An;
1081
+ function la() {
1082
+ if (An) return kr;
1083
+ An = 1;
1084
+ var e = E(), r = Mr(), t = Un(), n = A();
1085
+ function i(a, o, s) {
1086
+ if (!n(s))
1087
+ return !1;
1088
+ var u = typeof o;
1089
+ return (u == "number" ? r(s) && t(o, s.length) : u == "string" && o in s) ? e(s[o], a) : !1;
1090
+ }
1091
+ return kr = i, kr;
1092
+ }
1093
+ var Dr, wn;
1094
+ function da() {
1095
+ if (wn) return Dr;
1096
+ wn = 1;
1097
+ var e = ca(), r = la();
1098
+ function t(n) {
1099
+ return e(function(i, a) {
1100
+ var o = -1, s = a.length, u = s > 1 ? a[s - 1] : void 0, c = s > 2 ? a[2] : void 0;
1101
+ for (u = n.length > 3 && typeof u == "function" ? (s--, u) : void 0, c && r(a[0], a[1], c) && (u = s < 3 ? void 0 : u, s = 1), i = Object(i); ++o < s; ) {
1102
+ var l = a[o];
1103
+ l && n(i, l, o, u);
1104
+ }
1105
+ return i;
1106
+ });
1107
+ }
1108
+ return Dr = t, Dr;
1109
+ }
1110
+ var Lr, Pn;
1111
+ function fa() {
1112
+ if (Pn) return Lr;
1113
+ Pn = 1;
1114
+ var e = ta(), r = da(), t = r(function(n, i, a) {
1115
+ e(n, i, a);
1116
+ });
1117
+ return Lr = t, Lr;
1118
+ }
1119
+ var pa = fa();
1120
+ const va = /* @__PURE__ */ Zn(pa), ha = "rtl", ma = { back: "رجوع", close: "إغلاق", closeVerificationFrame: "إغلاق التحقق من الهوية (Smile ID)", allow: "اسمح", cancel: "إلغاء", continue: "استمر", or: "أو", toggle: "تبديل" }, ga = { noItems: "لا توجد عناصر" }, ya = { back: "رجوع", closeVerificationFrame: "إغلاق التحقق من الهوية (Smile ID)" }, ba = { permission: { description: "اسمح بالوصول إلى الكاميرا للتحقق من بياناتك", requestButton: "طلب الوصول إلى الكاميرا" }, error: { notAllowed: "لم يتم منح إذن الكاميرا لهذه الخدمة. قم بتمكين الوصول إلى الكاميرا في جهازك أو متصفحك/إضافتك للمتابعة. قد تحتاج إلى إعادة تحميل الصفحة.", abort: "حدث خطأ ما، وفقدنا الوصول إلى كاميرتك. يرجى إعادة تحميل الصفحة.", notReadable: "يبدو أن هناك مشكلة في الكاميرا. قم بإصلاحها وحاول مرة أخرى، أو حاول استخدام الجهاز.", notFound: "لا نستطيع العثور على الكاميرا الخاصة بك. يرجى التحديث.", insecure: "يلزم اتصال آمن. الوصول إلى الكاميرا معطل على المواقع غير الآمنة. يرجى الانتقال إلى الصفحة الآمنة أو الاتصال بمالك التطبيق.", retry: "حاول مرة أخرى" } }, _a = { instructions: { title: "بعد ذلك، سنأخذ صورة سيلفي سريعة", allowButton: "اسمح", tips: { goodLight: { header: "إضاءة جيدة", body: "تأكد من أنك في بيئة جيدة الإضاءة." }, clearImage: { header: "صورة واضحة", body: "امسك هاتفك بثبات لتكون صورة السيلفي واضحة وحادة." }, removeObstructions: { header: "إزالة العوائق", body: "أزل أي شيء يغطي وجهك، مثل النظارات والأقنعة والقبعات." }, wideSmile: { header: "ابتسامة كبيرة", body: "عندما يُطلب منك الابتسام، ابتسم ابتسامة عريضة تظهر أسنانك." } } }, capture: { tip: { fitHead: "ضع رأسك داخل الإطار البيضاوي" }, cta: { smile: "ابتسم", widerSmile: "ابتسامة أوسع" }, button: { takeSelfie: "التقط سيلفي", startCapture: "بدء التسجيل" }, agentMode: { on: "وضع الوكيل قيد التشغيل", off: "وضع الوكيل معطل" }, error: { minFrames: "كاميرا ويب الذكية: الحد الأدنى المطلوب لعدد الإطارات هو {{count}}", webcamCapture: "تعذر التقاط صور كاميرا الويب - يرجى تجربة جهاز آخر" }, loading: { progress: "جارٍ إعداد الكاميرا... {{progress}}%", slowConnection: "ما زلنا نُجهّز الأمور — قد يستغرق ذلك لحظة في المرة الأولى.", connectionError: "خطأ في الاتصال بالإنترنت، تحقق من اتصالك وأعد المحاولة", setupError: "تعذّر علينا إكمال إعداد التقاط الوجه على هذا الجهاز. يُرجى المحاولة مرة أخرى.", offlineError: "يبدو أنك غير متصل بالإنترنت. تحقق من اتصالك وحاول مرة أخرى.", retry: "حاول مرة أخرى" } }, smart: { alert: { noFace: "ضع وجهك في الشكل البيضاوي", outOfBounds: "ضع وجهك في الشكل البيضاوي", tooClose: "ابتعد أكثر", tooFar: "اقترب", neutralExpression: "تعبير محايد", smileRequired: "يبتسم!", openMouthSmile: "ابتسامة أوسع - أسنان ظاهرة", tooDark: "الإضاءة منخفضة جدًا - جرّب مكانًا أفضل", tooBlurry: "ثبّت الكاميرا - الصورة غير واضحة", faceNotCentered: "ضع وجهك في منتصف الشكل البيضاوي", turnHeadLeft: "أدِر رأسك ببطء إلى اليسار", turnHeadRight: "أدِر رأسك ببطء إلى اليمين", lookStraight: "انظر مباشرة إلى الكاميرا", tiltHeadUp: "أمِل رأسك قليلاً إلى الأعلى", initializing: "جارٍ التهيئة..." }, status: { capturing: "جارٍ التقاط...", keepSmiling: "حافظ على ابتسامتك!", readyToCapture: "جاهز للتصوير", poseCaptured: "رائع! ثبّت رأسك", sessionTimeout: "انتهت مدة الجلسة — يُرجى المحاولة مرة أخرى" }, instructions: { title: "فحص الحيوية النشط", description: "سيُطلب منك تحريك رأسك ببطء لاتباع التعليمات على الشاشة. احرص على بقاء وجهك داخل الشكل البيضاوي.", continueButton: "ابدأ" } }, review: { title: "مراجعة صورة سيلفي", question: "هل وجهك كله صافي؟", acceptButton: "نعم، استخدم هذا", retakeButton: "لا، أعد التقاط صورة السيلفي" }, ess: { back: "رجوع", consent: { titleSuffix: "يرغب في التحقق من هويتك باستخدام", bodyPrefix: 'بتحديد "السماح"، فإنك توافق على قيام ', bodyMiddle: " بجمع ومعالجة بياناتك الشخصية لغرض تقديم خدمات التحقق من الهوية ومكافحة الاحتيال، ومشاركة النتائج بشكل آمن مع ", bodySuffix: ". قد يشمل ذلك معالجة:", items: { contact: "معلومات الاتصال", personal: "المعلومات الشخصية", biometric: "البيانات البيومترية ووثائق الهوية", device: "معلومات الجهاز" }, consentCheckbox: "أوافق على مشاركة معلومات هويتي والبيانات ذات الصلة مع مزودي الخدمة لمنع الاحتيال ومعالجة هذه المعاملة بأمان.", learnMore: "اعرف المزيد", learnMoreBodyPrefix: "تقوم ", learnMoreBodyAnd: " و ", learnMoreBodySuffix: " بمعالجة بياناتك الشخصية والبيومترية للتحقق من هويتك ومنع الاحتيال. نحتفظ ببياناتك لمدة 5 سنوات للوفاء بالالتزامات القانونية.", learnMoreShare: "قد نشارك البيانات مع شركاء محددين لإكمال هذا الفحص.", learnMoreRightsPrefix: "يمكنك سحب الموافقة أو الوصول إلى بياناتك أو ممارسة حقوقك على صفحة", dsarLink: "DSAR", learnMoreRightsMiddle: "الخاصة بنا. تتوفر التفاصيل الكاملة في سياسات الخصوصية لـ", smileIdPrivacyLink: "Smile ID", partnerPrivacyTail: "و {{partnerName}}.", partnerPrivacyTailLinked: "و", partnerPrivacyTailEnd: ".", allow: "السماح", deny: "رفض" }, instructions: { titlePrefix: "استعد لالتقاط", titleAccent: "صورة السيلفي", guidelinesHeader: "إرشادات الالتقاط", tile: { good: "جيد", accessories: "إكسسوارات", multipleFaces: "وجوه متعددة", poorLighting: "إضاءة سيئة" }, continue: "التالي", settingUpCamera: "جارٍ إعداد الكاميرا…" }, submission: { review: { title: "تأكيد جودة الصورة", body: "تأكد من وضوح الصورة.", retake: "إعادة الالتقاط", confirm: "تأكيد" }, submitting: { title: "جارٍ الإرسال…", body: `قد يستغرق ذلك لحظة…
1121
+ لا تغلق هذه الصفحة أو تعيد تحميلها` }, success: { title: "اكتمل الإرسال", body: "شكرًا لإرسالك. نقوم حاليًا بالتحقق من بياناتك." }, error: { title: "فشل الإرسال" }, continue: "متابعة", exit: "خروج", imageAlt: "صورة السيلفي الملتقطة" }, alert: { centerFace: "ضع وجهك داخل الإطار البيضاوي", holdStill: "لا تتحرك…", tooDark: "انتقل إلى بيئة جيدة الإضاءة", tooClose: "أبعد جهازك عن وجهك", tooFar: "قرّب جهازك من وجهك", moveDeviceUp: "ارفع جهازك للأعلى", moveDeviceDown: "اخفض جهازك للأسفل", moveDeviceLeft: "حرّك جهازك إلى اليسار", moveDeviceRight: "حرّك جهازك إلى اليمين", turnHeadLeft: "أدر رأسك إلى اليسار", turnHeadRight: "أدر رأسك إلى اليمين", tiltHeadUp: "أمل رأسك قليلاً للأعلى" }, failure: { sessionTimedOut: "انتهت صلاحية جلستك. يرجى المحاولة مرة أخرى." } } }, qa = { name: { default: "وثيقة" }, title: { front: "تقديم صورة أمامية لبطاقة الهوية", back: "تقديم ظهر الهوية" }, capture: { checkingPermissions: "جارٍ التحقق من الأذونات...", instructionText: "تأكد من أن جميع الزوايا مرئية ولا يوجد وهج.", captureButton: "التقاط وثيقة" }, instructions: { captureTitlePrefix: "استعد لالتقاط", captureGuidelines: "إرشادات الالتقاط", description: "سنستخدمه للتحقق من هويتك.", followInstructions: "يرجى اتباع التعليمات أدناه.", guidelines: { good: "جيد", notCropped: "غير مقصوص", notBlurry: "غير ضبابي", notReflective: "بدون انعكاس" }, goodLight: { header: "إضاءة جيدة", body: "تأكد من التقاط الصورة في بيئة مضاءة جيداً حيث يسهل قراءة وثيقة الهوية." }, clearImage: { header: "صورة واضحة", body: "اجعل الكاميرا ثابتة حتى لا تكون الكلمات الموجودة على الهوية ضبابية." }, startCapture: "بدء الالتقاط", takePhotoButton: "التقط صورة", uploadPhotoButton: "تحميل صورة" }, review: { question: "هل الوثيقة واضحة ومقروءة؟", description: "تأكد من أن جميع زوايا المستند مرئية ولا يوجد توهج", acceptButton: "نعم، بطاقة هويتي واضحة و مقروءة", retakeButton: "لا، أعد التقاط الصورة" } }, Ca = { error: { readingFile: "حدث خطأ أثناء قراءة الملف. يرجى التحقق من الملف والمحاولة مرة أخرى.", multipleFiles: "يُسمح بتحميل ملف واحد فقط في كل مرة", unsupportedFormat: "تنسيق ملف غير مدعوم. يرجى التأكد من توفير صورة بتنسيق JPG أو PNG", fileTooLarge: "{{filename}} كبير جدًا. يُرجى التأكد من أن الملف أقل من {{size}}." } }, Sa = { demoTip: "شاشة الموافقة هذه لأغراض توضيحية فقط. لا يقوم التطبيق التجريبي بجمع بيانات الهوية السيلفي.", accessRequest: "{{partnerName}} يرغب في الوصول إلى معلوماتك {{idTypeLabel}}", allowPartner: "هذا سيسمح لـ {{partnerName}} بـ:", processing: { personalDetails: { title: "معالجة بياناتك السيلفي", description: "بإمكان الشريك معالجة اسمك وتاريخ ميلادك وجنسك" }, contactInfo: { title: "معالجة معلومات الاتصال الخاصة بك", description: "يمكن للشريك معالجة أرقام هواتفك وعنوانك" }, documentInfo: { title: "معالجة معلومات مستندك", description: "يمكن للشريك معالجة صورتك وتاريخ انتهاء صلاحية هويتك وبلد الإصدار ورقم الوثيقة" } }, privacyPolicy: "يمكنك الاطلاع على سياسة الخصوصية الخاصة بـ {{partnerName}}", privacyPolicyLink: "هنا.", grantConsent: 'باختيارك "السماح"، فإنك تمنح {{partnerName}} الموافقة على معالجة بياناتك السيلفي لتقديم هذه الخدمة لك.', denied: { title: "تم رفض الموافقة", message: "لا يمكننا التحقق من هويتك بدون موافقتك", prompt: "هل ترغب في تصحيح ذلك؟", goBack: "عُد", confirmCancel: "لا، إلغاء التحقق" } }, Ta = { loading: { title: "إنشاء", subtitle: "بضع ثوانٍ أخرى فقط", description: "نحن نجهز عملية التحقق الخاصة بك" }, idSelection: { title: "حدد نوع المستند", selectCountry: "اختر البلد", selectIdType: "حدد نوع المستند", selectDocument: "حدد المستند", searchCountry: "البحث عن بلد", placeholder: "الرجاء الاختيار", selectCountryFirst: "--اختر البلد أولاً--", noCountryFound: "لا يوجد بلد", noIdTypeFound: "لم يتم العثور على نوع هوية" }, upload: { title: "جاري تحميل", subtitle: "بضع ثوانٍ أخرى فقط", description: "نحن بصدد معالجة طلبك" }, complete: { title: "تم الإرسال بنجاح", subtitle: "هذا كل ما تحتاجه للتحقق من هويتك", processingInfo: "سنقوم بمعالجة معلوماتك {{country}} - {{idType}} للتحقق من هويتك" }, smartSelfie: { authentication: { title: "مصادقة SmartSelfie™", upload: "مصادقة المستخدم" }, registration: { title: "تسجيل SmartSelfie™", upload: "تسجيل المستخدم" } }, eSignature: { fullName: "الاسم الكامل", loading: { description: "نحن بصدد التأسيس" }, upload: { description: "نحن بصدد معالجة طلبك" }, entry: { title: "تقديم التوقيع", subtitle: "اقرأ واقبل الاتفاقيات التي ستراها في الصفحة التالية" }, tips: { read: { title: "اقرأ المستند", description: "اقرأ المستند (المستندات) المقدمة بعناية" }, name: { title: "أضف اسمك الكامل", description: "اكتب اسمك الكامل بعد موافقتك على المستند (المستندات) التي تمت مشاركتها معك." }, signature: { title: "أضف توقيعك", description: "وقّع أو حمّل توقيعك لتوثيق المستندات" } }, getStarted: "ابدأ الآن", review: { title: "مراجعة الوثائق", subtitle: "قبل القبول، يُرجى قراءة المستند(ات) بعناية", consent: "بتحديد هذا المربع، فإنك توافق على الشروط الواردة في المستند (المستندات)." }, personalInfo: { title: "أضف اسمك الكامل", subtitle: "يرجى إضافة اسمك بالكامل للتحقق من قراءتك للوثيقة (الوثائق) المقدمة مسبقاً.", placeholder: "جيمس دو" }, signature: { title: "أضف توقيعك", subtitle: "وقّع أو حمّل توقيعك أدناه" }, confirmDetails: { title: "تأكيد التفاصيل", subtitle: "تأكد من أن اسمك مكتوب بشكل صحيح، وأن التوقيع يشبه التوقيع الموجود في هويتك", yes: "نعم، هذا صحيح", no: "لا، غيّرهم" }, error: { uploadFailed: "لم نتمكن من تحميل توقيعك" } }, idInfo: { title: "أدخل معلومات الهوية", idNumber: "رقم الهوية", firstName: "الاسم الأول", lastName: "اسم العائلة", dateOfBirth: "تاريخ الميلاد", day: "يوم", month: "شهر", year: "سنة", bank: "بنك", selectBank: "--حدد البنك--", searchBank: "البحث عن بنك", noBankFound: "لم يتم العثور على بنك", citizenship: "الجنسية", selectCitizenship: "اختر نوع الجنسية", dob: "تاريخ الميلاد" }, error: { title: "حدث خطأ", generic: "حدث خطأ ما", uploadFailed: "لم نتمكن من تحميل معلوماتك", checkInternet: "يرجى التأكد من وجود اتصال إنترنت مستقر. ثم حاول مرة أخرى!", tryAgain: "أعد المحاولة", countryNotSupported: "{{country}} غير مدعوم" }, validation: { isRequired: "{{field}} مطلوب", invalidFormat: "{{field}} غير صالح" } }, Ra = {
1122
+ direction: ha,
1123
+ common: ma,
1124
+ combobox: ga,
1125
+ navigation: ya,
1126
+ camera: ba,
1127
+ selfie: _a,
1128
+ document: qa,
1129
+ fileUpload: Ca,
1130
+ consent: Sa,
1131
+ pages: Ta
1132
+ }, Ia = "ltr", Aa = { back: "Back", close: "Close", closeVerificationFrame: "Close Smile ID Verification", allow: "Allow", cancel: "Cancel", continue: "Continue", or: "or", toggle: "Toggle" }, wa = { noItems: "No items" }, Pa = { back: "Back", closeVerificationFrame: "Close Smile ID Verification" }, Oa = { permission: { description: "Allow camera access to verify your details", requestButton: "Request Camera Access" }, error: { notAllowed: "Camera permission not granted for this service. Enable access to your camera in your device settings or browser/extension to continue. You may need to refresh.", abort: "Something happened, and we lost access to your camera. Please refresh.", notReadable: "There seems to be a problem with your camera connection. Please check and try again or try using device.", notFound: "We are unable to find your camera. Please refresh.", insecure: "Secure connection required. Camera access is disabled on insecure sites. Please switch to the secure page or contact the app owner.", retry: "Try again" } }, ka = { instructions: { title: "Next, we'll take a quick selfie", allowButton: "Allow", tips: { goodLight: { header: "Good Light", body: "Make sure you are in a well-lit environment." }, clearImage: { header: "Clear Image", body: "Hold your device steady so the selfie is clear and sharp." }, removeObstructions: { header: "Remove Obstructions", body: "Remove anything that covers your face, such as glasses, masks, and hats." }, wideSmile: { header: "Wide Smile", body: "When asked to smile, give a wide smile, showing your teeth." } } }, capture: { tip: { fitHead: "Fit your head inside the oval frame" }, cta: { smile: "SMILE", widerSmile: "WIDER SMILE" }, button: { takeSelfie: "Capture Selfie", startCapture: "Start Capture" }, agentMode: { on: "Agent Mode On", off: "Agent Mode Off" }, error: { minFrames: "SmartCameraWeb: The minimum no of frames required is {{count}}", webcamCapture: "Unable to capture webcam images - Please try another device" }, loading: { progress: "Setting up the camera... {{progress}}%", slowConnection: "Still setting things up — this can take a moment the first time.", connectionError: "Internet connection error, check your connection and retry", setupError: "We couldn’t finish setting up face capture on this device. Please try again.", offlineError: "You appear to be offline. Check your connection and try again.", retry: "Try again" } }, smart: { alert: { noFace: "Position your face in the oval", outOfBounds: "Position your face in the oval", tooClose: "Move farther away", tooFar: "Move closer", neutralExpression: "Neutral expression", smileRequired: "Smile!", openMouthSmile: "Wider smile - teeth visible", tooDark: "Too dark - find better lighting", tooBlurry: "Hold steady - too blurry", faceNotCentered: "Centre your face in the oval", turnHeadLeft: "Slowly turn your head to the left", turnHeadRight: "Slowly turn your head to the right", lookStraight: "Look straight at the camera", tiltHeadUp: "Tilt your head slightly up", initializing: "Initialising..." }, status: { capturing: "Capturing...", keepSmiling: "Keep smiling!", readyToCapture: "Ready to capture", poseCaptured: "Great! Hold still", sessionTimeout: "Session timed out — please try again" }, instructions: { title: "Active liveness check", description: "You'll be asked to slowly turn your head to follow on-screen prompts. Keep your face inside the oval at all times.", continueButton: "Start" } }, review: { title: "Review Selfie", question: "Is your whole face clear?", acceptButton: "Yes, use this", retakeButton: "No, Retake Selfie" }, ess: { back: "Back", consent: { titleSuffix: "would like to verify your identity using", bodyPrefix: "By selecting Allow, you consent to ", bodyMiddle: " collecting and processing your personal data for the purpose of providing identity verification and fraud prevention services, and securely sharing the results with ", bodySuffix: ". This may include processing:", items: { contact: "Contact Information", personal: "Personal Information", biometric: "Biometric data and Identification documents", device: "Device Information" }, consentCheckbox: "I consent to my identity information and related data being shared with service providers to prevent fraud and securely process this transaction.", learnMore: "Learn more", learnMoreBodyPrefix: "", learnMoreBodyAnd: " and ", learnMoreBodySuffix: " process your personal and biometric data to verify your identity and prevent fraud. We retain your data for 5 years to meet legal obligations.", learnMoreShare: "We may share data with specific partners to complete this check.", learnMoreRightsPrefix: "You can withdraw consent, access your data, or exercise your rights at our", dsarLink: "DSAR", learnMoreRightsMiddle: "page. Full details are in the", smileIdPrivacyLink: "Smile ID", partnerPrivacyTail: "and {{partnerName}} Privacy Policies.", partnerPrivacyTailLinked: "and", partnerPrivacyTailEnd: "Privacy Policies.", allow: "Allow", deny: "Deny" }, instructions: { titlePrefix: "Get ready to capture your", titleAccent: "selfie", guidelinesHeader: "CAPTURE GUIDELINES", tile: { good: "Good", accessories: "Accessories", multipleFaces: "Multiple Faces", poorLighting: "Poor Lighting" }, continue: "Next", settingUpCamera: "Setting up camera…" }, submission: { review: { title: "Confirm image quality", body: "Make sure that the image is clear.", retake: "Retake", confirm: "Confirm" }, submitting: { title: "Submitting…", body: `This might take a moment…
1133
+ Do not close or refresh this page` }, success: { title: "Submission Complete", body: "Thank you for your submission. We are currently verifying your details." }, error: { title: "Submission Failed" }, continue: "Continue", exit: "Exit", imageAlt: "Captured selfie" }, alert: { centerFace: "Centre your face within the oval frame", holdStill: "Hold still…", tooDark: "Move to a well lit environment", tooClose: "Move your device away from your face", tooFar: "Move your device closer to your face", moveDeviceUp: "Move your device higher", moveDeviceDown: "Move your device lower", moveDeviceLeft: "Move your device to the left", moveDeviceRight: "Move your device to the right", turnHeadLeft: "Turn your head to the left", turnHeadRight: "Turn your head to the right", tiltHeadUp: "Turn your head slightly upwards" }, failure: { sessionTimedOut: "Your session timed out. Please try again." } } }, Da = { name: { default: "Document" }, title: { front: "Submit Front of ID", back: "Submit Back of ID" }, capture: { checkingPermissions: "Checking permissions...", instructionText: "Make sure all corners are visible and there is no glare.", captureButton: "Capture Document" }, instructions: { captureTitlePrefix: "Get ready to capture your", captureGuidelines: "Capture Guidelines", description: "We'll use it to verify your identity.", followInstructions: "Please follow the instructions below.", guidelines: { good: "Good", notCropped: "Not cropped", notBlurry: "Not blurry", notReflective: "Not reflective" }, goodLight: { header: "Good Light", body: "Make sure the image is taken in a well-lit environment where the ID document is easy to read." }, clearImage: { header: "Clear Image", body: "Hold your device steady so the information on the ID are not blurry." }, startCapture: "Start Capture", takePhotoButton: "Take Photo", uploadPhotoButton: "Upload Photo" }, review: { question: "Is the document clear and readable?", description: "Make sure all corners of the document are visible and there is no glare", acceptButton: "Yes, my ID is readable", retakeButton: "No, retake photo" } }, La = { error: { readingFile: "An error occurred reading the file. Please check the file, and try again", multipleFiles: "Only one file upload is permitted at a time", unsupportedFormat: "Unsupported file format. Please ensure that you are providing a JPG or PNG image", fileTooLarge: "{{filename}} is too large. Please ensure that the file is less than {{size}}." } }, za = { demoTip: "This consent screen is for illustrative purposes only. Demo App does not collect personal ID data.", accessRequest: "{{partnerName}} wants to access your {{idTypeLabel}} information", allowPartner: "This will allow {{partnerName}} to:", processing: { personalDetails: { title: "Process your personal information", description: "Partner can process your names, DoB and gender" }, contactInfo: { title: "Process your contact information", description: "Partner can process your phone numbers and address" }, documentInfo: { title: "Process your document information", description: "Partner can process your photo, ID expiration date, country of issuance and document number" } }, privacyPolicy: "You can view {{partnerName}}'s privacy policy", privacyPolicyLink: "here.", grantConsent: 'By choosing "Allow", you grant {{partnerName}} consent to process your personal data to offer you this service', denied: { title: "Consent Denied", message: "We cannot verify you without your consent", prompt: "Wish to correct that?", goBack: "Go Back", confirmCancel: "No, Cancel Verification" } }, xa = { loading: { title: "Setting up", subtitle: "Just a few more seconds", description: "We are setting up your verification flow" }, idSelection: { title: "Select ID Type", selectCountry: "Select Country", selectIdType: "Select ID Type", selectDocument: "Select Document", searchCountry: "Search Country", placeholder: "--Please Select--", selectCountryFirst: "--Select Country First--", noCountryFound: "No country found", noIdTypeFound: "No ID type found" }, upload: { title: "Uploading", subtitle: "Just a few more seconds", description: "We are processing your request" }, complete: { title: "Submission Complete", subtitle: "That's all you need to verify your identity", processingInfo: "We will process your {{country}} - {{idType}} information to verify your identity" }, smartSelfie: { authentication: { title: "SmartSelfie™ Authentication", upload: "Authenticating User" }, registration: { title: "SmartSelfie™ Registration", upload: "Registering User" } }, eSignature: { fullName: "Full Name", loading: { description: "We are setting up" }, upload: { description: "We are processing your request" }, entry: { title: "Provide Signature", subtitle: "Read and accept the agreements you would see in the next page" }, tips: { read: { title: "Read document", description: "Read the document(s) provided carefully" }, name: { title: "Add your full names", description: "Type your full names once you agree with the document(s) shared with you" }, signature: { title: "Append your signature", description: "Sign or upload your signature to certify the documents" } }, getStarted: "Get started", review: { title: "Review documents", subtitle: "Before accepting, carefully read through the document(s)", consent: "By ticking this checkbox, you agree to the conditions in the document(s)" }, personalInfo: { title: "Add your full names", subtitle: "Kindly add your full names to verify that you read the document(s) provided earlier.", placeholder: "James Doe" }, signature: { title: "Add your signature", subtitle: "Sign or upload your signature below" }, confirmDetails: { title: "Confirm details", subtitle: "Make sure your name is correctly spelled, and the signature matches the one on your ID", yes: "Yes, it's correct", no: "No, change them" }, error: { uploadFailed: "We could not upload your signature" } }, idInfo: { title: "Enter ID Information", idNumber: "ID Number", firstName: "First Name", lastName: "Last Name", dateOfBirth: "Date of Birth", day: "Day", month: "Month", year: "Year", bank: "Bank", selectBank: "--Select Bank--", searchBank: "Search Bank", noBankFound: "No bank found", citizenship: "Citizenship", selectCitizenship: "Select Citizenship Type", dob: "Date of Birth" }, error: { title: "An error occurred", generic: "Something went wrong", uploadFailed: "We could not upload your information", checkInternet: "Please check that you have a stable internet connection. Then try again!", tryAgain: "Try again", countryNotSupported: "{{country}} is not supported" }, validation: { isRequired: "{{field}} is required", invalidFormat: "{{field}} is invalid" } }, ja = {
1134
+ direction: Ia,
1135
+ common: Aa,
1136
+ combobox: wa,
1137
+ navigation: Pa,
1138
+ camera: Oa,
1139
+ selfie: ka,
1140
+ document: Da,
1141
+ fileUpload: La,
1142
+ consent: za,
1143
+ pages: xa
1144
+ }, Ba = "ltr", Ma = { back: "Retour", close: "Fermer", closeVerificationFrame: "Fermer la vérification Smile ID", allow: "Autoriser", cancel: "Annuler", continue: "Continuer", or: "ou", toggle: "Basculer" }, Fa = { noItems: "Aucun article" }, Na = { back: "Retour", closeVerificationFrame: "Fermer la vérification d'identité Smile ID" }, Ea = { permission: { description: "Autorisez l'accès à la caméra pour vérifier vos informations.", requestButton: "Demander l'accès à la caméra" }, error: { notAllowed: "L'autorisation d'accès à la caméra n'a pas été accordée pour ce service. Activez l'accès à votre caméra dans votre appareil ou navigateur/extension pour continuer. Il se peut que vous deviez actualiser la page.", abort: "Un problème est survenu et nous avons perdu l'accès à votre caméra. Veuillez actualiser.", notReadable: "Il semble y avoir un problème avec la connexion de votre caméra. Veuillez vérifier et réessayer, ou essayez d'utiliser un autre appareil.", notFound: "Nous ne parvenons pas à trouver votre caméra. Veuillez actualiser.", insecure: "Connexion sécurisée requise. L'accès à la caméra est désactivé sur les sites non sécurisés. Veuillez vous rendre sur la page sécurisée ou contacter le propriétaire de l'application.", retry: "Réessayer" } }, Ga = { instructions: { title: "Ensuite, nous allons prendre un selfie rapide", allowButton: "Autoriser", tips: { goodLight: { header: "Bonne lumière", body: "Assurez-vous d'être dans un environnement bien éclairé." }, clearImage: { header: "Image Claire", body: "Tenez votre téléphone stable pour que le selfie soit net et clair." }, removeObstructions: { header: "Retirer les Obstructions", body: "Retirez tout ce qui vous couvre le visage, comme les lunettes, masques et chapeaux." }, wideSmile: { header: "large sourire", body: "Lorsque l'on vous demande de sourire, faites un large sourire, en montrant vos dents." } } }, capture: { tip: { fitHead: "Placez votre visage dans le cadre ovale" }, cta: { smile: "SOURIRE", widerSmile: "UN SOURIRE PLUS LARGE" }, button: { takeSelfie: "Prendre un selfie", startCapture: "Démarrer la capture" }, agentMode: { on: "Mode Agent Activé", off: "Mode Agent Désactivé" }, error: { minFrames: "SmartCameraWeb : Le nombre minimum d'images requis est de {{count}}", webcamCapture: "Impossible de capturer les images de la webcam - Veuillez essayer un autre appareil" }, loading: { progress: "Configuration de la caméra... {{progress}}%", slowConnection: "Configuration en cours — cela peut prendre un instant la première fois.", connectionError: "Erreur de connexion Internet, vérifiez votre connexion et réessayez", setupError: "Nous n’avons pas pu terminer la configuration de la capture du visage sur cet appareil. Veuillez réessayer.", offlineError: "Vous semblez être hors ligne. Vérifiez votre connexion et réessayez.", retry: "Réessayer" } }, smart: { alert: { noFace: "Positionnez votre visage dans l'ovale", outOfBounds: "Positionnez votre visage dans l'ovale", tooClose: "Éloignez-vous", tooFar: "Rapprochez-vous", neutralExpression: "Expression neutre", smileRequired: "Souriez !", openMouthSmile: "Sourire plus large - dents visibles", tooDark: "Trop sombre - améliorez l'éclairage", tooBlurry: "Restez immobile - image floue", faceNotCentered: "Centrez votre visage dans l'ovale", turnHeadLeft: "Tournez lentement la tête vers la gauche", turnHeadRight: "Tournez lentement la tête vers la droite", lookStraight: "Regardez droit vers la caméra", tiltHeadUp: "Inclinez légèrement la tête vers le haut", initializing: "Initialisation en cours..." }, status: { capturing: "Capture en cours...", keepSmiling: "Continuez de sourire!", readyToCapture: "Prêt à enregistrer", poseCaptured: "Parfait ! Ne bougez plus", sessionTimeout: "Session expirée — veuillez réessayer" }, instructions: { title: "Contrôle de vivacité actif", description: "Vous devrez tourner lentement la tête en suivant les indications à l'écran. Gardez votre visage dans l'ovale.", continueButton: "Commencer" } }, review: { title: "Vérification du selfie", question: "Votre visage est-il entièrement net ?", acceptButton: "Oui, utiliser ceci", retakeButton: "Non, refaire le selfie" }, ess: { back: "Retour", consent: { titleSuffix: "souhaite vérifier votre identité avec", bodyPrefix: "En sélectionnant Autoriser, vous consentez à ce que ", bodyMiddle: " collecte et traite vos données personnelles afin de fournir des services de vérification d'identité et de prévention de la fraude, et partage les résultats en toute sécurité avec ", bodySuffix: ". Cela peut inclure le traitement des :", items: { contact: "Informations de contact", personal: "Informations personnelles", biometric: "Données biométriques et documents d'identité", device: "Informations sur l'appareil" }, consentCheckbox: "Je consens au partage de mes informations d'identité et données associées avec les prestataires afin de prévenir la fraude et de traiter cette transaction en toute sécurité.", learnMore: "En savoir plus", learnMoreBodyPrefix: "", learnMoreBodyAnd: " et ", learnMoreBodySuffix: " traitent vos données personnelles et biométriques pour vérifier votre identité et prévenir la fraude. Nous conservons vos données pendant 5 ans afin de respecter nos obligations légales.", learnMoreShare: "Nous pouvons partager des données avec certains partenaires pour réaliser cette vérification.", learnMoreRightsPrefix: "Vous pouvez retirer votre consentement, accéder à vos données ou exercer vos droits sur notre page", dsarLink: "DSAR", learnMoreRightsMiddle: ". Les détails complets sont disponibles dans les politiques de confidentialité de", smileIdPrivacyLink: "Smile ID", partnerPrivacyTail: "et de {{partnerName}}.", partnerPrivacyTailLinked: "et de", partnerPrivacyTailEnd: ".", allow: "Autoriser", deny: "Refuser" }, instructions: { titlePrefix: "Préparez-vous à capturer votre", titleAccent: "selfie", guidelinesHeader: "CONSIGNES DE CAPTURE", tile: { good: "Bien", accessories: "Accessoires", multipleFaces: "Plusieurs visages", poorLighting: "Mauvais éclairage" }, continue: "Suivant", settingUpCamera: "Configuration de la caméra…" }, submission: { review: { title: "Vérifier la qualité de l'image", body: "Assurez-vous que l'image est nette.", retake: "Reprendre", confirm: "Confirmer" }, submitting: { title: "Envoi en cours…", body: `Cela peut prendre un instant…
1145
+ Ne fermez pas et n'actualisez pas cette page` }, success: { title: "Envoi terminé", body: "Merci pour votre soumission. Nous vérifions actuellement vos informations." }, error: { title: "Échec de la soumission" }, continue: "Continuer", exit: "Quitter", imageAlt: "Selfie capturé" }, alert: { centerFace: "Centrez votre visage dans le cadre ovale", holdStill: "Ne bougez plus…", tooDark: "Placez-vous dans un environnement bien éclairé", tooClose: "Éloignez l'appareil de votre visage", tooFar: "Rapprochez l'appareil de votre visage", moveDeviceUp: "Levez votre appareil", moveDeviceDown: "Baissez votre appareil", moveDeviceLeft: "Déplacez votre appareil vers la gauche", moveDeviceRight: "Déplacez votre appareil vers la droite", turnHeadLeft: "Tournez la tête vers la gauche", turnHeadRight: "Tournez la tête vers la droite", tiltHeadUp: "Inclinez légèrement la tête vers le haut" }, failure: { sessionTimedOut: "Votre session a expiré. Veuillez réessayer." } } }, Ha = { name: { default: "Document" }, title: { front: "Soumettre le recto de la pièce d'identité", back: "Soumettre le verso de la pièce d'identité" }, capture: { checkingPermissions: "Vérification des autorisations...", instructionText: "Assurez-vous que tous les coins sont visibles et qu'il n'y a pas de reflet.", captureButton: "Capturez le document" }, instructions: { captureTitlePrefix: "Préparez-vous à capturer votre", captureGuidelines: "Consignes de capture", description: "Nous l'utiliserons pour vérifier votre identité.", followInstructions: "Veuillez suivre les instructions ci-dessous.", guidelines: { good: "Correct", notCropped: "Non recadré", notBlurry: "Non flou", notReflective: "Sans reflets" }, goodLight: { header: "Bonne lumière", body: "Assurez-vous que l'image est prise dans un environnement bien éclairé où le document d'identité est facile à lire." }, clearImage: { header: "Image Claire", body: "Tenez votre appareil photo fermement pour que les mots sur la pièce d'identité ne soient pas flous." }, startCapture: "Démarrer la capture", takePhotoButton: "Prendre une photo", uploadPhotoButton: "Télécharger une photo" }, review: { question: "Le document est-il clair et lisible ?", description: "Assurez-vous que tous les coins du document sont visibles et qu'il n'y a pas de reflet.", acceptButton: "Oui, ma pièce d'identité est lisible", retakeButton: "Non, reprendre la photo" } }, Ua = { error: { readingFile: "Une erreur s'est produite lors de la lecture du fichier. Veuillez vérifier le fichier et réessayer.", multipleFiles: "Seulement un téléchargement de fichier est autorisé à la fois", unsupportedFormat: "Format de fichier non pris en charge. Veuillez vous assurer que vous fournissez une image JPG ou PNG", fileTooLarge: "{{filename}} est trop volumineux. Veuillez vous assurer que la taille du fichier est inférieure à {{size}}." } }, Va = { demoTip: "Cet écran de consentement est présenté à titre indicatif uniquement. L'application de démonstration ne collecte pas de données d'identification personnelle.", accessRequest: "{{partnerName}} veut accéder à vos informations {{idTypeLabel}}", allowPartner: "Ceci permettra à {{partnerName}} de :", processing: { personalDetails: { title: "Traiter vos informations personnelles", description: "Le partenaire peut traiter votre nom, date de naissance et sexe" }, contactInfo: { title: "Traiter vos coordonnées", description: "Le partenaire peut traiter vos numéros de téléphone et votre adresse" }, documentInfo: { title: "Traitez les informations de votre document", description: "Le partenaire peut traiter votre photo, la date d'expiration de votre pièce d'identité, le pays d'émission et le numéro de document" } }, privacyPolicy: "Vous pouvez consulter la politique de confidentialité de {{partnerName}}", privacyPolicyLink: "ici.", grantConsent: 'En choisissant "Autoriser", vous accordez à {{partnerName}} le consentement de traiter vos données personnelles pour permettre ce service', denied: { title: "Consentement refusé", message: "Nous ne pouvons pas vous vérifier sans votre consentement", prompt: "Souhaitez-vous corriger cela?", goBack: "Retour", confirmCancel: "Non, Annuler la vérification" } }, $a = { loading: { title: "Configuration", subtitle: "Juste quelques secondes de plus", description: "Nous mettons en place votre processus de vérification" }, idSelection: { title: "Sélectionner le type de pièce d'identité", selectCountry: "Sélectionnez le pays", selectIdType: "Sélectionnez le type de pièce d'identité", selectDocument: "Sélectionner le document", searchCountry: "Rechercher un pays", placeholder: "--Veuillez sélectionner--", selectCountryFirst: "--Sélectionnez le pays d'abord--", noCountryFound: "Aucun pays trouvé", noIdTypeFound: "Aucun type de pièce d'identité trouvé" }, upload: { title: "Téléchargement en cours", subtitle: "Plus que quelques secondes", description: "Nous traitons votre demande" }, complete: { title: "Envoie terminée", subtitle: "C'est tout ce dont vous avez besoin pour vérifier votre identité.", processingInfo: "Nous traiterons vos informations {{country}} - {{idType}} pour vérifier votre identité" }, smartSelfie: { authentication: { title: "Authentification SmartSelfie™", upload: "Authentification de l'utilisateur" }, registration: { title: "Inscription SmartSelfie™", upload: "Inscription de l'utilisateur" } }, eSignature: { fullName: "Nom complet", loading: { description: "Nous mettons en place" }, upload: { description: "Nous traitons votre demande" }, entry: { title: "Fournir une signature", subtitle: "Lisez et acceptez les accords que vous verrez à la page suivante" }, tips: { read: { title: "Lire le document", description: "Lisez attentivement le(s) document(s) fourni(s)" }, name: { title: "Ajouter votre nom complet", description: "Tapez votre nom complet une fois que vous êtes d'accord avec le(s) document(s) partagé(s) avec vous" }, signature: { title: "Ajouter votre signature", description: "Signez ou téléchargez votre signature pour certifier les documents" } }, getStarted: "Commencer", review: { title: "Examiner les documents", subtitle: "Veuillez lire attentivement le(s) document(s) avant d'accepter.", consent: "En cochant cette case, vous acceptez les conditions contenues dans le(s) document(s)" }, personalInfo: { title: "Ajoutez votre nom complet", subtitle: "Veuillez ajouter votre nom complet pour confirmer que vous avez lu le(s) document(s) fourni(s) précédemment.", placeholder: "James Doe" }, signature: { title: "Ajoutez votre signature", subtitle: "Signez ou téléchargez votre signature ci-dessous" }, confirmDetails: { title: "Confirmer les détails", subtitle: "Assurez-vous que votre nom est correctement orthographié et que la signature ressemble à celle de votre pièce d'identité", yes: "Oui, c'est exact", no: "Non, les changer" }, error: { uploadFailed: "Nous n'avons pas pu télécharger votre signature" } }, idInfo: { title: "Saisir les informations d'identité", idNumber: "Numéro d'identification", firstName: "Prénom", lastName: "Nom de famille", dateOfBirth: "Date de Naissance", day: "Jour", month: "Mois", year: "Année", bank: "Banque", selectBank: "--Sélectionner la banque--", searchBank: "Rechercher une banque", noBankFound: "Aucune banque trouvée", citizenship: "Citoyenneté", selectCitizenship: "Sélectionner le type de citoyenneté", dob: "Date de naissance" }, error: { title: "Une erreur est survenue", generic: "Quelque chose s'est mal passé", uploadFailed: "Nous n'avons pas pu télécharger vos informations", checkInternet: "Veuillez vérifier que vous disposez d'une connexion Internet stable. Ensuite, veuillez réessayer !", tryAgain: "Essayez à nouveau", countryNotSupported: "{{country}} n'est pas pris en charge" }, validation: { isRequired: "{{field}} est obligatoire", invalidFormat: "{{field}} n'est pas valide" } }, Ka = {
1146
+ direction: Ba,
1147
+ common: Ma,
1148
+ combobox: Fa,
1149
+ navigation: Na,
1150
+ camera: Ea,
1151
+ selfie: Ga,
1152
+ document: Ha,
1153
+ fileUpload: Ua,
1154
+ consent: Va,
1155
+ pages: $a
1156
+ }, Kn = {
1157
+ ar: "ar-EG",
1158
+ en: "en-GB",
1159
+ fr: "fr-FR"
1160
+ };
1161
+ function x(e) {
1162
+ return Kn[e] || e;
1163
+ }
1164
+ const T = "en-GB", Wa = 5e3;
1165
+ let q = T;
1166
+ const v = {
1167
+ "ar-EG": Ra,
1168
+ "en-GB": ja,
1169
+ "fr-FR": Ka
1170
+ };
1171
+ function N(e, r) {
1172
+ v[e] = r;
1173
+ }
1174
+ function Wn(e, r) {
1175
+ return !r || typeof r != "object" ? e : !e || typeof e != "object" ? r : va({}, e, r);
1176
+ }
1177
+ const On = [
1178
+ "direction",
1179
+ "common.back",
1180
+ "common.close",
1181
+ "common.continue",
1182
+ "common.cancel",
1183
+ "camera.permission.description",
1184
+ "camera.permission.requestButton",
1185
+ "camera.error.notAllowed",
1186
+ "selfie.instructions.title",
1187
+ "selfie.capture.button.takeSelfie",
1188
+ "selfie.review.title",
1189
+ "selfie.review.acceptButton",
1190
+ "selfie.review.retakeButton",
1191
+ "document.capture.captureButton",
1192
+ "document.review.acceptButton",
1193
+ "document.review.retakeButton"
1194
+ ];
1195
+ async function Ja(e, r = Wa) {
1196
+ const t = new AbortController(), n = setTimeout(() => t.abort(), r);
1197
+ try {
1198
+ return await fetch(e, { signal: t.signal });
1199
+ } finally {
1200
+ clearTimeout(n);
1201
+ }
1202
+ }
1203
+ async function Jn(e, r) {
1204
+ try {
1205
+ const t = await Ja(r);
1206
+ if (!t.ok)
1207
+ throw new Error(`Failed to load locale from ${r}: ${t.status}`);
1208
+ const n = await t.json();
1209
+ return N(e, n), n;
1210
+ } catch (t) {
1211
+ const n = t.name === "AbortError" ? `Timeout loading locale '${e}' from ${r}` : `Error loading locale '${e}' from ${r}: ${t.message}`;
1212
+ if (console.error(n), e !== T && v[T])
1213
+ return console.warn(`Falling back to default locale '${T}'`), v[T];
1214
+ throw t;
1215
+ }
1216
+ }
1217
+ async function Yn(e, r) {
1218
+ const t = x(e);
1219
+ return v[t] ? v[t] : r ? Jn(e, r) : (console.warn(
1220
+ `Locale '${e}' not found and no URL provided, using default '${T}'`
1221
+ ), v[T] || {});
1222
+ }
1223
+ function zr(e, r) {
1224
+ if (!e) return;
1225
+ const t = r.split(".").reduce((n, i) => {
1226
+ if (n && typeof n == "object" && i in n)
1227
+ return n[i];
1228
+ }, e);
1229
+ return typeof t == "string" ? t : void 0;
1230
+ }
1231
+ function Qn(e) {
1232
+ if (!e || typeof e != "object")
1233
+ return { missingKeys: On, valid: !1 };
1234
+ const r = On.filter((t) => t === "direction" ? !e.direction : !zr(e, t));
1235
+ return {
1236
+ missingKeys: r,
1237
+ valid: r.length === 0
1238
+ };
1239
+ }
1240
+ function Fr(e) {
1241
+ const r = x(q), t = v[r], n = zr(t, e);
1242
+ if (typeof n == "string")
1243
+ return n;
1244
+ const i = x(T);
1245
+ if (r !== i) {
1246
+ const a = zr(v[i], e);
1247
+ if (typeof a == "string")
1248
+ return a;
1249
+ }
1250
+ return console.warn(`Translation key '${e}' not found in any locale`), e;
1251
+ }
1252
+ const Ya = Fr, Qa = {
1253
+ '"': "&quot;",
1254
+ "&": "&amp;",
1255
+ "'": "&#39;",
1256
+ "<": "&lt;",
1257
+ ">": "&gt;"
1258
+ };
1259
+ function F(e) {
1260
+ return e.replace(/[&<>"']/g, (r) => Qa[r]);
1261
+ }
1262
+ function Xn(e, r = {}) {
1263
+ let t = Fr(e);
1264
+ return Object.keys(r).forEach((n) => {
1265
+ const i = r[n], a = `{{${n}}}`;
1266
+ if (i && typeof i == "object" && "value" in i) {
1267
+ const o = F(String(i.value || "")), s = F(String(i.className || ""));
1268
+ t = t.split(a).join(
1269
+ s ? `<span class="${s}">${o}</span>` : o
1270
+ );
1271
+ } else
1272
+ t = t.split(a).join(F(String(i)));
1273
+ }), t;
1274
+ }
1275
+ const Xa = Xn;
1276
+ async function Za(e, { url: r, translation: t, locales: n, validate: i = !1 } = {}) {
1277
+ if (q = x(e), n && typeof n == "object" && Object.entries(n).forEach(([o, s]) => {
1278
+ if (!s || typeof s != "object")
1279
+ return;
1280
+ const u = x(o);
1281
+ v[u] ? v[u] = Wn(v[u], s) : (N(u, s), o !== u && (Kn[o] = u));
1282
+ }), !v[q])
1283
+ if (t)
1284
+ N(q, t);
1285
+ else if (r)
1286
+ try {
1287
+ await Yn(q, r);
1288
+ } catch {
1289
+ return console.error(
1290
+ `Failed to load locale '${e}', keeping current locale '${q}'`
1291
+ ), !1;
1292
+ }
1293
+ else
1294
+ return console.warn(`Locale '${e}' not registered and no URL provided`), !1;
1295
+ if (i && v[q]) {
1296
+ const o = Qn(v[q]);
1297
+ o.valid || console.warn(
1298
+ `Locale '${e}' is missing required keys:`,
1299
+ o.missingKeys
1300
+ );
1301
+ }
1302
+ const a = v[q];
1303
+ return a && a.direction && document?.documentElement && (document.documentElement.dir = a.direction), !0;
1304
+ }
1305
+ function eo() {
1306
+ return q;
1307
+ }
1308
+ function ro() {
1309
+ return T;
1310
+ }
1311
+ function to(e) {
1312
+ return e in v;
1313
+ }
1314
+ function no(e) {
1315
+ const r = v[e];
1316
+ r && r.direction && (document.documentElement.dir = r.direction);
1317
+ }
1318
+ function io() {
1319
+ return v[q]?.direction || "ltr";
1320
+ }
1321
+ const ao = {
1322
+ deepMerge: Wn,
1323
+ escapeHtml: F,
1324
+ getCurrentLocale: eo,
1325
+ getDefaultLocale: ro,
1326
+ getDirection: io,
1327
+ hasLocale: to,
1328
+ loadLocale: Yn,
1329
+ registerLocale: N,
1330
+ registerLocaleUrl: Jn,
1331
+ setCurrentLocale: Za,
1332
+ setDocumentDir: no,
1333
+ t: Fr,
1334
+ tHtml: Xn,
1335
+ translate: Ya,
1336
+ translateHtml: Xa,
1337
+ validateLocale: Qn
1338
+ };
1339
+ export {
1340
+ ro as a,
1341
+ io as b,
1342
+ Jn as c,
1343
+ Wn as d,
1344
+ F as e,
1345
+ no as f,
1346
+ eo as g,
1347
+ to as h,
1348
+ Xn as i,
1349
+ Ya as j,
1350
+ Xa as k,
1351
+ Yn as l,
1352
+ P as m,
1353
+ U as n,
1354
+ j as o,
1355
+ A as p,
1356
+ Zn as q,
1357
+ N as r,
1358
+ Za as s,
1359
+ Fr as t,
1360
+ ao as u,
1361
+ Qn as v
1362
+ };
1363
+ //# sourceMappingURL=index-CUwa6MPI.js.map