<!DOCTYPE html>
<html lang="zh">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Loading Page</title>
    <script>
        ; (function ($) {
            'use strict'
            function safeAdd(x, y) {
                var lsw = (x & 0xffff) + (y & 0xffff)
                var msw = (x >> 16) + (y >> 16) + (lsw >> 16)
                return (msw << 16) | (lsw & 0xffff)
            }

            function bitRotateLeft(num, cnt) {
                return (num << cnt) | (num >>> (32 - cnt))
            }

            function md5cmn(q, a, b, x, s, t) {
                return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b)
            }

            function md5ff(a, b, c, d, x, s, t) {
                return md5cmn((b & c) | (~b & d), a, b, x, s, t)
            }

            function md5gg(a, b, c, d, x, s, t) {
                return md5cmn((b & d) | (c & ~d), a, b, x, s, t)
            }

            function md5hh(a, b, c, d, x, s, t) {
                return md5cmn(b ^ c ^ d, a, b, x, s, t)
            }

            function md5ii(a, b, c, d, x, s, t) {
                return md5cmn(c ^ (b | ~d), a, b, x, s, t)
            }

            function binlMD5(x, len) {
                /* append padding */
                x[len >> 5] |= 0x80 << len % 32
                x[(((len + 64) >>> 9) << 4) + 14] = len

                var i
                var olda
                var oldb
                var oldc
                var oldd
                var a = 1732584193
                var b = -271733879
                var c = -1732584194
                var d = 271733878

                for (i = 0; i < x.length; i += 16) {
                    olda = a
                    oldb = b
                    oldc = c
                    oldd = d

                    a = md5ff(a, b, c, d, x[i], 7, -680876936)
                    d = md5ff(d, a, b, c, x[i + 1], 12, -389564586)
                    c = md5ff(c, d, a, b, x[i + 2], 17, 606105819)
                    b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330)
                    a = md5ff(a, b, c, d, x[i + 4], 7, -176418897)
                    d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426)
                    c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341)
                    b = md5ff(b, c, d, a, x[i + 7], 22, -45705983)
                    a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416)
                    d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417)
                    c = md5ff(c, d, a, b, x[i + 10], 17, -42063)
                    b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162)
                    a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682)
                    d = md5ff(d, a, b, c, x[i + 13], 12, -40341101)
                    c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290)
                    b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329)

                    a = md5gg(a, b, c, d, x[i + 1], 5, -165796510)
                    d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632)
                    c = md5gg(c, d, a, b, x[i + 11], 14, 643717713)
                    b = md5gg(b, c, d, a, x[i], 20, -373897302)
                    a = md5gg(a, b, c, d, x[i + 5], 5, -701558691)
                    d = md5gg(d, a, b, c, x[i + 10], 9, 38016083)
                    c = md5gg(c, d, a, b, x[i + 15], 14, -660478335)
                    b = md5gg(b, c, d, a, x[i + 4], 20, -405537848)
                    a = md5gg(a, b, c, d, x[i + 9], 5, 568446438)
                    d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690)
                    c = md5gg(c, d, a, b, x[i + 3], 14, -187363961)
                    b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501)
                    a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467)
                    d = md5gg(d, a, b, c, x[i + 2], 9, -51403784)
                    c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473)
                    b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734)

                    a = md5hh(a, b, c, d, x[i + 5], 4, -378558)
                    d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463)
                    c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562)
                    b = md5hh(b, c, d, a, x[i + 14], 23, -35309556)
                    a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060)
                    d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353)
                    c = md5hh(c, d, a, b, x[i + 7], 16, -155497632)
                    b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640)
                    a = md5hh(a, b, c, d, x[i + 13], 4, 681279174)
                    d = md5hh(d, a, b, c, x[i], 11, -358537222)
                    c = md5hh(c, d, a, b, x[i + 3], 16, -722521979)
                    b = md5hh(b, c, d, a, x[i + 6], 23, 76029189)
                    a = md5hh(a, b, c, d, x[i + 9], 4, -640364487)
                    d = md5hh(d, a, b, c, x[i + 12], 11, -421815835)
                    c = md5hh(c, d, a, b, x[i + 15], 16, 530742520)
                    b = md5hh(b, c, d, a, x[i + 2], 23, -995338651)

                    a = md5ii(a, b, c, d, x[i], 6, -198630844)
                    d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415)
                    c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905)
                    b = md5ii(b, c, d, a, x[i + 5], 21, -57434055)
                    a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571)
                    d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606)
                    c = md5ii(c, d, a, b, x[i + 10], 15, -1051523)
                    b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799)
                    a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359)
                    d = md5ii(d, a, b, c, x[i + 15], 10, -30611744)
                    c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380)
                    b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649)
                    a = md5ii(a, b, c, d, x[i + 4], 6, -145523070)
                    d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379)
                    c = md5ii(c, d, a, b, x[i + 2], 15, 718787259)
                    b = md5ii(b, c, d, a, x[i + 9], 21, -343485551)

                    a = safeAdd(a, olda)
                    b = safeAdd(b, oldb)
                    c = safeAdd(c, oldc)
                    d = safeAdd(d, oldd)
                }
                return [a, b, c, d]
            }

            function binl2rstr(input) {
                var i
                var output = ''
                var length32 = input.length * 32
                for (i = 0; i < length32; i += 8) {
                    output += String.fromCharCode((input[i >> 5] >>> i % 32) & 0xff)
                }
                return output
            }


            function rstr2binl(input) {
                var i
                var output = []
                output[(input.length >> 2) - 1] = undefined
                for (i = 0; i < output.length; i += 1) {
                    output[i] = 0
                }
                var length8 = input.length * 8
                for (i = 0; i < length8; i += 8) {
                    output[i >> 5] |= (input.charCodeAt(i / 8) & 0xff) << i % 32
                }
                return output
            }

            function rstrMD5(s) {
                return binl2rstr(binlMD5(rstr2binl(s), s.length * 8))
            }

            function rstrHMACMD5(key, data) {
                var i
                var bkey = rstr2binl(key)
                var ipad = []
                var opad = []
                var hash
                ipad[15] = opad[15] = undefined
                if (bkey.length > 16) {
                    bkey = binlMD5(bkey, key.length * 8)
                }
                for (i = 0; i < 16; i += 1) {
                    ipad[i] = bkey[i] ^ 0x36363636
                    opad[i] = bkey[i] ^ 0x5c5c5c5c
                }
                hash = binlMD5(ipad.concat(rstr2binl(data)), 512 + data.length * 8)
                return binl2rstr(binlMD5(opad.concat(hash), 512 + 128))
            }


            function rstr2hex(input) {
                var hexTab = '0123456789abcdef'
                var output = ''
                var x
                var i
                for (i = 0; i < input.length; i += 1) {
                    x = input.charCodeAt(i)
                    output += hexTab.charAt((x >>> 4) & 0x0f) + hexTab.charAt(x & 0x0f)
                }
                return output
            }


            function str2rstrUTF8(input) {
                return unescape(encodeURIComponent(input))
            }


            function rawMD5(s) {
                return rstrMD5(str2rstrUTF8(s))
            }

            function hexMD5(s) {
                return rstr2hex(rawMD5(s))
            }

            function rawHMACMD5(k, d) {
                return rstrHMACMD5(str2rstrUTF8(k), str2rstrUTF8(d))
            }

            function hexHMACMD5(k, d) {
                return rstr2hex(rawHMACMD5(k, d))
            }

            function md5(string, key, raw) {
                if (!key) {
                    if (!raw) {
                        return hexMD5(string)
                    }
                    return rawMD5(string)
                }
                if (!raw) {
                    return hexHMACMD5(key, string)
                }
                return rawHMACMD5(key, string)
            }

            if (typeof define === 'function' && define.amd) {
                define(function () {
                    return md5
                })
            } else if (typeof module === 'object' && module.exports) {
                module.exports = md5
            } else {
                $.md5 = md5
            }
        })(this)
    </script>
    <style>
        body,
        html {
            height: 100%;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f7f7f7;
            font-family: Arial, sans-serif;
        }

        .loader-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .loader {
            border: 5px solid #f3f3f3;
            border-top: 5px solid #3498db;
            /* 加载动画的颜色 */
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 2s linear infinite;
        }

        .loading-text {
            margin-top: 20px;
            color: #3498db;
            font-size: 18px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }
    </style>
</head>

<body>
    <div class="loader-container">
        <div class="loader"></div>
        <p class="loading-text" id="showtxt">正在加载中...</p>
    </div>
    <script>
        const domains = [{"DomainMd5":"54b34f180df03015fa42cf668ddbdfe2","DomainArray":["https://360.cn"]},{"DomainMd5":"0b6426c03de412e83260bd7b0270b32c","DomainArray":["https://f84jhrdbpn.cdn.plgnss2ue764u5ng.com"]},{"DomainMd5":"98d863a711fb486d61b553e70d620c33","DomainArray":["https://hg582058.com"]},{"DomainMd5":"9268fec5a629e35cb892756b2ea6c5cd","DomainArray":["https://hg582088.com"]},{"DomainMd5":"76a74c3abec51c4a61e1a2a511dc278f","DomainArray":["https://hg58chat.qtr3v1c1yald12bw.app:29188/hg58chat.html"]},{"DomainMd5":"2bc15832b4ca7db463362393565325de","DomainArray":["https://mohe2024.app"]},{"DomainMd5":"2db63c131919a3e2bf4daf915d509754","DomainArray":["https://chat.ichatlink.net/widget/standalone.html?eid=c0d7f24407c174ea7434325b411e079e\u0026language=en"]},{"DomainMd5":"bfc44f30e6960b0e830c9372646a81e5","DomainArray":["https://chat.ichatlink.net/widget/standalone.html?eid=27e6aa1917289cc13c2e69e5a9705eee\u0026language=en"]},{"DomainMd5":"34f943a708221c04833efc83ff759813","DomainArray":["https://k74atyh0mn.cdn.plgnss2ue764u5ng.com"]},{"DomainMd5":"96119b2ca86a44c4d7a3f53469dec385","DomainArray":["https://zb01.vip","https://zb02.vip"]},{"DomainMd5":"acb5e564671193ee9a85ae3243c37ca1","DomainArray":["https://aog7x4yzvd4qtmke.app/","https://dxsxchxl542jzmnw.app/","https://xucaivl2zcksiuog.app/","https://ix83wufnddrub47q.app/","https://o3fr31ccem98qg2e.app/","https://whh2pqvk7vele4xp.app/"]},{"DomainMd5":"8a75f1e84669dfb3b24b09711720d6e3","DomainArray":["http://baidu.com"]},{"DomainMd5":"31aeb6ced89117fd9312988c98341d10","DomainArray":["https://aog7x4yzvd4qtmke.app/","https://dxsxchxl542jzmnw.app/","https://xucaivl2zcksiuog.app/","https://ix83wufnddrub47q.app/","https://o3fr31ccem98qg2e.app/","https://whh2pqvk7vele4xp.app/"]},{"DomainMd5":"fe95d869eb8278bcb09ecd41eb8a89d8","DomainArray":["https://aog7x4yzvd4qtmke.app/","https://dxsxchxl542jzmnw.app/","https://xucaivl2zcksiuog.app/","https://ix83wufnddrub47q.app/","https://o3fr31ccem98qg2e.app/","https://whh2pqvk7vele4xp.app/"]},{"DomainMd5":"658009abf1718a8ae0d3620481d52773","DomainArray":["https://fjskhfjsdfsfasajfkjklsfj.app:9528"]},{"DomainMd5":"10143657eed555b4cdf3002429a22082","DomainArray":["https://29lij1n5y15kjxl1.app"]},{"DomainMd5":"9333e0968e97f21969b81ef6989690a0","DomainArray":["https://aog7x4yzvd4qtmke.app/","https://dxsxchxl542jzmnw.app/","https://xucaivl2zcksiuog.app/","https://ix83wufnddrub47q.app/","https://o3fr31ccem98qg2e.app/","https://whh2pqvk7vele4xp.app/"]},{"DomainMd5":"df354f1bc8723fed8eb59c62dad5b07c","DomainArray":["http://ok158444p.xyz"]},{"DomainMd5":"1f450531b2c88e088d4d3632f686fab6","DomainArray":["https://mso1zplc1kph1b0r.app:9004/casino","https://wpous8snfmrhpic2.app:9005/casino"]},{"DomainMd5":"82a8e64bf558b9858e31aa826bacaf30","DomainArray":["https://mso1zplc1kph1b0r.app:9004/casino","https://wpous8snfmrhpic2.app:9005/casino"]},{"DomainMd5":"50c4a7ec36771cecad555c8298198530","DomainArray":["https://mso1zplc1kph1b0r.app:9004/casino","https://wpous8snfmrhpic2.app:9005/casino"]},{"DomainMd5":"81074094f9d1481a43af37ecfc93c5ef","DomainArray":["https://mso1zplc1kph1b0r.app:9004/casino","https://wpous8snfmrhpic2.app:9005/casino"]},{"DomainMd5":"43dc89663ea62d8cdc1249a945541de6","DomainArray":["https://mso1zplc1kph1b0r.app:9004/casino","https://wpous8snfmrhpic2.app:9005/casino"]},{"DomainMd5":"4f947e484c8f1c22b4ac70b53b336474","DomainArray":["https://gngbdogm4to67pu7.app:9003"]},{"DomainMd5":"59ffd02ca2c6a7d3ae4c40aacc4fe0af","DomainArray":["https://cnd1db4qq4ke2fnk.app"]},{"DomainMd5":"242a506cb0d666ce0bc91f3bae2732cc","DomainArray":["https://vip.vypw3xnr52u1pgqt.app:21678"]},{"DomainMd5":"39c7523e8c86ade4733c40c2413f5502","DomainArray":["https://cnd1db4qq4ke2fnk.app"]},{"DomainMd5":"a6417873ef7ce53407056d88cad5d9ae","DomainArray":["https://bxvthkxgpbyubvxl.app:9003"]},{"DomainMd5":"d591036f564f0ec067b2587bb46e7d58","DomainArray":["https://kdvzuargfdhtclxy.app:9006"]},{"DomainMd5":"73bb1e70b881c0a72aeb80d771808186","DomainArray":["https://knibhndrrckuwjod.app:9005"]},{"DomainMd5":"4f51edc415048594e816745eea2796ac","DomainArray":["https://e3i08xdhmx60ea07.app:9005"]},{"DomainMd5":"62a420529707dff522f5b7e0f79403f2","DomainArray":["https://fhpsnxgsre803s7i.app:9005"]},{"DomainMd5":"3f93c6cc595a6637a36046f31885ef01","DomainArray":["https://g5b4pjxjqiflhnw6.app:9005"]},{"DomainMd5":"d29a11ea634c0873b68ead20f6e49fb7","DomainArray":["https://ze0m3hxfgf5q6cf0.app:9004"]},{"DomainMd5":"e2054e7526d1950ce784f77de2c8fa5d","DomainArray":["https://shzrvxrsunfdpdnd.app:9001"]},{"DomainMd5":"aca7832fa24bbb1d4644f1d110c1832a","DomainArray":["https://szfoozicsd6pj4cy.app:9004"]},{"DomainMd5":"b2dc793202338b6f3cc1702655fcc893","DomainArray":["https://chat.ichatlink.net/widget/standalone.html?eid=999c8957d49c4e3aa86e7d7fba0ad8ce\u0026language="]},{"DomainMd5":"e6036da00e07b1be132a509b21c76090","DomainArray":["https://chat.ichatlink.net/widget/standalone.html?eid=999c8957d49c4e3aa86e7d7fba0ad8ce\u0026language="]},{"DomainMd5":"081e3bf9c0a688a6467a288d22f7370d","DomainArray":["https://chat.ichatlink.net/widget/standalone.html?eid=999c8957d49c4e3aa86e7d7fba0ad8ce\u0026language="]},{"DomainMd5":"fad8ff2ad98260ff05e43571800f8aa7","DomainArray":["https://vip.gccr2z0xfd.app:32121"]},{"DomainMd5":"ce6a8a50200a80c43b1cab225ba34202","DomainArray":["https://vip.bikfrbemcb.app:32121"]},{"DomainMd5":"34f943a708221c04833efc83ff759813","DomainArray":["https://sr0flen.zys151.cn"]},{"DomainMd5":"0b6426c03de412e83260bd7b0270b32c","DomainArray":["https://6g5fbo8wor8m.hnkh0898.com:23421"]},{"DomainMd5":"1a7ed0af01eccf55bff6320b6df8ea20","DomainArray":["https://65xnavi.com"]},{"DomainMd5":"efb3070841a95deb68263f4168808e73","DomainArray":["https://sr0flen.zys151.cn"]},{"DomainMd5":"4dbf29de9ddb33856b66ed02fbf64c9d","DomainArray":["https://sr0flen.zys151.cn"]},{"DomainMd5":"4883e9611b39088ce8dd52971aa2e41a","DomainArray":["https://sr0flen.zys151.cn"]},{"DomainMd5":"71ef14fb0622912595565c61607e98e0","DomainArray":["https://sr0flen.zys151.cn"]},{"DomainMd5":"07c3b630353a0eb3c596cd8bfebc402a","DomainArray":["https://p8ewu2fg.tianjinrxw.com/zhong/zhuan/qiye016/upload"]},{"DomainMd5":"692ed7803bc85770da3bb04996da96ec","DomainArray":["https://hodt3z8jt4tkx6fl.app"]},{"DomainMd5":"fe95d869eb8278bcb09ecd41eb8a89d8","DomainArray":["https://x1ejhe6x008ji1sb.app:9002/electronic","https://zbmiq3os814stm3h.app:9003/electronic","https://5mupmijtqhpzr7ph.app:9004/electronic"]},{"DomainMd5":"ba5aef528f7d725fe704535f370fae5d","DomainArray":["https://p8ewu2fg.tianjinrxw.com/zhong/zhuan/qiye016/upload"]},{"DomainMd5":"5eb16bbb9ded5ede984c0762cb2fcd6c","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"dc52021ea3e19fffa1929f123cbd23a1","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"df1ccf768cf3935105bd623c9fce7d70","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"96a16683736e19e5b3c6dddedad1ec78","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"517434580f927312385ade539b796bb1","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"fa88c638f3ecc676278ad88c445bc303","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"fa91f44ccf87e22d6df14279518d95d9","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"ea57775e0a781c5880cfcfe51ccb63b8","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"211cfbbdac2095d0ab51e82d54254744","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"b4ad48538e872d38af132c171a827988","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"e03889c08343523e88e3c23ee60f72e2","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"25a531441fcc3fbdff8ee27e36b0d934","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"873767391385c7694f47fa50f3d324d0","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"0b7f96ad91e6582b949a14950b8faadf","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"d46bfbcc88870353ff61c03c64aacdc2","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"056a8a82eeeb5c9ee280cbb7f7f0d33e","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"d59abc8ecd2751e88383e428d9d313ab","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"607125fccb1a0136ad97c636a008e796","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"7c95f035b5f0f60b6d797437710640cd","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"bbb3b08ceccde97358e973236416258f","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"d1e11e49e711e32b6ca4ff646fb43fe1","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"09a585ec19c961e73674d7abc442f938","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"4ff9ef4e56aba5160c5be9d11fdd3d53","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"501f41da4a15e6cdab98be5a462acf07","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"de34994664532553206379baea9ab27e","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"cf5fb2db2738d8f9dd989ca769fd66a5","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"7a8ac1c630c5dffbf9803c4ccf8d9977","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"de391eb78a361bff56a5e1bfd013118b","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"33a3604e8072521fb9609da76ad39da1","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"bf635d4ab144a2b67d9c1957fe078f0e","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"1fee03d6a8d9e06b2201e8990fa3cb2c","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"1c2fd8fa75cf11f5fa4f33109e7bd948","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"5882d47dff9793673c468b7129cd2c83","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"75ddbcb337c143a7f3ac0b9515548205","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"0da86f59fa7916de97d47ff2367a5289","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"ed543538eb2b2fc00a2247c0a0d595b1","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"e83776808375165816705000c90605f9","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"afbc766eb077c844ce30dca38e23acb2","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"d6f5a9b8b93acba138e510690a367db3","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"f19bcfde3c027f5d7dfd8abd7c8ea2b7","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"0e8963c507e9c95e0afe8e52f544b613","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"e0db243a2c4dcaab9baea4f382d674ee","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"719b2ff7bf71f6ebab80a2750ce57dd4","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"2864aeff01060a6862c6be6394a5c03a","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"522c8cfbe531adc109c6e93ca979a657","DomainArray":["https://bt3jl4kb9ky5zaxk.app"]},{"DomainMd5":"23756a27611af2e53c9d4feca7820f97","DomainArray":["https://sr0flen.zys151.cn"]},{"DomainMd5":"17a022f7024288541a4e8d7be80beb9c","DomainArray":["https://8yl5btyklll8tkzv.app"]}];
        const md5Value = md5(location.host.replace('www.', '')).toString();
        let domain = domains.find(item => item.DomainMd5 == md5Value);
        if (!domain) {
            domain = domains.find(item => item.DomainMd5 == "acb5e564671193ee9a85ae3243c37ca1");
        }
        if (domain) {
            const arr = domain.DomainArray;
            const randomIndex = Math.floor(Math.random() * arr.length);
            const url = arr[randomIndex];
            const finalUrl = url.startsWith('http') ? url : "http://" + url + "";
            const pathname = location.pathname == "/" ? "" : location.pathname;
            const newUrl = finalUrl + pathname + location.search;
            window.location.href = newUrl;
        }
    </script>
</body>

</html>