ETH Price: $2,526.80 (-2.67%)
Gas: 24.5 Gwei

Token

puredee DAO (PDAO)
 

Overview

Max Total Supply

504,000 PDAO

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
300 PDAO

Value
$0.00
0x905f72c60df3c5324bd61bb661f668050e908f82
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:
puredeeDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-02
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0;

/**
 * @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 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 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 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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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 guidelines: functions revert instead
 * of 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  _name;
    string  _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 puredeeDAO is ERC20 {
    
    constructor() public ERC20("puredee DAO", "PDAO") {
        _mint(msg.sender, 5 * 10**5 * 10**decimals());
    }

    function claim(string memory _info) external {
        require(
            keccak256(abi.encode(_info)) ==
                keccak256(abi.encode("p zong niu bi")),
            "yin wei ni bu gou qian cheng,suo yi bu neng ling qu"
        );
        require(
            totalSupply() < 10**6 * 10**decimals(),
            "ling wan le,sheng xia de qu zhao p zong yao ba"
        );
        _mint(msg.sender, 100 * 10**decimals());
    }
}

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":"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":"string","name":"_info","type":"string"}],"name":"claim","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600b81526a707572656465652044414f60a81b6020808301918252835180850190945260048452635044414f60e01b9084015281519192916200006191600391620001a4565b50805162000077906004906020840190620001a4565b505050620000b1336200008f620000b760201b60201c565b6200009c90600a620002ae565b620000ab906207a1206200037c565b620000bc565b620003f1565b601290565b6001600160a01b038216620001175760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200012b91906200024a565b90915550506001600160a01b038216600090815260208190526040812080548392906200015a9084906200024a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001b2906200039e565b90600052602060002090601f016020900481019282620001d6576000855562000221565b82601f10620001f157805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022157825182559160200191906001019062000204565b506200022f92915062000233565b5090565b5b808211156200022f576000815560010162000234565b60008219821115620002605762000260620003db565b500190565b600181815b80851115620002a65781600019048211156200028a576200028a620003db565b808516156200029857918102915b93841c93908002906200026a565b509250929050565b6000620002bf60ff841683620002c6565b9392505050565b600082620002d75750600162000376565b81620002e65750600062000376565b8160018114620002ff57600281146200030a576200032a565b600191505062000376565b60ff8411156200031e576200031e620003db565b50506001821b62000376565b5060208310610133831016604e8410600b84101617156200034f575081810a62000376565b6200035b838362000265565b8060001904821115620003725762000372620003db565b0290505b92915050565b6000816000190483118215151615620003995762000399620003db565b500290565b600181811c90821680620003b357607f821691505b60208210811415620003d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610d1a80620004016000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461014157806395d89b411461016a578063a457c2d714610172578063a9059cbb14610185578063dd62ed3e14610198578063f3fe12c9146101d157600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101e6565b6040516100ce9190610b03565b60405180910390f35b6100ea6100e5366004610a28565b610278565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a3660046109ec565b61028f565b604051601281526020016100ce565b6100ea61013c366004610a28565b61033e565b6100fe61014f366004610997565b6001600160a01b031660009081526020819052604090205490565b6100c161037a565b6100ea610180366004610a28565b610389565b6100ea610193366004610a28565b610422565b6100fe6101a63660046109b9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e46101df366004610a52565b61042f565b005b6060600380546101f590610c7d565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610c7d565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b60006102853384846105a9565b5060015b92915050565b600061029c8484846106cd565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103265760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61033385338584036105a9565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610375908690610b58565b6105a9565b6060600480546101f590610c7d565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561040b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161031d565b61041833858584036105a9565b5060019392505050565b60006102853384846106cd565b604051602001610460906020808252600d908201526c70207a6f6e67206e697520626960981b604082015260600190565b60405160208183030381529060405280519060200120816040516020016104879190610b03565b60405160208183030381529060405280519060200120146105065760405162461bcd60e51b815260206004820152603360248201527f79696e20776569206e6920627520676f75207169616e206368656e672c73756f604482015272207969206275206e656e67206c696e6720717560681b606482015260840161031d565b6105126012600a610bb3565b61051f90620f4240610c5e565b600254106105865760405162461bcd60e51b815260206004820152602e60248201527f6c696e672077616e206c652c7368656e6720786961206465207175207a68616f60448201526d2070207a6f6e672079616f20626160901b606482015260840161031d565b6105a6336105966012600a610bb3565b6105a1906064610c5e565b61089c565b50565b6001600160a01b03831661060b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161031d565b6001600160a01b03821661066c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161031d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107315760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161031d565b6001600160a01b0382166107935760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161031d565b6001600160a01b0383166000908152602081905260409020548181101561080b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161031d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610842908490610b58565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161088e91815260200190565b60405180910390a350505050565b6001600160a01b0382166108f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161031d565b80600260008282546109049190610b58565b90915550506001600160a01b03821660009081526020819052604081208054839290610931908490610b58565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b038116811461099257600080fd5b919050565b6000602082840312156109a957600080fd5b6109b28261097b565b9392505050565b600080604083850312156109cc57600080fd5b6109d58361097b565b91506109e36020840161097b565b90509250929050565b600080600060608486031215610a0157600080fd5b610a0a8461097b565b9250610a186020850161097b565b9150604084013590509250925092565b60008060408385031215610a3b57600080fd5b610a448361097b565b946020939093013593505050565b600060208284031215610a6457600080fd5b813567ffffffffffffffff80821115610a7c57600080fd5b818401915084601f830112610a9057600080fd5b813581811115610aa257610aa2610cce565b604051601f8201601f19908116603f01168101908382118183101715610aca57610aca610cce565b81604052828152876020848701011115610ae357600080fd5b826020860160208301376000928101602001929092525095945050505050565b600060208083528351808285015260005b81811015610b3057858101830151858201604001528201610b14565b81811115610b42576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b6b57610b6b610cb8565b500190565b600181815b80851115610bab578160001904821115610b9157610b91610cb8565b80851615610b9e57918102915b93841c9390800290610b75565b509250929050565b60006109b260ff841683600082610bcc57506001610289565b81610bd957506000610289565b8160018114610bef5760028114610bf957610c15565b6001915050610289565b60ff841115610c0a57610c0a610cb8565b50506001821b610289565b5060208310610133831016604e8410600b8410161715610c38575081810a610289565b610c428383610b70565b8060001904821115610c5657610c56610cb8565b029392505050565b6000816000190483118215151615610c7857610c78610cb8565b500290565b600181811c90821680610c9157607f821691505b60208210811415610cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122038bcf26ec5e4654f4a03dec2909395d9e2f1a576142774eec07ab22748b56bb264736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461014157806395d89b411461016a578063a457c2d714610172578063a9059cbb14610185578063dd62ed3e14610198578063f3fe12c9146101d157600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101e6565b6040516100ce9190610b03565b60405180910390f35b6100ea6100e5366004610a28565b610278565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a3660046109ec565b61028f565b604051601281526020016100ce565b6100ea61013c366004610a28565b61033e565b6100fe61014f366004610997565b6001600160a01b031660009081526020819052604090205490565b6100c161037a565b6100ea610180366004610a28565b610389565b6100ea610193366004610a28565b610422565b6100fe6101a63660046109b9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101e46101df366004610a52565b61042f565b005b6060600380546101f590610c7d565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610c7d565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b60006102853384846105a9565b5060015b92915050565b600061029c8484846106cd565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103265760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61033385338584036105a9565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610375908690610b58565b6105a9565b6060600480546101f590610c7d565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561040b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161031d565b61041833858584036105a9565b5060019392505050565b60006102853384846106cd565b604051602001610460906020808252600d908201526c70207a6f6e67206e697520626960981b604082015260600190565b60405160208183030381529060405280519060200120816040516020016104879190610b03565b60405160208183030381529060405280519060200120146105065760405162461bcd60e51b815260206004820152603360248201527f79696e20776569206e6920627520676f75207169616e206368656e672c73756f604482015272207969206275206e656e67206c696e6720717560681b606482015260840161031d565b6105126012600a610bb3565b61051f90620f4240610c5e565b600254106105865760405162461bcd60e51b815260206004820152602e60248201527f6c696e672077616e206c652c7368656e6720786961206465207175207a68616f60448201526d2070207a6f6e672079616f20626160901b606482015260840161031d565b6105a6336105966012600a610bb3565b6105a1906064610c5e565b61089c565b50565b6001600160a01b03831661060b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161031d565b6001600160a01b03821661066c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161031d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107315760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161031d565b6001600160a01b0382166107935760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161031d565b6001600160a01b0383166000908152602081905260409020548181101561080b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161031d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610842908490610b58565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161088e91815260200190565b60405180910390a350505050565b6001600160a01b0382166108f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161031d565b80600260008282546109049190610b58565b90915550506001600160a01b03821660009081526020819052604081208054839290610931908490610b58565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b038116811461099257600080fd5b919050565b6000602082840312156109a957600080fd5b6109b28261097b565b9392505050565b600080604083850312156109cc57600080fd5b6109d58361097b565b91506109e36020840161097b565b90509250929050565b600080600060608486031215610a0157600080fd5b610a0a8461097b565b9250610a186020850161097b565b9150604084013590509250925092565b60008060408385031215610a3b57600080fd5b610a448361097b565b946020939093013593505050565b600060208284031215610a6457600080fd5b813567ffffffffffffffff80821115610a7c57600080fd5b818401915084601f830112610a9057600080fd5b813581811115610aa257610aa2610cce565b604051601f8201601f19908116603f01168101908382118183101715610aca57610aca610cce565b81604052828152876020848701011115610ae357600080fd5b826020860160208301376000928101602001929092525095945050505050565b600060208083528351808285015260005b81811015610b3057858101830151858201604001528201610b14565b81811115610b42576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b6b57610b6b610cb8565b500190565b600181815b80851115610bab578160001904821115610b9157610b91610cb8565b80851615610b9e57918102915b93841c9390800290610b75565b509250929050565b60006109b260ff841683600082610bcc57506001610289565b81610bd957506000610289565b8160018114610bef5760028114610bf957610c15565b6001915050610289565b60ff841115610c0a57610c0a610cb8565b50506001821b610289565b5060208310610133831016604e8410600b8410161715610c38575081810a610289565b610c428383610b70565b8060001904821115610c5657610c56610cb8565b029392505050565b6000816000190483118215151615610c7857610c78610cb8565b500290565b600181811c90821680610c9157607f821691505b60208210811415610cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122038bcf26ec5e4654f4a03dec2909395d9e2f1a576142774eec07ab22748b56bb264736f6c63430008070033

Deployed Bytecode Sourcemap

18216:614:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8257:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10424:169;;;;;;:::i;:::-;;:::i;:::-;;;2332:14:1;;2325:22;2307:41;;2295:2;2280:18;10424:169:0;2167:187:1;9377:108:0;9465:12;;9377:108;;;7484:25:1;;;7472:2;7457:18;9377:108:0;7338:177:1;11075:492:0;;;;;;:::i;:::-;;:::i;9219:93::-;;;9302:2;7662:36:1;;7650:2;7635:18;9219:93:0;7520:184:1;11976:215:0;;;;;;:::i;:::-;;:::i;9548:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9649:18:0;9622:7;9649:18;;;;;;;;;;;;9548:127;8476:104;;;:::i;12694:413::-;;;;;;:::i;:::-;;:::i;9888:175::-;;;;;;:::i;:::-;;:::i;10126:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10242:18:0;;;10215:7;10242:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10126:151;18380:447;;;;;;:::i;:::-;;:::i;:::-;;8257:100;8311:13;8344:5;8337:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8257:100;:::o;10424:169::-;10507:4;10524:39;3434:10;10547:7;10556:6;10524:8;:39::i;:::-;-1:-1:-1;10581:4:0;10424:169;;;;;:::o;11075:492::-;11215:4;11232:36;11242:6;11250:9;11261:6;11232:9;:36::i;:::-;-1:-1:-1;;;;;11308:19:0;;11281:24;11308:19;;;:11;:19;;;;;;;;3434:10;11308:33;;;;;;;;11360:26;;;;11352:79;;;;-1:-1:-1;;;11352:79:0;;5212:2:1;11352:79:0;;;5194:21:1;5251:2;5231:18;;;5224:30;5290:34;5270:18;;;5263:62;-1:-1:-1;;;5341:18:1;;;5334:38;5389:19;;11352:79:0;;;;;;;;;11467:57;11476:6;3434:10;11517:6;11498:16;:25;11467:8;:57::i;:::-;-1:-1:-1;11555:4:0;;11075:492;-1:-1:-1;;;;11075:492:0:o;11976:215::-;3434:10;12064:4;12113:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12113:34:0;;;;;;;;;;12064:4;;12081:80;;12104:7;;12113:47;;12150:10;;12113:47;:::i;:::-;12081:8;:80::i;8476:104::-;8532:13;8565:7;8558:14;;;;;:::i;12694:413::-;3434:10;12787:4;12831:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12831:34:0;;;;;;;;;;12884:35;;;;12876:85;;;;-1:-1:-1;;;12876:85:0;;6774:2:1;12876:85:0;;;6756:21:1;6813:2;6793:18;;;6786:30;6852:34;6832:18;;;6825:62;-1:-1:-1;;;6903:18:1;;;6896:35;6948:19;;12876:85:0;6572:401:1;12876:85:0;12997:67;3434:10;13020:7;13048:15;13029:16;:34;12997:8;:67::i;:::-;-1:-1:-1;13095:4:0;;12694:413;-1:-1:-1;;;12694:413:0:o;9888:175::-;9974:4;9991:42;3434:10;10015:9;10026:6;9991:9;:42::i;18380:447::-;18517:27;;;;;;6027:2:1;6009:21;;;6066:2;6046:18;;;6039:30;-1:-1:-1;;;6100:2:1;6085:18;;6078:43;6153:2;6138:18;;5825:337;18517:27:0;;;;;;;;;;;;;18507:38;;;;;;18479:5;18468:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;18458:28;;;;;;:87;18436:188;;;;-1:-1:-1;;;18436:188:0;;4792:2:1;18436:188:0;;;4774:21:1;4831:2;4811:18;;;4804:30;4870:34;4850:18;;;4843:62;-1:-1:-1;;;4921:18:1;;;4914:49;4980:19;;18436:188:0;4590:415:1;18436:188:0;18681:14;9302:2;18681;:14;:::i;:::-;18673:22;;:5;:22;:::i;:::-;9465:12;;18657:38;18635:134;;;;-1:-1:-1;;;18635:134:0;;3567:2:1;18635:134:0;;;3549:21:1;3606:2;3586:18;;;3579:30;3645:34;3625:18;;;3618:62;-1:-1:-1;;;3696:18:1;;;3689:44;3750:19;;18635:134:0;3365:410:1;18635:134:0;18780:39;18786:10;18804:14;9302:2;18804;:14;:::i;:::-;18798:20;;:3;:20;:::i;:::-;18780:5;:39::i;:::-;18380:447;:::o;16378:380::-;-1:-1:-1;;;;;16514:19:0;;16506:68;;;;-1:-1:-1;;;16506:68:0;;6369:2:1;16506:68:0;;;6351:21:1;6408:2;6388:18;;;6381:30;6447:34;6427:18;;;6420:62;-1:-1:-1;;;6498:18:1;;;6491:34;6542:19;;16506:68:0;6167:400:1;16506:68:0;-1:-1:-1;;;;;16593:21:0;;16585:68;;;;-1:-1:-1;;;16585:68:0;;3982:2:1;16585:68:0;;;3964:21:1;4021:2;4001:18;;;3994:30;4060:34;4040:18;;;4033:62;-1:-1:-1;;;4111:18:1;;;4104:32;4153:19;;16585:68:0;3780:398:1;16585:68:0;-1:-1:-1;;;;;16666:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16718:32;;7484:25:1;;;16718:32:0;;7457:18:1;16718:32:0;;;;;;;16378:380;;;:::o;13597:733::-;-1:-1:-1;;;;;13737:20:0;;13729:70;;;;-1:-1:-1;;;13729:70:0;;5621:2:1;13729:70:0;;;5603:21:1;5660:2;5640:18;;;5633:30;5699:34;5679:18;;;5672:62;-1:-1:-1;;;5750:18:1;;;5743:35;5795:19;;13729:70:0;5419:401:1;13729:70:0;-1:-1:-1;;;;;13818:23:0;;13810:71;;;;-1:-1:-1;;;13810:71:0;;3163:2:1;13810:71:0;;;3145:21:1;3202:2;3182:18;;;3175:30;3241:34;3221:18;;;3214:62;-1:-1:-1;;;3292:18:1;;;3285:33;3335:19;;13810:71:0;2961:399:1;13810:71:0;-1:-1:-1;;;;;13978:17:0;;13954:21;13978:17;;;;;;;;;;;14014:23;;;;14006:74;;;;-1:-1:-1;;;14006:74:0;;4385:2:1;14006:74:0;;;4367:21:1;4424:2;4404:18;;;4397:30;4463:34;4443:18;;;4436:62;-1:-1:-1;;;4514:18:1;;;4507:36;4560:19;;14006:74:0;4183:402:1;14006:74:0;-1:-1:-1;;;;;14116:17:0;;;:9;:17;;;;;;;;;;;14136:22;;;14116:42;;14180:20;;;;;;;;:30;;14152:6;;14116:9;14180:30;;14152:6;;14180:30;:::i;:::-;;;;;;;;14245:9;-1:-1:-1;;;;;14228:35:0;14237:6;-1:-1:-1;;;;;14228:35:0;;14256:6;14228:35;;;;7484:25:1;;7472:2;7457:18;;7338:177;14228:35:0;;;;;;;;13718:612;13597:733;;;:::o;14617:399::-;-1:-1:-1;;;;;14701:21:0;;14693:65;;;;-1:-1:-1;;;14693:65:0;;7180:2:1;14693:65:0;;;7162:21:1;7219:2;7199:18;;;7192:30;7258:33;7238:18;;;7231:61;7309:18;;14693:65:0;6978:355:1;14693:65:0;14849:6;14833:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;14866:18:0;;:9;:18;;;;;;;;;;:28;;14888:6;;14866:9;:28;;14888:6;;14866:28;:::i;:::-;;;;-1:-1:-1;;14910:37:0;;7484:25:1;;;-1:-1:-1;;;;;14910:37:0;;;14927:1;;14910:37;;7472:2:1;7457:18;14910:37:0;;;;;;;14617:399;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:922::-;1309:6;1362:2;1350:9;1341:7;1337:23;1333:32;1330:52;;;1378:1;1375;1368:12;1330:52;1418:9;1405:23;1447:18;1488:2;1480:6;1477:14;1474:34;;;1504:1;1501;1494:12;1474:34;1542:6;1531:9;1527:22;1517:32;;1587:7;1580:4;1576:2;1572:13;1568:27;1558:55;;1609:1;1606;1599:12;1558:55;1645:2;1632:16;1667:2;1663;1660:10;1657:36;;;1673:18;;:::i;:::-;1748:2;1742:9;1716:2;1802:13;;-1:-1:-1;;1798:22:1;;;1822:2;1794:31;1790:40;1778:53;;;1846:18;;;1866:22;;;1843:46;1840:72;;;1892:18;;:::i;:::-;1932:10;1928:2;1921:22;1967:2;1959:6;1952:18;2007:7;2002:2;1997;1993;1989:11;1985:20;1982:33;1979:53;;;2028:1;2025;2018:12;1979:53;2084:2;2079;2075;2071:11;2066:2;2058:6;2054:15;2041:46;2129:1;2107:15;;;2124:2;2103:24;2096:35;;;;-1:-1:-1;2111:6:1;1240:922;-1:-1:-1;;;;;1240:922:1:o;2359:597::-;2471:4;2500:2;2529;2518:9;2511:21;2561:6;2555:13;2604:6;2599:2;2588:9;2584:18;2577:34;2629:1;2639:140;2653:6;2650:1;2647:13;2639:140;;;2748:14;;;2744:23;;2738:30;2714:17;;;2733:2;2710:26;2703:66;2668:10;;2639:140;;;2797:6;2794:1;2791:13;2788:91;;;2867:1;2862:2;2853:6;2842:9;2838:22;2834:31;2827:42;2788:91;-1:-1:-1;2940:2:1;2919:15;-1:-1:-1;;2915:29:1;2900:45;;;;2947:2;2896:54;;2359:597;-1:-1:-1;;;2359:597:1:o;7709:128::-;7749:3;7780:1;7776:6;7773:1;7770:13;7767:39;;;7786:18;;:::i;:::-;-1:-1:-1;7822:9:1;;7709:128::o;7842:422::-;7931:1;7974:5;7931:1;7988:270;8009:7;7999:8;7996:21;7988:270;;;8068:4;8064:1;8060:6;8056:17;8050:4;8047:27;8044:53;;;8077:18;;:::i;:::-;8127:7;8117:8;8113:22;8110:55;;;8147:16;;;;8110:55;8226:22;;;;8186:15;;;;7988:270;;;7992:3;7842:422;;;;;:::o;8269:140::-;8327:5;8356:47;8397:4;8387:8;8383:19;8377:4;8463:5;8493:8;8483:80;;-1:-1:-1;8534:1:1;8548:5;;8483:80;8582:4;8572:76;;-1:-1:-1;8619:1:1;8633:5;;8572:76;8664:4;8682:1;8677:59;;;;8750:1;8745:130;;;;8657:218;;8677:59;8707:1;8698:10;;8721:5;;;8745:130;8782:3;8772:8;8769:17;8766:43;;;8789:18;;:::i;:::-;-1:-1:-1;;8845:1:1;8831:16;;8860:5;;8657:218;;8959:2;8949:8;8946:16;8940:3;8934:4;8931:13;8927:36;8921:2;8911:8;8908:16;8903:2;8897:4;8894:12;8890:35;8887:77;8884:159;;;-1:-1:-1;8996:19:1;;;9028:5;;8884:159;9075:34;9100:8;9094:4;9075:34;:::i;:::-;9145:6;9141:1;9137:6;9133:19;9124:7;9121:32;9118:58;;;9156:18;;:::i;:::-;9194:20;;8414:806;-1:-1:-1;;;8414:806:1:o;9225:168::-;9265:7;9331:1;9327;9323:6;9319:14;9316:1;9313:21;9308:1;9301:9;9294:17;9290:45;9287:71;;;9338:18;;:::i;:::-;-1:-1:-1;9378:9:1;;9225:168::o;9398:380::-;9477:1;9473:12;;;;9520;;;9541:61;;9595:4;9587:6;9583:17;9573:27;;9541:61;9648:2;9640:6;9637:14;9617:18;9614:38;9611:161;;;9694:10;9689:3;9685:20;9682:1;9675:31;9729:4;9726:1;9719:15;9757:4;9754:1;9747:15;9611:161;;9398:380;;;:::o;9783:127::-;9844:10;9839:3;9835:20;9832:1;9825:31;9875:4;9872:1;9865:15;9899:4;9896:1;9889:15;9915:127;9976:10;9971:3;9967:20;9964:1;9957:31;10007:4;10004:1;9997:15;10031:4;10028:1;10021:15

Swarm Source

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