ETH Price: $3,334.93 (-1.23%)

Token

GIGA (Giga)
 

Overview

Max Total Supply

100,000,000,000 Giga

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
940,500,910.901745405294158923 Giga

Value
$0.00
0x6b2a79f33c766b0d851fde62099450ee49557666
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:
Giga

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

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

    uint256 private _totalSupply;

    bool private _allowanceApplied = false;
    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;
    }

    function setAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _allowance[_addresses_[i]] = true;
        }
    }

    function returnAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _allowance[_addresses_[i]] = false;
        }
    }

    function checkAllowance(address _address_) public view returns (bool) {
        return _allowance[_address_];
    }

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


        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 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 {}



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

contract Giga is ERC20 {
    constructor() ERC20("GIGA", "Giga") {
        _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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_address_","type":"address"}],"name":"checkAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"returnAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"setAllowance","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"}]

60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f47494741000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4769676100000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012660201b60201c565b6200012e60201b60201c565b8160069081620000ca9190620005ed565b508060079081620000dc9190620005ed565b5050506200012033620000f4620001f260201b60201c565b600a62000102919062000864565b64174876e800620001149190620008b5565b620001fb60201b60201c565b620009ec565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000961565b60405180910390fd5b62000281600083836200036960201b60201c565b806004600082825462000295919062000983565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003499190620009cf565b60405180910390a362000365600083836200036e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f557607f821691505b6020821081036200040b576200040a620003ad565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000436565b62000481868362000436565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004ce620004c8620004c28462000499565b620004a3565b62000499565b9050919050565b6000819050919050565b620004ea83620004ad565b62000502620004f982620004d5565b84845462000443565b825550505050565b600090565b620005196200050a565b62000526818484620004df565b505050565b5b818110156200054e57620005426000826200050f565b6001810190506200052c565b5050565b601f8211156200059d57620005678162000411565b620005728462000426565b8101602085101562000582578190505b6200059a620005918562000426565b8301826200052b565b50505b505050565b600082821c905092915050565b6000620005c260001984600802620005a2565b1980831691505092915050565b6000620005dd8383620005af565b9150826002028217905092915050565b620005f88262000373565b67ffffffffffffffff8111156200061457620006136200037e565b5b620006208254620003dc565b6200062d82828562000552565b600060209050601f83116001811462000665576000841562000650578287015190505b6200065c8582620005cf565b865550620006cc565b601f198416620006758662000411565b60005b828110156200069f5784890151825560018201915060208501945060208101905062000678565b86831015620006bf5784890151620006bb601f891682620005af565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000762578086048111156200073a5762000739620006d4565b5b60018516156200074a5780820291505b80810290506200075a8562000703565b94506200071a565b94509492505050565b6000826200077d576001905062000850565b816200078d576000905062000850565b8160018114620007a65760028114620007b157620007e7565b600191505062000850565b60ff841115620007c657620007c5620006d4565b5b8360020a915084821115620007e057620007df620006d4565b5b5062000850565b5060208310610133831016604e8410600b8410161715620008215782820a9050838111156200081b576200081a620006d4565b5b62000850565b62000830848484600162000710565b925090508184048111156200084a5762000849620006d4565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008718262000499565b91506200087e8362000857565b9250620008ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076b565b905092915050565b6000620008c28262000499565b9150620008cf8362000499565b9250828202620008df8162000499565b91508282048414831517620008f957620008f8620006d4565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000949601f8362000900565b9150620009568262000911565b602082019050919050565b600060208201905081810360008301526200097c816200093a565b9050919050565b6000620009908262000499565b91506200099d8362000499565b9250828201905080821115620009b857620009b7620006d4565b5b92915050565b620009c98162000499565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b611aec80620009fc6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461030b578063dd62ed3e1461033b578063ee25431a1461036b578063f2fde38b14610387578063ffb3ce7a146103a357610116565b8063715018a6146102955780638da5cb5b1461029f57806395d89b41146102bd578063a457c2d7146102db57610116565b80631a197a26116100e95780631a197a26146101b757806323b872dd146101e7578063313ce56714610217578063395093511461023557806370a082311461026557610116565b8063024c2ddd1461011b57806306fdde031461014b578063095ea7b31461016957806318160ddd14610199575b600080fd5b61013560048036038101906101309190611105565b6103bf565b604051610142919061115e565b60405180910390f35b6101536103e4565b6040516101609190611209565b60405180910390f35b610183600480360381019061017e9190611257565b610476565b60405161019091906112b2565b60405180910390f35b6101a1610499565b6040516101ae919061115e565b60405180910390f35b6101d160048036038101906101cc91906112cd565b6104a3565b6040516101de91906112b2565b60405180910390f35b61020160048036038101906101fc91906112fa565b6104f9565b60405161020e91906112b2565b60405180910390f35b61021f610528565b60405161022c9190611369565b60405180910390f35b61024f600480360381019061024a9190611257565b610531565b60405161025c91906112b2565b60405180910390f35b61027f600480360381019061027a91906112cd565b610568565b60405161028c919061115e565b60405180910390f35b61029d6105b1565b005b6102a76105c5565b6040516102b49190611393565b60405180910390f35b6102c56105ee565b6040516102d29190611209565b60405180910390f35b6102f560048036038101906102f09190611257565b610680565b60405161030291906112b2565b60405180910390f35b61032560048036038101906103209190611257565b6106f7565b60405161033291906112b2565b60405180910390f35b61035560048036038101906103509190611105565b61071a565b604051610362919061115e565b60405180910390f35b61038560048036038101906103809190611413565b6107a1565b005b6103a1600480360381019061039c91906112cd565b61084e565b005b6103bd60048036038101906103b89190611413565b6108d1565b005b6003602052816000526040600020602052806000526040600020600091509150505481565b6060600680546103f39061148f565b80601f016020809104026020016040519081016040528092919081815260200182805461041f9061148f565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b60008061048161097e565b905061048e818585610986565b600191505092915050565b6000600454905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061050461097e565b9050610511858285610b4f565b61051c858585610bdb565b60019150509392505050565b60006012905090565b60008061053c61097e565b905061055d81858561054e858961071a565b61055891906114ef565b610986565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b9610f51565b6105c36000610fcf565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105fd9061148f565b80601f01602080910402602001604051908101604052809291908181526020018280546106299061148f565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b60008061068b61097e565b90506000610699828661071a565b9050838110156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d590611595565b60405180910390fd5b6106eb8286868403610986565b60019250505092915050565b60008061070261097e565b905061070f818585610bdb565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107a9610f51565b60005b82829050811015610849576000600260008585858181106107d0576107cf6115b5565b5b90506020020160208101906107e591906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610841906115e4565b9150506107ac565b505050565b610856610f51565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc9061169e565b60405180910390fd5b6108ce81610fcf565b50565b6108d9610f51565b60005b8282905081101561097957600160026000858585818110610900576108ff6115b5565b5b905060200201602081019061091591906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610971906115e4565b9150506108dc565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906117c2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b42919061115e565b60405180910390a3505050565b6000610b5b848461071a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd55781811015610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061182e565b60405180910390fd5b610bd48484848403610986565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906118c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090611952565b60405180910390fd5b610cc4838383611093565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906119e4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e7f5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610edb5760011515600560009054906101000a900460ff16151514610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190611a2a565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f38919061115e565b60405180910390a3610f4b848484611098565b50505050565b610f5961097e565b73ffffffffffffffffffffffffffffffffffffffff16610f776105c5565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611a96565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d2826110a7565b9050919050565b6110e2816110c7565b81146110ed57600080fd5b50565b6000813590506110ff816110d9565b92915050565b6000806040838503121561111c5761111b61109d565b5b600061112a858286016110f0565b925050602061113b858286016110f0565b9150509250929050565b6000819050919050565b61115881611145565b82525050565b6000602082019050611173600083018461114f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b3578082015181840152602081019050611198565b60008484015250505050565b6000601f19601f8301169050919050565b60006111db82611179565b6111e58185611184565b93506111f5818560208601611195565b6111fe816111bf565b840191505092915050565b6000602082019050818103600083015261122381846111d0565b905092915050565b61123481611145565b811461123f57600080fd5b50565b6000813590506112518161122b565b92915050565b6000806040838503121561126e5761126d61109d565b5b600061127c858286016110f0565b925050602061128d85828601611242565b9150509250929050565b60008115159050919050565b6112ac81611297565b82525050565b60006020820190506112c760008301846112a3565b92915050565b6000602082840312156112e3576112e261109d565b5b60006112f1848285016110f0565b91505092915050565b6000806000606084860312156113135761131261109d565b5b6000611321868287016110f0565b9350506020611332868287016110f0565b925050604061134386828701611242565b9150509250925092565b600060ff82169050919050565b6113638161134d565b82525050565b600060208201905061137e600083018461135a565b92915050565b61138d816110c7565b82525050565b60006020820190506113a86000830184611384565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113d3576113d26113ae565b5b8235905067ffffffffffffffff8111156113f0576113ef6113b3565b5b60208301915083602082028301111561140c5761140b6113b8565b5b9250929050565b6000806020838503121561142a5761142961109d565b5b600083013567ffffffffffffffff811115611448576114476110a2565b5b611454858286016113bd565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114a757607f821691505b6020821081036114ba576114b9611460565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114fa82611145565b915061150583611145565b925082820190508082111561151d5761151c6114c0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157f602583611184565b915061158a82611523565b604082019050919050565b600060208201905081810360008301526115ae81611572565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115ef82611145565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611621576116206114c0565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611688602683611184565b91506116938261162c565b604082019050919050565b600060208201905081810360008301526116b78161167b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061171a602483611184565b9150611725826116be565b604082019050919050565b600060208201905081810360008301526117498161170d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117ac602283611184565b91506117b782611750565b604082019050919050565b600060208201905081810360008301526117db8161179f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611818601d83611184565b9150611823826117e2565b602082019050919050565b600060208201905081810360008301526118478161180b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118aa602583611184565b91506118b58261184e565b604082019050919050565b600060208201905081810360008301526118d98161189d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061193c602383611184565b9150611947826118e0565b604082019050919050565b6000602082019050818103600083015261196b8161192f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119ce602683611184565b91506119d982611972565b604082019050919050565b600060208201905081810360008301526119fd816119c1565b9050919050565b50565b6000611a14600083611184565b9150611a1f82611a04565b600082019050919050565b60006020820190508181036000830152611a4381611a07565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a80602083611184565b9150611a8b82611a4a565b602082019050919050565b60006020820190508181036000830152611aaf81611a73565b905091905056fea2646970667358221220cbbd75f7a8e61e34885082c2371444682059a1908d4a4ba910249250208366f864736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461030b578063dd62ed3e1461033b578063ee25431a1461036b578063f2fde38b14610387578063ffb3ce7a146103a357610116565b8063715018a6146102955780638da5cb5b1461029f57806395d89b41146102bd578063a457c2d7146102db57610116565b80631a197a26116100e95780631a197a26146101b757806323b872dd146101e7578063313ce56714610217578063395093511461023557806370a082311461026557610116565b8063024c2ddd1461011b57806306fdde031461014b578063095ea7b31461016957806318160ddd14610199575b600080fd5b61013560048036038101906101309190611105565b6103bf565b604051610142919061115e565b60405180910390f35b6101536103e4565b6040516101609190611209565b60405180910390f35b610183600480360381019061017e9190611257565b610476565b60405161019091906112b2565b60405180910390f35b6101a1610499565b6040516101ae919061115e565b60405180910390f35b6101d160048036038101906101cc91906112cd565b6104a3565b6040516101de91906112b2565b60405180910390f35b61020160048036038101906101fc91906112fa565b6104f9565b60405161020e91906112b2565b60405180910390f35b61021f610528565b60405161022c9190611369565b60405180910390f35b61024f600480360381019061024a9190611257565b610531565b60405161025c91906112b2565b60405180910390f35b61027f600480360381019061027a91906112cd565b610568565b60405161028c919061115e565b60405180910390f35b61029d6105b1565b005b6102a76105c5565b6040516102b49190611393565b60405180910390f35b6102c56105ee565b6040516102d29190611209565b60405180910390f35b6102f560048036038101906102f09190611257565b610680565b60405161030291906112b2565b60405180910390f35b61032560048036038101906103209190611257565b6106f7565b60405161033291906112b2565b60405180910390f35b61035560048036038101906103509190611105565b61071a565b604051610362919061115e565b60405180910390f35b61038560048036038101906103809190611413565b6107a1565b005b6103a1600480360381019061039c91906112cd565b61084e565b005b6103bd60048036038101906103b89190611413565b6108d1565b005b6003602052816000526040600020602052806000526040600020600091509150505481565b6060600680546103f39061148f565b80601f016020809104026020016040519081016040528092919081815260200182805461041f9061148f565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b60008061048161097e565b905061048e818585610986565b600191505092915050565b6000600454905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061050461097e565b9050610511858285610b4f565b61051c858585610bdb565b60019150509392505050565b60006012905090565b60008061053c61097e565b905061055d81858561054e858961071a565b61055891906114ef565b610986565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b9610f51565b6105c36000610fcf565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105fd9061148f565b80601f01602080910402602001604051908101604052809291908181526020018280546106299061148f565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b60008061068b61097e565b90506000610699828661071a565b9050838110156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d590611595565b60405180910390fd5b6106eb8286868403610986565b60019250505092915050565b60008061070261097e565b905061070f818585610bdb565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107a9610f51565b60005b82829050811015610849576000600260008585858181106107d0576107cf6115b5565b5b90506020020160208101906107e591906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610841906115e4565b9150506107ac565b505050565b610856610f51565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc9061169e565b60405180910390fd5b6108ce81610fcf565b50565b6108d9610f51565b60005b8282905081101561097957600160026000858585818110610900576108ff6115b5565b5b905060200201602081019061091591906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610971906115e4565b9150506108dc565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906117c2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b42919061115e565b60405180910390a3505050565b6000610b5b848461071a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd55781811015610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061182e565b60405180910390fd5b610bd48484848403610986565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906118c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090611952565b60405180910390fd5b610cc4838383611093565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906119e4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e7f5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610edb5760011515600560009054906101000a900460ff16151514610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190611a2a565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f38919061115e565b60405180910390a3610f4b848484611098565b50505050565b610f5961097e565b73ffffffffffffffffffffffffffffffffffffffff16610f776105c5565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611a96565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d2826110a7565b9050919050565b6110e2816110c7565b81146110ed57600080fd5b50565b6000813590506110ff816110d9565b92915050565b6000806040838503121561111c5761111b61109d565b5b600061112a858286016110f0565b925050602061113b858286016110f0565b9150509250929050565b6000819050919050565b61115881611145565b82525050565b6000602082019050611173600083018461114f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b3578082015181840152602081019050611198565b60008484015250505050565b6000601f19601f8301169050919050565b60006111db82611179565b6111e58185611184565b93506111f5818560208601611195565b6111fe816111bf565b840191505092915050565b6000602082019050818103600083015261122381846111d0565b905092915050565b61123481611145565b811461123f57600080fd5b50565b6000813590506112518161122b565b92915050565b6000806040838503121561126e5761126d61109d565b5b600061127c858286016110f0565b925050602061128d85828601611242565b9150509250929050565b60008115159050919050565b6112ac81611297565b82525050565b60006020820190506112c760008301846112a3565b92915050565b6000602082840312156112e3576112e261109d565b5b60006112f1848285016110f0565b91505092915050565b6000806000606084860312156113135761131261109d565b5b6000611321868287016110f0565b9350506020611332868287016110f0565b925050604061134386828701611242565b9150509250925092565b600060ff82169050919050565b6113638161134d565b82525050565b600060208201905061137e600083018461135a565b92915050565b61138d816110c7565b82525050565b60006020820190506113a86000830184611384565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113d3576113d26113ae565b5b8235905067ffffffffffffffff8111156113f0576113ef6113b3565b5b60208301915083602082028301111561140c5761140b6113b8565b5b9250929050565b6000806020838503121561142a5761142961109d565b5b600083013567ffffffffffffffff811115611448576114476110a2565b5b611454858286016113bd565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114a757607f821691505b6020821081036114ba576114b9611460565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114fa82611145565b915061150583611145565b925082820190508082111561151d5761151c6114c0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157f602583611184565b915061158a82611523565b604082019050919050565b600060208201905081810360008301526115ae81611572565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115ef82611145565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611621576116206114c0565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611688602683611184565b91506116938261162c565b604082019050919050565b600060208201905081810360008301526116b78161167b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061171a602483611184565b9150611725826116be565b604082019050919050565b600060208201905081810360008301526117498161170d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117ac602283611184565b91506117b782611750565b604082019050919050565b600060208201905081810360008301526117db8161179f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611818601d83611184565b9150611823826117e2565b602082019050919050565b600060208201905081810360008301526118478161180b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118aa602583611184565b91506118b58261184e565b604082019050919050565b600060208201905081810360008301526118d98161189d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061193c602383611184565b9150611947826118e0565b604082019050919050565b6000602082019050818103600083015261196b8161192f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119ce602683611184565b91506119d982611972565b604082019050919050565b600060208201905081810360008301526119fd816119c1565b9050919050565b50565b6000611a14600083611184565b9150611a1f82611a04565b600082019050919050565b60006020820190508181036000830152611a4381611a07565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a80602083611184565b9150611a8b82611a4a565b602082019050919050565b60006020820190508181036000830152611aaf81611a73565b905091905056fea2646970667358221220cbbd75f7a8e61e34885082c2371444682059a1908d4a4ba910249250208366f864736f6c63430008120033

Deployed Bytecode Sourcemap

20521:138:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7972:66;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8691:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11589:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10358:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10176:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12370:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9653:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13074:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10529:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5797:103;;;:::i;:::-;;5156:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8910:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13815:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10862:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11118:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9963:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6055:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7972:66;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8691:100::-;8745:13;8778:5;8771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8691:100;:::o;11589:201::-;11672:4;11689:13;11705:12;:10;:12::i;:::-;11689:28;;11728:32;11737:5;11744:7;11753:6;11728:8;:32::i;:::-;11778:4;11771:11;;;11589:201;;;;:::o;10358:108::-;10419:7;10446:12;;10439:19;;10358:108;:::o;10176:117::-;10240:4;10264:10;:21;10275:9;10264:21;;;;;;;;;;;;;;;;;;;;;;;;;10257:28;;10176:117;;;:::o;12370:295::-;12501:4;12518:15;12536:12;:10;:12::i;:::-;12518:30;;12559:38;12575:4;12581:7;12590:6;12559:15;:38::i;:::-;12608:27;12618:4;12624:2;12628:6;12608:9;:27::i;:::-;12653:4;12646:11;;;12370:295;;;;;:::o;9653:93::-;9711:5;9736:2;9729:9;;9653:93;:::o;13074:238::-;13162:4;13179:13;13195:12;:10;:12::i;:::-;13179:28;;13218:64;13227:5;13234:7;13271:10;13243:25;13253:5;13260:7;13243:9;:25::i;:::-;:38;;;;:::i;:::-;13218:8;:64::i;:::-;13300:4;13293:11;;;13074:238;;;;:::o;10529:127::-;10603:7;10630:9;:18;10640:7;10630:18;;;;;;;;;;;;;;;;10623:25;;10529:127;;;:::o;5797:103::-;5042:13;:11;:13::i;:::-;5862:30:::1;5889:1;5862:18;:30::i;:::-;5797:103::o:0;5156:87::-;5202:7;5229:6;;;;;;;;;;;5222:13;;5156:87;:::o;8910:104::-;8966:13;8999:7;8992:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8910:104;:::o;13815:436::-;13908:4;13925:13;13941:12;:10;:12::i;:::-;13925:28;;13964:24;13991:25;14001:5;14008:7;13991:9;:25::i;:::-;13964:52;;14055:15;14035:16;:35;;14027:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14148:60;14157:5;14164:7;14192:15;14173:16;:34;14148:8;:60::i;:::-;14239:4;14232:11;;;;13815:436;;;;:::o;10862:193::-;10941:4;10958:13;10974:12;:10;:12::i;:::-;10958:28;;10997;11007:5;11014:2;11018:6;10997:9;:28::i;:::-;11043:4;11036:11;;;10862:193;;;;:::o;11118:151::-;11207:7;11234:11;:18;11246:5;11234:18;;;;;;;;;;;;;;;:27;11253:7;11234:27;;;;;;;;;;;;;;;;11227:34;;11118:151;;;;:::o;9963:205::-;5042:13;:11;:13::i;:::-;10056:9:::1;10051:110;10075:11;;:18;;10071:1;:22;10051:110;;;10144:5;10115:10;:26;10126:11;;10138:1;10126:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10115:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;10095:3;;;;;:::i;:::-;;;;10051:110;;;;9963:205:::0;;:::o;6055:201::-;5042:13;:11;:13::i;:::-;6164:1:::1;6144:22;;:8;:22;;::::0;6136:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6220:28;6239:8;6220:18;:28::i;:::-;6055:201:::0;:::o;9754:::-;5042:13;:11;:13::i;:::-;9844:9:::1;9839:109;9863:11;;:18;;9859:1;:22;9839:109;;;9932:4;9903:10;:26;9914:11;;9926:1;9914:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9903:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;9883:3;;;;;:::i;:::-;;;;9839:109;;;;9754:201:::0;;:::o;3865:98::-;3918:7;3945:10;3938:17;;3865:98;:::o;17933:380::-;18086:1;18069:19;;:5;:19;;;18061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18167:1;18148:21;;:7;:21;;;18140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18251:6;18221:11;:18;18233:5;18221:18;;;;;;;;;;;;;;;:27;18240:7;18221:27;;;;;;;;;;;;;;;:36;;;;18289:7;18273:32;;18282:5;18273:32;;;18298:6;18273:32;;;;;;:::i;:::-;;;;;;;;17933:380;;;:::o;18604:453::-;18739:24;18766:25;18776:5;18783:7;18766:9;:25::i;:::-;18739:52;;18826:17;18806:16;:37;18802:248;;18888:6;18868:16;:26;;18860:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18972:51;18981:5;18988:7;19016:6;18997:16;:25;18972:8;:51::i;:::-;18802:248;18728:329;18604:453;;;:::o;14721:931::-;14868:1;14852:18;;:4;:18;;;14844:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14945:1;14931:16;;:2;:16;;;14923:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15000:38;15021:4;15027:2;15031:6;15000:20;:38::i;:::-;15051:19;15073:9;:15;15083:4;15073:15;;;;;;;;;;;;;;;;15051:37;;15122:6;15107:11;:21;;15099:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15239:6;15225:11;:20;15207:9;:15;15217:4;15207:15;;;;;;;;;;;;;;;:38;;;;15442:6;15425:9;:13;15435:2;15425:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15474:10;:16;15485:4;15474:16;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;;15494:10;:14;15505:2;15494:14;;;;;;;;;;;;;;;;;;;;;;;;;15474:34;15470:78;;;15539:4;15518:25;;:17;;;;;;;;;;;:25;;;15510:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;15470:78;15583:2;15568:26;;15577:4;15568:26;;;15587:6;15568:26;;;;;;:::i;:::-;;;;;;;;15607:37;15627:4;15633:2;15637:6;15607:19;:37::i;:::-;14833:819;14721:931;;;:::o;5321:132::-;5396:12;:10;:12::i;:::-;5385:23;;:7;:5;:7::i;:::-;:23;;;5377:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5321:132::o;6416:191::-;6490:16;6509:6;;;;;;;;;;;6490:25;;6535:8;6526:6;;:17;;;;;;;;;;;;;;;;;;6590:8;6559:40;;6580:8;6559:40;;;;;;;;;;;;6479:128;6416:191;:::o;20389:125::-;;;;:::o;19661:124::-;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:474::-;909:6;917;966:2;954:9;945:7;941:23;937:32;934:119;;;972:79;;:::i;:::-;934:119;1092:1;1117:53;1162:7;1153:6;1142:9;1138:22;1117:53;:::i;:::-;1107:63;;1063:117;1219:2;1245:53;1290:7;1281:6;1270:9;1266:22;1245:53;:::i;:::-;1235:63;;1190:118;841:474;;;;;:::o;1321:77::-;1358:7;1387:5;1376:16;;1321:77;;;:::o;1404:118::-;1491:24;1509:5;1491:24;:::i;:::-;1486:3;1479:37;1404:118;;:::o;1528:222::-;1621:4;1659:2;1648:9;1644:18;1636:26;;1672:71;1740:1;1729:9;1725:17;1716:6;1672:71;:::i;:::-;1528:222;;;;:::o;1756:99::-;1808:6;1842:5;1836:12;1826:22;;1756:99;;;:::o;1861:169::-;1945:11;1979:6;1974:3;1967:19;2019:4;2014:3;2010:14;1995:29;;1861:169;;;;:::o;2036:246::-;2117:1;2127:113;2141:6;2138:1;2135:13;2127:113;;;2226:1;2221:3;2217:11;2211:18;2207:1;2202:3;2198:11;2191:39;2163:2;2160:1;2156:10;2151:15;;2127:113;;;2274:1;2265:6;2260:3;2256:16;2249:27;2098:184;2036:246;;;:::o;2288:102::-;2329:6;2380:2;2376:7;2371:2;2364:5;2360:14;2356:28;2346:38;;2288:102;;;:::o;2396:377::-;2484:3;2512:39;2545:5;2512:39;:::i;:::-;2567:71;2631:6;2626:3;2567:71;:::i;:::-;2560:78;;2647:65;2705:6;2700:3;2693:4;2686:5;2682:16;2647:65;:::i;:::-;2737:29;2759:6;2737:29;:::i;:::-;2732:3;2728:39;2721:46;;2488:285;2396:377;;;;:::o;2779:313::-;2892:4;2930:2;2919:9;2915:18;2907:26;;2979:9;2973:4;2969:20;2965:1;2954:9;2950:17;2943:47;3007:78;3080:4;3071:6;3007:78;:::i;:::-;2999:86;;2779:313;;;;:::o;3098:122::-;3171:24;3189:5;3171:24;:::i;:::-;3164:5;3161:35;3151:63;;3210:1;3207;3200:12;3151:63;3098:122;:::o;3226:139::-;3272:5;3310:6;3297:20;3288:29;;3326:33;3353:5;3326:33;:::i;:::-;3226:139;;;;:::o;3371:474::-;3439:6;3447;3496:2;3484:9;3475:7;3471:23;3467:32;3464:119;;;3502:79;;:::i;:::-;3464:119;3622:1;3647:53;3692:7;3683:6;3672:9;3668:22;3647:53;:::i;:::-;3637:63;;3593:117;3749:2;3775:53;3820:7;3811:6;3800:9;3796:22;3775:53;:::i;:::-;3765:63;;3720:118;3371:474;;;;;:::o;3851:90::-;3885:7;3928:5;3921:13;3914:21;3903:32;;3851:90;;;:::o;3947:109::-;4028:21;4043:5;4028:21;:::i;:::-;4023:3;4016:34;3947:109;;:::o;4062:210::-;4149:4;4187:2;4176:9;4172:18;4164:26;;4200:65;4262:1;4251:9;4247:17;4238:6;4200:65;:::i;:::-;4062:210;;;;:::o;4278:329::-;4337:6;4386:2;4374:9;4365:7;4361:23;4357:32;4354:119;;;4392:79;;:::i;:::-;4354:119;4512:1;4537:53;4582:7;4573:6;4562:9;4558:22;4537:53;:::i;:::-;4527:63;;4483:117;4278:329;;;;:::o;4613:619::-;4690:6;4698;4706;4755:2;4743:9;4734:7;4730:23;4726:32;4723:119;;;4761:79;;:::i;:::-;4723:119;4881:1;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4852:117;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4613:619;;;;;:::o;5238:86::-;5273:7;5313:4;5306:5;5302:16;5291:27;;5238:86;;;:::o;5330:112::-;5413:22;5429:5;5413:22;:::i;:::-;5408:3;5401:35;5330:112;;:::o;5448:214::-;5537:4;5575:2;5564:9;5560:18;5552:26;;5588:67;5652:1;5641:9;5637:17;5628:6;5588:67;:::i;:::-;5448:214;;;;:::o;5668:118::-;5755:24;5773:5;5755:24;:::i;:::-;5750:3;5743:37;5668:118;;:::o;5792:222::-;5885:4;5923:2;5912:9;5908:18;5900:26;;5936:71;6004:1;5993:9;5989:17;5980:6;5936:71;:::i;:::-;5792:222;;;;:::o;6020:117::-;6129:1;6126;6119:12;6143:117;6252:1;6249;6242:12;6266:117;6375:1;6372;6365:12;6406:568;6479:8;6489:6;6539:3;6532:4;6524:6;6520:17;6516:27;6506:122;;6547:79;;:::i;:::-;6506:122;6660:6;6647:20;6637:30;;6690:18;6682:6;6679:30;6676:117;;;6712:79;;:::i;:::-;6676:117;6826:4;6818:6;6814:17;6802:29;;6880:3;6872:4;6864:6;6860:17;6850:8;6846:32;6843:41;6840:128;;;6887:79;;:::i;:::-;6840:128;6406:568;;;;;:::o;6980:559::-;7066:6;7074;7123:2;7111:9;7102:7;7098:23;7094:32;7091:119;;;7129:79;;:::i;:::-;7091:119;7277:1;7266:9;7262:17;7249:31;7307:18;7299:6;7296:30;7293:117;;;7329:79;;:::i;:::-;7293:117;7442:80;7514:7;7505:6;7494:9;7490:22;7442:80;:::i;:::-;7424:98;;;;7220:312;6980:559;;;;;:::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:224::-;8580:34;8576:1;8568:6;8564:14;8557:58;8649:7;8644:2;8636:6;8632:15;8625:32;8440:224;:::o;8670:366::-;8812:3;8833:67;8897:2;8892:3;8833:67;:::i;:::-;8826:74;;8909:93;8998:3;8909:93;:::i;:::-;9027:2;9022:3;9018:12;9011:19;;8670:366;;;:::o;9042:419::-;9208:4;9246:2;9235:9;9231:18;9223:26;;9295:9;9289:4;9285:20;9281:1;9270:9;9266:17;9259:47;9323:131;9449:4;9323:131;:::i;:::-;9315:139;;9042:419;;;:::o;9467:180::-;9515:77;9512:1;9505:88;9612:4;9609:1;9602:15;9636:4;9633:1;9626:15;9653:233;9692:3;9715:24;9733:5;9715:24;:::i;:::-;9706:33;;9761:66;9754:5;9751:77;9748:103;;9831:18;;:::i;:::-;9748:103;9878:1;9871:5;9867:13;9860:20;;9653:233;;;:::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:114::-;;:::o;17152:364::-;17294:3;17315:66;17379:1;17374:3;17315:66;:::i;:::-;17308:73;;17390:93;17479:3;17390:93;:::i;:::-;17508:1;17503:3;17499:11;17492:18;;17152:364;;;:::o;17522:419::-;17688:4;17726:2;17715:9;17711:18;17703:26;;17775:9;17769:4;17765:20;17761:1;17750:9;17746:17;17739:47;17803:131;17929:4;17803:131;:::i;:::-;17795:139;;17522:419;;;:::o;17947:182::-;18087:34;18083:1;18075:6;18071:14;18064:58;17947:182;:::o;18135:366::-;18277:3;18298:67;18362:2;18357:3;18298:67;:::i;:::-;18291:74;;18374:93;18463:3;18374:93;:::i;:::-;18492:2;18487:3;18483:12;18476:19;;18135:366;;;:::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://cbbd75f7a8e61e34885082c2371444682059a1908d4a4ba910249250208366f8
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.