@regulaforensics/vp-frontend-document-components 9.6.2932-nightly → 9.6.2935-rc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -6
- package/dist/main.iife.js +7 -7
- package/dist/main.js +122 -193
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -12853,11 +12853,11 @@ function ux(e, t) {
|
|
|
12853
12853
|
var n, r;
|
|
12854
12854
|
let i = {
|
|
12855
12855
|
[pi.BarcodeMRZ]: {
|
|
12856
|
-
PROD: "https://wasm-development.regulaforensics.com/document/
|
|
12856
|
+
PROD: "https://wasm-development.regulaforensics.com/document/rc/9.6/barcodemrz/daeb988e-e7d89e951",
|
|
12857
12857
|
DEV: "./wasm/barcode-mrz/"
|
|
12858
12858
|
},
|
|
12859
12859
|
[pi.BoundsLite]: {
|
|
12860
|
-
PROD: "https://wasm-development.regulaforensics.com/document/
|
|
12860
|
+
PROD: "https://wasm-development.regulaforensics.com/document/rc/9.6/boundslite/daeb988e-e7d89e951",
|
|
12861
12861
|
DEV: "./wasm/bounds-lite/"
|
|
12862
12862
|
}
|
|
12863
12863
|
};
|
|
@@ -13267,7 +13267,7 @@ function $x(e) {
|
|
|
13267
13267
|
let t = yield Rs({
|
|
13268
13268
|
cameras: [...n.sortedDevices.frontCameras, ...n.sortedDevices.backCameras],
|
|
13269
13269
|
cameraID: n.camera.deviceId,
|
|
13270
|
-
sdkVersion: "9.6.
|
|
13270
|
+
sdkVersion: "9.6.2935-rc",
|
|
13271
13271
|
serviceUrl: ((e = s.recognizerProcessParam.processParam.backendProcessing) == null ? void 0 : e.serviceURL) || ""
|
|
13272
13272
|
});
|
|
13273
13273
|
Qx(`Metadata: ${JSON.stringify(t)}`);
|
|
@@ -13989,7 +13989,7 @@ function LS(e) {
|
|
|
13989
13989
|
try {
|
|
13990
13990
|
var n;
|
|
13991
13991
|
if ((n = a.imageProcessParam.processParam) != null && n.backendProcessing) {
|
|
13992
|
-
let e = yield Rs({ sdkVersion: "9.6.
|
|
13992
|
+
let e = yield Rs({ sdkVersion: "9.6.2935-rc" });
|
|
13993
13993
|
yield a.createBackendTransaction(e, a.imageProcessParam);
|
|
13994
13994
|
}
|
|
13995
13995
|
let e = yield a.processImage(t, o);
|
|
@@ -14162,53 +14162,30 @@ function ZS() {
|
|
|
14162
14162
|
function QS(e) {
|
|
14163
14163
|
function t(t) {
|
|
14164
14164
|
let n = t.locale, r = t.translations, i = t.dictionaries, a = i;
|
|
14165
|
-
if (r) for (let e in r) {
|
|
14166
|
-
|
|
14167
|
-
|
|
14168
|
-
|
|
14169
|
-
continue;
|
|
14170
|
-
}
|
|
14171
|
-
if (t.length === 2) {
|
|
14172
|
-
let n = !1;
|
|
14173
|
-
for (let o in i) o.startsWith(t + "-") && (a = js(a, { [o]: r[e] }), n = !0);
|
|
14174
|
-
if (n) continue;
|
|
14175
|
-
}
|
|
14176
|
-
let n = js(i["en-us"], r[e]);
|
|
14177
|
-
a = js(a, { [t]: n });
|
|
14165
|
+
if (r) for (let e in r) if (Object.prototype.hasOwnProperty.call(i, e)) a = js(a, { [e]: r[e] });
|
|
14166
|
+
else {
|
|
14167
|
+
let t = js(i.en, r[e]);
|
|
14168
|
+
a = js(a, { [e]: t });
|
|
14178
14169
|
}
|
|
14179
14170
|
let o = "en", s = [
|
|
14180
14171
|
n,
|
|
14181
14172
|
XS(),
|
|
14182
14173
|
ZS()
|
|
14183
|
-
]
|
|
14174
|
+
];
|
|
14184
14175
|
for (let e of s) {
|
|
14185
14176
|
if (!e) continue;
|
|
14186
|
-
let t = e.toLowerCase();
|
|
14187
|
-
if (a
|
|
14177
|
+
let t = e.substring(0, 2).toLowerCase();
|
|
14178
|
+
if (Object.prototype.hasOwnProperty.call(a, t)) {
|
|
14188
14179
|
o = t;
|
|
14189
14180
|
break;
|
|
14190
14181
|
}
|
|
14191
|
-
if (/^[a-z]{2}-/i.test(t)) {
|
|
14192
|
-
let e = t.substring(0, 3), n = c.find((t) => t.startsWith(e));
|
|
14193
|
-
if (n) {
|
|
14194
|
-
o = n;
|
|
14195
|
-
break;
|
|
14196
|
-
}
|
|
14197
|
-
}
|
|
14198
|
-
if (t.length === 2) {
|
|
14199
|
-
let e = c.find((e) => e.startsWith(t + "-"));
|
|
14200
|
-
if (e) {
|
|
14201
|
-
o = e;
|
|
14202
|
-
break;
|
|
14203
|
-
}
|
|
14204
|
-
}
|
|
14205
14182
|
}
|
|
14206
|
-
let
|
|
14183
|
+
let c = Wi.includes(o) ? Hi.Rtl : Hi.Ltr;
|
|
14207
14184
|
return Z(bl, {
|
|
14208
14185
|
disableCache: !0,
|
|
14209
14186
|
locale: o,
|
|
14210
14187
|
translations: a,
|
|
14211
|
-
children: Z(e, KS(KS({}, t), {}, { direction:
|
|
14188
|
+
children: Z(e, KS(KS({}, t), {}, { direction: c }))
|
|
14212
14189
|
});
|
|
14213
14190
|
}
|
|
14214
14191
|
return t;
|
|
@@ -16556,7 +16533,7 @@ function LE(e) {
|
|
|
16556
16533
|
//#region src/components/document-reader/helpers.ts
|
|
16557
16534
|
var RE = (e) => {
|
|
16558
16535
|
var t, n;
|
|
16559
|
-
return !!((t =
|
|
16536
|
+
return !!((t = e.recognizerProcessParam.delegateProcessing) != null && t.serviceURL) && !!((n = e.recognizerProcessParam) != null && (n = n.delegateProcessing) != null && n.delegateURL) && !ds.isMobile && !(navigator.maxTouchPoints > 0);
|
|
16560
16537
|
}, zE = (e, t, n, r) => e ? t ? n ? "fromCameraGalleryMobile" : "fromMobileDesktop" : n ? "fromGalleryMobile" : "" : t ? n ? r ? "fromCameraFilesMobileDesktop" : "fromCameraFilesDesktop" : r ? "fromCameraMobileDesktop" : "fromCameraDesktop" : n ? r ? "fromFilesMobileDesktop" : "fromFilesDesktop" : r ? "fromMobileDesktop" : "", BE = (e, t, n, r) => e ? K.CHOOSE_INPUT_SOURCE : t ? K.CAMERA_PROCESSING : !t && r && !n ? K.REMOTE_SCANNER : K.CONFIGURATION_ERROR, VE = (e, t, n, r, i, a) => e ? (n ? n && (i || t) : !0) && (r ? r && (a || t) : !0) : i || t;
|
|
16561
16538
|
eo(), ns();
|
|
16562
16539
|
function HE(e, t) {
|
|
@@ -16602,22 +16579,22 @@ function qE(e) {
|
|
|
16602
16579
|
if (Array.isArray(e)) return e;
|
|
16603
16580
|
}
|
|
16604
16581
|
function JE(e) {
|
|
16605
|
-
let t = e.direction, n = Ec(), r = n.onEvent, i = n.startScreen, a = n.internalScenario, o = n.
|
|
16582
|
+
let t = e.direction, n = Ec(), r = n.onEvent, i = n.startScreen, a = n.internalScenario, o = n.fromCameraButton, s = o === void 0 ? !0 : o, c = n.uploadFileButton, l = c === void 0 ? !0 : c, u = window.RegulaDocumentSDK, d = RE(u), f = BE(!!i, s, l, d), p = Sl().translate, m = hC().orientation, h = HE(q(null), 2), g = h[0], _ = h[1], v = HE(q(f), 2), y = v[0], b = v[1], x = () => {
|
|
16606
16583
|
r({
|
|
16607
16584
|
action: Qr.PRESS_CAMERA_BUTTON,
|
|
16608
16585
|
data: null
|
|
16609
|
-
}),
|
|
16610
|
-
},
|
|
16586
|
+
}), b(K.CAMERA_PROCESSING);
|
|
16587
|
+
}, S = () => {
|
|
16611
16588
|
r({
|
|
16612
16589
|
action: Qr.CLOSE,
|
|
16613
16590
|
data: null
|
|
16614
16591
|
});
|
|
16615
|
-
},
|
|
16616
|
-
|
|
16617
|
-
},
|
|
16618
|
-
|
|
16619
|
-
},
|
|
16620
|
-
|
|
16592
|
+
}, C = (e) => {
|
|
16593
|
+
_(e), b(K.FILE_PROCESSING);
|
|
16594
|
+
}, w = () => {
|
|
16595
|
+
b(K.REMOTE_SCANNER);
|
|
16596
|
+
}, T = (e) => {
|
|
16597
|
+
b(Ei[e.type] || K.UNKNOWN_ERROR), r({
|
|
16621
16598
|
action: Qr.PROCESS_FINISHED,
|
|
16622
16599
|
data: {
|
|
16623
16600
|
status: Ii.ERROR,
|
|
@@ -16625,100 +16602,100 @@ function JE(e) {
|
|
|
16625
16602
|
details: e.details
|
|
16626
16603
|
}
|
|
16627
16604
|
});
|
|
16628
|
-
},
|
|
16629
|
-
|
|
16605
|
+
}, E = () => {
|
|
16606
|
+
_(null), b(f);
|
|
16630
16607
|
};
|
|
16631
16608
|
return J(() => {
|
|
16632
|
-
!ds.isMobile ||
|
|
16633
|
-
}, [
|
|
16634
|
-
let e =
|
|
16635
|
-
if (!VE(!!i, !!a,
|
|
16636
|
-
if (
|
|
16609
|
+
!ds.isMobile || y !== K.CAMERA_PROCESSING || E();
|
|
16610
|
+
}, [m]), Ta(() => {
|
|
16611
|
+
let e = u.recognizerProcessParam.processParam.scenario, t = u.imageProcessParam.processParam.scenario;
|
|
16612
|
+
if (!VE(!!i, !!a, s, l, !!e, !!t)) return T(new Lu(Zr.MISSING_SCENARIO, "Set processing scenario (video and image)"));
|
|
16613
|
+
if (f === K.CONFIGURATION_ERROR) return T(new Lu(Zr.BAD_CONFIGURATION, "Incorrect component configuration"));
|
|
16637
16614
|
}, [
|
|
16638
16615
|
a,
|
|
16639
16616
|
i,
|
|
16617
|
+
s,
|
|
16640
16618
|
l,
|
|
16641
|
-
|
|
16642
|
-
p
|
|
16619
|
+
f
|
|
16643
16620
|
]), Z(Jt, { children: Z(cC, {
|
|
16644
|
-
onError:
|
|
16621
|
+
onError: T,
|
|
16645
16622
|
supportedBrowserVersions: ki,
|
|
16646
16623
|
children: Z(fu, {
|
|
16647
|
-
showHeaderAndFooter:
|
|
16648
|
-
onClose:
|
|
16624
|
+
showHeaderAndFooter: y !== K.CAMERA_PROCESSING,
|
|
16625
|
+
onClose: S,
|
|
16649
16626
|
direction: t,
|
|
16650
|
-
children:
|
|
16651
|
-
onStart:
|
|
16652
|
-
onFileImageSet:
|
|
16653
|
-
allowRemote:
|
|
16654
|
-
onRemoteDevice:
|
|
16655
|
-
title:
|
|
16656
|
-
subtitle:
|
|
16657
|
-
}) :
|
|
16627
|
+
children: y === K.CHOOSE_INPUT_SOURCE ? Z(wS, {
|
|
16628
|
+
onStart: x,
|
|
16629
|
+
onFileImageSet: C,
|
|
16630
|
+
allowRemote: d,
|
|
16631
|
+
onRemoteDevice: w,
|
|
16632
|
+
title: p("verifyYourIdentity"),
|
|
16633
|
+
subtitle: p(zE(ds.isMobile, s, l, d))
|
|
16634
|
+
}) : y === K.CAMERA_PROCESSING ? Z(_S, {
|
|
16658
16635
|
direction: t,
|
|
16659
|
-
onStatusChange:
|
|
16660
|
-
onFileImageSet:
|
|
16661
|
-
onError:
|
|
16662
|
-
onClose:
|
|
16663
|
-
}) :
|
|
16664
|
-
onStatusChange:
|
|
16665
|
-
images:
|
|
16666
|
-
onError:
|
|
16667
|
-
}) :
|
|
16668
|
-
onError:
|
|
16669
|
-
onStatusChange:
|
|
16670
|
-
}) :
|
|
16636
|
+
onStatusChange: b,
|
|
16637
|
+
onFileImageSet: C,
|
|
16638
|
+
onError: T,
|
|
16639
|
+
onClose: S
|
|
16640
|
+
}) : y === K.FILE_PROCESSING ? Z(WS, {
|
|
16641
|
+
onStatusChange: b,
|
|
16642
|
+
images: g,
|
|
16643
|
+
onError: T
|
|
16644
|
+
}) : y === K.REMOTE_SCANNER ? Z(LE, {
|
|
16645
|
+
onError: T,
|
|
16646
|
+
onStatusChange: b
|
|
16647
|
+
}) : y === K.SUCCESS ? Z(SS, {
|
|
16671
16648
|
type: mi.Verified,
|
|
16672
|
-
title:
|
|
16673
|
-
}) :
|
|
16649
|
+
title: p("done")
|
|
16650
|
+
}) : y === K.FILE_SIZE_ERROR ? Z(SS, {
|
|
16674
16651
|
type: mi.Error,
|
|
16675
|
-
title:
|
|
16676
|
-
}) :
|
|
16652
|
+
title: p("largeFile")
|
|
16653
|
+
}) : y === K.NOT_SUPPORTED_ERROR ? Z(SS, {
|
|
16677
16654
|
type: mi.Error,
|
|
16678
|
-
title:
|
|
16679
|
-
}) :
|
|
16655
|
+
title: p("versionNotSupported")
|
|
16656
|
+
}) : y === K.WASM_LICENSE_ERROR ? Z(SS, {
|
|
16680
16657
|
type: mi.Error,
|
|
16681
|
-
title:
|
|
16682
|
-
}) :
|
|
16658
|
+
title: p("badLicense")
|
|
16659
|
+
}) : y === K.INCORRECT_FILE_ERROR ? Z(SS, {
|
|
16683
16660
|
type: mi.Error,
|
|
16684
|
-
title:
|
|
16685
|
-
}) :
|
|
16661
|
+
title: p("fileCorrupt")
|
|
16662
|
+
}) : y === K.CAMERA_PERMISSION_DENIED_ERROR ? Z(SS, {
|
|
16686
16663
|
type: mi.CameraDisabled,
|
|
16687
|
-
title:
|
|
16688
|
-
}) :
|
|
16664
|
+
title: p("cameraUnavailable")
|
|
16665
|
+
}) : y === K.HTTP_NOT_SUPPORTED_ERROR ? Z(SS, {
|
|
16689
16666
|
type: mi.Error,
|
|
16690
|
-
title:
|
|
16691
|
-
}) :
|
|
16667
|
+
title: p("httpNotSupported")
|
|
16668
|
+
}) : y === K.INSECURE_PAGE_CONTEXT_ERROR ? Z(SS, {
|
|
16692
16669
|
type: mi.Error,
|
|
16693
|
-
title:
|
|
16694
|
-
}) :
|
|
16670
|
+
title: p("insecurePageContext")
|
|
16671
|
+
}) : y === K.NO_CAMERA_ERROR ? Z(SS, {
|
|
16695
16672
|
type: mi.CameraDisabled,
|
|
16696
|
-
title:
|
|
16697
|
-
}) :
|
|
16673
|
+
title: p("noCameraAvailable")
|
|
16674
|
+
}) : y === K.INCORRECT_CAMERA_ID_ERROR ? Z(SS, {
|
|
16698
16675
|
type: mi.CameraDisabled,
|
|
16699
|
-
title:
|
|
16700
|
-
}) :
|
|
16676
|
+
title: p("incorrectCameraId")
|
|
16677
|
+
}) : y === K.TIMEOUT ? Z(SS, {
|
|
16701
16678
|
type: mi.Error,
|
|
16702
|
-
title:
|
|
16679
|
+
title: p("timeout"),
|
|
16703
16680
|
onReset: () => {
|
|
16704
16681
|
r({
|
|
16705
16682
|
action: Qr.PRESS_RETRY_BUTTON,
|
|
16706
16683
|
data: null
|
|
16707
|
-
}),
|
|
16684
|
+
}), b(K.CAMERA_PROCESSING);
|
|
16708
16685
|
}
|
|
16709
|
-
}) :
|
|
16686
|
+
}) : y === K.DELEGATE_SUCCESS ? Z(SS, {
|
|
16710
16687
|
type: mi.Verified,
|
|
16711
|
-
title:
|
|
16712
|
-
subtitle:
|
|
16713
|
-
}) :
|
|
16688
|
+
title: p("returnToComputer"),
|
|
16689
|
+
subtitle: p("documentCaptured")
|
|
16690
|
+
}) : y === K.PROCESSING ? Z(uu, {}) : Z(SS, {
|
|
16714
16691
|
type: mi.Error,
|
|
16715
|
-
title:
|
|
16692
|
+
title: p("somethingWentWrong")
|
|
16716
16693
|
})
|
|
16717
16694
|
})
|
|
16718
16695
|
}) });
|
|
16719
16696
|
}
|
|
16720
16697
|
var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{width:100%;height:100%;display:block;container:host/inline-size}._window_989nk_14{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;background:#fff;flex-direction:column;width:100%;height:100%;font-family:Inter,sans-serif;display:flex;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);box-shadow:0 8px 16px rgba(0,0,0,.04),0 2px 4px rgba(0,0,0,.03),0 1px 2px rgba(0,0,0,.02)}._window_989nk_14[data-direction=rtl]{direction:rtl}._window_989nk_14[data-direction=ltr]{direction:ltr}._header_989nk_36{justify-content:flex-end;padding:16px 16px 0;display:flex}._header_989nk_36 button{cursor:pointer;text-align:center;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border:none;justify-content:center;align-items:center;margin:0;padding:0;text-decoration:none;transition:background .25s ease-in-out,transform .15s;display:flex}._footer_989nk_57{justify-content:center;align-items:center;padding:0 16px 8px;display:flex}._close-button_989nk_64:before{content:\"\";background-image:url(\"data:image/svg+xml,%3csvg%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M24%208L8%2024M8%208L24%2024'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20opacity='0.6'/%3e%3c/svg%3e\");background-position:50%;background-repeat:no-repeat;background-size:contain;width:32px;height:32px;display:inline-flex}._close-button_989nk_64:focus-visible{outline:2px solid #00f}", ZE = "._start-window_1ywb7_1{flex-direction:column;flex:1;justify-content:center;align-items:center;row-gap:24px;padding:24px;display:flex}._text_1ywb7_11{text-align:center;flex-direction:column;align-items:center;row-gap:16px;display:flex}._title_1ywb7_19{color:#000;max-width:500px;margin:0;font-size:20px;font-weight:600;line-height:20px}._subtitle_1ywb7_28{color:#454545;max-width:465px;margin:0;font-size:14px;font-weight:400;line-height:20px;display:block}._buttons_1ywb7_38{justify-content:center;align-items:center;column-gap:16px;width:100%;display:flex}._camera-button_1ywb7_46:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='22'%20height='22'%20viewBox='0%200%2022%2022'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_21_211)'%3e%3cpath%20d='M16.1697%205.75397L16.2882%206.08594H16.6406H19.5625C20.236%206.08594%2020.7812%206.63122%2020.7812%207.30469V17.1016C20.7812%2017.775%2020.236%2018.3203%2019.5625%2018.3203H4.4375C3.76403%2018.3203%203.21875%2017.775%203.21875%2017.1016V7.30469C3.21875%206.63122%203.76403%206.08594%204.4375%206.08594H7.35938H7.71147L7.83013%205.75443L8.52837%203.80365L8.52891%203.80215C8.55435%203.73034%208.6245%203.67969%208.7043%203.67969L15.2957%203.67969L15.2961%203.67969C15.3351%203.67965%2015.373%203.69163%2015.4049%203.714C15.4366%203.73627%2015.4607%203.76776%2015.474%203.80419C15.474%203.80433%2015.4741%203.80448%2015.4741%203.80463L16.1697%205.75397ZM8.0625%2011.9453C8.0625%2014.1207%209.82464%2015.8828%2012%2015.8828C14.1754%2015.8828%2015.9375%2014.1207%2015.9375%2011.9453C15.9375%209.76995%2014.1754%208.00781%2012%208.00781C9.82464%208.00781%208.0625%209.76995%208.0625%2011.9453Z'%20stroke='%23211236'/%3e%3ccircle%20cx='18'%20cy='9'%20r='1'%20fill='%23211236'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_21_211'%3e%3crect%20width='22'%20height='22'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\")}._gallery-button_1ywb7_50:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='22'%20height='22'%20viewBox='0%200%2022%2022'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_21_213)'%3e%3cpath%20d='M11.685%2010.2487H15.4872V11.0062H11.684L11.685%2010.2487Z'%20fill='%23211236'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.3862%2014.1034L9.83531%2012.3636L8.00871%2011.9563L6.69453%2013.5517L5.37938%2011.9563L3.54894%2012.3636L3%2014.1034V7H10.39L10.3862%2014.1034ZM8.00679%208.11942V10.1613C8.00676%2010.3969%207.93334%2010.6274%207.79537%2010.8252C7.6574%2011.023%207.46075%2011.1796%207.22905%2011.2763C7.05875%2011.348%206.87387%2011.3851%206.68683%2011.385C6.4998%2011.3851%206.31492%2011.348%206.14463%2011.2763C5.91292%2011.1796%205.71627%2011.023%205.5783%2010.8252C5.44033%2010.6274%205.36691%2010.3969%205.36688%2010.1613V8.11942H8.00679Z'%20fill='%23211236'/%3e%3cpath%20d='M19%2016H11.684V15.2424H19V16Z'%20fill='%23211236'/%3e%3cpath%20d='M19%2013.5045H11.684V12.7469H19V13.5045Z'%20fill='%23211236'/%3e%3cpath%20d='M1.31939%204.66349C1.45107%204.5964%201.62491%204.55031%201.92748%204.52559C2.2359%204.50039%202.63205%204.50001%203.20034%204.50001L18.8%204.50004C19.3683%204.50004%2019.7645%204.50043%2020.0729%204.52563C20.3755%204.55035%2020.5493%204.59644%2020.681%204.66353C20.9632%204.80735%2021.1927%205.03682%2021.3365%205.31906C21.4036%205.45074%2021.4497%205.62458%2021.4744%205.92716C21.4996%206.23558%2021.5%206.63174%2021.5%207.20004L21.5%2015.8C21.5%2016.3683%2021.4996%2016.7645%2021.4744%2017.0729C21.4497%2017.3755%2021.4036%2017.5493%2021.3365%2017.681C21.1927%2017.9632%2020.9632%2018.1927%2020.681%2018.3365C20.5493%2018.4036%2020.3755%2018.4497%2020.0729%2018.4744C19.7645%2018.4996%2019.3683%2018.5%2018.8%2018.5L3.20009%2018.5C2.63177%2018.5%202.23561%2018.4996%201.92718%2018.4744C1.62459%2018.4497%201.45074%2018.4036%201.31906%2018.3365C1.03681%2018.1927%200.80734%2017.9632%200.663533%2017.681C0.596441%2017.5493%200.550357%2017.3754%200.525643%2017.0728C0.500451%2016.7644%200.500073%2016.3682%200.500089%2015.7999L0.500329%207.19993C0.500345%206.63164%200.500745%206.23549%200.525952%205.92708C0.550682%205.62451%200.596772%205.45067%200.663867%205.31899C0.80768%205.03676%201.03715%204.80729%201.31939%204.66349Z'%20stroke='%23211236'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_21_213'%3e%3crect%20width='22'%20height='22'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\")}._phone-button_1ywb7_54:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='22'%20height='22'%20viewBox='0%200%2022%2022'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_21_218)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.782%201.0924C21%201.52022%2021%202.08025%2021%203.20033L21%2018.8C21%2019.9201%2021%2020.4802%2020.782%2020.908C20.5902%2021.2843%2020.2843%2021.5903%2019.9079%2021.782C19.4801%2022%2018.9201%2022%2017.8%2022H12.2C11.0799%2022%2010.5198%2022%2010.092%2021.782C9.71569%2021.5903%209.40973%2021.2843%209.21799%2020.908C9%2020.4802%209%2019.9201%209%2018.8V3.20012C9%202.07998%209%201.51991%209.218%201.09208C9.40975%200.715752%209.71573%200.409789%2010.0921%200.218047C10.5199%206.59147e-05%2011.08%208.49657e-05%2012.2001%200.000123068H12.2001L17.8001%200.000319782C18.9202%200.00035892%2019.4802%200.000378489%2019.908%200.218371C20.2843%200.410123%2020.5903%200.716083%2020.782%201.0924ZM10.109%201.54601C10%201.75992%2010%202.03995%2010%202.6V19.4C10%2019.9601%2010%2020.2401%2010.109%2020.454C10.2049%2020.6422%2010.3578%2020.7951%2010.546%2020.891C10.7599%2021%2011.0399%2021%2011.6%2021H18.4C18.9601%2021%2019.2401%2021%2019.454%2020.891C19.6422%2020.7951%2019.7951%2020.6422%2019.891%2020.454C20%2020.2401%2020%2019.9601%2020%2019.4V2.6C20%202.03995%2020%201.75992%2019.891%201.54601C19.7951%201.35785%2019.6422%201.20487%2019.454%201.10899C19.2401%201%2018.9601%201%2018.4%201H11.6C11.0399%201%2010.7599%201%2010.546%201.10899C10.3578%201.20487%2010.2049%201.35785%2010.109%201.54601Z'%20fill='%23211236'/%3e%3ccircle%20cx='15'%20cy='19'%20r='1'%20fill='%23211236'/%3e%3cpath%20d='M12%201H18C18%201.55228%2017.5523%202%2017%202H13C12.4477%202%2012%201.55228%2012%201Z'%20fill='%23211236'/%3e%3cpath%20d='M0%209.75H6V10.75H0V9.75Z'%20fill='%23211236'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.83358%2010.9314C7.199%2010.5452%207.19835%209.94063%206.83211%209.55524L4.56028%207.16458C4.36668%206.96085%204.04324%206.95673%203.84451%207.15546C3.65282%207.34715%203.64888%207.6567%203.83562%207.85321L5.45448%209.55675C5.82072%209.94215%205.82137%2010.5467%205.45596%2010.9329L3.83418%2012.6469C3.64815%2012.8435%203.65242%2013.1524%203.8438%2013.3438C4.04282%2013.5428%204.36683%2013.5383%204.56027%2013.3339L6.83358%2010.9314Z'%20fill='%23211236'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_21_218'%3e%3crect%20width='22'%20height='22'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\")}@media (max-width:640px){._buttons_1ywb7_38{flex-direction:column;row-gap:16px}._title_1ywb7_19{font-size:18px}}@container host (width<=640px){._buttons_1ywb7_38{flex-direction:column;row-gap:16px}._title_1ywb7_19{font-size:18px}}", QE = "._info-message_1wx3b_1{flex-direction:column;flex:1;justify-content:center;align-items:center;padding:24px;display:flex}._text-container_1wx3b_10{word-break:break-word;flex-direction:column;align-items:center;row-gap:16px;display:flex}._text-container_1wx3b_10:before{content:\"\";background-position:50%;background-repeat:no-repeat;background-size:contain;width:80px;height:80px;display:inline-flex}._title_1wx3b_28{color:#262626;text-align:center;margin:0;font-size:20px;font-weight:600;line-height:120%}._subtitle_1wx3b_37{color:#454545;text-align:center;margin:0;font-size:16px;font-weight:400;line-height:100%}._retry-button_1wx3b_46:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='21'%20height='20'%20viewBox='0%200%2021%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.5737%204.07891C15.4824%203.99597%2015.3891%203.91522%2015.2939%203.83677M15.5737%204.07891L15.2939%203.83677M15.5737%204.07891C16.2977%204.73614%2016.9002%205.53165%2017.3422%206.42526M15.2939%203.83677C13.9798%202.7533%2012.3118%202.10522%2010.4966%202.10522C8.07269%202.10522%205.91117%203.26089%204.50449%205.06575M16.9822%2014.2243C15.621%2016.4305%2013.2251%2017.8947%2010.4966%2017.8947C7.51384%2017.8947%204.92843%2016.1447%203.65796%2013.5885'%20stroke='%23211236'%20stroke-linecap='round'/%3e%3cpath%20d='M18.0873%202.58536L17.4019%206.47276L13.5145%205.7873'%20stroke='%23211236'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M2.6126%2017.2589L3.29805%2013.3715L7.18545%2014.0569'%20stroke='%23211236'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\")}._verified_1wx3b_50:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='80'%20height='80'%20viewBox='0%200%2086%2084'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cellipse%20cx='43'%20cy='42'%20rx='40'%20ry='40'%20transform='rotate(90%2043%2042)'%20stroke='%235DA600'%20stroke-width='3'/%3e%3cpath%20d='M66%2030L40.5069%2054L28%2042.2256'%20stroke='%235DA600'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\")}._error_1wx3b_54:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='80'%20height='80'%20viewBox='0%200%2086%2084'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cellipse%20cx='43'%20cy='42'%20rx='40'%20ry='40'%20transform='rotate(90%2043%2042)'%20stroke='%23FF0000'%20stroke-width='3'/%3e%3cpath%20d='M57%2028L29%2056M29%2028L57%2056'%20stroke='%23FF0000'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\")}._camera-disabled_1wx3b_58:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='80'%20height='80'%20viewBox='0%200%2080%2080'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='40'%20cy='40'%20r='37'%20stroke='%23FF0000'%20stroke-width='3'/%3e%3cpath%20d='M40.213%2030.6667H44.6663C45.3736%2030.6667%2046.0519%2030.9476%2046.552%2031.4477C47.0521%2031.9478%2047.333%2032.6261%2047.333%2033.3334V37.7867L48.6663%2038.12L56.6663%2033.3334V46.6667M47.333%2045.3334V46.6667C47.333%2047.3739%2047.0521%2048.0522%2046.552%2048.5523C46.0519%2049.0524%2045.3736%2049.3334%2044.6663%2049.3334H29.9997C29.2924%2049.3334%2028.6142%2049.0524%2028.1141%2048.5523C27.614%2048.0522%2027.333%2047.3739%2027.333%2046.6667V33.3334C27.333%2032.6261%2027.614%2031.9478%2028.1141%2031.4477C28.6142%2030.9476%2029.2924%2030.6667%2029.9997%2030.6667H32.6663L47.333%2045.3334Z'%20stroke='%23FF0000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M27.333%2025.3333L56.6663%2054.6666'%20stroke='%23FF0000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e\")}", $E = "._container_1fvj1_1,._layout_1fvj1_2{display:flex;overflow:hidden}._container_1fvj1_1{width:100%;height:100%;position:relative}._layout_1fvj1_2{direction:ltr;justify-content:center;position:absolute;top:0;bottom:0;left:0;right:0}._loader_1fvj1_20{box-shadow:none;z-index:999;position:absolute;top:0;bottom:0;left:0;right:0}._copyright_1fvj1_27{padding:12px 0 8px;position:absolute;bottom:0;right:50%;transform:translate(50%)}", eD = "._top-functional-buttons_r3hg6_1,._bottom-functional-buttons_r3hg6_2,._left-functional-buttons_r3hg6_3{z-index:5;gap:15px;padding:16px;display:flex;position:absolute}._top-functional-buttons_r3hg6_1{top:0}._main-functional-buttons_r3hg6_15{z-index:11;grid-template:\"camera\"2fr\"capture\"\"mirror\"2fr/auto;align-items:center;justify-items:center;row-gap:5px;height:100%;max-height:60%;padding:0 24px;display:grid;position:absolute}._bottom-functional-buttons_r3hg6_2{bottom:0}._bottom-functional-buttons_r3hg6_2 button:focus-visible{outline:2px solid #00f}._top-functional-buttons_r3hg6_1 button:focus-visible{outline:2px solid #00f}._left-functional-buttons_r3hg6_3 button:focus-visible{outline:2px solid #00f}._main-functional-buttons_r3hg6_15 button:focus-visible{outline:2px solid #00f}._left-functional-buttons_r3hg6_3,._main-functional-buttons_r3hg6_15{direction:ltr;bottom:50%;transform:translateY(50%)}._top-functional-buttons_r3hg6_1 button:hover,._left-functional-buttons_r3hg6_3 button:hover{transform:scale(1.1)}div[data-layout=new] ._top-functional-buttons_r3hg6_1 button:hover{transform:none}._top-functional-buttons_r3hg6_1 button,._bottom-functional-buttons_r3hg6_2 button,._left-functional-buttons_r3hg6_3 button,._main-functional-buttons_r3hg6_15 button{cursor:pointer;text-align:center;background:0 0;border:none;justify-content:center;align-items:center;margin:0;padding:0;text-decoration:none;transition:background .25s ease-in-out,transform .15s;display:flex}div[data-layout=new] ._mirror-button_r3hg6_77,div[data-layout=new] ._change-camera-button_r3hg6_78{background:rgba(51,53,67,.1);border-radius:50%;flex-shrink:0;width:48px;height:48px}div[data-layout=new] ._mirror-button_r3hg6_77:hover,div[data-layout=new] ._change-camera-button_r3hg6_78:hover{background:rgba(51,53,67,.2)}div[data-layout=new] ._mirror-button_r3hg6_77:active,div[data-layout=new] ._change-camera-button_r3hg6_78:active{background:rgba(51,53,67,.3)}div[data-layout=new] ._mirror-button_r3hg6_77{grid-area:mirror}div[data-layout=new] ._process-button_r3hg6_100,div[data-layout=new] ._snapshot-button_r3hg6_101{grid-area:capture}div[data-layout=new] ._change-camera-button_r3hg6_78{grid-area:camera}._skip-button_r3hg6_109{visibility:hidden}div[data-orientation=landscape] ._skip-button_r3hg6_109{position:absolute}div[data-layout=new] ._skip-button_r3hg6_109{color:#fff;right:var(--skip-position);background-color:rgba(61,61,71,.5);border-radius:26px;flex-direction:row-reverse;gap:5px;padding:8px 14px;font-family:Inter,sans-serif;font-size:18px;line-height:24px;display:flex}div[data-layout=new][data-orientation=portrait] ._skip-button_r3hg6_109{color:#343644;background-color:rgba(51,53,67,.1);grid-area:skip;position:static}div[data-layout=old][data-orientation=landscape] ._skip-button_r3hg6_109{left:var(--skip-position);bottom:50%;transform:translateY(50%)}div[data-orientation=portrait] ._main-functional-buttons_r3hg6_15 button+._skip-button_r3hg6_109{margin-bottom:32px}div[data-direction=rtl] div[data-layout=new][data-orientation=landscape] ._skip-button_r3hg6_109{right:auto;left:var(--skip-position);flex-direction:row}div[data-layout=new][data-orientation=landscape] ._skip-button_r3hg6_109:hover{background-color:rgba(61,61,71,.6)}div[data-layout=new][data-orientation=landscape] ._skip-button_r3hg6_109:active{background-color:rgba(61,61,71,.7)}div[data-layout=new][data-orientation=portrait] ._skip-button_r3hg6_109:hover{background-color:rgba(51,53,67,.2)}div[data-layout=new][data-orientation=portrait] ._skip-button_r3hg6_109:active{background-color:rgba(51,53,67,.3)}div[data-layout=new] ._process-button_r3hg6_100:hover,div[data-layout=new] ._snapshot-button_r3hg6_101:hover{-webkit-filter:brightness(.5);filter:brightness(.5)}div[data-layout=new] ._process-button_r3hg6_100:active,div[data-layout=new] ._snapshot-button_r3hg6_101:active{-webkit-filter:brightness(.1);filter:brightness(.1)}._left-functional-buttons_r3hg6_3 ._skip-button_r3hg6_109{background-color:rgba(27,16,31,.5);border-radius:6px;padding:0 10px}._controls-container_r3hg6_186 button:before{content:\"\";background-position:50%;background-repeat:no-repeat;background-size:contain;display:inline-flex}._process-close-button_r3hg6_194:before{background-image:url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20width='24'%20height='24'%20fill='%23ffffff'%3e%3cpath%20d='M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z'/%3e%3c/svg%3e\");width:24px;height:24px}div[data-layout=new] ._process-close-button_r3hg6_194:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M24%208L8%2024M8%208L24%2024'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20opacity='0.6'/%3e%3c/svg%3e\");width:32px;height:32px}._process-button_r3hg6_100:before,._snapshot-button_r3hg6_101:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='60'%20height='60'%20viewBox='0%200%2060%2060'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20opacity='0.6'%3e%3ccircle%20cx='30'%20cy='30'%20r='29.5'%20stroke='white'/%3e%3c/g%3e%3ccircle%20cx='30'%20cy='30'%20r='21'%20fill='white'/%3e%3c/svg%3e\");width:40px;height:40px}div[data-layout=new] ._process-button_r3hg6_100:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='56'%20height='56'%20viewBox='0%200%2056%2056'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='28'%20cy='28'%20r='21'%20fill='%23343644'%20stroke='%23343644'%20stroke-width='4'%20opacity='0.3'/%3e%3ccircle%20cx='28'%20cy='28'%20r='26.5'%20stroke='%23343644'%20stroke-width='3'%20opacity='0.3'/%3e%3c/svg%3e\");width:56px;height:56px}div[data-layout=new][data-orientation=portrait] ._process-button_r3hg6_100:before{background-image:url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='72'%20height='72'%20viewBox='0%200%2072%2072'%20fill='none'%3e%3ccircle%20cx='36'%20cy='36'%20r='28'%20fill='%23343644'%20stroke='%23343644'%20stroke-width='4'%20opacity='0.3'/%3e%3ccircle%20cx='36'%20cy='36'%20r='34.25'%20stroke='%23343644'%20stroke-width='3.5'%20opacity='0.3'/%3e%3c/svg%3e\");width:72px;height:72px}._skip-button_r3hg6_109:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='32'%20height='32'%20viewBox='0%200%2032%2032'%20fill='white'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M22,9a1,1,0,0,0,0,1.42l4.6,4.6H3.06a1,1,0,1,0,0,2H26.58L22,21.59A1,1,0,0,0,22,23a1,1,0,0,0,1.41,0l6.36-6.36a.88.88,0,0,0,0-1.27L23.42,9A1,1,0,0,0,22,9Z'/%3e%3c/svg%3e\");width:40px;height:40px}div[data-layout=new] ._skip-button_r3hg6_109:before{background-image:url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%3e%3cpath%20d='M11.5303%206.53033C11.8232%206.23744%2011.8232%205.76256%2011.5303%205.46967L6.75736%200.6967C6.46447%200.403806%205.98959%200.403806%205.6967%200.6967C5.40381%200.989593%205.40381%201.46447%205.6967%201.75736L9.93934%206L5.6967%2010.2426C5.40381%2010.5355%205.40381%2011.0104%205.6967%2011.3033C5.98959%2011.5962%206.46447%2011.5962%206.75736%2011.3033L11.5303%206.53033ZM1%205.25C0.585787%205.25%200.25%205.58579%200.25%206C0.25%206.41421%200.585787%206.75%201%206.75V5.25ZM11%206V5.25L1%205.25V6V6.75L11%206.75V6Z'%20fill='white'/%3e%3c/svg%3e\");width:13px;height:12px}div[data-direction=rtl] div[data-layout=new] ._skip-button_r3hg6_109:before{transform:scaleX(-1)}div[data-layout=new][data-orientation=portrait] ._skip-button_r3hg6_109:before{background-image:url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='12'%20viewBox='0%200%2013%2012'%20fill='none'%3e%3cpath%20d='M12.0303%206.53033C12.3232%206.23744%2012.3232%205.76256%2012.0303%205.46967L7.25736%200.6967C6.96447%200.403806%206.48959%200.403806%206.1967%200.6967C5.90381%200.989593%205.90381%201.46447%206.1967%201.75736L10.4393%206L6.1967%2010.2426C5.90381%2010.5355%205.90381%2011.0104%206.1967%2011.3033C6.48959%2011.5962%206.96447%2011.5962%207.25736%2011.3033L12.0303%206.53033ZM1.5%205.25C1.08579%205.25%200.75%205.58579%200.75%206C0.75%206.41421%201.08579%206.75%201.5%206.75V5.25ZM11.5%206V5.25L1.5%205.25V6V6.75L11.5%206.75V6Z'%20fill='%23343644'/%3e%3c/svg%3e\")}._mirrored_r3hg6_245:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='30'%20height='30'%20viewBox='0%200%2030%2030'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20opacity='0.9'%3e%3crect%20x='14'%20y='4'%20width='2'%20height='22'%20rx='1'%20fill='white'/%3e%3cpath%20d='M8.698%2015%20L1%205.762%201%2024.238%20Z'%20stroke='white'%20stroke-width='2'/%3e%3cpath%20d='M21.302%2015%20L29%205.762%2029%2024.238%20Z'%20fill='white'%20stroke='white'%20stroke-width='2'/%3e%3c/g%3e%3c/svg%3e\");width:30px;height:30px}._not-mirrored_r3hg6_251:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='30'%20height='30'%20viewBox='0%200%2030%2030'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20opacity='0.9'%3e%3crect%20x='14'%20y='4'%20width='2'%20height='22'%20rx='1'%20fill='white'/%3e%3cpath%20d='M21.302%2015%20L29%205.762%2029%2024.238%20Z'%20stroke='white'%20stroke-width='2'/%3e%3cpath%20d='M8.698%2015%20L1%205.762%201%2024.238%20Z'%20fill='white'%20stroke='white'%20stroke-width='2'/%3e%3c/g%3e%3c/svg%3e\");width:30px;height:30px}._mirror-button_r3hg6_77:before{background-image:url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='24'%20viewBox='0%200%2032%2024'%20fill='none'%3e%3cpath%20d='M0.75%205.40137L10.6475%2012L0.75%2018.5986L0.75%205.40137Z'%20stroke='%23343644'%20stroke-width='1.5'/%3e%3cpath%20d='M31.25%205.40137L21.3525%2012L31.25%2018.5986L31.25%205.40137Z'%20stroke='%23343644'%20stroke-width='1.5'/%3e%3crect%20x='15.625'%20y='0.375'%20width='0.75'%20height='23.25'%20fill='white'%20stroke='%23343644'%20stroke-width='0.75'/%3e%3c/svg%3e\");width:32px;height:24px}._change-camera-button_r3hg6_78:before{background-image:url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='white'%3e%3cpath%20d='M12.29,5.21l1.5,1.5a1,1,0,0,0,1.42,0,1,1,0,0,0,.13-1.21H19a1,1,0,0,0,0-2H15.34a1,1,0,0,0-.13-1.21,1,1,0,0,0-1.42,0l-1.5,1.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76A1,1,0,0,0,12.29,5.21ZM22.92,9.12a1,1,0,0,0-.21-.33l-1.5-1.5a1,1,0,0,0-1.42,0,1,1,0,0,0-.13,1.21H16a1,1,0,0,0,0,2h3.66a1,1,0,0,0,.13,1.21,1,1,0,0,0,1.42,0l1.5-1.5a1,1,0,0,0,.21-.33A1,1,0,0,0,22.92,9.12ZM11,10a4,4,0,1,0,4,4A4,4,0,0,0,11,10Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,11,16Zm9-3a1,1,0,0,0-1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H6a1,1,0,0,0,1-.69l.54-1.62A1,1,0,0,1,8.44,7H10a1,1,0,0,0,0-2H8.44A3,3,0,0,0,5.59,7.06L5.28,8H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V14A1,1,0,0,0,20,13Z'/%3e%3c/svg%3e\");width:33px;height:33px}div[data-layout=new] ._change-camera-button_r3hg6_78:before{background-image:url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='29'%20height='24'%20viewBox='0%200%2029%2024'%20fill='none'%3e%3cpath%20d='M27.582%2019.7773C27.582%2020.6996%2027.2177%2021.5834%2026.5703%2022.2344C25.9231%2022.885%2025.0463%2023.2499%2024.1328%2023.25H4.5332C3.61955%2023.25%202.74203%2022.8852%202.09473%2022.2344C1.44736%2021.5835%201.08306%2020.6996%201.08301%2019.7773V8.5166L1.08691%208.34375C1.12931%207.48423%201.48774%206.6689%202.09473%206.05859C2.74202%205.40783%203.61961%205.04297%204.5332%205.04297H6.3252C6.65166%205.04283%206.94103%204.83162%207.04004%204.52051L7.48438%203.12207C7.7137%202.43138%208.15327%201.83156%208.73926%201.40625C9.32515%200.98102%2010.0283%200.7514%2010.75%200.75H17.9199C18.6345%200.747308%2019.333%200.967622%2019.918%201.38184C20.4299%201.74436%2020.833%202.23994%2021.0859%202.81348L21.1846%203.06445L21.626%204.4502C21.725%204.7614%2022.0142%204.97266%2022.3408%204.97266H24.1328C24.5901%204.97262%2025.0429%205.06442%2025.4648%205.24219C25.8868%205.41994%2026.2696%205.68047%2026.5908%206.00879C26.9121%206.33718%2027.1657%206.72702%2027.3359%207.15527C27.5062%207.58365%2027.5907%208.04243%2027.583%208.50391H27.582V19.7773Z'%20stroke='%23343644'%20stroke-width='1.5'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.3785%2013C20.3785%2011.4087%2019.7463%209.88258%2018.6211%208.75736C17.4959%207.63214%2015.9698%207%2014.3785%207C13.1918%207%2012.0318%207.35189%2011.0451%208.01118C10.5338%208.35278%2010.081%208.76894%209.7002%209.2432'%20stroke='%23343644'%20stroke-width='1.5'/%3e%3cpath%20d='M21.4438%2013L20.3784%2014.5986L19.313%2013H21.4438Z'%20fill='white'%20stroke='%23343644'/%3e%3cpath%20d='M8.30022%2013C8.30022%2014.5913%208.93236%2016.1174%2010.0576%2017.2426C11.1828%2018.3679%2012.7089%2019%2014.3002%2019C15.4869%2019%2016.6469%2018.6481%2017.6336%2017.9888C18.1449%2017.6472%2018.5977%2017.2311%2018.9785%2016.7568'%20stroke='%23343644'%20stroke-width='1.5'/%3e%3cpath%20d='M7.23486%2013L8.30029%2011.4014L9.36572%2013H7.23486Z'%20fill='white'%20stroke='%23343644'/%3e%3c/svg%3e\");width:28px;height:24px}div[data-orientation=landscape] ._top-functional-buttons_r3hg6_1,div[data-orientation=landscape] ._left-functional-buttons_r3hg6_3,div[data-direction=rtl] div[data-orientation=portrait] ._top-functional-buttons_r3hg6_1,div[data-direction=rtl] div[data-orientation=landscape] ._main-functional-buttons_r3hg6_15,._bottom-functional-buttons_r3hg6_2{left:0}div[data-orientation=portrait] ._bottom-functional-buttons_r3hg6_2,div[data-direction=ltr] div[data-orientation=portrait] ._top-functional-buttons_r3hg6_1{right:0}div[data-orientation=portrait] ._left-functional-buttons_r3hg6_3{z-index:6;flex-direction:column-reverse;bottom:0;right:50%;transform:translate(50%)}div[data-orientation=landscape] ._bottom-functional-buttons_r3hg6_2{flex-direction:column}div[data-orientation=portrait] ._bottom-functional-buttons_r3hg6_2{justify-content:space-between}div[data-orientation=portrait] ._main-functional-buttons_r3hg6_15{grid-template:\".skip.\"\"mirror capture camera\"/2fr auto 2fr;gap:0 5px;width:100%;height:auto;max-height:none;padding:15px 0 50px;bottom:0;right:50%;transform:translate(50%)}div[data-direction=ltr] div[data-layout=new] ._top-functional-buttons_r3hg6_1,div[data-direction=ltr] div[data-orientation=landscape] ._main-functional-buttons_r3hg6_15{left:auto;right:0}._visible_r3hg6_327{visibility:visible}", tD = "._svg_68emc_1{position:absolute;top:0;bottom:0;left:0;right:0}._svg_68emc_1 rect,._svg_68emc_1 path{transition:stroke .25s}._svg_68emc_1 rect[mask=\"url(#bgClip)\"]{opacity:.5;fill:#000}div[data-layout=new] ._svg_68emc_1 rect[mask=\"url(#bgClip)\"]{opacity:1;fill:#f8f8f8}", nD = "._hint-container_1r2jg_1{--message-top:50px;--indicator-top:-50%;justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}._tips-frameless_1r2jg_10 ._message_1r2jg_10{margin:0 36px}._fade-enter_1r2jg_14{opacity:0}._fade-enter-active_1r2jg_18{opacity:1;transition:opacity .3s}._fade-exit_1r2jg_23{opacity:1}._fade-exit-active_1r2jg_27{opacity:0;transition:opacity .3s}._message-container_1r2jg_32{flex-direction:column;align-self:center;align-items:center;width:100%;max-width:370px;display:flex;position:relative}._icon_1r2jg_42{transform:translate(0, var(--indicator-top));justify-content:center;align-items:center;display:flex;position:absolute}._message-container_1r2jg_32 ._icon_1r2jg_42:before{content:\"\";background-position:50%;background-repeat:no-repeat;background-size:contain;display:inline-flex}._processing-error-icon_1r2jg_58:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='80'%20height='80'%20viewBox='0%200%2080%2080'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='40'%20cy='40'%20r='40'%20fill='%23E95454'%20fill-opacity='0.45'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M40%2067C54.9117%2067%2067%2054.9117%2067%2040C67%2025.0883%2054.9117%2013%2040%2013C25.0883%2013%2013%2025.0883%2013%2040C13%2054.9117%2025.0883%2067%2040%2067ZM40%2064C53.2548%2064%2064%2053.2548%2064%2040C64%2026.7452%2053.2548%2016%2040%2016C26.7452%2016%2016%2026.7452%2016%2040C16%2053.2548%2026.7452%2064%2040%2064Z'%20fill='white'/%3e%3c/svg%3e\");width:80px;height:80px}._search-icon_1r2jg_64:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='80'%20height='80'%20viewBox='0%200%2080%2080'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%3e%3ccircle%20cx='40'%20cy='40'%20r='40'%20fill='%231B101F'%20fill-opacity='0.5'/%3e%3c/g%3e%3cg%20opacity='0.8'%3e%3ccircle%20cx='40'%20cy='40'%20r='23.5'%20stroke='white'/%3e%3ccircle%20cx='40'%20cy='40'%20r='1'%20fill='white'/%3e%3c/g%3e%3c/svg%3e\");width:80px;height:80px}._square-icon_1r2jg_70:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='46'%20height='46'%20viewBox='0%200%2046%2046'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M45%2034V41C45%2043.2091%2043.2091%2045%2041%2045H34M45%2012V5C45%202.79086%2043.2091%201%2041%201H34M12%201H5C2.79086%201%201%202.79086%201%205V12M1%2034V41C1%2043.2091%202.79086%2045%205%2045H12'%20stroke='white'%20stroke-width='1.5'/%3e%3c/svg%3e\");width:46px;height:46px}._message_1r2jg_10{transform:translate(0, var(--message-top));z-index:10;justify-content:center;display:flex;position:absolute;left:0;right:0}._message-background_1r2jg_86{text-align:center;color:#fff;background-color:rgba(27,16,31,.5);border-radius:6px;padding:12px 24px}div[data-layout=new] ._message-background_1r2jg_86{color:#000;background-color:#fff;border-radius:14px;padding:8px 14px}div[data-layout=new][data-orientation=portrait] ._message-background_1r2jg_86{background-color:#e8e8e8}._title_1r2jg_105{margin:0;font-size:18px;font-weight:400;line-height:21px}._copyright_1r2jg_112{-webkit-filter:drop-shadow(0 0 2px rgba(0,0,0,.5));filter:drop-shadow(0 0 2px rgba(0,0,0,.5));position:absolute;bottom:10px;right:20px}._copyright_1r2jg_112 span{color:#e9e9e9}", rD = "._flip_1nryz_1,._one-side_1nryz_2{perspective:1000px;align-self:center;width:80%;height:100%;position:absolute}._front_1nryz_10:before,._back_1nryz_11:before,._one-side_1nryz_2:before{content:\"\";background-position:50%;background-repeat:no-repeat;background-size:100%;width:100%;height:100%;display:inline-flex}._slide_1nryz_22:before{animation:_slide_1nryz_22 var(--animation-duration) var(--animation-delay) ease-out forwards;background-position:50% 115%}._front_1nryz_10,._back_1nryz_11{-webkit-backface-visibility:hidden;backface-visibility:hidden;justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}._front_1nryz_10{z-index:2;animation:_flip-front_1nryz_1 var(--animation-duration) var(--animation-delay) ease-out forwards}._back_1nryz_11{animation:_flip-back_1nryz_1 var(--animation-duration) var(--animation-delay) ease-out forwards;transform:rotateY(180deg)}._id-front-icon_1nryz_51:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M101.246%2028.1982H22.4961V126.887C22.4962%20124.482%2027.1732%20123.323%2032.6526%20121.964C39.93%20120.16%2048.6229%20118.005%2049.6542%20112.116C44.6713%20108.96%2042.7698%20104.198%2040.8243%2099.3255C40.4465%2098.3791%2040.0669%2097.4286%2039.6629%2096.485C34.7738%20101.236%2032.5935%2079.4764%2036.9774%2079.4764C28.6435%2056.9793%2051.4615%2038.5191%2072.545%2051.2088C84.91%2048.5382%2091.7424%2063.3145%2084.3766%2079.4768C87.4153%2078.0182%2087.9964%2085.7946%2087.4153%2090.6287C87.4153%2091.8706%2086.1245%20100.564%2082.8626%2097.1966C82.4668%2098.1115%2082.0949%2099.0331%2081.7247%2099.9507L81.7241%2099.9523L81.7239%2099.9527C79.768%20104.801%2077.8573%20109.537%2072.6874%20112.594C74.1725%20118.123%2083.0554%20120.21%2090.5254%20121.964C96.3092%20123.323%20101.246%20124.482%20101.246%20126.887V28.1982Z'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='104.327'%20width='59.0625'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='182.812'%20y='104.327'%20width='64.6875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='28.1963'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='53.5742'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='78.9512'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='129.704'%20width='135'%20height='11.2787'%20fill='%23333543'/%3e%3c/svg%3e\")}._passport-single-icon_1nryz_55:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='309'%20height='219'%20viewBox='0%200%20309%20219'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.40455%20196.527C1.40455%20200.484%201.40564%20203.366%201.59124%20205.638C1.7755%20207.893%202.13459%20209.422%202.78232%20210.693C3.99425%20213.072%205.92806%20215.006%208.3066%20216.218C9.57784%20216.865%2011.1068%20217.225%2013.3621%20217.409C15.6337%20217.594%2018.5165%20217.595%2022.4727%20217.595H286.527C290.484%20217.595%20293.366%20217.594%20295.638%20217.409C297.893%20217.225%20299.422%20216.865%20300.693%20216.218C303.072%20215.006%20305.006%20213.072%20306.218%20210.693C306.865%20209.422%20307.224%20207.893%20307.409%20205.638C307.594%20203.366%20307.595%20200.484%20307.595%20196.527V1.40454H1.40455V196.527Z'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.80909'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M95.509%2033.6924H22.4727V129.154H22.4727C22.4729%20126.828%2026.8105%20125.706%2031.8923%20124.392L31.8924%20124.392C38.6418%20122.647%2046.7039%20120.562%2047.6604%20114.866C43.039%20111.813%2041.2755%20107.207%2039.4712%20102.494L39.4711%20102.494C39.1207%20101.578%2038.7687%20100.659%2038.394%2099.7463C33.8596%20104.342%2031.8376%2083.2938%2035.9034%2083.2938C28.1741%2061.5324%2049.3366%2043.6758%2068.8904%2055.9505C80.3582%2053.3672%2086.695%2067.6604%2079.8636%2083.2943C82.6818%2081.8833%2083.2207%2089.4054%2082.6818%2094.0815C82.6818%2095.2828%2081.4847%20103.692%2078.4594%20100.435C78.0921%20101.32%2077.747%20102.212%2077.4035%20103.1L77.4034%20103.1L77.4033%20103.101C75.5893%20107.79%2073.8173%20112.371%2069.0225%20115.329C70.3998%20120.677%2078.6382%20122.695%2085.5662%20124.392C90.9184%20125.703%2095.4886%20126.823%2095.509%20129.138V33.6924Z'%20fill='%23333543'/%3e%3crect%20x='22.4727'%20y='160.038'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='224.727'%20y='33.6924'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='33.6924'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='53.3457'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='73'%20width='103.936'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='92.6543'%20width='78.6545'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='112.308'%20width='154.5'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='131.962'%20width='50.5636'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='22.4727'%20y='185.308'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3c/svg%3e\")}._passport-both-pages-icon_1nryz_59:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='309'%20height='438'%20viewBox='0%200%20309%20438'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.40455%2022.4727C1.40455%2018.5165%201.40564%2015.6337%201.59124%2013.3621C1.7755%2011.1068%202.13459%209.57784%202.78232%208.3066C3.99425%205.92806%205.92806%203.99425%208.3066%202.78232C9.57784%202.13459%2011.1068%201.7755%2013.3621%201.59124C15.6337%201.40564%2018.5165%201.40455%2022.4727%201.40455H286.527C290.484%201.40455%20293.366%201.40564%20295.638%201.59124C297.893%201.7755%20299.422%202.13459%20300.693%202.78232C303.072%203.99425%20305.006%205.92806%20306.218%208.3066C306.865%209.57784%20307.224%2011.1068%20307.409%2013.3621C307.594%2015.6337%20307.595%2018.5165%20307.595%2022.4727V217.595H1.40455V22.4727Z'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.80909'/%3e%3cpath%20d='M1.40455%20415.527C1.40455%20419.484%201.40564%20422.366%201.59124%20424.638C1.7755%20426.893%202.13459%20428.422%202.78232%20429.693C3.99425%20432.072%205.92806%20434.006%208.3066%20435.218C9.57784%20435.865%2011.1068%20436.225%2013.3621%20436.409C15.6337%20436.594%2018.5165%20436.595%2022.4727%20436.595H286.527C290.484%20436.595%20293.366%20436.594%20295.638%20436.409C297.893%20436.225%20299.422%20435.865%20300.693%20435.218C303.072%20434.006%20305.006%20432.072%20306.218%20429.693C306.865%20428.422%20307.224%20426.893%20307.409%20424.638C307.594%20422.366%20307.595%20419.484%20307.595%20415.527V220.405H1.40455V415.527Z'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.80909'/%3e%3crect%20x='22.4727'%20y='379.038'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='224.727'%20y='252.692'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='252.692'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='272.346'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='292'%20width='103.936'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='311.654'%20width='78.6545'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='331.308'%20width='154.5'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='350.962'%20width='50.5636'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='22.4727'%20y='404.308'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M95.509%20252.692H22.4727V348.154H95.509V348.154H22.4727C22.4727%20345.828%2026.8104%20344.706%2031.8923%20343.392L31.8924%20343.392C38.6418%20341.647%2046.7039%20339.562%2047.6604%20333.866C43.039%20330.813%2041.2755%20326.206%2039.4712%20321.494L39.4711%20321.493C39.1207%20320.578%2038.7687%20319.659%2038.394%20318.746C33.8596%20323.342%2031.8376%20302.294%2035.9034%20302.294C28.1741%20280.532%2049.3366%20262.676%2068.8904%20274.95C80.3582%20272.367%2086.695%20286.66%2079.8636%20302.294C82.6818%20300.883%2083.2207%20308.405%2082.6818%20313.081C82.6818%20314.282%2081.4847%20322.692%2078.4594%20319.434C78.0921%20320.32%2077.747%20321.212%2077.4035%20322.1L77.4034%20322.1L77.4033%20322.1C75.5893%20326.79%2073.8173%20331.371%2069.0225%20334.328C70.3998%20339.677%2078.6382%20341.695%2085.5662%20343.392C90.9184%20344.703%2095.4886%20345.823%2095.509%20348.138V252.692Z'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-mrz-front-icon_1nryz_63:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3crect%20x='112.5'%20y='25.377'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='50.7539'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='76.1309'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='138.164'%20width='225'%20height='11.2787'%20fill='%23333543'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M101.25%2025.377H22.5V124.065C22.5003%20121.661%2027.1772%20120.502%2032.6565%20119.143C39.9339%20117.339%2048.6268%20115.184%2049.6581%20109.295C44.6752%20106.139%2042.7737%20101.377%2040.8282%2096.5044C40.4504%2095.558%2040.0708%2094.6075%2039.6668%2093.6639C34.7777%2098.4148%2032.5974%2076.6553%2036.9813%2076.6553C28.6474%2054.1582%2051.4654%2035.698%2072.5489%2048.3877C84.9139%2045.717%2091.7464%2060.4934%2084.3805%2076.6557C87.4192%2075.1971%2088.0003%2082.9735%2087.4192%2087.8076C87.4192%2089.0495%2086.1284%2097.7429%2082.8665%2094.3755C82.4704%2095.2911%2082.0983%2096.2133%2081.7279%2097.1316C79.7719%20101.98%2077.8612%20106.715%2072.6914%20109.773C74.1764%20115.302%2083.0593%20117.388%2090.5293%20119.143C96.3129%20120.502%20101.25%20121.661%20101.25%20124.065V25.377Z'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-back-icon_1nryz_67:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3crect%20x='22.5'%20y='22.5576'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='171.562'%20y='22.5576'%20width='75.9375'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='154.688'%20y='138.164'%20width='92.8125'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='47.9346'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='47.9346'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='73.3115'%20width='73.125'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='112.787'%20width='50.625'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='138.164'%20width='87.1875'%20height='11.2787'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-mrz-back-icon_1nryz_71:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40625'%20y='-1.40625'%20width='267.188'%20height='169.188'%20rx='12.6562'%20transform='matrix(1%200%200%20-1%200%20169.188)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.8125'/%3e%3crect%20x='22.5'%20y='124.065'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='107.147'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='25.377'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='50.7539'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='50.7539'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='140.983'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-barcode-back-icon_1nryz_75:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40625'%20y='-1.40625'%20width='267.188'%20height='169.188'%20rx='12.6562'%20transform='matrix(1%200%200%20-1%200%20169.188)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.8125'/%3e%3crect%20x='22.5'%20y='22.5576'%20width='225'%20height='33.8361'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='112.787'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='112.787'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='138.164'%20width='87.1875'%20height='11.2787'%20fill='%23333543'/%3e%3cg%20clip-path='url(%23clip0_10772_56590)'%3e%3cpath%20d='M247.5%2022.5576H22.5V64.8527H247.5V22.5576Z'%20fill='%23D6D6D6'/%3e%3cpath%20d='M37.4999%2022.5576H22.5V27.257H37.4999V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2022.5576H39.375V27.257H41.2501V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2022.5576H43.1328V27.257H45.0079V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2022.5576H46.8672V27.257H48.7423V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7577%2022.5576H54.3828V27.257H63.7577V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4962%2022.5576H65.6211V27.257H67.4962V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M71.254%2022.5576H69.3789V27.257H71.254V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4999%2022.5576H73.125V27.257H82.4999V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9921%2022.5576H86.2422V27.257H89.9921V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M93.754%2022.5576H91.8789V27.257H93.754V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3749%2022.5576H95.625V27.257H99.3749V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M110.621%2022.5576H104.996V27.257H110.621V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2022.5576H118.125V27.257H121.875V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M133.125%2022.5576H129.375V27.257H133.125V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M136.875%2022.5576H135V27.257H136.875V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M140.633%2022.5576H138.758V27.257H140.633V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M151.871%2022.5576H149.996V27.257H151.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M159.379%2022.5576H153.754V27.257H159.379V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M172.508%2022.5576H166.883V27.257H172.508V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M176.25%2022.5576H174.375V27.257H176.25V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M191.254%2022.5576H181.879V27.257H191.254V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M195.004%2022.5576H193.129V27.257H195.004V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M198.75%2022.5576H196.875V27.257H198.75V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M209.996%2022.5576H200.621V27.257H209.996V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2022.5576H213.75V27.257H226.875V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2022.5576H228.746V27.257H230.621V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2022.5576H236.25V27.257H238.125V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2022.5576H240.008V27.257H241.883V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2022.5576H245.621V27.257H247.496V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2027.2578H22.5V31.9572H37.4999V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2027.2578H39.375V31.9572H41.2501V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2027.2578H43.1328V31.9572H45.0079V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2027.2578H46.8672V31.9572H48.7423V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8829%2027.2578H54.3828V31.9572H61.8829V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M65.629%2027.2578H63.7539V31.9572H65.629V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3751%2027.2578H67.5V31.9572H69.3751V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M78.7462%2027.2578H76.8711V31.9572H78.7462V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M91.8672%2027.2578H86.2422V31.9572H91.8672V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M99.379%2027.2578H97.5039V31.9572H99.379V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M105%2027.2578H101.25V31.9572H105V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2027.2578H110.633V31.9572H112.508V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2027.2578H118.125V31.9572H121.875V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M133.129%2027.2578H125.629V31.9572H133.129V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M136.875%2027.2578H135V31.9572H136.875V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M148.133%2027.2578H138.758V31.9572H148.133V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M155.621%2027.2578H149.996V31.9572H155.621V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M163.121%2027.2578H161.246V31.9572H163.121V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M174.375%2027.2578H168.75V31.9572H174.375V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M180.004%2027.2578H176.254V31.9572H180.004V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M189.379%2027.2578H181.879V31.9572H189.379V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M193.125%2027.2578H191.25V31.9572H193.125V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M196.883%2027.2578H195.008V31.9572H196.883V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M202.496%2027.2578H200.621V31.9572H202.496V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2027.2578H213.75V31.9572H226.875V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2027.2578H228.746V31.9572H230.621V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2027.2578H236.25V31.9572H238.125V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2027.2578H240.008V31.9572H241.883V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2027.2578H245.621V31.9572H247.496V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2031.9561H22.5V36.6555H37.4999V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2031.9561H39.375V36.6555H41.2501V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2031.9561H43.1328V36.6555H45.0079V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2031.9561H46.8672V36.6555H48.7423V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M56.2579%2031.9561H54.3828V36.6555H56.2579V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M59.9923%2031.9561H58.1172V36.6555H59.9923V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7501%2031.9561H61.875V36.6555H63.7501V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M75.0001%2031.9561H67.5V36.6555H75.0001V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9921%2031.9561H86.2422V36.6555H89.9921V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M103.129%2031.9561H91.8789V36.6555H103.129V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2031.9561H104.996V36.6555H108.746V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2031.9561H110.633V36.6555H112.508V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M120%2031.9561H118.125V36.6555H120V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2031.9561H121.871V36.6555H123.746V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M136.871%2031.9561H133.121V36.6555H136.871V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M148.133%2031.9561H138.758V36.6555H148.133V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M151.871%2031.9561H149.996V36.6555H151.871V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M161.258%2031.9561H155.633V36.6555H161.258V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M172.492%2031.9561H170.617V36.6555H172.492V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M178.125%2031.9561H174.375V36.6555H178.125V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M183.754%2031.9561H181.879V36.6555H183.754V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M187.5%2031.9561H185.625V36.6555H187.5V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M191.246%2031.9561H189.371V36.6555H191.246V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M206.242%2031.9561H198.742V36.6555H206.242V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2031.9561H213.75V36.6555H226.875V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2031.9561H228.746V36.6555H230.621V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2031.9561H236.25V36.6555H238.125V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2031.9561H240.008V36.6555H241.883V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2031.9561H245.621V36.6555H247.496V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2036.6562H22.5V41.3557H37.4999V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2036.6562H39.375V41.3557H41.2501V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2036.6562H43.1328V41.3557H45.0079V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2036.6562H46.8672V41.3557H48.7423V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1327%2036.6562H54.3828V41.3557H58.1327V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8712%2036.6562H59.9961V41.3557H61.8712V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M71.254%2036.6562H63.7539V41.3557H71.254V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3671%2036.6562H74.9922V41.3557H84.3671V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M95.6171%2036.6562H86.2422V41.3557H95.6171V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M99.379%2036.6562H97.5039V41.3557H99.379V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M103.125%2036.6562H101.25V41.3557H103.125V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M116.25%2036.6562H106.875V41.3557H116.25V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M123.75%2036.6562H118.125V41.3557H123.75V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M131.254%2036.6562H125.629V41.3557H131.254V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M134.996%2036.6562H133.121V41.3557H134.996V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M140.633%2036.6562H138.758V41.3557H140.633V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2036.6562H149.996V41.3557H153.746V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M157.508%2036.6562H155.633V41.3557H157.508V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M168.758%2036.6562H166.883V41.3557H168.758V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M180.004%2036.6562H176.254V41.3557H180.004V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M185.629%2036.6562H181.879V41.3557H185.629V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M189.367%2036.6562H187.492V41.3557H189.367V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M198.75%2036.6562H191.25V41.3557H198.75V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M211.875%2036.6562H202.5V41.3557H211.875V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2036.6562H213.75V41.3557H226.875V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2036.6562H228.746V41.3557H230.621V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2036.6562H236.25V41.3557H238.125V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2036.6562H240.008V41.3557H241.883V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2036.6562H245.621V41.3557H247.496V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2041.3564H22.5V46.0559H37.4999V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2041.3564H39.375V46.0559H41.2501V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2041.3564H43.1328V46.0559H45.0079V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2041.3564H46.8672V46.0559H48.7423V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1327%2041.3564H54.3828V46.0559H58.1327V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8712%2041.3564H59.9961V46.0559H61.8712V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3789%2041.3564H63.7539V46.0559H69.3789V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M80.6251%2041.3564H78.75V46.0559H80.6251V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4922%2041.3564H86.2422V46.0559H97.4922V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M105.008%2041.3564H99.3828V46.0559H105.008V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M108.75%2041.3564H106.875V46.0559H108.75V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2041.3564H110.633V46.0559H112.508V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M123.75%2041.3564H118.125V46.0559H123.75V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M127.504%2041.3564H125.629V46.0559H127.504V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M134.992%2041.3564H131.242V46.0559H134.992V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M138.754%2041.3564H136.879V46.0559H138.754V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2041.3564H149.996V46.0559H153.746V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M166.879%2041.3564H165.004V46.0559H166.879V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M176.242%2041.3564H170.617V46.0559H176.242V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M179.996%2041.3564H178.121V46.0559H179.996V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M189.379%2041.3564H181.879V46.0559H189.379V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M193.125%2041.3564H191.25V46.0559H193.125V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M200.633%2041.3564H195.008V46.0559H200.633V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M210.004%2041.3564H204.379V46.0559H210.004V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2041.3564H213.75V46.0559H226.875V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2041.3564H228.746V46.0559H230.621V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2041.3564H236.25V46.0559H238.125V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2041.3564H240.008V46.0559H241.883V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2041.3564H245.621V46.0559H247.496V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2046.0537H22.5V50.7531H37.4999V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2046.0537H39.375V50.7531H41.2501V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2046.0537H43.1328V50.7531H45.0079V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2046.0537H46.8672V50.7531H48.7423V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7577%2046.0537H54.3828V50.7531H63.7577V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4962%2046.0537H65.6211V50.7531H67.4962V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M76.879%2046.0537H69.3789V50.7531H76.879V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4999%2046.0537H78.75V50.7531H82.4999V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M93.7423%2046.0537H86.2422V50.7531H93.7423V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M97.5001%2046.0537H95.625V50.7531H97.5001V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M108.75%2046.0537H101.25V50.7531H108.75V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2046.0537H110.633V50.7531H112.508V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M120%2046.0537H118.125V50.7531H120V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M127.496%2046.0537H121.871V50.7531H127.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M135%2046.0537H129.375V50.7531H135V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M148.125%2046.0537H140.625V50.7531H148.125V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2046.0537H149.996V50.7531H153.746V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M168.742%2046.0537H159.367V50.7531H168.742V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M174.371%2046.0537H172.496V50.7531H174.371V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M179.996%2046.0537H178.121V50.7531H179.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M189.379%2046.0537H181.879V50.7531H189.379V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M193.125%2046.0537H191.25V50.7531H193.125V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M204.383%2046.0537H195.008V50.7531H204.383V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M209.996%2046.0537H206.246V50.7531H209.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2046.0537H213.75V50.7531H226.875V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2046.0537H228.746V50.7531H230.621V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2046.0537H236.25V50.7531H238.125V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2046.0537H240.008V50.7531H241.883V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2046.0537H245.621V50.7531H247.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2050.7539H22.5V55.4533H37.4999V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2050.7539H39.375V55.4533H41.2501V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2050.7539H43.1328V55.4533H45.0079V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2050.7539H46.8672V55.4533H48.7423V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M60.0078%2050.7539H54.3828V55.4533H60.0078V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7501%2050.7539H61.875V55.4533H63.7501V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M73.125%2050.7539H67.5V55.4533H73.125V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3671%2050.7539H74.9922V55.4533H84.3671V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1173%2050.7539H86.2422V55.4533H88.1173V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3749%2050.7539H95.625V55.4533H99.3749V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2050.7539H104.996V55.4533H108.746V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M114.375%2050.7539H112.5V55.4533H114.375V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2050.7539H118.125V55.4533H121.875V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M129.379%2050.7539H125.629V55.4533H129.379V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M140.629%2050.7539H136.879V55.4533H140.629V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M148.121%2050.7539H144.371V55.4533H148.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M151.871%2050.7539H149.996V55.4533H151.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M163.121%2050.7539H161.246V55.4533H163.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M172.5%2050.7539H168.75V55.4533H172.5V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M178.125%2050.7539H174.375V55.4533H178.125V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M187.504%2050.7539H181.879V55.4533H187.504V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M191.246%2050.7539H189.371V55.4533H191.246V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M200.633%2050.7539H195.008V55.4533H200.633V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M211.875%2050.7539H202.5V55.4533H211.875V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2050.7539H213.75V55.4533H226.875V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2050.7539H228.746V55.4533H230.621V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2050.7539H236.25V55.4533H238.125V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2050.7539H240.008V55.4533H241.883V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2050.7539H245.621V55.4533H247.496V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2055.4551H22.5V60.1545H37.4999V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2055.4551H39.375V60.1545H41.2501V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2055.4551H43.1328V60.1545H45.0079V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2055.4551H46.8672V60.1545H48.7423V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6328%2055.4551H54.3828V60.1545H65.6328V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3751%2055.4551H67.5V60.1545H69.3751V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M75.0001%2055.4551H73.125V60.1545H75.0001V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4961%2055.4551H76.8711V60.1545H82.4961V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1173%2055.4551H86.2422V60.1545H88.1173V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M97.5001%2055.4551H90V60.1545H97.5001V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M103.133%2055.4551H99.3828V60.1545H103.133V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M114.371%2055.4551H104.996V60.1545H114.371V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M120%2055.4551H118.125V60.1545H120V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2055.4551H121.871V60.1545H123.746V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M133.129%2055.4551H125.629V60.1545H133.129V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M142.5%2055.4551H140.625V60.1545H142.5V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M157.496%2055.4551H149.996V60.1545H157.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M164.996%2055.4551H161.246V60.1545H164.996V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M172.5%2055.4551H168.75V60.1545H172.5V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M176.25%2055.4551H174.375V60.1545H176.25V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M183.754%2055.4551H181.879V60.1545H183.754V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M187.5%2055.4551H185.625V60.1545H187.5V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M200.621%2055.4551H189.371V60.1545H200.621V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M208.125%2055.4551H202.5V60.1545H208.125V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2055.4551H213.75V60.1545H226.875V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2055.4551H228.746V60.1545H230.621V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2055.4551H236.25V60.1545H238.125V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2055.4551H240.008V60.1545H241.883V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2055.4551H245.621V60.1545H247.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2060.1523H22.5V64.8518H37.4999V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2060.1523H39.375V64.8518H41.2501V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2060.1523H43.1328V64.8518H45.0079V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2060.1523H46.8672V64.8518H48.7423V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6328%2060.1523H54.3828V64.8518H65.6328V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3751%2060.1523H67.5V64.8518H69.3751V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M76.8749%2060.1523H73.125V64.8518H76.8749V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M82.504%2060.1523H80.6289V64.8518H82.504V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1173%2060.1523H86.2422V64.8518H88.1173V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3711%2060.1523H93.7461V64.8518H99.3711V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M103.125%2060.1523H101.25V64.8518H103.125V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2060.1523H108.754V64.8518H112.504V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2060.1523H118.125V64.8518H121.875V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M131.258%2060.1523H127.508V64.8518H131.258V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M138.754%2060.1523H136.879V64.8518H138.754V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M148.125%2060.1523H140.625V64.8518H148.125V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2060.1523H149.996V64.8518H153.746V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M159.383%2060.1523H155.633V64.8518H159.383V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M163.121%2060.1523H161.246V64.8518H163.121V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M172.504%2060.1523H165.004V64.8518H172.504V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M191.254%2060.1523H181.879V64.8518H191.254V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M195.004%2060.1523H193.129V64.8518H195.004V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M204.367%2060.1523H198.742V64.8518H204.367V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M208.121%2060.1523H206.246V64.8518H208.121V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2060.1523H213.75V64.8518H226.875V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2060.1523H228.746V64.8518H230.621V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2060.1523H236.25V64.8518H238.125V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2060.1523H240.008V64.8518H241.883V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2060.1523H245.621V64.8518H247.496V60.1523Z'%20fill='%23272833'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_10772_56590'%3e%3crect%20width='225'%20height='42.2951'%20fill='white'%20transform='translate(22.5%2022.5576)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\")}._id-mrz-barcode-back-icon_1nryz_79:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3crect%20x='22.5'%20y='124.065'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='107.147'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='140.983'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='76.1309'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='76.1309'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3cg%20clip-path='url(%23clip0_10772_56870)'%3e%3cpath%20d='M247.496%2022.5576H22.4961V64.8527H247.496V22.5576Z'%20fill='%23D6D6D6'/%3e%3cpath%20d='M37.496%2022.5576H22.4961V27.257H37.496V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2022.5576H39.3711V27.257H41.2462V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2022.5576H43.1289V27.257H45.004V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2022.5576H46.8633V27.257H48.7384V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7538%2022.5576H54.3789V27.257H63.7538V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4923%2022.5576H65.6172V27.257H67.4923V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M71.2501%2022.5576H69.375V27.257H71.2501V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M82.496%2022.5576H73.1211V27.257H82.496V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9882%2022.5576H86.2383V27.257H89.9882V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M93.7501%2022.5576H91.875V27.257H93.7501V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M99.371%2022.5576H95.6211V27.257H99.371V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M110.617%2022.5576H104.992V27.257H110.617V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2022.5576H118.121V27.257H121.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M133.121%2022.5576H129.371V27.257H133.121V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M136.871%2022.5576H134.996V27.257H136.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M140.629%2022.5576H138.754V27.257H140.629V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M151.867%2022.5576H149.992V27.257H151.867V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M159.375%2022.5576H153.75V27.257H159.375V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M172.504%2022.5576H166.879V27.257H172.504V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M176.246%2022.5576H174.371V27.257H176.246V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M191.25%2022.5576H181.875V27.257H191.25V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M195%2022.5576H193.125V27.257H195V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M198.746%2022.5576H196.871V27.257H198.746V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M209.992%2022.5576H200.617V27.257H209.992V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2022.5576H213.746V27.257H226.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2022.5576H228.742V27.257H230.617V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2022.5576H236.246V27.257H238.121V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2022.5576H240.004V27.257H241.879V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2022.5576H245.617V27.257H247.492V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2027.2578H22.4961V31.9572H37.496V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2027.2578H39.3711V31.9572H41.2462V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2027.2578H43.1289V31.9572H45.004V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2027.2578H46.8633V31.9572H48.7384V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M61.879%2027.2578H54.3789V31.9572H61.879V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6251%2027.2578H63.75V31.9572H65.6251V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3712%2027.2578H67.4961V31.9572H69.3712V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M78.7423%2027.2578H76.8672V31.9572H78.7423V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M91.8633%2027.2578H86.2383V31.9572H91.8633V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3751%2027.2578H97.5V31.9572H99.3751V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M104.996%2027.2578H101.246V31.9572H104.996V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2027.2578H110.629V31.9572H112.504V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2027.2578H118.121V31.9572H121.871V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M133.125%2027.2578H125.625V31.9572H133.125V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M136.871%2027.2578H134.996V31.9572H136.871V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M148.129%2027.2578H138.754V31.9572H148.129V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M155.617%2027.2578H149.992V31.9572H155.617V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M163.117%2027.2578H161.242V31.9572H163.117V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M174.371%2027.2578H168.746V31.9572H174.371V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M180%2027.2578H176.25V31.9572H180V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M189.375%2027.2578H181.875V31.9572H189.375V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M193.121%2027.2578H191.246V31.9572H193.121V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M196.879%2027.2578H195.004V31.9572H196.879V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M202.492%2027.2578H200.617V31.9572H202.492V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2027.2578H213.746V31.9572H226.871V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2027.2578H228.742V31.9572H230.617V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2027.2578H236.246V31.9572H238.121V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2027.2578H240.004V31.9572H241.879V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2027.2578H245.617V31.9572H247.492V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2031.9561H22.4961V36.6555H37.496V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2031.9561H39.3711V36.6555H41.2462V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2031.9561H43.1289V36.6555H45.004V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2031.9561H46.8633V36.6555H48.7384V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M56.254%2031.9561H54.3789V36.6555H56.254V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M59.9884%2031.9561H58.1133V36.6555H59.9884V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7462%2031.9561H61.8711V36.6555H63.7462V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M74.9962%2031.9561H67.4961V36.6555H74.9962V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9882%2031.9561H86.2383V36.6555H89.9882V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M103.125%2031.9561H91.875V36.6555H103.125V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M108.742%2031.9561H104.992V36.6555H108.742V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2031.9561H110.629V36.6555H112.504V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M119.996%2031.9561H118.121V36.6555H119.996V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M123.742%2031.9561H121.867V36.6555H123.742V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M136.867%2031.9561H133.117V36.6555H136.867V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M148.129%2031.9561H138.754V36.6555H148.129V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M151.867%2031.9561H149.992V36.6555H151.867V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M161.254%2031.9561H155.629V36.6555H161.254V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M172.488%2031.9561H170.613V36.6555H172.488V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M178.121%2031.9561H174.371V36.6555H178.121V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M183.75%2031.9561H181.875V36.6555H183.75V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M187.496%2031.9561H185.621V36.6555H187.496V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M191.242%2031.9561H189.367V36.6555H191.242V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M206.238%2031.9561H198.738V36.6555H206.238V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2031.9561H213.746V36.6555H226.871V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2031.9561H228.742V36.6555H230.617V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2031.9561H236.246V36.6555H238.121V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2031.9561H240.004V36.6555H241.879V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2031.9561H245.617V36.6555H247.492V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2036.6562H22.4961V41.3557H37.496V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2036.6562H39.3711V41.3557H41.2462V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2036.6562H43.1289V41.3557H45.004V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2036.6562H46.8633V41.3557H48.7384V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1288%2036.6562H54.3789V41.3557H58.1288V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8673%2036.6562H59.9922V41.3557H61.8673V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M71.2501%2036.6562H63.75V41.3557H71.2501V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3632%2036.6562H74.9883V41.3557H84.3632V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M95.6132%2036.6562H86.2383V41.3557H95.6132V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3751%2036.6562H97.5V41.3557H99.3751V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M103.121%2036.6562H101.246V41.3557H103.121V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M116.246%2036.6562H106.871V41.3557H116.246V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2036.6562H118.121V41.3557H123.746V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M131.25%2036.6562H125.625V41.3557H131.25V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M134.992%2036.6562H133.117V41.3557H134.992V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M140.629%2036.6562H138.754V41.3557H140.629V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2036.6562H149.992V41.3557H153.742V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M157.504%2036.6562H155.629V41.3557H157.504V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M168.754%2036.6562H166.879V41.3557H168.754V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M180%2036.6562H176.25V41.3557H180V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M185.625%2036.6562H181.875V41.3557H185.625V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M189.363%2036.6562H187.488V41.3557H189.363V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M198.746%2036.6562H191.246V41.3557H198.746V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M211.871%2036.6562H202.496V41.3557H211.871V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2036.6562H213.746V41.3557H226.871V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2036.6562H228.742V41.3557H230.617V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2036.6562H236.246V41.3557H238.121V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2036.6562H240.004V41.3557H241.879V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2036.6562H245.617V41.3557H247.492V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2041.3555H22.4961V46.0549H37.496V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2041.3555H39.3711V46.0549H41.2462V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2041.3555H43.1289V46.0549H45.004V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2041.3555H46.8633V46.0549H48.7384V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1288%2041.3555H54.3789V46.0549H58.1288V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8673%2041.3555H59.9922V46.0549H61.8673V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M69.375%2041.3555H63.75V46.0549H69.375V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M80.6212%2041.3555H78.7461V46.0549H80.6212V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4883%2041.3555H86.2383V46.0549H97.4883V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M105.004%2041.3555H99.3789V46.0549H105.004V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2041.3555H106.871V46.0549H108.746V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2041.3555H110.629V46.0549H112.504V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2041.3555H118.121V46.0549H123.746V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M127.5%2041.3555H125.625V46.0549H127.5V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M134.988%2041.3555H131.238V46.0549H134.988V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M138.75%2041.3555H136.875V46.0549H138.75V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2041.3555H149.992V46.0549H153.742V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M166.875%2041.3555H165V46.0549H166.875V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M176.238%2041.3555H170.613V46.0549H176.238V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M179.992%2041.3555H178.117V46.0549H179.992V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M189.375%2041.3555H181.875V46.0549H189.375V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M193.121%2041.3555H191.246V46.0549H193.121V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M200.629%2041.3555H195.004V46.0549H200.629V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M210%2041.3555H204.375V46.0549H210V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2041.3555H213.746V46.0549H226.871V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2041.3555H228.742V46.0549H230.617V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2041.3555H236.246V46.0549H238.121V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2041.3555H240.004V46.0549H241.879V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2041.3555H245.617V46.0549H247.492V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2046.0537H22.4961V50.7531H37.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2046.0537H39.3711V50.7531H41.2462V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2046.0537H43.1289V50.7531H45.004V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2046.0537H46.8633V50.7531H48.7384V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7538%2046.0537H54.3789V50.7531H63.7538V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4923%2046.0537H65.6172V50.7531H67.4923V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M76.8751%2046.0537H69.375V50.7531H76.8751V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M82.496%2046.0537H78.7461V50.7531H82.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M93.7384%2046.0537H86.2383V50.7531H93.7384V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4962%2046.0537H95.6211V50.7531H97.4962V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2046.0537H101.246V50.7531H108.746V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2046.0537H110.629V50.7531H112.504V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M119.996%2046.0537H118.121V50.7531H119.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M127.492%2046.0537H121.867V50.7531H127.492V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M134.996%2046.0537H129.371V50.7531H134.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M148.121%2046.0537H140.621V50.7531H148.121V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2046.0537H149.992V50.7531H153.742V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M168.738%2046.0537H159.363V50.7531H168.738V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M174.367%2046.0537H172.492V50.7531H174.367V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M179.992%2046.0537H178.117V50.7531H179.992V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M189.375%2046.0537H181.875V50.7531H189.375V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M193.121%2046.0537H191.246V50.7531H193.121V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M204.379%2046.0537H195.004V50.7531H204.379V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M209.992%2046.0537H206.242V50.7531H209.992V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2046.0537H213.746V50.7531H226.871V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2046.0537H228.742V50.7531H230.617V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2046.0537H236.246V50.7531H238.121V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2046.0537H240.004V50.7531H241.879V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2046.0537H245.617V50.7531H247.492V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2050.7539H22.4961V55.4533H37.496V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2050.7539H39.3711V55.4533H41.2462V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2050.7539H43.1289V55.4533H45.004V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2050.7539H46.8633V55.4533H48.7384V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M60.0039%2050.7539H54.3789V55.4533H60.0039V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7462%2050.7539H61.8711V55.4533H63.7462V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M73.1211%2050.7539H67.4961V55.4533H73.1211V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3632%2050.7539H74.9883V55.4533H84.3632V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1134%2050.7539H86.2383V55.4533H88.1134V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M99.371%2050.7539H95.6211V55.4533H99.371V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M108.742%2050.7539H104.992V55.4533H108.742V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M114.371%2050.7539H112.496V55.4533H114.371V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2050.7539H118.121V55.4533H121.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M129.375%2050.7539H125.625V55.4533H129.375V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M140.625%2050.7539H136.875V55.4533H140.625V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M148.117%2050.7539H144.367V55.4533H148.117V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M151.867%2050.7539H149.992V55.4533H151.867V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M163.117%2050.7539H161.242V55.4533H163.117V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M172.496%2050.7539H168.746V55.4533H172.496V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M178.121%2050.7539H174.371V55.4533H178.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M187.5%2050.7539H181.875V55.4533H187.5V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M191.242%2050.7539H189.367V55.4533H191.242V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M200.629%2050.7539H195.004V55.4533H200.629V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M211.871%2050.7539H202.496V55.4533H211.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2050.7539H213.746V55.4533H226.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2050.7539H228.742V55.4533H230.617V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2050.7539H236.246V55.4533H238.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2050.7539H240.004V55.4533H241.879V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2050.7539H245.617V55.4533H247.492V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2055.4551H22.4961V60.1545H37.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2055.4551H39.3711V60.1545H41.2462V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2055.4551H43.1289V60.1545H45.004V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2055.4551H46.8633V60.1545H48.7384V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6289%2055.4551H54.3789V60.1545H65.6289V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3712%2055.4551H67.4961V60.1545H69.3712V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M74.9962%2055.4551H73.1211V60.1545H74.9962V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4922%2055.4551H76.8672V60.1545H82.4922V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1134%2055.4551H86.2383V60.1545H88.1134V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4962%2055.4551H89.9961V60.1545H97.4962V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M103.129%2055.4551H99.3789V60.1545H103.129V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M114.367%2055.4551H104.992V60.1545H114.367V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M119.996%2055.4551H118.121V60.1545H119.996V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M123.742%2055.4551H121.867V60.1545H123.742V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M133.125%2055.4551H125.625V60.1545H133.125V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M142.496%2055.4551H140.621V60.1545H142.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M157.492%2055.4551H149.992V60.1545H157.492V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M164.992%2055.4551H161.242V60.1545H164.992V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M172.496%2055.4551H168.746V60.1545H172.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M176.246%2055.4551H174.371V60.1545H176.246V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M183.75%2055.4551H181.875V60.1545H183.75V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M187.496%2055.4551H185.621V60.1545H187.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M200.617%2055.4551H189.367V60.1545H200.617V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M208.121%2055.4551H202.496V60.1545H208.121V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2055.4551H213.746V60.1545H226.871V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2055.4551H228.742V60.1545H230.617V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2055.4551H236.246V60.1545H238.121V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2055.4551H240.004V60.1545H241.879V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2055.4551H245.617V60.1545H247.492V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2060.1514H22.4961V64.8508H37.496V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2060.1514H39.3711V64.8508H41.2462V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2060.1514H43.1289V64.8508H45.004V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2060.1514H46.8633V64.8508H48.7384V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6289%2060.1514H54.3789V64.8508H65.6289V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3712%2060.1514H67.4961V64.8508H69.3712V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M76.871%2060.1514H73.1211V64.8508H76.871V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M82.5001%2060.1514H80.625V64.8508H82.5001V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1134%2060.1514H86.2383V64.8508H88.1134V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3672%2060.1514H93.7422V64.8508H99.3672V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M103.121%2060.1514H101.246V64.8508H103.121V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M112.5%2060.1514H108.75V64.8508H112.5V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2060.1514H118.121V64.8508H121.871V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M131.254%2060.1514H127.504V64.8508H131.254V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M138.75%2060.1514H136.875V64.8508H138.75V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M148.121%2060.1514H140.621V64.8508H148.121V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2060.1514H149.992V64.8508H153.742V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M159.379%2060.1514H155.629V64.8508H159.379V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M163.117%2060.1514H161.242V64.8508H163.117V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M172.5%2060.1514H165V64.8508H172.5V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M191.25%2060.1514H181.875V64.8508H191.25V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M195%2060.1514H193.125V64.8508H195V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M204.363%2060.1514H198.738V64.8508H204.363V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M208.117%2060.1514H206.242V64.8508H208.117V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2060.1514H213.746V64.8508H226.871V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2060.1514H228.742V64.8508H230.617V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2060.1514H236.246V64.8508H238.121V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2060.1514H240.004V64.8508H241.879V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2060.1514H245.617V64.8508H247.492V60.1514Z'%20fill='%23272833'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_10772_56870'%3e%3crect%20width='225'%20height='42.2951'%20fill='white'%20transform='translate(22.5%2022.5576)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\")}._bank-card-front-icon_1nryz_83:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='280'%20height='172'%20viewBox='0%200%20280%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.45763'%20y='-1.45763'%20width='277.085'%20height='169.085'%20rx='13.1186'%20transform='matrix(1%200%200%20-1%200%20169.085)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.91525'/%3e%3crect%20x='23.332'%20y='23.3223'%20width='107.917'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='93.332'%20y='142.848'%20width='99.1667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='145.832'%20y='122.44'%20width='37.9167'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='23.332'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='84.582'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='145.832'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='207.082'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='23.332'%20y='142.848'%20width='61.25'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='23.3359'%20y='52.4746'%20width='40.8333'%20height='37.8983'%20rx='5.83051'%20fill='%23333543'/%3e%3crect%20x='23.3359'%20y='58.3047'%20width='40.8333'%20height='1.45763'%20fill='white'/%3e%3crect%20x='23.3359'%20y='67.0508'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='49.5859'%20y='67.0508'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='23.3359'%20y='74.3389'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='49.5859'%20y='74.3389'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='44.4805'%20y='52.4746'%20width='5.83051'%20height='1.45833'%20transform='rotate(90%2044.4805%2052.4746)'%20fill='white'/%3e%3crect%20x='37.918'%20y='58.3047'%20width='26.2373'%20height='1.45833'%20transform='rotate(90%2037.918%2058.3047)'%20fill='white'/%3e%3crect%20x='51.043'%20y='67.0508'%20width='17.4915'%20height='1.45833'%20transform='rotate(90%2051.043%2067.0508)'%20fill='white'/%3e%3crect%20x='44.4805'%20y='84.542'%20width='5.83051'%20height='1.45833'%20transform='rotate(90%2044.4805%2084.542)'%20fill='white'/%3e%3crect%20x='23.3359'%20y='83.085'%20width='40.8333'%20height='1.45763'%20fill='white'/%3e%3ccircle%20cx='224.476'%20cy='137.017'%20r='17.4915'%20fill='%23333543'/%3e%3ccircle%20cx='247.796'%20cy='137.017'%20r='17.4915'%20fill='%23333543'/%3e%3c/svg%3e\")}._bank-card-back-icon_1nryz_87:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='280'%20height='172'%20viewBox='0%200%20280%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.45833'%20y='-1.45833'%20width='277.083'%20height='169.083'%20rx='13.125'%20transform='matrix(1%200%200%20-1%200%20169.083)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.91667'/%3e%3crect%20y='14.5762'%20width='280'%20height='40.8136'%20fill='%23333543'/%3e%3crect%20x='23.332'%20y='69.9658'%20width='37.9167'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='224.582'%20y='119.525'%20width='23.3333'%20height='34.9831'%20fill='%23333543'/%3e%3ccircle%20cx='224.582'%20cy='137.083'%20r='17.5'%20fill='%23333543'/%3e%3ccircle%20cx='247.918'%20cy='137.083'%20r='17.5'%20fill='%23333543'/%3e%3c/svg%3e\")}._document-front-icon_1nryz_91:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='920'%20height='640'%20viewBox='0%200%20920%20640'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M520%20200H800V240H520V200Z'%20fill='white'/%3e%3cpath%20d='M800%20300H520V340H800V300Z'%20fill='white'/%3e%3cpath%20d='M520%20400H800V440H520V400Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M274.943%20123.429L274.933%20123.432C266.551%20126.295%20258.863%20130.466%20251.927%20135.343C243.39%20140.807%20235.349%20147.484%20228.244%20155.117C216.999%20166.723%20206.985%20181.73%20202.638%20200.462C201.732%20203.954%20201.031%20207.508%20200.554%20211.114C198.857%20223.937%20199.991%20237.409%20204.799%20251.055C201.906%20250.776%20199.719%20251.697%20198.089%20253.419C191.062%20260.842%20194.356%20283.152%20195.842%20288.454C202.652%20312.775%20208.999%20319.597%20213.796%20319.988C216.486%20337.575%20230.545%20358.063%20243.587%20375.139C243.587%20405.888%20203.816%20413.339%20170.442%20419.591C162.723%20421.037%20155.346%20422.419%20148.883%20424.01C114.629%20432.436%20110.268%20472.281%20110.168%20504.349C110.141%20513.052%20117.321%20520%20126.023%20520H473.977C482.679%20520%20489.859%20513.052%20489.839%20504.349C489.769%20472.142%20485.483%20432.464%20451.117%20424.01C445.211%20422.556%20438.486%20421.191%20431.39%20419.752L431.388%20419.751C396.76%20412.725%20353.321%20403.912%20353.321%20374.203C353.664%20373.739%20354.01%20373.272%20354.358%20372.804C357.463%20368.617%20360.701%20364.25%20363.825%20359.791C372.128%20347.938%20379.624%20335.429%20381.652%20323.912C382.709%20324.634%20383.91%20325.123%20385.24%20325.123C385.796%20325.123%20386.374%20325.037%20386.972%20324.849C391.593%20323.394%20397.418%20315.772%20403.633%20293.568C410.9%20267.609%20406.477%20258.905%20400.199%20256.714C420.616%20157.928%20373.971%20154.617%20373.971%20154.617C373.971%20154.617%20366.934%20140.939%20348.397%20130.606C337.66%20124.183%20323.287%20119%20304.851%20119C301.953%20119%20298.964%20119.122%20295.865%20119.395C288.479%20119.744%20281.5%20121.188%20274.943%20123.429ZM321.183%20350.388C316.077%20357.278%20313.321%20365.627%20313.321%20374.203C313.321%20396.791%20323.959%20414.183%20337.296%20425.916C349.473%20436.63%20364.134%20443.009%20376.199%20447.154C388.689%20451.445%20401.819%20454.454%20412.943%20456.796C417.197%20457.692%20421.006%20458.464%20424.494%20459.171L424.495%20459.171C431.031%20460.495%20436.443%20461.592%20441.555%20462.85L441.562%20462.852C442.371%20463.051%20442.688%20463.234%20442.718%20463.251L442.719%20463.252L442.723%20463.254C442.746%20463.267%20442.79%20463.292%20442.907%20463.412C443.207%20463.723%20444.371%20465.103%20445.684%20468.766C446.817%20471.928%20447.691%20475.687%20448.338%20480H151.711C152.363%20475.717%20153.239%20471.971%20154.372%20468.81C155.699%20465.109%20156.878%20463.698%20157.192%20463.372L157.194%20463.369C157.207%20463.34%20157.301%20463.132%20158.438%20462.852L158.445%20462.85C163.729%20461.549%20169.527%20460.462%20176.817%20459.096L176.821%20459.095C179.572%20458.579%20182.535%20458.024%20185.763%20457.402C196.469%20455.34%20209.407%20452.649%20221.731%20448.562C233.686%20444.597%20248.469%20438.255%20260.709%20426.995C274.269%20414.522%20283.587%20396.915%20283.587%20375.139C283.587%20366.365%20280.702%20357.834%20275.376%20350.86C269.197%20342.77%20263.625%20334.956%20259.415%20327.693C254.949%20319.99%20253.579%20315.526%20253.336%20313.941C251.698%20303.233%20245.887%20294.002%20237.651%20287.879C236.767%20285.573%20235.697%20282.397%20234.493%20278.142C234.495%20278.139%20234.486%20278.086%20234.467%20277.984L234.452%20277.901C235.091%20277.195%20235.707%20276.464%20236.298%20275.708C244.717%20264.952%20247.065%20250.644%20242.526%20237.762C239.17%20228.237%20239.103%20219.19%20241.356%20210.506C241.443%20210.173%20241.525%20209.839%20241.603%20209.503C243.904%20199.588%20249.376%20190.79%20256.971%20182.951C257.156%20182.76%20257.34%20182.567%20257.521%20182.372C262.328%20177.208%20267.774%20172.691%20273.489%20169.034C273.978%20168.721%20274.46%20168.397%20274.936%20168.063C279.286%20165.004%20283.597%20162.748%20287.809%20161.303L287.883%20161.278C291.162%20160.157%20294.424%20159.508%20297.75%20159.351C298.292%20159.325%20298.833%20159.288%20299.374%20159.241C301.267%20159.074%20303.083%20159%20304.851%20159C315.374%20159%20322.72%20161.857%20327.864%20164.933C328.213%20165.142%20328.565%20165.345%20328.92%20165.543C333.473%20168.081%20336.341%20170.874%20337.886%20172.659C338.515%20173.386%20338.906%20173.925%20339.077%20174.173C344.22%20183.353%20352.722%20190.05%20362.636%20192.979C364.507%20197.532%20368.476%20212.578%20361.027%20248.618C358.865%20259.075%20361.005%20269.523%20366.336%20278.005C366.023%20279.378%20365.623%20280.965%20365.114%20282.784L365.113%20282.786C364.533%20284.861%20363.983%20286.685%20363.469%20288.283C352.34%20293.961%20344.445%20304.559%20342.258%20316.974C342.258%20316.974%20342.208%20317.246%20342.023%20317.818C341.833%20318.406%20341.53%20319.218%20341.065%20320.269C340.111%20322.423%20338.685%20325.105%20336.678%20328.368C332.654%20334.911%20327.684%20341.617%20321.853%20349.483L321.183%20350.388Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M80%200C35.8172%200%200%2035.8172%200%2080V560C0%20604.183%2035.8172%20640%2080%20640H840C884.183%20640%20920%20604.183%20920%20560V80C920%2035.8172%20884.183%200%20840%200H80ZM840%2040H80C57.9086%2040%2040%2057.9086%2040%2080V560C40%20582.091%2057.9086%20600%2080%20600H840C862.091%20600%20880%20582.091%20880%20560V80C880%2057.9086%20862.091%2040%20840%2040Z'%20fill='white'/%3e%3c/svg%3e\")}._document-back-icon_1nryz_95:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='920'%20height='640'%20viewBox='0%200%20920%20640'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M460%20300H140V340H460V300Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M100%200C44.7715%200%200%2044.7715%200%20100V540C0%20595.228%2044.7715%20640%20100%20640H820C875.228%20640%20920%20595.228%20920%20540V100C920%2044.7715%20875.229%200%20820%200H100ZM820%2040H100C66.8629%2040%2040%2066.8629%2040%20100V140H880V100C880%2066.8629%20853.137%2040%20820%2040ZM40%20540V240H880V540C880%20573.137%20853.137%20600%20820%20600H100C66.8629%20600%2040%20573.137%2040%20540Z'%20fill='white'/%3e%3c/svg%3e\")}@keyframes _slide_1nryz_22{0%{background-position:50% 115%}to{background-position:50% -15%}}@keyframes _flip-front_1nryz_1{0%{transform:rotateY(0)}to{transform:rotateY(-180deg)}}@keyframes _flip-back_1nryz_1{0%{transform:rotateY(180deg)}to{transform:rotateY(0)}}", iD = "._tilt_5ot88_1{perspective:1000px;align-self:center;width:80%;height:100%;position:absolute}._tilt_5ot88_1:before{content:\"\";background-position:50%;background-repeat:no-repeat;background-size:100%;width:100%;height:100%;display:inline-flex}._vertical_5ot88_19:before{animation:2s linear .4s infinite _vertical_5ot88_19}._horizontal_5ot88_23:before{animation:2s linear .4s infinite _horizontal_5ot88_23}._left-bottom-right-top_5ot88_27:before{animation:2s linear .4s infinite _left-bottom-right-top_5ot88_27}._right-bottom-left-top_5ot88_31:before{animation:2s linear .4s infinite _right-bottom-left-top_5ot88_31}._id-front-icon_5ot88_35:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M101.246%2028.1982H22.4961V126.887C22.4962%20124.482%2027.1732%20123.323%2032.6526%20121.964C39.93%20120.16%2048.6229%20118.005%2049.6542%20112.116C44.6713%20108.96%2042.7698%20104.198%2040.8243%2099.3255C40.4465%2098.3791%2040.0669%2097.4286%2039.6629%2096.485C34.7738%20101.236%2032.5935%2079.4764%2036.9774%2079.4764C28.6435%2056.9793%2051.4615%2038.5191%2072.545%2051.2088C84.91%2048.5382%2091.7424%2063.3145%2084.3766%2079.4768C87.4153%2078.0182%2087.9964%2085.7946%2087.4153%2090.6287C87.4153%2091.8706%2086.1245%20100.564%2082.8626%2097.1966C82.4668%2098.1115%2082.0949%2099.0331%2081.7247%2099.9507L81.7241%2099.9523L81.7239%2099.9527C79.768%20104.801%2077.8573%20109.537%2072.6874%20112.594C74.1725%20118.123%2083.0554%20120.21%2090.5254%20121.964C96.3092%20123.323%20101.246%20124.482%20101.246%20126.887V28.1982Z'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='104.327'%20width='59.0625'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='182.812'%20y='104.327'%20width='64.6875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='28.1963'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='53.5742'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='78.9512'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='129.704'%20width='135'%20height='11.2787'%20fill='%23333543'/%3e%3c/svg%3e\")}._passport-single-icon_5ot88_39:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='309'%20height='219'%20viewBox='0%200%20309%20219'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.40455%20196.527C1.40455%20200.484%201.40564%20203.366%201.59124%20205.638C1.7755%20207.893%202.13459%20209.422%202.78232%20210.693C3.99425%20213.072%205.92806%20215.006%208.3066%20216.218C9.57784%20216.865%2011.1068%20217.225%2013.3621%20217.409C15.6337%20217.594%2018.5165%20217.595%2022.4727%20217.595H286.527C290.484%20217.595%20293.366%20217.594%20295.638%20217.409C297.893%20217.225%20299.422%20216.865%20300.693%20216.218C303.072%20215.006%20305.006%20213.072%20306.218%20210.693C306.865%20209.422%20307.224%20207.893%20307.409%20205.638C307.594%20203.366%20307.595%20200.484%20307.595%20196.527V1.40454H1.40455V196.527Z'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.80909'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M95.509%2033.6924H22.4727V129.154H22.4727C22.4729%20126.828%2026.8105%20125.706%2031.8923%20124.392L31.8924%20124.392C38.6418%20122.647%2046.7039%20120.562%2047.6604%20114.866C43.039%20111.813%2041.2755%20107.207%2039.4712%20102.494L39.4711%20102.494C39.1207%20101.578%2038.7687%20100.659%2038.394%2099.7463C33.8596%20104.342%2031.8376%2083.2938%2035.9034%2083.2938C28.1741%2061.5324%2049.3366%2043.6758%2068.8904%2055.9505C80.3582%2053.3672%2086.695%2067.6604%2079.8636%2083.2943C82.6818%2081.8833%2083.2207%2089.4054%2082.6818%2094.0815C82.6818%2095.2828%2081.4847%20103.692%2078.4594%20100.435C78.0921%20101.32%2077.747%20102.212%2077.4035%20103.1L77.4034%20103.1L77.4033%20103.101C75.5893%20107.79%2073.8173%20112.371%2069.0225%20115.329C70.3998%20120.677%2078.6382%20122.695%2085.5662%20124.392C90.9184%20125.703%2095.4886%20126.823%2095.509%20129.138V33.6924Z'%20fill='%23333543'/%3e%3crect%20x='22.4727'%20y='160.038'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='224.727'%20y='33.6924'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='33.6924'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='53.3457'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='73'%20width='103.936'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='92.6543'%20width='78.6545'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='112.308'%20width='154.5'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='131.962'%20width='50.5636'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='22.4727'%20y='185.308'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3c/svg%3e\")}._passport-both-pages-icon_5ot88_43:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='309'%20height='438'%20viewBox='0%200%20309%20438'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.40455%2022.4727C1.40455%2018.5165%201.40564%2015.6337%201.59124%2013.3621C1.7755%2011.1068%202.13459%209.57784%202.78232%208.3066C3.99425%205.92806%205.92806%203.99425%208.3066%202.78232C9.57784%202.13459%2011.1068%201.7755%2013.3621%201.59124C15.6337%201.40564%2018.5165%201.40455%2022.4727%201.40455H286.527C290.484%201.40455%20293.366%201.40564%20295.638%201.59124C297.893%201.7755%20299.422%202.13459%20300.693%202.78232C303.072%203.99425%20305.006%205.92806%20306.218%208.3066C306.865%209.57784%20307.224%2011.1068%20307.409%2013.3621C307.594%2015.6337%20307.595%2018.5165%20307.595%2022.4727V217.595H1.40455V22.4727Z'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.80909'/%3e%3cpath%20d='M1.40455%20415.527C1.40455%20419.484%201.40564%20422.366%201.59124%20424.638C1.7755%20426.893%202.13459%20428.422%202.78232%20429.693C3.99425%20432.072%205.92806%20434.006%208.3066%20435.218C9.57784%20435.865%2011.1068%20436.225%2013.3621%20436.409C15.6337%20436.594%2018.5165%20436.595%2022.4727%20436.595H286.527C290.484%20436.595%20293.366%20436.594%20295.638%20436.409C297.893%20436.225%20299.422%20435.865%20300.693%20435.218C303.072%20434.006%20305.006%20432.072%20306.218%20429.693C306.865%20428.422%20307.224%20426.893%20307.409%20424.638C307.594%20422.366%20307.595%20419.484%20307.595%20415.527V220.405H1.40455V415.527Z'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.80909'/%3e%3crect%20x='22.4727'%20y='379.038'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='224.727'%20y='252.692'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='252.692'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='272.346'%20width='61.8'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='292'%20width='103.936'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='311.654'%20width='78.6545'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='331.308'%20width='154.5'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='112.363'%20y='350.962'%20width='50.5636'%20height='11.2308'%20fill='%23333543'/%3e%3crect%20x='22.4727'%20y='404.308'%20width='264.055'%20height='11.2308'%20fill='%23333543'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M95.509%20252.692H22.4727V348.154H95.509V348.154H22.4727C22.4727%20345.828%2026.8104%20344.706%2031.8923%20343.392L31.8924%20343.392C38.6418%20341.647%2046.7039%20339.562%2047.6604%20333.866C43.039%20330.813%2041.2755%20326.206%2039.4712%20321.494L39.4711%20321.493C39.1207%20320.578%2038.7687%20319.659%2038.394%20318.746C33.8596%20323.342%2031.8376%20302.294%2035.9034%20302.294C28.1741%20280.532%2049.3366%20262.676%2068.8904%20274.95C80.3582%20272.367%2086.695%20286.66%2079.8636%20302.294C82.6818%20300.883%2083.2207%20308.405%2082.6818%20313.081C82.6818%20314.282%2081.4847%20322.692%2078.4594%20319.434C78.0921%20320.32%2077.747%20321.212%2077.4035%20322.1L77.4034%20322.1L77.4033%20322.1C75.5893%20326.79%2073.8173%20331.371%2069.0225%20334.328C70.3998%20339.677%2078.6382%20341.695%2085.5662%20343.392C90.9184%20344.703%2095.4886%20345.823%2095.509%20348.138V252.692Z'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-mrz-front-icon_5ot88_47:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3crect%20x='112.5'%20y='25.377'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='50.7539'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='112.5'%20y='76.1309'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='138.164'%20width='225'%20height='11.2787'%20fill='%23333543'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M101.25%2025.377H22.5V124.065C22.5003%20121.661%2027.1772%20120.502%2032.6565%20119.143C39.9339%20117.339%2048.6268%20115.184%2049.6581%20109.295C44.6752%20106.139%2042.7737%20101.377%2040.8282%2096.5044C40.4504%2095.558%2040.0708%2094.6075%2039.6668%2093.6639C34.7777%2098.4148%2032.5974%2076.6553%2036.9813%2076.6553C28.6474%2054.1582%2051.4654%2035.698%2072.5489%2048.3877C84.9139%2045.717%2091.7464%2060.4934%2084.3805%2076.6557C87.4192%2075.1971%2088.0003%2082.9735%2087.4192%2087.8076C87.4192%2089.0495%2086.1284%2097.7429%2082.8665%2094.3755C82.4704%2095.2911%2082.0983%2096.2133%2081.7279%2097.1316C79.7719%20101.98%2077.8612%20106.715%2072.6914%20109.773C74.1764%20115.302%2083.0593%20117.388%2090.5293%20119.143C96.3129%20120.502%20101.25%20121.661%20101.25%20124.065V25.377Z'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-back-icon_5ot88_51:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3crect%20x='22.5'%20y='22.5576'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='171.562'%20y='22.5576'%20width='75.9375'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='154.688'%20y='138.164'%20width='92.8125'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='47.9346'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='47.9346'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='73.3115'%20width='73.125'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='112.787'%20width='50.625'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='138.164'%20width='87.1875'%20height='11.2787'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-mrz-back-icon_5ot88_55:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40625'%20y='-1.40625'%20width='267.188'%20height='169.188'%20rx='12.6562'%20transform='matrix(1%200%200%20-1%200%20169.188)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.8125'/%3e%3crect%20x='22.5'%20y='124.065'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='107.147'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='25.377'%20width='104.062'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='50.7539'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='50.7539'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='140.983'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3c/svg%3e\")}._id-barcode-back-icon_5ot88_59:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40625'%20y='-1.40625'%20width='267.188'%20height='169.188'%20rx='12.6562'%20transform='matrix(1%200%200%20-1%200%20169.188)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.8125'/%3e%3crect%20x='22.5'%20y='22.5576'%20width='225'%20height='33.8361'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='112.787'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='112.787'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='138.164'%20width='87.1875'%20height='11.2787'%20fill='%23333543'/%3e%3cg%20clip-path='url(%23clip0_10772_56590)'%3e%3cpath%20d='M247.5%2022.5576H22.5V64.8527H247.5V22.5576Z'%20fill='%23D6D6D6'/%3e%3cpath%20d='M37.4999%2022.5576H22.5V27.257H37.4999V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2022.5576H39.375V27.257H41.2501V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2022.5576H43.1328V27.257H45.0079V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2022.5576H46.8672V27.257H48.7423V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7577%2022.5576H54.3828V27.257H63.7577V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4962%2022.5576H65.6211V27.257H67.4962V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M71.254%2022.5576H69.3789V27.257H71.254V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4999%2022.5576H73.125V27.257H82.4999V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9921%2022.5576H86.2422V27.257H89.9921V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M93.754%2022.5576H91.8789V27.257H93.754V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3749%2022.5576H95.625V27.257H99.3749V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M110.621%2022.5576H104.996V27.257H110.621V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2022.5576H118.125V27.257H121.875V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M133.125%2022.5576H129.375V27.257H133.125V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M136.875%2022.5576H135V27.257H136.875V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M140.633%2022.5576H138.758V27.257H140.633V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M151.871%2022.5576H149.996V27.257H151.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M159.379%2022.5576H153.754V27.257H159.379V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M172.508%2022.5576H166.883V27.257H172.508V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M176.25%2022.5576H174.375V27.257H176.25V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M191.254%2022.5576H181.879V27.257H191.254V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M195.004%2022.5576H193.129V27.257H195.004V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M198.75%2022.5576H196.875V27.257H198.75V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M209.996%2022.5576H200.621V27.257H209.996V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2022.5576H213.75V27.257H226.875V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2022.5576H228.746V27.257H230.621V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2022.5576H236.25V27.257H238.125V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2022.5576H240.008V27.257H241.883V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2022.5576H245.621V27.257H247.496V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2027.2578H22.5V31.9572H37.4999V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2027.2578H39.375V31.9572H41.2501V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2027.2578H43.1328V31.9572H45.0079V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2027.2578H46.8672V31.9572H48.7423V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8829%2027.2578H54.3828V31.9572H61.8829V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M65.629%2027.2578H63.7539V31.9572H65.629V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3751%2027.2578H67.5V31.9572H69.3751V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M78.7462%2027.2578H76.8711V31.9572H78.7462V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M91.8672%2027.2578H86.2422V31.9572H91.8672V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M99.379%2027.2578H97.5039V31.9572H99.379V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M105%2027.2578H101.25V31.9572H105V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2027.2578H110.633V31.9572H112.508V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2027.2578H118.125V31.9572H121.875V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M133.129%2027.2578H125.629V31.9572H133.129V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M136.875%2027.2578H135V31.9572H136.875V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M148.133%2027.2578H138.758V31.9572H148.133V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M155.621%2027.2578H149.996V31.9572H155.621V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M163.121%2027.2578H161.246V31.9572H163.121V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M174.375%2027.2578H168.75V31.9572H174.375V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M180.004%2027.2578H176.254V31.9572H180.004V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M189.379%2027.2578H181.879V31.9572H189.379V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M193.125%2027.2578H191.25V31.9572H193.125V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M196.883%2027.2578H195.008V31.9572H196.883V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M202.496%2027.2578H200.621V31.9572H202.496V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2027.2578H213.75V31.9572H226.875V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2027.2578H228.746V31.9572H230.621V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2027.2578H236.25V31.9572H238.125V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2027.2578H240.008V31.9572H241.883V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2027.2578H245.621V31.9572H247.496V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2031.9561H22.5V36.6555H37.4999V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2031.9561H39.375V36.6555H41.2501V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2031.9561H43.1328V36.6555H45.0079V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2031.9561H46.8672V36.6555H48.7423V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M56.2579%2031.9561H54.3828V36.6555H56.2579V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M59.9923%2031.9561H58.1172V36.6555H59.9923V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7501%2031.9561H61.875V36.6555H63.7501V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M75.0001%2031.9561H67.5V36.6555H75.0001V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9921%2031.9561H86.2422V36.6555H89.9921V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M103.129%2031.9561H91.8789V36.6555H103.129V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2031.9561H104.996V36.6555H108.746V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2031.9561H110.633V36.6555H112.508V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M120%2031.9561H118.125V36.6555H120V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2031.9561H121.871V36.6555H123.746V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M136.871%2031.9561H133.121V36.6555H136.871V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M148.133%2031.9561H138.758V36.6555H148.133V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M151.871%2031.9561H149.996V36.6555H151.871V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M161.258%2031.9561H155.633V36.6555H161.258V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M172.492%2031.9561H170.617V36.6555H172.492V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M178.125%2031.9561H174.375V36.6555H178.125V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M183.754%2031.9561H181.879V36.6555H183.754V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M187.5%2031.9561H185.625V36.6555H187.5V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M191.246%2031.9561H189.371V36.6555H191.246V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M206.242%2031.9561H198.742V36.6555H206.242V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2031.9561H213.75V36.6555H226.875V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2031.9561H228.746V36.6555H230.621V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2031.9561H236.25V36.6555H238.125V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2031.9561H240.008V36.6555H241.883V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2031.9561H245.621V36.6555H247.496V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2036.6562H22.5V41.3557H37.4999V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2036.6562H39.375V41.3557H41.2501V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2036.6562H43.1328V41.3557H45.0079V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2036.6562H46.8672V41.3557H48.7423V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1327%2036.6562H54.3828V41.3557H58.1327V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8712%2036.6562H59.9961V41.3557H61.8712V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M71.254%2036.6562H63.7539V41.3557H71.254V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3671%2036.6562H74.9922V41.3557H84.3671V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M95.6171%2036.6562H86.2422V41.3557H95.6171V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M99.379%2036.6562H97.5039V41.3557H99.379V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M103.125%2036.6562H101.25V41.3557H103.125V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M116.25%2036.6562H106.875V41.3557H116.25V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M123.75%2036.6562H118.125V41.3557H123.75V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M131.254%2036.6562H125.629V41.3557H131.254V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M134.996%2036.6562H133.121V41.3557H134.996V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M140.633%2036.6562H138.758V41.3557H140.633V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2036.6562H149.996V41.3557H153.746V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M157.508%2036.6562H155.633V41.3557H157.508V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M168.758%2036.6562H166.883V41.3557H168.758V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M180.004%2036.6562H176.254V41.3557H180.004V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M185.629%2036.6562H181.879V41.3557H185.629V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M189.367%2036.6562H187.492V41.3557H189.367V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M198.75%2036.6562H191.25V41.3557H198.75V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M211.875%2036.6562H202.5V41.3557H211.875V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2036.6562H213.75V41.3557H226.875V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2036.6562H228.746V41.3557H230.621V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2036.6562H236.25V41.3557H238.125V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2036.6562H240.008V41.3557H241.883V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2036.6562H245.621V41.3557H247.496V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2041.3564H22.5V46.0559H37.4999V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2041.3564H39.375V46.0559H41.2501V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2041.3564H43.1328V46.0559H45.0079V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2041.3564H46.8672V46.0559H48.7423V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1327%2041.3564H54.3828V46.0559H58.1327V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8712%2041.3564H59.9961V46.0559H61.8712V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3789%2041.3564H63.7539V46.0559H69.3789V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M80.6251%2041.3564H78.75V46.0559H80.6251V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4922%2041.3564H86.2422V46.0559H97.4922V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M105.008%2041.3564H99.3828V46.0559H105.008V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M108.75%2041.3564H106.875V46.0559H108.75V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2041.3564H110.633V46.0559H112.508V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M123.75%2041.3564H118.125V46.0559H123.75V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M127.504%2041.3564H125.629V46.0559H127.504V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M134.992%2041.3564H131.242V46.0559H134.992V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M138.754%2041.3564H136.879V46.0559H138.754V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2041.3564H149.996V46.0559H153.746V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M166.879%2041.3564H165.004V46.0559H166.879V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M176.242%2041.3564H170.617V46.0559H176.242V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M179.996%2041.3564H178.121V46.0559H179.996V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M189.379%2041.3564H181.879V46.0559H189.379V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M193.125%2041.3564H191.25V46.0559H193.125V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M200.633%2041.3564H195.008V46.0559H200.633V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M210.004%2041.3564H204.379V46.0559H210.004V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2041.3564H213.75V46.0559H226.875V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2041.3564H228.746V46.0559H230.621V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2041.3564H236.25V46.0559H238.125V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2041.3564H240.008V46.0559H241.883V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2041.3564H245.621V46.0559H247.496V41.3564Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2046.0537H22.5V50.7531H37.4999V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2046.0537H39.375V50.7531H41.2501V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2046.0537H43.1328V50.7531H45.0079V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2046.0537H46.8672V50.7531H48.7423V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7577%2046.0537H54.3828V50.7531H63.7577V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4962%2046.0537H65.6211V50.7531H67.4962V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M76.879%2046.0537H69.3789V50.7531H76.879V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4999%2046.0537H78.75V50.7531H82.4999V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M93.7423%2046.0537H86.2422V50.7531H93.7423V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M97.5001%2046.0537H95.625V50.7531H97.5001V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M108.75%2046.0537H101.25V50.7531H108.75V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M112.508%2046.0537H110.633V50.7531H112.508V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M120%2046.0537H118.125V50.7531H120V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M127.496%2046.0537H121.871V50.7531H127.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M135%2046.0537H129.375V50.7531H135V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M148.125%2046.0537H140.625V50.7531H148.125V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2046.0537H149.996V50.7531H153.746V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M168.742%2046.0537H159.367V50.7531H168.742V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M174.371%2046.0537H172.496V50.7531H174.371V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M179.996%2046.0537H178.121V50.7531H179.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M189.379%2046.0537H181.879V50.7531H189.379V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M193.125%2046.0537H191.25V50.7531H193.125V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M204.383%2046.0537H195.008V50.7531H204.383V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M209.996%2046.0537H206.246V50.7531H209.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2046.0537H213.75V50.7531H226.875V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2046.0537H228.746V50.7531H230.621V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2046.0537H236.25V50.7531H238.125V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2046.0537H240.008V50.7531H241.883V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2046.0537H245.621V50.7531H247.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2050.7539H22.5V55.4533H37.4999V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2050.7539H39.375V55.4533H41.2501V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2050.7539H43.1328V55.4533H45.0079V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2050.7539H46.8672V55.4533H48.7423V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M60.0078%2050.7539H54.3828V55.4533H60.0078V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7501%2050.7539H61.875V55.4533H63.7501V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M73.125%2050.7539H67.5V55.4533H73.125V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3671%2050.7539H74.9922V55.4533H84.3671V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1173%2050.7539H86.2422V55.4533H88.1173V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3749%2050.7539H95.625V55.4533H99.3749V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2050.7539H104.996V55.4533H108.746V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M114.375%2050.7539H112.5V55.4533H114.375V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2050.7539H118.125V55.4533H121.875V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M129.379%2050.7539H125.629V55.4533H129.379V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M140.629%2050.7539H136.879V55.4533H140.629V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M148.121%2050.7539H144.371V55.4533H148.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M151.871%2050.7539H149.996V55.4533H151.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M163.121%2050.7539H161.246V55.4533H163.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M172.5%2050.7539H168.75V55.4533H172.5V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M178.125%2050.7539H174.375V55.4533H178.125V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M187.504%2050.7539H181.879V55.4533H187.504V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M191.246%2050.7539H189.371V55.4533H191.246V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M200.633%2050.7539H195.008V55.4533H200.633V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M211.875%2050.7539H202.5V55.4533H211.875V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2050.7539H213.75V55.4533H226.875V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2050.7539H228.746V55.4533H230.621V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2050.7539H236.25V55.4533H238.125V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2050.7539H240.008V55.4533H241.883V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2050.7539H245.621V55.4533H247.496V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2055.4551H22.5V60.1545H37.4999V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2055.4551H39.375V60.1545H41.2501V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2055.4551H43.1328V60.1545H45.0079V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2055.4551H46.8672V60.1545H48.7423V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6328%2055.4551H54.3828V60.1545H65.6328V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3751%2055.4551H67.5V60.1545H69.3751V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M75.0001%2055.4551H73.125V60.1545H75.0001V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4961%2055.4551H76.8711V60.1545H82.4961V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1173%2055.4551H86.2422V60.1545H88.1173V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M97.5001%2055.4551H90V60.1545H97.5001V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M103.133%2055.4551H99.3828V60.1545H103.133V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M114.371%2055.4551H104.996V60.1545H114.371V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M120%2055.4551H118.125V60.1545H120V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2055.4551H121.871V60.1545H123.746V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M133.129%2055.4551H125.629V60.1545H133.129V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M142.5%2055.4551H140.625V60.1545H142.5V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M157.496%2055.4551H149.996V60.1545H157.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M164.996%2055.4551H161.246V60.1545H164.996V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M172.5%2055.4551H168.75V60.1545H172.5V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M176.25%2055.4551H174.375V60.1545H176.25V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M183.754%2055.4551H181.879V60.1545H183.754V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M187.5%2055.4551H185.625V60.1545H187.5V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M200.621%2055.4551H189.371V60.1545H200.621V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M208.125%2055.4551H202.5V60.1545H208.125V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2055.4551H213.75V60.1545H226.875V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2055.4551H228.746V60.1545H230.621V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2055.4551H236.25V60.1545H238.125V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2055.4551H240.008V60.1545H241.883V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2055.4551H245.621V60.1545H247.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M37.4999%2060.1523H22.5V64.8518H37.4999V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2501%2060.1523H39.375V64.8518H41.2501V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M45.0079%2060.1523H43.1328V64.8518H45.0079V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7423%2060.1523H46.8672V64.8518H48.7423V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6328%2060.1523H54.3828V64.8518H65.6328V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3751%2060.1523H67.5V64.8518H69.3751V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M76.8749%2060.1523H73.125V64.8518H76.8749V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M82.504%2060.1523H80.6289V64.8518H82.504V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1173%2060.1523H86.2422V64.8518H88.1173V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3711%2060.1523H93.7461V64.8518H99.3711V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M103.125%2060.1523H101.25V64.8518H103.125V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2060.1523H108.754V64.8518H112.504V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M121.875%2060.1523H118.125V64.8518H121.875V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M131.258%2060.1523H127.508V64.8518H131.258V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M138.754%2060.1523H136.879V64.8518H138.754V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M148.125%2060.1523H140.625V64.8518H148.125V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M153.746%2060.1523H149.996V64.8518H153.746V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M159.383%2060.1523H155.633V64.8518H159.383V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M163.121%2060.1523H161.246V64.8518H163.121V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M172.504%2060.1523H165.004V64.8518H172.504V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M191.254%2060.1523H181.879V64.8518H191.254V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M195.004%2060.1523H193.129V64.8518H195.004V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M204.367%2060.1523H198.742V64.8518H204.367V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M208.121%2060.1523H206.246V64.8518H208.121V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M226.875%2060.1523H213.75V64.8518H226.875V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M230.621%2060.1523H228.746V64.8518H230.621V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M238.125%2060.1523H236.25V64.8518H238.125V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M241.883%2060.1523H240.008V64.8518H241.883V60.1523Z'%20fill='%23272833'/%3e%3cpath%20d='M247.496%2060.1523H245.621V64.8518H247.496V60.1523Z'%20fill='%23272833'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_10772_56590'%3e%3crect%20width='225'%20height='42.2951'%20fill='white'%20transform='translate(22.5%2022.5576)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\")}._id-mrz-barcode-back-icon_5ot88_63:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='270'%20height='172'%20viewBox='0%200%20270%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.40984'%20y='-1.40984'%20width='267.18'%20height='169.18'%20rx='12.6885'%20transform='matrix(1%200%200%20-1%200%20169.18)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.81967'/%3e%3crect%20x='22.5'%20y='124.065'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='107.147'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='140.983'%20width='225'%20height='8.45902'%20fill='%23333543'/%3e%3crect%20x='22.5'%20y='76.1309'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3crect%20x='95.625'%20y='76.1309'%20width='61.875'%20height='11.2787'%20fill='%23333543'/%3e%3cg%20clip-path='url(%23clip0_10772_56870)'%3e%3cpath%20d='M247.496%2022.5576H22.4961V64.8527H247.496V22.5576Z'%20fill='%23D6D6D6'/%3e%3cpath%20d='M37.496%2022.5576H22.4961V27.257H37.496V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2022.5576H39.3711V27.257H41.2462V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2022.5576H43.1289V27.257H45.004V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2022.5576H46.8633V27.257H48.7384V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7538%2022.5576H54.3789V27.257H63.7538V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4923%2022.5576H65.6172V27.257H67.4923V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M71.2501%2022.5576H69.375V27.257H71.2501V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M82.496%2022.5576H73.1211V27.257H82.496V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9882%2022.5576H86.2383V27.257H89.9882V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M93.7501%2022.5576H91.875V27.257H93.7501V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M99.371%2022.5576H95.6211V27.257H99.371V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M110.617%2022.5576H104.992V27.257H110.617V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2022.5576H118.121V27.257H121.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M133.121%2022.5576H129.371V27.257H133.121V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M136.871%2022.5576H134.996V27.257H136.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M140.629%2022.5576H138.754V27.257H140.629V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M151.867%2022.5576H149.992V27.257H151.867V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M159.375%2022.5576H153.75V27.257H159.375V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M172.504%2022.5576H166.879V27.257H172.504V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M176.246%2022.5576H174.371V27.257H176.246V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M191.25%2022.5576H181.875V27.257H191.25V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M195%2022.5576H193.125V27.257H195V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M198.746%2022.5576H196.871V27.257H198.746V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M209.992%2022.5576H200.617V27.257H209.992V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2022.5576H213.746V27.257H226.871V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2022.5576H228.742V27.257H230.617V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2022.5576H236.246V27.257H238.121V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2022.5576H240.004V27.257H241.879V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2022.5576H245.617V27.257H247.492V22.5576Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2027.2578H22.4961V31.9572H37.496V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2027.2578H39.3711V31.9572H41.2462V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2027.2578H43.1289V31.9572H45.004V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2027.2578H46.8633V31.9572H48.7384V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M61.879%2027.2578H54.3789V31.9572H61.879V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6251%2027.2578H63.75V31.9572H65.6251V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3712%2027.2578H67.4961V31.9572H69.3712V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M78.7423%2027.2578H76.8672V31.9572H78.7423V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M91.8633%2027.2578H86.2383V31.9572H91.8633V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3751%2027.2578H97.5V31.9572H99.3751V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M104.996%2027.2578H101.246V31.9572H104.996V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2027.2578H110.629V31.9572H112.504V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2027.2578H118.121V31.9572H121.871V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M133.125%2027.2578H125.625V31.9572H133.125V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M136.871%2027.2578H134.996V31.9572H136.871V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M148.129%2027.2578H138.754V31.9572H148.129V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M155.617%2027.2578H149.992V31.9572H155.617V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M163.117%2027.2578H161.242V31.9572H163.117V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M174.371%2027.2578H168.746V31.9572H174.371V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M180%2027.2578H176.25V31.9572H180V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M189.375%2027.2578H181.875V31.9572H189.375V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M193.121%2027.2578H191.246V31.9572H193.121V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M196.879%2027.2578H195.004V31.9572H196.879V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M202.492%2027.2578H200.617V31.9572H202.492V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2027.2578H213.746V31.9572H226.871V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2027.2578H228.742V31.9572H230.617V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2027.2578H236.246V31.9572H238.121V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2027.2578H240.004V31.9572H241.879V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2027.2578H245.617V31.9572H247.492V27.2578Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2031.9561H22.4961V36.6555H37.496V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2031.9561H39.3711V36.6555H41.2462V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2031.9561H43.1289V36.6555H45.004V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2031.9561H46.8633V36.6555H48.7384V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M56.254%2031.9561H54.3789V36.6555H56.254V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M59.9884%2031.9561H58.1133V36.6555H59.9884V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7462%2031.9561H61.8711V36.6555H63.7462V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M74.9962%2031.9561H67.4961V36.6555H74.9962V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M89.9882%2031.9561H86.2383V36.6555H89.9882V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M103.125%2031.9561H91.875V36.6555H103.125V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M108.742%2031.9561H104.992V36.6555H108.742V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2031.9561H110.629V36.6555H112.504V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M119.996%2031.9561H118.121V36.6555H119.996V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M123.742%2031.9561H121.867V36.6555H123.742V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M136.867%2031.9561H133.117V36.6555H136.867V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M148.129%2031.9561H138.754V36.6555H148.129V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M151.867%2031.9561H149.992V36.6555H151.867V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M161.254%2031.9561H155.629V36.6555H161.254V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M172.488%2031.9561H170.613V36.6555H172.488V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M178.121%2031.9561H174.371V36.6555H178.121V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M183.75%2031.9561H181.875V36.6555H183.75V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M187.496%2031.9561H185.621V36.6555H187.496V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M191.242%2031.9561H189.367V36.6555H191.242V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M206.238%2031.9561H198.738V36.6555H206.238V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2031.9561H213.746V36.6555H226.871V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2031.9561H228.742V36.6555H230.617V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2031.9561H236.246V36.6555H238.121V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2031.9561H240.004V36.6555H241.879V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2031.9561H245.617V36.6555H247.492V31.9561Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2036.6562H22.4961V41.3557H37.496V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2036.6562H39.3711V41.3557H41.2462V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2036.6562H43.1289V41.3557H45.004V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2036.6562H46.8633V41.3557H48.7384V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1288%2036.6562H54.3789V41.3557H58.1288V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8673%2036.6562H59.9922V41.3557H61.8673V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M71.2501%2036.6562H63.75V41.3557H71.2501V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3632%2036.6562H74.9883V41.3557H84.3632V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M95.6132%2036.6562H86.2383V41.3557H95.6132V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3751%2036.6562H97.5V41.3557H99.3751V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M103.121%2036.6562H101.246V41.3557H103.121V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M116.246%2036.6562H106.871V41.3557H116.246V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2036.6562H118.121V41.3557H123.746V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M131.25%2036.6562H125.625V41.3557H131.25V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M134.992%2036.6562H133.117V41.3557H134.992V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M140.629%2036.6562H138.754V41.3557H140.629V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2036.6562H149.992V41.3557H153.742V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M157.504%2036.6562H155.629V41.3557H157.504V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M168.754%2036.6562H166.879V41.3557H168.754V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M180%2036.6562H176.25V41.3557H180V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M185.625%2036.6562H181.875V41.3557H185.625V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M189.363%2036.6562H187.488V41.3557H189.363V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M198.746%2036.6562H191.246V41.3557H198.746V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M211.871%2036.6562H202.496V41.3557H211.871V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2036.6562H213.746V41.3557H226.871V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2036.6562H228.742V41.3557H230.617V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2036.6562H236.246V41.3557H238.121V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2036.6562H240.004V41.3557H241.879V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2036.6562H245.617V41.3557H247.492V36.6562Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2041.3555H22.4961V46.0549H37.496V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2041.3555H39.3711V46.0549H41.2462V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2041.3555H43.1289V46.0549H45.004V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2041.3555H46.8633V46.0549H48.7384V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M58.1288%2041.3555H54.3789V46.0549H58.1288V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M61.8673%2041.3555H59.9922V46.0549H61.8673V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M69.375%2041.3555H63.75V46.0549H69.375V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M80.6212%2041.3555H78.7461V46.0549H80.6212V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4883%2041.3555H86.2383V46.0549H97.4883V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M105.004%2041.3555H99.3789V46.0549H105.004V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2041.3555H106.871V46.0549H108.746V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2041.3555H110.629V46.0549H112.504V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M123.746%2041.3555H118.121V46.0549H123.746V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M127.5%2041.3555H125.625V46.0549H127.5V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M134.988%2041.3555H131.238V46.0549H134.988V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M138.75%2041.3555H136.875V46.0549H138.75V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2041.3555H149.992V46.0549H153.742V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M166.875%2041.3555H165V46.0549H166.875V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M176.238%2041.3555H170.613V46.0549H176.238V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M179.992%2041.3555H178.117V46.0549H179.992V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M189.375%2041.3555H181.875V46.0549H189.375V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M193.121%2041.3555H191.246V46.0549H193.121V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M200.629%2041.3555H195.004V46.0549H200.629V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M210%2041.3555H204.375V46.0549H210V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2041.3555H213.746V46.0549H226.871V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2041.3555H228.742V46.0549H230.617V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2041.3555H236.246V46.0549H238.121V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2041.3555H240.004V46.0549H241.879V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2041.3555H245.617V46.0549H247.492V41.3555Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2046.0537H22.4961V50.7531H37.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2046.0537H39.3711V50.7531H41.2462V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2046.0537H43.1289V50.7531H45.004V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2046.0537H46.8633V50.7531H48.7384V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7538%2046.0537H54.3789V50.7531H63.7538V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M67.4923%2046.0537H65.6172V50.7531H67.4923V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M76.8751%2046.0537H69.375V50.7531H76.8751V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M82.496%2046.0537H78.7461V50.7531H82.496V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M93.7384%2046.0537H86.2383V50.7531H93.7384V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4962%2046.0537H95.6211V50.7531H97.4962V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M108.746%2046.0537H101.246V50.7531H108.746V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M112.504%2046.0537H110.629V50.7531H112.504V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M119.996%2046.0537H118.121V50.7531H119.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M127.492%2046.0537H121.867V50.7531H127.492V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M134.996%2046.0537H129.371V50.7531H134.996V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M148.121%2046.0537H140.621V50.7531H148.121V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2046.0537H149.992V50.7531H153.742V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M168.738%2046.0537H159.363V50.7531H168.738V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M174.367%2046.0537H172.492V50.7531H174.367V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M179.992%2046.0537H178.117V50.7531H179.992V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M189.375%2046.0537H181.875V50.7531H189.375V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M193.121%2046.0537H191.246V50.7531H193.121V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M204.379%2046.0537H195.004V50.7531H204.379V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M209.992%2046.0537H206.242V50.7531H209.992V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2046.0537H213.746V50.7531H226.871V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2046.0537H228.742V50.7531H230.617V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2046.0537H236.246V50.7531H238.121V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2046.0537H240.004V50.7531H241.879V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2046.0537H245.617V50.7531H247.492V46.0537Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2050.7539H22.4961V55.4533H37.496V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2050.7539H39.3711V55.4533H41.2462V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2050.7539H43.1289V55.4533H45.004V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2050.7539H46.8633V55.4533H48.7384V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M60.0039%2050.7539H54.3789V55.4533H60.0039V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M63.7462%2050.7539H61.8711V55.4533H63.7462V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M73.1211%2050.7539H67.4961V55.4533H73.1211V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M84.3632%2050.7539H74.9883V55.4533H84.3632V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1134%2050.7539H86.2383V55.4533H88.1134V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M99.371%2050.7539H95.6211V55.4533H99.371V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M108.742%2050.7539H104.992V55.4533H108.742V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M114.371%2050.7539H112.496V55.4533H114.371V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2050.7539H118.121V55.4533H121.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M129.375%2050.7539H125.625V55.4533H129.375V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M140.625%2050.7539H136.875V55.4533H140.625V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M148.117%2050.7539H144.367V55.4533H148.117V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M151.867%2050.7539H149.992V55.4533H151.867V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M163.117%2050.7539H161.242V55.4533H163.117V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M172.496%2050.7539H168.746V55.4533H172.496V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M178.121%2050.7539H174.371V55.4533H178.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M187.5%2050.7539H181.875V55.4533H187.5V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M191.242%2050.7539H189.367V55.4533H191.242V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M200.629%2050.7539H195.004V55.4533H200.629V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M211.871%2050.7539H202.496V55.4533H211.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2050.7539H213.746V55.4533H226.871V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2050.7539H228.742V55.4533H230.617V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2050.7539H236.246V55.4533H238.121V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2050.7539H240.004V55.4533H241.879V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2050.7539H245.617V55.4533H247.492V50.7539Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2055.4551H22.4961V60.1545H37.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2055.4551H39.3711V60.1545H41.2462V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2055.4551H43.1289V60.1545H45.004V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2055.4551H46.8633V60.1545H48.7384V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6289%2055.4551H54.3789V60.1545H65.6289V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3712%2055.4551H67.4961V60.1545H69.3712V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M74.9962%2055.4551H73.1211V60.1545H74.9962V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M82.4922%2055.4551H76.8672V60.1545H82.4922V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1134%2055.4551H86.2383V60.1545H88.1134V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M97.4962%2055.4551H89.9961V60.1545H97.4962V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M103.129%2055.4551H99.3789V60.1545H103.129V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M114.367%2055.4551H104.992V60.1545H114.367V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M119.996%2055.4551H118.121V60.1545H119.996V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M123.742%2055.4551H121.867V60.1545H123.742V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M133.125%2055.4551H125.625V60.1545H133.125V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M142.496%2055.4551H140.621V60.1545H142.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M157.492%2055.4551H149.992V60.1545H157.492V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M164.992%2055.4551H161.242V60.1545H164.992V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M172.496%2055.4551H168.746V60.1545H172.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M176.246%2055.4551H174.371V60.1545H176.246V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M183.75%2055.4551H181.875V60.1545H183.75V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M187.496%2055.4551H185.621V60.1545H187.496V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M200.617%2055.4551H189.367V60.1545H200.617V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M208.121%2055.4551H202.496V60.1545H208.121V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2055.4551H213.746V60.1545H226.871V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2055.4551H228.742V60.1545H230.617V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2055.4551H236.246V60.1545H238.121V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2055.4551H240.004V60.1545H241.879V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2055.4551H245.617V60.1545H247.492V55.4551Z'%20fill='%23272833'/%3e%3cpath%20d='M37.496%2060.1514H22.4961V64.8508H37.496V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M41.2462%2060.1514H39.3711V64.8508H41.2462V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M45.004%2060.1514H43.1289V64.8508H45.004V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M48.7384%2060.1514H46.8633V64.8508H48.7384V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M65.6289%2060.1514H54.3789V64.8508H65.6289V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M69.3712%2060.1514H67.4961V64.8508H69.3712V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M76.871%2060.1514H73.1211V64.8508H76.871V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M82.5001%2060.1514H80.625V64.8508H82.5001V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M88.1134%2060.1514H86.2383V64.8508H88.1134V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M99.3672%2060.1514H93.7422V64.8508H99.3672V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M103.121%2060.1514H101.246V64.8508H103.121V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M112.5%2060.1514H108.75V64.8508H112.5V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M121.871%2060.1514H118.121V64.8508H121.871V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M131.254%2060.1514H127.504V64.8508H131.254V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M138.75%2060.1514H136.875V64.8508H138.75V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M148.121%2060.1514H140.621V64.8508H148.121V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M153.742%2060.1514H149.992V64.8508H153.742V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M159.379%2060.1514H155.629V64.8508H159.379V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M163.117%2060.1514H161.242V64.8508H163.117V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M172.5%2060.1514H165V64.8508H172.5V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M191.25%2060.1514H181.875V64.8508H191.25V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M195%2060.1514H193.125V64.8508H195V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M204.363%2060.1514H198.738V64.8508H204.363V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M208.117%2060.1514H206.242V64.8508H208.117V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M226.871%2060.1514H213.746V64.8508H226.871V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M230.617%2060.1514H228.742V64.8508H230.617V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M238.121%2060.1514H236.246V64.8508H238.121V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M241.879%2060.1514H240.004V64.8508H241.879V60.1514Z'%20fill='%23272833'/%3e%3cpath%20d='M247.492%2060.1514H245.617V64.8508H247.492V60.1514Z'%20fill='%23272833'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_10772_56870'%3e%3crect%20width='225'%20height='42.2951'%20fill='white'%20transform='translate(22.5%2022.5576)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e\")}._bank-card-front-icon_5ot88_67:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='280'%20height='172'%20viewBox='0%200%20280%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.45763'%20y='-1.45763'%20width='277.085'%20height='169.085'%20rx='13.1186'%20transform='matrix(1%200%200%20-1%200%20169.085)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.91525'/%3e%3crect%20x='23.332'%20y='23.3223'%20width='107.917'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='93.332'%20y='142.848'%20width='99.1667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='145.832'%20y='122.44'%20width='37.9167'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='23.332'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='84.582'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='145.832'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='207.082'%20y='99.1182'%20width='46.6667'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='23.332'%20y='142.848'%20width='61.25'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='23.3359'%20y='52.4746'%20width='40.8333'%20height='37.8983'%20rx='5.83051'%20fill='%23333543'/%3e%3crect%20x='23.3359'%20y='58.3047'%20width='40.8333'%20height='1.45763'%20fill='white'/%3e%3crect%20x='23.3359'%20y='67.0508'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='49.5859'%20y='67.0508'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='23.3359'%20y='74.3389'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='49.5859'%20y='74.3389'%20width='14.5833'%20height='1.45763'%20fill='white'/%3e%3crect%20x='44.4805'%20y='52.4746'%20width='5.83051'%20height='1.45833'%20transform='rotate(90%2044.4805%2052.4746)'%20fill='white'/%3e%3crect%20x='37.918'%20y='58.3047'%20width='26.2373'%20height='1.45833'%20transform='rotate(90%2037.918%2058.3047)'%20fill='white'/%3e%3crect%20x='51.043'%20y='67.0508'%20width='17.4915'%20height='1.45833'%20transform='rotate(90%2051.043%2067.0508)'%20fill='white'/%3e%3crect%20x='44.4805'%20y='84.542'%20width='5.83051'%20height='1.45833'%20transform='rotate(90%2044.4805%2084.542)'%20fill='white'/%3e%3crect%20x='23.3359'%20y='83.085'%20width='40.8333'%20height='1.45763'%20fill='white'/%3e%3ccircle%20cx='224.476'%20cy='137.017'%20r='17.4915'%20fill='%23333543'/%3e%3ccircle%20cx='247.796'%20cy='137.017'%20r='17.4915'%20fill='%23333543'/%3e%3c/svg%3e\")}._bank-card-back-icon_5ot88_71:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='280'%20height='172'%20viewBox='0%200%20280%20172'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='1.45833'%20y='-1.45833'%20width='277.083'%20height='169.083'%20rx='13.125'%20transform='matrix(1%200%200%20-1%200%20169.083)'%20fill='white'%20fill-opacity='0.8'%20stroke='%231B1C23'%20stroke-width='2.91667'/%3e%3crect%20y='14.5762'%20width='280'%20height='40.8136'%20fill='%23333543'/%3e%3crect%20x='23.332'%20y='69.9658'%20width='37.9167'%20height='11.661'%20fill='%23333543'/%3e%3crect%20x='224.582'%20y='119.525'%20width='23.3333'%20height='34.9831'%20fill='%23333543'/%3e%3ccircle%20cx='224.582'%20cy='137.083'%20r='17.5'%20fill='%23333543'/%3e%3ccircle%20cx='247.918'%20cy='137.083'%20r='17.5'%20fill='%23333543'/%3e%3c/svg%3e\")}._document-front-icon_5ot88_75:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='920'%20height='640'%20viewBox='0%200%20920%20640'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M520%20200H800V240H520V200Z'%20fill='white'/%3e%3cpath%20d='M800%20300H520V340H800V300Z'%20fill='white'/%3e%3cpath%20d='M520%20400H800V440H520V400Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M274.943%20123.429L274.933%20123.432C266.551%20126.295%20258.863%20130.466%20251.927%20135.343C243.39%20140.807%20235.349%20147.484%20228.244%20155.117C216.999%20166.723%20206.985%20181.73%20202.638%20200.462C201.732%20203.954%20201.031%20207.508%20200.554%20211.114C198.857%20223.937%20199.991%20237.409%20204.799%20251.055C201.906%20250.776%20199.719%20251.697%20198.089%20253.419C191.062%20260.842%20194.356%20283.152%20195.842%20288.454C202.652%20312.775%20208.999%20319.597%20213.796%20319.988C216.486%20337.575%20230.545%20358.063%20243.587%20375.139C243.587%20405.888%20203.816%20413.339%20170.442%20419.591C162.723%20421.037%20155.346%20422.419%20148.883%20424.01C114.629%20432.436%20110.268%20472.281%20110.168%20504.349C110.141%20513.052%20117.321%20520%20126.023%20520H473.977C482.679%20520%20489.859%20513.052%20489.839%20504.349C489.769%20472.142%20485.483%20432.464%20451.117%20424.01C445.211%20422.556%20438.486%20421.191%20431.39%20419.752L431.388%20419.751C396.76%20412.725%20353.321%20403.912%20353.321%20374.203C353.664%20373.739%20354.01%20373.272%20354.358%20372.804C357.463%20368.617%20360.701%20364.25%20363.825%20359.791C372.128%20347.938%20379.624%20335.429%20381.652%20323.912C382.709%20324.634%20383.91%20325.123%20385.24%20325.123C385.796%20325.123%20386.374%20325.037%20386.972%20324.849C391.593%20323.394%20397.418%20315.772%20403.633%20293.568C410.9%20267.609%20406.477%20258.905%20400.199%20256.714C420.616%20157.928%20373.971%20154.617%20373.971%20154.617C373.971%20154.617%20366.934%20140.939%20348.397%20130.606C337.66%20124.183%20323.287%20119%20304.851%20119C301.953%20119%20298.964%20119.122%20295.865%20119.395C288.479%20119.744%20281.5%20121.188%20274.943%20123.429ZM321.183%20350.388C316.077%20357.278%20313.321%20365.627%20313.321%20374.203C313.321%20396.791%20323.959%20414.183%20337.296%20425.916C349.473%20436.63%20364.134%20443.009%20376.199%20447.154C388.689%20451.445%20401.819%20454.454%20412.943%20456.796C417.197%20457.692%20421.006%20458.464%20424.494%20459.171L424.495%20459.171C431.031%20460.495%20436.443%20461.592%20441.555%20462.85L441.562%20462.852C442.371%20463.051%20442.688%20463.234%20442.718%20463.251L442.719%20463.252L442.723%20463.254C442.746%20463.267%20442.79%20463.292%20442.907%20463.412C443.207%20463.723%20444.371%20465.103%20445.684%20468.766C446.817%20471.928%20447.691%20475.687%20448.338%20480H151.711C152.363%20475.717%20153.239%20471.971%20154.372%20468.81C155.699%20465.109%20156.878%20463.698%20157.192%20463.372L157.194%20463.369C157.207%20463.34%20157.301%20463.132%20158.438%20462.852L158.445%20462.85C163.729%20461.549%20169.527%20460.462%20176.817%20459.096L176.821%20459.095C179.572%20458.579%20182.535%20458.024%20185.763%20457.402C196.469%20455.34%20209.407%20452.649%20221.731%20448.562C233.686%20444.597%20248.469%20438.255%20260.709%20426.995C274.269%20414.522%20283.587%20396.915%20283.587%20375.139C283.587%20366.365%20280.702%20357.834%20275.376%20350.86C269.197%20342.77%20263.625%20334.956%20259.415%20327.693C254.949%20319.99%20253.579%20315.526%20253.336%20313.941C251.698%20303.233%20245.887%20294.002%20237.651%20287.879C236.767%20285.573%20235.697%20282.397%20234.493%20278.142C234.495%20278.139%20234.486%20278.086%20234.467%20277.984L234.452%20277.901C235.091%20277.195%20235.707%20276.464%20236.298%20275.708C244.717%20264.952%20247.065%20250.644%20242.526%20237.762C239.17%20228.237%20239.103%20219.19%20241.356%20210.506C241.443%20210.173%20241.525%20209.839%20241.603%20209.503C243.904%20199.588%20249.376%20190.79%20256.971%20182.951C257.156%20182.76%20257.34%20182.567%20257.521%20182.372C262.328%20177.208%20267.774%20172.691%20273.489%20169.034C273.978%20168.721%20274.46%20168.397%20274.936%20168.063C279.286%20165.004%20283.597%20162.748%20287.809%20161.303L287.883%20161.278C291.162%20160.157%20294.424%20159.508%20297.75%20159.351C298.292%20159.325%20298.833%20159.288%20299.374%20159.241C301.267%20159.074%20303.083%20159%20304.851%20159C315.374%20159%20322.72%20161.857%20327.864%20164.933C328.213%20165.142%20328.565%20165.345%20328.92%20165.543C333.473%20168.081%20336.341%20170.874%20337.886%20172.659C338.515%20173.386%20338.906%20173.925%20339.077%20174.173C344.22%20183.353%20352.722%20190.05%20362.636%20192.979C364.507%20197.532%20368.476%20212.578%20361.027%20248.618C358.865%20259.075%20361.005%20269.523%20366.336%20278.005C366.023%20279.378%20365.623%20280.965%20365.114%20282.784L365.113%20282.786C364.533%20284.861%20363.983%20286.685%20363.469%20288.283C352.34%20293.961%20344.445%20304.559%20342.258%20316.974C342.258%20316.974%20342.208%20317.246%20342.023%20317.818C341.833%20318.406%20341.53%20319.218%20341.065%20320.269C340.111%20322.423%20338.685%20325.105%20336.678%20328.368C332.654%20334.911%20327.684%20341.617%20321.853%20349.483L321.183%20350.388Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M80%200C35.8172%200%200%2035.8172%200%2080V560C0%20604.183%2035.8172%20640%2080%20640H840C884.183%20640%20920%20604.183%20920%20560V80C920%2035.8172%20884.183%200%20840%200H80ZM840%2040H80C57.9086%2040%2040%2057.9086%2040%2080V560C40%20582.091%2057.9086%20600%2080%20600H840C862.091%20600%20880%20582.091%20880%20560V80C880%2057.9086%20862.091%2040%20840%2040Z'%20fill='white'/%3e%3c/svg%3e\")}._document-back-icon_5ot88_79:before{background-image:url(\"data:image/svg+xml,%3csvg%20width='920'%20height='640'%20viewBox='0%200%20920%20640'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M460%20300H140V340H460V300Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M100%200C44.7715%200%200%2044.7715%200%20100V540C0%20595.228%2044.7715%20640%20100%20640H820C875.228%20640%20920%20595.228%20920%20540V100C920%2044.7715%20875.229%200%20820%200H100ZM820%2040H100C66.8629%2040%2040%2066.8629%2040%20100V140H880V100C880%2066.8629%20853.137%2040%20820%2040ZM40%20540V240H880V540C880%20573.137%20853.137%20600%20820%20600H100C66.8629%20600%2040%20573.137%2040%20540Z'%20fill='white'/%3e%3c/svg%3e\")}@keyframes _vertical_5ot88_19{0%{transform:rotateX(0)}25%{transform:rotateX(-30deg)}50%{transform:rotateX(0)}75%{transform:rotateX(30deg)}to{transform:rotateX(0)}}@keyframes _horizontal_5ot88_23{0%{transform:rotateY(0)}25%{transform:rotateY(-30deg)}50%{transform:rotateY(0)}75%{transform:rotateY(30deg)}to{transform:rotateY(0)}}@keyframes _left-bottom-right-top_5ot88_27{0%{transform:rotateX(0)rotateY(0)}25%{transform:rotateX(30deg)rotateY(-30deg)}50%{transform:rotateX(0)rotateY(0)}75%{transform:rotateX(-30deg)rotateY(30deg)}to{transform:rotateX(0)rotateY(0)}}@keyframes _right-bottom-left-top_5ot88_31{0%{transform:rotateX(0)rotateY(0)}25%{transform:rotateX(-30deg)rotateY(-30deg)}50%{transform:rotateX(0)rotateY(0)}75%{transform:rotateX(30deg)rotateY(30deg)}to{transform:rotateX(0)rotateY(0)}}", aD = "._spinner_1vpw0_1{width:48px;height:48px;position:relative}._spinner_1vpw0_1 div{box-sizing:border-box;border:2px solid #7e57c5;border-bottom-color:transparent;border-radius:50%;width:100%;height:100%;animation:1s linear infinite _spin_1vpw0_1;position:absolute;top:0;left:0}._spinner_1vpw0_1:before{content:\"\";box-sizing:border-box;border:2px solid #d9d9d9;border-radius:50%;width:100%;height:100%;position:absolute;top:0;left:0}@keyframes _spin_1vpw0_1{0%{transform:rotate(0)}to{transform:rotate(360deg)}}._process-message_1vpw0_41{flex-direction:column;flex:1;justify-content:center;align-items:center;row-gap:24px;padding:24px;display:flex}._message_1vpw0_51{color:#000;font-size:14px;line-height:20px;display:block}", oD = "._button_7h3jm_1{cursor:pointer;color:#211236;white-space:nowrap;background:#fff;border:1px solid #211236;border-radius:112px;justify-content:center;column-gap:5px;width:100%;max-width:290px;padding:12px 24px;font-family:Inter,sans-serif;font-size:18px;font-style:normal;font-weight:400;line-height:135%;display:flex}._button_7h3jm_1:before{content:\"\";background-position:50%;background-repeat:no-repeat;background-size:contain;width:22px;height:22px;display:inline-flex}._button_7h3jm_1:hover:not(:disabled),._button_7h3jm_1:focus:not(:disabled){background:#f5f5f5}._button_7h3jm_1:active:not(:disabled){background:#e2e2e2}._button_7h3jm_1:disabled{opacity:.5;cursor:default}._button_7h3jm_1:focus-visible{outline:2px solid #00f}", sD = "._copyright_7zsy1_1{direction:ltr;justify-content:center;align-items:center;gap:3px;display:flex}._copyright_7zsy1_1 span{letter-spacing:-.1px;color:#8c8c8c;font-size:10px;font-weight:500}._copyright_7zsy1_1 img{padding-top:3px}", cD = "._remote-scanner-wrapper_18b5u_1{flex-direction:column;flex:1;justify-content:center;align-items:center;row-gap:24px;padding:24px;display:flex}._qr-container_18b5u_11{flex-direction:column;align-items:center;max-width:350px;max-height:140px;display:flex}._text_18b5u_19{text-align:center;flex-direction:column;align-items:center;row-gap:16px;display:flex}._title_18b5u_27{color:#000;max-width:465px;margin:0;font-size:20px;font-weight:600;line-height:20px}._subtitle_18b5u_36{color:#454545;max-width:465px;margin:0;font-size:14px;font-weight:400;line-height:20px;display:block}._content-container_18b5u_46{flex-direction:column;row-gap:10px;display:flex}._divider_18b5u_52{text-align:center;color:#b5b5b5;text-transform:uppercase;align-items:center;column-gap:10px;font-size:12px;font-weight:400;line-height:12px;display:flex}._divider_18b5u_52:before,._divider_18b5u_52:after{content:\"\";border-top:1px solid #b5b5b5;flex:1}._button_18b5u_71{cursor:pointer;color:#454545;background:0 0;border:none;align-self:center;padding:0;font-family:Inter,sans-serif;font-size:12px;font-weight:500;line-height:12px}._button_18b5u_71:hover{color:#7e57c5}._button_18b5u_71:focus-visible{outline:2px solid #00f}", lD = "._container_17sg4_1{flex:1;align-items:center;display:flex;position:relative}._video_17sg4_8{object-fit:contain;background-color:#fff;width:100%;height:100%}", uD = "._announcer_1qj2e_1{clip:rect(0 0 0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}", dD = {
|
|
16721
|
-
|
|
16698
|
+
ru: {
|
|
16722
16699
|
preparingCamera: "Подготовка камеры...",
|
|
16723
16700
|
timeout: "Тайм-аут",
|
|
16724
16701
|
noFocus: "Нет фокусировки камеры",
|
|
@@ -16766,7 +16743,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
16766
16743
|
flipTheDocument: "Переверните документ",
|
|
16767
16744
|
tiltTheDocument: "Наклоните документ"
|
|
16768
16745
|
},
|
|
16769
|
-
|
|
16746
|
+
en: {
|
|
16770
16747
|
preparingCamera: "Preparing the camera...",
|
|
16771
16748
|
timeout: "Timeout",
|
|
16772
16749
|
noFocus: "No camera focus",
|
|
@@ -16814,7 +16791,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
16814
16791
|
flipTheDocument: "Flip the document",
|
|
16815
16792
|
tiltTheDocument: "Tilt the document"
|
|
16816
16793
|
},
|
|
16817
|
-
|
|
16794
|
+
de: {
|
|
16818
16795
|
preparingCamera: "Kamera wird vorbereitet...",
|
|
16819
16796
|
timeout: "Timeout",
|
|
16820
16797
|
noFocus: "Kein Kamerafokus",
|
|
@@ -16862,7 +16839,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
16862
16839
|
flipTheDocument: "Dokument drehen",
|
|
16863
16840
|
tiltTheDocument: "Kippen Sie das Dokument"
|
|
16864
16841
|
},
|
|
16865
|
-
|
|
16842
|
+
pl: {
|
|
16866
16843
|
preparingCamera: "Przygotowywanie kamery...",
|
|
16867
16844
|
timeout: "Limit czasu",
|
|
16868
16845
|
noFocus: "Brak ostrości",
|
|
@@ -16910,7 +16887,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
16910
16887
|
flipTheDocument: "Odwróć dokument",
|
|
16911
16888
|
tiltTheDocument: "Pochyl dokument"
|
|
16912
16889
|
},
|
|
16913
|
-
|
|
16890
|
+
it: {
|
|
16914
16891
|
preparingCamera: "Preparazione della fotocamera in corso...",
|
|
16915
16892
|
timeout: "Timeout",
|
|
16916
16893
|
noFocus: "Nessuna messa a fuoco della fotocamera",
|
|
@@ -16958,7 +16935,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
16958
16935
|
flipTheDocument: "Capovolgi il documento",
|
|
16959
16936
|
tiltTheDocument: "Inclina il documento"
|
|
16960
16937
|
},
|
|
16961
|
-
|
|
16938
|
+
hu: {
|
|
16962
16939
|
preparingCamera: "A kamera előkészítése...",
|
|
16963
16940
|
timeout: "Időkorlát",
|
|
16964
16941
|
noFocus: "Nem fókuszál a kamera",
|
|
@@ -17006,7 +16983,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17006
16983
|
flipTheDocument: "Fordítsa meg az okiratot",
|
|
17007
16984
|
tiltTheDocument: "Döntse meg az okiratot!"
|
|
17008
16985
|
},
|
|
17009
|
-
|
|
16986
|
+
zh: {
|
|
17010
16987
|
preparingCamera: "正在准备相机",
|
|
17011
16988
|
timeout: "超时",
|
|
17012
16989
|
noFocus: "没有摄像头对焦",
|
|
@@ -17054,55 +17031,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17054
17031
|
flipTheDocument: "翻转证件",
|
|
17055
17032
|
tiltTheDocument: "请倾斜证件"
|
|
17056
17033
|
},
|
|
17057
|
-
|
|
17058
|
-
preparingCamera: "準備相機。..",
|
|
17059
|
-
timeout: "超時",
|
|
17060
|
-
noFocus: "攝像頭無法對焦",
|
|
17061
|
-
somethingWentWrong: "出錯了",
|
|
17062
|
-
incorrectCameraId: "找不到具有指定ID的攝像頭。",
|
|
17063
|
-
done: "完成!",
|
|
17064
|
-
cameraUnavailable: "相機不可用!",
|
|
17065
|
-
versionNotSupported: "您的流覽器版本不受支持",
|
|
17066
|
-
httpNotSupported: "未使用HTTPS",
|
|
17067
|
-
insecurePageContext: "不安全的上下文",
|
|
17068
|
-
badLicense: "找不到許可證或許可證已過期",
|
|
17069
|
-
fileCorrupt: "此檔案已損壞或不受支持",
|
|
17070
|
-
largeFile: "此檔案太大,無法上載",
|
|
17071
|
-
placeDocumentIntoFrame: "將檔案裝入框架",
|
|
17072
|
-
holdDocumentStraight: "把檔案拿直",
|
|
17073
|
-
glaresOnDocument: "避免强光照射檔案",
|
|
17074
|
-
tryAgain: "再試一次",
|
|
17075
|
-
noCameraAvailable: "沒有可用的攝像頭",
|
|
17076
|
-
positionDocumentCenter: "將檔案放置在中心",
|
|
17077
|
-
uploadPhoto: "上傳照片",
|
|
17078
|
-
moveCloser: "靠得更近",
|
|
17079
|
-
keepDeviceStill: "保持設備靜止",
|
|
17080
|
-
camera: "相機",
|
|
17081
|
-
switchToMobile: "切換到行動裝置",
|
|
17082
|
-
openPhoneCamera: "打開行動裝置上的相機,掃描二維碼,然後點擊連結",
|
|
17083
|
-
pleaseWait: "請稍候。..",
|
|
17084
|
-
mobileDevice: "行動裝置",
|
|
17085
|
-
verifyYourIdentity: "身份證件驗證",
|
|
17086
|
-
fromCameraFilesMobileDesktop: "使用電腦的攝像頭擷取檔案、從文件上傳,或在行動裝置上掃描",
|
|
17087
|
-
fromCameraFilesDesktop: "使用電腦的攝像頭擷取檔案或從文件上傳",
|
|
17088
|
-
fromCameraMobileDesktop: "使用電腦的攝像頭擷取檔案或在行動裝置上掃描",
|
|
17089
|
-
fromFilesMobileDesktop: "從文件上傳檔案或在行動裝置上掃描",
|
|
17090
|
-
fromCameraDesktop: "使用電腦的攝像頭拍攝檔案",
|
|
17091
|
-
fromFilesDesktop: "從檔案中選擇一個檔案並上傳",
|
|
17092
|
-
fromMobileDesktop: "使用手機相機拍攝檔案",
|
|
17093
|
-
fromCameraGalleryMobile: "使用手機相機拍攝檔案或從相冊上傳",
|
|
17094
|
-
fromGalleryMobile: "從庫中選擇一個檔案並上傳",
|
|
17095
|
-
gallery: "畫廊",
|
|
17096
|
-
files: "文件",
|
|
17097
|
-
returnToComputer: "返回電腦",
|
|
17098
|
-
documentCaptured: "您的檔案已被捕獲",
|
|
17099
|
-
or: "或",
|
|
17100
|
-
continueInBrowser: "按一下此處在瀏覽器中繼續",
|
|
17101
|
-
skip: "跳過",
|
|
17102
|
-
flipTheDocument: "翻轉檔案",
|
|
17103
|
-
tiltTheDocument: "傾斜檔案"
|
|
17104
|
-
},
|
|
17105
|
-
"sk-sk": {
|
|
17034
|
+
sk: {
|
|
17106
17035
|
preparingCamera: "Príprava fotoaparátu...",
|
|
17107
17036
|
timeout: "Čas vypršal",
|
|
17108
17037
|
noFocus: "Žiadne zaostrenie fotoaparátu",
|
|
@@ -17150,7 +17079,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17150
17079
|
flipTheDocument: "Prevrátiť dokument",
|
|
17151
17080
|
tiltTheDocument: "Nakloniť dokument"
|
|
17152
17081
|
},
|
|
17153
|
-
|
|
17082
|
+
uk: {
|
|
17154
17083
|
preparingCamera: "Підготовка камери...",
|
|
17155
17084
|
timeout: "Тайм-аут",
|
|
17156
17085
|
noFocus: "Немає фокусування камери",
|
|
@@ -17198,7 +17127,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17198
17127
|
flipTheDocument: "Переверніть документ",
|
|
17199
17128
|
tiltTheDocument: "Нахиліть документ"
|
|
17200
17129
|
},
|
|
17201
|
-
|
|
17130
|
+
fr: {
|
|
17202
17131
|
preparingCamera: "Caméra en préparation...",
|
|
17203
17132
|
timeout: "Délai d'expiration",
|
|
17204
17133
|
noFocus: "Caméra non focalisée",
|
|
@@ -17246,7 +17175,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17246
17175
|
flipTheDocument: "Inverser le document",
|
|
17247
17176
|
tiltTheDocument: "Incliner le document"
|
|
17248
17177
|
},
|
|
17249
|
-
|
|
17178
|
+
es: {
|
|
17250
17179
|
preparingCamera: "Preparando la cámara...",
|
|
17251
17180
|
timeout: "Tiempo de espera",
|
|
17252
17181
|
noFocus: "No hay enfoque de la cámara",
|
|
@@ -17294,7 +17223,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17294
17223
|
flipTheDocument: "Déle la vuelta al documento",
|
|
17295
17224
|
tiltTheDocument: "Incline el documento"
|
|
17296
17225
|
},
|
|
17297
|
-
|
|
17226
|
+
pt: {
|
|
17298
17227
|
preparingCamera: "Preparando a câmara...",
|
|
17299
17228
|
timeout: "Tempo esgotado",
|
|
17300
17229
|
noFocus: "Sem foco da câmara",
|
|
@@ -17342,7 +17271,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17342
17271
|
flipTheDocument: "Vire o documento",
|
|
17343
17272
|
tiltTheDocument: "Incline o documento"
|
|
17344
17273
|
},
|
|
17345
|
-
|
|
17274
|
+
ar: {
|
|
17346
17275
|
preparingCamera: "تحضير الكاميرا...",
|
|
17347
17276
|
timeout: "انتهاء المهلة",
|
|
17348
17277
|
noFocus: "لا يوجد تركيز الكاميرا",
|
|
@@ -17390,7 +17319,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17390
17319
|
flipTheDocument: "اقلب المستند",
|
|
17391
17320
|
tiltTheDocument: "يرجى إمالة المستند"
|
|
17392
17321
|
},
|
|
17393
|
-
|
|
17322
|
+
nl: {
|
|
17394
17323
|
preparingCamera: "De camera aan het voorbereiden...",
|
|
17395
17324
|
timeout: "Time-out",
|
|
17396
17325
|
noFocus: "Geen camera-focus",
|
|
@@ -17438,7 +17367,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17438
17367
|
flipTheDocument: "Draai het document om",
|
|
17439
17368
|
tiltTheDocument: "Kantel het document"
|
|
17440
17369
|
},
|
|
17441
|
-
|
|
17370
|
+
id: {
|
|
17442
17371
|
preparingCamera: "Menyiapkan kamera...",
|
|
17443
17372
|
timeout: "Batas waktu",
|
|
17444
17373
|
noFocus: "Tidak ada fokus kamera",
|
|
@@ -17486,7 +17415,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17486
17415
|
flipTheDocument: "Putar balik dokumen",
|
|
17487
17416
|
tiltTheDocument: "Miringkan dokumen"
|
|
17488
17417
|
},
|
|
17489
|
-
|
|
17418
|
+
vi: {
|
|
17490
17419
|
preparingCamera: "Đang chuẩn bị camera...",
|
|
17491
17420
|
timeout: "Thời gian chờ",
|
|
17492
17421
|
noFocus: "Không có tiêu điểm camera",
|
|
@@ -17534,7 +17463,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17534
17463
|
flipTheDocument: "Lật giấy tờ",
|
|
17535
17464
|
tiltTheDocument: "Nghiêng tài liệu"
|
|
17536
17465
|
},
|
|
17537
|
-
|
|
17466
|
+
ko: {
|
|
17538
17467
|
preparingCamera: "카메라 준비 중...",
|
|
17539
17468
|
timeout: "시간 제한",
|
|
17540
17469
|
noFocus: "카메라 초점",
|
|
@@ -17582,7 +17511,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17582
17511
|
flipTheDocument: "문서를 뒤집으십시오",
|
|
17583
17512
|
tiltTheDocument: "문서를 기울이십시오"
|
|
17584
17513
|
},
|
|
17585
|
-
|
|
17514
|
+
ms: {
|
|
17586
17515
|
preparingCamera: "Menyediakan kamera...",
|
|
17587
17516
|
timeout: "Ralat masa",
|
|
17588
17517
|
noFocus: "Tiada fokus kamera",
|
|
@@ -17630,7 +17559,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17630
17559
|
flipTheDocument: "Terbalikkan dokumen",
|
|
17631
17560
|
tiltTheDocument: "Condongkan dokumen"
|
|
17632
17561
|
},
|
|
17633
|
-
|
|
17562
|
+
ro: {
|
|
17634
17563
|
preparingCamera: "Se pregătește camera...",
|
|
17635
17564
|
timeout: "Pauză",
|
|
17636
17565
|
noFocus: "Cameră nefocalizată",
|
|
@@ -17678,7 +17607,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17678
17607
|
flipTheDocument: "Întoarceți documentul",
|
|
17679
17608
|
tiltTheDocument: "Rotiți documentul"
|
|
17680
17609
|
},
|
|
17681
|
-
|
|
17610
|
+
el: {
|
|
17682
17611
|
preparingCamera: "Προετοιμασία της κάμερας...",
|
|
17683
17612
|
timeout: "Εξωχρονισμός",
|
|
17684
17613
|
noFocus: "Δεν υπάρχει εστίαση κάμερας",
|
|
@@ -17726,7 +17655,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17726
17655
|
flipTheDocument: "Γυρίστε το έγγραφο",
|
|
17727
17656
|
tiltTheDocument: "Γείρετε το έγγραφο"
|
|
17728
17657
|
},
|
|
17729
|
-
|
|
17658
|
+
tr: {
|
|
17730
17659
|
preparingCamera: "Kamera hazırlanıyor...",
|
|
17731
17660
|
timeout: "Zaman aşımı",
|
|
17732
17661
|
noFocus: "Kamera odağı yok",
|
|
@@ -17774,7 +17703,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17774
17703
|
flipTheDocument: "Belgeyi ters çevirin",
|
|
17775
17704
|
tiltTheDocument: "Belgeyi Eğ"
|
|
17776
17705
|
},
|
|
17777
|
-
|
|
17706
|
+
ja: {
|
|
17778
17707
|
preparingCamera: "カメラ準備中...",
|
|
17779
17708
|
timeout: "タイムアウト",
|
|
17780
17709
|
noFocus: "カメラの焦点が合っていません",
|
|
@@ -17822,7 +17751,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17822
17751
|
flipTheDocument: "書類を裏返す",
|
|
17823
17752
|
tiltTheDocument: "文書を傾けてください"
|
|
17824
17753
|
},
|
|
17825
|
-
|
|
17754
|
+
cs: {
|
|
17826
17755
|
preparingCamera: "Příprava fotoaparátu...",
|
|
17827
17756
|
timeout: "Časový limit",
|
|
17828
17757
|
noFocus: "Fotoaparát není zaostřen",
|
|
@@ -17870,7 +17799,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17870
17799
|
flipTheDocument: "Obraťte dokument",
|
|
17871
17800
|
tiltTheDocument: "Nakloňte dokument"
|
|
17872
17801
|
},
|
|
17873
|
-
|
|
17802
|
+
th: {
|
|
17874
17803
|
preparingCamera: "กำลังเตรียมกล้องถ่ายรูป...",
|
|
17875
17804
|
timeout: "หมดเวลา",
|
|
17876
17805
|
noFocus: "ไม่มีโฟกัสกล้อง",
|
|
@@ -17918,7 +17847,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17918
17847
|
flipTheDocument: "พลิกเอกสาร",
|
|
17919
17848
|
tiltTheDocument: "เอียงเอกสาร"
|
|
17920
17849
|
},
|
|
17921
|
-
|
|
17850
|
+
hi: {
|
|
17922
17851
|
preparingCamera: "कैमरा तैयार करना...",
|
|
17923
17852
|
timeout: "समय समाप्त",
|
|
17924
17853
|
noFocus: "कैमरा फ़ोकस नहीं",
|
|
@@ -17966,7 +17895,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
17966
17895
|
flipTheDocument: "दस्तावेज़ पलटें",
|
|
17967
17896
|
tiltTheDocument: "दस्तावेज़ को टिल्ट करें"
|
|
17968
17897
|
},
|
|
17969
|
-
|
|
17898
|
+
bn: {
|
|
17970
17899
|
preparingCamera: "ক্যামেরা প্রস্তুত করা হচ্ছে...",
|
|
17971
17900
|
timeout: "টাইম আউট",
|
|
17972
17901
|
noFocus: "ক্যামেরার ফোকাস হয়নি",
|
|
@@ -18014,7 +17943,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18014
17943
|
flipTheDocument: "ডকুমেন্টটি উল্টান",
|
|
18015
17944
|
tiltTheDocument: "ডকুমেন্টটি কাত করুন"
|
|
18016
17945
|
},
|
|
18017
|
-
|
|
17946
|
+
he: {
|
|
18018
17947
|
preparingCamera: "המצלמה בהכנה...",
|
|
18019
17948
|
timeout: "זמן קצוב לתפוגה",
|
|
18020
17949
|
noFocus: "המצלמה לא בפוקוס",
|
|
@@ -18062,7 +17991,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18062
17991
|
flipTheDocument: "יש להפוך את המסמך לצידו השני",
|
|
18063
17992
|
tiltTheDocument: "צריך להטות את המסמך הצידה"
|
|
18064
17993
|
},
|
|
18065
|
-
|
|
17994
|
+
fi: {
|
|
18066
17995
|
preparingCamera: "Valmistellaan kameraa...",
|
|
18067
17996
|
timeout: "Aikakatkaisu",
|
|
18068
17997
|
noFocus: "Kamera ei tarkennettu",
|
|
@@ -18110,7 +18039,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18110
18039
|
flipTheDocument: "Käännä asiakirja",
|
|
18111
18040
|
tiltTheDocument: "Kallista asiakirjaa"
|
|
18112
18041
|
},
|
|
18113
|
-
|
|
18042
|
+
sv: {
|
|
18114
18043
|
preparingCamera: "Förbereder kameran...",
|
|
18115
18044
|
timeout: "Paus",
|
|
18116
18045
|
noFocus: "Ingen kamerafokus",
|
|
@@ -18158,7 +18087,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18158
18087
|
flipTheDocument: "Vänd på dokumentet",
|
|
18159
18088
|
tiltTheDocument: "Luta dokumentet"
|
|
18160
18089
|
},
|
|
18161
|
-
|
|
18090
|
+
da: {
|
|
18162
18091
|
preparingCamera: "Gør kameraet klar...",
|
|
18163
18092
|
timeout: "Timeout",
|
|
18164
18093
|
noFocus: "Ingen kamerafokus",
|
|
@@ -18206,7 +18135,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18206
18135
|
flipTheDocument: "Vend dokumentet",
|
|
18207
18136
|
tiltTheDocument: "Vip dokumentet"
|
|
18208
18137
|
},
|
|
18209
|
-
|
|
18138
|
+
hr: {
|
|
18210
18139
|
preparingCamera: "Priprema kamere...",
|
|
18211
18140
|
timeout: "Pauza",
|
|
18212
18141
|
noFocus: "Nema fokusa kamere",
|
|
@@ -18254,7 +18183,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18254
18183
|
flipTheDocument: "Okrenite dokument",
|
|
18255
18184
|
tiltTheDocument: "Nagnite dokument"
|
|
18256
18185
|
},
|
|
18257
|
-
|
|
18186
|
+
no: {
|
|
18258
18187
|
preparingCamera: "Forbereder kameraet...",
|
|
18259
18188
|
timeout: "Pause",
|
|
18260
18189
|
noFocus: "Ingen kamerafokus",
|
|
@@ -18302,7 +18231,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18302
18231
|
flipTheDocument: "Vend dokumentet",
|
|
18303
18232
|
tiltTheDocument: "Vipp dokumentet"
|
|
18304
18233
|
},
|
|
18305
|
-
|
|
18234
|
+
uz: {
|
|
18306
18235
|
preparingCamera: "Kamerani tayyorlash...",
|
|
18307
18236
|
timeout: "Vaqt tugashi",
|
|
18308
18237
|
noFocus: "Kamera fokusi yo'q",
|
|
@@ -18350,7 +18279,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18350
18279
|
flipTheDocument: "Hujjatni aylantiring",
|
|
18351
18280
|
tiltTheDocument: "Hujjatni egib oling"
|
|
18352
18281
|
},
|
|
18353
|
-
|
|
18282
|
+
hy: {
|
|
18354
18283
|
preparingCamera: "Տեսախցիկի նախապատրաստում․․․",
|
|
18355
18284
|
timeout: "Թայմաութ",
|
|
18356
18285
|
noFocus: "Տեսախցիկի ֆոկուսավորում չկա",
|
|
@@ -18398,7 +18327,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18398
18327
|
flipTheDocument: "Շրջել փաստաթուղթը",
|
|
18399
18328
|
tiltTheDocument: "Թեքեք նկարը"
|
|
18400
18329
|
},
|
|
18401
|
-
|
|
18330
|
+
ky: {
|
|
18402
18331
|
preparingCamera: "Камера даярдалууда...",
|
|
18403
18332
|
timeout: "Тайм-аут",
|
|
18404
18333
|
noFocus: "Камеранын фокусу жок",
|
|
@@ -18446,7 +18375,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18446
18375
|
flipTheDocument: "Документти которуңуз",
|
|
18447
18376
|
tiltTheDocument: "Документти ийиңиз"
|
|
18448
18377
|
},
|
|
18449
|
-
|
|
18378
|
+
ku: {
|
|
18450
18379
|
preparingCamera: "ئامادەکردنی کامێرا...",
|
|
18451
18380
|
timeout: "کات",
|
|
18452
18381
|
noFocus: "فۆکەسی کامێرا نییە",
|
|
@@ -18494,7 +18423,7 @@ var YE = vs(iC, QS)(JE), XE = "*,:before,:after{box-sizing:border-box}:host{widt
|
|
|
18494
18423
|
flipTheDocument: "بەڵگەنامەکە بگۆڕە",
|
|
18495
18424
|
tiltTheDocument: "بەڵگەنامەکە بە لات بگۆڕە"
|
|
18496
18425
|
},
|
|
18497
|
-
|
|
18426
|
+
tg: {
|
|
18498
18427
|
preparingCamera: "Омодасозии камера...",
|
|
18499
18428
|
timeout: "Тайм-аут",
|
|
18500
18429
|
noFocus: "Камера фокус намекунад",
|
|
@@ -20522,7 +20451,7 @@ function uA(e, t) {
|
|
|
20522
20451
|
}
|
|
20523
20452
|
var dA = Js.create("wasm"), fA = Js.create("main"), pA = class {
|
|
20524
20453
|
constructor() {
|
|
20525
|
-
cA(this, "_worker", null), cA(this, "_initializeListener", null), cA(this, "_processingListener", null), cA(this, "_queueService", new Bk()), cA(this, "_initProcess", null), cA(this, "version", { component: "9.6.
|
|
20454
|
+
cA(this, "_worker", null), cA(this, "_initializeListener", null), cA(this, "_processingListener", null), cA(this, "_queueService", new Bk()), cA(this, "_initProcess", null), cA(this, "version", { component: "9.6.2935-rc" }), cA(this, "onFinalize", null), cA(this, "isPrepared", !1), cA(this, "isInitialized", !1), cA(this, "isProcessing", !1), cA(this, "initData", null), cA(this, "recognizerProcessParam", { processParam: {} }), cA(this, "imageProcessParam", { processParam: {} }), cA(this, "recognizeListener", null), cA(this, "workerPath", "https://wasm-development.regulaforensics.com/document/rc/9.6/barcodemrz/daeb988e-e7d89e951"), cA(this, "pageIdx", null);
|
|
20526
20455
|
}
|
|
20527
20456
|
get processingListener() {
|
|
20528
20457
|
return this._processingListener;
|
|
@@ -20575,7 +20504,7 @@ var dA = Js.create("wasm"), fA = Js.create("main"), pA = class {
|
|
|
20575
20504
|
var n;
|
|
20576
20505
|
fA("Preparing the service");
|
|
20577
20506
|
{
|
|
20578
|
-
let n = t.workerPath === "https://wasm-development.regulaforensics.com/document/
|
|
20507
|
+
let n = t.workerPath === "https://wasm-development.regulaforensics.com/document/rc/9.6/barcodemrz/daeb988e-e7d89e951", r = aA(e && n ? ux(e, "PROD") : t.workerPath), i = yield (yield fetch(`${r}/${Ti}`)).text();
|
|
20579
20508
|
n || (i = lx(i, r));
|
|
20580
20509
|
let a = new Blob([i], { type: "text/plain" }), o = URL.createObjectURL(a);
|
|
20581
20510
|
t._worker = new Worker(o), URL.revokeObjectURL(o);
|
|
@@ -20614,7 +20543,7 @@ var dA = Js.create("wasm"), fA = Js.create("main"), pA = class {
|
|
|
20614
20543
|
hostName: (n = document.location) == null ? void 0 : n.origin,
|
|
20615
20544
|
license: e == null ? void 0 : e.license
|
|
20616
20545
|
},
|
|
20617
|
-
telemetry: yield Rs({ sdkVersion: "9.6.
|
|
20546
|
+
telemetry: yield Rs({ sdkVersion: "9.6.2935-rc" }),
|
|
20618
20547
|
processParam: t.recognizerProcessParam.processParam || t.imageProcessParam.processParam
|
|
20619
20548
|
}
|
|
20620
20549
|
}), a = i.scenario, o = i.license;
|