ETH Price: $3,469.70 (-1.51%)
Gas: 8 Gwei

Token

Wrapped Pepe (WPEPE)
 

Overview

Max Total Supply

420,690,000 WPEPE

Holders

1,802 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-4.18%)

Onchain Market Cap

$125,567.55

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jlieberman.eth
Balance
0.4 WPEPE

Value
$0.00 ( ~0 Eth) [0.0000%]
0xe757970b801e5b99ab24c5cd9b5152234cff3001
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

WPEPE is reimagining the way we look at our favorite frog. What would be better for our community than Wrapping our Pepe and making it tradable for an even larger spread of cryptocurrencies. The ultimate meme, in the ultimate format, WPEPE.

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V3 (Ethereum)
0XB2FD1E0478DBF61772996BCCE8A2F1151EEEDA37-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.0003
0.0000001 Eth
$401.78
1,322,319.068 0XB2FD1E0478DBF61772996BCCE8A2F1151EEEDA37
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedPepe

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
    a part of history $WPEPE #WRAPPEDPEPE
        - wrappedpepe.vip
    
    * tg: @wpepeportal
    * twitter: @wrappedpepe
*/

pragma solidity ^0.8.7;

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

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

/**
 * @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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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");

        _beforeTokenTransfer(sender, recipient, amount);

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

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

contract WrappedPepe is Ownable, ERC20 {
    bool private _tradingEnabled;

    constructor(uint256 _totalSupply) ERC20("Wrapped Pepe", "WPEPE") {
        // internal function cannot mint after deployment
        _mint(msg.sender, _totalSupply);
    }

    /**
        * @dev Once function is called there is no way back
    */
    function enableTrading() external onlyOwner {
        _tradingEnabled = true;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (!_tradingEnabled) {
            require(from == owner() || to == owner(), "trading is not enabled");
            return;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b506040516200233f3803806200233f83398181016040528101906200003791906200049c565b6040518060400160405280600c81526020017f57726170706564205065706500000000000000000000000000000000000000008152506040518060400160405280600581526020017f5750455045000000000000000000000000000000000000000000000000000000815250620000c3620000b76200010260201b60201c565b6200010a60201b60201c565b8160049081620000d491906200073e565b508060059081620000e691906200073e565b505050620000fb3382620001ce60201b60201c565b50620009b2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002379062000886565b60405180910390fd5b62000254600083836200034760201b60201c565b8060036000828254620002689190620008d7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c09190620008d7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000327919062000923565b60405180910390a362000343600083836200042e60201b60201c565b5050565b600660009054906101000a900460ff1662000428576200036c6200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620003e05750620003b16200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000422576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004199062000990565b60405180910390fd5b62000429565b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b6000819050919050565b620004768162000461565b81146200048257600080fd5b50565b60008151905062000496816200046b565b92915050565b600060208284031215620004b557620004b46200045c565b5b6000620004c58482850162000485565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055057607f821691505b60208210810362000566576200056562000508565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000591565b620005dc868362000591565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200061f62000619620006138462000461565b620005f4565b62000461565b9050919050565b6000819050919050565b6200063b83620005fe565b620006536200064a8262000626565b8484546200059e565b825550505050565b600090565b6200066a6200065b565b6200067781848462000630565b505050565b5b818110156200069f576200069360008262000660565b6001810190506200067d565b5050565b601f821115620006ee57620006b8816200056c565b620006c38462000581565b81016020851015620006d3578190505b620006eb620006e28562000581565b8301826200067c565b50505b505050565b600082821c905092915050565b60006200071360001984600802620006f3565b1980831691505092915050565b60006200072e838362000700565b9150826002028217905092915050565b6200074982620004ce565b67ffffffffffffffff811115620007655762000764620004d9565b5b62000771825462000537565b6200077e828285620006a3565b600060209050601f831160018114620007b65760008415620007a1578287015190505b620007ad858262000720565b8655506200081d565b601f198416620007c6866200056c565b60005b82811015620007f057848901518255600182019150602085019450602081019050620007c9565b868310156200081057848901516200080c601f89168262000700565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200086e601f8362000825565b91506200087b8262000836565b602082019050919050565b60006020820190508181036000830152620008a1816200085f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008e48262000461565b9150620008f18362000461565b92508282019050808211156200090c576200090b620008a8565b5b92915050565b6200091d8162000461565b82525050565b60006020820190506200093a600083018462000912565b92915050565b7f74726164696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b60006200097860168362000825565b9150620009858262000940565b602082019050919050565b60006020820190508181036000830152620009ab8162000969565b9050919050565b61197d80620009c26000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610264578063a9059cbb14610294578063dd62ed3e146102c4578063f2fde38b146102f4576100f5565b8063715018a6146102145780638a8c523c1461021e5780638da5cb5b1461022857806395d89b4114610246576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610310565b60405161010f91906110a0565b60405180910390f35b610132600480360381019061012d919061115b565b6103a2565b60405161013f91906111b6565b60405180910390f35b6101506103c0565b60405161015d91906111e0565b60405180910390f35b610180600480360381019061017b91906111fb565b6103ca565b60405161018d91906111b6565b60405180910390f35b61019e6104c2565b6040516101ab919061126a565b60405180910390f35b6101ce60048036038101906101c9919061115b565b6104cb565b6040516101db91906111b6565b60405180910390f35b6101fe60048036038101906101f99190611285565b610577565b60405161020b91906111e0565b60405180910390f35b61021c6105c0565b005b610226610648565b005b6102306106e1565b60405161023d91906112c1565b60405180910390f35b61024e61070a565b60405161025b91906110a0565b60405180910390f35b61027e6004803603810190610279919061115b565b61079c565b60405161028b91906111b6565b60405180910390f35b6102ae60048036038101906102a9919061115b565b610887565b6040516102bb91906111b6565b60405180910390f35b6102de60048036038101906102d991906112dc565b6108a5565b6040516102eb91906111e0565b60405180910390f35b61030e60048036038101906103099190611285565b61092c565b005b60606004805461031f9061134b565b80601f016020809104026020016040519081016040528092919081815260200182805461034b9061134b565b80156103985780601f1061036d57610100808354040283529160200191610398565b820191906000526020600020905b81548152906001019060200180831161037b57829003601f168201915b5050505050905090565b60006103b66103af610a23565b8484610a2b565b6001905092915050565b6000600354905090565b60006103d7848484610bf4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610422610a23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610499906113ee565b60405180910390fd5b6104b6856104ae610a23565b858403610a2b565b60019150509392505050565b60006012905090565b600061056d6104d8610a23565b8484600260006104e6610a23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610568919061143d565b610a2b565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c8610a23565b73ffffffffffffffffffffffffffffffffffffffff166105e66106e1565b73ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610633906114bd565b60405180910390fd5b6106466000610e76565b565b610650610a23565b73ffffffffffffffffffffffffffffffffffffffff1661066e6106e1565b73ffffffffffffffffffffffffffffffffffffffff16146106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb906114bd565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107199061134b565b80601f01602080910402602001604051908101604052809291908181526020018280546107459061134b565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b600080600260006107ab610a23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085f9061154f565b60405180910390fd5b61087c610873610a23565b85858403610a2b565b600191505092915050565b600061089b610894610a23565b8484610bf4565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610934610a23565b73ffffffffffffffffffffffffffffffffffffffff166109526106e1565b73ffffffffffffffffffffffffffffffffffffffff16146109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f906114bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906115e1565b60405180910390fd5b610a2081610e76565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611673565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611705565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be791906111e0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611797565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990611829565b60405180910390fd5b610cdd838383610f3a565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b906118bb565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df9919061143d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5d91906111e0565b60405180910390a3610e7084848461100b565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff1661100557610f566106e1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fc15750610f926106e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790611927565b60405180910390fd5b611006565b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561104a57808201518184015260208101905061102f565b60008484015250505050565b6000601f19601f8301169050919050565b600061107282611010565b61107c818561101b565b935061108c81856020860161102c565b61109581611056565b840191505092915050565b600060208201905081810360008301526110ba8184611067565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110f2826110c7565b9050919050565b611102816110e7565b811461110d57600080fd5b50565b60008135905061111f816110f9565b92915050565b6000819050919050565b61113881611125565b811461114357600080fd5b50565b6000813590506111558161112f565b92915050565b60008060408385031215611172576111716110c2565b5b600061118085828601611110565b925050602061119185828601611146565b9150509250929050565b60008115159050919050565b6111b08161119b565b82525050565b60006020820190506111cb60008301846111a7565b92915050565b6111da81611125565b82525050565b60006020820190506111f560008301846111d1565b92915050565b600080600060608486031215611214576112136110c2565b5b600061122286828701611110565b935050602061123386828701611110565b925050604061124486828701611146565b9150509250925092565b600060ff82169050919050565b6112648161124e565b82525050565b600060208201905061127f600083018461125b565b92915050565b60006020828403121561129b5761129a6110c2565b5b60006112a984828501611110565b91505092915050565b6112bb816110e7565b82525050565b60006020820190506112d660008301846112b2565b92915050565b600080604083850312156112f3576112f26110c2565b5b600061130185828601611110565b925050602061131285828601611110565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061136357607f821691505b6020821081036113765761137561131c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006113d860288361101b565b91506113e38261137c565b604082019050919050565b60006020820190508181036000830152611407816113cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061144882611125565b915061145383611125565b925082820190508082111561146b5761146a61140e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006114a760208361101b565b91506114b282611471565b602082019050919050565b600060208201905081810360008301526114d68161149a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061153960258361101b565b9150611544826114dd565b604082019050919050565b600060208201905081810360008301526115688161152c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115cb60268361101b565b91506115d68261156f565b604082019050919050565b600060208201905081810360008301526115fa816115be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061165d60248361101b565b915061166882611601565b604082019050919050565b6000602082019050818103600083015261168c81611650565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116ef60228361101b565b91506116fa82611693565b604082019050919050565b6000602082019050818103600083015261171e816116e2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061178160258361101b565b915061178c82611725565b604082019050919050565b600060208201905081810360008301526117b081611774565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061181360238361101b565b915061181e826117b7565b604082019050919050565b6000602082019050818103600083015261184281611806565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118a560268361101b565b91506118b082611849565b604082019050919050565b600060208201905081810360008301526118d481611898565b9050919050565b7f74726164696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b600061191160168361101b565b915061191c826118db565b602082019050919050565b6000602082019050818103600083015261194081611904565b905091905056fea2646970667358221220c4019f488c937ab5b31b03db4a153034b9f0e36cc6777b2179fb8559d6fc59d264736f6c634300081200330000000000000000000000000000000000000000015bfc9298de952e2f400000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610264578063a9059cbb14610294578063dd62ed3e146102c4578063f2fde38b146102f4576100f5565b8063715018a6146102145780638a8c523c1461021e5780638da5cb5b1461022857806395d89b4114610246576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610310565b60405161010f91906110a0565b60405180910390f35b610132600480360381019061012d919061115b565b6103a2565b60405161013f91906111b6565b60405180910390f35b6101506103c0565b60405161015d91906111e0565b60405180910390f35b610180600480360381019061017b91906111fb565b6103ca565b60405161018d91906111b6565b60405180910390f35b61019e6104c2565b6040516101ab919061126a565b60405180910390f35b6101ce60048036038101906101c9919061115b565b6104cb565b6040516101db91906111b6565b60405180910390f35b6101fe60048036038101906101f99190611285565b610577565b60405161020b91906111e0565b60405180910390f35b61021c6105c0565b005b610226610648565b005b6102306106e1565b60405161023d91906112c1565b60405180910390f35b61024e61070a565b60405161025b91906110a0565b60405180910390f35b61027e6004803603810190610279919061115b565b61079c565b60405161028b91906111b6565b60405180910390f35b6102ae60048036038101906102a9919061115b565b610887565b6040516102bb91906111b6565b60405180910390f35b6102de60048036038101906102d991906112dc565b6108a5565b6040516102eb91906111e0565b60405180910390f35b61030e60048036038101906103099190611285565b61092c565b005b60606004805461031f9061134b565b80601f016020809104026020016040519081016040528092919081815260200182805461034b9061134b565b80156103985780601f1061036d57610100808354040283529160200191610398565b820191906000526020600020905b81548152906001019060200180831161037b57829003601f168201915b5050505050905090565b60006103b66103af610a23565b8484610a2b565b6001905092915050565b6000600354905090565b60006103d7848484610bf4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610422610a23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610499906113ee565b60405180910390fd5b6104b6856104ae610a23565b858403610a2b565b60019150509392505050565b60006012905090565b600061056d6104d8610a23565b8484600260006104e6610a23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610568919061143d565b610a2b565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c8610a23565b73ffffffffffffffffffffffffffffffffffffffff166105e66106e1565b73ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610633906114bd565b60405180910390fd5b6106466000610e76565b565b610650610a23565b73ffffffffffffffffffffffffffffffffffffffff1661066e6106e1565b73ffffffffffffffffffffffffffffffffffffffff16146106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb906114bd565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107199061134b565b80601f01602080910402602001604051908101604052809291908181526020018280546107459061134b565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b600080600260006107ab610a23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085f9061154f565b60405180910390fd5b61087c610873610a23565b85858403610a2b565b600191505092915050565b600061089b610894610a23565b8484610bf4565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610934610a23565b73ffffffffffffffffffffffffffffffffffffffff166109526106e1565b73ffffffffffffffffffffffffffffffffffffffff16146109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f906114bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e906115e1565b60405180910390fd5b610a2081610e76565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611673565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611705565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be791906111e0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611797565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990611829565b60405180910390fd5b610cdd838383610f3a565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b906118bb565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df9919061143d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5d91906111e0565b60405180910390a3610e7084848461100b565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff1661100557610f566106e1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fc15750610f926106e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790611927565b60405180910390fd5b611006565b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561104a57808201518184015260208101905061102f565b60008484015250505050565b6000601f19601f8301169050919050565b600061107282611010565b61107c818561101b565b935061108c81856020860161102c565b61109581611056565b840191505092915050565b600060208201905081810360008301526110ba8184611067565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110f2826110c7565b9050919050565b611102816110e7565b811461110d57600080fd5b50565b60008135905061111f816110f9565b92915050565b6000819050919050565b61113881611125565b811461114357600080fd5b50565b6000813590506111558161112f565b92915050565b60008060408385031215611172576111716110c2565b5b600061118085828601611110565b925050602061119185828601611146565b9150509250929050565b60008115159050919050565b6111b08161119b565b82525050565b60006020820190506111cb60008301846111a7565b92915050565b6111da81611125565b82525050565b60006020820190506111f560008301846111d1565b92915050565b600080600060608486031215611214576112136110c2565b5b600061122286828701611110565b935050602061123386828701611110565b925050604061124486828701611146565b9150509250925092565b600060ff82169050919050565b6112648161124e565b82525050565b600060208201905061127f600083018461125b565b92915050565b60006020828403121561129b5761129a6110c2565b5b60006112a984828501611110565b91505092915050565b6112bb816110e7565b82525050565b60006020820190506112d660008301846112b2565b92915050565b600080604083850312156112f3576112f26110c2565b5b600061130185828601611110565b925050602061131285828601611110565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061136357607f821691505b6020821081036113765761137561131c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006113d860288361101b565b91506113e38261137c565b604082019050919050565b60006020820190508181036000830152611407816113cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061144882611125565b915061145383611125565b925082820190508082111561146b5761146a61140e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006114a760208361101b565b91506114b282611471565b602082019050919050565b600060208201905081810360008301526114d68161149a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061153960258361101b565b9150611544826114dd565b604082019050919050565b600060208201905081810360008301526115688161152c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115cb60268361101b565b91506115d68261156f565b604082019050919050565b600060208201905081810360008301526115fa816115be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061165d60248361101b565b915061166882611601565b604082019050919050565b6000602082019050818103600083015261168c81611650565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116ef60228361101b565b91506116fa82611693565b604082019050919050565b6000602082019050818103600083015261171e816116e2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061178160258361101b565b915061178c82611725565b604082019050919050565b600060208201905081810360008301526117b081611774565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061181360238361101b565b915061181e826117b7565b604082019050919050565b6000602082019050818103600083015261184281611806565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006118a560268361101b565b91506118b082611849565b604082019050919050565b600060208201905081810360008301526118d481611898565b9050919050565b7f74726164696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b600061191160168361101b565b915061191c826118db565b602082019050919050565b6000602082019050818103600083015261194081611904565b905091905056fea2646970667358221220c4019f488c937ab5b31b03db4a153034b9f0e36cc6777b2179fb8559d6fc59d264736f6c63430008120033

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

0000000000000000000000000000000000000000015bfc9298de952e2f400000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000015bfc9298de952e2f400000


Deployed Bytecode Sourcemap

18574:726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8613:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10780:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9733:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11431:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9575:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12332:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9904:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2525:103;;;:::i;:::-;;18917:85;;;:::i;:::-;;1874:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8832:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13050:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10244:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10482:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2783:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8613:100;8667:13;8700:5;8693:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8613:100;:::o;10780:169::-;10863:4;10880:39;10889:12;:10;:12::i;:::-;10903:7;10912:6;10880:8;:39::i;:::-;10937:4;10930:11;;10780:169;;;;:::o;9733:108::-;9794:7;9821:12;;9814:19;;9733:108;:::o;11431:492::-;11571:4;11588:36;11598:6;11606:9;11617:6;11588:9;:36::i;:::-;11637:24;11664:11;:19;11676:6;11664:19;;;;;;;;;;;;;;;:33;11684:12;:10;:12::i;:::-;11664:33;;;;;;;;;;;;;;;;11637:60;;11736:6;11716:16;:26;;11708:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11823:57;11832:6;11840:12;:10;:12::i;:::-;11873:6;11854:16;:25;11823:8;:57::i;:::-;11911:4;11904:11;;;11431:492;;;;;:::o;9575:93::-;9633:5;9658:2;9651:9;;9575:93;:::o;12332:215::-;12420:4;12437:80;12446:12;:10;:12::i;:::-;12460:7;12506:10;12469:11;:25;12481:12;:10;:12::i;:::-;12469:25;;;;;;;;;;;;;;;:34;12495:7;12469:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12437:8;:80::i;:::-;12535:4;12528:11;;12332:215;;;;:::o;9904:127::-;9978:7;10005:9;:18;10015:7;10005:18;;;;;;;;;;;;;;;;9998:25;;9904:127;;;:::o;2525:103::-;2105:12;:10;:12::i;:::-;2094:23;;:7;:5;:7::i;:::-;:23;;;2086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2590:30:::1;2617:1;2590:18;:30::i;:::-;2525:103::o:0;18917:85::-;2105:12;:10;:12::i;:::-;2094:23;;:7;:5;:7::i;:::-;:23;;;2086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18990:4:::1;18972:15;;:22;;;;;;;;;;;;;;;;;;18917:85::o:0;1874:87::-;1920:7;1947:6;;;;;;;;;;;1940:13;;1874:87;:::o;8832:104::-;8888:13;8921:7;8914:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8832:104;:::o;13050:413::-;13143:4;13160:24;13187:11;:25;13199:12;:10;:12::i;:::-;13187:25;;;;;;;;;;;;;;;:34;13213:7;13187:34;;;;;;;;;;;;;;;;13160:61;;13260:15;13240:16;:35;;13232:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13353:67;13362:12;:10;:12::i;:::-;13376:7;13404:15;13385:16;:34;13353:8;:67::i;:::-;13451:4;13444:11;;;13050:413;;;;:::o;10244:175::-;10330:4;10347:42;10357:12;:10;:12::i;:::-;10371:9;10382:6;10347:9;:42::i;:::-;10407:4;10400:11;;10244:175;;;;:::o;10482:151::-;10571:7;10598:11;:18;10610:5;10598:18;;;;;;;;;;;;;;;:27;10617:7;10598:27;;;;;;;;;;;;;;;;10591:34;;10482:151;;;;:::o;2783:201::-;2105:12;:10;:12::i;:::-;2094:23;;:7;:5;:7::i;:::-;:23;;;2086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2892:1:::1;2872:22;;:8;:22;;::::0;2864:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2948:28;2967:8;2948:18;:28::i;:::-;2783:201:::0;:::o;741:98::-;794:7;821:10;814:17;;741:98;:::o;16734:380::-;16887:1;16870:19;;:5;:19;;;16862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16968:1;16949:21;;:7;:21;;;16941:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17052:6;17022:11;:18;17034:5;17022:18;;;;;;;;;;;;;;;:27;17041:7;17022:27;;;;;;;;;;;;;;;:36;;;;17090:7;17074:32;;17083:5;17074:32;;;17099:6;17074:32;;;;;;:::i;:::-;;;;;;;;16734:380;;;:::o;13953:733::-;14111:1;14093:20;;:6;:20;;;14085:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14195:1;14174:23;;:9;:23;;;14166:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14250:47;14271:6;14279:9;14290:6;14250:20;:47::i;:::-;14310:21;14334:9;:17;14344:6;14334:17;;;;;;;;;;;;;;;;14310:41;;14387:6;14370:13;:23;;14362:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14508:6;14492:13;:22;14472:9;:17;14482:6;14472:17;;;;;;;;;;;;;;;:42;;;;14560:6;14536:9;:20;14546:9;14536:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14601:9;14584:35;;14593:6;14584:35;;;14612:6;14584:35;;;;;;:::i;:::-;;;;;;;;14632:46;14652:6;14660:9;14671:6;14632:19;:46::i;:::-;14074:612;13953:733;;;:::o;3144:191::-;3218:16;3237:6;;;;;;;;;;;3218:25;;3263:8;3254:6;;:17;;;;;;;;;;;;;;;;;;3318:8;3287:40;;3308:8;3287:40;;;;;;;;;;;;3207:128;3144:191;:::o;19010:287::-;19158:15;;;;;;;;;;;19153:137;;19206:7;:5;:7::i;:::-;19198:15;;:4;:15;;;:32;;;;19223:7;:5;:7::i;:::-;19217:13;;:2;:13;;;19198:32;19190:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19272:7;;19153:137;19010:287;;;;:::o;18443:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:227::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:10;6736:2;6728:6;6724:15;6717:35;6532:227;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:180::-;7610:77;7607:1;7600:88;7707:4;7704:1;7697:15;7731:4;7728:1;7721:15;7748:191;7788:3;7807:20;7825:1;7807:20;:::i;:::-;7802:25;;7841:20;7859:1;7841:20;:::i;:::-;7836:25;;7884:1;7881;7877:9;7870:16;;7905:3;7902:1;7899:10;7896:36;;;7912:18;;:::i;:::-;7896:36;7748:191;;;;:::o;7945:182::-;8085:34;8081:1;8073:6;8069:14;8062:58;7945:182;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:419::-;8671:4;8709:2;8698:9;8694:18;8686:26;;8758:9;8752:4;8748:20;8744:1;8733:9;8729:17;8722:47;8786:131;8912:4;8786:131;:::i;:::-;8778:139;;8505:419;;;:::o;8930:224::-;9070:34;9066:1;9058:6;9054:14;9047:58;9139:7;9134:2;9126:6;9122:15;9115:32;8930:224;:::o;9160:366::-;9302:3;9323:67;9387:2;9382:3;9323:67;:::i;:::-;9316:74;;9399:93;9488:3;9399:93;:::i;:::-;9517:2;9512:3;9508:12;9501:19;;9160:366;;;:::o;9532:419::-;9698:4;9736:2;9725:9;9721:18;9713:26;;9785:9;9779:4;9775:20;9771:1;9760:9;9756:17;9749:47;9813:131;9939:4;9813:131;:::i;:::-;9805:139;;9532:419;;;:::o;9957:225::-;10097:34;10093:1;10085:6;10081:14;10074:58;10166:8;10161:2;10153:6;10149:15;10142:33;9957:225;:::o;10188:366::-;10330:3;10351:67;10415:2;10410:3;10351:67;:::i;:::-;10344:74;;10427:93;10516:3;10427:93;:::i;:::-;10545:2;10540:3;10536:12;10529:19;;10188:366;;;:::o;10560:419::-;10726:4;10764:2;10753:9;10749:18;10741:26;;10813:9;10807:4;10803:20;10799:1;10788:9;10784:17;10777:47;10841:131;10967:4;10841:131;:::i;:::-;10833:139;;10560:419;;;:::o;10985:223::-;11125:34;11121:1;11113:6;11109:14;11102:58;11194:6;11189:2;11181:6;11177:15;11170:31;10985:223;:::o;11214:366::-;11356:3;11377:67;11441:2;11436:3;11377:67;:::i;:::-;11370:74;;11453:93;11542:3;11453:93;:::i;:::-;11571:2;11566:3;11562:12;11555:19;;11214:366;;;:::o;11586:419::-;11752:4;11790:2;11779:9;11775:18;11767:26;;11839:9;11833:4;11829:20;11825:1;11814:9;11810:17;11803:47;11867:131;11993:4;11867:131;:::i;:::-;11859:139;;11586:419;;;:::o;12011:221::-;12151:34;12147:1;12139:6;12135:14;12128:58;12220:4;12215:2;12207:6;12203:15;12196:29;12011:221;:::o;12238:366::-;12380:3;12401:67;12465:2;12460:3;12401:67;:::i;:::-;12394:74;;12477:93;12566:3;12477:93;:::i;:::-;12595:2;12590:3;12586:12;12579:19;;12238:366;;;:::o;12610:419::-;12776:4;12814:2;12803:9;12799:18;12791:26;;12863:9;12857:4;12853:20;12849:1;12838:9;12834:17;12827:47;12891:131;13017:4;12891:131;:::i;:::-;12883:139;;12610:419;;;:::o;13035:224::-;13175:34;13171:1;13163:6;13159:14;13152:58;13244:7;13239:2;13231:6;13227:15;13220:32;13035:224;:::o;13265:366::-;13407:3;13428:67;13492:2;13487:3;13428:67;:::i;:::-;13421:74;;13504:93;13593:3;13504:93;:::i;:::-;13622:2;13617:3;13613:12;13606:19;;13265:366;;;:::o;13637:419::-;13803:4;13841:2;13830:9;13826:18;13818:26;;13890:9;13884:4;13880:20;13876:1;13865:9;13861:17;13854:47;13918:131;14044:4;13918:131;:::i;:::-;13910:139;;13637:419;;;:::o;14062:222::-;14202:34;14198:1;14190:6;14186:14;14179:58;14271:5;14266:2;14258:6;14254:15;14247:30;14062:222;:::o;14290:366::-;14432:3;14453:67;14517:2;14512:3;14453:67;:::i;:::-;14446:74;;14529:93;14618:3;14529:93;:::i;:::-;14647:2;14642:3;14638:12;14631:19;;14290:366;;;:::o;14662:419::-;14828:4;14866:2;14855:9;14851:18;14843:26;;14915:9;14909:4;14905:20;14901:1;14890:9;14886:17;14879:47;14943:131;15069:4;14943:131;:::i;:::-;14935:139;;14662:419;;;:::o;15087:225::-;15227:34;15223:1;15215:6;15211:14;15204:58;15296:8;15291:2;15283:6;15279:15;15272:33;15087:225;:::o;15318:366::-;15460:3;15481:67;15545:2;15540:3;15481:67;:::i;:::-;15474:74;;15557:93;15646:3;15557:93;:::i;:::-;15675:2;15670:3;15666:12;15659:19;;15318:366;;;:::o;15690:419::-;15856:4;15894:2;15883:9;15879:18;15871:26;;15943:9;15937:4;15933:20;15929:1;15918:9;15914:17;15907:47;15971:131;16097:4;15971:131;:::i;:::-;15963:139;;15690:419;;;:::o;16115:172::-;16255:24;16251:1;16243:6;16239:14;16232:48;16115:172;:::o;16293:366::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:419::-;16831:4;16869:2;16858:9;16854:18;16846:26;;16918:9;16912:4;16908:20;16904:1;16893:9;16889:17;16882:47;16946:131;17072:4;16946:131;:::i;:::-;16938:139;;16665:419;;;:::o

Swarm Source

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