// PlantUSDT Mini App - JavaScript (Polygon Network) const API_BASE = 'https://plantusdt.ddns.net'; window.API_BASE = API_BASE; let tg = window.Telegram.WebApp; let tgUser = tg.initDataUnsafe ? tg.initDataUnsafe.user : null; const PROJECT_WALLET = '0x6b2672E8b8A3D610AD3C148C70627f3b79D5cF76'; const NETWORK = 'Polygon'; const USDT_CONTRACT = '0xc2132D05D31c914a87C6611C10748AEb04B58e8F'; let timerInterval = null; let giveawayTimerInterval = null; let lastAdTime = 0; const AD_COOLDOWN = 5000; let interstitialAdsDisabled = false; let isLoading = false; let isDataLoaded = false; window.selectedCurrency = window.selectedCurrency || 'usdt'; window._latestAdCount = null; window._adCountTimestamp = null; window._isBanned = false; // ============================================ // BAN SCREEN // ============================================ function showBanScreen(reason) { if (window._isBanned) return; window._isBanned = true; try { if (timerInterval) { clearInterval(timerInterval); timerInterval = null; } if (giveawayTimerInterval) { clearInterval(giveawayTimerInterval); giveawayTimerInterval = null; } } catch (e) {} var ids = ['appContent','loadingMessage','fieldsContainer','dashboardStats','historyList']; ids.forEach(function(id) { var el = document.getElementById(id); if (el) el.style.display = 'none'; }); var banOverlay = document.createElement('div'); banOverlay.id = 'banScreen'; banOverlay.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:#0a0e17;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:32px 24px;text-align:center;z-index:999999;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#ccd6f0;'; banOverlay.innerHTML = '