ETH Price: $2,604.00 (+1.12%)

Token

The Clintons (CLINTON)
 

Overview

Max Total Supply

69,000,000 CLINTON

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
navio.eth
Balance
1,014,041.194985213568606855 CLINTON

Value
$0.00
0x4d4da657fda69460f8083120089ae066f3655108
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:
CLINTON

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : clinton.sol
//SPDX-License-Identifier: MIT



//  ▄████▄   ██▓     ██▓ ███▄    █ ▄▄▄█████▓ ▒█████   ███▄    █ 
// ▒██▀ ▀█  ▓██▒    ▓██▒ ██ ▀█   █ ▓  ██▒ ▓▒▒██▒  ██▒ ██ ▀█   █ 
// ▒▓█    ▄ ▒██░    ▒██▒▓██  ▀█ ██▒▒ ▓██░ ▒░▒██░  ██▒▓██  ▀█ ██▒
// ▒▓▓▄ ▄██▒▒██░    ░██░▓██▒  ▐▌██▒░ ▓██▓ ░ ▒██   ██░▓██▒  ▐▌██▒
// ▒ ▓███▀ ░░██████▒░██░▒██░   ▓██░  ▒██▒ ░ ░ ████▓▒░▒██░   ▓██░
// ░ ░▒ ▒  ░░ ▒░▓  ░░▓  ░ ▒░   ▒ ▒   ▒ ░░   ░ ▒░▒░▒░ ░ ▒░   ▒ ▒ 
//   ░  ▒   ░ ░ ▒  ░ ▒ ░░ ░░   ░ ▒░    ░      ░ ▒ ▒░ ░ ░░   ░ ▒░
// ░          ░ ░    ▒ ░   ░   ░ ░   ░      ░ ░ ░ ▒     ░   ░ ░ 
// ░ ░          ░  ░ ░           ░              ░ ░           ░ 
// ░                                                            


// Website: Coming soon. Clinton holders will be spared from poverty. Eternal life awaits. Get in loser, we're heading to the moon.

// Twitter: @clintoncoin_eth

// Telegram: https://t.me/clintoncoineth

pragma solidity 0.8.17;

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

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

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);
}


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);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(address account, uint256 amount)
        internal
        virtual
    {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    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);
    }
}

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);
    }
}

interface ILpPair {
    function sync() external;
}

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

    function WETH() external pure returns (address);

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

interface IDexFactory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

contract CLINTON is ERC20, Ownable {

    IDexRouter public dexRouter;
    address public lpPair;

    constructor() payable ERC20("The Clintons", "CLINTON") {
        address newOwner = msg.sender; // can leave alone if owner is deployer.

        address _dexRouter;

        if (block.chainid == 1) {
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH: Uniswap V2
        } else if (block.chainid == 5) {
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH: GOERLI
        } else {
            revert("Chain not configured");
        }

        // initialize router
        dexRouter = IDexRouter(_dexRouter);

        uint256 totalSupply = 69 * 1e6 * 1e18; // 69 million

        _createInitialSupply(address(this), (totalSupply * 90) / 100); // Tokens for liquidity
        _createInitialSupply(
            address(0x3137B36E02142C186eC0253C9630B246C7fDF795),
            (totalSupply * 10) / 100
        ); // Marketing

        transferOwnership(newOwner);
    }

    receive() external payable {}

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");

        super._transfer(from, to, amount);
    }

    // withdraw ETH if stuck or someone sends to the address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function launch() external onlyOwner {

        // add the liquidity
        require(
            address(this).balance > 0,
            "Must have ETH on contract to launch"
        );
        require(
            balanceOf(address(this)) > 0,
            "Must have Tokens on contract to launch"
        );

        // create pair
        lpPair = IDexFactory(dexRouter.factory()).createPair(
            address(this),
            dexRouter.WETH()
        );

        _approve(address(this), address(dexRouter), balanceOf(address(this)));

        dexRouter.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
}

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

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":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":"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":"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":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"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":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"renounceOwnership","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":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600c81526020017f54686520436c696e746f6e7300000000000000000000000000000000000000008152506040518060400160405280600781526020017f434c494e544f4e0000000000000000000000000000000000000000000000000081525081600390816200008191906200080b565b5080600490816200009391906200080b565b505050620000b6620000aa6200022260201b60201c565b6200022a60201b60201c565b6000339050600060014603620000e357737a250d5630b4cf539739df2c5dacb4c659f2488d905062000147565b600546036200010957737a250d5630b4cf539739df2c5dacb4c659f2488d905062000146565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013d9062000953565b60405180910390fd5b5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006a3913517ebd3c0c650000009050620001c6306064605a84620001ae9190620009a4565b620001ba919062000a1e565b620002f060201b60201c565b62000208733137b36e02142c186ec0253c9630b246c7fdf7956064600a84620001f09190620009a4565b620001fc919062000a1e565b620002f060201b60201c565b62000219836200044060201b60201c565b50505062000c3b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003599062000aa6565b60405180910390fd5b806002600082825462000376919062000ac8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003cd919062000ac8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000434919062000b14565b60405180910390a35050565b62000450620004d660201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620004c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b99062000ba7565b60405180910390fd5b620004d3816200022a60201b60201c565b50565b620004e66200022260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200050c6200056760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055c9062000c19565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061357607f821691505b602082108103620006295762000628620005cb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000654565b6200069f868362000654565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006ec620006e6620006e084620006b7565b620006c1565b620006b7565b9050919050565b6000819050919050565b6200070883620006cb565b620007206200071782620006f3565b84845462000661565b825550505050565b600090565b6200073762000728565b62000744818484620006fd565b505050565b5b818110156200076c57620007606000826200072d565b6001810190506200074a565b5050565b601f821115620007bb5762000785816200062f565b620007908462000644565b81016020851015620007a0578190505b620007b8620007af8562000644565b83018262000749565b50505b505050565b600082821c905092915050565b6000620007e060001984600802620007c0565b1980831691505092915050565b6000620007fb8383620007cd565b9150826002028217905092915050565b620008168262000591565b67ffffffffffffffff8111156200083257620008316200059c565b5b6200083e8254620005fa565b6200084b82828562000770565b600060209050601f8311600181146200088357600084156200086e578287015190505b6200087a8582620007ed565b865550620008ea565b601f19841662000893866200062f565b60005b82811015620008bd5784890151825560018201915060208501945060208101905062000896565b86831015620008dd5784890151620008d9601f891682620007cd565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f436861696e206e6f7420636f6e66696775726564000000000000000000000000600082015250565b60006200093b601483620008f2565b9150620009488262000903565b602082019050919050565b600060208201905081810360008301526200096e816200092c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009b182620006b7565b9150620009be83620006b7565b9250828202620009ce81620006b7565b91508282048414831517620009e857620009e762000975565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000a2b82620006b7565b915062000a3883620006b7565b92508262000a4b5762000a4a620009ef565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a8e601f83620008f2565b915062000a9b8262000a56565b602082019050919050565b6000602082019050818103600083015262000ac18162000a7f565b9050919050565b600062000ad582620006b7565b915062000ae283620006b7565b925082820190508082111562000afd5762000afc62000975565b5b92915050565b62000b0e81620006b7565b82525050565b600060208201905062000b2b600083018462000b03565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000b8f602683620008f2565b915062000b9c8262000b31565b604082019050919050565b6000602082019050818103600083015262000bc28162000b80565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c01602083620008f2565b915062000c0e8262000bc9565b602082019050919050565b6000602082019050818103600083015262000c348162000bf2565b9050919050565b6121858062000c4b6000396000f3fe60806040526004361061010d5760003560e01c806370a0823111610095578063a457c2d711610064578063a457c2d714610368578063a9059cbb146103a5578063dd62ed3e146103e2578063f2fde38b1461041f578063f5648a4f1461044857610114565b806370a08231146102be578063715018a6146102fb5780638da5cb5b1461031257806395d89b411461033d57610114565b806318160ddd116100dc57806318160ddd146101c357806323b872dd146101ee578063313ce5671461022b5780633950935114610256578063452ed4f11461029357610114565b806301339c211461011957806306fdde03146101305780630758d9241461015b578063095ea7b31461018657610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e61045f565b005b34801561013c57600080fd5b506101456107bf565b6040516101529190611555565b60405180910390f35b34801561016757600080fd5b50610170610851565b60405161017d91906115f6565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a8919061168a565b610877565b6040516101ba91906116e5565b60405180910390f35b3480156101cf57600080fd5b506101d8610895565b6040516101e5919061170f565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061172a565b61089f565b60405161022291906116e5565b60405180910390f35b34801561023757600080fd5b50610240610997565b60405161024d9190611799565b60405180910390f35b34801561026257600080fd5b5061027d6004803603810190610278919061168a565b6109a0565b60405161028a91906116e5565b60405180910390f35b34801561029f57600080fd5b506102a8610a4c565b6040516102b591906117c3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906117de565b610a72565b6040516102f2919061170f565b60405180910390f35b34801561030757600080fd5b50610310610aba565b005b34801561031e57600080fd5b50610327610ace565b60405161033491906117c3565b60405180910390f35b34801561034957600080fd5b50610352610af8565b60405161035f9190611555565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a919061168a565b610b8a565b60405161039c91906116e5565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c7919061168a565b610c75565b6040516103d991906116e5565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061180b565b610c93565b604051610416919061170f565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906117de565b610d1a565b005b34801561045457600080fd5b5061045d610d9d565b005b610467610e16565b600047116104aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a1906118bd565b60405180910390fd5b60006104b530610a72565b116104f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ec9061194f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610562573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105869190611984565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561060f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106339190611984565b6040518363ffffffff1660e01b81526004016106509291906119b1565b6020604051808303816000875af115801561066f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106939190611984565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061070830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661070330610a72565b610e94565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061075130610a72565b60008030426040518863ffffffff1660e01b815260040161077796959493929190611a15565b60606040518083038185885af1158015610795573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906107ba9190611a8b565b505050565b6060600380546107ce90611b0d565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90611b0d565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061088b61088461105d565b8484610e94565b6001905092915050565b6000600254905090565b60006108ac848484611065565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108f761105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611bb0565b60405180910390fd5b61098b8561098361105d565b858403610e94565b60019150509392505050565b60006012905090565b6000610a426109ad61105d565b8484600160006109bb61105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a3d9190611bff565b610e94565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac2610e16565b610acc6000611196565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b0790611b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390611b0d565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b60008060016000610b9961105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611ca5565b60405180910390fd5b610c6a610c6161105d565b85858403610e94565b600191505092915050565b6000610c89610c8261105d565b8484611065565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d22610e16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890611d37565b60405180910390fd5b610d9a81611196565b50565b610da5610e16565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dcb90611d88565b60006040518083038185875af1925050503d8060008114610e08576040519150601f19603f3d011682016040523d82523d6000602084013e610e0d565b606091505b50508091505050565b610e1e61105d565b73ffffffffffffffffffffffffffffffffffffffff16610e3c610ace565b73ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990611de9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90611e7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611050919061170f565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611f9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612031565b60405180910390fd5b60008111611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061209d565b60405180910390fd5b61119183838361125c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611f9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190612031565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b79061212f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114539190611bff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b7919061170f565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114ff5780820151818401526020810190506114e4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611527826114c5565b61153181856114d0565b93506115418185602086016114e1565b61154a8161150b565b840191505092915050565b6000602082019050818103600083015261156f818461151c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006115bc6115b76115b284611577565b611597565b611577565b9050919050565b60006115ce826115a1565b9050919050565b60006115e0826115c3565b9050919050565b6115f0816115d5565b82525050565b600060208201905061160b60008301846115e7565b92915050565b600080fd5b600061162182611577565b9050919050565b61163181611616565b811461163c57600080fd5b50565b60008135905061164e81611628565b92915050565b6000819050919050565b61166781611654565b811461167257600080fd5b50565b6000813590506116848161165e565b92915050565b600080604083850312156116a1576116a0611611565b5b60006116af8582860161163f565b92505060206116c085828601611675565b9150509250929050565b60008115159050919050565b6116df816116ca565b82525050565b60006020820190506116fa60008301846116d6565b92915050565b61170981611654565b82525050565b60006020820190506117246000830184611700565b92915050565b60008060006060848603121561174357611742611611565b5b60006117518682870161163f565b93505060206117628682870161163f565b925050604061177386828701611675565b9150509250925092565b600060ff82169050919050565b6117938161177d565b82525050565b60006020820190506117ae600083018461178a565b92915050565b6117bd81611616565b82525050565b60006020820190506117d860008301846117b4565b92915050565b6000602082840312156117f4576117f3611611565b5b60006118028482850161163f565b91505092915050565b6000806040838503121561182257611821611611565b5b60006118308582860161163f565b92505060206118418582860161163f565b9150509250929050565b7f4d757374206861766520455448206f6e20636f6e747261637420746f206c617560008201527f6e63680000000000000000000000000000000000000000000000000000000000602082015250565b60006118a76023836114d0565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b7f4d757374206861766520546f6b656e73206f6e20636f6e747261637420746f2060008201527f6c61756e63680000000000000000000000000000000000000000000000000000602082015250565b60006119396026836114d0565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b60008151905061197e81611628565b92915050565b60006020828403121561199a57611999611611565b5b60006119a88482850161196f565b91505092915050565b60006040820190506119c660008301856117b4565b6119d360208301846117b4565b9392505050565b6000819050919050565b60006119ff6119fa6119f5846119da565b611597565b611654565b9050919050565b611a0f816119e4565b82525050565b600060c082019050611a2a60008301896117b4565b611a376020830188611700565b611a446040830187611a06565b611a516060830186611a06565b611a5e60808301856117b4565b611a6b60a0830184611700565b979650505050505050565b600081519050611a858161165e565b92915050565b600080600060608486031215611aa457611aa3611611565b5b6000611ab286828701611a76565b9350506020611ac386828701611a76565b9250506040611ad486828701611a76565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b2557607f821691505b602082108103611b3857611b37611ade565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611b9a6028836114d0565b9150611ba582611b3e565b604082019050919050565b60006020820190508181036000830152611bc981611b8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c0a82611654565b9150611c1583611654565b9250828201905080821115611c2d57611c2c611bd0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c8f6025836114d0565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d216026836114d0565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b600081905092915050565b50565b6000611d72600083611d57565b9150611d7d82611d62565b600082019050919050565b6000611d9382611d65565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dd36020836114d0565b9150611dde82611d9d565b602082019050919050565b60006020820190508181036000830152611e0281611dc6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e656024836114d0565b9150611e7082611e09565b604082019050919050565b60006020820190508181036000830152611e9481611e58565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef76022836114d0565b9150611f0282611e9b565b604082019050919050565b60006020820190508181036000830152611f2681611eea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f896025836114d0565b9150611f9482611f2d565b604082019050919050565b60006020820190508181036000830152611fb881611f7c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061201b6023836114d0565b915061202682611fbf565b604082019050919050565b6000602082019050818103600083015261204a8161200e565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000612087601d836114d0565b915061209282612051565b602082019050919050565b600060208201905081810360008301526120b68161207a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121196026836114d0565b9150612124826120bd565b604082019050919050565b600060208201905081810360008301526121488161210c565b905091905056fea2646970667358221220b233c74cd48eddbacd8be2c3c4cf21fff0760698b54c900709a1f3dbc62117ec64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061010d5760003560e01c806370a0823111610095578063a457c2d711610064578063a457c2d714610368578063a9059cbb146103a5578063dd62ed3e146103e2578063f2fde38b1461041f578063f5648a4f1461044857610114565b806370a08231146102be578063715018a6146102fb5780638da5cb5b1461031257806395d89b411461033d57610114565b806318160ddd116100dc57806318160ddd146101c357806323b872dd146101ee578063313ce5671461022b5780633950935114610256578063452ed4f11461029357610114565b806301339c211461011957806306fdde03146101305780630758d9241461015b578063095ea7b31461018657610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e61045f565b005b34801561013c57600080fd5b506101456107bf565b6040516101529190611555565b60405180910390f35b34801561016757600080fd5b50610170610851565b60405161017d91906115f6565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a8919061168a565b610877565b6040516101ba91906116e5565b60405180910390f35b3480156101cf57600080fd5b506101d8610895565b6040516101e5919061170f565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061172a565b61089f565b60405161022291906116e5565b60405180910390f35b34801561023757600080fd5b50610240610997565b60405161024d9190611799565b60405180910390f35b34801561026257600080fd5b5061027d6004803603810190610278919061168a565b6109a0565b60405161028a91906116e5565b60405180910390f35b34801561029f57600080fd5b506102a8610a4c565b6040516102b591906117c3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906117de565b610a72565b6040516102f2919061170f565b60405180910390f35b34801561030757600080fd5b50610310610aba565b005b34801561031e57600080fd5b50610327610ace565b60405161033491906117c3565b60405180910390f35b34801561034957600080fd5b50610352610af8565b60405161035f9190611555565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a919061168a565b610b8a565b60405161039c91906116e5565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c7919061168a565b610c75565b6040516103d991906116e5565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061180b565b610c93565b604051610416919061170f565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906117de565b610d1a565b005b34801561045457600080fd5b5061045d610d9d565b005b610467610e16565b600047116104aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a1906118bd565b60405180910390fd5b60006104b530610a72565b116104f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ec9061194f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610562573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105869190611984565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561060f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106339190611984565b6040518363ffffffff1660e01b81526004016106509291906119b1565b6020604051808303816000875af115801561066f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106939190611984565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061070830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661070330610a72565b610e94565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061075130610a72565b60008030426040518863ffffffff1660e01b815260040161077796959493929190611a15565b60606040518083038185885af1158015610795573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906107ba9190611a8b565b505050565b6060600380546107ce90611b0d565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90611b0d565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061088b61088461105d565b8484610e94565b6001905092915050565b6000600254905090565b60006108ac848484611065565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108f761105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611bb0565b60405180910390fd5b61098b8561098361105d565b858403610e94565b60019150509392505050565b60006012905090565b6000610a426109ad61105d565b8484600160006109bb61105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a3d9190611bff565b610e94565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac2610e16565b610acc6000611196565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b0790611b0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390611b0d565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b5050505050905090565b60008060016000610b9961105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611ca5565b60405180910390fd5b610c6a610c6161105d565b85858403610e94565b600191505092915050565b6000610c89610c8261105d565b8484611065565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d22610e16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890611d37565b60405180910390fd5b610d9a81611196565b50565b610da5610e16565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dcb90611d88565b60006040518083038185875af1925050503d8060008114610e08576040519150601f19603f3d011682016040523d82523d6000602084013e610e0d565b606091505b50508091505050565b610e1e61105d565b73ffffffffffffffffffffffffffffffffffffffff16610e3c610ace565b73ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990611de9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90611e7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611050919061170f565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611f9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612031565b60405180910390fd5b60008111611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061209d565b60405180910390fd5b61119183838361125c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611f9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190612031565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b79061212f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114539190611bff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b7919061170f565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114ff5780820151818401526020810190506114e4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611527826114c5565b61153181856114d0565b93506115418185602086016114e1565b61154a8161150b565b840191505092915050565b6000602082019050818103600083015261156f818461151c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006115bc6115b76115b284611577565b611597565b611577565b9050919050565b60006115ce826115a1565b9050919050565b60006115e0826115c3565b9050919050565b6115f0816115d5565b82525050565b600060208201905061160b60008301846115e7565b92915050565b600080fd5b600061162182611577565b9050919050565b61163181611616565b811461163c57600080fd5b50565b60008135905061164e81611628565b92915050565b6000819050919050565b61166781611654565b811461167257600080fd5b50565b6000813590506116848161165e565b92915050565b600080604083850312156116a1576116a0611611565b5b60006116af8582860161163f565b92505060206116c085828601611675565b9150509250929050565b60008115159050919050565b6116df816116ca565b82525050565b60006020820190506116fa60008301846116d6565b92915050565b61170981611654565b82525050565b60006020820190506117246000830184611700565b92915050565b60008060006060848603121561174357611742611611565b5b60006117518682870161163f565b93505060206117628682870161163f565b925050604061177386828701611675565b9150509250925092565b600060ff82169050919050565b6117938161177d565b82525050565b60006020820190506117ae600083018461178a565b92915050565b6117bd81611616565b82525050565b60006020820190506117d860008301846117b4565b92915050565b6000602082840312156117f4576117f3611611565b5b60006118028482850161163f565b91505092915050565b6000806040838503121561182257611821611611565b5b60006118308582860161163f565b92505060206118418582860161163f565b9150509250929050565b7f4d757374206861766520455448206f6e20636f6e747261637420746f206c617560008201527f6e63680000000000000000000000000000000000000000000000000000000000602082015250565b60006118a76023836114d0565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b7f4d757374206861766520546f6b656e73206f6e20636f6e747261637420746f2060008201527f6c61756e63680000000000000000000000000000000000000000000000000000602082015250565b60006119396026836114d0565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b60008151905061197e81611628565b92915050565b60006020828403121561199a57611999611611565b5b60006119a88482850161196f565b91505092915050565b60006040820190506119c660008301856117b4565b6119d360208301846117b4565b9392505050565b6000819050919050565b60006119ff6119fa6119f5846119da565b611597565b611654565b9050919050565b611a0f816119e4565b82525050565b600060c082019050611a2a60008301896117b4565b611a376020830188611700565b611a446040830187611a06565b611a516060830186611a06565b611a5e60808301856117b4565b611a6b60a0830184611700565b979650505050505050565b600081519050611a858161165e565b92915050565b600080600060608486031215611aa457611aa3611611565b5b6000611ab286828701611a76565b9350506020611ac386828701611a76565b9250506040611ad486828701611a76565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b2557607f821691505b602082108103611b3857611b37611ade565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611b9a6028836114d0565b9150611ba582611b3e565b604082019050919050565b60006020820190508181036000830152611bc981611b8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c0a82611654565b9150611c1583611654565b9250828201905080821115611c2d57611c2c611bd0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c8f6025836114d0565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d216026836114d0565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b600081905092915050565b50565b6000611d72600083611d57565b9150611d7d82611d62565b600082019050919050565b6000611d9382611d65565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dd36020836114d0565b9150611dde82611d9d565b602082019050919050565b60006020820190508181036000830152611e0281611dc6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e656024836114d0565b9150611e7082611e09565b604082019050919050565b60006020820190508181036000830152611e9481611e58565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef76022836114d0565b9150611f0282611e9b565b604082019050919050565b60006020820190508181036000830152611f2681611eea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f896025836114d0565b9150611f9482611f2d565b604082019050919050565b60006020820190508181036000830152611fb881611f7c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061201b6023836114d0565b915061202682611fbf565b604082019050919050565b6000602082019050818103600083015261204a8161200e565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000612087601d836114d0565b915061209282612051565b602082019050919050565b600060208201905081810360008301526120b68161207a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121196026836114d0565b9150612124826120bd565b604082019050919050565b600060208201905081810360008301526121488161210c565b905091905056fea2646970667358221220b233c74cd48eddbacd8be2c3c4cf21fff0760698b54c900709a1f3dbc62117ec64736f6c63430008110033

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.