ETH Price: $3,435.27 (+2.73%)

Token

Yield Universe (PLANETS)
 

Overview

Max Total Supply

5,555 PLANETS

Holders

157

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PLANETS
0x6b8341856cfe21d8c3db54e4c669d7000153dbed
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YieldUniverseNFTContract

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-17
*/

// Sources flattened with hardhat v2.8.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







/**
 * @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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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


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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}


// File contracts/extensions/custom/YieldUniverse.sol


pragma solidity ^0.8.4;




//
// Built by https://nft-generator.art
//
contract YieldUniverseNFTContract is ERC721, Ownable {
  string internal baseUri;

  uint256 public cost = 0.1 ether;
  uint32 public maxPerMint = 3;
  uint32 public maxPerWallet = 3;
  uint32 public supply = 0;
  uint32 public totalSupply = 5555;
  bool public open = false;
  bool public presaleOpen = false;
  bytes32 private merkleRoot;
  mapping(address => uint256) internal addressMintedMap;
  bool public revealed = false;
  string internal uriNotRevealed;

  address[] private payouts = [
    0x460Fd5059E7301680fA53E63bbBF7272E643e89C,
    0x1ca4B21CC5166140bf5435F376898747d1d136A2
  ];
  uint256[] private payoutSplit = [25, 975];

  constructor(
    string memory _uri,
    string memory _name,
    string memory _symbol,
    uint32 _totalSupply,
    uint256 _cost,
    bool _open
  ) ERC721(_name, _symbol) {
    baseUri = _uri;
    totalSupply = _totalSupply;
    cost = _cost;
    open = _open;
    uriNotRevealed = "ipfs://QmVPKiyBiVq8sn32t7kfNp6Ka6g28NALWxhy94KqVzGCkf/";
  }

  // ------ Owner Only ------

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setOpen(bool _open) public onlyOwner {
    open = _open;
  }

  function setMaxPerWallet(uint32 _max) public onlyOwner {
    maxPerWallet = _max;
  }

  function setMaxPerMint(uint32 _max) public onlyOwner {
    maxPerMint = _max;
  }

  function setPresaleOpen(bool _open) public onlyOwner {
    presaleOpen = _open;
  }

  function setPreSaleAddresses(bytes32 root) public onlyOwner {
    merkleRoot = root;
  }

  function setUnrevealedURI(string memory _uri) public onlyOwner {
    uriNotRevealed = _uri;
  }

  function reveal() public onlyOwner {
    revealed = true;
  }

  function airdrop(address[] calldata to) public onlyOwner {
    for (uint32 i = 0; i < to.length; i++) {
      require(1 + supply <= totalSupply, "Limit reached");
      _safeMint(to[i], ++supply, "");
    }
  }

  function withdraw() public payable onlyOwner {
    uint256 balance = address(this).balance;
    uint256 size = payouts.length;

    for (uint256 i = 0; i < size; i++) {
      (bool success, ) = payable(payouts[i]).call{
        value: (balance * payoutSplit[i]) / 1000
      }("");
      require(success);
    }
  }

  // ------ Mint! ------

  function mint(uint32 count) external payable preMintChecks(count) {
    require(open == true, "Mint not open");
    performMint(count);
  }

  function presaleMint(uint32 count, bytes32[] calldata proof)
    external
    payable
    preMintChecks(count)
  {
    require(presaleOpen, "Presale not open");
    require(merkleRoot != "", "Presale not ready");
    require(
      MerkleProof.verify(
        proof,
        merkleRoot,
        keccak256(abi.encodePacked(msg.sender))
      ),
      "Not a presale member"
    );

    performMint(count);
  }

  function performMint(uint32 count) internal {
    for (uint32 i = 0; i < count; i++) {
      _safeMint(msg.sender, ++supply, "");
    }
    addressMintedMap[msg.sender] += count;
  }

  // ------ Read ------

  function tokenURI(uint256 _tokenId)
    public
    view
    override
    returns (string memory)
  {
    require(_tokenId <= supply, "Not minted yet");
    if (revealed == false) {
      return
        string(
          abi.encodePacked(uriNotRevealed, Strings.toString(_tokenId), ".json")
        );
    }

    return
      string(abi.encodePacked(baseUri, Strings.toString(_tokenId), ".json"));
  }

  // ------ Modifiers ------

  modifier preMintChecks(uint32 count) {
    require(count > 0, "Mint at least one.");
    require(count < maxPerMint + 1, "Max mint reached.");
    require(msg.value >= cost * count, "Not enough fund.");
    require(supply + count < totalSupply + 1, "Mint sold out");
    require(
      addressMintedMap[msg.sender] + count <= maxPerWallet,
      "Max total mint reached"
    );
    _;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint32","name":"_totalSupply","type":"uint32"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"bool","name":"_open","type":"bool"}],"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":"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":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[],"name":"cost","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":[{"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":"maxPerMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_max","type":"uint32"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_max","type":"uint32"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPreSaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setPresaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

67016345785d8a0000600855600980546001600160901b0319166d15b3000000000000000300000003179055600c805460ff1916905560c060405273460fd5059e7301680fa53e63bbbf7272e643e89c6080908152731ca4b21cc5166140bf5435f376898747d1d136a260a0526200007c90600e90600262000206565b5060408051808201909152601981526103cf6020820152620000a390600f90600262000270565b50348015620000b157600080fd5b5060405162002d4c38038062002d4c833981016040819052620000d49162000411565b845185908590620000ed906000906020850190620002b4565b50805162000103906001906020840190620002b4565b505050620001206200011a620001b060201b60201c565b620001b4565b855162000135906007906020890190620002b4565b5060098054600884905564ffffffffff60601b19166c0100000000000000000000000063ffffffff86160260ff60801b191617600160801b831515021790556040805160608101909152603680825262002d1660208301398051620001a391600d91602090910190620002b4565b5050505050505062000529565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200025e579160200282015b828111156200025e57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000227565b506200026c92915062000331565b5090565b8280548282559060005260206000209081019282156200025e579160200282015b828111156200025e578251829061ffff1690559160200191906001019062000291565b828054620002c290620004d6565b90600052602060002090601f016020900481019282620002e657600085556200025e565b82601f106200030157805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025e57825182559160200191906001019062000314565b5b808211156200026c576000815560010162000332565b805180151581146200035957600080fd5b919050565b600082601f8301126200036f578081fd5b81516001600160401b03808211156200038c576200038c62000513565b604051601f8301601f19908116603f01168101908282118183101715620003b757620003b762000513565b81604052838152602092508683858801011115620003d3578485fd5b8491505b83821015620003f65785820183015181830184015290820190620003d7565b838211156200040757848385830101525b9695505050505050565b60008060008060008060c087890312156200042a578182fd5b86516001600160401b038082111562000441578384fd5b6200044f8a838b016200035e565b9750602089015191508082111562000465578384fd5b620004738a838b016200035e565b9650604089015191508082111562000489578384fd5b506200049889828a016200035e565b945050606087015163ffffffff81168114620004b2578283fd5b60808801519093509150620004ca60a0880162000348565b90509295509295509295565b600181811c90821680620004eb57607f821691505b602082108114156200050d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127dd80620005396000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063f2fde38b1161006f578063f2fde38b14610617578063f5b9662114610637578063f8048d8f14610657578063fcfff16f14610677578063fe2c7fee1461069857600080fd5b8063b88d4fde1461056d578063bee6348a1461058d578063c87b56dd146105ae578063e985e9c5146105ce57600080fd5b806395d89b41116100e757806395d89b41146104f05780639e5666cd14610505578063a22cb46514610525578063a475b5dd14610545578063a71bbebe1461055a57600080fd5b806370a082311461047d578063715018a61461049d578063729ad39e146104b25780638da5cb5b146104d257600080fd5b80633006b5431161019b578063453c23101161016a578063453c2310146103e1578063507e094f1461040657806351830227146104235780636352211e1461043d5780636fdca5e01461045d57600080fd5b80633006b543146103795780633ccfd60b1461039957806342842e0e146103a157806344a0d68a146103c157600080fd5b8063081812fc116101e2578063081812fc146102b9578063095ea7b3146102f157806313faede61461031157806318160ddd1461033557806323b872dd1461035957600080fd5b806301ffc9a7146102145780630364d22a14610249578063047fc9aa1461025e57806306fdde0314610297575b600080fd5b34801561022057600080fd5b5061023461022f3660046122f8565b6106b8565b60405190151581526020015b60405180910390f35b61025c610257366004612390565b61070a565b005b34801561026a57600080fd5b5060095461028290600160401b900463ffffffff1681565b60405163ffffffff9091168152602001610240565b3480156102a357600080fd5b506102ac610a5f565b6040516102409190612520565b3480156102c557600080fd5b506102d96102d43660046122e0565b610af1565b6040516001600160a01b039091168152602001610240565b3480156102fd57600080fd5b5061025c61030c36600461225d565b610b86565b34801561031d57600080fd5b5061032760085481565b604051908152602001610240565b34801561034157600080fd5b5060095461028290600160601b900463ffffffff1681565b34801561036557600080fd5b5061025c610374366004612180565b610c9c565b34801561038557600080fd5b5061025c610394366004612376565b610ccd565b61025c610d1f565b3480156103ad57600080fd5b5061025c6103bc366004612180565b610e3d565b3480156103cd57600080fd5b5061025c6103dc3660046122e0565b610e58565b3480156103ed57600080fd5b5060095461028290640100000000900463ffffffff1681565b34801561041257600080fd5b506009546102829063ffffffff1681565b34801561042f57600080fd5b50600c546102349060ff1681565b34801561044957600080fd5b506102d96104583660046122e0565b610e87565b34801561046957600080fd5b5061025c6104783660046122c6565b610efe565b34801561048957600080fd5b5061032761049836600461212d565b610f46565b3480156104a957600080fd5b5061025c610fcd565b3480156104be57600080fd5b5061025c6104cd366004612286565b611003565b3480156104de57600080fd5b506006546001600160a01b03166102d9565b3480156104fc57600080fd5b506102ac61114d565b34801561051157600080fd5b5061025c6105203660046122e0565b61115c565b34801561053157600080fd5b5061025c610540366004612234565b61118b565b34801561055157600080fd5b5061025c61119a565b61025c610568366004612376565b6111d3565b34801561057957600080fd5b5061025c6105883660046121bb565b611424565b34801561059957600080fd5b5060095461023490600160881b900460ff1681565b3480156105ba57600080fd5b506102ac6105c93660046122e0565b611456565b3480156105da57600080fd5b506102346105e936600461214e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062357600080fd5b5061025c61063236600461212d565b6114f0565b34801561064357600080fd5b5061025c6106523660046122c6565b61158b565b34801561066357600080fd5b5061025c610672366004612376565b6115d3565b34801561068357600080fd5b5060095461023490600160801b900460ff1681565b3480156106a457600080fd5b5061025c6106b3366004612330565b611619565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b03198316145b92915050565b8260008163ffffffff161161075b5760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b60448201526064015b60405180910390fd5b60095461076f9063ffffffff166001612623565b63ffffffff168163ffffffff16106107bd5760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b6044820152606401610752565b8063ffffffff166008546107d1919061265f565b3410156108135760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b6044820152606401610752565b60095461082e90600160601b900463ffffffff166001612623565b60095463ffffffff9182169161084e918491600160401b90910416612623565b63ffffffff16106108915760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b6044820152606401610752565b600954336000908152600b602052604090205463ffffffff6401000000009092048216916108c2919084169061260b565b11156109095760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b6044820152606401610752565b600954600160881b900460ff166109555760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b6044820152606401610752565b600a546109985760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b6044820152606401610752565b610a0d83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611656565b610a505760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b6044820152606401610752565b610a598461166c565b50505050565b606060008054610a6e906126c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906126c1565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610752565b506000908152600460205260409020546001600160a01b031690565b6000610b9182610e87565b9050806001600160a01b0316836001600160a01b03161415610bff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610752565b336001600160a01b0382161480610c1b5750610c1b81336105e9565b610c8d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610752565b610c9783836116e5565b505050565b610ca63382611753565b610cc25760405162461bcd60e51b8152600401610752906125ba565b610c9783838361184a565b6006546001600160a01b03163314610cf75760405162461bcd60e51b815260040161075290612585565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6006546001600160a01b03163314610d495760405162461bcd60e51b815260040161075290612585565b600e54479060005b81811015610c97576000600e8281548110610d7c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600f80546001600160a01b03909216916103e8919085908110610dbb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015486610dd1919061265f565b610ddb919061264b565b604051600081818185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b5080610e35816126fc565b915050610d51565b610c9783838360405180602001604052806000815250611424565b6006546001600160a01b03163314610e825760405162461bcd60e51b815260040161075290612585565b600855565b6000818152600260205260408120546001600160a01b0316806107045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610752565b6006546001600160a01b03163314610f285760405162461bcd60e51b815260040161075290612585565b60098054911515600160801b0260ff60801b19909216919091179055565b60006001600160a01b038216610fb15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610752565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ff75760405162461bcd60e51b815260040161075290612585565b61100160006119ea565b565b6006546001600160a01b0316331461102d5760405162461bcd60e51b815260040161075290612585565b60005b63ffffffff8116821115610c975760095463ffffffff600160601b820481169161106491600160401b909104166001612623565b63ffffffff1611156110a85760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b6044820152606401610752565b61113b83838363ffffffff168181106110d157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110e6919061212d565b6009805460089061110390600160401b900463ffffffff16612717565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff1660405180602001604052806000815250611a3c565b8061114581612717565b915050611030565b606060018054610a6e906126c1565b6006546001600160a01b031633146111865760405162461bcd60e51b815260040161075290612585565b600a55565b611196338383611a6f565b5050565b6006546001600160a01b031633146111c45760405162461bcd60e51b815260040161075290612585565b600c805460ff19166001179055565b8060008163ffffffff161161121f5760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b6044820152606401610752565b6009546112339063ffffffff166001612623565b63ffffffff168163ffffffff16106112815760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b6044820152606401610752565b8063ffffffff16600854611295919061265f565b3410156112d75760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b6044820152606401610752565b6009546112f290600160601b900463ffffffff166001612623565b60095463ffffffff91821691611312918491600160401b90910416612623565b63ffffffff16106113555760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b6044820152606401610752565b600954336000908152600b602052604090205463ffffffff640100000000909204821691611386919084169061260b565b11156113cd5760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b6044820152606401610752565b600954600160801b900460ff16151560011461141b5760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b6044820152606401610752565b6111968261166c565b61142e3383611753565b61144a5760405162461bcd60e51b8152600401610752906125ba565b610a5984848484611b3e565b600954606090600160401b900463ffffffff168211156114a95760405162461bcd60e51b815260206004820152600e60248201526d139bdd081b5a5b9d1959081e595d60921b6044820152606401610752565b600c5460ff166114e557600d6114be83611b71565b6040516020016114cf929190612429565b6040516020818303038152906040529050919050565b60076114be83611b71565b6006546001600160a01b0316331461151a5760405162461bcd60e51b815260040161075290612585565b6001600160a01b03811661157f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610752565b611588816119ea565b50565b6006546001600160a01b031633146115b55760405162461bcd60e51b815260040161075290612585565b60098054911515600160881b0260ff60881b19909216919091179055565b6006546001600160a01b031633146115fd5760405162461bcd60e51b815260040161075290612585565b6009805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b031633146116435760405162461bcd60e51b815260040161075290612585565b805161119690600d906020840190611f94565b6000826116638584611c8b565b14949350505050565b60005b8163ffffffff168163ffffffff1610156116b7576116a5336009600881819054906101000a900463ffffffff1661110390612717565b806116af81612717565b91505061166f565b50336000908152600b60205260408120805463ffffffff841692906116dd90849061260b565b909155505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171a82610e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610752565b60006117d783610e87565b9050806001600160a01b0316846001600160a01b031614806118125750836001600160a01b031661180784610af1565b6001600160a01b0316145b8061184257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661185d82610e87565b6001600160a01b0316146118c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610752565b6001600160a01b0382166119275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610752565b6119326000826116e5565b6001600160a01b038316600090815260036020526040812080546001929061195b90849061267e565b90915550506001600160a01b038216600090815260036020526040812080546001929061198990849061260b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a468383611d45565b611a536000848484611e87565b610c975760405162461bcd60e51b815260040161075290612533565b816001600160a01b0316836001600160a01b03161415611ad15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610752565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b4984848461184a565b611b5584848484611e87565b610a595760405162461bcd60e51b815260040161075290612533565b606081611b955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbf5780611ba9816126fc565b9150611bb89050600a8361264b565b9150611b99565b60008167ffffffffffffffff811115611be857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c12576020820181803683370190505b5090505b841561184257611c2760018361267e565b9150611c34600a8661273b565b611c3f90603061260b565b60f81b818381518110611c6257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c84600a8661264b565b9450611c16565b600081815b8451811015611d3d576000858281518110611cbb57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611cfd576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d2a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d35816126fc565b915050611c90565b509392505050565b6001600160a01b038216611d9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610752565b6000818152600260205260409020546001600160a01b031615611e005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610752565b6001600160a01b0382166000908152600360205260408120805460019290611e2990849061260b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f8957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecb9033908990889088906004016124e3565b602060405180830381600087803b158015611ee557600080fd5b505af1925050508015611f15575060408051601f3d908101601f19168201909252611f1291810190612314565b60015b611f6f573d808015611f43576040519150601f19603f3d011682016040523d82523d6000602084013e611f48565b606091505b508051611f675760405162461bcd60e51b815260040161075290612533565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611842565b506001949350505050565b828054611fa0906126c1565b90600052602060002090601f016020900481019282611fc25760008555612008565b82601f10611fdb57805160ff1916838001178555612008565b82800160010185558215612008579182015b82811115612008578251825591602001919060010190611fed565b50612014929150612018565b5090565b5b808211156120145760008155600101612019565b600067ffffffffffffffff808411156120485761204861277b565b604051601f8501601f19908116603f011681019082821181831017156120705761207061277b565b8160405280935085815286868601111561208957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120ba57600080fd5b919050565b60008083601f8401126120d0578081fd5b50813567ffffffffffffffff8111156120e7578182fd5b6020830191508360208260051b850101111561210257600080fd5b9250929050565b803580151581146120ba57600080fd5b803563ffffffff811681146120ba57600080fd5b60006020828403121561213e578081fd5b612147826120a3565b9392505050565b60008060408385031215612160578081fd5b612169836120a3565b9150612177602084016120a3565b90509250929050565b600080600060608486031215612194578081fd5b61219d846120a3565b92506121ab602085016120a3565b9150604084013590509250925092565b600080600080608085870312156121d0578081fd5b6121d9856120a3565b93506121e7602086016120a3565b925060408501359150606085013567ffffffffffffffff811115612209578182fd5b8501601f81018713612219578182fd5b6122288782356020840161202d565b91505092959194509250565b60008060408385031215612246578182fd5b61224f836120a3565b915061217760208401612109565b6000806040838503121561226f578182fd5b612278836120a3565b946020939093013593505050565b60008060208385031215612298578182fd5b823567ffffffffffffffff8111156122ae578283fd5b6122ba858286016120bf565b90969095509350505050565b6000602082840312156122d7578081fd5b61214782612109565b6000602082840312156122f1578081fd5b5035919050565b600060208284031215612309578081fd5b813561214781612791565b600060208284031215612325578081fd5b815161214781612791565b600060208284031215612341578081fd5b813567ffffffffffffffff811115612357578182fd5b8201601f81018413612367578182fd5b6118428482356020840161202d565b600060208284031215612387578081fd5b61214782612119565b6000806000604084860312156123a4578081fd5b6123ad84612119565b9250602084013567ffffffffffffffff8111156123c8578182fd5b6123d4868287016120bf565b9497909650939450505050565b600081518084526123f9816020860160208601612695565b601f01601f19169290920160200192915050565b6000815161241f818560208601612695565b9290920192915050565b600080845482600182811c91508083168061244557607f831692505b602080841082141561246557634e487b7160e01b87526022600452602487fd5b818015612479576001811461248a576124b6565b60ff198616895284890196506124b6565b60008b815260209020885b868110156124ae5781548b820152908501908301612495565b505084890196505b5050505050506124da6124c9828661240d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612516908301846123e1565b9695505050505050565b60208152600061214760208301846123e1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561261e5761261e61274f565b500190565b600063ffffffff8083168185168083038211156126425761264261274f565b01949350505050565b60008261265a5761265a612765565b500490565b60008160001904831182151516156126795761267961274f565b500290565b6000828210156126905761269061274f565b500390565b60005b838110156126b0578181015183820152602001612698565b83811115610a595750506000910152565b600181811c908216806126d557607f821691505b602082108114156126f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127105761271061274f565b5060010190565b600063ffffffff808316818114156127315761273161274f565b6001019392505050565b60008261274a5761274a612765565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461158857600080fdfea2646970667358221220c03315f5d34721d9f17c67572369e10dd20480b12da7978077b91f901426f98164736f6c63430008040033697066733a2f2f516d56504b69794269567138736e333274376b664e70364b61366732384e414c5778687939344b71567a47436b662f00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6444447863537a617245417a6a58566a3678446a335544484a6a447a7131474c776253355968734842625a572f00000000000000000000000000000000000000000000000000000000000000000000000000000000000e5969656c6420556e6976657273650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007504c414e45545300000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063f2fde38b1161006f578063f2fde38b14610617578063f5b9662114610637578063f8048d8f14610657578063fcfff16f14610677578063fe2c7fee1461069857600080fd5b8063b88d4fde1461056d578063bee6348a1461058d578063c87b56dd146105ae578063e985e9c5146105ce57600080fd5b806395d89b41116100e757806395d89b41146104f05780639e5666cd14610505578063a22cb46514610525578063a475b5dd14610545578063a71bbebe1461055a57600080fd5b806370a082311461047d578063715018a61461049d578063729ad39e146104b25780638da5cb5b146104d257600080fd5b80633006b5431161019b578063453c23101161016a578063453c2310146103e1578063507e094f1461040657806351830227146104235780636352211e1461043d5780636fdca5e01461045d57600080fd5b80633006b543146103795780633ccfd60b1461039957806342842e0e146103a157806344a0d68a146103c157600080fd5b8063081812fc116101e2578063081812fc146102b9578063095ea7b3146102f157806313faede61461031157806318160ddd1461033557806323b872dd1461035957600080fd5b806301ffc9a7146102145780630364d22a14610249578063047fc9aa1461025e57806306fdde0314610297575b600080fd5b34801561022057600080fd5b5061023461022f3660046122f8565b6106b8565b60405190151581526020015b60405180910390f35b61025c610257366004612390565b61070a565b005b34801561026a57600080fd5b5060095461028290600160401b900463ffffffff1681565b60405163ffffffff9091168152602001610240565b3480156102a357600080fd5b506102ac610a5f565b6040516102409190612520565b3480156102c557600080fd5b506102d96102d43660046122e0565b610af1565b6040516001600160a01b039091168152602001610240565b3480156102fd57600080fd5b5061025c61030c36600461225d565b610b86565b34801561031d57600080fd5b5061032760085481565b604051908152602001610240565b34801561034157600080fd5b5060095461028290600160601b900463ffffffff1681565b34801561036557600080fd5b5061025c610374366004612180565b610c9c565b34801561038557600080fd5b5061025c610394366004612376565b610ccd565b61025c610d1f565b3480156103ad57600080fd5b5061025c6103bc366004612180565b610e3d565b3480156103cd57600080fd5b5061025c6103dc3660046122e0565b610e58565b3480156103ed57600080fd5b5060095461028290640100000000900463ffffffff1681565b34801561041257600080fd5b506009546102829063ffffffff1681565b34801561042f57600080fd5b50600c546102349060ff1681565b34801561044957600080fd5b506102d96104583660046122e0565b610e87565b34801561046957600080fd5b5061025c6104783660046122c6565b610efe565b34801561048957600080fd5b5061032761049836600461212d565b610f46565b3480156104a957600080fd5b5061025c610fcd565b3480156104be57600080fd5b5061025c6104cd366004612286565b611003565b3480156104de57600080fd5b506006546001600160a01b03166102d9565b3480156104fc57600080fd5b506102ac61114d565b34801561051157600080fd5b5061025c6105203660046122e0565b61115c565b34801561053157600080fd5b5061025c610540366004612234565b61118b565b34801561055157600080fd5b5061025c61119a565b61025c610568366004612376565b6111d3565b34801561057957600080fd5b5061025c6105883660046121bb565b611424565b34801561059957600080fd5b5060095461023490600160881b900460ff1681565b3480156105ba57600080fd5b506102ac6105c93660046122e0565b611456565b3480156105da57600080fd5b506102346105e936600461214e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062357600080fd5b5061025c61063236600461212d565b6114f0565b34801561064357600080fd5b5061025c6106523660046122c6565b61158b565b34801561066357600080fd5b5061025c610672366004612376565b6115d3565b34801561068357600080fd5b5060095461023490600160801b900460ff1681565b3480156106a457600080fd5b5061025c6106b3366004612330565b611619565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b03198316145b92915050565b8260008163ffffffff161161075b5760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b60448201526064015b60405180910390fd5b60095461076f9063ffffffff166001612623565b63ffffffff168163ffffffff16106107bd5760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b6044820152606401610752565b8063ffffffff166008546107d1919061265f565b3410156108135760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b6044820152606401610752565b60095461082e90600160601b900463ffffffff166001612623565b60095463ffffffff9182169161084e918491600160401b90910416612623565b63ffffffff16106108915760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b6044820152606401610752565b600954336000908152600b602052604090205463ffffffff6401000000009092048216916108c2919084169061260b565b11156109095760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b6044820152606401610752565b600954600160881b900460ff166109555760405162461bcd60e51b815260206004820152601060248201526f283932b9b0b632903737ba1037b832b760811b6044820152606401610752565b600a546109985760405162461bcd60e51b815260206004820152601160248201527050726573616c65206e6f7420726561647960781b6044820152606401610752565b610a0d83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611656565b610a505760405162461bcd60e51b81526020600482015260146024820152732737ba103090383932b9b0b6329036b2b6b132b960611b6044820152606401610752565b610a598461166c565b50505050565b606060008054610a6e906126c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906126c1565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610752565b506000908152600460205260409020546001600160a01b031690565b6000610b9182610e87565b9050806001600160a01b0316836001600160a01b03161415610bff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610752565b336001600160a01b0382161480610c1b5750610c1b81336105e9565b610c8d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610752565b610c9783836116e5565b505050565b610ca63382611753565b610cc25760405162461bcd60e51b8152600401610752906125ba565b610c9783838361184a565b6006546001600160a01b03163314610cf75760405162461bcd60e51b815260040161075290612585565b6009805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6006546001600160a01b03163314610d495760405162461bcd60e51b815260040161075290612585565b600e54479060005b81811015610c97576000600e8281548110610d7c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600f80546001600160a01b03909216916103e8919085908110610dbb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015486610dd1919061265f565b610ddb919061264b565b604051600081818185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b5080610e35816126fc565b915050610d51565b610c9783838360405180602001604052806000815250611424565b6006546001600160a01b03163314610e825760405162461bcd60e51b815260040161075290612585565b600855565b6000818152600260205260408120546001600160a01b0316806107045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610752565b6006546001600160a01b03163314610f285760405162461bcd60e51b815260040161075290612585565b60098054911515600160801b0260ff60801b19909216919091179055565b60006001600160a01b038216610fb15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610752565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ff75760405162461bcd60e51b815260040161075290612585565b61100160006119ea565b565b6006546001600160a01b0316331461102d5760405162461bcd60e51b815260040161075290612585565b60005b63ffffffff8116821115610c975760095463ffffffff600160601b820481169161106491600160401b909104166001612623565b63ffffffff1611156110a85760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b6044820152606401610752565b61113b83838363ffffffff168181106110d157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110e6919061212d565b6009805460089061110390600160401b900463ffffffff16612717565b91906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff1660405180602001604052806000815250611a3c565b8061114581612717565b915050611030565b606060018054610a6e906126c1565b6006546001600160a01b031633146111865760405162461bcd60e51b815260040161075290612585565b600a55565b611196338383611a6f565b5050565b6006546001600160a01b031633146111c45760405162461bcd60e51b815260040161075290612585565b600c805460ff19166001179055565b8060008163ffffffff161161121f5760405162461bcd60e51b815260206004820152601260248201527126b4b73a1030ba103632b0b9ba1037b7329760711b6044820152606401610752565b6009546112339063ffffffff166001612623565b63ffffffff168163ffffffff16106112815760405162461bcd60e51b815260206004820152601160248201527026b0bc1036b4b73a103932b0b1b432b21760791b6044820152606401610752565b8063ffffffff16600854611295919061265f565b3410156112d75760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b410333ab7321760811b6044820152606401610752565b6009546112f290600160601b900463ffffffff166001612623565b60095463ffffffff91821691611312918491600160401b90910416612623565b63ffffffff16106113555760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d081cdbdb19081bdd5d609a1b6044820152606401610752565b600954336000908152600b602052604090205463ffffffff640100000000909204821691611386919084169061260b565b11156113cd5760405162461bcd60e51b815260206004820152601660248201527513585e081d1bdd185b081b5a5b9d081c995858da195960521b6044820152606401610752565b600954600160801b900460ff16151560011461141b5760405162461bcd60e51b815260206004820152600d60248201526c26b4b73a103737ba1037b832b760991b6044820152606401610752565b6111968261166c565b61142e3383611753565b61144a5760405162461bcd60e51b8152600401610752906125ba565b610a5984848484611b3e565b600954606090600160401b900463ffffffff168211156114a95760405162461bcd60e51b815260206004820152600e60248201526d139bdd081b5a5b9d1959081e595d60921b6044820152606401610752565b600c5460ff166114e557600d6114be83611b71565b6040516020016114cf929190612429565b6040516020818303038152906040529050919050565b60076114be83611b71565b6006546001600160a01b0316331461151a5760405162461bcd60e51b815260040161075290612585565b6001600160a01b03811661157f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610752565b611588816119ea565b50565b6006546001600160a01b031633146115b55760405162461bcd60e51b815260040161075290612585565b60098054911515600160881b0260ff60881b19909216919091179055565b6006546001600160a01b031633146115fd5760405162461bcd60e51b815260040161075290612585565b6009805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b031633146116435760405162461bcd60e51b815260040161075290612585565b805161119690600d906020840190611f94565b6000826116638584611c8b565b14949350505050565b60005b8163ffffffff168163ffffffff1610156116b7576116a5336009600881819054906101000a900463ffffffff1661110390612717565b806116af81612717565b91505061166f565b50336000908152600b60205260408120805463ffffffff841692906116dd90849061260b565b909155505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061171a82610e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610752565b60006117d783610e87565b9050806001600160a01b0316846001600160a01b031614806118125750836001600160a01b031661180784610af1565b6001600160a01b0316145b8061184257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661185d82610e87565b6001600160a01b0316146118c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610752565b6001600160a01b0382166119275760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610752565b6119326000826116e5565b6001600160a01b038316600090815260036020526040812080546001929061195b90849061267e565b90915550506001600160a01b038216600090815260036020526040812080546001929061198990849061260b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a468383611d45565b611a536000848484611e87565b610c975760405162461bcd60e51b815260040161075290612533565b816001600160a01b0316836001600160a01b03161415611ad15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610752565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b4984848461184a565b611b5584848484611e87565b610a595760405162461bcd60e51b815260040161075290612533565b606081611b955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbf5780611ba9816126fc565b9150611bb89050600a8361264b565b9150611b99565b60008167ffffffffffffffff811115611be857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c12576020820181803683370190505b5090505b841561184257611c2760018361267e565b9150611c34600a8661273b565b611c3f90603061260b565b60f81b818381518110611c6257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c84600a8661264b565b9450611c16565b600081815b8451811015611d3d576000858281518110611cbb57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611cfd576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611d2a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611d35816126fc565b915050611c90565b509392505050565b6001600160a01b038216611d9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610752565b6000818152600260205260409020546001600160a01b031615611e005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610752565b6001600160a01b0382166000908152600360205260408120805460019290611e2990849061260b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f8957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecb9033908990889088906004016124e3565b602060405180830381600087803b158015611ee557600080fd5b505af1925050508015611f15575060408051601f3d908101601f19168201909252611f1291810190612314565b60015b611f6f573d808015611f43576040519150601f19603f3d011682016040523d82523d6000602084013e611f48565b606091505b508051611f675760405162461bcd60e51b815260040161075290612533565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611842565b506001949350505050565b828054611fa0906126c1565b90600052602060002090601f016020900481019282611fc25760008555612008565b82601f10611fdb57805160ff1916838001178555612008565b82800160010185558215612008579182015b82811115612008578251825591602001919060010190611fed565b50612014929150612018565b5090565b5b808211156120145760008155600101612019565b600067ffffffffffffffff808411156120485761204861277b565b604051601f8501601f19908116603f011681019082821181831017156120705761207061277b565b8160405280935085815286868601111561208957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120ba57600080fd5b919050565b60008083601f8401126120d0578081fd5b50813567ffffffffffffffff8111156120e7578182fd5b6020830191508360208260051b850101111561210257600080fd5b9250929050565b803580151581146120ba57600080fd5b803563ffffffff811681146120ba57600080fd5b60006020828403121561213e578081fd5b612147826120a3565b9392505050565b60008060408385031215612160578081fd5b612169836120a3565b9150612177602084016120a3565b90509250929050565b600080600060608486031215612194578081fd5b61219d846120a3565b92506121ab602085016120a3565b9150604084013590509250925092565b600080600080608085870312156121d0578081fd5b6121d9856120a3565b93506121e7602086016120a3565b925060408501359150606085013567ffffffffffffffff811115612209578182fd5b8501601f81018713612219578182fd5b6122288782356020840161202d565b91505092959194509250565b60008060408385031215612246578182fd5b61224f836120a3565b915061217760208401612109565b6000806040838503121561226f578182fd5b612278836120a3565b946020939093013593505050565b60008060208385031215612298578182fd5b823567ffffffffffffffff8111156122ae578283fd5b6122ba858286016120bf565b90969095509350505050565b6000602082840312156122d7578081fd5b61214782612109565b6000602082840312156122f1578081fd5b5035919050565b600060208284031215612309578081fd5b813561214781612791565b600060208284031215612325578081fd5b815161214781612791565b600060208284031215612341578081fd5b813567ffffffffffffffff811115612357578182fd5b8201601f81018413612367578182fd5b6118428482356020840161202d565b600060208284031215612387578081fd5b61214782612119565b6000806000604084860312156123a4578081fd5b6123ad84612119565b9250602084013567ffffffffffffffff8111156123c8578182fd5b6123d4868287016120bf565b9497909650939450505050565b600081518084526123f9816020860160208601612695565b601f01601f19169290920160200192915050565b6000815161241f818560208601612695565b9290920192915050565b600080845482600182811c91508083168061244557607f831692505b602080841082141561246557634e487b7160e01b87526022600452602487fd5b818015612479576001811461248a576124b6565b60ff198616895284890196506124b6565b60008b815260209020885b868110156124ae5781548b820152908501908301612495565b505084890196505b5050505050506124da6124c9828661240d565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612516908301846123e1565b9695505050505050565b60208152600061214760208301846123e1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561261e5761261e61274f565b500190565b600063ffffffff8083168185168083038211156126425761264261274f565b01949350505050565b60008261265a5761265a612765565b500490565b60008160001904831182151516156126795761267961274f565b500290565b6000828210156126905761269061274f565b500390565b60005b838110156126b0578181015183820152602001612698565b83811115610a595750506000910152565b600181811c908216806126d557607f821691505b602082108114156126f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127105761271061274f565b5060010190565b600063ffffffff808316818114156127315761273161274f565b6001019392505050565b60008261274a5761274a612765565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461158857600080fdfea2646970667358221220c03315f5d34721d9f17c67572369e10dd20480b12da7978077b91f901426f98164736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6444447863537a617245417a6a58566a3678446a335544484a6a447a7131474c776253355968734842625a572f00000000000000000000000000000000000000000000000000000000000000000000000000000000000e5969656c6420556e6976657273650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007504c414e45545300000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmdDDxcSzarEAzjXVj6xDj3UDHJjDzq1GLwbS5YhsHBbZW/
Arg [1] : _name (string): Yield Universe
Arg [2] : _symbol (string): PLANETS
Arg [3] : _totalSupply (uint32): 5555
Arg [4] : _cost (uint256): 100000000000000000
Arg [5] : _open (bool): False

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [4] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [7] : 697066733a2f2f516d6444447863537a617245417a6a58566a3678446a335544
Arg [8] : 484a6a447a7131474c776253355968734842625a572f00000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [10] : 5969656c6420556e697665727365000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [12] : 504c414e45545300000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38609:3997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21320:305;;;;;;;;;;-1:-1:-1;21320:305:0;;;;;:::i;:::-;;:::i;:::-;;;9846:14:1;;9839:22;9821:41;;9809:2;9794:18;21320:305:0;;;;;;;;41100:425;;;;;;:::i;:::-;;:::i;:::-;;38801:24;;;;;;;;;;-1:-1:-1;38801:24:0;;;;-1:-1:-1;;;38801:24:0;;;;;;;;;20217:10:1;20205:23;;;20187:42;;20175:2;20160:18;38801:24:0;20142:93:1;22265:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23824:221::-;;;;;;;;;;-1:-1:-1;23824:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9144:32:1;;;9126:51;;9114:2;9099:18;23824:221:0;9081:102:1;23347:411:0;;;;;;;;;;-1:-1:-1;23347:411:0;;;;;:::i;:::-;;:::i;38697:31::-;;;;;;;;;;;;;;;;;;;20007:25:1;;;19995:2;19980:18;38697:31:0;19962:76:1;38830:32:0;;;;;;;;;;-1:-1:-1;38830:32:0;;;;-1:-1:-1;;;38830:32:0;;;;;;24574:339;;;;;;;;;;-1:-1:-1;24574:339:0;;;;;:::i;:::-;;:::i;39831:87::-;;;;;;;;;;-1:-1:-1;39831:87:0;;;;;:::i;:::-;;:::i;40593:325::-;;;:::i;24984:185::-;;;;;;;;;;-1:-1:-1;24984:185:0;;;;;:::i;:::-;;:::i;39674:74::-;;;;;;;;;;-1:-1:-1;39674:74:0;;;;;:::i;:::-;;:::i;38766:30::-;;;;;;;;;;-1:-1:-1;38766:30:0;;;;;;;;;;;38733:28;;;;;;;;;;-1:-1:-1;38733:28:0;;;;;;;;39021;;;;;;;;;;-1:-1:-1;39021:28:0;;;;;;;;21959:239;;;;;;;;;;-1:-1:-1;21959:239:0;;;;;:::i;:::-;;:::i;39754:71::-;;;;;;;;;;-1:-1:-1;39754:71:0;;;;;:::i;:::-;;:::i;21689:208::-;;;;;;;;;;-1:-1:-1;21689:208:0;;;;;:::i;:::-;;:::i;35477:103::-;;;;;;;;;;;;;:::i;40372:215::-;;;;;;;;;;-1:-1:-1;40372:215:0;;;;;:::i;:::-;;:::i;34826:87::-;;;;;;;;;;-1:-1:-1;34899:6:0;;-1:-1:-1;;;;;34899:6:0;34826:87;;22434:104;;;;;;;;;;;;;:::i;40104:90::-;;;;;;;;;;-1:-1:-1;40104:90:0;;;;;:::i;:::-;;:::i;24117:155::-;;;;;;;;;;-1:-1:-1;24117:155:0;;;;;:::i;:::-;;:::i;40303:63::-;;;;;;;;;;;;;:::i;40952:142::-;;;;;;:::i;:::-;;:::i;25240:328::-;;;;;;;;;;-1:-1:-1;25240:328:0;;;;;:::i;:::-;;:::i;38896:31::-;;;;;;;;;;-1:-1:-1;38896:31:0;;;;-1:-1:-1;;;38896:31:0;;;;;;41751:416;;;;;;;;;;-1:-1:-1;41751:416:0;;;;;:::i;:::-;;:::i;24343:164::-;;;;;;;;;;-1:-1:-1;24343:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24464:25:0;;;24440:4;24464:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24343:164;35735:201;;;;;;;;;;-1:-1:-1;35735:201:0;;;;;:::i;:::-;;:::i;40013:85::-;;;;;;;;;;-1:-1:-1;40013:85:0;;;;;:::i;:::-;;:::i;39924:83::-;;;;;;;;;;-1:-1:-1;39924:83:0;;;;;:::i;:::-;;:::i;38867:24::-;;;;;;;;;;-1:-1:-1;38867:24:0;;;;-1:-1:-1;;;38867:24:0;;;;;;40200:97;;;;;;;;;;-1:-1:-1;40200:97:0;;;;;:::i;:::-;;:::i;21320:305::-;21422:4;-1:-1:-1;;;;;;21459:40:0;;-1:-1:-1;;;21459:40:0;;:105;;-1:-1:-1;;;;;;;21516:48:0;;-1:-1:-1;;;21516:48:0;21459:105;:158;;;-1:-1:-1;;;;;;;;;;19869:40:0;;;21581:36;21439:178;21320:305;-1:-1:-1;;21320:305:0:o;41100:425::-;41207:5;42265:1;42257:5;:9;;;42249:40;;;;-1:-1:-1;;;42249:40:0;;19716:2:1;42249:40:0;;;19698:21:1;19755:2;19735:18;;;19728:30;-1:-1:-1;;;19774:18:1;;;19767:48;19832:18;;42249:40:0;;;;;;;;;42312:10;;:14;;:10;;;:14;:::i;:::-;42304:22;;:5;:22;;;42296:52;;;;-1:-1:-1;;;42296:52:0;;19370:2:1;42296:52:0;;;19352:21:1;19409:2;19389:18;;;19382:30;-1:-1:-1;;;19428:18:1;;;19421:47;19485:18;;42296:52:0;19342:167:1;42296:52:0;42383:5;42376:12;;:4;;:12;;;;:::i;:::-;42363:9;:25;;42355:54;;;;-1:-1:-1;;;42355:54:0;;19025:2:1;42355:54:0;;;19007:21:1;19064:2;19044:18;;;19037:30;-1:-1:-1;;;19083:18:1;;;19076:46;19139:18;;42355:54:0;18997:166:1;42355:54:0;42441:11;;:15;;-1:-1:-1;;;42441:11:0;;;;42455:1;42441:15;:::i;:::-;42424:6;;:32;;;;;:14;;42433:5;;-1:-1:-1;;;42424:6:0;;;;:14;:::i;:::-;:32;;;42416:58;;;;-1:-1:-1;;;42416:58:0;;17176:2:1;42416:58:0;;;17158:21:1;17215:2;17195:18;;;17188:30;-1:-1:-1;;;17234:18:1;;;17227:43;17287:18;;42416:58:0;17148:163:1;42416:58:0;42537:12;;42514:10;42497:28;;;;:16;:28;;;;;;42537:12;;;;;;;;42497:36;;;;;;;:::i;:::-;:52;;42481:108;;;;-1:-1:-1;;;42481:108:0;;12520:2:1;42481:108:0;;;12502:21:1;12559:2;12539:18;;;12532:30;-1:-1:-1;;;12578:18:1;;;12571:52;12640:18;;42481:108:0;12492:172:1;42481:108:0;41232:11:::1;::::0;-1:-1:-1;;;41232:11:0;::::1;;;41224:40;;;::::0;-1:-1:-1;;;41224:40:0;;18262:2:1;41224:40:0::1;::::0;::::1;18244:21:1::0;18301:2;18281:18;;;18274:30;-1:-1:-1;;;18320:18:1;;;18313:46;18376:18;;41224:40:0::1;18234:166:1::0;41224:40:0::1;41279:10;::::0;41271:46:::1;;;::::0;-1:-1:-1;;;41271:46:0;;10299:2:1;41271:46:0::1;::::0;::::1;10281:21:1::0;10338:2;10318:18;;;10311:30;-1:-1:-1;;;10357:18:1;;;10350:47;10414:18;;41271:46:0::1;10271:167:1::0;41271:46:0::1;41340:114;41369:5;;41340:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;41385:10:0::1;::::0;41416:28:::1;::::0;-1:-1:-1;;41433:10:0::1;7123:2:1::0;7119:15;7115:53;41416:28:0::1;::::0;::::1;7103:66:1::0;41385:10:0;;-1:-1:-1;7185:12:1;;;-1:-1:-1;41416:28:0::1;;;;;;;;;;;;41406:39;;;;;;41340:18;:114::i;:::-;41324:168;;;::::0;-1:-1:-1;;;41324:168:0;;12171:2:1;41324:168:0::1;::::0;::::1;12153:21:1::0;12210:2;12190:18;;;12183:30;-1:-1:-1;;;12229:18:1;;;12222:50;12289:18;;41324:168:0::1;12143:170:1::0;41324:168:0::1;41501:18;41513:5;41501:11;:18::i;:::-;41100:425:::0;;;;:::o;22265:100::-;22319:13;22352:5;22345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22265:100;:::o;23824:221::-;23900:7;27167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27167:16:0;23920:73;;;;-1:-1:-1;;;23920:73:0;;15992:2:1;23920:73:0;;;15974:21:1;16031:2;16011:18;;;16004:30;16070:34;16050:18;;;16043:62;-1:-1:-1;;;16121:18:1;;;16114:42;16173:19;;23920:73:0;15964:234:1;23920:73:0;-1:-1:-1;24013:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24013:24:0;;23824:221::o;23347:411::-;23428:13;23444:23;23459:7;23444:14;:23::i;:::-;23428:39;;23492:5;-1:-1:-1;;;;;23486:11:0;:2;-1:-1:-1;;;;;23486:11:0;;;23478:57;;;;-1:-1:-1;;;23478:57:0;;17518:2:1;23478:57:0;;;17500:21:1;17557:2;17537:18;;;17530:30;17596:34;17576:18;;;17569:62;-1:-1:-1;;;17647:18:1;;;17640:31;17688:19;;23478:57:0;17490:223:1;23478:57:0;16627:10;-1:-1:-1;;;;;23570:21:0;;;;:62;;-1:-1:-1;23595:37:0;23612:5;16627:10;24343:164;:::i;23595:37::-;23548:168;;;;-1:-1:-1;;;23548:168:0;;14385:2:1;23548:168:0;;;14367:21:1;14424:2;14404:18;;;14397:30;14463:34;14443:18;;;14436:62;14534:26;14514:18;;;14507:54;14578:19;;23548:168:0;14357:246:1;23548:168:0;23729:21;23738:2;23742:7;23729:8;:21::i;:::-;23347:411;;;:::o;24574:339::-;24769:41;16627:10;24802:7;24769:18;:41::i;:::-;24761:103;;;;-1:-1:-1;;;24761:103:0;;;;;;;:::i;:::-;24877:28;24887:4;24893:2;24897:7;24877:9;:28::i;39831:87::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;39893:12:::1;:19:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;39893:19:0;;::::1;::::0;;;::::1;::::0;;39831:87::o;40593:325::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;40706:7:::1;:14:::0;40663:21:::1;::::0;40645:15:::1;40729:184;40753:4;40749:1;:8;40729:184;;;40774:12;40800:7;40808:1;40800:10;;;;;;-1:-1:-1::0;;;40800:10:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40845:11:::1;:14:::0;;-1:-1:-1;;;;;40800:10:0;;::::1;::::0;40863:4:::1;::::0;40845:11;40857:1;;40845:14;::::1;;;-1:-1:-1::0;;;40845:14:0::1;;;;;;;;;;;;;;;;;40835:7;:24;;;;:::i;:::-;40834:33;;;;:::i;:::-;40792:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40773:107;;;40897:7;40889:16;;;::::0;::::1;;-1:-1:-1::0;40759:3:0;::::1;::::0;::::1;:::i;:::-;;;;40729:184;;24984:185:::0;25122:39;25139:4;25145:2;25149:7;25122:39;;;;;;;;;;;;:16;:39::i;39674:74::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;39730:4:::1;:12:::0;39674:74::o;21959:239::-;22031:7;22067:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22067:16:0;22102:19;22094:73;;;;-1:-1:-1;;;22094:73:0;;15221:2:1;22094:73:0;;;15203:21:1;15260:2;15240:18;;;15233:30;15299:34;15279:18;;;15272:62;-1:-1:-1;;;15350:18:1;;;15343:39;15399:19;;22094:73:0;15193:231:1;39754:71:0;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;39807:4:::1;:12:::0;;;::::1;;-1:-1:-1::0;;;39807:12:0::1;-1:-1:-1::0;;;;39807:12:0;;::::1;::::0;;;::::1;::::0;;39754:71::o;21689:208::-;21761:7;-1:-1:-1;;;;;21789:19:0;;21781:74;;;;-1:-1:-1;;;21781:74:0;;14810:2:1;21781:74:0;;;14792:21:1;14849:2;14829:18;;;14822:30;14888:34;14868:18;;;14861:62;-1:-1:-1;;;14939:18:1;;;14932:40;14989:19;;21781:74:0;14782:232:1;21781:74:0;-1:-1:-1;;;;;;21873:16:0;;;;;:9;:16;;;;;;;21689:208::o;35477:103::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;35542:30:::1;35569:1;35542:18;:30::i;:::-;35477:103::o:0;40372:215::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;40441:8:::1;40436:146;40455:13;::::0;::::1;::::0;-1:-1:-1;40436:146:0::1;;;40506:11;::::0;::::1;-1:-1:-1::0;;;40506:11:0;::::1;::::0;::::1;::::0;40492:10:::1;::::0;-1:-1:-1;;;40496:6:0;;::::1;;40492:1;:10;:::i;:::-;:25;;;;40484:51;;;::::0;-1:-1:-1;;;40484:51:0;;13630:2:1;40484:51:0::1;::::0;::::1;13612:21:1::0;13669:2;13649:18;;;13642:30;-1:-1:-1;;;13688:18:1;;;13681:43;13741:18;;40484:51:0::1;13602:163:1::0;40484:51:0::1;40544:30;40554:2;;40557:1;40554:5;;;;;;;-1:-1:-1::0;;;40554:5:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40563:6;40561:8:::0;;40563:6:::1;::::0;40561:8:::1;::::0;-1:-1:-1;;;40561:8:0;::::1;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;40544:30;;;;;;;;;;;;;::::0;:9:::1;:30::i;:::-;40470:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40436:146;;22434:104:::0;22490:13;22523:7;22516:14;;;;;:::i;40104:90::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;40171:10:::1;:17:::0;40104:90::o;24117:155::-;24212:52;16627:10;24245:8;24255;24212:18;:52::i;:::-;24117:155;;:::o;40303:63::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;40345:8:::1;:15:::0;;-1:-1:-1;;40345:15:0::1;40356:4;40345:15;::::0;;40303:63::o;40952:142::-;41011:5;42265:1;42257:5;:9;;;42249:40;;;;-1:-1:-1;;;42249:40:0;;19716:2:1;42249:40:0;;;19698:21:1;19755:2;19735:18;;;19728:30;-1:-1:-1;;;19774:18:1;;;19767:48;19832:18;;42249:40:0;19688:168:1;42249:40:0;42312:10;;:14;;:10;;;:14;:::i;:::-;42304:22;;:5;:22;;;42296:52;;;;-1:-1:-1;;;42296:52:0;;19370:2:1;42296:52:0;;;19352:21:1;19409:2;19389:18;;;19382:30;-1:-1:-1;;;19428:18:1;;;19421:47;19485:18;;42296:52:0;19342:167:1;42296:52:0;42383:5;42376:12;;:4;;:12;;;;:::i;:::-;42363:9;:25;;42355:54;;;;-1:-1:-1;;;42355:54:0;;19025:2:1;42355:54:0;;;19007:21:1;19064:2;19044:18;;;19037:30;-1:-1:-1;;;19083:18:1;;;19076:46;19139:18;;42355:54:0;18997:166:1;42355:54:0;42441:11;;:15;;-1:-1:-1;;;42441:11:0;;;;42455:1;42441:15;:::i;:::-;42424:6;;:32;;;;;:14;;42433:5;;-1:-1:-1;;;42424:6:0;;;;:14;:::i;:::-;:32;;;42416:58;;;;-1:-1:-1;;;42416:58:0;;17176:2:1;42416:58:0;;;17158:21:1;17215:2;17195:18;;;17188:30;-1:-1:-1;;;17234:18:1;;;17227:43;17287:18;;42416:58:0;17148:163:1;42416:58:0;42537:12;;42514:10;42497:28;;;;:16;:28;;;;;;42537:12;;;;;;;;42497:36;;;;;;;:::i;:::-;:52;;42481:108;;;;-1:-1:-1;;;42481:108:0;;12520:2:1;42481:108:0;;;12502:21:1;12559:2;12539:18;;;12532:30;-1:-1:-1;;;12578:18:1;;;12571:52;12640:18;;42481:108:0;12492:172:1;42481:108:0;41033:4:::1;::::0;-1:-1:-1;;;41033:4:0;::::1;;;:12;;41041:4;41033:12;41025:38;;;::::0;-1:-1:-1;;;41025:38:0;;17920:2:1;41025:38:0::1;::::0;::::1;17902:21:1::0;17959:2;17939:18;;;17932:30;-1:-1:-1;;;17978:18:1;;;17971:43;18031:18;;41025:38:0::1;17892:163:1::0;41025:38:0::1;41070:18;41082:5;41070:11;:18::i;25240:328::-:0;25415:41;16627:10;25448:7;25415:18;:41::i;:::-;25407:103;;;;-1:-1:-1;;;25407:103:0;;;;;;;:::i;:::-;25521:39;25535:4;25541:2;25545:7;25554:5;25521:13;:39::i;41751:416::-;41882:6;;41837:13;;-1:-1:-1;;;41882:6:0;;;;41870:18;;;41862:45;;;;-1:-1:-1;;;41862:45:0;;11064:2:1;41862:45:0;;;11046:21:1;11103:2;11083:18;;;11076:30;-1:-1:-1;;;11122:18:1;;;11115:44;11176:18;;41862:45:0;11036:164:1;41862:45:0;41918:8;;;;41914:155;;41998:14;42014:26;42031:8;42014:16;:26::i;:::-;41981:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41946:115;;41751:416;;;:::o;41914:155::-;42115:7;42124:26;42141:8;42124:16;:26::i;35735:201::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35824:22:0;::::1;35816:73;;;::::0;-1:-1:-1;;;35816:73:0;;11407:2:1;35816:73:0::1;::::0;::::1;11389:21:1::0;11446:2;11426:18;;;11419:30;11485:34;11465:18;;;11458:62;-1:-1:-1;;;11536:18:1;;;11529:36;11582:19;;35816:73:0::1;11379:228:1::0;35816:73:0::1;35900:28;35919:8;35900:18;:28::i;:::-;35735:201:::0;:::o;40013:85::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;40073:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;40073:19:0::1;-1:-1:-1::0;;;;40073:19:0;;::::1;::::0;;;::::1;::::0;;40013:85::o;39924:83::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;39984:10:::1;:17:::0;;-1:-1:-1;;39984:17:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;39924:83::o;40200:97::-;34899:6;;-1:-1:-1;;;;;34899:6:0;16627:10;35046:23;35038:68;;;;-1:-1:-1;;;35038:68:0;;;;;;;:::i;:::-;40270:21;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;37208:190::-:0;37333:4;37386;37357:25;37370:5;37377:4;37357:12;:25::i;:::-;:33;;37208:190;-1:-1:-1;;;;37208:190:0:o;41531:187::-;41587:8;41582:87;41605:5;41601:9;;:1;:9;;;41582:87;;;41626:35;41636:10;41650:6;;41648:8;;;;;;;;;;;;;;:::i;41626:35::-;41612:3;;;;:::i;:::-;;;;41582:87;;;-1:-1:-1;41692:10:0;41675:28;;;;:16;:28;;;;;:37;;;;;;:28;:37;;;;;:::i;:::-;;;;-1:-1:-1;;;41531:187:0:o;31060:174::-;31135:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31135:29:0;-1:-1:-1;;;;;31135:29:0;;;;;;;;:24;;31189:23;31135:24;31189:14;:23::i;:::-;-1:-1:-1;;;;;31180:46:0;;;;;;;;;;;31060:174;;:::o;27372:348::-;27465:4;27167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27167:16:0;27482:73;;;;-1:-1:-1;;;27482:73:0;;13972:2:1;27482:73:0;;;13954:21:1;14011:2;13991:18;;;13984:30;14050:34;14030:18;;;14023:62;-1:-1:-1;;;14101:18:1;;;14094:42;14153:19;;27482:73:0;13944:234:1;27482:73:0;27566:13;27582:23;27597:7;27582:14;:23::i;:::-;27566:39;;27635:5;-1:-1:-1;;;;;27624:16:0;:7;-1:-1:-1;;;;;27624:16:0;;:51;;;;27668:7;-1:-1:-1;;;;;27644:31:0;:20;27656:7;27644:11;:20::i;:::-;-1:-1:-1;;;;;27644:31:0;;27624:51;:87;;;-1:-1:-1;;;;;;24464:25:0;;;24440:4;24464:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27679:32;27616:96;27372:348;-1:-1:-1;;;;27372:348:0:o;30364:578::-;30523:4;-1:-1:-1;;;;;30496:31:0;:23;30511:7;30496:14;:23::i;:::-;-1:-1:-1;;;;;30496:31:0;;30488:85;;;;-1:-1:-1;;;30488:85:0;;16766:2:1;30488:85:0;;;16748:21:1;16805:2;16785:18;;;16778:30;16844:34;16824:18;;;16817:62;-1:-1:-1;;;16895:18:1;;;16888:39;16944:19;;30488:85:0;16738:231:1;30488:85:0;-1:-1:-1;;;;;30592:16:0;;30584:65;;;;-1:-1:-1;;;30584:65:0;;12871:2:1;30584:65:0;;;12853:21:1;12910:2;12890:18;;;12883:30;12949:34;12929:18;;;12922:62;-1:-1:-1;;;13000:18:1;;;12993:34;13044:19;;30584:65:0;12843:226:1;30584:65:0;30766:29;30783:1;30787:7;30766:8;:29::i;:::-;-1:-1:-1;;;;;30808:15:0;;;;;;:9;:15;;;;;:20;;30827:1;;30808:15;:20;;30827:1;;30808:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30839:13:0;;;;;;:9;:13;;;;;:18;;30856:1;;30839:13;:18;;30856:1;;30839:18;:::i;:::-;;;;-1:-1:-1;;30868:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30868:21:0;-1:-1:-1;;;;;30868:21:0;;;;;;;;;30907:27;;30868:16;;30907:27;;;;;;;30364:578;;;:::o;36096:191::-;36189:6;;;-1:-1:-1;;;;;36206:17:0;;;-1:-1:-1;;;;;;36206:17:0;;;;;;;36239:40;;36189:6;;;36206:17;36189:6;;36239:40;;36170:16;;36239:40;36096:191;;:::o;28399:321::-;28529:18;28535:2;28539:7;28529:5;:18::i;:::-;28580:54;28611:1;28615:2;28619:7;28628:5;28580:22;:54::i;:::-;28558:154;;;;-1:-1:-1;;;28558:154:0;;;;;;;:::i;31376:315::-;31531:8;-1:-1:-1;;;;;31522:17:0;:5;-1:-1:-1;;;;;31522:17:0;;;31514:55;;;;-1:-1:-1;;;31514:55:0;;13276:2:1;31514:55:0;;;13258:21:1;13315:2;13295:18;;;13288:30;13354:27;13334:18;;;13327:55;13399:18;;31514:55:0;13248:175:1;31514:55:0;-1:-1:-1;;;;;31580:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31580:46:0;;;;;;;;;;31642:41;;9821::1;;;31642::0;;9794:18:1;31642:41:0;;;;;;;31376:315;;;:::o;26450:::-;26607:28;26617:4;26623:2;26627:7;26607:9;:28::i;:::-;26654:48;26677:4;26683:2;26687:7;26696:5;26654:22;:48::i;:::-;26646:111;;;;-1:-1:-1;;;26646:111:0;;;;;;;:::i;17132:723::-;17188:13;17409:10;17405:53;;-1:-1:-1;;17436:10:0;;;;;;;;;;;;-1:-1:-1;;;17436:10:0;;;;;17132:723::o;17405:53::-;17483:5;17468:12;17524:78;17531:9;;17524:78;;17557:8;;;;:::i;:::-;;-1:-1:-1;17580:10:0;;-1:-1:-1;17588:2:0;17580:10;;:::i;:::-;;;17524:78;;;17612:19;17644:6;17634:17;;;;;;-1:-1:-1;;;17634:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17634:17:0;;17612:39;;17662:154;17669:10;;17662:154;;17696:11;17706:1;17696:11;;:::i;:::-;;-1:-1:-1;17765:10:0;17773:2;17765:5;:10;:::i;:::-;17752:24;;:2;:24;:::i;:::-;17739:39;;17722:6;17729;17722:14;;;;;;-1:-1:-1;;;17722:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17722:56:0;;;;;;;;-1:-1:-1;17793:11:0;17802:2;17793:11;;:::i;:::-;;;17662:154;;37760:701;37843:7;37886:4;37843:7;37901:523;37925:5;:12;37921:1;:16;37901:523;;;37959:20;37982:5;37988:1;37982:8;;;;;;-1:-1:-1;;;37982:8:0;;;;;;;;;;;;;;;37959:31;;38025:12;38009;:28;38005:408;;38162:44;;;;;;7365:19:1;;;7400:12;;;7393:28;;;7437:12;;38162:44:0;;;;;;;;;;;;38152:55;;;;;;38137:70;;38005:408;;;38352:44;;;;;;7365:19:1;;;7400:12;;;7393:28;;;7437:12;;38352:44:0;;;;;;;;;;;;38342:55;;;;;;38327:70;;38005:408;-1:-1:-1;37939:3:0;;;;:::i;:::-;;;;37901:523;;;-1:-1:-1;38441:12:0;37760:701;-1:-1:-1;;;37760:701:0:o;29056:382::-;-1:-1:-1;;;;;29136:16:0;;29128:61;;;;-1:-1:-1;;;29128:61:0;;15631:2:1;29128:61:0;;;15613:21:1;;;15650:18;;;15643:30;15709:34;15689:18;;;15682:62;15761:18;;29128:61:0;15603:182:1;29128:61:0;27143:4;27167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27167:16:0;:30;29200:58;;;;-1:-1:-1;;;29200:58:0;;11814:2:1;29200:58:0;;;11796:21:1;11853:2;11833:18;;;11826:30;11892;11872:18;;;11865:58;11940:18;;29200:58:0;11786:178:1;29200:58:0;-1:-1:-1;;;;;29329:13:0;;;;;;:9;:13;;;;;:18;;29346:1;;29329:13;:18;;29346:1;;29329:18;:::i;:::-;;;;-1:-1:-1;;29358:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29358:21:0;-1:-1:-1;;;;;29358:21:0;;;;;;;;29397:33;;29358:16;;;29397:33;;29358:16;;29397:33;29056:382;;:::o;32256:799::-;32411:4;-1:-1:-1;;;;;32432:13:0;;8854:20;8902:8;32428:620;;32468:72;;-1:-1:-1;;;32468:72:0;;-1:-1:-1;;;;;32468:36:0;;;;;:72;;16627:10;;32519:4;;32525:7;;32534:5;;32468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32468:72:0;;;;;;;;-1:-1:-1;;32468:72:0;;;;;;;;;;;;:::i;:::-;;;32464:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32710:13:0;;32706:272;;32753:60;;-1:-1:-1;;;32753:60:0;;;;;;;:::i;32706:272::-;32928:6;32922:13;32913:6;32909:2;32905:15;32898:38;32464:529;-1:-1:-1;;;;;;32591:51:0;-1:-1:-1;;;32591:51:0;;-1:-1:-1;32584:58:0;;32428:620;-1:-1:-1;33032:4:0;32256:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:391::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:1;;1049:18;1038:30;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1192:3;1185:4;1175:6;1172:1;1168:14;1160:6;1156:27;1152:38;1149:47;1146:2;;;1209:1;1206;1199:12;1146:2;912:307;;;;;:::o;1224:160::-;1289:20;;1345:13;;1338:21;1328:32;;1318:2;;1374:1;1371;1364:12;1389:163;1456:20;;1516:10;1505:22;;1495:33;;1485:2;;1542:1;1539;1532:12;1557:196;1616:6;1669:2;1657:9;1648:7;1644:23;1640:32;1637:2;;;1690:6;1682;1675:22;1637:2;1718:29;1737:9;1718:29;:::i;:::-;1708:39;1627:126;-1:-1:-1;;;1627:126:1:o;1758:270::-;1826:6;1834;1887:2;1875:9;1866:7;1862:23;1858:32;1855:2;;;1908:6;1900;1893:22;1855:2;1936:29;1955:9;1936:29;:::i;:::-;1926:39;;1984:38;2018:2;2007:9;2003:18;1984:38;:::i;:::-;1974:48;;1845:183;;;;;:::o;2033:338::-;2110:6;2118;2126;2179:2;2167:9;2158:7;2154:23;2150:32;2147:2;;;2200:6;2192;2185:22;2147:2;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2276:38;2310:2;2299:9;2295:18;2276:38;:::i;:::-;2266:48;;2361:2;2350:9;2346:18;2333:32;2323:42;;2137:234;;;;;:::o;2376:696::-;2471:6;2479;2487;2495;2548:3;2536:9;2527:7;2523:23;2519:33;2516:2;;;2570:6;2562;2555:22;2516:2;2598:29;2617:9;2598:29;:::i;:::-;2588:39;;2646:38;2680:2;2669:9;2665:18;2646:38;:::i;:::-;2636:48;;2731:2;2720:9;2716:18;2703:32;2693:42;;2786:2;2775:9;2771:18;2758:32;2813:18;2805:6;2802:30;2799:2;;;2850:6;2842;2835:22;2799:2;2878:22;;2931:4;2923:13;;2919:27;-1:-1:-1;2909:2:1;;2965:6;2957;2950:22;2909:2;2993:73;3058:7;3053:2;3040:16;3035:2;3031;3027:11;2993:73;:::i;:::-;2983:83;;;2506:566;;;;;;;:::o;3077:264::-;3142:6;3150;3203:2;3191:9;3182:7;3178:23;3174:32;3171:2;;;3224:6;3216;3209:22;3171:2;3252:29;3271:9;3252:29;:::i;:::-;3242:39;;3300:35;3331:2;3320:9;3316:18;3300:35;:::i;3346:264::-;3414:6;3422;3475:2;3463:9;3454:7;3450:23;3446:32;3443:2;;;3496:6;3488;3481:22;3443:2;3524:29;3543:9;3524:29;:::i;:::-;3514:39;3600:2;3585:18;;;;3572:32;;-1:-1:-1;;;3433:177:1:o;3615:457::-;3701:6;3709;3762:2;3750:9;3741:7;3737:23;3733:32;3730:2;;;3783:6;3775;3768:22;3730:2;3828:9;3815:23;3861:18;3853:6;3850:30;3847:2;;;3898:6;3890;3883:22;3847:2;3942:70;4004:7;3995:6;3984:9;3980:22;3942:70;:::i;:::-;4031:8;;3916:96;;-1:-1:-1;3720:352:1;-1:-1:-1;;;;3720:352:1:o;4077:190::-;4133:6;4186:2;4174:9;4165:7;4161:23;4157:32;4154:2;;;4207:6;4199;4192:22;4154:2;4235:26;4251:9;4235:26;:::i;4272:190::-;4331:6;4384:2;4372:9;4363:7;4359:23;4355:32;4352:2;;;4405:6;4397;4390:22;4352:2;-1:-1:-1;4433:23:1;;4342:120;-1:-1:-1;4342:120:1:o;4467:255::-;4525:6;4578:2;4566:9;4557:7;4553:23;4549:32;4546:2;;;4599:6;4591;4584:22;4546:2;4643:9;4630:23;4662:30;4686:5;4662:30;:::i;4727:259::-;4796:6;4849:2;4837:9;4828:7;4824:23;4820:32;4817:2;;;4870:6;4862;4855:22;4817:2;4907:9;4901:16;4926:30;4950:5;4926:30;:::i;4991:480::-;5060:6;5113:2;5101:9;5092:7;5088:23;5084:32;5081:2;;;5134:6;5126;5119:22;5081:2;5179:9;5166:23;5212:18;5204:6;5201:30;5198:2;;;5249:6;5241;5234:22;5198:2;5277:22;;5330:4;5322:13;;5318:27;-1:-1:-1;5308:2:1;;5364:6;5356;5349:22;5308:2;5392:73;5457:7;5452:2;5439:16;5434:2;5430;5426:11;5392:73;:::i;5671:194::-;5729:6;5782:2;5770:9;5761:7;5757:23;5753:32;5750:2;;;5803:6;5795;5788:22;5750:2;5831:28;5849:9;5831:28;:::i;5870:529::-;5964:6;5972;5980;6033:2;6021:9;6012:7;6008:23;6004:32;6001:2;;;6054:6;6046;6039:22;6001:2;6082:28;6100:9;6082:28;:::i;:::-;6072:38;;6161:2;6150:9;6146:18;6133:32;6188:18;6180:6;6177:30;6174:2;;;6225:6;6217;6210:22;6174:2;6269:70;6331:7;6322:6;6311:9;6307:22;6269:70;:::i;:::-;5991:408;;6358:8;;-1:-1:-1;6243:96:1;;-1:-1:-1;;;;5991:408:1:o;6404:257::-;6445:3;6483:5;6477:12;6510:6;6505:3;6498:19;6526:63;6582:6;6575:4;6570:3;6566:14;6559:4;6552:5;6548:16;6526:63;:::i;:::-;6643:2;6622:15;-1:-1:-1;;6618:29:1;6609:39;;;;6650:4;6605:50;;6453:208;-1:-1:-1;;6453:208:1:o;6666:185::-;6708:3;6746:5;6740:12;6761:52;6806:6;6801:3;6794:4;6787:5;6783:16;6761:52;:::i;:::-;6829:16;;;;;6716:135;-1:-1:-1;;6716:135:1:o;7460:1305::-;7737:3;7766;7801:6;7795:13;7831:3;7853:1;7881:9;7877:2;7873:18;7863:28;;7941:2;7930:9;7926:18;7963;7953:2;;8007:4;7999:6;7995:17;7985:27;;7953:2;8033;8081;8073:6;8070:14;8050:18;8047:38;8044:2;;;-1:-1:-1;;;8108:33:1;;8164:4;8161:1;8154:15;8194:4;8115:3;8182:17;8044:2;8225:18;8252:104;;;;8370:1;8365:322;;;;8218:469;;8252:104;-1:-1:-1;;8285:24:1;;8273:37;;8330:16;;;;-1:-1:-1;8252:104:1;;8365:322;20287:4;20306:17;;;20356:4;20340:21;;8460:3;8476:165;8490:6;8487:1;8484:13;8476:165;;;8568:14;;8555:11;;;8548:35;8611:16;;;;8505:10;;8476:165;;;8480:3;;8670:6;8665:3;8661:16;8654:23;;8218:469;;;;;;;8703:56;8728:30;8754:3;8746:6;8728:30;:::i;:::-;-1:-1:-1;;;6916:20:1;;6961:1;6952:11;;6906:63;8703:56;8696:63;7745:1020;-1:-1:-1;;;;;7745:1020:1:o;9188:488::-;-1:-1:-1;;;;;9457:15:1;;;9439:34;;9509:15;;9504:2;9489:18;;9482:43;9556:2;9541:18;;9534:34;;;9604:3;9599:2;9584:18;;9577:31;;;9382:4;;9625:45;;9650:19;;9642:6;9625:45;:::i;:::-;9617:53;9391:285;-1:-1:-1;;;;;;9391:285:1:o;9873:219::-;10022:2;10011:9;10004:21;9985:4;10042:44;10082:2;10071:9;10067:18;10059:6;10042:44;:::i;10443:414::-;10645:2;10627:21;;;10684:2;10664:18;;;10657:30;10723:34;10718:2;10703:18;;10696:62;-1:-1:-1;;;10789:2:1;10774:18;;10767:48;10847:3;10832:19;;10617:240::o;16203:356::-;16405:2;16387:21;;;16424:18;;;16417:30;16483:34;16478:2;16463:18;;16456:62;16550:2;16535:18;;16377:182::o;18405:413::-;18607:2;18589:21;;;18646:2;18626:18;;;18619:30;18685:34;18680:2;18665:18;;18658:62;-1:-1:-1;;;18751:2:1;18736:18;;18729:47;18808:3;18793:19;;18579:239::o;20372:128::-;20412:3;20443:1;20439:6;20436:1;20433:13;20430:2;;;20449:18;;:::i;:::-;-1:-1:-1;20485:9:1;;20420:80::o;20505:228::-;20544:3;20572:10;20609:2;20606:1;20602:10;20639:2;20636:1;20632:10;20670:3;20666:2;20662:12;20657:3;20654:21;20651:2;;;20678:18;;:::i;:::-;20714:13;;20552:181;-1:-1:-1;;;;20552:181:1:o;20738:120::-;20778:1;20804;20794:2;;20809:18;;:::i;:::-;-1:-1:-1;20843:9:1;;20784:74::o;20863:168::-;20903:7;20969:1;20965;20961:6;20957:14;20954:1;20951:21;20946:1;20939:9;20932:17;20928:45;20925:2;;;20976:18;;:::i;:::-;-1:-1:-1;21016:9:1;;20915:116::o;21036:125::-;21076:4;21104:1;21101;21098:8;21095:2;;;21109:18;;:::i;:::-;-1:-1:-1;21146:9:1;;21085:76::o;21166:258::-;21238:1;21248:113;21262:6;21259:1;21256:13;21248:113;;;21338:11;;;21332:18;21319:11;;;21312:39;21284:2;21277:10;21248:113;;;21379:6;21376:1;21373:13;21370:2;;;-1:-1:-1;;21414:1:1;21396:16;;21389:27;21219:205::o;21429:380::-;21508:1;21504:12;;;;21551;;;21572:2;;21626:4;21618:6;21614:17;21604:27;;21572:2;21679;21671:6;21668:14;21648:18;21645:38;21642:2;;;21725:10;21720:3;21716:20;21713:1;21706:31;21760:4;21757:1;21750:15;21788:4;21785:1;21778:15;21642:2;;21484:325;;;:::o;21814:135::-;21853:3;-1:-1:-1;;21874:17:1;;21871:2;;;21894:18;;:::i;:::-;-1:-1:-1;21941:1:1;21930:13;;21861:88::o;21954:201::-;21992:3;22020:10;22065:2;22058:5;22054:14;22092:2;22083:7;22080:15;22077:2;;;22098:18;;:::i;:::-;22147:1;22134:15;;22000:155;-1:-1:-1;;;22000:155:1:o;22160:112::-;22192:1;22218;22208:2;;22223:18;;:::i;:::-;-1:-1:-1;22257:9:1;;22198:74::o;22277:127::-;22338:10;22333:3;22329:20;22326:1;22319:31;22369:4;22366:1;22359:15;22393:4;22390:1;22383:15;22409:127;22470:10;22465:3;22461:20;22458:1;22451:31;22501:4;22498:1;22491:15;22525:4;22522:1;22515:15;22541:127;22602:10;22597:3;22593:20;22590:1;22583:31;22633:4;22630:1;22623:15;22657:4;22654:1;22647:15;22673:131;-1:-1:-1;;;;;;22747:32:1;;22737:43;;22727:2;;22794:1;22791;22784:12

Swarm Source

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