ETH Price: $3,330.48 (-1.33%)
Gas: 9 Gwei

Contract

0x125518BA3bBCC836EeA4c520a086EF297706E999
 

Overview

ETH Balance

0.20474461803382322 ETH

Eth Value

$681.90 (@ $3,330.48/ETH)

More Info

Private Name Tags

TokenTracker

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Approve204098212024-07-29 4:26:5930 hrs ago1722227219IN
0x125518BA...97706E999
0 ETH0.000056891.21016177
Approve203918792024-07-26 16:20:233 days ago1722010823IN
0x125518BA...97706E999
0 ETH0.000183013.87914905
Approve203742902024-07-24 5:23:596 days ago1721798639IN
0x125518BA...97706E999
0 ETH0.000132442.82084153
Approve202954732024-07-13 5:23:2317 days ago1720848203IN
0x125518BA...97706E999
0 ETH0.000103612.19342024
Approve202571062024-07-07 20:45:4722 days ago1720385147IN
0x125518BA...97706E999
0 ETH0.000058721.2446844
Transfer202537382024-07-07 9:27:5923 days ago1720344479IN
0x125518BA...97706E999
0 ETH0.000126591.96877047
Approve202160122024-07-02 3:00:3528 days ago1719889235IN
0x125518BA...97706E999
0 ETH0.000106512.25470819
Approve199962992024-06-01 10:13:4759 days ago1717236827IN
0x125518BA...97706E999
0 ETH0.000270615.7287275
Approve199468862024-05-25 12:27:1165 days ago1716640031IN
0x125518BA...97706E999
0 ETH0.00040728.62020444
Approve198658842024-05-14 4:31:5977 days ago1715661119IN
0x125518BA...97706E999
0 ETH0.000187143.96165019
Approve198610352024-05-13 12:16:1177 days ago1715602571IN
0x125518BA...97706E999
0 ETH0.000416658.82007818
Approve198393362024-05-10 11:28:3580 days ago1715340515IN
0x125518BA...97706E999
0 ETH0.000239515.07676695
Approve198065842024-05-05 21:30:2385 days ago1714944623IN
0x125518BA...97706E999
0 ETH0.000203974.32336058
Approve197795562024-05-02 2:48:1189 days ago1714618091IN
0x125518BA...97706E999
0 ETH0.000305326.4716646
Approve196772512024-04-17 19:21:59103 days ago1713381719IN
0x125518BA...97706E999
0 ETH0.0006988914.79495988
Approve196542652024-04-14 14:07:11106 days ago1713103631IN
0x125518BA...97706E999
0 ETH0.0006136113.05260624
Approve196313242024-04-11 8:55:23110 days ago1712825723IN
0x125518BA...97706E999
0 ETH0.0008499717.99298345
Transfer195236832024-03-27 5:43:23125 days ago1711518203IN
0x125518BA...97706E999
0 ETH0.0013482920.96820171
Approve195025442024-03-24 6:10:59128 days ago1711260659IN
0x125518BA...97706E999
0 ETH0.0006717714.22068507
Approve194633322024-03-18 18:03:11133 days ago1710784991IN
0x125518BA...97706E999
0 ETH0.0024689152.30412494
Transfer194633212024-03-18 18:00:59133 days ago1710784859IN
0x125518BA...97706E999
0 ETH0.0034031352.92420371
Approve194454312024-03-16 5:36:47136 days ago1710567407IN
0x125518BA...97706E999
0 ETH0.0015159532.09118927
Approve194382012024-03-15 5:15:11137 days ago1710479711IN
0x125518BA...97706E999
0 ETH0.0020203742.82353289
Approve194379432024-03-15 4:22:35137 days ago1710476555IN
0x125518BA...97706E999
0 ETH0.0026064255.17534415
Approve194299382024-03-14 1:16:59138 days ago1710379019IN
0x125518BA...97706E999
0 ETH0.0021501745.57482616
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x8d292461...945874F14
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Token

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : X0.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.4;

abstract contract Context {

    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IERC20 {

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {codehash := extcodehash(account)}
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success,) = recipient.call{ value : amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{ value : weiValue}(data);
        if (success) {
            return returndata;
        } else {

            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Ownable is Context {
    address public _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function waiveOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function getTime() public view returns (uint256) {
        return block.timestamp;
    }

}

interface IUniswapV2Factory {

    function getPair(address tokenA, address tokenB) external view returns (address pair);

    function createPair(address tokenA, address tokenB) external returns (address pair);

}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);


}

interface IUniswapV2Router02 is IUniswapV2Router01 {

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


contract Token is Context, IERC20, Ownable {

    using SafeMath for uint256;
    using Address for address;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address payable public marketingWalletAddress = payable(0x7c06BF1Bcf6f76962066619eF72021DC4b3BF1C1);
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    mapping (address => uint256) _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) public isExcludedFromFee;
    mapping (address => bool) public isMarketPair;


    uint256 public _totalTaxIfBuying = 0;
    uint256 public _totalTaxIfSelling = 0;

    uint256 private _totalSupply;
    uint256 private _minimumTokensBeforeSwap = 0;



    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapPair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public swapAndLiquifyByLimitOnly = false;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SwapETHForTokens(
        uint256 amountIn,
        address[] path
    );

    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }


    constructor (
    ) payable {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _name = "X0";
        _symbol = "X0";
        _decimals = 0;
        _owner = 0xD15fE96844b51622E36a25EfFD3bB04EC0Ce02eA;
        _totalSupply = 10000000000000000000000000000000000000000000000000000000000000000000000000000;
        _minimumTokensBeforeSwap = 1000000000000000000000000000;
        uniswapV2Router = _uniswapV2Router;
        _allowances[address(this)][address(uniswapV2Router)] = _totalSupply;
        isExcludedFromFee[_owner] = true;
        isExcludedFromFee[address(this)] = true;
        isExcludedFromFee[marketingWalletAddress] = true;

        isMarketPair[address(uniswapPair)] = true;

        _balances[_owner] = _totalSupply;
        emit Transfer(address(0), _owner, _totalSupply);
    }


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

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

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function minimumTokensBeforeSwapAmount() public view returns (uint256) {
        return _minimumTokensBeforeSwap;
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function setMarketPairStatus(address account, bool newValue) public onlyOwner {
        isMarketPair[account] = newValue;
    }

    function setNumTokensBeforeSwap(uint256 newLimit) external onlyOwner() {
        _minimumTokensBeforeSwap = newLimit;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setSwapAndLiquifyByLimitOnly(bool newValue) public onlyOwner {
        swapAndLiquifyByLimitOnly = newValue;
    }

    function setFee(uint256 buy,uint256 sell) public onlyOwner {
        _totalTaxIfBuying = buy;
        _totalTaxIfSelling = sell;
    }

    function setMarketAddress(address addr) public onlyOwner {
        marketingWalletAddress = payable(addr);
    }

    function getCirculatingSupply() public view returns (uint256) {
        return _totalSupply.sub(balanceOf(deadAddress));
    }

    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _transfer(address sender, address recipient, uint256 amount) private returns (bool) {

        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        

        if(inSwapAndLiquify)
        {
            return _basicTransfer(sender, recipient, amount);
        }
        else
        {

            uint256 contractTokenBalance = balanceOf(address(this));
            bool overMinimumTokenBalance = contractTokenBalance >= _minimumTokensBeforeSwap;

            if (overMinimumTokenBalance && !inSwapAndLiquify && !isMarketPair[sender] && swapAndLiquifyEnabled)
            {
                if(swapAndLiquifyByLimitOnly)
                    contractTokenBalance = _minimumTokensBeforeSwap;
                swapAndLiquify(contractTokenBalance);
            }

            _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");

            uint256 finalAmount = (isExcludedFromFee[sender] || isExcludedFromFee[recipient]) ?
                                         amount : takeFee(sender, recipient, amount);


            _balances[recipient] = _balances[recipient].add(finalAmount);

            emit Transfer(sender, recipient, finalAmount);
            return true;
        }
    }

    function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
        return true;
    }


    function swapAndLiquify(uint256 tAmount) private lockTheSwap {

        // swap token -> eth
        swapTokensForEth(tAmount);
        uint256 amountReceived = address(this).balance;
         
        if(amountReceived > 0)
            transferToAddressETH(marketingWalletAddress, amountReceived);

    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this), // The contract
            block.timestamp
        );

        emit SwapTokensForETH(tokenAmount, path);
    }



    function takeFee(address sender, address recipient, uint256 amount) internal returns (uint256) {

        uint256 feeAmount = 0;
        if(isMarketPair[sender]) {
            feeAmount = amount.mul(_totalTaxIfBuying).div(100);
        }
        else if(isMarketPair[recipient]) {
            feeAmount = amount.mul(_totalTaxIfSelling).div(100);
        }
        if(feeAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(feeAmount);
            emit Transfer(sender, address(this), feeAmount);
        }

        return amount.sub(feeAmount);
    }

   
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","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":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalTaxIfBuying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalTaxIfSelling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMarketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokensBeforeSwapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setMarketAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newValue","type":"bool"}],"name":"setMarketPairStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setNumTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newValue","type":"bool"}],"name":"setSwapAndLiquifyByLimitOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyByLimitOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"waiveOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063844d591c1161010d578063b2bdfa7b116100a0578063da00097d1161006f578063da00097d1461075a578063dd62ed3e14610785578063f0cd1dac146107c2578063f2fde38b146107ed578063fae926121461081657610204565b8063b2bdfa7b146106b0578063c49b9a80146106db578063c816841b14610704578063d158272d1461072f57610204565b8063a073d37f116100dc578063a073d37f146105e2578063a457c2d71461060d578063a5d69d1f1461064a578063a9059cbb1461067357610204565b8063844d591c1461054c5780638da5cb5b14610575578063914eb66a146105a057806395d89b41146105b757610204565b8063395093511161019057806352f7c9881161015f57806352f7c988146104535780635342acb41461047c578063557ed1ba146104b957806370a08231146104e457806382eefb431461052157610204565b806339509351146103855780633b97084a146103c25780633ecad271146103eb5780634a74bb021461042857610204565b806323b872dd116101cc57806323b872dd146102c757806327c8f835146103045780632b112e491461032f578063313ce5671461035a57610204565b806306fdde0314610209578063095ea7b3146102345780631694505e1461027157806318160ddd1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e61083f565b60405161022b9190612b7b565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906127d3565b6108d1565b6040516102689190612b45565b60405180910390f35b34801561027d57600080fd5b506102866108ef565b6040516102939190612b60565b60405180910390f35b3480156102a857600080fd5b506102b1610915565b6040516102be9190612cbd565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e99190612740565b61091f565b6040516102fb9190612b45565b60405180910390f35b34801561031057600080fd5b506103196109f9565b6040516103269190612b0f565b60405180910390f35b34801561033b57600080fd5b50610344610a1f565b6040516103519190612cbd565b60405180910390f35b34801561036657600080fd5b5061036f610a65565b60405161037c9190612d62565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906127d3565b610a7c565b6040516103b99190612b45565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612840565b610b2f565b005b3480156103f757600080fd5b50610412600480360381019061040d91906126a6565b610bce565b60405161041f9190612b45565b60405180910390f35b34801561043457600080fd5b5061043d610bee565b60405161044a9190612b45565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061286d565b610c01565b005b34801561048857600080fd5b506104a3600480360381019061049e91906126a6565b610ca8565b6040516104b09190612b45565b60405180910390f35b3480156104c557600080fd5b506104ce610cc8565b6040516104db9190612cbd565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906126a6565b610cd0565b6040516105189190612cbd565b60405180910390f35b34801561052d57600080fd5b50610536610d19565b6040516105439190612cbd565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612793565b610d1f565b005b34801561058157600080fd5b5061058a610e0f565b6040516105979190612b0f565b60405180910390f35b3480156105ac57600080fd5b506105b5610e38565b005b3480156105c357600080fd5b506105cc610f8b565b6040516105d99190612b7b565b60405180910390f35b3480156105ee57600080fd5b506105f761101d565b6040516106049190612cbd565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906127d3565b611027565b6040516106419190612b45565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612813565b6110f4565b005b34801561067f57600080fd5b5061069a600480360381019061069591906127d3565b6111a6565b6040516106a79190612b45565b60405180910390f35b3480156106bc57600080fd5b506106c56111c5565b6040516106d29190612b0f565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612813565b6111e9565b005b34801561071057600080fd5b506107196112d2565b6040516107269190612b0f565b60405180910390f35b34801561073b57600080fd5b506107446112f8565b6040516107519190612b2a565b60405180910390f35b34801561076657600080fd5b5061076f61131e565b60405161077c9190612b45565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a79190612700565b611331565b6040516107b99190612cbd565b60405180910390f35b3480156107ce57600080fd5b506107d76113b8565b6040516107e49190612cbd565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f91906126a6565b6113be565b005b34801561082257600080fd5b5061083d600480360381019061083891906126a6565b611580565b005b60606001805461084e90612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90612fc9565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108e56108de611659565b8484611661565b6001905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b54905090565b600061092c84848461182c565b506109ee84610939611659565b6109e9856040518060600160405280602881526020016133bd60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061099f611659565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd09092919063ffffffff16565b611661565b600190509392505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a60610a4f600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610cd0565b600b54611d3490919063ffffffff16565b905090565b6000600360009054906101000a900460ff16905090565b6000610b25610a89611659565b84610b208560066000610a9a611659565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7e90919063ffffffff16565b611661565b6001905092915050565b610b37611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90612c3d565b60405180910390fd5b80600c8190555050565b60086020528060005260406000206000915054906101000a900460ff1681565b600e60159054906101000a900460ff1681565b610c09611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90612c3d565b60405180910390fd5b8160098190555080600a819055505050565b60076020528060005260406000206000915054906101000a900460ff1681565b600042905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a5481565b610d27611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90612c3d565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e40611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060028054610f9a90612fc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc690612fc9565b80156110135780601f10610fe857610100808354040283529160200191611013565b820191906000526020600020905b815481529060010190602001808311610ff657829003601f168201915b5050505050905090565b6000600c54905090565b60006110ea611034611659565b846110e5856040518060600160405280602581526020016133e5602591396006600061105e611659565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd09092919063ffffffff16565b611661565b6001905092915050565b6110fc611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612c3d565b60405180910390fd5b80600e60166101000a81548160ff02191690831515021790555050565b60006111ba6111b3611659565b848461182c565b506001905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111f1611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590612c3d565b60405180910390fd5b80600e60156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516112c79190612b45565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60169054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6113c6611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90612bbd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611588611659565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90612c3d565b60405180910390fd5b80600360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890612c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890612bdd565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161181f9190612cbd565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490612c7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612b9d565b60405180910390fd5b60008211611950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194790612c5d565b60405180910390fd5b600e60149054906101000a900460ff161561197757611970848484611ddc565b9050611cc9565b600061198230610cd0565b90506000600c5482101590508080156119a85750600e60149054906101000a900460ff16155b80156119fe5750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a165750600e60159054906101000a900460ff165b15611a4057600e60169054906101000a900460ff1615611a3657600c5491505b611a3f82611faf565b5b611ac9846040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd09092919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611baf5750600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611bc357611bbe87878761202d565b611bc5565b845b9050611c1981600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7e90919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cb99190612cbd565b60405180910390a3600193505050505b9392505050565b6000838311158290611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f9190612b7b565b60405180910390fd5b5060008385611d279190612eb3565b9050809150509392505050565b6000611d7683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cd0565b905092915050565b6000808284611d8d9190612dd2565b905083811015611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990612bfd565b60405180910390fd5b8091505092915050565b6000611e67826040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cd09092919063ffffffff16565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611efc82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7e90919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f9c9190612cbd565b60405180910390a3600190509392505050565b6001600e60146101000a81548160ff021916908315150217905550611fd381612254565b6000479050600081111561200e5761200d600360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826124df565b5b506000600e60146101000a81548160ff02191690831515021790555050565b60008060009050600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120b5576120ae60646120a06009548661252a90919063ffffffff16565b6125a590919063ffffffff16565b9050612133565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121325761212f6064612121600a548661252a90919063ffffffff16565b6125a590919063ffffffff16565b90505b5b60008111156122375761218e81600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7e90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161222e9190612cbd565b60405180910390a35b61224a8184611d3490919063ffffffff16565b9150509392505050565b6000600267ffffffffffffffff811115612271576122706130b7565b5b60405190808252806020026020018201604052801561229f5781602001602082028036833780820191505090505b50905030816000815181106122b7576122b6613088565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561235957600080fd5b505afa15801561236d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061239191906126d3565b816001815181106123a5576123a4613088565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061240c30600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611661565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612470959493929190612d08565b600060405180830381600087803b15801561248a57600080fd5b505af115801561249e573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516124d3929190612cd8565b60405180910390a15050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612525573d6000803e3d6000fd5b505050565b60008083141561253d576000905061259f565b6000828461254b9190612e59565b905082848261255a9190612e28565b1461259a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259190612c1d565b60405180910390fd5b809150505b92915050565b60006125e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506125ef565b905092915050565b60008083118290612636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262d9190612b7b565b60405180910390fd5b50600083856126459190612e28565b9050809150509392505050565b60008135905061266181613377565b92915050565b60008151905061267681613377565b92915050565b60008135905061268b8161338e565b92915050565b6000813590506126a0816133a5565b92915050565b6000602082840312156126bc576126bb6130e6565b5b60006126ca84828501612652565b91505092915050565b6000602082840312156126e9576126e86130e6565b5b60006126f784828501612667565b91505092915050565b60008060408385031215612717576127166130e6565b5b600061272585828601612652565b925050602061273685828601612652565b9150509250929050565b600080600060608486031215612759576127586130e6565b5b600061276786828701612652565b935050602061277886828701612652565b925050604061278986828701612691565b9150509250925092565b600080604083850312156127aa576127a96130e6565b5b60006127b885828601612652565b92505060206127c98582860161267c565b9150509250929050565b600080604083850312156127ea576127e96130e6565b5b60006127f885828601612652565b925050602061280985828601612691565b9150509250929050565b600060208284031215612829576128286130e6565b5b60006128378482850161267c565b91505092915050565b600060208284031215612856576128556130e6565b5b600061286484828501612691565b91505092915050565b60008060408385031215612884576128836130e6565b5b600061289285828601612691565b92505060206128a385828601612691565b9150509250929050565b60006128b983836128d4565b60208301905092915050565b6128ce81612ef9565b82525050565b6128dd81612ee7565b82525050565b6128ec81612ee7565b82525050565b60006128fd82612d8d565b6129078185612db0565b935061291283612d7d565b8060005b8381101561294357815161292a88826128ad565b975061293583612da3565b925050600181019050612916565b5085935050505092915050565b61295981612f0b565b82525050565b61296881612f4e565b82525050565b61297781612f60565b82525050565b600061298882612d98565b6129928185612dc1565b93506129a2818560208601612f96565b6129ab816130eb565b840191505092915050565b60006129c3602383612dc1565b91506129ce826130fc565b604082019050919050565b60006129e6602683612dc1565b91506129f18261314b565b604082019050919050565b6000612a09602283612dc1565b9150612a148261319a565b604082019050919050565b6000612a2c601b83612dc1565b9150612a37826131e9565b602082019050919050565b6000612a4f602183612dc1565b9150612a5a82613212565b604082019050919050565b6000612a72602083612dc1565b9150612a7d82613261565b602082019050919050565b6000612a95602983612dc1565b9150612aa08261328a565b604082019050919050565b6000612ab8602583612dc1565b9150612ac3826132d9565b604082019050919050565b6000612adb602483612dc1565b9150612ae682613328565b604082019050919050565b612afa81612f37565b82525050565b612b0981612f41565b82525050565b6000602082019050612b2460008301846128e3565b92915050565b6000602082019050612b3f60008301846128c5565b92915050565b6000602082019050612b5a6000830184612950565b92915050565b6000602082019050612b75600083018461295f565b92915050565b60006020820190508181036000830152612b95818461297d565b905092915050565b60006020820190508181036000830152612bb6816129b6565b9050919050565b60006020820190508181036000830152612bd6816129d9565b9050919050565b60006020820190508181036000830152612bf6816129fc565b9050919050565b60006020820190508181036000830152612c1681612a1f565b9050919050565b60006020820190508181036000830152612c3681612a42565b9050919050565b60006020820190508181036000830152612c5681612a65565b9050919050565b60006020820190508181036000830152612c7681612a88565b9050919050565b60006020820190508181036000830152612c9681612aab565b9050919050565b60006020820190508181036000830152612cb681612ace565b9050919050565b6000602082019050612cd26000830184612af1565b92915050565b6000604082019050612ced6000830185612af1565b8181036020830152612cff81846128f2565b90509392505050565b600060a082019050612d1d6000830188612af1565b612d2a602083018761296e565b8181036040830152612d3c81866128f2565b9050612d4b60608301856128e3565b612d586080830184612af1565b9695505050505050565b6000602082019050612d776000830184612b00565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612ddd82612f37565b9150612de883612f37565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e1d57612e1c612ffb565b5b828201905092915050565b6000612e3382612f37565b9150612e3e83612f37565b925082612e4e57612e4d61302a565b5b828204905092915050565b6000612e6482612f37565b9150612e6f83612f37565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ea857612ea7612ffb565b5b828202905092915050565b6000612ebe82612f37565b9150612ec983612f37565b925082821015612edc57612edb612ffb565b5b828203905092915050565b6000612ef282612f17565b9050919050565b6000612f0482612f17565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612f5982612f72565b9050919050565b6000612f6b82612f37565b9050919050565b6000612f7d82612f84565b9050919050565b6000612f8f82612f17565b9050919050565b60005b83811015612fb4578082015181840152602081019050612f99565b83811115612fc3576000848401525b50505050565b60006002820490506001821680612fe157607f821691505b60208210811415612ff557612ff4613059565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61338081612ee7565b811461338b57600080fd5b50565b61339781612f0b565b81146133a257600080fd5b50565b6133ae81612f37565b81146133b957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e4bb12f223de84706e15618eca51103e10304e66e71c931a45a6e4ab079e181a64736f6c63430008070033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.