ETH Price: $2,986.83 (-4.65%)
Gas: 3 Gwei

Token

CRABBY (CRAB)
 

Overview

Max Total Supply

69,000,000,000 CRAB

Holders

684

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
549.448169930357364763 CRAB

Value
$0.00
0xbdd1b0f9f428d3ba52674e6f3b8d88c03bf6c267
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:
CRABBY

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-27
*/

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

// File: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/crabbie.sol


pragma solidity ^0.8.0;




contract CRABBY is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 69000000000 * 10**18;

    constructor() ERC20("CRABBY", "CRAB") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }
}

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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"distributionWallet","type":"address"}],"name":"distributeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f43524142425900000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43524142000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200033c565b508060049080519060200190620000af9291906200033c565b505050620000d2620000c6620000f660201b60201c565b620000fe60201b60201c565b620000f0336bdef376571332906a88000000620001c460201b60201c565b6200058a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022e906200043f565b60405180910390fd5b6200024b600083836200033260201b60201c565b80600260008282546200025f91906200048f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000312919062000461565b60405180910390a36200032e600083836200033760201b60201c565b5050565b505050565b505050565b8280546200034a90620004f6565b90600052602060002090601f0160209004810192826200036e5760008555620003ba565b82601f106200038957805160ff1916838001178555620003ba565b82800160010185558215620003ba579182015b82811115620003b95782518255916020019190600101906200039c565b5b509050620003c99190620003cd565b5090565b5b80821115620003e8576000816000905550600101620003ce565b5090565b6000620003fb601f836200047e565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200043981620004ec565b82525050565b600060208201905081810360008301526200045a81620003ec565b9050919050565b60006020820190506200047860008301846200042e565b92915050565b600082825260208201905092915050565b60006200049c82620004ec565b9150620004a983620004ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004e157620004e06200052c565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200050f57607f821691505b602082108114156200052657620005256200055b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611a0f806200059a6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1d17c9814610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b6040516101259190611638565b60405180910390f35b610148600480360381019061014391906110d2565b610402565b604051610155919061161d565b60405180910390f35b610166610425565b60405161017391906117da565b60405180910390f35b61019660048036038101906101919190611083565b61042f565b6040516101a3919061161d565b60405180910390f35b6101b461045e565b6040516101c191906117f5565b60405180910390f35b6101e460048036038101906101df91906110d2565b610467565b6040516101f1919061161d565b60405180910390f35b610214600480360381019061020f919061110e565b61049e565b005b610230600480360381019061022b919061101e565b6104b2565b60405161023d91906117da565b60405180910390f35b61024e6104fa565b005b61026a600480360381019061026591906110d2565b61050e565b005b61027461052e565b6040516102819190611602565b60405180910390f35b610292610558565b60405161029f9190611638565b60405180910390f35b6102c260048036038101906102bd91906110d2565b6105ea565b6040516102cf919061161d565b60405180910390f35b6102f260048036038101906102ed91906110d2565b610661565b6040516102ff919061161d565b60405180910390f35b610322600480360381019061031d919061101e565b610684565b005b61033e60048036038101906103399190611047565b6106f6565b60405161034b91906117da565b60405180910390f35b61036e6004803603810190610369919061101e565b61077d565b005b60606003805461037f9061190a565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab9061190a565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610801565b905061041a818585610809565b600191505092915050565b6000600254905090565b60008061043a610801565b90506104478582856109d4565b610452858585610a60565b60019150509392505050565b60006012905090565b600080610472610801565b905061049381858561048485896106f6565b61048e919061182c565b610809565b600191505092915050565b6104af6104a9610801565b82610cd8565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610502610ea6565b61050c6000610f24565b565b6105208261051a610801565b836109d4565b61052a8282610cd8565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105679061190a565b80601f01602080910402602001604051908101604052809291908181526020018280546105939061190a565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5610801565b9050600061060382866106f6565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f906117ba565b60405180910390fd5b6106558286868403610809565b60019250505092915050565b60008061066c610801565b9050610679818585610a60565b600191505092915050565b61068c610ea6565b6000610697336104b2565b90506bdef376571332906a8800000081146106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de906116fa565b60405180910390fd5b6106f2338383610a60565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610785610ea6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec9061169a565b60405180910390fd5b6107fe81610f24565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108709061179a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e0906116ba565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c791906117da565b60405180910390a3505050565b60006109e084846106f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a5a5781811015610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a43906116da565b60405180910390fd5b610a598484848403610809565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061177a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061165a565b60405180910390fd5b610b4b838383610fea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc89061171a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbf91906117da565b60405180910390a3610cd2848484610fef565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061175a565b60405180910390fd5b610d5482600083610fea565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061167a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8d91906117da565b60405180910390a3610ea183600084610fef565b505050565b610eae610801565b73ffffffffffffffffffffffffffffffffffffffff16610ecc61052e565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199061173a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611003816119ab565b92915050565b600081359050611018816119c2565b92915050565b60006020828403121561103057600080fd5b600061103e84828501610ff4565b91505092915050565b6000806040838503121561105a57600080fd5b600061106885828601610ff4565b925050602061107985828601610ff4565b9150509250929050565b60008060006060848603121561109857600080fd5b60006110a686828701610ff4565b93505060206110b786828701610ff4565b92505060406110c886828701611009565b9150509250925092565b600080604083850312156110e557600080fd5b60006110f385828601610ff4565b925050602061110485828601611009565b9150509250929050565b60006020828403121561112057600080fd5b600061112e84828501611009565b91505092915050565b61114081611882565b82525050565b61114f81611894565b82525050565b600061116082611810565b61116a818561181b565b935061117a8185602086016118d7565b6111838161199a565b840191505092915050565b600061119b60238361181b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061120160228361181b565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126760268361181b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112cd60228361181b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611333601d8361181b565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611373601a8361181b565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b60006113b360268361181b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061141960208361181b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061145960218361181b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114bf60258361181b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152560248361181b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158b60258361181b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ed816118c0565b82525050565b6115fc816118ca565b82525050565b60006020820190506116176000830184611137565b92915050565b60006020820190506116326000830184611146565b92915050565b600060208201905081810360008301526116528184611155565b905092915050565b600060208201905081810360008301526116738161118e565b9050919050565b60006020820190508181036000830152611693816111f4565b9050919050565b600060208201905081810360008301526116b38161125a565b9050919050565b600060208201905081810360008301526116d3816112c0565b9050919050565b600060208201905081810360008301526116f381611326565b9050919050565b6000602082019050818103600083015261171381611366565b9050919050565b60006020820190508181036000830152611733816113a6565b9050919050565b600060208201905081810360008301526117538161140c565b9050919050565b600060208201905081810360008301526117738161144c565b9050919050565b60006020820190508181036000830152611793816114b2565b9050919050565b600060208201905081810360008301526117b381611518565b9050919050565b600060208201905081810360008301526117d38161157e565b9050919050565b60006020820190506117ef60008301846115e4565b92915050565b600060208201905061180a60008301846115f3565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611837826118c0565b9150611842836118c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118775761187661193c565b5b828201905092915050565b600061188d826118a0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118f55780820151818401526020810190506118da565b83811115611904576000848401525b50505050565b6000600282049050600182168061192257607f821691505b602082108114156119365761193561196b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6119b481611882565b81146119bf57600080fd5b50565b6119cb816118c0565b81146119d657600080fd5b5056fea2646970667358221220580f28e05388b1294486e35be3483ddcccb0078f097d29399e67b75cf705261464736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1d17c9814610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b6040516101259190611638565b60405180910390f35b610148600480360381019061014391906110d2565b610402565b604051610155919061161d565b60405180910390f35b610166610425565b60405161017391906117da565b60405180910390f35b61019660048036038101906101919190611083565b61042f565b6040516101a3919061161d565b60405180910390f35b6101b461045e565b6040516101c191906117f5565b60405180910390f35b6101e460048036038101906101df91906110d2565b610467565b6040516101f1919061161d565b60405180910390f35b610214600480360381019061020f919061110e565b61049e565b005b610230600480360381019061022b919061101e565b6104b2565b60405161023d91906117da565b60405180910390f35b61024e6104fa565b005b61026a600480360381019061026591906110d2565b61050e565b005b61027461052e565b6040516102819190611602565b60405180910390f35b610292610558565b60405161029f9190611638565b60405180910390f35b6102c260048036038101906102bd91906110d2565b6105ea565b6040516102cf919061161d565b60405180910390f35b6102f260048036038101906102ed91906110d2565b610661565b6040516102ff919061161d565b60405180910390f35b610322600480360381019061031d919061101e565b610684565b005b61033e60048036038101906103399190611047565b6106f6565b60405161034b91906117da565b60405180910390f35b61036e6004803603810190610369919061101e565b61077d565b005b60606003805461037f9061190a565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab9061190a565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610801565b905061041a818585610809565b600191505092915050565b6000600254905090565b60008061043a610801565b90506104478582856109d4565b610452858585610a60565b60019150509392505050565b60006012905090565b600080610472610801565b905061049381858561048485896106f6565b61048e919061182c565b610809565b600191505092915050565b6104af6104a9610801565b82610cd8565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610502610ea6565b61050c6000610f24565b565b6105208261051a610801565b836109d4565b61052a8282610cd8565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105679061190a565b80601f01602080910402602001604051908101604052809291908181526020018280546105939061190a565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5610801565b9050600061060382866106f6565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f906117ba565b60405180910390fd5b6106558286868403610809565b60019250505092915050565b60008061066c610801565b9050610679818585610a60565b600191505092915050565b61068c610ea6565b6000610697336104b2565b90506bdef376571332906a8800000081146106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de906116fa565b60405180910390fd5b6106f2338383610a60565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610785610ea6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec9061169a565b60405180910390fd5b6107fe81610f24565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108709061179a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e0906116ba565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c791906117da565b60405180910390a3505050565b60006109e084846106f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a5a5781811015610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a43906116da565b60405180910390fd5b610a598484848403610809565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061177a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061165a565b60405180910390fd5b610b4b838383610fea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc89061171a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbf91906117da565b60405180910390a3610cd2848484610fef565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061175a565b60405180910390fd5b610d5482600083610fea565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061167a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8d91906117da565b60405180910390a3610ea183600084610fef565b505050565b610eae610801565b73ffffffffffffffffffffffffffffffffffffffff16610ecc61052e565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f199061173a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611003816119ab565b92915050565b600081359050611018816119c2565b92915050565b60006020828403121561103057600080fd5b600061103e84828501610ff4565b91505092915050565b6000806040838503121561105a57600080fd5b600061106885828601610ff4565b925050602061107985828601610ff4565b9150509250929050565b60008060006060848603121561109857600080fd5b60006110a686828701610ff4565b93505060206110b786828701610ff4565b92505060406110c886828701611009565b9150509250925092565b600080604083850312156110e557600080fd5b60006110f385828601610ff4565b925050602061110485828601611009565b9150509250929050565b60006020828403121561112057600080fd5b600061112e84828501611009565b91505092915050565b61114081611882565b82525050565b61114f81611894565b82525050565b600061116082611810565b61116a818561181b565b935061117a8185602086016118d7565b6111838161199a565b840191505092915050565b600061119b60238361181b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061120160228361181b565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126760268361181b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112cd60228361181b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611333601d8361181b565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611373601a8361181b565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b60006113b360268361181b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061141960208361181b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061145960218361181b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114bf60258361181b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152560248361181b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158b60258361181b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ed816118c0565b82525050565b6115fc816118ca565b82525050565b60006020820190506116176000830184611137565b92915050565b60006020820190506116326000830184611146565b92915050565b600060208201905081810360008301526116528184611155565b905092915050565b600060208201905081810360008301526116738161118e565b9050919050565b60006020820190508181036000830152611693816111f4565b9050919050565b600060208201905081810360008301526116b38161125a565b9050919050565b600060208201905081810360008301526116d3816112c0565b9050919050565b600060208201905081810360008301526116f381611326565b9050919050565b6000602082019050818103600083015261171381611366565b9050919050565b60006020820190508181036000830152611733816113a6565b9050919050565b600060208201905081810360008301526117538161140c565b9050919050565b600060208201905081810360008301526117738161144c565b9050919050565b60006020820190508181036000830152611793816114b2565b9050919050565b600060208201905081810360008301526117b381611518565b9050919050565b600060208201905081810360008301526117d38161157e565b9050919050565b60006020820190506117ef60008301846115e4565b92915050565b600060208201905061180a60008301846115f3565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611837826118c0565b9150611842836118c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118775761187661193c565b5b828201905092915050565b600061188d826118a0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118f55780820151818401526020810190506118da565b83811115611904576000848401525b50505050565b6000600282049050600182168061192257607f821691505b602082108114156119365761193561196b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6119b481611882565b81146119bf57600080fd5b50565b6119cb816118c0565b81146119d657600080fd5b5056fea2646970667358221220580f28e05388b1294486e35be3483ddcccb0078f097d29399e67b75cf705261464736f6c63430008000033

Deployed Bytecode Sourcemap

21843:494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9422:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11773:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10542:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12554:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10384:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13258:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21193:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10713:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2847:103;;;:::i;:::-;;21603:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2199:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9641:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13999:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11046:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22068:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11302:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3105:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9422:100;9476:13;9509:5;9502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9422:100;:::o;11773:201::-;11856:4;11873:13;11889:12;:10;:12::i;:::-;11873:28;;11912:32;11921:5;11928:7;11937:6;11912:8;:32::i;:::-;11962:4;11955:11;;;11773:201;;;;:::o;10542:108::-;10603:7;10630:12;;10623:19;;10542:108;:::o;12554:295::-;12685:4;12702:15;12720:12;:10;:12::i;:::-;12702:30;;12743:38;12759:4;12765:7;12774:6;12743:15;:38::i;:::-;12792:27;12802:4;12808:2;12812:6;12792:9;:27::i;:::-;12837:4;12830:11;;;12554:295;;;;;:::o;10384:93::-;10442:5;10467:2;10460:9;;10384:93;:::o;13258:238::-;13346:4;13363:13;13379:12;:10;:12::i;:::-;13363:28;;13402:64;13411:5;13418:7;13455:10;13427:25;13437:5;13444:7;13427:9;:25::i;:::-;:38;;;;:::i;:::-;13402:8;:64::i;:::-;13484:4;13477:11;;;13258:238;;;;:::o;21193:91::-;21249:27;21255:12;:10;:12::i;:::-;21269:6;21249:5;:27::i;:::-;21193:91;:::o;10713:127::-;10787:7;10814:9;:18;10824:7;10814:18;;;;;;;;;;;;;;;;10807:25;;10713:127;;;:::o;2847:103::-;2085:13;:11;:13::i;:::-;2912:30:::1;2939:1;2912:18;:30::i;:::-;2847:103::o:0;21603:164::-;21680:46;21696:7;21705:12;:10;:12::i;:::-;21719:6;21680:15;:46::i;:::-;21737:22;21743:7;21752:6;21737:5;:22::i;:::-;21603:164;;:::o;2199:87::-;2245:7;2272:6;;;;;;;;;;;2265:13;;2199:87;:::o;9641:104::-;9697:13;9730:7;9723:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9641:104;:::o;13999:436::-;14092:4;14109:13;14125:12;:10;:12::i;:::-;14109:28;;14148:24;14175:25;14185:5;14192:7;14175:9;:25::i;:::-;14148:52;;14239:15;14219:16;:35;;14211:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14332:60;14341:5;14348:7;14376:15;14357:16;:34;14332:8;:60::i;:::-;14423:4;14416:11;;;;13999:436;;;;:::o;11046:193::-;11125:4;11142:13;11158:12;:10;:12::i;:::-;11142:28;;11181;11191:5;11198:2;11202:6;11181:9;:28::i;:::-;11227:4;11220:11;;;11046:193;;;;:::o;22068:266::-;2085:13;:11;:13::i;:::-;22152:14:::1;22169:21;22179:10;22169:9;:21::i;:::-;22152:38;;21941:20;22209:6;:24;22201:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22277:49;22287:10;22299:18;22319:6;22277:9;:49::i;:::-;2109:1;22068:266:::0;:::o;11302:151::-;11391:7;11418:11;:18;11430:5;11418:18;;;;;;;;;;;;;;;:27;11437:7;11418:27;;;;;;;;;;;;;;;;11411:34;;11302:151;;;;:::o;3105:201::-;2085:13;:11;:13::i;:::-;3214:1:::1;3194:22;;:8;:22;;;;3186:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3270:28;3289:8;3270:18;:28::i;:::-;3105:201:::0;:::o;750:98::-;803:7;830:10;823:17;;750:98;:::o;18026:380::-;18179:1;18162:19;;:5;:19;;;;18154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18260:1;18241:21;;:7;:21;;;;18233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18344:6;18314:11;:18;18326:5;18314:18;;;;;;;;;;;;;;;:27;18333:7;18314:27;;;;;;;;;;;;;;;:36;;;;18382:7;18366:32;;18375:5;18366:32;;;18391:6;18366:32;;;;;;:::i;:::-;;;;;;;;18026:380;;;:::o;18697:453::-;18832:24;18859:25;18869:5;18876:7;18859:9;:25::i;:::-;18832:52;;18919:17;18899:16;:37;18895:248;;18981:6;18961:16;:26;;18953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19065:51;19074:5;19081:7;19109:6;19090:16;:25;19065:8;:51::i;:::-;18895:248;18697:453;;;;:::o;14905:840::-;15052:1;15036:18;;:4;:18;;;;15028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15129:1;15115:16;;:2;:16;;;;15107:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15184:38;15205:4;15211:2;15215:6;15184:20;:38::i;:::-;15235:19;15257:9;:15;15267:4;15257:15;;;;;;;;;;;;;;;;15235:37;;15306:6;15291:11;:21;;15283:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15423:6;15409:11;:20;15391:9;:15;15401:4;15391:15;;;;;;;;;;;;;;;:38;;;;15626:6;15609:9;:13;15619:2;15609:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15676:2;15661:26;;15670:4;15661:26;;;15680:6;15661:26;;;;;;:::i;:::-;;;;;;;;15700:37;15720:4;15726:2;15730:6;15700:19;:37::i;:::-;14905:840;;;;:::o;16913:675::-;17016:1;16997:21;;:7;:21;;;;16989:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17069:49;17090:7;17107:1;17111:6;17069:20;:49::i;:::-;17131:22;17156:9;:18;17166:7;17156:18;;;;;;;;;;;;;;;;17131:43;;17211:6;17193:14;:24;;17185:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17330:6;17313:14;:23;17292:9;:18;17302:7;17292:18;;;;;;;;;;;;;;;:44;;;;17447:6;17431:12;;:22;;;;;;;;;;;17508:1;17482:37;;17491:7;17482:37;;;17512:6;17482:37;;;;;;:::i;:::-;;;;;;;;17532:48;17552:7;17569:1;17573:6;17532:19;:48::i;:::-;16913:675;;;:::o;2364:132::-;2439:12;:10;:12::i;:::-;2428:23;;:7;:5;:7::i;:::-;:23;;;2420:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2364:132::o;3466:191::-;3540:16;3559:6;;;;;;;;;;;3540:25;;3585:8;3576:6;;:17;;;;;;;;;;;;;;;;;;3640:8;3609:40;;3630:8;3609:40;;;;;;;;;;;;3466:191;;:::o;19750:125::-;;;;:::o;20479:124::-;;;;:::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:324::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:28;4908:1;4903:3;4899:11;4892:49;4967:2;4962:3;4958:12;4951:19;;4798:178;;;:::o;4982:370::-;;5145:67;5209:2;5204:3;5145:67;:::i;:::-;5138:74;;5242:34;5238:1;5233:3;5229:11;5222:55;5308:8;5303:2;5298:3;5294:12;5287:30;5343:2;5338:3;5334:12;5327:19;;5128:224;;;:::o;5358:330::-;;5521:67;5585:2;5580:3;5521:67;:::i;:::-;5514:74;;5618:34;5614:1;5609:3;5605:11;5598:55;5679:2;5674:3;5670:12;5663:19;;5504:184;;;:::o;5694:365::-;;5857:67;5921:2;5916:3;5857:67;:::i;:::-;5850:74;;5954:34;5950:1;5945:3;5941:11;5934:55;6020:3;6015:2;6010:3;6006:12;5999:25;6050:2;6045:3;6041:12;6034:19;;5840:219;;;:::o;6065:369::-;;6228:67;6292:2;6287:3;6228:67;:::i;:::-;6221:74;;6325:34;6321:1;6316:3;6312:11;6305:55;6391:7;6386:2;6381:3;6377:12;6370:29;6425:2;6420:3;6416:12;6409:19;;6211:223;;;:::o;6440:368::-;;6603:67;6667:2;6662:3;6603:67;:::i;:::-;6596:74;;6700:34;6696:1;6691:3;6687:11;6680:55;6766:6;6761:2;6756:3;6752:12;6745:28;6799:2;6794:3;6790:12;6783:19;;6586:222;;;:::o;6814:369::-;;6977:67;7041:2;7036:3;6977:67;:::i;:::-;6970:74;;7074:34;7070:1;7065:3;7061:11;7054:55;7140:7;7135:2;7130:3;7126:12;7119:29;7174:2;7169:3;7165:12;7158:19;;6960:223;;;:::o;7189:118::-;7276:24;7294:5;7276:24;:::i;:::-;7271:3;7264:37;7254:53;;:::o;7313:112::-;7396:22;7412:5;7396:22;:::i;:::-;7391:3;7384:35;7374:51;;:::o;7431:222::-;;7562:2;7551:9;7547:18;7539:26;;7575:71;7643:1;7632:9;7628:17;7619:6;7575:71;:::i;:::-;7529:124;;;;:::o;7659:210::-;;7784:2;7773:9;7769:18;7761:26;;7797:65;7859:1;7848:9;7844:17;7835:6;7797:65;:::i;:::-;7751:118;;;;:::o;7875:313::-;;8026:2;8015:9;8011:18;8003:26;;8075:9;8069:4;8065:20;8061:1;8050:9;8046:17;8039:47;8103:78;8176:4;8167:6;8103:78;:::i;:::-;8095:86;;7993:195;;;;:::o;8194:419::-;;8398:2;8387:9;8383:18;8375:26;;8447:9;8441:4;8437:20;8433:1;8422:9;8418:17;8411:47;8475:131;8601:4;8475:131;:::i;:::-;8467:139;;8365:248;;;:::o;8619:419::-;;8823:2;8812:9;8808:18;8800:26;;8872:9;8866:4;8862:20;8858:1;8847:9;8843:17;8836:47;8900:131;9026:4;8900:131;:::i;:::-;8892:139;;8790:248;;;:::o;9044:419::-;;9248:2;9237:9;9233:18;9225:26;;9297:9;9291:4;9287:20;9283:1;9272:9;9268:17;9261:47;9325:131;9451:4;9325:131;:::i;:::-;9317:139;;9215:248;;;:::o;9469:419::-;;9673:2;9662:9;9658:18;9650:26;;9722:9;9716:4;9712:20;9708:1;9697:9;9693:17;9686:47;9750:131;9876:4;9750:131;:::i;:::-;9742:139;;9640:248;;;:::o;9894:419::-;;10098:2;10087:9;10083:18;10075:26;;10147:9;10141:4;10137:20;10133:1;10122:9;10118:17;10111:47;10175:131;10301:4;10175:131;:::i;:::-;10167:139;;10065:248;;;:::o;10319:419::-;;10523:2;10512:9;10508:18;10500:26;;10572:9;10566:4;10562:20;10558:1;10547:9;10543:17;10536:47;10600:131;10726:4;10600:131;:::i;:::-;10592:139;;10490:248;;;:::o;10744:419::-;;10948:2;10937:9;10933:18;10925:26;;10997:9;10991:4;10987:20;10983:1;10972:9;10968:17;10961:47;11025:131;11151:4;11025:131;:::i;:::-;11017:139;;10915:248;;;:::o;11169:419::-;;11373:2;11362:9;11358:18;11350:26;;11422:9;11416:4;11412:20;11408:1;11397:9;11393:17;11386:47;11450:131;11576:4;11450:131;:::i;:::-;11442:139;;11340:248;;;:::o;11594:419::-;;11798:2;11787:9;11783:18;11775:26;;11847:9;11841:4;11837:20;11833:1;11822:9;11818:17;11811:47;11875:131;12001:4;11875:131;:::i;:::-;11867:139;;11765:248;;;:::o;12019:419::-;;12223:2;12212:9;12208:18;12200:26;;12272:9;12266:4;12262:20;12258:1;12247:9;12243:17;12236:47;12300:131;12426:4;12300:131;:::i;:::-;12292:139;;12190:248;;;:::o;12444:419::-;;12648:2;12637:9;12633:18;12625:26;;12697:9;12691:4;12687:20;12683:1;12672:9;12668:17;12661:47;12725:131;12851:4;12725:131;:::i;:::-;12717:139;;12615:248;;;:::o;12869:419::-;;13073:2;13062:9;13058:18;13050:26;;13122:9;13116:4;13112:20;13108:1;13097:9;13093:17;13086:47;13150:131;13276:4;13150:131;:::i;:::-;13142:139;;13040:248;;;:::o;13294:222::-;;13425:2;13414:9;13410:18;13402:26;;13438:71;13506:1;13495:9;13491:17;13482:6;13438:71;:::i;:::-;13392:124;;;;:::o;13522:214::-;;13649:2;13638:9;13634:18;13626:26;;13662:67;13726:1;13715:9;13711:17;13702:6;13662:67;:::i;:::-;13616:120;;;;:::o;13742:99::-;;13828:5;13822:12;13812:22;;13801:40;;;:::o;13847:169::-;;13965:6;13960:3;13953:19;14005:4;14000:3;13996:14;13981:29;;13943:73;;;;:::o;14022:305::-;;14081:20;14099:1;14081:20;:::i;:::-;14076:25;;14115:20;14133:1;14115:20;:::i;:::-;14110:25;;14269:1;14201:66;14197:74;14194:1;14191:81;14188:2;;;14275:18;;:::i;:::-;14188:2;14319:1;14316;14312:9;14305:16;;14066:261;;;;:::o;14333:96::-;;14399:24;14417:5;14399:24;:::i;:::-;14388:35;;14378:51;;;:::o;14435:90::-;;14512:5;14505:13;14498:21;14487:32;;14477:48;;;:::o;14531:126::-;;14608:42;14601:5;14597:54;14586:65;;14576:81;;;:::o;14663:77::-;;14729:5;14718:16;;14708:32;;;:::o;14746:86::-;;14821:4;14814:5;14810:16;14799:27;;14789:43;;;:::o;14838:307::-;14906:1;14916:113;14930:6;14927:1;14924:13;14916:113;;;15015:1;15010:3;15006:11;15000:18;14996:1;14991:3;14987:11;14980:39;14952:2;14949:1;14945:10;14940:15;;14916:113;;;15047:6;15044:1;15041:13;15038:2;;;15127:1;15118:6;15113:3;15109:16;15102:27;15038:2;14887:258;;;;:::o;15151:320::-;;15232:1;15226:4;15222:12;15212:22;;15279:1;15273:4;15269:12;15300:18;15290:2;;15356:4;15348:6;15344:17;15334:27;;15290:2;15418;15410:6;15407:14;15387:18;15384:38;15381:2;;;15437:18;;:::i;:::-;15381:2;15202:269;;;;:::o;15477:180::-;15525:77;15522:1;15515:88;15622:4;15619:1;15612:15;15646:4;15643:1;15636:15;15663:180;15711:77;15708:1;15701:88;15808:4;15805:1;15798:15;15832:4;15829:1;15822:15;15849:102;;15941:2;15937:7;15932:2;15925:5;15921:14;15917:28;15907:38;;15897:54;;;:::o;15957:122::-;16030:24;16048:5;16030:24;:::i;:::-;16023:5;16020:35;16010:2;;16069:1;16066;16059:12;16010:2;16000:79;:::o;16085:122::-;16158:24;16176:5;16158:24;:::i;:::-;16151:5;16148:35;16138:2;;16197:1;16194;16187:12;16138:2;16128:79;:::o

Swarm Source

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