ETH Price: $2,590.96 (-3.20%)
Gas: 5 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

1,200,000 ERC20 ***

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
growyourinside.eth
Balance
8,224.7423482504229548 ERC20 ***

Value
$0.00
0xbf81fe08d02c23fbb8da9b4b0bd3b242758c9169
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:
TAODexAI

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-08
*/

// Original license: SPDX_License_Identifier: MIT

// Website: https://taodexai.io/
// Wpp: https://wpp.taodexai.io/
// App: https://app.taodexai.io/
// Twitter: https://twitter.com/TAODexAI
// Telegram: https://t.me/TAODexAI

//  _______  ______   _______  ___  
// |       ||      | |   _   ||   | 
// |_     _||  _    ||  |_|  ||   | 
//   |   |  | | |   ||       ||   | 
//   |   |  | |_|   ||       ||   | 
//   |   |  |       ||   _   ||   | 
//   |___|  |______| |__| |__||___| 


pragma solidity ^0.8.0;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


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

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

pragma solidity ^0.8.0;

contract TAODexAI is ERC20, ERC20Burnable, Ownable {
    uint256 _totalSupply = 1200000 * 10 ** decimals();

    constructor() ERC20("TAODexAI", "TDAI") {
        _mint(msg.sender, _totalSupply); 
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        return super.transfer(recipient, amount);
    }
    
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        return super.transferFrom(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

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

6080604052620000146200011d60201b60201c565b600a620000229190620005b6565b62124f8062000032919062000607565b6006553480156200004257600080fd5b506040518060400160405280600881526020017f54414f44657841490000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f54444149000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000c79291906200036c565b508060049080519060200190620000e09291906200036c565b50505062000103620000f76200012660201b60201c565b6200012e60201b60201c565b6200011733600654620001f460201b60201c565b620007db565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000267576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025e90620006c9565b60405180910390fd5b6200027b600083836200036260201b60201c565b80600260008282546200028f9190620006eb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000342919062000759565b60405180910390a36200035e600083836200036760201b60201c565b5050565b505050565b505050565b8280546200037a90620007a5565b90600052602060002090601f0160209004810192826200039e5760008555620003ea565b82601f10620003b957805160ff1916838001178555620003ea565b82800160010185558215620003ea579182015b82811115620003e9578251825591602001919060010190620003cc565b5b509050620003f99190620003fd565b5090565b5b8082111562000418576000816000905550600101620003fe565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004aa578086048111156200048257620004816200041c565b5b6001851615620004925780820291505b8081029050620004a2856200044b565b945062000462565b94509492505050565b600082620004c5576001905062000598565b81620004d5576000905062000598565b8160018114620004ee5760028114620004f9576200052f565b600191505062000598565b60ff8411156200050e576200050d6200041c565b5b8360020a9150848211156200052857620005276200041c565b5b5062000598565b5060208310610133831016604e8410600b8410161715620005695782820a9050838111156200056357620005626200041c565b5b62000598565b62000578848484600162000458565b925090508184048111156200059257620005916200041c565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005c3826200059f565b9150620005d083620005a9565b9250620005ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004b3565b905092915050565b600062000614826200059f565b915062000621836200059f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200065d576200065c6200041c565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006b1601f8362000668565b9150620006be8262000679565b602082019050919050565b60006020820190508181036000830152620006e481620006a2565b9050919050565b6000620006f8826200059f565b915062000705836200059f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200073d576200073c6200041c565b5b828201905092915050565b62000753816200059f565b82525050565b600060208201905062000770600083018462000748565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007be57607f821691505b60208210811415620007d557620007d462000776565b5b50919050565b6119dd80620007eb6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b57806379cc6790146102455780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a919061101e565b60405180910390f35b61013d600480360381019061013891906110d9565b6103db565b60405161014a9190611134565b60405180910390f35b61015b6103fe565b604051610168919061115e565b60405180910390f35b61018b60048036038101906101869190611179565b610408565b6040516101989190611134565b60405180910390f35b6101a961041e565b6040516101b691906111e8565b60405180910390f35b6101d960048036038101906101d491906110d9565b610427565b6040516101e69190611134565b60405180910390f35b61020960048036038101906102049190611203565b61045e565b005b61022560048036038101906102209190611230565b610472565b604051610232919061115e565b60405180910390f35b6102436104ba565b005b61025f600480360381019061025a91906110d9565b6104ce565b005b6102696104ee565b604051610276919061126c565b60405180910390f35b610287610518565b604051610294919061101e565b60405180910390f35b6102b760048036038101906102b291906110d9565b6105aa565b6040516102c49190611134565b60405180910390f35b6102e760048036038101906102e291906110d9565b610621565b6040516102f49190611134565b60405180910390f35b61031760048036038101906103129190611287565b610635565b604051610324919061115e565b60405180910390f35b61034760048036038101906103429190611230565b6106bc565b005b606060038054610358906112f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906112f6565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610740565b90506103f3818585610748565b600191505092915050565b6000600254905090565b6000610415848484610913565b90509392505050565b60006012905090565b600080610432610740565b90506104538185856104448589610635565b61044e9190611357565b610748565b600191505092915050565b61046f610469610740565b82610942565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104c2610b10565b6104cc6000610b8e565b565b6104e0826104da610740565b83610c54565b6104ea8282610942565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610527906112f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610553906112f6565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b6000806105b5610740565b905060006105c38286610635565b905083811015610608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ff9061141f565b60405180910390fd5b6106158286868403610748565b60019250505092915050565b600061062d8383610ce0565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106c4610b10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b906114b1565b60405180910390fd5b61073d81610b8e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90611543565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f906115d5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610906919061115e565b60405180910390a3505050565b60008061091e610740565b905061092b858285610c54565b610936858585610d03565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611667565b60405180910390fd5b6109be82600083610f7b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906116f9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af7919061115e565b60405180910390a3610b0b83600084610f80565b505050565b610b18610740565b73ffffffffffffffffffffffffffffffffffffffff16610b366104ee565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390611765565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610c608484610635565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cda5781811015610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906117d1565b60405180910390fd5b610cd98484848403610748565b5b50505050565b600080610ceb610740565b9050610cf8818585610d03565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90611863565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906118f5565b60405180910390fd5b610dee838383610f7b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90611987565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f62919061115e565b60405180910390a3610f75848484610f80565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fbf578082015181840152602081019050610fa4565b83811115610fce576000848401525b50505050565b6000601f19601f8301169050919050565b6000610ff082610f85565b610ffa8185610f90565b935061100a818560208601610fa1565b61101381610fd4565b840191505092915050565b600060208201905081810360008301526110388184610fe5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107082611045565b9050919050565b61108081611065565b811461108b57600080fd5b50565b60008135905061109d81611077565b92915050565b6000819050919050565b6110b6816110a3565b81146110c157600080fd5b50565b6000813590506110d3816110ad565b92915050565b600080604083850312156110f0576110ef611040565b5b60006110fe8582860161108e565b925050602061110f858286016110c4565b9150509250929050565b60008115159050919050565b61112e81611119565b82525050565b60006020820190506111496000830184611125565b92915050565b611158816110a3565b82525050565b6000602082019050611173600083018461114f565b92915050565b60008060006060848603121561119257611191611040565b5b60006111a08682870161108e565b93505060206111b18682870161108e565b92505060406111c2868287016110c4565b9150509250925092565b600060ff82169050919050565b6111e2816111cc565b82525050565b60006020820190506111fd60008301846111d9565b92915050565b60006020828403121561121957611218611040565b5b6000611227848285016110c4565b91505092915050565b60006020828403121561124657611245611040565b5b60006112548482850161108e565b91505092915050565b61126681611065565b82525050565b6000602082019050611281600083018461125d565b92915050565b6000806040838503121561129e5761129d611040565b5b60006112ac8582860161108e565b92505060206112bd8582860161108e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130e57607f821691505b60208210811415611322576113216112c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611362826110a3565b915061136d836110a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113a2576113a1611328565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611409602583610f90565b9150611414826113ad565b604082019050919050565b60006020820190508181036000830152611438816113fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061149b602683610f90565b91506114a68261143f565b604082019050919050565b600060208201905081810360008301526114ca8161148e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061152d602483610f90565b9150611538826114d1565b604082019050919050565b6000602082019050818103600083015261155c81611520565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115bf602283610f90565b91506115ca82611563565b604082019050919050565b600060208201905081810360008301526115ee816115b2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611651602183610f90565b915061165c826115f5565b604082019050919050565b6000602082019050818103600083015261168081611644565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006116e3602283610f90565b91506116ee82611687565b604082019050919050565b60006020820190508181036000830152611712816116d6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061174f602083610f90565b915061175a82611719565b602082019050919050565b6000602082019050818103600083015261177e81611742565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117bb601d83610f90565b91506117c682611785565b602082019050919050565b600060208201905081810360008301526117ea816117ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061184d602583610f90565b9150611858826117f1565b604082019050919050565b6000602082019050818103600083015261187c81611840565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118df602383610f90565b91506118ea82611883565b604082019050919050565b6000602082019050818103600083015261190e816118d2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611971602683610f90565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b905091905056fea264697066735822122063c2c58181a7ab367f948a51eb214a1dfa6db66bd024c07760e4082b2f7f1d8c64736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b57806379cc6790146102455780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a919061101e565b60405180910390f35b61013d600480360381019061013891906110d9565b6103db565b60405161014a9190611134565b60405180910390f35b61015b6103fe565b604051610168919061115e565b60405180910390f35b61018b60048036038101906101869190611179565b610408565b6040516101989190611134565b60405180910390f35b6101a961041e565b6040516101b691906111e8565b60405180910390f35b6101d960048036038101906101d491906110d9565b610427565b6040516101e69190611134565b60405180910390f35b61020960048036038101906102049190611203565b61045e565b005b61022560048036038101906102209190611230565b610472565b604051610232919061115e565b60405180910390f35b6102436104ba565b005b61025f600480360381019061025a91906110d9565b6104ce565b005b6102696104ee565b604051610276919061126c565b60405180910390f35b610287610518565b604051610294919061101e565b60405180910390f35b6102b760048036038101906102b291906110d9565b6105aa565b6040516102c49190611134565b60405180910390f35b6102e760048036038101906102e291906110d9565b610621565b6040516102f49190611134565b60405180910390f35b61031760048036038101906103129190611287565b610635565b604051610324919061115e565b60405180910390f35b61034760048036038101906103429190611230565b6106bc565b005b606060038054610358906112f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610384906112f6565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610740565b90506103f3818585610748565b600191505092915050565b6000600254905090565b6000610415848484610913565b90509392505050565b60006012905090565b600080610432610740565b90506104538185856104448589610635565b61044e9190611357565b610748565b600191505092915050565b61046f610469610740565b82610942565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104c2610b10565b6104cc6000610b8e565b565b6104e0826104da610740565b83610c54565b6104ea8282610942565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610527906112f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610553906112f6565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b6000806105b5610740565b905060006105c38286610635565b905083811015610608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ff9061141f565b60405180910390fd5b6106158286868403610748565b60019250505092915050565b600061062d8383610ce0565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106c4610b10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b906114b1565b60405180910390fd5b61073d81610b8e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90611543565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f906115d5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610906919061115e565b60405180910390a3505050565b60008061091e610740565b905061092b858285610c54565b610936858585610d03565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611667565b60405180910390fd5b6109be82600083610f7b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906116f9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af7919061115e565b60405180910390a3610b0b83600084610f80565b505050565b610b18610740565b73ffffffffffffffffffffffffffffffffffffffff16610b366104ee565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390611765565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610c608484610635565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cda5781811015610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906117d1565b60405180910390fd5b610cd98484848403610748565b5b50505050565b600080610ceb610740565b9050610cf8818585610d03565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90611863565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906118f5565b60405180910390fd5b610dee838383610f7b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90611987565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f62919061115e565b60405180910390a3610f75848484610f80565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fbf578082015181840152602081019050610fa4565b83811115610fce576000848401525b50505050565b6000601f19601f8301169050919050565b6000610ff082610f85565b610ffa8185610f90565b935061100a818560208601610fa1565b61101381610fd4565b840191505092915050565b600060208201905081810360008301526110388184610fe5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107082611045565b9050919050565b61108081611065565b811461108b57600080fd5b50565b60008135905061109d81611077565b92915050565b6000819050919050565b6110b6816110a3565b81146110c157600080fd5b50565b6000813590506110d3816110ad565b92915050565b600080604083850312156110f0576110ef611040565b5b60006110fe8582860161108e565b925050602061110f858286016110c4565b9150509250929050565b60008115159050919050565b61112e81611119565b82525050565b60006020820190506111496000830184611125565b92915050565b611158816110a3565b82525050565b6000602082019050611173600083018461114f565b92915050565b60008060006060848603121561119257611191611040565b5b60006111a08682870161108e565b93505060206111b18682870161108e565b92505060406111c2868287016110c4565b9150509250925092565b600060ff82169050919050565b6111e2816111cc565b82525050565b60006020820190506111fd60008301846111d9565b92915050565b60006020828403121561121957611218611040565b5b6000611227848285016110c4565b91505092915050565b60006020828403121561124657611245611040565b5b60006112548482850161108e565b91505092915050565b61126681611065565b82525050565b6000602082019050611281600083018461125d565b92915050565b6000806040838503121561129e5761129d611040565b5b60006112ac8582860161108e565b92505060206112bd8582860161108e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061130e57607f821691505b60208210811415611322576113216112c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611362826110a3565b915061136d836110a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113a2576113a1611328565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611409602583610f90565b9150611414826113ad565b604082019050919050565b60006020820190508181036000830152611438816113fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061149b602683610f90565b91506114a68261143f565b604082019050919050565b600060208201905081810360008301526114ca8161148e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061152d602483610f90565b9150611538826114d1565b604082019050919050565b6000602082019050818103600083015261155c81611520565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115bf602283610f90565b91506115ca82611563565b604082019050919050565b600060208201905081810360008301526115ee816115b2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611651602183610f90565b915061165c826115f5565b604082019050919050565b6000602082019050818103600083015261168081611644565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006116e3602283610f90565b91506116ee82611687565b604082019050919050565b60006020820190508181036000830152611712816116d6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061174f602083610f90565b915061175a82611719565b602082019050919050565b6000602082019050818103600083015261177e81611742565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117bb601d83610f90565b91506117c682611785565b602082019050919050565b600060208201905081810360008301526117ea816117ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061184d602583610f90565b9150611858826117f1565b604082019050919050565b6000602082019050818103600083015261187c81611840565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118df602383610f90565b91506118ea82611883565b604082019050919050565b6000602082019050818103600083015261190e816118d2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611971602683610f90565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b905091905056fea264697066735822122063c2c58181a7ab367f948a51eb214a1dfa6db66bd024c07760e4082b2f7f1d8c64736f6c634300080a0033

Deployed Bytecode Sourcemap

22275:548:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10036:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12396:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11165:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22645:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11007:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13847:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21667:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11336:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3324:103;;;:::i;:::-;;22077:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2683:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10255:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14588:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22490:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11925:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3582:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10036:100;10090:13;10123:5;10116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10036:100;:::o;12396:201::-;12479:4;12496:13;12512:12;:10;:12::i;:::-;12496:28;;12535:32;12544:5;12551:7;12560:6;12535:8;:32::i;:::-;12585:4;12578:11;;;12396:201;;;;:::o;11165:108::-;11226:7;11253:12;;11246:19;;11165:108;:::o;22645:175::-;22743:4;22767:45;22786:6;22794:9;22805:6;22767:18;:45::i;:::-;22760:52;;22645:175;;;;;:::o;11007:93::-;11065:5;11090:2;11083:9;;11007:93;:::o;13847:238::-;13935:4;13952:13;13968:12;:10;:12::i;:::-;13952:28;;13991:64;14000:5;14007:7;14044:10;14016:25;14026:5;14033:7;14016:9;:25::i;:::-;:38;;;;:::i;:::-;13991:8;:64::i;:::-;14073:4;14066:11;;;13847:238;;;;:::o;21667:91::-;21723:27;21729:12;:10;:12::i;:::-;21743:6;21723:5;:27::i;:::-;21667:91;:::o;11336:127::-;11410:7;11437:9;:18;11447:7;11437:18;;;;;;;;;;;;;;;;11430:25;;11336:127;;;:::o;3324:103::-;2569:13;:11;:13::i;:::-;3389:30:::1;3416:1;3389:18;:30::i;:::-;3324:103::o:0;22077:164::-;22154:46;22170:7;22179:12;:10;:12::i;:::-;22193:6;22154:15;:46::i;:::-;22211:22;22217:7;22226:6;22211:5;:22::i;:::-;22077:164;;:::o;2683:87::-;2729:7;2756:6;;;;;;;;;;;2749:13;;2683:87;:::o;10255:104::-;10311:13;10344:7;10337:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10255:104;:::o;14588:436::-;14681:4;14698:13;14714:12;:10;:12::i;:::-;14698:28;;14737:24;14764:25;14774:5;14781:7;14764:9;:25::i;:::-;14737:52;;14828:15;14808:16;:35;;14800:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14921:60;14930:5;14937:7;14965:15;14946:16;:34;14921:8;:60::i;:::-;15012:4;15005:11;;;;14588:436;;;;:::o;22490:143::-;22568:4;22592:33;22607:9;22618:6;22592:14;:33::i;:::-;22585:40;;22490:143;;;;:::o;11925:151::-;12014:7;12041:11;:18;12053:5;12041:18;;;;;;;;;;;;;;;:27;12060:7;12041:27;;;;;;;;;;;;;;;;12034:34;;11925:151;;;;:::o;3582:201::-;2569:13;:11;:13::i;:::-;3691:1:::1;3671:22;;:8;:22;;;;3663:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:28;3766:8;3747:18;:28::i;:::-;3582:201:::0;:::o;1072:98::-;1125:7;1152:10;1145:17;;1072:98;:::o;18581:346::-;18700:1;18683:19;;:5;:19;;;;18675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18781:1;18762:21;;:7;:21;;;;18754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18865:6;18835:11;:18;18847:5;18835:18;;;;;;;;;;;;;;;:27;18854:7;18835:27;;;;;;;;;;;;;;;:36;;;;18903:7;18887:32;;18896:5;18887:32;;;18912:6;18887:32;;;;;;:::i;:::-;;;;;;;;18581:346;;;:::o;13177:261::-;13274:4;13291:15;13309:12;:10;:12::i;:::-;13291:30;;13332:38;13348:4;13354:7;13363:6;13332:15;:38::i;:::-;13381:27;13391:4;13397:2;13401:6;13381:9;:27::i;:::-;13426:4;13419:11;;;13177:261;;;;;:::o;17468:675::-;17571:1;17552:21;;:7;:21;;;;17544:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17624:49;17645:7;17662:1;17666:6;17624:20;:49::i;:::-;17686:22;17711:9;:18;17721:7;17711:18;;;;;;;;;;;;;;;;17686:43;;17766:6;17748:14;:24;;17740:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17885:6;17868:14;:23;17847:9;:18;17857:7;17847:18;;;;;;;;;;;;;;;:44;;;;18002:6;17986:12;;:22;;;;;;;;;;;18063:1;18037:37;;18046:7;18037:37;;;18067:6;18037:37;;;;;;:::i;:::-;;;;;;;;18087:48;18107:7;18124:1;18128:6;18087:19;:48::i;:::-;17533:610;17468:675;;:::o;2848:132::-;2923:12;:10;:12::i;:::-;2912:23;;:7;:5;:7::i;:::-;:23;;;2904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2848:132::o;3943:191::-;4017:16;4036:6;;;;;;;;;;;4017:25;;4062:8;4053:6;;:17;;;;;;;;;;;;;;;;;;4117:8;4086:40;;4107:8;4086:40;;;;;;;;;;;;4006:128;3943:191;:::o;19218:419::-;19319:24;19346:25;19356:5;19363:7;19346:9;:25::i;:::-;19319:52;;19406:17;19386:16;:37;19382:248;;19468:6;19448:16;:26;;19440:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19552:51;19561:5;19568:7;19596:6;19577:16;:25;19552:8;:51::i;:::-;19382:248;19308:329;19218:419;;;:::o;11669:193::-;11748:4;11765:13;11781:12;:10;:12::i;:::-;11765:28;;11804;11814:5;11821:2;11825:6;11804:9;:28::i;:::-;11850:4;11843:11;;;11669:193;;;;:::o;15494:806::-;15607:1;15591:18;;:4;:18;;;;15583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15684:1;15670:16;;:2;:16;;;;15662:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15739:38;15760:4;15766:2;15770:6;15739:20;:38::i;:::-;15790:19;15812:9;:15;15822:4;15812:15;;;;;;;;;;;;;;;;15790:37;;15861:6;15846:11;:21;;15838:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15978:6;15964:11;:20;15946:9;:15;15956:4;15946:15;;;;;;;;;;;;;;;:38;;;;16181:6;16164:9;:13;16174:2;16164:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16231:2;16216:26;;16225:4;16216:26;;;16235:6;16216:26;;;;;;:::i;:::-;;;;;;;;16255:37;16275:4;16281:2;16285:6;16255:19;:37::i;:::-;15572:728;15494:806;;;:::o;20237:91::-;;;;:::o;20932:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:224::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:7;7616:2;7608:6;7604:15;7597:32;7412:224;:::o;7642:366::-;7784:3;7805:67;7869:2;7864:3;7805:67;:::i;:::-;7798:74;;7881:93;7970:3;7881:93;:::i;:::-;7999:2;7994:3;7990:12;7983:19;;7642:366;;;:::o;8014:419::-;8180:4;8218:2;8207:9;8203:18;8195:26;;8267:9;8261:4;8257:20;8253:1;8242:9;8238:17;8231:47;8295:131;8421:4;8295:131;:::i;:::-;8287:139;;8014:419;;;:::o;8439:225::-;8579:34;8575:1;8567:6;8563:14;8556:58;8648:8;8643:2;8635:6;8631:15;8624:33;8439:225;:::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:223::-;9607:34;9603:1;9595:6;9591:14;9584:58;9676:6;9671:2;9663:6;9659:15;9652:31;9467:223;:::o;9696:366::-;9838:3;9859:67;9923:2;9918:3;9859:67;:::i;:::-;9852:74;;9935:93;10024:3;9935:93;:::i;:::-;10053:2;10048:3;10044:12;10037:19;;9696:366;;;:::o;10068:419::-;10234:4;10272:2;10261:9;10257:18;10249:26;;10321:9;10315:4;10311:20;10307:1;10296:9;10292:17;10285:47;10349:131;10475:4;10349:131;:::i;:::-;10341:139;;10068:419;;;:::o;10493:221::-;10633:34;10629:1;10621:6;10617:14;10610:58;10702:4;10697:2;10689:6;10685:15;10678:29;10493:221;:::o;10720:366::-;10862:3;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10959:93;11048:3;10959:93;:::i;:::-;11077:2;11072:3;11068:12;11061:19;;10720:366;;;:::o;11092:419::-;11258:4;11296:2;11285:9;11281:18;11273:26;;11345:9;11339:4;11335:20;11331:1;11320:9;11316:17;11309:47;11373:131;11499:4;11373:131;:::i;:::-;11365:139;;11092:419;;;:::o;11517:220::-;11657:34;11653:1;11645:6;11641:14;11634:58;11726:3;11721:2;11713:6;11709:15;11702:28;11517:220;:::o;11743:366::-;11885:3;11906:67;11970:2;11965:3;11906:67;:::i;:::-;11899:74;;11982:93;12071:3;11982:93;:::i;:::-;12100:2;12095:3;12091:12;12084:19;;11743:366;;;:::o;12115:419::-;12281:4;12319:2;12308:9;12304:18;12296:26;;12368:9;12362:4;12358:20;12354:1;12343:9;12339:17;12332:47;12396:131;12522:4;12396:131;:::i;:::-;12388:139;;12115:419;;;:::o;12540:221::-;12680:34;12676:1;12668:6;12664:14;12657:58;12749:4;12744:2;12736:6;12732:15;12725:29;12540:221;:::o;12767:366::-;12909:3;12930:67;12994:2;12989:3;12930:67;:::i;:::-;12923:74;;13006:93;13095:3;13006:93;:::i;:::-;13124:2;13119:3;13115:12;13108:19;;12767:366;;;:::o;13139:419::-;13305:4;13343:2;13332:9;13328:18;13320:26;;13392:9;13386:4;13382:20;13378:1;13367:9;13363:17;13356:47;13420:131;13546:4;13420:131;:::i;:::-;13412:139;;13139:419;;;:::o;13564:182::-;13704:34;13700:1;13692:6;13688:14;13681:58;13564:182;:::o;13752:366::-;13894:3;13915:67;13979:2;13974:3;13915:67;:::i;:::-;13908:74;;13991:93;14080:3;13991:93;:::i;:::-;14109:2;14104:3;14100:12;14093:19;;13752:366;;;:::o;14124:419::-;14290:4;14328:2;14317:9;14313:18;14305:26;;14377:9;14371:4;14367:20;14363:1;14352:9;14348:17;14341:47;14405:131;14531:4;14405:131;:::i;:::-;14397:139;;14124:419;;;:::o;14549:179::-;14689:31;14685:1;14677:6;14673:14;14666:55;14549:179;:::o;14734:366::-;14876:3;14897:67;14961:2;14956:3;14897:67;:::i;:::-;14890:74;;14973:93;15062:3;14973:93;:::i;:::-;15091:2;15086:3;15082:12;15075:19;;14734:366;;;:::o;15106:419::-;15272:4;15310:2;15299:9;15295:18;15287:26;;15359:9;15353:4;15349:20;15345:1;15334:9;15330:17;15323:47;15387:131;15513:4;15387:131;:::i;:::-;15379:139;;15106:419;;;:::o;15531:224::-;15671:34;15667:1;15659:6;15655:14;15648:58;15740:7;15735:2;15727:6;15723:15;15716:32;15531:224;:::o;15761:366::-;15903:3;15924:67;15988:2;15983:3;15924:67;:::i;:::-;15917:74;;16000:93;16089:3;16000:93;:::i;:::-;16118:2;16113:3;16109:12;16102:19;;15761:366;;;:::o;16133:419::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16386:9;16380:4;16376:20;16372:1;16361:9;16357:17;16350:47;16414:131;16540:4;16414:131;:::i;:::-;16406:139;;16133:419;;;:::o;16558:222::-;16698:34;16694:1;16686:6;16682:14;16675:58;16767:5;16762:2;16754:6;16750:15;16743:30;16558:222;:::o;16786:366::-;16928:3;16949:67;17013:2;17008:3;16949:67;:::i;:::-;16942:74;;17025:93;17114:3;17025:93;:::i;:::-;17143:2;17138:3;17134:12;17127:19;;16786:366;;;:::o;17158:419::-;17324:4;17362:2;17351:9;17347:18;17339:26;;17411:9;17405:4;17401:20;17397:1;17386:9;17382:17;17375:47;17439:131;17565:4;17439:131;:::i;:::-;17431:139;;17158:419;;;:::o;17583:225::-;17723:34;17719:1;17711:6;17707:14;17700:58;17792:8;17787:2;17779:6;17775:15;17768:33;17583:225;:::o;17814:366::-;17956:3;17977:67;18041:2;18036:3;17977:67;:::i;:::-;17970:74;;18053:93;18142:3;18053:93;:::i;:::-;18171:2;18166:3;18162:12;18155:19;;17814:366;;;:::o;18186:419::-;18352:4;18390:2;18379:9;18375:18;18367:26;;18439:9;18433:4;18429:20;18425:1;18414:9;18410:17;18403:47;18467:131;18593:4;18467:131;:::i;:::-;18459:139;;18186:419;;;:::o

Swarm Source

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