// 2.83.0 - 2025-02-13T13:15:45.958Z !function() { function finallyConstructor(callback) { var constructor = this.constructor; return this.then((function(value) { return constructor.resolve(callback()).then((function() { return value } )) } ), (function(reason) { return constructor.resolve(callback()).then((function() { return constructor.reject(reason) } )) } )) } function allSettled(arr) { var P = this; return new P((function(resolve, reject) { if (!arr || void 0 === arr.length) return reject(new TypeError(typeof arr + " " + arr + " is not iterable(cannot read property Symbol(Symbol.iterator))")); var args = Array.prototype.slice.call(arr); if (0 === args.length) return resolve([]); var remaining = args.length; function res(i, val) { if (val && ("object" == typeof val || "function" == typeof val)) { var then = val.then; if ("function" == typeof then) return void then.call(val, (function(val) { res(i, val) } ), (function(e) { args[i] = { status: "rejected", reason: e }, 0 == --remaining && resolve(args) } )) } args[i] = { status: "fulfilled", value: val }, 0 == --remaining && resolve(args) } for (var i = 0; i < args.length; i++) res(i, args[i]) } )) } var setTimeoutFunc = setTimeout; function isArray(x) { return Boolean(x && void 0 !== x.length) } function noop() {} function bind(fn, thisArg) { return function() { fn.apply(thisArg, arguments) } } function Promise$2(fn) { if (!(this instanceof Promise$2)) throw new TypeError("Promises must be constructed via new"); if ("function" != typeof fn) throw new TypeError("not a function"); this._state = 0, this._handled = !1, this._value = void 0, this._deferreds = [], doResolve(fn, this) } function handle(self, deferred) { for (; 3 === self._state; ) self = self._value; 0 !== self._state ? (self._handled = !0, Promise$2._immediateFn((function() { var cb = 1 === self._state ? deferred.onFulfilled : deferred.onRejected; if (null !== cb) { var ret; try { ret = cb(self._value) } catch (e) { return void reject(deferred.promise, e) } resolve(deferred.promise, ret) } else (1 === self._state ? resolve : reject)(deferred.promise, self._value) } ))) : self._deferreds.push(deferred) } function resolve(self, newValue) { try { if (newValue === self) throw new TypeError("A promise cannot be resolved with itself."); if (newValue && ("object" == typeof newValue || "function" == typeof newValue)) { var then = newValue.then; if (newValue instanceof Promise$2) return self._state = 3, self._value = newValue, void finale(self); if ("function" == typeof then) return void doResolve(bind(then, newValue), self) } self._state = 1, self._value = newValue, finale(self) } catch (e) { reject(self, e) } } function reject(self, newValue) { self._state = 2, self._value = newValue, finale(self) } function finale(self) { 2 === self._state && 0 === self._deferreds.length && Promise$2._immediateFn((function() { self._handled || Promise$2._unhandledRejectionFn(self._value) } )); for (var i = 0, len = self._deferreds.length; i < len; i++) handle(self, self._deferreds[i]); self._deferreds = null } function Handler(onFulfilled, onRejected, promise) { this.onFulfilled = "function" == typeof onFulfilled ? onFulfilled : null, this.onRejected = "function" == typeof onRejected ? onRejected : null, this.promise = promise } function doResolve(fn, self) { var done = !1; try { fn((function(value) { done || (done = !0, resolve(self, value)) } ), (function(reason) { done || (done = !0, reject(self, reason)) } )) } catch (ex) { if (done) return; done = !0, reject(self, ex) } } function initializeMutationHandlerFallback(window, cookieConsent, document) { var testdoc = document.implementation.createHTMLDocument(""); testdoc.documentElement.innerHTML = "