

<!DOCTYPE html>
<html>
<head>
  <title>Everyplay Mobile</title>
  <meta charset="UTF-8">
  <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
  <meta name="apple-mobile-web-app-capable" content="yes" />
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  <meta name="format-detection" content="telephone=no" />
  <style id="pageloadingstyle">
    .loading-spinner {
      display:inline-block;
      width:30px;
      height:30px;
      border-radius:30px;
      border:2px solid transparent;
      border-color:rgba(82,99,118,0.2);
      border-top-color:#0cc;
      -webkit-animation:spin 1s linear infinite;
      animation:spin 1s linear infinite;
      box-sizing: border-box;
    }
    .global-loading-spinner{
      position: fixed;
      top: 50%;
      left: 50%;
      background: #FFF;
      width: 50px;
      height: 50px;
      margin-top: -25px;
      margin-left: -25px;
      padding: 10px;
      border-radius: 25px;
      box-sizing: border-box;
    }

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

      100%{
        -webkit-transform:rotate(360deg)
      }
    }

    @keyframes spin{
      0% {
        transform:rotate(0deg)
      }
      100% {
        transform:rotate(360deg)
      }
    }
    #main {
      display: none;
    }
  </style>
</head>
<body style="background-color: #E5E5E6;">
  <div id="pageloading" class="page-loading global-loading-spinner">
    <div class="loading-spinner"></div>
  </div>
  <div  id="main"></div>
  <script type="text/javascript">
    window.webview_events = {};
    window.webview_events.process = function () {
      // TODO log these
    };


    // Env specific assets path
    
    window.CDN = "https://static.everyplay.com/mobile/";
    window.ASSETS_BASE = "https://static.everyplay.com/mobile/assets/";
    window.VERSION = "6.0.43";
  </script>

  <!-- OLD:SDK -->

  <script type="text/javascript" src="/mobile_main-6.0.43.js?epkey=js&old=.js"></script>
</body>
</html>
