ETH Price: $3,105.14 (-6.01%)
Gas: 7 Gwei

Token

Butt Plug (PLUG)
 

Overview

Max Total Supply

400,000,000 PLUG

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,227,614.257198655077104035 PLUG

Value
$0.00
0xf8e4aa808e0205f2e3924d3d21968b9e6524ccb7
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:
Plug

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Plug.sol
/*
https://t.me/plugcoineth
https://twitter.com/buttplugcoin
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

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

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

    function WETH() external pure returns (address);
}

contract Plug is ERC20, Ownable {
    address public uniswapV2Pair;
    IUniswapV2Router02 private _uniswapV2Router;
    uint256 public startTime;
    uint256 public constant maxSupply = 1000000000 * 10**18;
    bool public isBlacklisted = false;

    constructor() ERC20("Butt Plug", "PLUG") {
        _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _mint(_msgSender(), maxSupply);
        startTime = block.timestamp;
    }

    function burn(uint256 amount) public virtual {
        require(
            balanceOf(_msgSender()) >= amount,
            "Burn amount exceeds balance"
        );
        _burn(_msgSender(), amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 /*amount*/
    ) internal virtual override {
        // MEV Bot Blacklist
        require(
            to != 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13 &&
                from != 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13,
            "Blacklisted"
        );
        require(
            to != 0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80 &&
                from != 0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80,
            "Blacklisted"
        );
        require(
            to != 0x77ad3a15b78101883AF36aD4A875e17c86AC65d1 &&
                from != 0x77ad3a15b78101883AF36aD4A875e17c86AC65d1,
            "Blacklisted"
        );
        require(
            to != 0x2E074cB1A5D88931b251833A0fEf227F5d808DC2 &&
                from != 0x2E074cB1A5D88931b251833A0fEf227F5d808DC2,
            "Blacklisted"
        );
        require(
            to != 0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F &&
                from != 0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F,
            "Blacklisted"
        );
        require(
            to != 0x76F36d497b51e48A288f03b4C1d7461e92247d5e &&
                from != 0x76F36d497b51e48A288f03b4C1d7461e92247d5e,
            "Blacklisted"
        );
        if (to == uniswapV2Pair) {
            require(block.timestamp <= startTime + 7 minutes);
        }
    }

    function lockLP(address to) external onlyOwner {
        uint256 lpTokenBalance = IERC20(uniswapV2Pair).balanceOf(address(this));
        require(lpTokenBalance > 0, "No LP tokens to lock");
        IERC20(uniswapV2Pair).transfer(to, lpTokenBalance);
    }

    function withdraw() public onlyOwner {
        uint256 contractBalance = address(this).balance;
        bool success = true;
        (success, ) = payable(owner()).call{value: contractBalance}("");
        require(success, "Transfer failed");
    }
}

File 2 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 4 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"lockLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600981526020017f4275747420506c756700000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504c5547000000000000000000000000000000000000000000000000000000008152508160039081620000aa919062000d7e565b508060049081620000bc919062000d7e565b505050620000df620000d36200035760201b60201c565b6200035f60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c8919062000ecf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000252573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000278919062000ecf565b6040518363ffffffff1660e01b81526004016200029792919062000f12565b6020604051808303816000875af1158015620002b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002dd919062000ecf565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200034a620003316200035760201b60201c565b6b033b2e3c9fd0803ce80000006200042560201b60201c565b42600881905550620010cc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048e9062000fa0565b60405180910390fd5b620004ab600083836200059260201b60201c565b8060026000828254620004bf919062000ff1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200057291906200103d565b60405180910390a36200058e6000838362000aff60201b60201c565b5050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801562000623575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b62000665576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065c90620010aa565b60405180910390fd5b736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620006f65750736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b62000738576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072f90620010aa565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620007c957507377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6200080b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080290620010aa565b60405180910390fd5b732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156200089c5750732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d590620010aa565b60405180910390fd5b7355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156200096f57507355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b620009b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a890620010aa565b60405180910390fd5b7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801562000a4257507376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b62000a84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a7b90620010aa565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000afa576101a460085462000aec919062000ff1565b42111562000af957600080fd5b5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8657607f821691505b60208210810362000b9c5762000b9b62000b3e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc7565b62000c12868362000bc7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5f62000c5962000c538462000c2a565b62000c34565b62000c2a565b9050919050565b6000819050919050565b62000c7b8362000c3e565b62000c9362000c8a8262000c66565b84845462000bd4565b825550505050565b600090565b62000caa62000c9b565b62000cb781848462000c70565b505050565b5b8181101562000cdf5762000cd360008262000ca0565b60018101905062000cbd565b5050565b601f82111562000d2e5762000cf88162000ba2565b62000d038462000bb7565b8101602085101562000d13578190505b62000d2b62000d228562000bb7565b83018262000cbc565b50505b505050565b600082821c905092915050565b600062000d536000198460080262000d33565b1980831691505092915050565b600062000d6e838362000d40565b9150826002028217905092915050565b62000d898262000b04565b67ffffffffffffffff81111562000da55762000da462000b0f565b5b62000db1825462000b6d565b62000dbe82828562000ce3565b600060209050601f83116001811462000df6576000841562000de1578287015190505b62000ded858262000d60565b86555062000e5d565b601f19841662000e068662000ba2565b60005b8281101562000e305784890151825560018201915060208501945060208101905062000e09565b8683101562000e50578489015162000e4c601f89168262000d40565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e978262000e6a565b9050919050565b62000ea98162000e8a565b811462000eb557600080fd5b50565b60008151905062000ec98162000e9e565b92915050565b60006020828403121562000ee85762000ee762000e65565b5b600062000ef88482850162000eb8565b91505092915050565b62000f0c8162000e8a565b82525050565b600060408201905062000f29600083018562000f01565b62000f38602083018462000f01565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f88601f8362000f3f565b915062000f958262000f50565b602082019050919050565b6000602082019050818103600083015262000fbb8162000f79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ffe8262000c2a565b91506200100b8362000c2a565b925082820190508082111562001026576200102562000fc2565b5b92915050565b620010378162000c2a565b82525050565b60006020820190506200105460008301846200102c565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062001092600b8362000f3f565b91506200109f826200105a565b602082019050919050565b60006020820190508181036000830152620010c58162001083565b9050919050565b61251b80620010dc6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461031a578063a9059cbb1461034a578063a94d88111461037a578063d5abeb0114610398578063dd62ed3e146103b6578063f2fde38b146103e657610137565b806370a0823114610286578063715018a6146102b657806378e97925146102c05780638da5cb5b146102de57806395d89b41146102fc57610137565b806339509351116100ff57806339509351146101f65780633ccfd60b1461022657806342966c681461023057806349bd5a5e1461024c578063674762881461026a57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610402565b60405161015191906118c5565b60405180910390f35b610174600480360381019061016f9190611980565b610494565b60405161018191906119db565b60405180910390f35b6101926104b7565b60405161019f9190611a05565b60405180910390f35b6101c260048036038101906101bd9190611a20565b6104c1565b6040516101cf91906119db565b60405180910390f35b6101e06104f0565b6040516101ed9190611a8f565b60405180910390f35b610210600480360381019061020b9190611980565b6104f9565b60405161021d91906119db565b60405180910390f35b61022e610530565b005b61024a60048036038101906102459190611aaa565b6105fa565b005b610254610660565b6040516102619190611ae6565b60405180910390f35b610284600480360381019061027f9190611b01565b610686565b005b6102a0600480360381019061029b9190611b01565b610816565b6040516102ad9190611a05565b60405180910390f35b6102be61085e565b005b6102c8610872565b6040516102d59190611a05565b60405180910390f35b6102e6610878565b6040516102f39190611ae6565b60405180910390f35b6103046108a2565b60405161031191906118c5565b60405180910390f35b610334600480360381019061032f9190611980565b610934565b60405161034191906119db565b60405180910390f35b610364600480360381019061035f9190611980565b6109ab565b60405161037191906119db565b60405180910390f35b6103826109ce565b60405161038f91906119db565b60405180910390f35b6103a06109e1565b6040516103ad9190611a05565b60405180910390f35b6103d060048036038101906103cb9190611b2e565b6109f1565b6040516103dd9190611a05565b60405180910390f35b61040060048036038101906103fb9190611b01565b610a78565b005b60606003805461041190611b9d565b80601f016020809104026020016040519081016040528092919081815260200182805461043d90611b9d565b801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b60008061049f610afb565b90506104ac818585610b03565b600191505092915050565b6000600254905090565b6000806104cc610afb565b90506104d9858285610ccc565b6104e4858585610d58565b60019150509392505050565b60006012905090565b600080610504610afb565b905061052581858561051685896109f1565b6105209190611bfd565b610b03565b600191505092915050565b610538610fce565b600047905060006001905061054b610878565b73ffffffffffffffffffffffffffffffffffffffff168260405161056e90611c62565b60006040518083038185875af1925050503d80600081146105ab576040519150601f19603f3d011682016040523d82523d6000602084013e6105b0565b606091505b505080915050806105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed90611cc3565b60405180910390fd5b5050565b8061060b610606610afb565b610816565b101561064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390611d2f565b60405180910390fd5b61065d610657610afb565b8261104c565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61068e610fce565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106eb9190611ae6565b602060405180830381865afa158015610708573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072c9190611d64565b905060008111610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890611ddd565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016107ce929190611dfd565b6020604051808303816000875af11580156107ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108119190611e52565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610866610fce565b6108706000611219565b565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108b190611b9d565b80601f01602080910402602001604051908101604052809291908181526020018280546108dd90611b9d565b801561092a5780601f106108ff5761010080835404028352916020019161092a565b820191906000526020600020905b81548152906001019060200180831161090d57829003601f168201915b5050505050905090565b60008061093f610afb565b9050600061094d82866109f1565b905083811015610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098990611ef1565b60405180910390fd5b61099f8286868403610b03565b60019250505092915050565b6000806109b6610afb565b90506109c3818585610d58565b600191505092915050565b600960009054906101000a900460ff1681565b6b033b2e3c9fd0803ce800000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a80610fce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690611f83565b60405180910390fd5b610af881611219565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990612015565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd8906120a7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cbf9190611a05565b60405180910390a3505050565b6000610cd884846109f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d525781811015610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90612113565b60405180910390fd5b610d518484848403610b03565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906121a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90612237565b60405180910390fd5b610e418383836112df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906122c9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb59190611a05565b60405180910390a3610fc8848484611830565b50505050565b610fd6610afb565b73ffffffffffffffffffffffffffffffffffffffff16610ff4610878565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190612335565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906123c7565b60405180910390fd5b6110c7826000836112df565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490612459565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112009190611a05565b60405180910390a361121483600084611830565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561136f575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906124c5565b60405180910390fd5b736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561143e5750736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906124c5565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561150d57507377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61154c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611543906124c5565b60405180910390fd5b732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156115dc5750732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906124c5565b60405180910390fd5b7355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116ab57507355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906124c5565b60405180910390fd5b7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561177a57507376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906124c5565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182b576101a460085461181e9190611bfd565b42111561182a57600080fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561186f578082015181840152602081019050611854565b60008484015250505050565b6000601f19601f8301169050919050565b600061189782611835565b6118a18185611840565b93506118b1818560208601611851565b6118ba8161187b565b840191505092915050565b600060208201905081810360008301526118df818461188c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611917826118ec565b9050919050565b6119278161190c565b811461193257600080fd5b50565b6000813590506119448161191e565b92915050565b6000819050919050565b61195d8161194a565b811461196857600080fd5b50565b60008135905061197a81611954565b92915050565b60008060408385031215611997576119966118e7565b5b60006119a585828601611935565b92505060206119b68582860161196b565b9150509250929050565b60008115159050919050565b6119d5816119c0565b82525050565b60006020820190506119f060008301846119cc565b92915050565b6119ff8161194a565b82525050565b6000602082019050611a1a60008301846119f6565b92915050565b600080600060608486031215611a3957611a386118e7565b5b6000611a4786828701611935565b9350506020611a5886828701611935565b9250506040611a698682870161196b565b9150509250925092565b600060ff82169050919050565b611a8981611a73565b82525050565b6000602082019050611aa46000830184611a80565b92915050565b600060208284031215611ac057611abf6118e7565b5b6000611ace8482850161196b565b91505092915050565b611ae08161190c565b82525050565b6000602082019050611afb6000830184611ad7565b92915050565b600060208284031215611b1757611b166118e7565b5b6000611b2584828501611935565b91505092915050565b60008060408385031215611b4557611b446118e7565b5b6000611b5385828601611935565b9250506020611b6485828601611935565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bb557607f821691505b602082108103611bc857611bc7611b6e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c088261194a565b9150611c138361194a565b9250828201905080821115611c2b57611c2a611bce565b5b92915050565b600081905092915050565b50565b6000611c4c600083611c31565b9150611c5782611c3c565b600082019050919050565b6000611c6d82611c3f565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000611cad600f83611840565b9150611cb882611c77565b602082019050919050565b60006020820190508181036000830152611cdc81611ca0565b9050919050565b7f4275726e20616d6f756e7420657863656564732062616c616e63650000000000600082015250565b6000611d19601b83611840565b9150611d2482611ce3565b602082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b600081519050611d5e81611954565b92915050565b600060208284031215611d7a57611d796118e7565b5b6000611d8884828501611d4f565b91505092915050565b7f4e6f204c5020746f6b656e7320746f206c6f636b000000000000000000000000600082015250565b6000611dc7601483611840565b9150611dd282611d91565b602082019050919050565b60006020820190508181036000830152611df681611dba565b9050919050565b6000604082019050611e126000830185611ad7565b611e1f60208301846119f6565b9392505050565b611e2f816119c0565b8114611e3a57600080fd5b50565b600081519050611e4c81611e26565b92915050565b600060208284031215611e6857611e676118e7565b5b6000611e7684828501611e3d565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611edb602583611840565b9150611ee682611e7f565b604082019050919050565b60006020820190508181036000830152611f0a81611ece565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f6d602683611840565b9150611f7882611f11565b604082019050919050565b60006020820190508181036000830152611f9c81611f60565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fff602483611840565b915061200a82611fa3565b604082019050919050565b6000602082019050818103600083015261202e81611ff2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612091602283611840565b915061209c82612035565b604082019050919050565b600060208201905081810360008301526120c081612084565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120fd601d83611840565b9150612108826120c7565b602082019050919050565b6000602082019050818103600083015261212c816120f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061218f602583611840565b915061219a82612133565b604082019050919050565b600060208201905081810360008301526121be81612182565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612221602383611840565b915061222c826121c5565b604082019050919050565b6000602082019050818103600083015261225081612214565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122b3602683611840565b91506122be82612257565b604082019050919050565b600060208201905081810360008301526122e2816122a6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061231f602083611840565b915061232a826122e9565b602082019050919050565b6000602082019050818103600083015261234e81612312565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123b1602183611840565b91506123bc82612355565b604082019050919050565b600060208201905081810360008301526123e0816123a4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612443602283611840565b915061244e826123e7565b604082019050919050565b6000602082019050818103600083015261247281612436565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006124af600b83611840565b91506124ba82612479565b602082019050919050565b600060208201905081810360008301526124de816124a2565b905091905056fea264697066735822122036b286b505575fbebdb82e082f70b8e1e8ae0d9eb819bbfebd52a67d675c8e7764736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461031a578063a9059cbb1461034a578063a94d88111461037a578063d5abeb0114610398578063dd62ed3e146103b6578063f2fde38b146103e657610137565b806370a0823114610286578063715018a6146102b657806378e97925146102c05780638da5cb5b146102de57806395d89b41146102fc57610137565b806339509351116100ff57806339509351146101f65780633ccfd60b1461022657806342966c681461023057806349bd5a5e1461024c578063674762881461026a57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610402565b60405161015191906118c5565b60405180910390f35b610174600480360381019061016f9190611980565b610494565b60405161018191906119db565b60405180910390f35b6101926104b7565b60405161019f9190611a05565b60405180910390f35b6101c260048036038101906101bd9190611a20565b6104c1565b6040516101cf91906119db565b60405180910390f35b6101e06104f0565b6040516101ed9190611a8f565b60405180910390f35b610210600480360381019061020b9190611980565b6104f9565b60405161021d91906119db565b60405180910390f35b61022e610530565b005b61024a60048036038101906102459190611aaa565b6105fa565b005b610254610660565b6040516102619190611ae6565b60405180910390f35b610284600480360381019061027f9190611b01565b610686565b005b6102a0600480360381019061029b9190611b01565b610816565b6040516102ad9190611a05565b60405180910390f35b6102be61085e565b005b6102c8610872565b6040516102d59190611a05565b60405180910390f35b6102e6610878565b6040516102f39190611ae6565b60405180910390f35b6103046108a2565b60405161031191906118c5565b60405180910390f35b610334600480360381019061032f9190611980565b610934565b60405161034191906119db565b60405180910390f35b610364600480360381019061035f9190611980565b6109ab565b60405161037191906119db565b60405180910390f35b6103826109ce565b60405161038f91906119db565b60405180910390f35b6103a06109e1565b6040516103ad9190611a05565b60405180910390f35b6103d060048036038101906103cb9190611b2e565b6109f1565b6040516103dd9190611a05565b60405180910390f35b61040060048036038101906103fb9190611b01565b610a78565b005b60606003805461041190611b9d565b80601f016020809104026020016040519081016040528092919081815260200182805461043d90611b9d565b801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b60008061049f610afb565b90506104ac818585610b03565b600191505092915050565b6000600254905090565b6000806104cc610afb565b90506104d9858285610ccc565b6104e4858585610d58565b60019150509392505050565b60006012905090565b600080610504610afb565b905061052581858561051685896109f1565b6105209190611bfd565b610b03565b600191505092915050565b610538610fce565b600047905060006001905061054b610878565b73ffffffffffffffffffffffffffffffffffffffff168260405161056e90611c62565b60006040518083038185875af1925050503d80600081146105ab576040519150601f19603f3d011682016040523d82523d6000602084013e6105b0565b606091505b505080915050806105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed90611cc3565b60405180910390fd5b5050565b8061060b610606610afb565b610816565b101561064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390611d2f565b60405180910390fd5b61065d610657610afb565b8261104c565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61068e610fce565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106eb9190611ae6565b602060405180830381865afa158015610708573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072c9190611d64565b905060008111610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890611ddd565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016107ce929190611dfd565b6020604051808303816000875af11580156107ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108119190611e52565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610866610fce565b6108706000611219565b565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108b190611b9d565b80601f01602080910402602001604051908101604052809291908181526020018280546108dd90611b9d565b801561092a5780601f106108ff5761010080835404028352916020019161092a565b820191906000526020600020905b81548152906001019060200180831161090d57829003601f168201915b5050505050905090565b60008061093f610afb565b9050600061094d82866109f1565b905083811015610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098990611ef1565b60405180910390fd5b61099f8286868403610b03565b60019250505092915050565b6000806109b6610afb565b90506109c3818585610d58565b600191505092915050565b600960009054906101000a900460ff1681565b6b033b2e3c9fd0803ce800000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a80610fce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690611f83565b60405180910390fd5b610af881611219565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990612015565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd8906120a7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cbf9190611a05565b60405180910390a3505050565b6000610cd884846109f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d525781811015610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90612113565b60405180910390fd5b610d518484848403610b03565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906121a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90612237565b60405180910390fd5b610e418383836112df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906122c9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb59190611a05565b60405180910390a3610fc8848484611830565b50505050565b610fd6610afb565b73ffffffffffffffffffffffffffffffffffffffff16610ff4610878565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190612335565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906123c7565b60405180910390fd5b6110c7826000836112df565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490612459565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112009190611a05565b60405180910390a361121483600084611830565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561136f575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906124c5565b60405180910390fd5b736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561143e5750736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906124c5565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561150d57507377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61154c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611543906124c5565b60405180910390fd5b732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156115dc5750732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906124c5565b60405180910390fd5b7355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116ab57507355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906124c5565b60405180910390fd5b7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561177a57507376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906124c5565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361182b576101a460085461181e9190611bfd565b42111561182a57600080fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561186f578082015181840152602081019050611854565b60008484015250505050565b6000601f19601f8301169050919050565b600061189782611835565b6118a18185611840565b93506118b1818560208601611851565b6118ba8161187b565b840191505092915050565b600060208201905081810360008301526118df818461188c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611917826118ec565b9050919050565b6119278161190c565b811461193257600080fd5b50565b6000813590506119448161191e565b92915050565b6000819050919050565b61195d8161194a565b811461196857600080fd5b50565b60008135905061197a81611954565b92915050565b60008060408385031215611997576119966118e7565b5b60006119a585828601611935565b92505060206119b68582860161196b565b9150509250929050565b60008115159050919050565b6119d5816119c0565b82525050565b60006020820190506119f060008301846119cc565b92915050565b6119ff8161194a565b82525050565b6000602082019050611a1a60008301846119f6565b92915050565b600080600060608486031215611a3957611a386118e7565b5b6000611a4786828701611935565b9350506020611a5886828701611935565b9250506040611a698682870161196b565b9150509250925092565b600060ff82169050919050565b611a8981611a73565b82525050565b6000602082019050611aa46000830184611a80565b92915050565b600060208284031215611ac057611abf6118e7565b5b6000611ace8482850161196b565b91505092915050565b611ae08161190c565b82525050565b6000602082019050611afb6000830184611ad7565b92915050565b600060208284031215611b1757611b166118e7565b5b6000611b2584828501611935565b91505092915050565b60008060408385031215611b4557611b446118e7565b5b6000611b5385828601611935565b9250506020611b6485828601611935565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bb557607f821691505b602082108103611bc857611bc7611b6e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c088261194a565b9150611c138361194a565b9250828201905080821115611c2b57611c2a611bce565b5b92915050565b600081905092915050565b50565b6000611c4c600083611c31565b9150611c5782611c3c565b600082019050919050565b6000611c6d82611c3f565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000611cad600f83611840565b9150611cb882611c77565b602082019050919050565b60006020820190508181036000830152611cdc81611ca0565b9050919050565b7f4275726e20616d6f756e7420657863656564732062616c616e63650000000000600082015250565b6000611d19601b83611840565b9150611d2482611ce3565b602082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b600081519050611d5e81611954565b92915050565b600060208284031215611d7a57611d796118e7565b5b6000611d8884828501611d4f565b91505092915050565b7f4e6f204c5020746f6b656e7320746f206c6f636b000000000000000000000000600082015250565b6000611dc7601483611840565b9150611dd282611d91565b602082019050919050565b60006020820190508181036000830152611df681611dba565b9050919050565b6000604082019050611e126000830185611ad7565b611e1f60208301846119f6565b9392505050565b611e2f816119c0565b8114611e3a57600080fd5b50565b600081519050611e4c81611e26565b92915050565b600060208284031215611e6857611e676118e7565b5b6000611e7684828501611e3d565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611edb602583611840565b9150611ee682611e7f565b604082019050919050565b60006020820190508181036000830152611f0a81611ece565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f6d602683611840565b9150611f7882611f11565b604082019050919050565b60006020820190508181036000830152611f9c81611f60565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fff602483611840565b915061200a82611fa3565b604082019050919050565b6000602082019050818103600083015261202e81611ff2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612091602283611840565b915061209c82612035565b604082019050919050565b600060208201905081810360008301526120c081612084565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120fd601d83611840565b9150612108826120c7565b602082019050919050565b6000602082019050818103600083015261212c816120f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061218f602583611840565b915061219a82612133565b604082019050919050565b600060208201905081810360008301526121be81612182565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612221602383611840565b915061222c826121c5565b604082019050919050565b6000602082019050818103600083015261225081612214565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122b3602683611840565b91506122be82612257565b604082019050919050565b600060208201905081810360008301526122e2816122a6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061231f602083611840565b915061232a826122e9565b602082019050919050565b6000602082019050818103600083015261234e81612312565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123b1602183611840565b91506123bc82612355565b604082019050919050565b600060208201905081810360008301526123e0816123a4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612443602283611840565b915061244e826123e7565b604082019050919050565b6000602082019050818103600083015261247281612436565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006124af600b83611840565b91506124ba82612479565b602082019050919050565b600060208201905081810360008301526124de816124a2565b905091905056fea264697066735822122036b286b505575fbebdb82e082f70b8e1e8ae0d9eb819bbfebd52a67d675c8e7764736f6c63430008130033

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.