<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        &lt;script&gt;
            var seqid = "10435bfbc9660d55356c8225b15c56b765ed611208417bb4bf9b247189a8f84d05e07fee34aeedafdf6d7807418a1fa1ea6facff31dc3b09cf657b4f4acffa5170f2f77e4fcb30221be7fb93e79e790d164cdb5e799276dc__captcha"
        &lt;/script&gt;
        &lt;script src="https://ssl.captcha.qq.com/TCaptcha.js"&gt;&lt;/script&gt;
        &lt;script&gt;
            var captcha = new TencentCaptcha('2017163193', function(res){
                var captchaResult = []
                captchaResult.push(res.ret)

                if(res.ret === 0){
                    captchaResult.push(res.ticket)
                    captchaResult.push(res.randstr)
                    captchaResult.push(seqid)
                }

                var content = captchaResult.join('\n')
                loadXMLDoc("/WafCaptcha", content)
            })

            function loadXMLDoc(servPath, content) {
                var xmlhttp = null;
                if (window.XMLHttpRequest) {
                    xmlhttp = new XMLHttpRequest();
                }
                else if (window.ActiveXObject) {
                    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                }

                if (xmlhttp != null) {
                    xmlhttp.open("POST", servPath, true);
                    xmlhttp.send(content);
                    xmlhttp.onreadystatechange = function() {
                        if (xmlhttp.readyState == 4) {
                            if (xmlhttp.status == 200) {
                                window.location.reload(true)
                            }
                        }
                    }
                }
            }

            captcha.show()

        &lt;/script&gt;
    
</pre></body></html>