ETH Price: $3,090.05 (+0.92%)
Gas: 6 Gwei

Token

Non-Fungible Fungi Genesis (NFF)
 

Overview

Max Total Supply

100 NFF

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 NFF
0xDA96E4B09026728b86341A73b1Da5f06a4A9cc56
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A 10K collection of unique 3D animated Mushrooms strolling across the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NonFungibleFungiGenesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-04
*/

// SPDX-License-Identifier: MIT
// written by 0xInuarashi || https://twitter.com/0xInuarashi || Inuarashi#1234 (Discord)
pragma solidity ^0.8.0;

// ability to future-switch between transfer hook yield vs claim loop yield

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}




/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// erc20 token interface
interface iSpore {
    function updateReward(address from_, address to_, uint tokenId_) external;
}

contract NonFungibleFungiGenesis is ERC721Enumerable, Ownable {
    
    address public sporeAddress; // set to address(0x0)
    iSpore public Spore; // initialze blank interfaced object
    function setSporeAddress(address address_) external onlyOwner {
        sporeAddress = address_; 
    }
    function initiateSporeContract() external onlyOwner {
        Spore = iSpore(sporeAddress);
    }
    function removeSporeContract() external onlyOwner {
        Spore = iSpore(address(0x0));
    }

    // define variables
    uint public constant maxTokens = 100; 
    
    string internal baseTokenURI;
    string internal baseTokenURI_EXT;

    function setBaseTokenURI(string memory uri_) external onlyOwner {
        baseTokenURI = uri_;
    }
    function setBaseTokenURI_EXT(string memory ext_) external onlyOwner {
        baseTokenURI_EXT = ext_;
    }

    // define events
    event Mint(address indexed to, uint indexed tokenId);

    // constructor
    constructor() ERC721("Non-Fungible Fungi Genesis", "NFF") {}
    
    // withdraw funds
    function withdrawEther() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }


    // mint functions
    function ownerMint(address to_, uint amount_) external onlyOwner {
        require((totalSupply() + amount_) <= maxTokens, "Amount Exceeds Maximum Tokens!");
        for (uint i = 0; i < amount_; i++) {
            _mint(to_, totalSupply());
        }
    }

    // special overrides 
    function transferFrom(address from_, address to_, uint tokenId_) public override {
        // if Spore contract is initiated, do a hook, if not, just do basic behavior
        if ( Spore != iSpore(address(0x0)) ) {
            Spore.updateReward(from_, to_, tokenId_);
        }
        ERC721.transferFrom(from_, to_, tokenId_);
    }

    function safeTransferFrom(address from_, address to_, uint tokenId_, bytes memory data_) public override {
        // if Spore contract is initiated, do a hook, if not, just do basic behavior
        if ( Spore != iSpore(address(0x0)) ) {
            Spore.updateReward(from_, to_, tokenId_);
        }
        ERC721.safeTransferFrom(from_, to_, tokenId_, data_);
    }

    // public view functions
    function tokenURI(uint tokenId_) public view override returns (string memory) {
        return string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId_), baseTokenURI_EXT));
    }
    function walletOfOwner(address address_) public view returns (uint[] memory) {
        uint _balance = balanceOf(address_); // get balance of address
        uint[] memory _tokenIds = new uint[](_balance); // initialize array 
        for (uint i = 0; i < _balance; i++) {
            _tokenIds[i] = tokenOfOwnerByIndex(address_, i);
        }
        return _tokenIds;
    }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Spore","outputs":[{"internalType":"contract iSpore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initiateSporeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeSporeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ext_","type":"string"}],"name":"setBaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setSporeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sporeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","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":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601a81527f4e6f6e2d46756e6769626c652046756e67692047656e6573697300000000000060208083019182528351808501909452600384526227232360e91b908401528151919291620000729160009162000101565b5080516200008890600190602084019062000101565b505050620000a56200009f620000ab60201b60201c565b620000af565b620001e4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010f90620001a7565b90600052602060002090601f0160209004810192826200013357600085556200017e565b82601f106200014e57805160ff19168380011785556200017e565b828001600101855582156200017e579182015b828111156200017e57825182559160200191906001019062000161565b506200018c92915062000190565b5090565b5b808211156200018c576000815560010162000191565b600181811c90821680620001bc57607f821691505b60208210811415620001de57634e487b7160e01b600052602260045260246000fd5b50919050565b61200f80620001f46000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e116101045780639d1f6451116100a2578063cb9eb93f11610071578063cb9eb93f146103d1578063e8315742146103e4578063e985e9c5146103ec578063f2fde38b1461042857600080fd5b80639d1f645114610385578063a22cb46514610398578063b88d4fde146103ab578063c87b56dd146103be57600080fd5b8063715018a6116100de578063715018a61461035c5780637362377b146103645780638da5cb5b1461036c57806395d89b411461037d57600080fd5b80636352211e1461032e5780636c2ef0311461034157806370a082311461034957600080fd5b8063256b453f1161017c57806342842e0e1161014b57806342842e0e146102d5578063438b6300146102e8578063484b973c146103085780634f6ccce71461031b57600080fd5b8063256b453f146102945780632f745c59146102a757806330176e13146102ba578063383c680f146102cd57600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806318160ddd1461026f57806323b872dd1461028157600080fd5b806301ffc9a7146101df57806302ffaed11461020757806306fdde031461021c575b600080fd5b6101f26101ed366004611b7b565b61043b565b60405190151581526020015b60405180910390f35b61021a610215366004611bb5565b610466565b005b6102246104b0565b6040516101fe9190611d91565b61024461023f366004611bfe565b610542565b6040516001600160a01b0390911681526020016101fe565b61021a61026a366004611b51565b6105d7565b6008545b6040519081526020016101fe565b61021a61028f366004611a5d565b6106ed565b61021a6102a2366004611a08565b610778565b6102736102b5366004611b51565b6107c4565b61021a6102c8366004611bb5565b61085a565b61021a610897565b61021a6102e3366004611a5d565b6108d3565b6102fb6102f6366004611a08565b6108ee565b6040516101fe9190611d4d565b61021a610316366004611b51565b610990565b610273610329366004611bfe565b610a4d565b61024461033c366004611bfe565b610ae0565b61021a610b57565b610273610357366004611a08565b610ba5565b61021a610c2c565b61021a610c62565b600a546001600160a01b0316610244565b610224610cbb565b600b54610244906001600160a01b031681565b61021a6103a6366004611b15565b610cca565b61021a6103b9366004611a99565b610d8f565b6102246103cc366004611bfe565b610e21565b600c54610244906001600160a01b031681565b610273606481565b6101f26103fa366004611a2a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61021a610436366004611a08565b610e58565b60006001600160e01b0319821663780e9d6360e01b1480610460575061046082610ef0565b92915050565b600a546001600160a01b031633146104995760405162461bcd60e51b815260040161049090611df6565b60405180910390fd5b80516104ac90600e9060208401906118dd565b5050565b6060600080546104bf90611eeb565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb90611eeb565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610490565b506000908152600460205260409020546001600160a01b031690565b60006105e282610ae0565b9050806001600160a01b0316836001600160a01b031614156106505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610490565b336001600160a01b038216148061066c575061066c81336103fa565b6106de5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610490565b6106e88383610f40565b505050565b600c546001600160a01b03161561076d57600c5460405163164746fd60e11b81526001600160a01b03858116600483015284811660248301526044820184905290911690632c8e8dfa90606401600060405180830381600087803b15801561075457600080fd5b505af1158015610768573d6000803e3d6000fd5b505050505b6106e8838383610fae565b600a546001600160a01b031633146107a25760405162461bcd60e51b815260040161049090611df6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006107cf83610ba5565b82106108315760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610490565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108845760405162461bcd60e51b815260040161049090611df6565b80516104ac90600d9060208401906118dd565b600a546001600160a01b031633146108c15760405162461bcd60e51b815260040161049090611df6565b600c80546001600160a01b0319169055565b6106e883838360405180602001604052806000815250610d8f565b606060006108fb83610ba5565b905060008167ffffffffffffffff81111561091857610918611fad565b604051908082528060200260200182016040528015610941578160200160208202803683370190505b50905060005b828110156109885761095985826107c4565b82828151811061096b5761096b611f97565b60209081029190910101528061098081611f26565b915050610947565b509392505050565b600a546001600160a01b031633146109ba5760405162461bcd60e51b815260040161049090611df6565b6064816109c660085490565b6109d09190611e7c565b1115610a1e5760405162461bcd60e51b815260206004820152601e60248201527f416d6f756e742045786365656473204d6178696d756d20546f6b656e732100006044820152606401610490565b60005b818110156106e857610a3b83610a3660085490565b610fdf565b80610a4581611f26565b915050610a21565b6000610a5860085490565b8210610abb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610490565b60088281548110610ace57610ace611f97565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610490565b600a546001600160a01b03163314610b815760405162461bcd60e51b815260040161049090611df6565b600b54600c80546001600160a01b0319166001600160a01b03909216919091179055565b60006001600160a01b038216610c105760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610490565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c565760405162461bcd60e51b815260040161049090611df6565b610c60600061112d565b565b600a546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161049090611df6565b60405133904780156108fc02916000818181858888f19350505050158015610cb8573d6000803e3d6000fd5b50565b6060600180546104bf90611eeb565b6001600160a01b038216331415610d235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610490565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b031615610e0f57600c5460405163164746fd60e11b81526001600160a01b03868116600483015285811660248301526044820185905290911690632c8e8dfa90606401600060405180830381600087803b158015610df657600080fd5b505af1158015610e0a573d6000803e3d6000fd5b505050505b610e1b8484848461117f565b50505050565b6060600d610e2e836111b1565b600e604051602001610e4293929190611cdd565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314610e825760405162461bcd60e51b815260040161049090611df6565b6001600160a01b038116610ee75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610490565b610cb88161112d565b60006001600160e01b031982166380ac58cd60e01b1480610f2157506001600160e01b03198216635b5e139f60e01b145b8061046057506301ffc9a760e01b6001600160e01b0319831614610460565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f7582610ae0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610fb833826112b7565b610fd45760405162461bcd60e51b815260040161049090611e2b565b6106e88383836113aa565b6001600160a01b0382166110355760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610490565b6000818152600260205260409020546001600160a01b03161561109a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610490565b6110a660008383611555565b6001600160a01b03821660009081526003602052604081208054600192906110cf908490611e7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61118933836112b7565b6111a55760405162461bcd60e51b815260040161049090611e2b565b610e1b8484848461160d565b6060816111d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ff57806111e981611f26565b91506111f89050600a83611e94565b91506111d9565b60008167ffffffffffffffff81111561121a5761121a611fad565b6040519080825280601f01601f191660200182016040528015611244576020820181803683370190505b5090505b84156112af57611259600183611ea8565b9150611266600a86611f41565b611271906030611e7c565b60f81b81838151811061128657611286611f97565b60200101906001600160f81b031916908160001a9053506112a8600a86611e94565b9450611248565b949350505050565b6000818152600260205260408120546001600160a01b03166113305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610490565b600061133b83610ae0565b9050806001600160a01b0316846001600160a01b031614806113765750836001600160a01b031661136b84610542565b6001600160a01b0316145b806112af57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166112af565b826001600160a01b03166113bd82610ae0565b6001600160a01b0316146114255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610490565b6001600160a01b0382166114875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610490565b611492838383611555565b61149d600082610f40565b6001600160a01b03831660009081526003602052604081208054600192906114c6908490611ea8565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f4908490611e7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0383166115b0576115ab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115d3565b816001600160a01b0316836001600160a01b0316146115d3576115d38382611640565b6001600160a01b0382166115ea576106e8816116dd565b826001600160a01b0316826001600160a01b0316146106e8576106e8828261178c565b6116188484846113aa565b611624848484846117d0565b610e1b5760405162461bcd60e51b815260040161049090611da4565b6000600161164d84610ba5565b6116579190611ea8565b6000838152600760205260409020549091508082146116aa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116ef90600190611ea8565b6000838152600960205260408120546008805493945090928490811061171757611717611f97565b90600052602060002001549050806008838154811061173857611738611f97565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061177057611770611f81565b6001900381819060005260206000200160009055905550505050565b600061179783610ba5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0384163b156118d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611814903390899088908890600401611d10565b602060405180830381600087803b15801561182e57600080fd5b505af192505050801561185e575060408051601f3d908101601f1916820190925261185b91810190611b98565b60015b6118b8573d80801561188c576040519150601f19603f3d011682016040523d82523d6000602084013e611891565b606091505b5080516118b05760405162461bcd60e51b815260040161049090611da4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112af565b506001949350505050565b8280546118e990611eeb565b90600052602060002090601f01602090048101928261190b5760008555611951565b82601f1061192457805160ff1916838001178555611951565b82800160010185558215611951579182015b82811115611951578251825591602001919060010190611936565b5061195d929150611961565b5090565b5b8082111561195d5760008155600101611962565b600067ffffffffffffffff8084111561199157611991611fad565b604051601f8501601f19908116603f011681019082821181831017156119b9576119b9611fad565b816040528093508581528686860111156119d257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a0357600080fd5b919050565b600060208284031215611a1a57600080fd5b611a23826119ec565b9392505050565b60008060408385031215611a3d57600080fd5b611a46836119ec565b9150611a54602084016119ec565b90509250929050565b600080600060608486031215611a7257600080fd5b611a7b846119ec565b9250611a89602085016119ec565b9150604084013590509250925092565b60008060008060808587031215611aaf57600080fd5b611ab8856119ec565b9350611ac6602086016119ec565b925060408501359150606085013567ffffffffffffffff811115611ae957600080fd5b8501601f81018713611afa57600080fd5b611b0987823560208401611976565b91505092959194509250565b60008060408385031215611b2857600080fd5b611b31836119ec565b915060208301358015158114611b4657600080fd5b809150509250929050565b60008060408385031215611b6457600080fd5b611b6d836119ec565b946020939093013593505050565b600060208284031215611b8d57600080fd5b8135611a2381611fc3565b600060208284031215611baa57600080fd5b8151611a2381611fc3565b600060208284031215611bc757600080fd5b813567ffffffffffffffff811115611bde57600080fd5b8201601f81018413611bef57600080fd5b6112af84823560208401611976565b600060208284031215611c1057600080fd5b5035919050565b60008151808452611c2f816020860160208601611ebf565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611c5d57607f831692505b6020808410821415611c7f57634e487b7160e01b600052602260045260246000fd5b818015611c935760018114611ca457611cd1565b60ff19861689528489019650611cd1565b60008881526020902060005b86811015611cc95781548b820152908501908301611cb0565b505084890196505b50505050505092915050565b6000611ce98286611c43565b8451611cf9818360208901611ebf565b611d0581830186611c43565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d4390830184611c17565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d8557835183529284019291840191600101611d69565b50909695505050505050565b602081526000611a236020830184611c17565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e8f57611e8f611f55565b500190565b600082611ea357611ea3611f6b565b500490565b600082821015611eba57611eba611f55565b500390565b60005b83811015611eda578181015183820152602001611ec2565b83811115610e1b5750506000910152565b600181811c90821680611eff57607f821691505b60208210811415611f2057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3a57611f3a611f55565b5060010190565b600082611f5057611f50611f6b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cb857600080fdfea264697066735822122015d331f233cfa3ad0f73eb5e202ff413b3a9448ea0f39d93e10784b2b97c6dcb64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e116101045780639d1f6451116100a2578063cb9eb93f11610071578063cb9eb93f146103d1578063e8315742146103e4578063e985e9c5146103ec578063f2fde38b1461042857600080fd5b80639d1f645114610385578063a22cb46514610398578063b88d4fde146103ab578063c87b56dd146103be57600080fd5b8063715018a6116100de578063715018a61461035c5780637362377b146103645780638da5cb5b1461036c57806395d89b411461037d57600080fd5b80636352211e1461032e5780636c2ef0311461034157806370a082311461034957600080fd5b8063256b453f1161017c57806342842e0e1161014b57806342842e0e146102d5578063438b6300146102e8578063484b973c146103085780634f6ccce71461031b57600080fd5b8063256b453f146102945780632f745c59146102a757806330176e13146102ba578063383c680f146102cd57600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806318160ddd1461026f57806323b872dd1461028157600080fd5b806301ffc9a7146101df57806302ffaed11461020757806306fdde031461021c575b600080fd5b6101f26101ed366004611b7b565b61043b565b60405190151581526020015b60405180910390f35b61021a610215366004611bb5565b610466565b005b6102246104b0565b6040516101fe9190611d91565b61024461023f366004611bfe565b610542565b6040516001600160a01b0390911681526020016101fe565b61021a61026a366004611b51565b6105d7565b6008545b6040519081526020016101fe565b61021a61028f366004611a5d565b6106ed565b61021a6102a2366004611a08565b610778565b6102736102b5366004611b51565b6107c4565b61021a6102c8366004611bb5565b61085a565b61021a610897565b61021a6102e3366004611a5d565b6108d3565b6102fb6102f6366004611a08565b6108ee565b6040516101fe9190611d4d565b61021a610316366004611b51565b610990565b610273610329366004611bfe565b610a4d565b61024461033c366004611bfe565b610ae0565b61021a610b57565b610273610357366004611a08565b610ba5565b61021a610c2c565b61021a610c62565b600a546001600160a01b0316610244565b610224610cbb565b600b54610244906001600160a01b031681565b61021a6103a6366004611b15565b610cca565b61021a6103b9366004611a99565b610d8f565b6102246103cc366004611bfe565b610e21565b600c54610244906001600160a01b031681565b610273606481565b6101f26103fa366004611a2a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61021a610436366004611a08565b610e58565b60006001600160e01b0319821663780e9d6360e01b1480610460575061046082610ef0565b92915050565b600a546001600160a01b031633146104995760405162461bcd60e51b815260040161049090611df6565b60405180910390fd5b80516104ac90600e9060208401906118dd565b5050565b6060600080546104bf90611eeb565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb90611eeb565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610490565b506000908152600460205260409020546001600160a01b031690565b60006105e282610ae0565b9050806001600160a01b0316836001600160a01b031614156106505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610490565b336001600160a01b038216148061066c575061066c81336103fa565b6106de5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610490565b6106e88383610f40565b505050565b600c546001600160a01b03161561076d57600c5460405163164746fd60e11b81526001600160a01b03858116600483015284811660248301526044820184905290911690632c8e8dfa90606401600060405180830381600087803b15801561075457600080fd5b505af1158015610768573d6000803e3d6000fd5b505050505b6106e8838383610fae565b600a546001600160a01b031633146107a25760405162461bcd60e51b815260040161049090611df6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006107cf83610ba5565b82106108315760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610490565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108845760405162461bcd60e51b815260040161049090611df6565b80516104ac90600d9060208401906118dd565b600a546001600160a01b031633146108c15760405162461bcd60e51b815260040161049090611df6565b600c80546001600160a01b0319169055565b6106e883838360405180602001604052806000815250610d8f565b606060006108fb83610ba5565b905060008167ffffffffffffffff81111561091857610918611fad565b604051908082528060200260200182016040528015610941578160200160208202803683370190505b50905060005b828110156109885761095985826107c4565b82828151811061096b5761096b611f97565b60209081029190910101528061098081611f26565b915050610947565b509392505050565b600a546001600160a01b031633146109ba5760405162461bcd60e51b815260040161049090611df6565b6064816109c660085490565b6109d09190611e7c565b1115610a1e5760405162461bcd60e51b815260206004820152601e60248201527f416d6f756e742045786365656473204d6178696d756d20546f6b656e732100006044820152606401610490565b60005b818110156106e857610a3b83610a3660085490565b610fdf565b80610a4581611f26565b915050610a21565b6000610a5860085490565b8210610abb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610490565b60088281548110610ace57610ace611f97565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610490565b600a546001600160a01b03163314610b815760405162461bcd60e51b815260040161049090611df6565b600b54600c80546001600160a01b0319166001600160a01b03909216919091179055565b60006001600160a01b038216610c105760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610490565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c565760405162461bcd60e51b815260040161049090611df6565b610c60600061112d565b565b600a546001600160a01b03163314610c8c5760405162461bcd60e51b815260040161049090611df6565b60405133904780156108fc02916000818181858888f19350505050158015610cb8573d6000803e3d6000fd5b50565b6060600180546104bf90611eeb565b6001600160a01b038216331415610d235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610490565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b031615610e0f57600c5460405163164746fd60e11b81526001600160a01b03868116600483015285811660248301526044820185905290911690632c8e8dfa90606401600060405180830381600087803b158015610df657600080fd5b505af1158015610e0a573d6000803e3d6000fd5b505050505b610e1b8484848461117f565b50505050565b6060600d610e2e836111b1565b600e604051602001610e4293929190611cdd565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314610e825760405162461bcd60e51b815260040161049090611df6565b6001600160a01b038116610ee75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610490565b610cb88161112d565b60006001600160e01b031982166380ac58cd60e01b1480610f2157506001600160e01b03198216635b5e139f60e01b145b8061046057506301ffc9a760e01b6001600160e01b0319831614610460565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f7582610ae0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610fb833826112b7565b610fd45760405162461bcd60e51b815260040161049090611e2b565b6106e88383836113aa565b6001600160a01b0382166110355760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610490565b6000818152600260205260409020546001600160a01b03161561109a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610490565b6110a660008383611555565b6001600160a01b03821660009081526003602052604081208054600192906110cf908490611e7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61118933836112b7565b6111a55760405162461bcd60e51b815260040161049090611e2b565b610e1b8484848461160d565b6060816111d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111ff57806111e981611f26565b91506111f89050600a83611e94565b91506111d9565b60008167ffffffffffffffff81111561121a5761121a611fad565b6040519080825280601f01601f191660200182016040528015611244576020820181803683370190505b5090505b84156112af57611259600183611ea8565b9150611266600a86611f41565b611271906030611e7c565b60f81b81838151811061128657611286611f97565b60200101906001600160f81b031916908160001a9053506112a8600a86611e94565b9450611248565b949350505050565b6000818152600260205260408120546001600160a01b03166113305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610490565b600061133b83610ae0565b9050806001600160a01b0316846001600160a01b031614806113765750836001600160a01b031661136b84610542565b6001600160a01b0316145b806112af57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166112af565b826001600160a01b03166113bd82610ae0565b6001600160a01b0316146114255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610490565b6001600160a01b0382166114875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610490565b611492838383611555565b61149d600082610f40565b6001600160a01b03831660009081526003602052604081208054600192906114c6908490611ea8565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f4908490611e7c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0383166115b0576115ab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115d3565b816001600160a01b0316836001600160a01b0316146115d3576115d38382611640565b6001600160a01b0382166115ea576106e8816116dd565b826001600160a01b0316826001600160a01b0316146106e8576106e8828261178c565b6116188484846113aa565b611624848484846117d0565b610e1b5760405162461bcd60e51b815260040161049090611da4565b6000600161164d84610ba5565b6116579190611ea8565b6000838152600760205260409020549091508082146116aa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116ef90600190611ea8565b6000838152600960205260408120546008805493945090928490811061171757611717611f97565b90600052602060002001549050806008838154811061173857611738611f97565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061177057611770611f81565b6001900381819060005260206000200160009055905550505050565b600061179783610ba5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b0384163b156118d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611814903390899088908890600401611d10565b602060405180830381600087803b15801561182e57600080fd5b505af192505050801561185e575060408051601f3d908101601f1916820190925261185b91810190611b98565b60015b6118b8573d80801561188c576040519150601f19603f3d011682016040523d82523d6000602084013e611891565b606091505b5080516118b05760405162461bcd60e51b815260040161049090611da4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112af565b506001949350505050565b8280546118e990611eeb565b90600052602060002090601f01602090048101928261190b5760008555611951565b82601f1061192457805160ff1916838001178555611951565b82800160010185558215611951579182015b82811115611951578251825591602001919060010190611936565b5061195d929150611961565b5090565b5b8082111561195d5760008155600101611962565b600067ffffffffffffffff8084111561199157611991611fad565b604051601f8501601f19908116603f011681019082821181831017156119b9576119b9611fad565b816040528093508581528686860111156119d257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a0357600080fd5b919050565b600060208284031215611a1a57600080fd5b611a23826119ec565b9392505050565b60008060408385031215611a3d57600080fd5b611a46836119ec565b9150611a54602084016119ec565b90509250929050565b600080600060608486031215611a7257600080fd5b611a7b846119ec565b9250611a89602085016119ec565b9150604084013590509250925092565b60008060008060808587031215611aaf57600080fd5b611ab8856119ec565b9350611ac6602086016119ec565b925060408501359150606085013567ffffffffffffffff811115611ae957600080fd5b8501601f81018713611afa57600080fd5b611b0987823560208401611976565b91505092959194509250565b60008060408385031215611b2857600080fd5b611b31836119ec565b915060208301358015158114611b4657600080fd5b809150509250929050565b60008060408385031215611b6457600080fd5b611b6d836119ec565b946020939093013593505050565b600060208284031215611b8d57600080fd5b8135611a2381611fc3565b600060208284031215611baa57600080fd5b8151611a2381611fc3565b600060208284031215611bc757600080fd5b813567ffffffffffffffff811115611bde57600080fd5b8201601f81018413611bef57600080fd5b6112af84823560208401611976565b600060208284031215611c1057600080fd5b5035919050565b60008151808452611c2f816020860160208601611ebf565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611c5d57607f831692505b6020808410821415611c7f57634e487b7160e01b600052602260045260246000fd5b818015611c935760018114611ca457611cd1565b60ff19861689528489019650611cd1565b60008881526020902060005b86811015611cc95781548b820152908501908301611cb0565b505084890196505b50505050505092915050565b6000611ce98286611c43565b8451611cf9818360208901611ebf565b611d0581830186611c43565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d4390830184611c17565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d8557835183529284019291840191600101611d69565b50909695505050505050565b602081526000611a236020830184611c17565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e8f57611e8f611f55565b500190565b600082611ea357611ea3611f6b565b500490565b600082821015611eba57611eba611f55565b500390565b60005b83811015611eda578181015183820152602001611ec2565b83811115610e1b5750506000910152565b600181811c90821680611eff57607f821691505b60208210811415611f2057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3a57611f3a611f55565b5060010190565b600082611f5057611f50611f6b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cb857600080fdfea264697066735822122015d331f233cfa3ad0f73eb5e202ff413b3a9448ea0f39d93e10784b2b97c6dcb64736f6c63430008070033

Deployed Bytecode Sourcemap

42103:2877:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35824:224;;;;;;:::i;:::-;;:::i;:::-;;;7627:14:1;;7620:22;7602:41;;7590:2;7575:18;35824:224:0;;;;;;;;42878:110;;;;;;:::i;:::-;;:::i;:::-;;23161:100;;;:::i;:::-;;;;;;;:::i;24720:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5908:32:1;;;5890:51;;5878:2;5863:18;24720:221:0;5744:203:1;24243:411:0;;;;;;:::i;:::-;;:::i;36464:113::-;36552:10;:17;36464:113;;;15397:25:1;;;15385:2;15370:18;36464:113:0;15251:177:1;43638:341:0;;;;;;:::i;:::-;;:::i;42298:105::-;;;;;;:::i;:::-;;:::i;36132:256::-;;;;;;:::i;:::-;;:::i;42770:102::-;;;;;;:::i;:::-;;:::i;42514:97::-;;;:::i;26020:185::-;;;;;;:::i;:::-;;:::i;44595:382::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43341:262::-;;;;;;:::i;:::-;;:::i;36654:233::-;;;;;;:::i;:::-;;:::i;22855:239::-;;;;;;:::i;:::-;;:::i;42409:99::-;;;:::i;22585:208::-;;;;;;:::i;:::-;;:::i;2546:94::-;;;:::i;43194:114::-;;;:::i;1895:87::-;1968:6;;-1:-1:-1;;;;;1968:6:0;1895:87;;23330:104;;;:::i;42178:27::-;;;;;-1:-1:-1;;;;;42178:27:0;;;25013:295;;;;;;:::i;:::-;;:::i;43987:376::-;;;;;;:::i;:::-;;:::i;44401:188::-;;;;;;:::i;:::-;;:::i;42235:19::-;;;;;-1:-1:-1;;;;;42235:19:0;;;42644:36;;42677:3;42644:36;;25379:164;;;;;;:::i;:::-;-1:-1:-1;;;;;25500:25:0;;;25476:4;25500:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25379:164;2795:192;;;;;;:::i;:::-;;:::i;35824:224::-;35926:4;-1:-1:-1;;;;;;35950:50:0;;-1:-1:-1;;;35950:50:0;;:90;;;36004:36;36028:11;36004:23;:36::i;:::-;35943:97;35824:224;-1:-1:-1;;35824:224:0:o;42878:110::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;;;;;;;;;42957:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42878:110:::0;:::o;23161:100::-;23215:13;23248:5;23241:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23161:100;:::o;24720:221::-;24796:7;28203:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28203:16:0;24816:73;;;;-1:-1:-1;;;24816:73:0;;13036:2:1;24816:73:0;;;13018:21:1;13075:2;13055:18;;;13048:30;13114:34;13094:18;;;13087:62;-1:-1:-1;;;13165:18:1;;;13158:42;13217:19;;24816:73:0;12834:408:1;24816:73:0;-1:-1:-1;24909:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24909:24:0;;24720:221::o;24243:411::-;24324:13;24340:23;24355:7;24340:14;:23::i;:::-;24324:39;;24388:5;-1:-1:-1;;;;;24382:11:0;:2;-1:-1:-1;;;;;24382:11:0;;;24374:57;;;;-1:-1:-1;;;24374:57:0;;14220:2:1;24374:57:0;;;14202:21:1;14259:2;14239:18;;;14232:30;14298:34;14278:18;;;14271:62;-1:-1:-1;;;14349:18:1;;;14342:31;14390:19;;24374:57:0;14018:397:1;24374:57:0;849:10;-1:-1:-1;;;;;24466:21:0;;;;:62;;-1:-1:-1;24491:37:0;24508:5;849:10;25379:164;:::i;24491:37::-;24444:168;;;;-1:-1:-1;;;24444:168:0;;11070:2:1;24444:168:0;;;11052:21:1;11109:2;11089:18;;;11082:30;11148:34;11128:18;;;11121:62;11219:26;11199:18;;;11192:54;11263:19;;24444:168:0;10868:420:1;24444:168:0;24625:21;24634:2;24638:7;24625:8;:21::i;:::-;24313:341;24243:411;;:::o;43638:341::-;43821:5;;-1:-1:-1;;;;;43821:5:0;:29;43816:104;;43868:5;;:40;;-1:-1:-1;;;43868:40:0;;-1:-1:-1;;;;;6210:15:1;;;43868:40:0;;;6192:34:1;6262:15;;;6242:18;;;6235:43;6294:18;;;6287:34;;;43868:5:0;;;;:18;;6127::1;;43868:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43816:104;43930:41;43950:5;43957:3;43962:8;43930:19;:41::i;42298:105::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;42371:12:::1;:23:::0;;-1:-1:-1;;;;;;42371:23:0::1;-1:-1:-1::0;;;;;42371:23:0;;;::::1;::::0;;;::::1;::::0;;42298:105::o;36132:256::-;36229:7;36265:23;36282:5;36265:16;:23::i;:::-;36257:5;:31;36249:87;;;;-1:-1:-1;;;36249:87:0;;8303:2:1;36249:87:0;;;8285:21:1;8342:2;8322:18;;;8315:30;8381:34;8361:18;;;8354:62;-1:-1:-1;;;8432:18:1;;;8425:41;8483:19;;36249:87:0;8101:407:1;36249:87:0;-1:-1:-1;;;;;;36354:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36132:256::o;42770:102::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;42845:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;42514:97::-:0;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;42575:5:::1;:28:::0;;-1:-1:-1;;;;;;42575:28:0::1;::::0;;42514:97::o;26020:185::-;26158:39;26175:4;26181:2;26185:7;26158:39;;;;;;;;;;;;:16;:39::i;44595:382::-;44657:13;44683;44699:19;44709:8;44699:9;:19::i;:::-;44683:35;;44755:23;44792:8;44781:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44781:20:0;;44755:46;;44838:6;44833:110;44854:8;44850:1;:12;44833:110;;;44899:32;44919:8;44929:1;44899:19;:32::i;:::-;44884:9;44894:1;44884:12;;;;;;;;:::i;:::-;;;;;;;;;;:47;44864:3;;;;:::i;:::-;;;;44833:110;;;-1:-1:-1;44960:9:0;44595:382;-1:-1:-1;;;44595:382:0:o;43341:262::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;42677:3:::1;43442:7;43426:13;36552:10:::0;:17;;36464:113;43426:13:::1;:23;;;;:::i;:::-;43425:38;;43417:81;;;::::0;-1:-1:-1;;;43417:81:0;;12316:2:1;43417:81:0::1;::::0;::::1;12298:21:1::0;12355:2;12335:18;;;12328:30;12394:32;12374:18;;;12367:60;12444:18;;43417:81:0::1;12114:354:1::0;43417:81:0::1;43514:6;43509:87;43530:7;43526:1;:11;43509:87;;;43559:25;43565:3;43570:13;36552:10:::0;:17;;36464:113;43570:13:::1;43559:5;:25::i;:::-;43539:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43509:87;;36654:233:::0;36729:7;36765:30;36552:10;:17;;36464:113;36765:30;36757:5;:38;36749:95;;;;-1:-1:-1;;;36749:95:0;;15040:2:1;36749:95:0;;;15022:21:1;15079:2;15059:18;;;15052:30;15118:34;15098:18;;;15091:62;-1:-1:-1;;;15169:18:1;;;15162:42;15221:19;;36749:95:0;14838:408:1;36749:95:0;36862:10;36873:5;36862:17;;;;;;;;:::i;:::-;;;;;;;;;36855:24;;36654:233;;;:::o;22855:239::-;22927:7;22963:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22963:16:0;22998:19;22990:73;;;;-1:-1:-1;;;22990:73:0;;11906:2:1;22990:73:0;;;11888:21:1;11945:2;11925:18;;;11918:30;11984:34;11964:18;;;11957:62;-1:-1:-1;;;12035:18:1;;;12028:39;12084:19;;22990:73:0;11704:405:1;42409:99:0;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;42487:12:::1;::::0;42472:5:::1;:28:::0;;-1:-1:-1;;;;;;42472:28:0::1;-1:-1:-1::0;;;;;42487:12:0;;::::1;42472:28:::0;;;::::1;::::0;;42409:99::o;22585:208::-;22657:7;-1:-1:-1;;;;;22685:19:0;;22677:74;;;;-1:-1:-1;;;22677:74:0;;11495:2:1;22677:74:0;;;11477:21:1;11534:2;11514:18;;;11507:30;11573:34;11553:18;;;11546:62;-1:-1:-1;;;11624:18:1;;;11617:40;11674:19;;22677:74:0;11293:406:1;22677:74:0;-1:-1:-1;;;;;;22769:16:0;;;;;:9;:16;;;;;;;22585:208::o;2546:94::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;2611:21:::1;2629:1;2611:9;:21::i;:::-;2546:94::o:0;43194:114::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;43249:51:::1;::::0;43257:10:::1;::::0;43278:21:::1;43249:51:::0;::::1;;;::::0;::::1;::::0;;;43278:21;43257:10;43249:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43194:114::o:0;23330:104::-;23386:13;23419:7;23412:14;;;;;:::i;25013:295::-;-1:-1:-1;;;;;25116:24:0;;849:10;25116:24;;25108:62;;;;-1:-1:-1;;;25108:62:0;;10303:2:1;25108:62:0;;;10285:21:1;10342:2;10322:18;;;10315:30;10381:27;10361:18;;;10354:55;10426:18;;25108:62:0;10101:349:1;25108:62:0;849:10;25183:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25183:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25183:53:0;;;;;;;;;;25252:48;;7602:41:1;;;25183:42:0;;849:10;25252:48;;7575:18:1;25252:48:0;;;;;;;25013:295;;:::o;43987:376::-;44194:5;;-1:-1:-1;;;;;44194:5:0;:29;44189:104;;44241:5;;:40;;-1:-1:-1;;;44241:40:0;;-1:-1:-1;;;;;6210:15:1;;;44241:40:0;;;6192:34:1;6262:15;;;6242:18;;;6235:43;6294:18;;;6287:34;;;44241:5:0;;;;:18;;6127::1;;44241:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44189:104;44303:52;44327:5;44334:3;44339:8;44349:5;44303:23;:52::i;:::-;43987:376;;;;:::o;44401:188::-;44464:13;44521:12;44535:26;44552:8;44535:16;:26::i;:::-;44563:16;44504:76;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44490:91;;44401:188;;;:::o;2795:192::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2884:22:0;::::1;2876:73;;;::::0;-1:-1:-1;;;2876:73:0;;9134:2:1;2876:73:0::1;::::0;::::1;9116:21:1::0;9173:2;9153:18;;;9146:30;9212:34;9192:18;;;9185:62;-1:-1:-1;;;9263:18:1;;;9256:36;9309:19;;2876:73:0::1;8932:402:1::0;2876:73:0::1;2960:19;2970:8;2960:9;:19::i;22216:305::-:0;22318:4;-1:-1:-1;;;;;;22355:40:0;;-1:-1:-1;;;22355:40:0;;:105;;-1:-1:-1;;;;;;;22412:48:0;;-1:-1:-1;;;22412:48:0;22355:105;:158;;;-1:-1:-1;;;;;;;;;;4732:40:0;;;22477:36;4623:157;32096:174;32171:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32171:29:0;-1:-1:-1;;;;;32171:29:0;;;;;;;;:24;;32225:23;32171:24;32225:14;:23::i;:::-;-1:-1:-1;;;;;32216:46:0;;;;;;;;;;;32096:174;;:::o;25610:339::-;25805:41;849:10;25838:7;25805:18;:41::i;:::-;25797:103;;;;-1:-1:-1;;;25797:103:0;;;;;;;:::i;:::-;25913:28;25923:4;25929:2;25933:7;25913:9;:28::i;30092:382::-;-1:-1:-1;;;;;30172:16:0;;30164:61;;;;-1:-1:-1;;;30164:61:0;;12675:2:1;30164:61:0;;;12657:21:1;;;12694:18;;;12687:30;12753:34;12733:18;;;12726:62;12805:18;;30164:61:0;12473:356:1;30164:61:0;28179:4;28203:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28203:16:0;:30;30236:58;;;;-1:-1:-1;;;30236:58:0;;9541:2:1;30236:58:0;;;9523:21:1;9580:2;9560:18;;;9553:30;9619;9599:18;;;9592:58;9667:18;;30236:58:0;9339:352:1;30236:58:0;30307:45;30336:1;30340:2;30344:7;30307:20;:45::i;:::-;-1:-1:-1;;;;;30365:13:0;;;;;;:9;:13;;;;;:18;;30382:1;;30365:13;:18;;30382:1;;30365:18;:::i;:::-;;;;-1:-1:-1;;30394:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30394:21:0;-1:-1:-1;;;;;30394:21:0;;;;;;;;30433:33;;30394:16;;;30433:33;;30394:16;;30433:33;30092:382;;:::o;2995:173::-;3070:6;;;-1:-1:-1;;;;;3087:17:0;;;-1:-1:-1;;;;;;3087:17:0;;;;;;;3120:40;;3070:6;;;3087:17;3070:6;;3120:40;;3051:16;;3120:40;3040:128;2995:173;:::o;26276:328::-;26451:41;849:10;26484:7;26451:18;:41::i;:::-;26443:103;;;;-1:-1:-1;;;26443:103:0;;;;;;;:::i;:::-;26557:39;26571:4;26577:2;26581:7;26590:5;26557:13;:39::i;13029:723::-;13085:13;13306:10;13302:53;;-1:-1:-1;;13333:10:0;;;;;;;;;;;;-1:-1:-1;;;13333:10:0;;;;;13029:723::o;13302:53::-;13380:5;13365:12;13421:78;13428:9;;13421:78;;13454:8;;;;:::i;:::-;;-1:-1:-1;13477:10:0;;-1:-1:-1;13485:2:0;13477:10;;:::i;:::-;;;13421:78;;;13509:19;13541:6;13531:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13531:17:0;;13509:39;;13559:154;13566:10;;13559:154;;13593:11;13603:1;13593:11;;:::i;:::-;;-1:-1:-1;13662:10:0;13670:2;13662:5;:10;:::i;:::-;13649:24;;:2;:24;:::i;:::-;13636:39;;13619:6;13626;13619:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13619:56:0;;;;;;;;-1:-1:-1;13690:11:0;13699:2;13690:11;;:::i;:::-;;;13559:154;;;13737:6;13029:723;-1:-1:-1;;;;13029:723:0:o;28408:348::-;28501:4;28203:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28203:16:0;28518:73;;;;-1:-1:-1;;;28518:73:0;;10657:2:1;28518:73:0;;;10639:21:1;10696:2;10676:18;;;10669:30;10735:34;10715:18;;;10708:62;-1:-1:-1;;;10786:18:1;;;10779:42;10838:19;;28518:73:0;10455:408:1;28518:73:0;28602:13;28618:23;28633:7;28618:14;:23::i;:::-;28602:39;;28671:5;-1:-1:-1;;;;;28660:16:0;:7;-1:-1:-1;;;;;28660:16:0;;:51;;;;28704:7;-1:-1:-1;;;;;28680:31:0;:20;28692:7;28680:11;:20::i;:::-;-1:-1:-1;;;;;28680:31:0;;28660:51;:87;;;-1:-1:-1;;;;;;25500:25:0;;;25476:4;25500:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28715:32;25379:164;31400:578;31559:4;-1:-1:-1;;;;;31532:31:0;:23;31547:7;31532:14;:23::i;:::-;-1:-1:-1;;;;;31532:31:0;;31524:85;;;;-1:-1:-1;;;31524:85:0;;13810:2:1;31524:85:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:39;13988:19;;31524:85:0;13608:405:1;31524:85:0;-1:-1:-1;;;;;31628:16:0;;31620:65;;;;-1:-1:-1;;;31620:65:0;;9898:2:1;31620:65:0;;;9880:21:1;9937:2;9917:18;;;9910:30;9976:34;9956:18;;;9949:62;-1:-1:-1;;;10027:18:1;;;10020:34;10071:19;;31620:65:0;9696:400:1;31620:65:0;31698:39;31719:4;31725:2;31729:7;31698:20;:39::i;:::-;31802:29;31819:1;31823:7;31802:8;:29::i;:::-;-1:-1:-1;;;;;31844:15:0;;;;;;:9;:15;;;;;:20;;31863:1;;31844:15;:20;;31863:1;;31844:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31875:13:0;;;;;;:9;:13;;;;;:18;;31892:1;;31875:13;:18;;31892:1;;31875:18;:::i;:::-;;;;-1:-1:-1;;31904:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31904:21:0;-1:-1:-1;;;;;31904:21:0;;;;;;;;;31943:27;;31904:16;;31943:27;;;;;;;31400:578;;;:::o;37500:589::-;-1:-1:-1;;;;;37706:18:0;;37702:187;;37741:40;37773:7;38916:10;:17;;38889:24;;;;:15;:24;;;;;:44;;;38944:24;;;;;;;;;;;;38812:164;37741:40;37702:187;;;37811:2;-1:-1:-1;;;;;37803:10:0;:4;-1:-1:-1;;;;;37803:10:0;;37799:90;;37830:47;37863:4;37869:7;37830:32;:47::i;:::-;-1:-1:-1;;;;;37903:16:0;;37899:183;;37936:45;37973:7;37936:36;:45::i;37899:183::-;38009:4;-1:-1:-1;;;;;38003:10:0;:2;-1:-1:-1;;;;;38003:10:0;;37999:83;;38030:40;38058:2;38062:7;38030:27;:40::i;27486:315::-;27643:28;27653:4;27659:2;27663:7;27643:9;:28::i;:::-;27690:48;27713:4;27719:2;27723:7;27732:5;27690:22;:48::i;:::-;27682:111;;;;-1:-1:-1;;;27682:111:0;;;;;;;:::i;39603:988::-;39869:22;39919:1;39894:22;39911:4;39894:16;:22::i;:::-;:26;;;;:::i;:::-;39931:18;39952:26;;;:17;:26;;;;;;39869:51;;-1:-1:-1;40085:28:0;;;40081:328;;-1:-1:-1;;;;;40152:18:0;;40130:19;40152:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40203:30;;;;;;:44;;;40320:30;;:17;:30;;;;;:43;;;40081:328;-1:-1:-1;40505:26:0;;;;:17;:26;;;;;;;;40498:33;;;-1:-1:-1;;;;;40549:18:0;;;;;:12;:18;;;;;:34;;;;;;;40542:41;39603:988::o;40886:1079::-;41164:10;:17;41139:22;;41164:21;;41184:1;;41164:21;:::i;:::-;41196:18;41217:24;;;:15;:24;;;;;;41590:10;:26;;41139:46;;-1:-1:-1;41217:24:0;;41139:46;;41590:26;;;;;;:::i;:::-;;;;;;;;;41568:48;;41654:11;41629:10;41640;41629:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41734:28;;;:15;:28;;;;;;;:41;;;41906:24;;;;;41899:31;41941:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40957:1008;;;40886:1079;:::o;38390:221::-;38475:14;38492:20;38509:2;38492:16;:20::i;:::-;-1:-1:-1;;;;;38523:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38568:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38390:221:0:o;32835:799::-;32990:4;-1:-1:-1;;;;;33011:13:0;;5793:20;5841:8;33007:620;;33047:72;;-1:-1:-1;;;33047:72:0;;-1:-1:-1;;;;;33047:36:0;;;;;:72;;849:10;;33098:4;;33104:7;;33113:5;;33047:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33047:72:0;;;;;;;;-1:-1:-1;;33047:72:0;;;;;;;;;;;;:::i;:::-;;;33043:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33289:13:0;;33285:272;;33332:60;;-1:-1:-1;;;33332:60:0;;;;;;;:::i;33285:272::-;33507:6;33501:13;33492:6;33488:2;33484:15;33477:38;33043:529;-1:-1:-1;;;;;;33170:51:0;-1:-1:-1;;;33170:51:0;;-1:-1:-1;33163:58:0;;33007:620;-1:-1:-1;33611:4:0;32835:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:973::-;4390:12;;4355:3;;4445:1;4465:18;;;;4518;;;;4545:61;;4599:4;4591:6;4587:17;4577:27;;4545:61;4625:2;4673;4665:6;4662:14;4642:18;4639:38;4636:161;;;4719:10;4714:3;4710:20;4707:1;4700:31;4754:4;4751:1;4744:15;4782:4;4779:1;4772:15;4636:161;4813:18;4840:104;;;;4958:1;4953:319;;;;4806:466;;4840:104;-1:-1:-1;;4873:24:1;;4861:37;;4918:16;;;;-1:-1:-1;4840:104:1;;4953:319;15506:1;15499:14;;;15543:4;15530:18;;5047:1;5061:165;5075:6;5072:1;5069:13;5061:165;;;5153:14;;5140:11;;;5133:35;5196:16;;;;5090:10;;5061:165;;;5065:3;;5255:6;5250:3;5246:16;5239:23;;4806:466;;;;;;;4305:973;;;;:::o;5283:456::-;5504:3;5532:38;5566:3;5558:6;5532:38;:::i;:::-;5599:6;5593:13;5615:52;5660:6;5656:2;5649:4;5641:6;5637:17;5615:52;:::i;:::-;5683:50;5725:6;5721:2;5717:15;5709:6;5683:50;:::i;:::-;5676:57;5283:456;-1:-1:-1;;;;;;;5283:456:1:o;6332:488::-;-1:-1:-1;;;;;6601:15:1;;;6583:34;;6653:15;;6648:2;6633:18;;6626:43;6700:2;6685:18;;6678:34;;;6748:3;6743:2;6728:18;;6721:31;;;6526:4;;6769:45;;6794:19;;6786:6;6769:45;:::i;:::-;6761:53;6332:488;-1:-1:-1;;;;;;6332:488:1:o;6825:632::-;6996:2;7048:21;;;7118:13;;7021:18;;;7140:22;;;6967:4;;6996:2;7219:15;;;;7193:2;7178:18;;;6967:4;7262:169;7276:6;7273:1;7270:13;7262:169;;;7337:13;;7325:26;;7406:15;;;;7371:12;;;;7298:1;7291:9;7262:169;;;-1:-1:-1;7448:3:1;;6825:632;-1:-1:-1;;;;;;6825:632:1:o;7877:219::-;8026:2;8015:9;8008:21;7989:4;8046:44;8086:2;8075:9;8071:18;8063:6;8046:44;:::i;8513:414::-;8715:2;8697:21;;;8754:2;8734:18;;;8727:30;8793:34;8788:2;8773:18;;8766:62;-1:-1:-1;;;8859:2:1;8844:18;;8837:48;8917:3;8902:19;;8513:414::o;13247:356::-;13449:2;13431:21;;;13468:18;;;13461:30;13527:34;13522:2;13507:18;;13500:62;13594:2;13579:18;;13247:356::o;14420:413::-;14622:2;14604:21;;;14661:2;14641:18;;;14634:30;14700:34;14695:2;14680:18;;14673:62;-1:-1:-1;;;14766:2:1;14751:18;;14744:47;14823:3;14808:19;;14420:413::o;15559:128::-;15599:3;15630:1;15626:6;15623:1;15620:13;15617:39;;;15636:18;;:::i;:::-;-1:-1:-1;15672:9:1;;15559:128::o;15692:120::-;15732:1;15758;15748:35;;15763:18;;:::i;:::-;-1:-1:-1;15797:9:1;;15692:120::o;15817:125::-;15857:4;15885:1;15882;15879:8;15876:34;;;15890:18;;:::i;:::-;-1:-1:-1;15927:9:1;;15817:125::o;15947:258::-;16019:1;16029:113;16043:6;16040:1;16037:13;16029:113;;;16119:11;;;16113:18;16100:11;;;16093:39;16065:2;16058:10;16029:113;;;16160:6;16157:1;16154:13;16151:48;;;-1:-1:-1;;16195:1:1;16177:16;;16170:27;15947:258::o;16210:380::-;16289:1;16285:12;;;;16332;;;16353:61;;16407:4;16399:6;16395:17;16385:27;;16353:61;16460:2;16452:6;16449:14;16429:18;16426:38;16423:161;;;16506:10;16501:3;16497:20;16494:1;16487:31;16541:4;16538:1;16531:15;16569:4;16566:1;16559:15;16423:161;;16210:380;;;:::o;16595:135::-;16634:3;-1:-1:-1;;16655:17:1;;16652:43;;;16675:18;;:::i;:::-;-1:-1:-1;16722:1:1;16711:13;;16595:135::o;16735:112::-;16767:1;16793;16783:35;;16798:18;;:::i;:::-;-1:-1:-1;16832:9:1;;16735:112::o;16852:127::-;16913:10;16908:3;16904:20;16901:1;16894:31;16944:4;16941:1;16934:15;16968:4;16965:1;16958:15;16984:127;17045:10;17040:3;17036:20;17033:1;17026:31;17076:4;17073:1;17066:15;17100:4;17097:1;17090:15;17116:127;17177:10;17172:3;17168:20;17165:1;17158:31;17208:4;17205:1;17198:15;17232:4;17229:1;17222:15;17248:127;17309:10;17304:3;17300:20;17297:1;17290:31;17340:4;17337:1;17330:15;17364:4;17361:1;17354:15;17380:127;17441:10;17436:3;17432:20;17429:1;17422:31;17472:4;17469:1;17462:15;17496:4;17493:1;17486:15;17512:131;-1:-1:-1;;;;;;17586:32:1;;17576:43;;17566:71;;17633:1;17630;17623:12

Swarm Source

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