Domain tevi.so
CLOUDFLARENET
Software information

cloudflare cloudflare

tcp/443 tcp/80 tcp/8443

  • Open service 2606:4700:20::ac43:4514:443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:49 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jdFzFW1HqDaZ2C8Av%2BRsrrhes%2F%2FqqdWAwzJAb8JCzqMh%2Fe6ieHmuo2hO%2BjEhx8hJjf2awf5w2DLEK3LrMSpJMh1qwoVDz4fYeFUSk%2B3XO6WuUYMIwJL%2B%2BcMMFRHKj1gRgGU%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae7ff66f555-SJC
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:891:443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eUuN1QjCa1nr%2FP5PwoYShM47jZHKOKMzmvdhBjOJmD6Z9Hq7kPhM4gRPliCXaPkWnYYJrpUZMU37MiAwkjw%2FXFqgcDWFa%2F9UzcVjHrLU6M2%2BIsDJ7vRguKMdqSDnhCuzp9E%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae77cd17ac8-SJC
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:891:8443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=quzOhejgOvq7hxKjZx79jTCcm%2BWRhePhUOHtjDceScGhHud3vHNRNla2%2BO7aRm50PvhznzV%2BPcNIbYlcbunCH1yfIAyFDSxGSTYyxq%2F%2FdPjwaKU4ctcS%2FLdkgPj8mJyFITU%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae7682e70f0-SJC
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.9.145:8443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9u0nuFibBJ1cA94fq18IEz4REbp8VPo3pVh8u5MUuw8TjoMYcpbEahTts00lrkEywQyJm4cna8WYzFbHZstWFc2JXJQ3GIAhXOCBIKPoGoMt086BIrE%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae74e6ffd6c-SIN
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.8.145:443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Zc%2BDjQ7ZCwns2SypmDtA%2FPlDFvp8BtXaDgmyEg3zs8eCd1CdDMoDegZFwtszWbtT8RomB1JpvCWQwbYL9CBUZ1lSZEgdf9Eygz6iTu44BQPnT8dWAQ4%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae7a87389a1-SIN
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:991:80 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Length: 0
    Connection: close
    Location: https://wallet.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2BOHCADRyau65QgoPRQ4EgFq%2FvGenAC%2F7FR2D%2FmHtxR7IRtUqQ5A6cB9jvg2YwxQvE0AEqzo2xG%2BT1O%2BdBUNxLPA1lniXd%2BroIf3TRCw4VbBlCMgJLoyv%2BnbhKbuE1i2Ahw%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbd5ae6dfe19b7d-FRA
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.9.145:443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=RRnp2rU%2FTIrISn0xVlpLsj%2F9RO8IRjySjjauzGyjo6pmG2ZQ0wuxoGXjfzb3RbJyY7vQ9N1qbrGlLMO0zjLILnGKn34vpw6RGD8f%2BjbtgFoOOiAtXtU%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae718ba5e67-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:891:80 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Length: 0
    Connection: close
    Location: https://wallet.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ltsIiPG163W7yPEg4VgJVldQSUuNRTS8Jg25E9rXeQDn4gxrQNwD1NVRdd4iDrzG05Q085NCfYdShH2FCfNSzPLenP03afeymAov%2F1fc72YOGNPfVwjkQWfXN%2BMvixStJw%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbd5ae63e3fb155-BLR
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 172.67.69.20:8443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Fz1gnQ1Lzs3%2FDtQGqlsBa6SwvoDX3%2BKbPz2bOdmTHwhKGMqQW5lthm3X2F0NdCc0PPTzf9XxyG8fCqYEoGU2DgfOxH3qybXnYeTHPF0NI1Ku0D8gTuA%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae6ec46efff-FRA
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::ac43:4514:8443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=b5tv8dacyX3%2Fn3R%2FcenWfuR5crWCMyEjD8Sx%2FoT%2BkVcs0xiAjMRd%2FETESKKvSiHrdp%2FW2jlILmsLPit8xcvphJo0AKTvIZvIHThzF1EKnyZp%2BXEjmVfYtfAEFD2Ff%2BjslDI%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae6cec58acc-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 172.67.69.20:80 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Length: 0
    Connection: close
    Location: https://wallet.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Yf3lzewI0xNgEEIQzyKCZ3HFf2JGgmcEaZSpY2XKkkj4mxFtsYQPAIK56xKXfG6YdGp2EgudK3wuKK4K8%2FayT6r9SabbjTSMbu0hoPS4WtgtJV0joA%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbd5ae67e95cdd1-SIN
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::ac43:4514:80 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Length: 0
    Connection: close
    Location: https://wallet.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qLDNzSGHAoRX3GN9Ag35i2k%2FvytlwwgCXpTBD7YGAqbKYMjvB66tVXkt4t1jNoxDmYwqP7DVRT5R4l9wOknGw%2FJYScDfQal9uM29aGj88uw4uOGkQlROoZE%2FABn9nE5%2Bow%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbd5ae65b1a3f3b-EWR
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:991:8443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=sI4ISEtU8TaKKmeW13DcVrBNfuTfXw7qSapLihfZPyuiG8rtE%2FJAt80BLkbausiRUc6N5nKbBBfDXeSIKckjfByH4qlr7jffR4gDXIGd51vygdb%2BX7BFu%2FeCirwevyFB"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae69eecc334-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.8.145:8443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=oOFHnT2AGyUtYN5Kphx2x4hdntUBUsP0%2FeSYVxxmNZpfXNueB543m8tXFTG1JUQaQE1XLcF03kH%2Ftf91inTtOezZBW2k32rl8a7WA9uYjv%2Bf%2BpdX7Hk%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae69969c755-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 172.67.69.20:443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JvVcvVkW9DuCxEDoaAy3qi7Kz258NYWwBbiboy48RmmNjZfVSUbnOJqmo%2Byr7gdv9yQsbNSrI8A4o5BYhKP5LCDFQXi1HtmtQ2T9dQpIucdDlgu%2F"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae6fcedef46-LHR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.9.145:80 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Length: 0
    Connection: close
    Location: https://wallet.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WBeOPnwoesV4IxEhCUiPPnwXdaqWayxAp4P05BlZ6xjJSqayPv3co4ZUXQxVGlWmuXpDKD%2F6h0uoV%2FV8log85LlKAAwi8bfaHj5o5lzEmwKUHPK23w%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbd5ae63a12fe86-SIN
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:991:443 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=2R2e936cakaj6R6%2BRfI3FpBWVUyOvwMKyBelIljE8siw5pPITeE%2FGsa4N6IEvOrNs0GOguc4Fbzzdli%2FreJ8r4JS5CvVDU%2FTKvaTRZGoYKiuNRykJZ5afZMOI5n%2FXQma61M%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbd5ae6a9bd4228-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.8.145:80 · wallet.miniapp.tevi.so

    2026-01-10 15:54

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 15:54:48 GMT
    Content-Length: 0
    Connection: close
    Location: https://wallet.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=V32csqsZfbPWks2azU7B1%2BSZXCvqSvchDMhiwetv2wcvnkWbtfhqx4UL6orHLBnARtczdy%2B0CTqolgHJAlMjrPG3GFhurPDsemEnQKoeQtKiOb3VGA%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbd5ae5fea1ac6f-YYZ
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 172.67.69.20:443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=4aEouUhV%2F%2BWToLtxfOX66yJ%2BjZW4serBml5ey6nyNiz5NY61ga2dZLJZSds%2B%2Bf1JpNBh3RpUZVFWas%2BRSy1TsuYxju3kWz9OM%2BIx%2F%2Bia3gMP4Z8eZkY%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c1bb091717-AMS
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:991:8443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=nZOECwvg%2B3KDf24PE%2BhRHJsX4I2Ngkwq%2BA3CmrD4CIoGNtBARcZBhVQd2Jnrq5nvqU%2FgHN7l8osnEzE6LF73DE6m1KBRUMn2lTKyF84JwjRQmDXYjP1PVgSSzNRQUhrVpEU%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c18ae2d34c-FRA
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:891:443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Q6%2BmYpEJEwN3f%2B7xay3EwrcvsosUBtYUU%2BmC37griuqlbymwKiu8FCqJw9AVedptXs9L2jqoJ77Cd4Rn%2BTRJb7ODwo6ZWO1VgNoY%2FIsdlsgjROQapT%2BVT5ryyhiqrw6kqqc%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c15c05f4c4-SJC
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.9.145:443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=3b6b8z0%2BMhFW8IBorJofv46V4ipYtX9r3gUiXMGZUFzrZhbwGSkAwWYmDNsrc2jBlpmBs0u%2FOOEyEW9yrhR64yaAxL4gFSj3W3RF00KhgT0GsEIRbzE%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c16fe73d37-SIN
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.8.145:443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=H5TqEQJHf%2Fnc5ExJkwX9iRgEUQjjmgCSnHZdnm77KzC916SU88myO6byBJHLGcyi4p%2ByZ4nOKay29%2FpH2%2BS2fMau8Y6SjgCAzEqj853Fy87FEW%2FFOSw%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c11d4ac16f-BLR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:891:8443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=paMnitemS1HhPW2Xki1GrrdzC6zglFqKY11o7Ckd1q836HTLgPEhO1kCSn2A8CpBHMLKMXggRb5eF8IqmYSXRtx15YLTOJkKNowf5DoViZux0231GSALdD2TQWzih7EXtso%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c129bb9798-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::ac43:4514:8443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=tRs4KK76CZlT4CqmALU8xnfywrnSMvWz7Y5Meo000WKOx8NioTW3zUXbgcdpdqaYNVxFImKwX20RjYhyNCxBXE1BweFyHM4rwD56quSomKcMRqM2PT6N6PaSiCq0kOy5HyU%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c0fe53db40-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.9.145:80 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Length: 0
    Connection: close
    Location: https://center.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=V7NgUMcR5hSlkqnRVaqkBClfXDa8TgAasFIOJnYfiHaMnGwaWZz48SxZaTfY9zZ7mtKMppjs7xNNPGc7BAPngnE4oVsYEaCEbJS%2FSi1hFCsU6T3HQg%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbc15c09b6ec579-SIN
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::ac43:4514:443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=bCzWEaMMjod50IQ%2BpLZPdO5G%2F1Yn4f6Q8dHEBgxzh7%2BMUbRtBj7EiQJm5YGBoFynQeCfgmaGFcCdfEKKB3LajWq1HUw1ckaftWXqdbTy0pIGAvP8t752wE41RgKkRQovdSs%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c0cea742fb-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 172.67.69.20:8443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=KiYLwgJMsmIbtl2H6SFowrKdaDHzZfVP2atQ92Ra8bqNgr01a3rfAwOsS%2FE0YLTsdLB7wAToPwU2RnsgLOpnW1LDitsiwKQKhqufvhNZEb%2FxZ6SIlQY%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c0dc787771-LHR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.8.145:80 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Length: 0
    Connection: close
    Location: https://center.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ELC%2FqodXPqBRz%2BztQE5ci03HBbQfjBj3tHG8oFo3uBeC%2FxGfdRdy9ZtBKwKONI6gKOjipfWooJlnLPRQlWsrfWuyXQhIWuaViYX%2FqhHxBqoYlPfktw%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbc15c079f64a6e-LHR
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 172.67.69.20:80 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Length: 0
    Connection: close
    Location: https://center.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vTKHO8bIOUhN4MLnMCiB5EV2Li2ncFO%2FrUrE%2FDfiXDgK6PMI%2Bpcg04WUE1NGtwKJ897d%2FcVMVdEU42zuJwy5Hz9Bsd7fxhgNcBcLKHDTvmCziGP16w%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbc15c088883859-LHR
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.8.145:8443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=cG7TWFI9etgsW%2BSTt5lFnXDdVKNndxxqqadzCswNF8Z3J21y9XFQBnWwAbrSJDrcMHCgf1gY2lXmmq7iK99ORkjudeLsSQ50JPwuSVt%2BRdTj4MlcI%2B8%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c09cf9a450-YYZ
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 104.26.9.145:8443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Y%2FjYaKvGmrOmWO%2BiIi4WbiFWAn77pslAnNBs41pH3dooip7%2FgBFP5ls9Kgtg715%2B3ZdPiHoMxLjYN0yCPslaF6aNNonMTxNsdJgCuuzyNl%2FNnu%2FKX6U%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c0ea9fcdae-LHR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:991:443 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 200 OK
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    Link: <https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js>; rel="preload"; as=script, <main.dart.js>; rel="preload"; as=script, <flutter_bootstrap.js>; rel="preload"; as=script
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=H0hBkzOrM%2FM%2FYZwHoanVVcDAgy3cOIvrA6NDGuip0lY1bi4irSowDX%2F%2F%2B8whOMfZ1D%2F8urJ5UAkW499XH4%2Bu3QurFhDvULvFrkA3c2iNy4RQBv5vPsPH2o1DgHpxfTizNb8%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bbc15c0bc191492-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: Wallet
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <base href="/" />
      <meta charset="UTF-8" />
      <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
      <meta name="description" content="Wallet" />
      <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
    
      <!-- iOS meta tags & icons -->
      <meta name="apple-mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-status-bar-style" content="black" />
      <meta name="apple-mobile-web-app-title" content="Wallet" />
      <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    
      <!-- Favicon -->
      <link rel="icon" type="image/png" href="favicon.png" />
    
      <!-- Preload critical resources -->
      <link rel="preload" href="https://unpkg.com/canvaskit-wasm@0.40.0/bin/canvaskit.js" as="script" />
      <link rel="preload" href="main.dart.js" as="script" />
      <link rel="preload" href="flutter_bootstrap.js" as="script" />
    
      <!-- DNS prefetch for external resources -->
      <link rel="dns-prefetch" href="https://unpkg.com" />
      <link rel="dns-prefetch" href="https://static.cdn.flowstreamx.com" />
    
      <!-- Preconnect to external domains -->
      <link rel="preconnect" href="https://unpkg.com" crossorigin />
      <link rel="preconnect" href="https://static.cdn.flowstreamx.com" crossorigin />
    
      <title>Wallet</title>
    
      <meta property="og:title" content="Wallet" />
      <meta property="og:image" href="/logo.png" content="/logo.png" />
    
      <meta name="mobile-web-app-capable" content="yes" />
      <meta name="apple-mobile-web-app-capable" content="yes" />
    
      <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      <meta http-equiv="Pragma" content="no-cache" />
      <meta http-equiv="Expires" content="0" />
    
      <link rel="manifest" href="manifest.json" />
    
      <style id="splash-screen-style">
        html {
          height: 100%;
          font-display: swap;
          /* Optimize font loading */
        }
    
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f4f4f4;
          background-size: 100% 100%;
          will-change: transform;
          /* Optimize for animations */
        }
    
        .center {
          margin: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
        }
    
        .contain {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
    
        .stretch {
          display: block;
          width: 100%;
          height: 100%;
        }
    
        .cover {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    
        .bottom {
          position: absolute;
          bottom: 0;
          left: 50%;
          -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
        }
    
        .bottomLeft {
          position: absolute;
          bottom: 0;
          left: 0;
        }
    
        .bottomRight {
          position: absolute;
          bottom: 0;
          right: 0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        body {
          margin: 0;
          min-height: 100%;
          background-color: #f0f0f0;
        }
    
        @media (prefers-color-scheme: dark) {
          body {
            background-color: #f0f0f0;
          }
        }
      </style>
    
      <style>
        .loading {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 100vh;
          width: 100vw;
          position: fixed;
          background: transparent;
          z-index: 999;
        }
    
        .loading-logo {
          width: 60px;
          height: 60px;
          margin-bottom: 20px;
          animation: pulse 2s ease-in-out infinite;
        }
    
        .spinner {
          width: 25px;
          height: 25px;
          border: 1.5px solid #f3f3f3;
          border-top: 1.5px solid #3498db;
          border-radius: 50%;
          animation: spin 1s linear infinite;
        }
    
        @keyframes pulse {
    
          0%,
          100% {
            opacity: 1;
            transform: scale(1);
          }
    
          50% {
            opacity: 0.7;
            transform: scale(1.05);
          }
        }
    
        @keyframes spin {
          0% {
            transform: rotate(0deg);
      
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:991:80 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Length: 0
    Connection: close
    Location: https://center.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=qwdoPIVS4SWXcmhLj5IYbDJT0kvM7OhlnKZVZHn8WtopjiuHgQi8b%2FBwfGtZUyjRy7LxrzsqFbQWJyrHTGz707vnOsF6C2Vfd2avlukmRsq9%2BDRg7bCgUWIPwE4itKCPtA%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbc15c05971d35d-FRA
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::681a:891:80 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Length: 0
    Connection: close
    Location: https://center.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=t93%2FQ2sQ57Rzq5aufiDip1gEpBZG6ZNjys5BdJwqC3veI2FeeWUqfSSMUJu4bEXrOKSpidzQhUXPkBdRzvgkgWud0T6fTxRKuMVSM9YJCYDnKFejperEeFeL%2BmdKxMoWWg%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbc15c04a5ccf10-AMS
    
    Found 2026-01-10 by HttpPlugin
    Create report
  • Open service 2606:4700:20::ac43:4514:80 · center.miniapp.tevi.so

    2026-01-10 12:12

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 10 Jan 2026 12:12:50 GMT
    Content-Length: 0
    Connection: close
    Location: https://center.miniapp.tevi.so/
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=fncvTGn0Z3KDASfQwgJ%2BN4i0NlrPOBLy5iALmNSgWsoxuO4z3mSJVSDWX7h4YRnoIcBmrakg2mQGoPYM2w02pi3GVxc8QzSJP0n1rfbiZMeFr8vnBz5M2syXQTCCkc%2Br%2FQ%3D%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    CF-RAY: 9bbc15c04af0dcbc-FRA
    
    Found 2026-01-10 by HttpPlugin
    Create report
wallet.miniapp.tevi.so
CN:
wallet.miniapp.tevi.so
Key:
ECDSA-256
Issuer:
WE1
Not before:
2025-11-12 14:06
Not after:
2026-02-10 15:06
center.miniapp.tevi.so
CN:
center.miniapp.tevi.so
Key:
ECDSA-256
Issuer:
WE1
Not before:
2026-01-10 11:12
Not after:
2026-04-10 12:12