ETH Price: $2,468.14 (+0.95%)

Token

Pandee Coin (PANDEE)
 

Overview

Max Total Supply

888,000,000 PANDEE

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
imnotplaying.eth
Balance
66,533,199.8665331998665332 PANDEE

Value
$0.00
0x44e86542090b74c445e6cb5f9473b76acadf3747
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:
Pandee

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: contracts/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: contracts/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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


pragma solidity ^0.8.0;



contract Pandee is ERC20, Ownable {
    constructor() ERC20("Pandee Coin", "PANDEE") {
        _mint(msg.sender, 888000000000 * 10 ** decimals());
    }

    function burn(uint256 amount) public virtual{
        _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f50616e64656520436f696e0000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50414e444545000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000368565b508060049080519060200190620000af92919062000368565b505050620000d2620000c66200011960201b60201c565b6200012160201b60201c565b6200011333620000e7620001e760201b60201c565b600a620000f5919062000573565b64cec0ecb000620001079190620006b0565b620001f060201b60201c565b620007c9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a906200046b565b60405180910390fd5b62000277600083836200035e60201b60201c565b80600260008282546200028b9190620004bb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033e91906200048d565b60405180910390a36200035a600083836200036360201b60201c565b5050565b505050565b505050565b828054620003769062000728565b90600052602060002090601f0160209004810192826200039a5760008555620003e6565b82601f10620003b557805160ff1916838001178555620003e6565b82800160010185558215620003e6579182015b82811115620003e5578251825591602001919060010190620003c8565b5b509050620003f59190620003f9565b5090565b5b8082111562000414576000816000905550600101620003fa565b5090565b600062000427601f83620004aa565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004658162000711565b82525050565b60006020820190508181036000830152620004868162000418565b9050919050565b6000602082019050620004a460008301846200045a565b92915050565b600082825260208201905092915050565b6000620004c88262000711565b9150620004d58362000711565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200050d576200050c6200075e565b5b828201905092915050565b6000808291508390505b60018511156200056a578086048111156200054257620005416200075e565b5b6001851615620005525780820291505b80810290506200056285620007bc565b945062000522565b94509492505050565b6000620005808262000711565b91506200058d836200071b565b9250620005bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005c4565b905092915050565b600082620005d65760019050620006a9565b81620005e65760009050620006a9565b8160018114620005ff57600281146200060a5762000640565b6001915050620006a9565b60ff8411156200061f576200061e6200075e565b5b8360020a9150848211156200063957620006386200075e565b5b50620006a9565b5060208310610133831016604e8410600b84101617156200067a5782820a9050838111156200067457620006736200075e565b5b620006a9565b62000689848484600162000518565b92509050818404811115620006a357620006a26200075e565b5b81810290505b9392505050565b6000620006bd8262000711565b9150620006ca8362000711565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200070657620007056200075e565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200074157607f821691505b602082108114156200075857620007576200078d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b6118c880620007d96000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611511565b60405180910390f35b610132600480360381019061012d9190610feb565b6103b4565b60405161013f91906114f6565b60405180910390f35b6101506103d7565b60405161015d9190611693565b60405180910390f35b610180600480360381019061017b9190610f9c565b6103e1565b60405161018d91906114f6565b60405180910390f35b61019e610410565b6040516101ab91906116ae565b60405180910390f35b6101ce60048036038101906101c99190610feb565b610419565b6040516101db91906114f6565b60405180910390f35b6101fe60048036038101906101f99190611027565b610450565b005b61021a60048036038101906102159190610f37565b61045d565b6040516102279190611693565b60405180910390f35b6102386104a5565b005b6102426104b9565b60405161024f91906114db565b60405180910390f35b6102606104e3565b60405161026d9190611511565b60405180910390f35b610290600480360381019061028b9190610feb565b610575565b60405161029d91906114f6565b60405180910390f35b6102c060048036038101906102bb9190610feb565b6105ec565b6040516102cd91906114f6565b60405180910390f35b6102f060048036038101906102eb9190610f60565b61060f565b6040516102fd9190611693565b60405180910390f35b610320600480360381019061031b9190610f37565b610696565b005b606060038054610331906117c3565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906117c3565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf61071a565b90506103cc818585610722565b600191505092915050565b6000600254905090565b6000806103ec61071a565b90506103f98582856108ed565b610404858585610979565b60019150509392505050565b60006012905090565b60008061042461071a565b9050610445818585610436858961060f565b61044091906116e5565b610722565b600191505092915050565b61045a3382610bf1565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ad610dbf565b6104b76000610e3d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104f2906117c3565b80601f016020809104026020016040519081016040528092919081815260200182805461051e906117c3565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b5050505050905090565b60008061058061071a565b9050600061058e828661060f565b9050838110156105d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ca90611673565b60405180910390fd5b6105e08286868403610722565b60019250505092915050565b6000806105f761071a565b9050610604818585610979565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61069e610dbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561070e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070590611573565b60405180910390fd5b61071781610e3d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078990611653565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990611593565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e09190611693565b60405180910390a3505050565b60006108f9848461060f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109735781811015610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c906115b3565b60405180910390fd5b6109728484848403610722565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611633565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611533565b60405180910390fd5b610a64838383610f03565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906115d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd89190611693565b60405180910390a3610beb848484610f08565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611613565b60405180910390fd5b610c6d82600083610f03565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90611553565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610da69190611693565b60405180910390a3610dba83600084610f08565b505050565b610dc761071a565b73ffffffffffffffffffffffffffffffffffffffff16610de56104b9565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e32906115f3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610f1c81611864565b92915050565b600081359050610f318161187b565b92915050565b600060208284031215610f4957600080fd5b6000610f5784828501610f0d565b91505092915050565b60008060408385031215610f7357600080fd5b6000610f8185828601610f0d565b9250506020610f9285828601610f0d565b9150509250929050565b600080600060608486031215610fb157600080fd5b6000610fbf86828701610f0d565b9350506020610fd086828701610f0d565b9250506040610fe186828701610f22565b9150509250925092565b60008060408385031215610ffe57600080fd5b600061100c85828601610f0d565b925050602061101d85828601610f22565b9150509250929050565b60006020828403121561103957600080fd5b600061104784828501610f22565b91505092915050565b6110598161173b565b82525050565b6110688161174d565b82525050565b6000611079826116c9565b61108381856116d4565b9350611093818560208601611790565b61109c81611853565b840191505092915050565b60006110b46023836116d4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061111a6022836116d4565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111806026836116d4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111e66022836116d4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061124c601d836116d4565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061128c6026836116d4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112f26020836116d4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006113326021836116d4565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113986025836116d4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113fe6024836116d4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114646025836116d4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6114c681611779565b82525050565b6114d581611783565b82525050565b60006020820190506114f06000830184611050565b92915050565b600060208201905061150b600083018461105f565b92915050565b6000602082019050818103600083015261152b818461106e565b905092915050565b6000602082019050818103600083015261154c816110a7565b9050919050565b6000602082019050818103600083015261156c8161110d565b9050919050565b6000602082019050818103600083015261158c81611173565b9050919050565b600060208201905081810360008301526115ac816111d9565b9050919050565b600060208201905081810360008301526115cc8161123f565b9050919050565b600060208201905081810360008301526115ec8161127f565b9050919050565b6000602082019050818103600083015261160c816112e5565b9050919050565b6000602082019050818103600083015261162c81611325565b9050919050565b6000602082019050818103600083015261164c8161138b565b9050919050565b6000602082019050818103600083015261166c816113f1565b9050919050565b6000602082019050818103600083015261168c81611457565b9050919050565b60006020820190506116a860008301846114bd565b92915050565b60006020820190506116c360008301846114cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116f082611779565b91506116fb83611779565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117305761172f6117f5565b5b828201905092915050565b600061174682611759565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117ae578082015181840152602081019050611793565b838111156117bd576000848401525b50505050565b600060028204905060018216806117db57607f821691505b602082108114156117ef576117ee611824565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61186d8161173b565b811461187857600080fd5b50565b61188481611779565b811461188f57600080fd5b5056fea26469706673582212202922b5d7e02af9943df9aeaac60cb6809f70f8af091ce48fa5b05c9b4f76b87e64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611511565b60405180910390f35b610132600480360381019061012d9190610feb565b6103b4565b60405161013f91906114f6565b60405180910390f35b6101506103d7565b60405161015d9190611693565b60405180910390f35b610180600480360381019061017b9190610f9c565b6103e1565b60405161018d91906114f6565b60405180910390f35b61019e610410565b6040516101ab91906116ae565b60405180910390f35b6101ce60048036038101906101c99190610feb565b610419565b6040516101db91906114f6565b60405180910390f35b6101fe60048036038101906101f99190611027565b610450565b005b61021a60048036038101906102159190610f37565b61045d565b6040516102279190611693565b60405180910390f35b6102386104a5565b005b6102426104b9565b60405161024f91906114db565b60405180910390f35b6102606104e3565b60405161026d9190611511565b60405180910390f35b610290600480360381019061028b9190610feb565b610575565b60405161029d91906114f6565b60405180910390f35b6102c060048036038101906102bb9190610feb565b6105ec565b6040516102cd91906114f6565b60405180910390f35b6102f060048036038101906102eb9190610f60565b61060f565b6040516102fd9190611693565b60405180910390f35b610320600480360381019061031b9190610f37565b610696565b005b606060038054610331906117c3565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906117c3565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf61071a565b90506103cc818585610722565b600191505092915050565b6000600254905090565b6000806103ec61071a565b90506103f98582856108ed565b610404858585610979565b60019150509392505050565b60006012905090565b60008061042461071a565b9050610445818585610436858961060f565b61044091906116e5565b610722565b600191505092915050565b61045a3382610bf1565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ad610dbf565b6104b76000610e3d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104f2906117c3565b80601f016020809104026020016040519081016040528092919081815260200182805461051e906117c3565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b5050505050905090565b60008061058061071a565b9050600061058e828661060f565b9050838110156105d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ca90611673565b60405180910390fd5b6105e08286868403610722565b60019250505092915050565b6000806105f761071a565b9050610604818585610979565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61069e610dbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561070e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070590611573565b60405180910390fd5b61071781610e3d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078990611653565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990611593565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e09190611693565b60405180910390a3505050565b60006108f9848461060f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109735781811015610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c906115b3565b60405180910390fd5b6109728484848403610722565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611633565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611533565b60405180910390fd5b610a64838383610f03565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906115d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd89190611693565b60405180910390a3610beb848484610f08565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611613565b60405180910390fd5b610c6d82600083610f03565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90611553565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610da69190611693565b60405180910390a3610dba83600084610f08565b505050565b610dc761071a565b73ffffffffffffffffffffffffffffffffffffffff16610de56104b9565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e32906115f3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610f1c81611864565b92915050565b600081359050610f318161187b565b92915050565b600060208284031215610f4957600080fd5b6000610f5784828501610f0d565b91505092915050565b60008060408385031215610f7357600080fd5b6000610f8185828601610f0d565b9250506020610f9285828601610f0d565b9150509250929050565b600080600060608486031215610fb157600080fd5b6000610fbf86828701610f0d565b9350506020610fd086828701610f0d565b9250506040610fe186828701610f22565b9150509250925092565b60008060408385031215610ffe57600080fd5b600061100c85828601610f0d565b925050602061101d85828601610f22565b9150509250929050565b60006020828403121561103957600080fd5b600061104784828501610f22565b91505092915050565b6110598161173b565b82525050565b6110688161174d565b82525050565b6000611079826116c9565b61108381856116d4565b9350611093818560208601611790565b61109c81611853565b840191505092915050565b60006110b46023836116d4565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061111a6022836116d4565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111806026836116d4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111e66022836116d4565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061124c601d836116d4565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061128c6026836116d4565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112f26020836116d4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006113326021836116d4565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113986025836116d4565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113fe6024836116d4565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114646025836116d4565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6114c681611779565b82525050565b6114d581611783565b82525050565b60006020820190506114f06000830184611050565b92915050565b600060208201905061150b600083018461105f565b92915050565b6000602082019050818103600083015261152b818461106e565b905092915050565b6000602082019050818103600083015261154c816110a7565b9050919050565b6000602082019050818103600083015261156c8161110d565b9050919050565b6000602082019050818103600083015261158c81611173565b9050919050565b600060208201905081810360008301526115ac816111d9565b9050919050565b600060208201905081810360008301526115cc8161123f565b9050919050565b600060208201905081810360008301526115ec8161127f565b9050919050565b6000602082019050818103600083015261160c816112e5565b9050919050565b6000602082019050818103600083015261162c81611325565b9050919050565b6000602082019050818103600083015261164c8161138b565b9050919050565b6000602082019050818103600083015261166c816113f1565b9050919050565b6000602082019050818103600083015261168c81611457565b9050919050565b60006020820190506116a860008301846114bd565b92915050565b60006020820190506116c360008301846114cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116f082611779565b91506116fb83611779565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117305761172f6117f5565b5b828201905092915050565b600061174682611759565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156117ae578082015181840152602081019050611793565b838111156117bd576000848401525b50505050565b600060028204905060018216806117db57607f821691505b602082108114156117ef576117ee611824565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61186d8161173b565b811461187857600080fd5b50565b61188481611779565b811461188f57600080fd5b5056fea26469706673582212202922b5d7e02af9943df9aeaac60cb6809f70f8af091ce48fa5b05c9b4f76b87e64736f6c63430008000033

Deployed Bytecode Sourcemap

20262:254:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9205:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11565:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10334:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12346:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10176:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13016:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20425:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10505:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2755:103;;;:::i;:::-;;2114:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9424:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13757:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10838:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11094:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3013:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9205:100;9259:13;9292:5;9285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9205:100;:::o;11565:201::-;11648:4;11665:13;11681:12;:10;:12::i;:::-;11665:28;;11704:32;11713:5;11720:7;11729:6;11704:8;:32::i;:::-;11754:4;11747:11;;;11565:201;;;;:::o;10334:108::-;10395:7;10422:12;;10415:19;;10334:108;:::o;12346:261::-;12443:4;12460:15;12478:12;:10;:12::i;:::-;12460:30;;12501:38;12517:4;12523:7;12532:6;12501:15;:38::i;:::-;12550:27;12560:4;12566:2;12570:6;12550:9;:27::i;:::-;12595:4;12588:11;;;12346:261;;;;;:::o;10176:93::-;10234:5;10259:2;10252:9;;10176:93;:::o;13016:238::-;13104:4;13121:13;13137:12;:10;:12::i;:::-;13121:28;;13160:64;13169:5;13176:7;13213:10;13185:25;13195:5;13202:7;13185:9;:25::i;:::-;:38;;;;:::i;:::-;13160:8;:64::i;:::-;13242:4;13235:11;;;13016:238;;;;:::o;20425:88::-;20480:25;20486:10;20498:6;20480:5;:25::i;:::-;20425:88;:::o;10505:127::-;10579:7;10606:9;:18;10616:7;10606:18;;;;;;;;;;;;;;;;10599:25;;10505:127;;;:::o;2755:103::-;2000:13;:11;:13::i;:::-;2820:30:::1;2847:1;2820:18;:30::i;:::-;2755:103::o:0;2114:87::-;2160:7;2187:6;;;;;;;;;;;2180:13;;2114:87;:::o;9424:104::-;9480:13;9513:7;9506:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9424:104;:::o;13757:436::-;13850:4;13867:13;13883:12;:10;:12::i;:::-;13867:28;;13906:24;13933:25;13943:5;13950:7;13933:9;:25::i;:::-;13906:52;;13997:15;13977:16;:35;;13969:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14090:60;14099:5;14106:7;14134:15;14115:16;:34;14090:8;:60::i;:::-;14181:4;14174:11;;;;13757:436;;;;:::o;10838:193::-;10917:4;10934:13;10950:12;:10;:12::i;:::-;10934:28;;10973;10983:5;10990:2;10994:6;10973:9;:28::i;:::-;11019:4;11012:11;;;10838:193;;;;:::o;11094:151::-;11183:7;11210:11;:18;11222:5;11210:18;;;;;;;;;;;;;;;:27;11229:7;11210:27;;;;;;;;;;;;;;;;11203:34;;11094:151;;;;:::o;3013:201::-;2000:13;:11;:13::i;:::-;3122:1:::1;3102:22;;:8;:22;;;;3094:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3178:28;3197:8;3178:18;:28::i;:::-;3013:201:::0;:::o;688:98::-;741:7;768:10;761:17;;688:98;:::o;17750:346::-;17869:1;17852:19;;:5;:19;;;;17844:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17950:1;17931:21;;:7;:21;;;;17923:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18034:6;18004:11;:18;18016:5;18004:18;;;;;;;;;;;;;;;:27;18023:7;18004:27;;;;;;;;;;;;;;;:36;;;;18072:7;18056:32;;18065:5;18056:32;;;18081:6;18056:32;;;;;;:::i;:::-;;;;;;;;17750:346;;;:::o;18387:419::-;18488:24;18515:25;18525:5;18532:7;18515:9;:25::i;:::-;18488:52;;18575:17;18555:16;:37;18551:248;;18637:6;18617:16;:26;;18609:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18721:51;18730:5;18737:7;18765:6;18746:16;:25;18721:8;:51::i;:::-;18551:248;18387:419;;;;:::o;14663:806::-;14776:1;14760:18;;:4;:18;;;;14752:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14853:1;14839:16;;:2;:16;;;;14831:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14908:38;14929:4;14935:2;14939:6;14908:20;:38::i;:::-;14959:19;14981:9;:15;14991:4;14981:15;;;;;;;;;;;;;;;;14959:37;;15030:6;15015:11;:21;;15007:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15147:6;15133:11;:20;15115:9;:15;15125:4;15115:15;;;;;;;;;;;;;;;:38;;;;15350:6;15333:9;:13;15343:2;15333:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15400:2;15385:26;;15394:4;15385:26;;;15404:6;15385:26;;;;;;:::i;:::-;;;;;;;;15424:37;15444:4;15450:2;15454:6;15424:19;:37::i;:::-;14663:806;;;;:::o;16637:675::-;16740:1;16721:21;;:7;:21;;;;16713:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16793:49;16814:7;16831:1;16835:6;16793:20;:49::i;:::-;16855:22;16880:9;:18;16890:7;16880:18;;;;;;;;;;;;;;;;16855:43;;16935:6;16917:14;:24;;16909:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17054:6;17037:14;:23;17016:9;:18;17026:7;17016:18;;;;;;;;;;;;;;;:44;;;;17171:6;17155:12;;:22;;;;;;;;;;;17232:1;17206:37;;17215:7;17206:37;;;17236:6;17206:37;;;;;;:::i;:::-;;;;;;;;17256:48;17276:7;17293:1;17297:6;17256:19;:48::i;:::-;16637:675;;;:::o;2279:132::-;2354:12;:10;:12::i;:::-;2343:23;;:7;:5;:7::i;:::-;:23;;;2335:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2279:132::o;3374:191::-;3448:16;3467:6;;;;;;;;;;;3448:25;;3493:8;3484:6;;:17;;;;;;;;;;;;;;;;;;3548:8;3517:40;;3538:8;3517:40;;;;;;;;;;;;3374:191;;:::o;19406:91::-;;;;:::o;20101:90::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:327::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:31;4575:1;4570:3;4566:11;4559:52;4637:2;4632:3;4628:12;4621:19;;4465:181;;;:::o;4652:370::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:34;4908:1;4903:3;4899:11;4892:55;4978:8;4973:2;4968:3;4964:12;4957:30;5013:2;5008:3;5004:12;4997:19;;4798:224;;;:::o;5028:330::-;;5191:67;5255:2;5250:3;5191:67;:::i;:::-;5184:74;;5288:34;5284:1;5279:3;5275:11;5268:55;5349:2;5344:3;5340:12;5333:19;;5174:184;;;:::o;5364:365::-;;5527:67;5591:2;5586:3;5527:67;:::i;:::-;5520:74;;5624:34;5620:1;5615:3;5611:11;5604:55;5690:3;5685:2;5680:3;5676:12;5669:25;5720:2;5715:3;5711:12;5704:19;;5510:219;;;:::o;5735:369::-;;5898:67;5962:2;5957:3;5898:67;:::i;:::-;5891:74;;5995:34;5991:1;5986:3;5982:11;5975:55;6061:7;6056:2;6051:3;6047:12;6040:29;6095:2;6090:3;6086:12;6079:19;;5881:223;;;:::o;6110:368::-;;6273:67;6337:2;6332:3;6273:67;:::i;:::-;6266:74;;6370:34;6366:1;6361:3;6357:11;6350:55;6436:6;6431:2;6426:3;6422:12;6415:28;6469:2;6464:3;6460:12;6453:19;;6256:222;;;:::o;6484:369::-;;6647:67;6711:2;6706:3;6647:67;:::i;:::-;6640:74;;6744:34;6740:1;6735:3;6731:11;6724:55;6810:7;6805:2;6800:3;6796:12;6789:29;6844:2;6839:3;6835:12;6828:19;;6630:223;;;:::o;6859:118::-;6946:24;6964:5;6946:24;:::i;:::-;6941:3;6934:37;6924:53;;:::o;6983:112::-;7066:22;7082:5;7066:22;:::i;:::-;7061:3;7054:35;7044:51;;:::o;7101:222::-;;7232:2;7221:9;7217:18;7209:26;;7245:71;7313:1;7302:9;7298:17;7289:6;7245:71;:::i;:::-;7199:124;;;;:::o;7329:210::-;;7454:2;7443:9;7439:18;7431:26;;7467:65;7529:1;7518:9;7514:17;7505:6;7467:65;:::i;:::-;7421:118;;;;:::o;7545:313::-;;7696:2;7685:9;7681:18;7673:26;;7745:9;7739:4;7735:20;7731:1;7720:9;7716:17;7709:47;7773:78;7846:4;7837:6;7773:78;:::i;:::-;7765:86;;7663:195;;;;:::o;7864:419::-;;8068:2;8057:9;8053:18;8045:26;;8117:9;8111:4;8107:20;8103:1;8092:9;8088:17;8081:47;8145:131;8271:4;8145:131;:::i;:::-;8137:139;;8035:248;;;:::o;8289:419::-;;8493:2;8482:9;8478:18;8470:26;;8542:9;8536:4;8532:20;8528:1;8517:9;8513:17;8506:47;8570:131;8696:4;8570:131;:::i;:::-;8562:139;;8460:248;;;:::o;8714:419::-;;8918:2;8907:9;8903:18;8895:26;;8967:9;8961:4;8957:20;8953:1;8942:9;8938:17;8931:47;8995:131;9121:4;8995:131;:::i;:::-;8987:139;;8885:248;;;:::o;9139:419::-;;9343:2;9332:9;9328:18;9320:26;;9392:9;9386:4;9382:20;9378:1;9367:9;9363:17;9356:47;9420:131;9546:4;9420:131;:::i;:::-;9412:139;;9310:248;;;:::o;9564:419::-;;9768:2;9757:9;9753:18;9745:26;;9817:9;9811:4;9807:20;9803:1;9792:9;9788:17;9781:47;9845:131;9971:4;9845:131;:::i;:::-;9837:139;;9735:248;;;:::o;9989:419::-;;10193:2;10182:9;10178:18;10170:26;;10242:9;10236:4;10232:20;10228:1;10217:9;10213:17;10206:47;10270:131;10396:4;10270:131;:::i;:::-;10262:139;;10160:248;;;:::o;10414:419::-;;10618:2;10607:9;10603:18;10595:26;;10667:9;10661:4;10657:20;10653:1;10642:9;10638:17;10631:47;10695:131;10821:4;10695:131;:::i;:::-;10687:139;;10585:248;;;:::o;10839:419::-;;11043:2;11032:9;11028:18;11020:26;;11092:9;11086:4;11082:20;11078:1;11067:9;11063:17;11056:47;11120:131;11246:4;11120:131;:::i;:::-;11112:139;;11010:248;;;:::o;11264:419::-;;11468:2;11457:9;11453:18;11445:26;;11517:9;11511:4;11507:20;11503:1;11492:9;11488:17;11481:47;11545:131;11671:4;11545:131;:::i;:::-;11537:139;;11435:248;;;:::o;11689:419::-;;11893:2;11882:9;11878:18;11870:26;;11942:9;11936:4;11932:20;11928:1;11917:9;11913:17;11906:47;11970:131;12096:4;11970:131;:::i;:::-;11962:139;;11860:248;;;:::o;12114:419::-;;12318:2;12307:9;12303:18;12295:26;;12367:9;12361:4;12357:20;12353:1;12342:9;12338:17;12331:47;12395:131;12521:4;12395:131;:::i;:::-;12387:139;;12285:248;;;:::o;12539:222::-;;12670:2;12659:9;12655:18;12647:26;;12683:71;12751:1;12740:9;12736:17;12727:6;12683:71;:::i;:::-;12637:124;;;;:::o;12767:214::-;;12894:2;12883:9;12879:18;12871:26;;12907:67;12971:1;12960:9;12956:17;12947:6;12907:67;:::i;:::-;12861:120;;;;:::o;12987:99::-;;13073:5;13067:12;13057:22;;13046:40;;;:::o;13092:169::-;;13210:6;13205:3;13198:19;13250:4;13245:3;13241:14;13226:29;;13188:73;;;;:::o;13267:305::-;;13326:20;13344:1;13326:20;:::i;:::-;13321:25;;13360:20;13378:1;13360:20;:::i;:::-;13355:25;;13514:1;13446:66;13442:74;13439:1;13436:81;13433:2;;;13520:18;;:::i;:::-;13433:2;13564:1;13561;13557:9;13550:16;;13311:261;;;;:::o;13578:96::-;;13644:24;13662:5;13644:24;:::i;:::-;13633:35;;13623:51;;;:::o;13680:90::-;;13757:5;13750:13;13743:21;13732:32;;13722:48;;;:::o;13776:126::-;;13853:42;13846:5;13842:54;13831:65;;13821:81;;;:::o;13908:77::-;;13974:5;13963:16;;13953:32;;;:::o;13991:86::-;;14066:4;14059:5;14055:16;14044:27;;14034:43;;;:::o;14083:307::-;14151:1;14161:113;14175:6;14172:1;14169:13;14161:113;;;14260:1;14255:3;14251:11;14245:18;14241:1;14236:3;14232:11;14225:39;14197:2;14194:1;14190:10;14185:15;;14161:113;;;14292:6;14289:1;14286:13;14283:2;;;14372:1;14363:6;14358:3;14354:16;14347:27;14283:2;14132:258;;;;:::o;14396:320::-;;14477:1;14471:4;14467:12;14457:22;;14524:1;14518:4;14514:12;14545:18;14535:2;;14601:4;14593:6;14589:17;14579:27;;14535:2;14663;14655:6;14652:14;14632:18;14629:38;14626:2;;;14682:18;;:::i;:::-;14626:2;14447:269;;;;:::o;14722:180::-;14770:77;14767:1;14760:88;14867:4;14864:1;14857:15;14891:4;14888:1;14881:15;14908:180;14956:77;14953:1;14946:88;15053:4;15050:1;15043:15;15077:4;15074:1;15067:15;15094:102;;15186:2;15182:7;15177:2;15170:5;15166:14;15162:28;15152:38;;15142:54;;;:::o;15202:122::-;15275:24;15293:5;15275:24;:::i;:::-;15268:5;15265:35;15255:2;;15314:1;15311;15304:12;15255:2;15245:79;:::o;15330:122::-;15403:24;15421:5;15403:24;:::i;:::-;15396:5;15393:35;15383:2;;15442:1;15439;15432:12;15383:2;15373:79;:::o

Swarm Source

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