<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">bundle.load("main.bundle",()=&gt;{
    
    (function () {
        // open web debugger console
        if (typeof VConsole !== 'undefined') {
            window.vConsole = new VConsole();
        }

        var debug = window._CCSettings.debug;
        var splash = document.getElementById('splash');
        splash.style.display = 'block';
        var logo = document.getElementById('logo');
        logo.onmouseup = function () {
            if (YYGGames) YYGGames.navigate('Loading', 'logo');
        };

        function loadScript(moduleName, cb) {
            function scriptLoaded() {
                document.body.removeChild(domScript);
                domScript.removeEventListener('load', scriptLoaded, false);
                cb &amp;&amp; cb();
            }
            var domScript = document.createElement('script');
            domScript.async = true;
            domScript.src = moduleName;
            domScript.addEventListener('load', scriptLoaded, false);
            document.body.appendChild(domScript);
        }

       loadScript(debug ? 'cocos2d-js.js' : 'cocos2d-js-min.bc513.js', function () {
           if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
               loadScript(debug ? 'physics.js' : 'physics-min.js', window.boot);
           } else {
               window.boot();
           }
       });
   })();
})</pre></body></html>