1
(function() {
2
const e = document.createElement("link").relList;
3
if (e && e.supports && e.supports("modulepreload"))
4
return;
5
for (const r of document.querySelectorAll('link[rel="modulepreload"]'))
6
i(r);
7
new MutationObserver(r=>{
8
for (const n of r)
9
if (n.type === "childList")
10
for (const o of n.addedNodes)
11
o.tagName === "LINK" && o.rel === "modulepreload" && i(o)
12
}
13
).observe(document, {
14
childList: !0,
15
subtree: !0
16
});
17
function t(r) {
18
const n = {};
19
return r.integrity && (n.integrity = r.integrity),
20
r.referrerPolicy && (n.referrerPolicy = r.referrerPolicy),
21
r.crossOrigin === "use-credentials" ? n.credentials = "include" : r.crossOrigin === "anonymous" ? n.credentials = "omit" : n.credentials = "same-origin",
22
n
23
}
24
function i(r) {
25
if (r.ep)
26
return;
27
r.ep = !0;
28
const n = t(r);
29
fetch(r.href, n)
30
}
31
}
32
)();
33
function yi(s) {
34
if (s === void 0)
35
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
36
return s
37
}
38
function Ao(s, e) {
39
s.prototype = Object.create(e.prototype),
40
s.prototype.constructor = s,
...
</html>