ETH Price: $3,251.80 (+2.42%)
Gas: 3 Gwei

Token

ROBO PEPE (ROBOPEPE)
 

Overview

Max Total Supply

1,000,000,000 ROBOPEPE

Holders

198

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,604.432861798202679961 ROBOPEPE

Value
$0.00
0xa0443F8A74E3B134d88F7F4BD054Fa1e6b837244
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:
ROBOPEPE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-12
*/

// SPDX-License-Identifier: MIT
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: contracts/Robopepe.sol


pragma solidity 0.8.19;


contract ROBOPEPE is Context, IERC20Metadata, Ownable, ReentrancyGuard {

    IUniswapV2Router02 private immutable uniswapRouter;
    address private immutable uniswapPair;

    uint256 public buyFee;
    uint256 public sellFee;
    mapping(address => bool) public Addresslist;

    string private _name;
    string private _symbol;
    uint8 private _decimals = 18;
    uint256 private _totalSupply;

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

    constructor(
        string memory _tokenName,
        string memory _tokensymbol,
        uint256 initialSupply,
        address _uniswapRouter
    ) {
        _name = _tokenName;
        _symbol = _tokensymbol;

        _totalSupply = initialSupply * 10**_decimals;
        _balances[_msgSender()] = _totalSupply;

        uniswapRouter = IUniswapV2Router02(_uniswapRouter);
        uniswapPair = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH());

        buyFee = 0;
        sellFee = 0;

        Addresslist[_msgSender()] = true;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    event TokenChargedFees(address indexed sender, uint256 amount, uint256 timestamp);

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

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

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

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

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

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

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

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

    function _transfer(address sender, address recipient, uint256 amount) internal {
        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");

        uint256 senderBalance = this.balanceOf(sender);
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");

        uint256 chargeAmount = 0;
        uint256 transferAmount = amount;

        // Check if the sender or recipient is not in the list of addresses  
        if (!Addresslist[sender] && !Addresslist[recipient]) {
            // Buy
            if (sender == uniswapPair && buyFee > 0) {
                chargeAmount = amount * buyFee / 100;
            // Sell
            } else if (recipient == uniswapPair && sellFee > 0) {
                chargeAmount = amount * sellFee / 100;
            // Regular transfers (no fee)
            }

            if (chargeAmount > 0) {
                transferAmount = transferAmount - chargeAmount;
                _balances[owner()] = _balances[owner()] + chargeAmount;
                emit TokenChargedFees(sender, chargeAmount, block.timestamp);
            }
        }

        _balances[sender] = senderBalance - amount;
        _balances[recipient] = _balances[recipient] + transferAmount;

        emit Transfer(sender, recipient, transferAmount);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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 setBuyFee(uint256 newBuyFee) external onlyOwner {        
        buyFee = newBuyFee;
    }

    function setSellFee(uint256 newSellFee) external onlyOwner {        
        sellFee = newSellFee;
    }

    function updateAdress(address account, bool status) external onlyOwner {
        Addresslist[account] = status;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokensymbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_uniswapRouter","type":"address"}],"stateMutability":"nonpayable","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":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokenChargedFees","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":"address","name":"","type":"address"}],"name":"Addresslist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":[],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateAdress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526007805460ff191660121790553480156200001e57600080fd5b5060405162001684380380620016848339810160408190526200004191620003bc565b6200004c336200028a565b6001805560056200005e8582620004d1565b5060066200006d8482620004d1565b50600754620000819060ff16600a620006b2565b6200008d9083620006ca565b600881905533600090815260096020908152604091829020929092556001600160a01b0383166080819052815163c45a015560e01b81529151909263c45a015592600480820193918290030181865afa158015620000ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001159190620006e4565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000165573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018b9190620006e4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ff9190620006e4565b6001600160a01b031660a0526000600281905560038190553380825260046020526040909120805460ff191660011790556001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200027891815260200190565b60405180910390a35050505062000702565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200030257600080fd5b81516001600160401b03808211156200031f576200031f620002da565b604051601f8301601f19908116603f011681019082821181831017156200034a576200034a620002da565b816040528381526020925086838588010111156200036757600080fd5b600091505b838210156200038b57858201830151818301840152908201906200036c565b600093810190920192909252949350505050565b80516001600160a01b0381168114620003b757600080fd5b919050565b60008060008060808587031215620003d357600080fd5b84516001600160401b0380821115620003eb57600080fd5b620003f988838901620002f0565b955060208701519150808211156200041057600080fd5b506200041f87828801620002f0565b9350506040850151915062000437606086016200039f565b905092959194509250565b600181811c908216806200045757607f821691505b6020821081036200047857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004cc57600081815260208120601f850160051c81016020861015620004a75750805b601f850160051c820191505b81811015620004c857828155600101620004b3565b5050505b505050565b81516001600160401b03811115620004ed57620004ed620002da565b6200050581620004fe845462000442565b846200047e565b602080601f8311600181146200053d5760008415620005245750858301515b600019600386901b1c1916600185901b178555620004c8565b600085815260208120601f198616915b828110156200056e578886015182559484019460019091019084016200054d565b50858210156200058d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005f4578160001904821115620005d857620005d86200059d565b80851615620005e657918102915b93841c9390800290620005b8565b509250929050565b6000826200060d57506001620006ac565b816200061c57506000620006ac565b8160018114620006355760028114620006405762000660565b6001915050620006ac565b60ff8411156200065457620006546200059d565b50506001821b620006ac565b5060208310610133831016604e8410600b841016171562000685575081810a620006ac565b620006918383620005b3565b8060001904821115620006a857620006a86200059d565b0290505b92915050565b6000620006c360ff841683620005fc565b9392505050565b8082028115828204841417620006ac57620006ac6200059d565b600060208284031215620006f757600080fd5b620006c3826200039f565b60805160a051610f586200072c60003960008181610a520152610abb015260005050610f586000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806347062402116100ad57806395d89b411161007157806395d89b411461027b578063a457c2d714610283578063a9059cbb14610296578063dd62ed3e146102a9578063f2fde38b146102e257600080fd5b8063470624021461021357806370a082311461021c578063715018a6146102455780638b4cee081461024d5780638da5cb5b1461026057600080fd5b806323b872dd116100f457806323b872dd146101bc5780632b14ca56146101cf578063313ce567146101d8578063363c0e84146101ed578063395093511461020057600080fd5b806306fdde0314610131578063095ea7b31461014f5780630cc835a3146101725780630cef85d41461018757806318160ddd146101aa575b600080fd5b6101396102f5565b6040516101469190610ce7565b60405180910390f35b61016261015d366004610d51565b610387565b6040519015158152602001610146565b610185610180366004610d7b565b61039e565b005b610162610195366004610d94565b60046020526000908152604090205460ff1681565b6008545b604051908152602001610146565b6101626101ca366004610daf565b6103ab565b6101ae60035481565b60075460405160ff9091168152602001610146565b6101856101fb366004610deb565b61046d565b61016261020e366004610d51565b6104a0565b6101ae60025481565b6101ae61022a366004610d94565b6001600160a01b031660009081526009602052604090205490565b6101856104d7565b61018561025b366004610d7b565b6104eb565b6000546040516001600160a01b039091168152602001610146565b6101396104f8565b610162610291366004610d51565b610507565b6101626102a4366004610d51565b6105a2565b6101ae6102b7366004610e27565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6101856102f0366004610d94565b6105c3565b60606005805461030490610e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461033090610e5a565b801561037d5780601f106103525761010080835404028352916020019161037d565b820191906000526020600020905b81548152906001019060200180831161036057829003601f168201915b5050505050905090565b600061039433848461063c565b5060015b92915050565b6103a6610760565b600255565b60006103b56107ba565b6103c0848484610813565b6001600160a01b0384166000908152600a602090815260408083203384529091529020548281101561044a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61045e85336104598685610eaa565b61063c565b505060018080555b9392505050565b610475610760565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b336000818152600a602090815260408083206001600160a01b03871684529091528120549091610394918590610459908690610ebd565b6104df610760565b6104e96000610c97565b565b6104f3610760565b600355565b60606006805461030490610e5a565b336000908152600a602090815260408083206001600160a01b0386168452909152812054828110156105895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610441565b61059833856104598685610eaa565b5060019392505050565b60006105ac6107ba565b6105b7338484610813565b50600161039860018055565b6105cb610760565b6001600160a01b0381166106305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610441565b61063981610c97565b50565b6001600160a01b03831661069e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610441565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610441565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610441565b60026001540361080c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610441565b6002600155565b6001600160a01b0383166108775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610441565b6001600160a01b0382166108d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610441565b6000811161093b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610441565b6040516370a0823160e01b81526001600160a01b038416600482015260009030906370a0823190602401602060405180830381865afa158015610982573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a69190610ed0565b905081811015610a075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610441565b6001600160a01b038416600090815260046020526040812054839060ff16158015610a4b57506001600160a01b03851660009081526004602052604090205460ff16155b15610bf9577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316148015610a9357506000600254115b15610ab957606460025485610aa89190610ee9565b610ab29190610f00565b9150610b1e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316148015610afc57506000600354115b15610b1e57606460035485610b119190610ee9565b610b1b9190610f00565b91505b8115610bf957610b2e8282610eaa565b90508160096000610b476000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610b729190610ebd565b60096000610b886000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550856001600160a01b03167fb8ba7fd7137a43792efd27dfe74ba6b8c3d215a6091f42d74f98f5514846a87c8342604051610bf0929190918252602082015260400190565b60405180910390a25b610c038484610eaa565b6001600160a01b038088166000908152600960205260408082209390935590871681522054610c33908290610ebd565b6001600160a01b0380871660008181526009602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c879085815260200190565b60405180910390a3505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610d1457858101830151858201604001528201610cf8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4c57600080fd5b919050565b60008060408385031215610d6457600080fd5b610d6d83610d35565b946020939093013593505050565b600060208284031215610d8d57600080fd5b5035919050565b600060208284031215610da657600080fd5b61046682610d35565b600080600060608486031215610dc457600080fd5b610dcd84610d35565b9250610ddb60208501610d35565b9150604084013590509250925092565b60008060408385031215610dfe57600080fd5b610e0783610d35565b915060208301358015158114610e1c57600080fd5b809150509250929050565b60008060408385031215610e3a57600080fd5b610e4383610d35565b9150610e5160208401610d35565b90509250929050565b600181811c90821680610e6e57607f821691505b602082108103610e8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561039857610398610e94565b8082018082111561039857610398610e94565b600060208284031215610ee257600080fd5b5051919050565b808202811582820484141761039857610398610e94565b600082610f1d57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204bb4b2f734dfda49256fcbce02051a5be6a9262aae59739ddbc84f5f0383594d64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000009524f424f205045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008524f424f50455045000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806347062402116100ad57806395d89b411161007157806395d89b411461027b578063a457c2d714610283578063a9059cbb14610296578063dd62ed3e146102a9578063f2fde38b146102e257600080fd5b8063470624021461021357806370a082311461021c578063715018a6146102455780638b4cee081461024d5780638da5cb5b1461026057600080fd5b806323b872dd116100f457806323b872dd146101bc5780632b14ca56146101cf578063313ce567146101d8578063363c0e84146101ed578063395093511461020057600080fd5b806306fdde0314610131578063095ea7b31461014f5780630cc835a3146101725780630cef85d41461018757806318160ddd146101aa575b600080fd5b6101396102f5565b6040516101469190610ce7565b60405180910390f35b61016261015d366004610d51565b610387565b6040519015158152602001610146565b610185610180366004610d7b565b61039e565b005b610162610195366004610d94565b60046020526000908152604090205460ff1681565b6008545b604051908152602001610146565b6101626101ca366004610daf565b6103ab565b6101ae60035481565b60075460405160ff9091168152602001610146565b6101856101fb366004610deb565b61046d565b61016261020e366004610d51565b6104a0565b6101ae60025481565b6101ae61022a366004610d94565b6001600160a01b031660009081526009602052604090205490565b6101856104d7565b61018561025b366004610d7b565b6104eb565b6000546040516001600160a01b039091168152602001610146565b6101396104f8565b610162610291366004610d51565b610507565b6101626102a4366004610d51565b6105a2565b6101ae6102b7366004610e27565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6101856102f0366004610d94565b6105c3565b60606005805461030490610e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461033090610e5a565b801561037d5780601f106103525761010080835404028352916020019161037d565b820191906000526020600020905b81548152906001019060200180831161036057829003601f168201915b5050505050905090565b600061039433848461063c565b5060015b92915050565b6103a6610760565b600255565b60006103b56107ba565b6103c0848484610813565b6001600160a01b0384166000908152600a602090815260408083203384529091529020548281101561044a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61045e85336104598685610eaa565b61063c565b505060018080555b9392505050565b610475610760565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b336000818152600a602090815260408083206001600160a01b03871684529091528120549091610394918590610459908690610ebd565b6104df610760565b6104e96000610c97565b565b6104f3610760565b600355565b60606006805461030490610e5a565b336000908152600a602090815260408083206001600160a01b0386168452909152812054828110156105895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610441565b61059833856104598685610eaa565b5060019392505050565b60006105ac6107ba565b6105b7338484610813565b50600161039860018055565b6105cb610760565b6001600160a01b0381166106305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610441565b61063981610c97565b50565b6001600160a01b03831661069e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610441565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610441565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610441565b60026001540361080c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610441565b6002600155565b6001600160a01b0383166108775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610441565b6001600160a01b0382166108d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610441565b6000811161093b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610441565b6040516370a0823160e01b81526001600160a01b038416600482015260009030906370a0823190602401602060405180830381865afa158015610982573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a69190610ed0565b905081811015610a075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610441565b6001600160a01b038416600090815260046020526040812054839060ff16158015610a4b57506001600160a01b03851660009081526004602052604090205460ff16155b15610bf9577f000000000000000000000000854bc9b94cd2ec932376e20cb321f10489c228996001600160a01b0316866001600160a01b0316148015610a9357506000600254115b15610ab957606460025485610aa89190610ee9565b610ab29190610f00565b9150610b1e565b7f000000000000000000000000854bc9b94cd2ec932376e20cb321f10489c228996001600160a01b0316856001600160a01b0316148015610afc57506000600354115b15610b1e57606460035485610b119190610ee9565b610b1b9190610f00565b91505b8115610bf957610b2e8282610eaa565b90508160096000610b476000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610b729190610ebd565b60096000610b886000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550856001600160a01b03167fb8ba7fd7137a43792efd27dfe74ba6b8c3d215a6091f42d74f98f5514846a87c8342604051610bf0929190918252602082015260400190565b60405180910390a25b610c038484610eaa565b6001600160a01b038088166000908152600960205260408082209390935590871681522054610c33908290610ebd565b6001600160a01b0380871660008181526009602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c879085815260200190565b60405180910390a3505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610d1457858101830151858201604001528201610cf8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4c57600080fd5b919050565b60008060408385031215610d6457600080fd5b610d6d83610d35565b946020939093013593505050565b600060208284031215610d8d57600080fd5b5035919050565b600060208284031215610da657600080fd5b61046682610d35565b600080600060608486031215610dc457600080fd5b610dcd84610d35565b9250610ddb60208501610d35565b9150604084013590509250925092565b60008060408385031215610dfe57600080fd5b610e0783610d35565b915060208301358015158114610e1c57600080fd5b809150509250929050565b60008060408385031215610e3a57600080fd5b610e4383610d35565b9150610e5160208401610d35565b90509250929050565b600181811c90821680610e6e57607f821691505b602082108103610e8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561039857610398610e94565b8082018082111561039857610398610e94565b600060208284031215610ee257600080fd5b5051919050565b808202811582820484141761039857610398610e94565b600082610f1d57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204bb4b2f734dfda49256fcbce02051a5be6a9262aae59739ddbc84f5f0383594d64736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000009524f424f205045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008524f424f50455045000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): ROBO PEPE
Arg [1] : _tokensymbol (string): ROBOPEPE
Arg [2] : initialSupply (uint256): 1000000000
Arg [3] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 524f424f20504550450000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 524f424f50455045000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16079:5591:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17391:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18685:168;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;18685:168:0;1004:187:1;21324:102:0;;;;;;:::i;:::-;;:::i;:::-;;16319:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17674:102;17756:12;;17674:102;;;1718:25:1;;;1706:2;1691:18;17674:102:0;1572:177:1;18101:423:0;;;;;;:::i;:::-;;:::i;16290:22::-;;;;;;17581:85;17649:9;;17581:85;;17649:9;;;;2229:36:1;;2217:2;2202:18;17581:85:0;2087:184:1;21548:119:0;;;;;;:::i;:::-;;:::i;18861:215::-;;;;;;:::i;:::-;;:::i;16262:21::-;;;;;;17784:121;;;;;;:::i;:::-;-1:-1:-1;;;;;17879:18:0;17852:7;17879:18;;;:9;:18;;;;;;;17784:121;11582:103;;;:::i;21434:106::-;;;;;;:::i;:::-;;:::i;10934:87::-;10980:7;11007:6;10934:87;;-1:-1:-1;;;;;11007:6:0;;;2774:51:1;;2762:2;2747:18;10934:87:0;2628:203:1;17484:89:0;;;:::i;19084:375::-;;;;;;:::i;:::-;;:::i;17913:180::-;;;;;;:::i;:::-;;:::i;18532:145::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18642:18:0;;;18615:7;18642:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18532:145;11840:201;;;;;;:::i;:::-;;:::i;17391:85::-;17430:13;17463:5;17456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17391:85;:::o;18685:168::-;18767:4;18784:39;9565:10;18807:7;18816:6;18784:8;:39::i;:::-;-1:-1:-1;18841:4:0;18685:168;;;;;:::o;21324:102::-;10820:13;:11;:13::i;:::-;21400:6:::1;:18:::0;21324:102::o;18101:423::-;18212:4;8205:21;:19;:21::i;:::-;18229:36:::1;18239:6;18247:9;18258:6;18229:9;:36::i;:::-;-1:-1:-1::0;;;;;18303:19:0;::::1;18276:24;18303:19:::0;;;:11:::1;:19;::::0;;;;;;;9565:10;18303:33;;;;;;;;18355:26;;::::1;;18347:79;;;::::0;-1:-1:-1;;;18347:79:0;;3688:2:1;18347:79:0::1;::::0;::::1;3670:21:1::0;3727:2;3707:18;;;3700:30;3766:34;3746:18;;;3739:62;-1:-1:-1;;;3817:18:1;;;3810:38;3865:19;;18347:79:0::1;;;;;;;;;18437:57;18446:6:::0;9565:10;18468:25:::1;18487:6:::0;18468:16;:25:::1;:::i;:::-;18437:8;:57::i;:::-;-1:-1:-1::0;;18512:4:0::1;8769:22:::0;;;8249:20;18101:423;;;;;:::o;21548:119::-;10820:13;:11;:13::i;:::-;-1:-1:-1;;;;;21630:20:0;;;::::1;;::::0;;;:11:::1;:20;::::0;;;;:29;;-1:-1:-1;;21630:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21548:119::o;18861:215::-;9565:10;18949:4;18998:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18998:34:0;;;;;;;;;;18949:4;;18966:80;;18989:7;;18998:47;;19035:10;;18998:47;:::i;11582:103::-;10820:13;:11;:13::i;:::-;11647:30:::1;11674:1;11647:18;:30::i;:::-;11582:103::o:0;21434:106::-;10820:13;:11;:13::i;:::-;21512:7:::1;:20:::0;21434:106::o;17484:89::-;17525:13;17558:7;17551:14;;;;;:::i;19084:375::-;9565:10;19177:4;19221:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19221:34:0;;;;;;;;;;19274:35;;;;19266:85;;;;-1:-1:-1;;;19266:85:0;;4492:2:1;19266:85:0;;;4474:21:1;4531:2;4511:18;;;4504:30;4570:34;4550:18;;;4543:62;-1:-1:-1;;;4621:18:1;;;4614:35;4666:19;;19266:85:0;4290:401:1;19266:85:0;19362:67;9565:10;19385:7;19394:34;19413:15;19394:16;:34;:::i;19362:67::-;-1:-1:-1;19447:4:0;;19084:375;-1:-1:-1;;;19084:375:0:o;17913:180::-;18004:4;8205:21;:19;:21::i;:::-;18021:42:::1;9565:10:::0;18045:9:::1;18056:6;18021:9;:42::i;:::-;-1:-1:-1::0;18081:4:0::1;8249:20:::0;7643:1;8769:22;;8586:213;11840:201;10820:13;:11;:13::i;:::-;-1:-1:-1;;;;;11929:22:0;::::1;11921:73;;;::::0;-1:-1:-1;;;11921:73:0;;4898:2:1;11921:73:0::1;::::0;::::1;4880:21:1::0;4937:2;4917:18;;;4910:30;4976:34;4956:18;;;4949:62;-1:-1:-1;;;5027:18:1;;;5020:36;5073:19;;11921:73:0::1;4696:402:1::0;11921:73:0::1;12005:28;12024:8;12005:18;:28::i;:::-;11840:201:::0;:::o;20970:346::-;-1:-1:-1;;;;;21072:19:0;;21064:68;;;;-1:-1:-1;;;21064:68:0;;5305:2:1;21064:68:0;;;5287:21:1;5344:2;5324:18;;;5317:30;5383:34;5363:18;;;5356:62;-1:-1:-1;;;5434:18:1;;;5427:34;5478:19;;21064:68:0;5103:400:1;21064:68:0;-1:-1:-1;;;;;21151:21:0;;21143:68;;;;-1:-1:-1;;;21143:68:0;;5710:2:1;21143:68:0;;;5692:21:1;5749:2;5729:18;;;5722:30;5788:34;5768:18;;;5761:62;-1:-1:-1;;;5839:18:1;;;5832:32;5881:19;;21143:68:0;5508:398:1;21143:68:0;-1:-1:-1;;;;;21224:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21276:32;;1718:25:1;;;21276:32:0;;1691:18:1;21276:32:0;;;;;;;20970:346;;;:::o;11099:132::-;10980:7;11007:6;-1:-1:-1;;;;;11007:6:0;9565:10;11163:23;11155:68;;;;-1:-1:-1;;;11155:68:0;;6113:2:1;11155:68:0;;;6095:21:1;;;6132:18;;;6125:30;6191:34;6171:18;;;6164:62;6243:18;;11155:68:0;5911:356:1;8285:293:0;7687:1;8419:7;;:19;8411:63;;;;-1:-1:-1;;;8411:63:0;;6474:2:1;8411:63:0;;;6456:21:1;6513:2;6493:18;;;6486:30;6552:33;6532:18;;;6525:61;6603:18;;8411:63:0;6272:355:1;8411:63:0;7687:1;8552:7;:18;8285:293::o;19467:1495::-;-1:-1:-1;;;;;19565:20:0;;19557:70;;;;-1:-1:-1;;;19557:70:0;;6834:2:1;19557:70:0;;;6816:21:1;6873:2;6853:18;;;6846:30;6912:34;6892:18;;;6885:62;-1:-1:-1;;;6963:18:1;;;6956:35;7008:19;;19557:70:0;6632:401:1;19557:70:0;-1:-1:-1;;;;;19646:23:0;;19638:71;;;;-1:-1:-1;;;19638:71:0;;7240:2:1;19638:71:0;;;7222:21:1;7279:2;7259:18;;;7252:30;7318:34;7298:18;;;7291:62;-1:-1:-1;;;7369:18:1;;;7362:33;7412:19;;19638:71:0;7038:399:1;19638:71:0;19737:1;19728:6;:10;19720:64;;;;-1:-1:-1;;;19720:64:0;;7644:2:1;19720:64:0;;;7626:21:1;7683:2;7663:18;;;7656:30;7722:34;7702:18;;;7695:62;-1:-1:-1;;;7773:18:1;;;7766:39;7822:19;;19720:64:0;7442:405:1;19720:64:0;19821:22;;-1:-1:-1;;;19821:22:0;;-1:-1:-1;;;;;2792:32:1;;19821:22:0;;;2774:51:1;19797:21:0;;19821:4;;:14;;2747:18:1;;19821:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19797:46;;19879:6;19862:13;:23;;19854:74;;;;-1:-1:-1;;;19854:74:0;;8243:2:1;19854:74:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:34;8301:18;;;8294:62;-1:-1:-1;;;8372:18:1;;;8365:36;8418:19;;19854:74:0;8041:402:1;19854:74:0;-1:-1:-1;;;;;20104:19:0;;19941:20;20104:19;;;:11;:19;;;;;;20001:6;;20104:19;;20103:20;:47;;;;-1:-1:-1;;;;;;20128:22:0;;;;;;:11;:22;;;;;;;;20127:23;20103:47;20099:669;;;20201:11;-1:-1:-1;;;;;20191:21:0;:6;-1:-1:-1;;;;;20191:21:0;;:35;;;;;20225:1;20216:6;;:10;20191:35;20187:299;;;20280:3;20271:6;;20262;:15;;;;:::i;:::-;:21;;;;:::i;:::-;20247:36;;20187:299;;;20343:11;-1:-1:-1;;;;;20330:24:0;:9;-1:-1:-1;;;;;20330:24:0;;:39;;;;;20368:1;20358:7;;:11;20330:39;20326:160;;;20424:3;20414:7;;20405:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;20390:37;;20326:160;20506:16;;20502:255;;20560:29;20577:12;20560:14;:29;:::i;:::-;20543:46;;20650:12;20629:9;:18;20639:7;10980;11007:6;-1:-1:-1;;;;;11007:6:0;;10934:87;20639:7;-1:-1:-1;;;;;20629:18:0;-1:-1:-1;;;;;20629:18:0;;;;;;;;;;;;;:33;;;;:::i;:::-;20608:9;:18;20618:7;10980;11007:6;-1:-1:-1;;;;;11007:6:0;;10934:87;20618:7;-1:-1:-1;;;;;20608:18:0;-1:-1:-1;;;;;20608:18:0;;;;;;;;;;;;:54;;;;20703:6;-1:-1:-1;;;;;20686:55:0;;20711:12;20725:15;20686:55;;;;;;9017:25:1;;;9073:2;9058:18;;9051:34;9005:2;8990:18;;8843:248;20686:55:0;;;;;;;;20502:255;20800:22;20816:6;20800:13;:22;:::i;:::-;-1:-1:-1;;;;;20780:17:0;;;;;;;:9;:17;;;;;;:42;;;;20856:20;;;;;;;:37;;20879:14;;20856:37;:::i;:::-;-1:-1:-1;;;;;20833:20:0;;;;;;;:9;:20;;;;;;;:60;;;;20911:43;;;;;;;;;;20939:14;1718:25:1;;1706:2;1691:18;;1572:177;20911:43:0;;;;;;;;19546:1416;;;19467:1495;;;:::o;12201:191::-;12275:16;12294:6;;-1:-1:-1;;;;;12311:17:0;;;-1:-1:-1;;;;;;12311:17:0;;;;;;12344:40;;12294:6;;;;;;;12344:40;;12275:16;12344:40;12264:128;12201:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1381:186::-;1440:6;1493:2;1481:9;1472:7;1468:23;1464:32;1461:52;;;1509:1;1506;1499:12;1461:52;1532:29;1551:9;1532:29;:::i;1754:328::-;1831:6;1839;1847;1900:2;1888:9;1879:7;1875:23;1871:32;1868:52;;;1916:1;1913;1906:12;1868:52;1939:29;1958:9;1939:29;:::i;:::-;1929:39;;1987:38;2021:2;2010:9;2006:18;1987:38;:::i;:::-;1977:48;;2072:2;2061:9;2057:18;2044:32;2034:42;;1754:328;;;;;:::o;2276:347::-;2341:6;2349;2402:2;2390:9;2381:7;2377:23;2373:32;2370:52;;;2418:1;2415;2408:12;2370:52;2441:29;2460:9;2441:29;:::i;:::-;2431:39;;2520:2;2509:9;2505:18;2492:32;2567:5;2560:13;2553:21;2546:5;2543:32;2533:60;;2589:1;2586;2579:12;2533:60;2612:5;2602:15;;;2276:347;;;;;:::o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3895:127::-;3956:10;3951:3;3947:20;3944:1;3937:31;3987:4;3984:1;3977:15;4011:4;4008:1;4001:15;4027:128;4094:9;;;4115:11;;;4112:37;;;4129:18;;:::i;4160:125::-;4225:9;;;4246:10;;;4243:36;;;4259:18;;:::i;7852:184::-;7922:6;7975:2;7963:9;7954:7;7950:23;7946:32;7943:52;;;7991:1;7988;7981:12;7943:52;-1:-1:-1;8014:16:1;;7852:184;-1:-1:-1;7852:184:1:o;8448:168::-;8521:9;;;8552;;8569:15;;;8563:22;;8549:37;8539:71;;8590:18;;:::i;8621:217::-;8661:1;8687;8677:132;;8731:10;8726:3;8722:20;8719:1;8712:31;8766:4;8763:1;8756:15;8794:4;8791:1;8784:15;8677:132;-1:-1:-1;8823:9:1;;8621:217::o

Swarm Source

ipfs://4bb4b2f734dfda49256fcbce02051a5be6a9262aae59739ddbc84f5f0383594d
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.