{
  "LakeTokenSecurityPage": {
    "title": "Security Summary",
    "check_status": "Check Status",
    "check": "Check",
    "status": "Status",
    "security_features": {
      "contract_features": {
        "title": "Contract Features",
        "subtitle": "Full ERC-20 / BEP-20 Compliance",
        "description": "The contract implements all standard functions:",
        "functions": [
          "totalSupply()",
          "balanceOf(address)",
          "transfer(address recipient, uint256 amount)",
          "allowance(address owner, address spender)",
          "approve(address spender, uint256 amount)",
          "transferFrom(address sender, address recipient, uint256 amount)"
        ]
      },
      "fixed_supply": {
        "title": "Fixed Total Supply — No Minting or Burning",
        "description": "The entire LAKE token supply was minted at deployment.\nNo further minting is possible — the supply is permanently capped.\nNo burn functions included.",
        "benefit": "Protects investors from inflation and supply manipulation."
      },
      "no_ownership": {
        "title": "No Ownership — Control Fully Renounced",
        "description": "The contract has no owner functions.\nNo privileged addresses exist.\nNo ability to pause trading, blacklist addresses, or alter balances.",
        "benefit": "Eliminates risks of centralization, rug pulls, or admin abuse."
      },
      "no_external_calls": {
        "title": "No External Calls or Dependencies",
        "description": "The contract does not call any external contracts.\nNo use of oracles, third-party contracts, or upgradeable proxies.",
        "benefit": "Strong resistance to external attacks and dependency failures."
      },
      "safe_arithmetic": {
        "title": "Safe Arithmetic",
        "description": "Built with Solidity 0.8.x, which includes built-in overflow/underflow protection.\nNo need for external libraries like SafeMath.",
        "benefit": "Removes classic arithmetic vulnerabilities."
      },
      "gas_optimizations": {
        "title": "Gas Optimisations",
        "description": "Functions are optimized for minimal gas usage.\ninternal, pure, and view modifiers used where applicable.\nStructured according to Solidity best practices.",
        "benefit": "Lower transaction costs for users and exchanges."
      },
      "verified": {
        "title": "Fully Verified on BscScan",
        "description": "The contract's source code is publicly available.\nOn-chain bytecode matches the published source code.",
        "benefit": "Promotes transparency, auditability, and community trust."
      }
    },
    "security_checks": {
      "backdoors": "Backdoors",
      "hidden_mint_burn": "Hidden Mint/Burn Functions",
      "blacklisting": "Blacklisting / Whitelisting",
      "pausing": "Pausing Functions",
      "fees": "Fee Mechanisms / Taxes",
      "external_calls": "External Calls",
      "upgradeable_proxy": "Upgradeable Proxy",
      "none": "None"
    }
  }
} 