ETH Price: $3,297.05 (-3.36%)
Gas: 20 Gwei

Token

Metaversus NFT (MV)
 

Overview

Max Total Supply

373 MV

Holders

212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 MV
0x795a26cd023009b70d9277545795977b5482ae07
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:
Metaversus

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-09
*/

// SPDX-License-Identifier: MIT

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]

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]

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]

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]

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]

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]

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]

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]

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _maxSupply;

    /// Instanciate the contract
    /// @param maxSupply_ how many tokens this collection should hold
    constructor (uint256 maxSupply_) {
        _maxSupply = maxSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return maxSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
}

/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _totalSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _totalSupply, uint256 _startFrom)
        WithLimitedSupply(_totalSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = maxSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}

// File: contracts/Metaversus.sol

pragma solidity ^0.8.0;

/**
 * @title Metaversus contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract Metaversus is ERC721, ERC721Enumerable, Ownable, RandomlyAssigned {

    uint256 public MAX_NFT_SUPPLY = 8888;
    // uint256 public RESERVED_NFT = 6000;

    uint256 public NFT_PRICE = 0.1 ether;
    uint256 public NFT_PRICE_PRESALE = 0.05 ether;
    
    uint256 public MAX_NFT_WALLET_PRESALE = 3;
    uint256 public MAX_NFT_WALLET = 10;

    bool public saleIsActive = false;

    uint256 public publicSaleStartTimestamp;
    string public baseTokenURI;
    
    mapping(address => bool) private whitelisted;

    event BaseURIChanged(string baseURI);
    event ReserveSaleMint(address minter, uint256 amountOfNFTs);
    event FinalSaleMint(address minter, uint256 amountOfNFTs);

    constructor(uint256 _publicSaleStartTimestamp) ERC721("Metaversus NFT", "MV") RandomlyAssigned(MAX_NFT_SUPPLY, 1)
    {
        // baseTokenURI = baseURI;
        publicSaleStartTimestamp = _publicSaleStartTimestamp;
    }

    function addToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            whitelisted[addresses[i]] = true;
        }
    }

    function removeFromWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            whitelisted[addresses[i]] = false;
        }
    }

    function checkIfWhitelisted(address addr) external view returns (bool) {
        return whitelisted[addr];
    }

    function reserveNFT(uint256 amountOfNFTs) public onlyOwner {        
        
        for (uint i = 0; i < amountOfNFTs; i++) {
            
            uint256 tokenId = nextToken();
            _safeMint(msg.sender, tokenId);
        }
    }

    function mintNFT(uint256 amountOfNFTs) external payable {
        require(saleIsActive, "Sale must be active to mint NFT");
        require(tokenCount() + amountOfNFTs <= MAX_NFT_SUPPLY, "Minting would exceed max supply");

        if(hasFinalSaleStarted()) {
            require(NFT_PRICE * amountOfNFTs == msg.value, "ETH amount is incorrect");
            require(balanceOf(msg.sender) + amountOfNFTs <= MAX_NFT_WALLET, "Purchase exceeds max allowed per wallet");
        } else {
            require(NFT_PRICE_PRESALE * amountOfNFTs == msg.value, "ETH amount is incorrect");
            require(balanceOf(msg.sender) + amountOfNFTs <= MAX_NFT_WALLET_PRESALE, "Purchase exceeds max allowed per wallet");
        }

        for (uint256 i = 0; i < amountOfNFTs; i++) {
            uint256 tokenId = nextToken();

            _safeMint(msg.sender, tokenId);
        }

        emit FinalSaleMint(msg.sender, amountOfNFTs);
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    function hasFinalSaleStarted() public view returns(bool){
        return (block.timestamp >= publicSaleStartTimestamp) ? true : false;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
        emit BaseURIChanged(baseURI);
    }

    function setPublicSaleStartTimestamp(uint256 _amount) external onlyOwner {
        publicSaleStartTimestamp = _amount;
    }

    function setNFT_PRICE(uint256 _amount) external onlyOwner {
        NFT_PRICE = _amount;
    }

    function setNFT_PRICE_PRESALE(uint256 _amount) external onlyOwner {
        NFT_PRICE_PRESALE = _amount;
    }

    function setMAX_NFT_WALLET(uint256 _amount) external onlyOwner {
        MAX_NFT_WALLET = _amount;
    }

    function setMAX_NFT_WALLET_PRESALE(uint256 _amount) external onlyOwner {
        MAX_NFT_WALLET_PRESALE = _amount;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        uint256 AhmedBal = (balance * 200) / 1000;
        uint256 Daniele = (balance * 50) / 1000;
        uint256 George = (balance * 375) / 1000;
        uint256 Brad = (balance * 375) / 1000;

        (bool success, ) = payable(0x692C9da6fACb65DCB092f036c753577379849068).call{value: AhmedBal}("");
        require(success, "Transfer failed to Ahmed");
        (bool success1, ) = payable(0x56cFf5fbBDE83a195aa8d8a38550bE8438617975).call{value: Daniele}("");
        require(success1, "Transfer failed to Daniele");
        (bool success2, ) = payable(0x4c8FeB3e02C67408d36c663Ad868d215B1B3239E).call{value: George}("");
        require(success2, "Transfer failed to George");
        (bool success3, ) = payable(0x97eD2321e644659E7a8d5aAf5f26a44a4225C652).call{value: Brad}("");
        require(success3, "Transfer failed to Brad");
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return
            super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_publicSaleStartTimestamp","type":"uint256"}],"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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfNFTs","type":"uint256"}],"name":"FinalSaleMint","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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfNFTs","type":"uint256"}],"name":"ReserveSaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_WALLET_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","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":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasFinalSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfNFTs","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfNFTs","type":"uint256"}],"name":"reserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMAX_NFT_WALLET","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMAX_NFT_WALLET_PRESALE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setNFT_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setNFT_PRICE_PRESALE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPublicSaleStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b8600f5567016345785d8a000060105566b1a2bc2ec500006011556003601255600a6013556014805460ff191690553480156200004257600080fd5b5060405162003279380380620032798339810160408190526200006591620001fc565b600f54604080518082018252600e81526d13595d185d995c9cdd5cc813919560921b60208083019182528351808501909452600284526126ab60f11b9084015281516001938593929091620000bd9160009162000156565b508051620000d390600190602084019062000156565b505050620000f0620000ea6200010060201b60201c565b62000104565b600c55600e555060155562000252565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001649062000215565b90600052602060002090601f016020900481019282620001885760008555620001d3565b82601f10620001a357805160ff1916838001178555620001d3565b82800160010185558215620001d3579182015b82811115620001d3578251825591602001919060010190620001b6565b50620001e1929150620001e5565b5090565b5b80821115620001e15760008155600101620001e6565b6000602082840312156200020e578081fd5b5051919050565b6002810460018216806200022a57607f821691505b602082108114156200024c57634e487b7160e01b600052602260045260246000fd5b50919050565b61301780620002626000396000f3fe6080604052600436106102675760003560e01c80637f64978311610144578063c87b56dd116100b6578063e14ca3531161007a578063e14ca353146106ae578063e8fee105146106c3578063e985e9c5146106e3578063eb8d244414610703578063f2fde38b14610718578063f45be5e91461073857610267565b8063c87b56dd1461063a578063d08b11e31461065a578063d547cfb71461066f578063d5abeb0114610684578063d7822c991461069957610267565b806395d89b411161010857806395d89b411461059b5780639f181b5e146105b0578063a22cb465146105c5578063b5077f44146105e5578063b88d4fde146105fa578063bb5c14261461061a57610267565b80637f6497831461051e578063853828b61461053e578063884bb43f146105535780638da5cb5b14610573578063926427441461058857610267565b8063484cd65f116101dd578063577ad34d116101a1578063577ad34d1461047f5780636352211e1461049457806366324729146104b4578063676dd563146104d457806370a08231146104e9578063715018a61461050957610267565b8063484cd65f146103ea5780634f6ccce7146103ff578063548db1741461041f57806355f804b31461043f578063562781481461045f57610267565b806323b872dd1161022f57806323b872dd146103355780632660a92e146103555780632f745c591461037557806334918dfd14610395578063397be3fd146103aa57806342842e0e146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f157806318160ddd14610313575b600080fd5b34801561027857600080fd5b5061028c610287366004612571565b61074d565b604051610299919061270a565b60405180910390f35b3480156102ae57600080fd5b506102b7610760565b6040516102999190612715565b3480156102d057600080fd5b506102e46102df3660046125ef565b6107f2565b60405161029991906126a0565b3480156102fd57600080fd5b5061031161030c3660046124d9565b61083e565b005b34801561031f57600080fd5b506103286108d6565b6040516102999190612e88565b34801561034157600080fd5b506103116103503660046123eb565b6108dc565b34801561036157600080fd5b5061028c61037036600461239f565b610914565b34801561038157600080fd5b506103286103903660046124d9565b610932565b3480156103a157600080fd5b50610311610984565b3480156103b657600080fd5b506103116103c53660046125ef565b6109d7565b3480156103d657600080fd5b506103116103e53660046123eb565b610a4e565b3480156103f657600080fd5b5061028c610a69565b34801561040b57600080fd5b5061032861041a3660046125ef565b610a84565b34801561042b57600080fd5b5061031161043a366004612502565b610adf565b34801561044b57600080fd5b5061031161045a3660046125a9565b610bfc565b34801561046b57600080fd5b5061031161047a3660046125ef565b610c89565b34801561048b57600080fd5b50610328610ccd565b3480156104a057600080fd5b506102e46104af3660046125ef565b610cd3565b3480156104c057600080fd5b506103116104cf3660046125ef565b610d08565b3480156104e057600080fd5b50610328610d4c565b3480156104f557600080fd5b5061032861050436600461239f565b610d52565b34801561051557600080fd5b50610311610d96565b34801561052a57600080fd5b50610311610539366004612502565b610de1565b34801561054a57600080fd5b50610311610efe565b34801561055f57600080fd5b5061031161056e3660046125ef565b611218565b34801561057f57600080fd5b506102e461125c565b6103116105963660046125ef565b61126b565b3480156105a757600080fd5b506102b76113fb565b3480156105bc57600080fd5b5061032861140a565b3480156105d157600080fd5b506103116105e036600461249f565b611416565b3480156105f157600080fd5b506103286114e4565b34801561060657600080fd5b50610311610615366004612426565b6114ea565b34801561062657600080fd5b506103116106353660046125ef565b611529565b34801561064657600080fd5b506102b76106553660046125ef565b61156d565b34801561066657600080fd5b506103286115f0565b34801561067b57600080fd5b506102b76115f6565b34801561069057600080fd5b50610328611684565b3480156106a557600080fd5b5061032861168a565b3480156106ba57600080fd5b50610328611690565b3480156106cf57600080fd5b506103116106de3660046125ef565b6116ac565b3480156106ef57600080fd5b5061028c6106fe3660046123b9565b6116f0565b34801561070f57600080fd5b5061028c61171e565b34801561072457600080fd5b5061031161073336600461239f565b611727565b34801561074457600080fd5b50610328611798565b60006107588261179e565b90505b919050565b60606000805461076f90612f1f565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90612f1f565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107fd826117c3565b6108225760405162461bcd60e51b815260040161081990612b78565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084982610cd3565b9050806001600160a01b0316836001600160a01b0316141561087d5760405162461bcd60e51b815260040161081990612cbe565b806001600160a01b031661088f6117e0565b6001600160a01b031614806108ab57506108ab816106fe6117e0565b6108c75760405162461bcd60e51b8152600401610819906129ae565b6108d183836117e4565b505050565b60085490565b6108ed6108e76117e0565b82611852565b6109095760405162461bcd60e51b815260040161081990612d6d565b6108d18383836118d7565b6001600160a01b031660009081526017602052604090205460ff1690565b600061093d83610d52565b821061095b5760405162461bcd60e51b81526004016108199061275f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61098c6117e0565b6001600160a01b031661099d61125c565b6001600160a01b0316146109c35760405162461bcd60e51b815260040161081990612bf1565b6014805460ff19811660ff90911615179055565b6109df6117e0565b6001600160a01b03166109f061125c565b6001600160a01b031614610a165760405162461bcd60e51b815260040161081990612bf1565b60005b81811015610a4a576000610a2b611a04565b9050610a373382611b4b565b5080610a4281612f5a565b915050610a19565b5050565b6108d1838383604051806020016040528060008152506114ea565b6000601554421015610a7c576000610a7f565b60015b905090565b6000610a8e6108d6565b8210610aac5760405162461bcd60e51b815260040161081990612df5565b60088281548110610acd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ae76117e0565b6001600160a01b0316610af861125c565b6001600160a01b031614610b1e5760405162461bcd60e51b815260040161081990612bf1565b60005b818110156108d1576000838383818110610b4b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b60919061239f565b6001600160a01b03161415610b875760405162461bcd60e51b815260040161081990612d36565b600060176000858585818110610bad57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610bc2919061239f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bf481612f5a565b915050610b21565b610c046117e0565b6001600160a01b0316610c1561125c565b6001600160a01b031614610c3b5760405162461bcd60e51b815260040161081990612bf1565b8051610c4e90601690602084019061227f565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c7e9190612715565b60405180910390a150565b610c916117e0565b6001600160a01b0316610ca261125c565b6001600160a01b031614610cc85760405162461bcd60e51b815260040161081990612bf1565b601055565b60115481565b6000818152600260205260408120546001600160a01b0316806107585760405162461bcd60e51b815260040161081990612a8c565b610d106117e0565b6001600160a01b0316610d2161125c565b6001600160a01b031614610d475760405162461bcd60e51b815260040161081990612bf1565b601355565b60105481565b60006001600160a01b038216610d7a5760405162461bcd60e51b815260040161081990612a42565b506001600160a01b031660009081526003602052604090205490565b610d9e6117e0565b6001600160a01b0316610daf61125c565b6001600160a01b031614610dd55760405162461bcd60e51b815260040161081990612bf1565b610ddf6000611b65565b565b610de96117e0565b6001600160a01b0316610dfa61125c565b6001600160a01b031614610e205760405162461bcd60e51b815260040161081990612bf1565b60005b818110156108d1576000838383818110610e4d57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e62919061239f565b6001600160a01b03161415610e895760405162461bcd60e51b815260040161081990612d36565b600160176000858585818110610eaf57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ec4919061239f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ef681612f5a565b915050610e23565b610f066117e0565b6001600160a01b0316610f1761125c565b6001600160a01b031614610f3d5760405162461bcd60e51b815260040161081990612bf1565b4780610f5b5760405162461bcd60e51b815260040161081990612bc4565b60006103e8610f6b8360c8612ebd565b610f759190612ea9565b905060006103e8610f87846032612ebd565b610f919190612ea9565b905060006103e8610fa485610177612ebd565b610fae9190612ea9565b905060006103e8610fc186610177612ebd565b610fcb9190612ea9565b9050600073692c9da6facb65dcb092f036c7535773798490686001600160a01b031685604051610ffa9061269d565b60006040518083038185875af1925050503d8060008114611037576040519150601f19603f3d011682016040523d82523d6000602084013e61103c565b606091505b505090508061105d5760405162461bcd60e51b815260040161081990612977565b60007356cff5fbbde83a195aa8d8a38550be84386179756001600160a01b03168560405161108a9061269d565b60006040518083038185875af1925050503d80600081146110c7576040519150601f19603f3d011682016040523d82523d6000602084013e6110cc565b606091505b50509050806110ed5760405162461bcd60e51b815260040161081990612dbe565b6000734c8feb3e02c67408d36c663ad868d215b1b3239e6001600160a01b03168560405161111a9061269d565b60006040518083038185875af1925050503d8060008114611157576040519150601f19603f3d011682016040523d82523d6000602084013e61115c565b606091505b505090508061117d5760405162461bcd60e51b815260040161081990612a0b565b60007397ed2321e644659e7a8d5aaf5f26a44a4225c6526001600160a01b0316856040516111aa9061269d565b60006040518083038185875af1925050503d80600081146111e7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ec565b606091505b505090508061120d5760405162461bcd60e51b815260040161081990612cff565b505050505050505050565b6112206117e0565b6001600160a01b031661123161125c565b6001600160a01b0316146112575760405162461bcd60e51b815260040161081990612bf1565b601255565b600a546001600160a01b031690565b60145460ff1661128d5760405162461bcd60e51b815260040161081990612728565b600f548161129961140a565b6112a39190612e91565b11156112c15760405162461bcd60e51b815260040161081990612ad5565b6112c9610a69565b156113345734816010546112dd9190612ebd565b146112fa5760405162461bcd60e51b815260040161081990612b41565b6013548161130733610d52565b6113119190612e91565b111561132f5760405162461bcd60e51b815260040161081990612e41565b611395565b34816011546113439190612ebd565b146113605760405162461bcd60e51b815260040161081990612b41565b6012548161136d33610d52565b6113779190612e91565b11156113955760405162461bcd60e51b815260040161081990612e41565b60005b818110156113c95760006113aa611a04565b90506113b63382611b4b565b50806113c181612f5a565b915050611398565b507f821f4584abe32331f65a93fcc9cc02b850db6e257e422af5ee486e6edb860fd73382604051610c7e9291906126f1565b60606001805461076f90612f1f565b6000610a7f600b611bb7565b61141e6117e0565b6001600160a01b0316826001600160a01b0316141561144f5760405162461bcd60e51b8152600401610819906128bd565b806005600061145c6117e0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114a06117e0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d8919061270a565b60405180910390a35050565b600f5481565b6114fb6114f56117e0565b83611852565b6115175760405162461bcd60e51b815260040161081990612d6d565b61152384848484611bbb565b50505050565b6115316117e0565b6001600160a01b031661154261125c565b6001600160a01b0316146115685760405162461bcd60e51b815260040161081990612bf1565b601155565b6060611578826117c3565b6115945760405162461bcd60e51b815260040161081990612c6f565b600061159e611bee565b905060008151116115be57604051806020016040528060008152506115e9565b806115c884611bfd565b6040516020016115d992919061266e565b6040516020818303038152906040525b9392505050565b60135481565b6016805461160390612f1f565b80601f016020809104026020016040519081016040528092919081815260200182805461162f90612f1f565b801561167c5780601f106116515761010080835404028352916020019161167c565b820191906000526020600020905b81548152906001019060200180831161165f57829003601f168201915b505050505081565b600c5490565b60155481565b600061169a61140a565b6116a2611684565b610a7f9190612edc565b6116b46117e0565b6001600160a01b03166116c561125c565b6001600160a01b0316146116eb5760405162461bcd60e51b815260040161081990612bf1565b601555565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60145460ff1681565b61172f6117e0565b6001600160a01b031661174061125c565b6001600160a01b0316146117665760405162461bcd60e51b815260040161081990612bf1565b6001600160a01b03811661178c5760405162461bcd60e51b8152600401610819906127fc565b61179581611b65565b50565b60125481565b60006001600160e01b0319821663780e9d6360e01b1480610758575061075882611d18565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181982610cd3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061185d826117c3565b6118795760405162461bcd60e51b81526004016108199061292b565b600061188483610cd3565b9050806001600160a01b0316846001600160a01b031614806118bf5750836001600160a01b03166118b4846107f2565b6001600160a01b0316145b806118cf57506118cf81856116f0565b949350505050565b826001600160a01b03166118ea82610cd3565b6001600160a01b0316146119105760405162461bcd60e51b815260040161081990612c26565b6001600160a01b0382166119365760405162461bcd60e51b815260040161081990612879565b611941838383611d58565b61194c6000826117e4565b6001600160a01b0383166000908152600360205260408120805460019290611975908490612edc565b90915550506001600160a01b03821660009081526003602052604081208054600192906119a3908490612e91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611a0f611690565b11611a2c5760405162461bcd60e51b8152600401610819906128f4565b6000611a3661140a565b611a3e611684565b611a489190612edc565b90506000813341444542604051602001611a66959493929190612633565b6040516020818303038152906040528051906020012060001c611a899190612f75565b6000818152600d602052604081205491925090611aa7575080611ab8565b506000818152600d60205260409020545b600d6000611ac7600186612edc565b81526020019081526020016000205460001415611afd57611ae9600184612edc565b6000838152600d6020526040902055611b2d565b600d6000611b0c600186612edc565b81526020808201929092526040908101600090812054858252600d90935220555b611b35611d63565b50600e54611b439082612e91565b935050505090565b610a4a828260405180602001604052806000815250611da3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b611bc68484846118d7565b611bd284848484611dd6565b6115235760405162461bcd60e51b8152600401610819906127aa565b60606016805461076f90612f1f565b606081611c2257506040805180820190915260018152600360fc1b602082015261075b565b8160005b8115611c4c5780611c3681612f5a565b9150611c459050600a83612ea9565b9150611c26565b60008167ffffffffffffffff811115611c7557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c9f576020820181803683370190505b5090505b84156118cf57611cb4600183612edc565b9150611cc1600a86612f75565b611ccc906030612e91565b60f81b818381518110611cef57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d11600a86612ea9565b9450611ca3565b60006001600160e01b031982166380ac58cd60e01b1480611d4957506001600160e01b03198216635b5e139f60e01b145b80610758575061075882611ef1565b6108d1838383611f0a565b600080611d6e611690565b11611d8b5760405162461bcd60e51b8152600401610819906128f4565b6000611d97600b611bb7565b9050610a7f600b611f93565b611dad8383611f9c565b611dba6000848484611dd6565b6108d15760405162461bcd60e51b8152600401610819906127aa565b6000611dea846001600160a01b031661207b565b15611ee657836001600160a01b031663150b7a02611e066117e0565b8786866040518563ffffffff1660e01b8152600401611e2894939291906126b4565b602060405180830381600087803b158015611e4257600080fd5b505af1925050508015611e72575060408051601f3d908101601f19168201909252611e6f9181019061258d565b60015b611ecc573d808015611ea0576040519150601f19603f3d011682016040523d82523d6000602084013e611ea5565b606091505b508051611ec45760405162461bcd60e51b8152600401610819906127aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118cf565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611f158383836108d1565b6001600160a01b038316611f3157611f2c81612081565b611f54565b816001600160a01b0316836001600160a01b031614611f5457611f5483826120c5565b6001600160a01b038216611f7057611f6b81612162565b6108d1565b826001600160a01b0316826001600160a01b0316146108d1576108d1828261223b565b80546001019055565b6001600160a01b038216611fc25760405162461bcd60e51b815260040161081990612b0c565b611fcb816117c3565b15611fe85760405162461bcd60e51b815260040161081990612842565b611ff460008383611d58565b6001600160a01b038216600090815260036020526040812080546001929061201d908490612e91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016120d284610d52565b6120dc9190612edc565b60008381526007602052604090205490915080821461212f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061217490600190612edc565b600083815260096020526040812054600880549394509092849081106121aa57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106121d957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061221f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061224683610d52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461228b90612f1f565b90600052602060002090601f0160209004810192826122ad57600085556122f3565b82601f106122c657805160ff19168380011785556122f3565b828001600101855582156122f3579182015b828111156122f35782518255916020019190600101906122d8565b506122ff929150612303565b5090565b5b808211156122ff5760008155600101612304565b600067ffffffffffffffff8084111561233357612333612fb5565b604051601f8501601f19168101602001828111828210171561235757612357612fb5565b60405284815291508183850186101561236f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461075b57600080fd5b6000602082840312156123b0578081fd5b6115e982612388565b600080604083850312156123cb578081fd5b6123d483612388565b91506123e260208401612388565b90509250929050565b6000806000606084860312156123ff578081fd5b61240884612388565b925061241660208501612388565b9150604084013590509250925092565b6000806000806080858703121561243b578081fd5b61244485612388565b935061245260208601612388565b925060408501359150606085013567ffffffffffffffff811115612474578182fd5b8501601f81018713612484578182fd5b61249387823560208401612318565b91505092959194509250565b600080604083850312156124b1578182fd5b6124ba83612388565b9150602083013580151581146124ce578182fd5b809150509250929050565b600080604083850312156124eb578182fd5b6124f483612388565b946020939093013593505050565b60008060208385031215612514578182fd5b823567ffffffffffffffff8082111561252b578384fd5b818501915085601f83011261253e578384fd5b81358181111561254c578485fd5b866020808302850101111561255f578485fd5b60209290920196919550909350505050565b600060208284031215612582578081fd5b81356115e981612fcb565b60006020828403121561259e578081fd5b81516115e981612fcb565b6000602082840312156125ba578081fd5b813567ffffffffffffffff8111156125d0578182fd5b8201601f810184136125e0578182fd5b6118cf84823560208401612318565b600060208284031215612600578081fd5b5035919050565b6000815180845261261f816020860160208601612ef3565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606096871b811682529490951b909316601485015260288401919091526048830152606882015260880190565b60008351612680818460208801612ef3565b835190830190612694818360208801612ef3565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126e790830184612607565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526115e96020830184612607565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204e465400604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526018908201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526018908201527f5472616e73666572206661696c656420746f2041686d65640000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526019908201527f5472616e73666572206661696c656420746f2047656f72676500000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f5472616e73666572206661696c656420746f2042726164000000000000000000604082015260600190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601a908201527f5472616e73666572206661696c656420746f2044616e69656c65000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526027908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015266081dd85b1b195d60ca1b606082015260800190565b90815260200190565b60008219821115612ea457612ea4612f89565b500190565b600082612eb857612eb8612f9f565b500490565b6000816000190483118215151615612ed757612ed7612f89565b500290565b600082821015612eee57612eee612f89565b500390565b60005b83811015612f0e578181015183820152602001612ef6565b838111156115235750506000910152565b600281046001821680612f3357607f821691505b60208210811415612f5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f6e57612f6e612f89565b5060010190565b600082612f8457612f84612f9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461179557600080fdfea2646970667358221220e46f940640f5700b6119513ae47ce5777b97e962139a6b31fc4be238a520223564736f6c634300080000330000000000000000000000000000000000000000000000000000000062299ae8

Deployed Bytecode

0x6080604052600436106102675760003560e01c80637f64978311610144578063c87b56dd116100b6578063e14ca3531161007a578063e14ca353146106ae578063e8fee105146106c3578063e985e9c5146106e3578063eb8d244414610703578063f2fde38b14610718578063f45be5e91461073857610267565b8063c87b56dd1461063a578063d08b11e31461065a578063d547cfb71461066f578063d5abeb0114610684578063d7822c991461069957610267565b806395d89b411161010857806395d89b411461059b5780639f181b5e146105b0578063a22cb465146105c5578063b5077f44146105e5578063b88d4fde146105fa578063bb5c14261461061a57610267565b80637f6497831461051e578063853828b61461053e578063884bb43f146105535780638da5cb5b14610573578063926427441461058857610267565b8063484cd65f116101dd578063577ad34d116101a1578063577ad34d1461047f5780636352211e1461049457806366324729146104b4578063676dd563146104d457806370a08231146104e9578063715018a61461050957610267565b8063484cd65f146103ea5780634f6ccce7146103ff578063548db1741461041f57806355f804b31461043f578063562781481461045f57610267565b806323b872dd1161022f57806323b872dd146103355780632660a92e146103555780632f745c591461037557806334918dfd14610395578063397be3fd146103aa57806342842e0e146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f157806318160ddd14610313575b600080fd5b34801561027857600080fd5b5061028c610287366004612571565b61074d565b604051610299919061270a565b60405180910390f35b3480156102ae57600080fd5b506102b7610760565b6040516102999190612715565b3480156102d057600080fd5b506102e46102df3660046125ef565b6107f2565b60405161029991906126a0565b3480156102fd57600080fd5b5061031161030c3660046124d9565b61083e565b005b34801561031f57600080fd5b506103286108d6565b6040516102999190612e88565b34801561034157600080fd5b506103116103503660046123eb565b6108dc565b34801561036157600080fd5b5061028c61037036600461239f565b610914565b34801561038157600080fd5b506103286103903660046124d9565b610932565b3480156103a157600080fd5b50610311610984565b3480156103b657600080fd5b506103116103c53660046125ef565b6109d7565b3480156103d657600080fd5b506103116103e53660046123eb565b610a4e565b3480156103f657600080fd5b5061028c610a69565b34801561040b57600080fd5b5061032861041a3660046125ef565b610a84565b34801561042b57600080fd5b5061031161043a366004612502565b610adf565b34801561044b57600080fd5b5061031161045a3660046125a9565b610bfc565b34801561046b57600080fd5b5061031161047a3660046125ef565b610c89565b34801561048b57600080fd5b50610328610ccd565b3480156104a057600080fd5b506102e46104af3660046125ef565b610cd3565b3480156104c057600080fd5b506103116104cf3660046125ef565b610d08565b3480156104e057600080fd5b50610328610d4c565b3480156104f557600080fd5b5061032861050436600461239f565b610d52565b34801561051557600080fd5b50610311610d96565b34801561052a57600080fd5b50610311610539366004612502565b610de1565b34801561054a57600080fd5b50610311610efe565b34801561055f57600080fd5b5061031161056e3660046125ef565b611218565b34801561057f57600080fd5b506102e461125c565b6103116105963660046125ef565b61126b565b3480156105a757600080fd5b506102b76113fb565b3480156105bc57600080fd5b5061032861140a565b3480156105d157600080fd5b506103116105e036600461249f565b611416565b3480156105f157600080fd5b506103286114e4565b34801561060657600080fd5b50610311610615366004612426565b6114ea565b34801561062657600080fd5b506103116106353660046125ef565b611529565b34801561064657600080fd5b506102b76106553660046125ef565b61156d565b34801561066657600080fd5b506103286115f0565b34801561067b57600080fd5b506102b76115f6565b34801561069057600080fd5b50610328611684565b3480156106a557600080fd5b5061032861168a565b3480156106ba57600080fd5b50610328611690565b3480156106cf57600080fd5b506103116106de3660046125ef565b6116ac565b3480156106ef57600080fd5b5061028c6106fe3660046123b9565b6116f0565b34801561070f57600080fd5b5061028c61171e565b34801561072457600080fd5b5061031161073336600461239f565b611727565b34801561074457600080fd5b50610328611798565b60006107588261179e565b90505b919050565b60606000805461076f90612f1f565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90612f1f565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60006107fd826117c3565b6108225760405162461bcd60e51b815260040161081990612b78565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084982610cd3565b9050806001600160a01b0316836001600160a01b0316141561087d5760405162461bcd60e51b815260040161081990612cbe565b806001600160a01b031661088f6117e0565b6001600160a01b031614806108ab57506108ab816106fe6117e0565b6108c75760405162461bcd60e51b8152600401610819906129ae565b6108d183836117e4565b505050565b60085490565b6108ed6108e76117e0565b82611852565b6109095760405162461bcd60e51b815260040161081990612d6d565b6108d18383836118d7565b6001600160a01b031660009081526017602052604090205460ff1690565b600061093d83610d52565b821061095b5760405162461bcd60e51b81526004016108199061275f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61098c6117e0565b6001600160a01b031661099d61125c565b6001600160a01b0316146109c35760405162461bcd60e51b815260040161081990612bf1565b6014805460ff19811660ff90911615179055565b6109df6117e0565b6001600160a01b03166109f061125c565b6001600160a01b031614610a165760405162461bcd60e51b815260040161081990612bf1565b60005b81811015610a4a576000610a2b611a04565b9050610a373382611b4b565b5080610a4281612f5a565b915050610a19565b5050565b6108d1838383604051806020016040528060008152506114ea565b6000601554421015610a7c576000610a7f565b60015b905090565b6000610a8e6108d6565b8210610aac5760405162461bcd60e51b815260040161081990612df5565b60088281548110610acd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ae76117e0565b6001600160a01b0316610af861125c565b6001600160a01b031614610b1e5760405162461bcd60e51b815260040161081990612bf1565b60005b818110156108d1576000838383818110610b4b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b60919061239f565b6001600160a01b03161415610b875760405162461bcd60e51b815260040161081990612d36565b600060176000858585818110610bad57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610bc2919061239f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bf481612f5a565b915050610b21565b610c046117e0565b6001600160a01b0316610c1561125c565b6001600160a01b031614610c3b5760405162461bcd60e51b815260040161081990612bf1565b8051610c4e90601690602084019061227f565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c7e9190612715565b60405180910390a150565b610c916117e0565b6001600160a01b0316610ca261125c565b6001600160a01b031614610cc85760405162461bcd60e51b815260040161081990612bf1565b601055565b60115481565b6000818152600260205260408120546001600160a01b0316806107585760405162461bcd60e51b815260040161081990612a8c565b610d106117e0565b6001600160a01b0316610d2161125c565b6001600160a01b031614610d475760405162461bcd60e51b815260040161081990612bf1565b601355565b60105481565b60006001600160a01b038216610d7a5760405162461bcd60e51b815260040161081990612a42565b506001600160a01b031660009081526003602052604090205490565b610d9e6117e0565b6001600160a01b0316610daf61125c565b6001600160a01b031614610dd55760405162461bcd60e51b815260040161081990612bf1565b610ddf6000611b65565b565b610de96117e0565b6001600160a01b0316610dfa61125c565b6001600160a01b031614610e205760405162461bcd60e51b815260040161081990612bf1565b60005b818110156108d1576000838383818110610e4d57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e62919061239f565b6001600160a01b03161415610e895760405162461bcd60e51b815260040161081990612d36565b600160176000858585818110610eaf57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ec4919061239f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ef681612f5a565b915050610e23565b610f066117e0565b6001600160a01b0316610f1761125c565b6001600160a01b031614610f3d5760405162461bcd60e51b815260040161081990612bf1565b4780610f5b5760405162461bcd60e51b815260040161081990612bc4565b60006103e8610f6b8360c8612ebd565b610f759190612ea9565b905060006103e8610f87846032612ebd565b610f919190612ea9565b905060006103e8610fa485610177612ebd565b610fae9190612ea9565b905060006103e8610fc186610177612ebd565b610fcb9190612ea9565b9050600073692c9da6facb65dcb092f036c7535773798490686001600160a01b031685604051610ffa9061269d565b60006040518083038185875af1925050503d8060008114611037576040519150601f19603f3d011682016040523d82523d6000602084013e61103c565b606091505b505090508061105d5760405162461bcd60e51b815260040161081990612977565b60007356cff5fbbde83a195aa8d8a38550be84386179756001600160a01b03168560405161108a9061269d565b60006040518083038185875af1925050503d80600081146110c7576040519150601f19603f3d011682016040523d82523d6000602084013e6110cc565b606091505b50509050806110ed5760405162461bcd60e51b815260040161081990612dbe565b6000734c8feb3e02c67408d36c663ad868d215b1b3239e6001600160a01b03168560405161111a9061269d565b60006040518083038185875af1925050503d8060008114611157576040519150601f19603f3d011682016040523d82523d6000602084013e61115c565b606091505b505090508061117d5760405162461bcd60e51b815260040161081990612a0b565b60007397ed2321e644659e7a8d5aaf5f26a44a4225c6526001600160a01b0316856040516111aa9061269d565b60006040518083038185875af1925050503d80600081146111e7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ec565b606091505b505090508061120d5760405162461bcd60e51b815260040161081990612cff565b505050505050505050565b6112206117e0565b6001600160a01b031661123161125c565b6001600160a01b0316146112575760405162461bcd60e51b815260040161081990612bf1565b601255565b600a546001600160a01b031690565b60145460ff1661128d5760405162461bcd60e51b815260040161081990612728565b600f548161129961140a565b6112a39190612e91565b11156112c15760405162461bcd60e51b815260040161081990612ad5565b6112c9610a69565b156113345734816010546112dd9190612ebd565b146112fa5760405162461bcd60e51b815260040161081990612b41565b6013548161130733610d52565b6113119190612e91565b111561132f5760405162461bcd60e51b815260040161081990612e41565b611395565b34816011546113439190612ebd565b146113605760405162461bcd60e51b815260040161081990612b41565b6012548161136d33610d52565b6113779190612e91565b11156113955760405162461bcd60e51b815260040161081990612e41565b60005b818110156113c95760006113aa611a04565b90506113b63382611b4b565b50806113c181612f5a565b915050611398565b507f821f4584abe32331f65a93fcc9cc02b850db6e257e422af5ee486e6edb860fd73382604051610c7e9291906126f1565b60606001805461076f90612f1f565b6000610a7f600b611bb7565b61141e6117e0565b6001600160a01b0316826001600160a01b0316141561144f5760405162461bcd60e51b8152600401610819906128bd565b806005600061145c6117e0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556114a06117e0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d8919061270a565b60405180910390a35050565b600f5481565b6114fb6114f56117e0565b83611852565b6115175760405162461bcd60e51b815260040161081990612d6d565b61152384848484611bbb565b50505050565b6115316117e0565b6001600160a01b031661154261125c565b6001600160a01b0316146115685760405162461bcd60e51b815260040161081990612bf1565b601155565b6060611578826117c3565b6115945760405162461bcd60e51b815260040161081990612c6f565b600061159e611bee565b905060008151116115be57604051806020016040528060008152506115e9565b806115c884611bfd565b6040516020016115d992919061266e565b6040516020818303038152906040525b9392505050565b60135481565b6016805461160390612f1f565b80601f016020809104026020016040519081016040528092919081815260200182805461162f90612f1f565b801561167c5780601f106116515761010080835404028352916020019161167c565b820191906000526020600020905b81548152906001019060200180831161165f57829003601f168201915b505050505081565b600c5490565b60155481565b600061169a61140a565b6116a2611684565b610a7f9190612edc565b6116b46117e0565b6001600160a01b03166116c561125c565b6001600160a01b0316146116eb5760405162461bcd60e51b815260040161081990612bf1565b601555565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60145460ff1681565b61172f6117e0565b6001600160a01b031661174061125c565b6001600160a01b0316146117665760405162461bcd60e51b815260040161081990612bf1565b6001600160a01b03811661178c5760405162461bcd60e51b8152600401610819906127fc565b61179581611b65565b50565b60125481565b60006001600160e01b0319821663780e9d6360e01b1480610758575061075882611d18565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181982610cd3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061185d826117c3565b6118795760405162461bcd60e51b81526004016108199061292b565b600061188483610cd3565b9050806001600160a01b0316846001600160a01b031614806118bf5750836001600160a01b03166118b4846107f2565b6001600160a01b0316145b806118cf57506118cf81856116f0565b949350505050565b826001600160a01b03166118ea82610cd3565b6001600160a01b0316146119105760405162461bcd60e51b815260040161081990612c26565b6001600160a01b0382166119365760405162461bcd60e51b815260040161081990612879565b611941838383611d58565b61194c6000826117e4565b6001600160a01b0383166000908152600360205260408120805460019290611975908490612edc565b90915550506001600160a01b03821660009081526003602052604081208054600192906119a3908490612e91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611a0f611690565b11611a2c5760405162461bcd60e51b8152600401610819906128f4565b6000611a3661140a565b611a3e611684565b611a489190612edc565b90506000813341444542604051602001611a66959493929190612633565b6040516020818303038152906040528051906020012060001c611a899190612f75565b6000818152600d602052604081205491925090611aa7575080611ab8565b506000818152600d60205260409020545b600d6000611ac7600186612edc565b81526020019081526020016000205460001415611afd57611ae9600184612edc565b6000838152600d6020526040902055611b2d565b600d6000611b0c600186612edc565b81526020808201929092526040908101600090812054858252600d90935220555b611b35611d63565b50600e54611b439082612e91565b935050505090565b610a4a828260405180602001604052806000815250611da3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b611bc68484846118d7565b611bd284848484611dd6565b6115235760405162461bcd60e51b8152600401610819906127aa565b60606016805461076f90612f1f565b606081611c2257506040805180820190915260018152600360fc1b602082015261075b565b8160005b8115611c4c5780611c3681612f5a565b9150611c459050600a83612ea9565b9150611c26565b60008167ffffffffffffffff811115611c7557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c9f576020820181803683370190505b5090505b84156118cf57611cb4600183612edc565b9150611cc1600a86612f75565b611ccc906030612e91565b60f81b818381518110611cef57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d11600a86612ea9565b9450611ca3565b60006001600160e01b031982166380ac58cd60e01b1480611d4957506001600160e01b03198216635b5e139f60e01b145b80610758575061075882611ef1565b6108d1838383611f0a565b600080611d6e611690565b11611d8b5760405162461bcd60e51b8152600401610819906128f4565b6000611d97600b611bb7565b9050610a7f600b611f93565b611dad8383611f9c565b611dba6000848484611dd6565b6108d15760405162461bcd60e51b8152600401610819906127aa565b6000611dea846001600160a01b031661207b565b15611ee657836001600160a01b031663150b7a02611e066117e0565b8786866040518563ffffffff1660e01b8152600401611e2894939291906126b4565b602060405180830381600087803b158015611e4257600080fd5b505af1925050508015611e72575060408051601f3d908101601f19168201909252611e6f9181019061258d565b60015b611ecc573d808015611ea0576040519150601f19603f3d011682016040523d82523d6000602084013e611ea5565b606091505b508051611ec45760405162461bcd60e51b8152600401610819906127aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118cf565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611f158383836108d1565b6001600160a01b038316611f3157611f2c81612081565b611f54565b816001600160a01b0316836001600160a01b031614611f5457611f5483826120c5565b6001600160a01b038216611f7057611f6b81612162565b6108d1565b826001600160a01b0316826001600160a01b0316146108d1576108d1828261223b565b80546001019055565b6001600160a01b038216611fc25760405162461bcd60e51b815260040161081990612b0c565b611fcb816117c3565b15611fe85760405162461bcd60e51b815260040161081990612842565b611ff460008383611d58565b6001600160a01b038216600090815260036020526040812080546001929061201d908490612e91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016120d284610d52565b6120dc9190612edc565b60008381526007602052604090205490915080821461212f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061217490600190612edc565b600083815260096020526040812054600880549394509092849081106121aa57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106121d957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061221f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061224683610d52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461228b90612f1f565b90600052602060002090601f0160209004810192826122ad57600085556122f3565b82601f106122c657805160ff19168380011785556122f3565b828001600101855582156122f3579182015b828111156122f35782518255916020019190600101906122d8565b506122ff929150612303565b5090565b5b808211156122ff5760008155600101612304565b600067ffffffffffffffff8084111561233357612333612fb5565b604051601f8501601f19168101602001828111828210171561235757612357612fb5565b60405284815291508183850186101561236f57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461075b57600080fd5b6000602082840312156123b0578081fd5b6115e982612388565b600080604083850312156123cb578081fd5b6123d483612388565b91506123e260208401612388565b90509250929050565b6000806000606084860312156123ff578081fd5b61240884612388565b925061241660208501612388565b9150604084013590509250925092565b6000806000806080858703121561243b578081fd5b61244485612388565b935061245260208601612388565b925060408501359150606085013567ffffffffffffffff811115612474578182fd5b8501601f81018713612484578182fd5b61249387823560208401612318565b91505092959194509250565b600080604083850312156124b1578182fd5b6124ba83612388565b9150602083013580151581146124ce578182fd5b809150509250929050565b600080604083850312156124eb578182fd5b6124f483612388565b946020939093013593505050565b60008060208385031215612514578182fd5b823567ffffffffffffffff8082111561252b578384fd5b818501915085601f83011261253e578384fd5b81358181111561254c578485fd5b866020808302850101111561255f578485fd5b60209290920196919550909350505050565b600060208284031215612582578081fd5b81356115e981612fcb565b60006020828403121561259e578081fd5b81516115e981612fcb565b6000602082840312156125ba578081fd5b813567ffffffffffffffff8111156125d0578182fd5b8201601f810184136125e0578182fd5b6118cf84823560208401612318565b600060208284031215612600578081fd5b5035919050565b6000815180845261261f816020860160208601612ef3565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606096871b811682529490951b909316601485015260288401919091526048830152606882015260880190565b60008351612680818460208801612ef3565b835190830190612694818360208801612ef3565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126e790830184612607565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526115e96020830184612607565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204e465400604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526018908201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526018908201527f5472616e73666572206661696c656420746f2041686d65640000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526019908201527f5472616e73666572206661696c656420746f2047656f72676500000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f5472616e73666572206661696c656420746f2042726164000000000000000000604082015260600190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601a908201527f5472616e73666572206661696c656420746f2044616e69656c65000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526027908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015266081dd85b1b195d60ca1b606082015260800190565b90815260200190565b60008219821115612ea457612ea4612f89565b500190565b600082612eb857612eb8612f9f565b500490565b6000816000190483118215151615612ed757612ed7612f89565b500290565b600082821015612eee57612eee612f89565b500390565b60005b83811015612f0e578181015183820152602001612ef6565b838111156115235750506000910152565b600281046001821680612f3357607f821691505b60208210811415612f5457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f6e57612f6e612f89565b5060010190565b600082612f8457612f84612f9f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461179557600080fdfea2646970667358221220e46f940640f5700b6119513ae47ce5777b97e962139a6b31fc4be238a520223564736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000062299ae8

-----Decoded View---------------
Arg [0] : _publicSaleStartTimestamp (uint256): 1646893800

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000062299ae8


Deployed Bytecode Sourcemap

48642:5447:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53638:225;;;;;;;;;;-1:-1:-1;53638:225:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21549:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23108:221::-;;;;;;;;;;-1:-1:-1;23108:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22631:411::-;;;;;;;;;;-1:-1:-1;22631:411:0;;;;;:::i;:::-;;:::i;:::-;;35286:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23998:339::-;;;;;;;;;;-1:-1:-1;23998:339:0;;;;;:::i;:::-;;:::i;50169:114::-;;;;;;;;;;-1:-1:-1;50169:114:0;;;;;:::i;:::-;;:::i;34954:256::-;;;;;;;;;;-1:-1:-1;34954:256:0;;;;;:::i;:::-;;:::i;51505:89::-;;;;;;;;;;;;;:::i;50291:250::-;;;;;;;;;;-1:-1:-1;50291:250:0;;;;;:::i;:::-;;:::i;24408:185::-;;;;;;;;;;-1:-1:-1;24408:185:0;;;;;:::i;:::-;;:::i;51606:142::-;;;;;;;;;;;;;:::i;35476:233::-;;;;;;;;;;-1:-1:-1;35476:233:0;;;;;:::i;:::-;;:::i;49879:282::-;;;;;;;;;;-1:-1:-1;49879:282:0;;;;;:::i;:::-;;:::i;51756:140::-;;;;;;;;;;-1:-1:-1;51756:140:0;;;;;:::i;:::-;;:::i;52038:96::-;;;;;;;;;;-1:-1:-1;52038:96:0;;;;;:::i;:::-;;:::i;48858:45::-;;;;;;;;;;;;;:::i;21243:239::-;;;;;;;;;;-1:-1:-1;21243:239:0;;;;;:::i;:::-;;:::i;52262:106::-;;;;;;;;;;-1:-1:-1;52262:106:0;;;;;:::i;:::-;;:::i;48815:36::-;;;;;;;;;;;;;:::i;20973:208::-;;;;;;;;;;-1:-1:-1;20973:208:0;;;;;:::i;:::-;;:::i;42443:94::-;;;;;;;;;;;;;:::i;49595:276::-;;;;;;;;;;-1:-1:-1;49595:276:0;;;;;:::i;:::-;;:::i;52627:1003::-;;;;;;;;;;;;;:::i;52376:122::-;;;;;;;;;;-1:-1:-1;52376:122:0;;;;;:::i;:::-;;:::i;41792:87::-;;;;;;;;;;;;;:::i;50549:948::-;;;;;;:::i;:::-;;:::i;21718:104::-;;;;;;;;;;;;;:::i;45275:99::-;;;;;;;;;;;;;:::i;23401:295::-;;;;;;;;;;-1:-1:-1;23401:295:0;;;;;:::i;:::-;;:::i;48726:36::-;;;;;;;;;;;;;:::i;24664:328::-;;;;;;;;;;-1:-1:-1;24664:328:0;;;;;:::i;:::-;;:::i;52142:112::-;;;;;;;;;;-1:-1:-1;52142:112:0;;;;;:::i;:::-;;:::i;21893:334::-;;;;;;;;;;-1:-1:-1;21893:334:0;;;;;:::i;:::-;;:::i;48964:34::-;;;;;;;;;;;;;:::i;49094:26::-;;;;;;;;;;;;;:::i;45097:87::-;;;;;;;;;;;;;:::i;49048:39::-;;;;;;;;;;;;;:::i;45480:113::-;;;;;;;;;;;;;:::i;51904:126::-;;;;;;;;;;-1:-1:-1;51904:126:0;;;;;:::i;:::-;;:::i;23767:164::-;;;;;;;;;;-1:-1:-1;23767:164:0;;;;;:::i;:::-;;:::i;49007:32::-;;;;;;;;;;;;;:::i;42692:192::-;;;;;;;;;;-1:-1:-1;42692:192:0;;;;;:::i;:::-;;:::i;48916:41::-;;;;;;;;;;;;;:::i;53638:225::-;53777:4;53819:36;53843:11;53819:23;:36::i;:::-;53799:56;;53638:225;;;;:::o;21549:100::-;21603:13;21636:5;21629:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21549:100;:::o;23108:221::-;23184:7;23212:16;23220:7;23212;:16::i;:::-;23204:73;;;;-1:-1:-1;;;23204:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23297:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23297:24:0;;23108:221::o;22631:411::-;22712:13;22728:23;22743:7;22728:14;:23::i;:::-;22712:39;;22776:5;-1:-1:-1;;;;;22770:11:0;:2;-1:-1:-1;;;;;22770:11:0;;;22762:57;;;;-1:-1:-1;;;22762:57:0;;;;;;;:::i;:::-;22870:5;-1:-1:-1;;;;;22854:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22854:21:0;;:62;;;;22879:37;22896:5;22903:12;:10;:12::i;22879:37::-;22832:168;;;;-1:-1:-1;;;22832:168:0;;;;;;;:::i;:::-;23013:21;23022:2;23026:7;23013:8;:21::i;:::-;22631:411;;;:::o;35286:113::-;35374:10;:17;35286:113;:::o;23998:339::-;24193:41;24212:12;:10;:12::i;:::-;24226:7;24193:18;:41::i;:::-;24185:103;;;;-1:-1:-1;;;24185:103:0;;;;;;;:::i;:::-;24301:28;24311:4;24317:2;24321:7;24301:9;:28::i;50169:114::-;-1:-1:-1;;;;;50258:17:0;50234:4;50258:17;;;:11;:17;;;;;;;;;50169:114::o;34954:256::-;35051:7;35087:23;35104:5;35087:16;:23::i;:::-;35079:5;:31;35071:87;;;;-1:-1:-1;;;35071:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35176:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34954:256::o;51505:89::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;51574:12:::1;::::0;;-1:-1:-1;;51558:28:0;::::1;51574:12;::::0;;::::1;51573:13;51558:28;::::0;;51505:89::o;50291:250::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;50384:6:::1;50379:155;50400:12;50396:1;:16;50379:155;;;50448:15;50466:11;:9;:11::i;:::-;50448:29;;50492:30;50502:10;50514:7;50492:9;:30::i;:::-;-1:-1:-1::0;50414:3:0;::::1;::::0;::::1;:::i;:::-;;;;50379:155;;;;50291:250:::0;:::o;24408:185::-;24546:39;24563:4;24569:2;24573:7;24546:39;;;;;;;;;;;;:16;:39::i;51606:142::-;51657:4;51700:24;;51681:15;:43;;51680:60;;51735:5;51680:60;;;51728:4;51680:60;51673:67;;51606:142;:::o;35476:233::-;35551:7;35587:30;:28;:30::i;:::-;35579:5;:38;35571:95;;;;-1:-1:-1;;;35571:95:0;;;;;;;:::i;:::-;35684:10;35695:5;35684:17;;;;;;-1:-1:-1;;;35684:17:0;;;;;;;;;;;;;;;;;35677:24;;35476:233;;;:::o;49879:282::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;49973:9:::1;49968:186;49988:20:::0;;::::1;49968:186;;;50062:1;50038:9:::0;;50048:1;50038:12;;::::1;;;-1:-1:-1::0;;;50038:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50038:26:0::1;;;50030:62;;;;-1:-1:-1::0;;;50030:62:0::1;;;;;;;:::i;:::-;50137:5;50109:11;:25;50121:9;;50131:1;50121:12;;;;;-1:-1:-1::0;;;50121:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50109:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50109:25:0;:33;;-1:-1:-1;;50109:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50010:3;::::1;::::0;::::1;:::i;:::-;;;;49968:186;;51756:140:::0;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;51827:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51865:23;51880:7;51865:23;;;;;;:::i;:::-;;;;;;;;51756:140:::0;:::o;52038:96::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;52107:9:::1;:19:::0;52038:96::o;48858:45::-;;;;:::o;21243:239::-;21315:7;21351:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21351:16:0;21386:19;21378:73;;;;-1:-1:-1;;;21378:73:0;;;;;;;:::i;52262:106::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;52336:14:::1;:24:::0;52262:106::o;48815:36::-;;;;:::o;20973:208::-;21045:7;-1:-1:-1;;;;;21073:19:0;;21065:74;;;;-1:-1:-1;;;21065:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21157:16:0;;;;;:9;:16;;;;;;;20973:208::o;42443:94::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;42508:21:::1;42526:1;42508:9;:21::i;:::-;42443:94::o:0;49595:276::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;49684:9:::1;49679:185;49699:20:::0;;::::1;49679:185;;;49773:1;49749:9:::0;;49759:1;49749:12;;::::1;;;-1:-1:-1::0;;;49749:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49749:26:0::1;;;49741:62;;;;-1:-1:-1::0;;;49741:62:0::1;;;;;;;:::i;:::-;49848:4;49820:11;:25;49832:9;;49842:1;49832:12;;;;;-1:-1:-1::0;;;49832:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49820:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49820:25:0;:32;;-1:-1:-1;;49820:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49721:3;::::1;::::0;::::1;:::i;:::-;;;;49679:185;;52627:1003:::0;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;52696:21:::1;52736:11:::0;52728:43:::1;;;;-1:-1:-1::0;;;52728:43:0::1;;;;;;;:::i;:::-;52782:16;52819:4;52802:13;:7:::0;52812:3:::1;52802:13;:::i;:::-;52801:22;;;;:::i;:::-;52782:41:::0;-1:-1:-1;52834:15:0::1;52869:4;52853:12;:7:::0;52863:2:::1;52853:12;:::i;:::-;52852:21;;;;:::i;:::-;52834:39:::0;-1:-1:-1;52884:14:0::1;52919:4;52902:13;:7:::0;52912:3:::1;52902:13;:::i;:::-;52901:22;;;;:::i;:::-;52884:39:::0;-1:-1:-1;52934:12:0::1;52967:4;52950:13;:7:::0;52960:3:::1;52950:13;:::i;:::-;52949:22;;;;:::i;:::-;52934:37;;52985:12;53011:42;-1:-1:-1::0;;;;;53003:56:0::1;53067:8;53003:77;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52984:96;;;53099:7;53091:44;;;;-1:-1:-1::0;;;53091:44:0::1;;;;;;;:::i;:::-;53147:13;53174:42;-1:-1:-1::0;;;;;53166:56:0::1;53230:7;53166:76;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53146:96;;;53261:8;53253:47;;;;-1:-1:-1::0;;;53253:47:0::1;;;;;;;:::i;:::-;53312:13;53339:42;-1:-1:-1::0;;;;;53331:56:0::1;53395:6;53331:75;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53311:95;;;53425:8;53417:46;;;;-1:-1:-1::0;;;53417:46:0::1;;;;;;;:::i;:::-;53475:13;53502:42;-1:-1:-1::0;;;;;53494:56:0::1;53558:4;53494:73;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53474:93;;;53586:8;53578:44;;;;-1:-1:-1::0;;;53578:44:0::1;;;;;;;:::i;:::-;42083:1;;;;;;;;;52627:1003::o:0;52376:122::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;52458:22:::1;:32:::0;52376:122::o;41792:87::-;41865:6;;-1:-1:-1;;;;;41865:6:0;41792:87;:::o;50549:948::-;50624:12;;;;50616:56;;;;-1:-1:-1;;;50616:56:0;;;;;;;:::i;:::-;50722:14;;50706:12;50691;:10;:12::i;:::-;:27;;;;:::i;:::-;:45;;50683:89;;;;-1:-1:-1;;;50683:89:0;;;;;;;:::i;:::-;50788:21;:19;:21::i;:::-;50785:490;;;50862:9;50846:12;50834:9;;:24;;;;:::i;:::-;:37;50826:73;;;;-1:-1:-1;;;50826:73:0;;;;;;;:::i;:::-;50962:14;;50946:12;50922:21;50932:10;50922:9;:21::i;:::-;:36;;;;:::i;:::-;:54;;50914:106;;;;-1:-1:-1;;;50914:106:0;;;;;;;:::i;:::-;50785:490;;;51097:9;51081:12;51061:17;;:32;;;;:::i;:::-;:45;51053:81;;;;-1:-1:-1;;;51053:81:0;;;;;;;:::i;:::-;51197:22;;51181:12;51157:21;51167:10;51157:9;:21::i;:::-;:36;;;;:::i;:::-;:62;;51149:114;;;;-1:-1:-1;;;51149:114:0;;;;;;;:::i;:::-;51292:9;51287:146;51311:12;51307:1;:16;51287:146;;;51345:15;51363:11;:9;:11::i;:::-;51345:29;;51391:30;51401:10;51413:7;51391:9;:30::i;:::-;-1:-1:-1;51325:3:0;;;;:::i;:::-;;;;51287:146;;;;51450:39;51464:10;51476:12;51450:39;;;;;;;:::i;21718:104::-;21774:13;21807:7;21800:14;;;;;:::i;45275:99::-;45318:7;45345:21;:11;:19;:21::i;23401:295::-;23516:12;:10;:12::i;:::-;-1:-1:-1;;;;;23504:24:0;:8;-1:-1:-1;;;;;23504:24:0;;;23496:62;;;;-1:-1:-1;;;23496:62:0;;;;;;;:::i;:::-;23616:8;23571:18;:32;23590:12;:10;:12::i;:::-;-1:-1:-1;;;;;23571:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23571:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23571:53:0;;;;;;;;;;;23655:12;:10;:12::i;:::-;-1:-1:-1;;;;;23640:48:0;;23679:8;23640:48;;;;;;:::i;:::-;;;;;;;;23401:295;;:::o;48726:36::-;;;;:::o;24664:328::-;24839:41;24858:12;:10;:12::i;:::-;24872:7;24839:18;:41::i;:::-;24831:103;;;;-1:-1:-1;;;24831:103:0;;;;;;;:::i;:::-;24945:39;24959:4;24965:2;24969:7;24978:5;24945:13;:39::i;:::-;24664:328;;;;:::o;52142:112::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;52219:17:::1;:27:::0;52142:112::o;21893:334::-;21966:13;22000:16;22008:7;22000;:16::i;:::-;21992:76;;;;-1:-1:-1;;;21992:76:0;;;;;;;:::i;:::-;22081:21;22105:10;:8;:10::i;:::-;22081:34;;22157:1;22139:7;22133:21;:25;:86;;;;;;;;;;;;;;;;;22185:7;22194:18;:7;:16;:18::i;:::-;22168:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22133:86;22126:93;21893:334;-1:-1:-1;;;21893:334:0:o;48964:34::-;;;;:::o;49094:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45097:87::-;45166:10;;45097:87;:::o;49048:39::-;;;;:::o;45480:113::-;45532:7;45573:12;:10;:12::i;:::-;45559:11;:9;:11::i;:::-;:26;;;;:::i;51904:126::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;51988:24:::1;:34:::0;51904:126::o;23767:164::-;-1:-1:-1;;;;;23888:25:0;;;23864:4;23888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23767:164::o;49007:32::-;;;;;;:::o;42692:192::-;42023:12;:10;:12::i;:::-;-1:-1:-1;;;;;42012:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42012:23:0;;42004:68;;;;-1:-1:-1;;;42004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42781:22:0;::::1;42773:73;;;;-1:-1:-1::0;;;42773:73:0::1;;;;;;;:::i;:::-;42857:19;42867:8;42857:9;:19::i;:::-;42692:192:::0;:::o;48916:41::-;;;;:::o;34646:224::-;34748:4;-1:-1:-1;;;;;;34772:50:0;;-1:-1:-1;;;34772:50:0;;:90;;;34826:36;34850:11;34826:23;:36::i;26502:127::-;26567:4;26591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26591:16:0;:30;;;26502:127::o;16036:98::-;16116:10;16036:98;:::o;30484:174::-;30559:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30559:29:0;-1:-1:-1;;;;;30559:29:0;;;;;;;;:24;;30613:23;30559:24;30613:14;:23::i;:::-;-1:-1:-1;;;;;30604:46:0;;;;;;;;;;;30484:174;;:::o;26796:348::-;26889:4;26914:16;26922:7;26914;:16::i;:::-;26906:73;;;;-1:-1:-1;;;26906:73:0;;;;;;;:::i;:::-;26990:13;27006:23;27021:7;27006:14;:23::i;:::-;26990:39;;27059:5;-1:-1:-1;;;;;27048:16:0;:7;-1:-1:-1;;;;;27048:16:0;;:51;;;;27092:7;-1:-1:-1;;;;;27068:31:0;:20;27080:7;27068:11;:20::i;:::-;-1:-1:-1;;;;;27068:31:0;;27048:51;:87;;;;27103:32;27120:5;27127:7;27103:16;:32::i;:::-;27040:96;26796:348;-1:-1:-1;;;;26796:348:0:o;29788:578::-;29947:4;-1:-1:-1;;;;;29920:31:0;:23;29935:7;29920:14;:23::i;:::-;-1:-1:-1;;;;;29920:31:0;;29912:85;;;;-1:-1:-1;;;29912:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30016:16:0;;30008:65;;;;-1:-1:-1;;;30008:65:0;;;;;;;:::i;:::-;30086:39;30107:4;30113:2;30117:7;30086:20;:39::i;:::-;30190:29;30207:1;30211:7;30190:8;:29::i;:::-;-1:-1:-1;;;;;30232:15:0;;;;;;:9;:15;;;;;:20;;30251:1;;30232:15;:20;;30251:1;;30232:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30263:13:0;;;;;;:9;:13;;;;;:18;;30280:1;;30263:13;:18;;30280:1;;30263:18;:::i;:::-;;;;-1:-1:-1;;30292:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30292:21:0;-1:-1:-1;;;;;30292:21:0;;;;;;;;;30331:27;;30292:16;;30331:27;;;;;;;29788:578;;;:::o;47195:1262::-;47262:7;46037:1;46013:21;:19;:21::i;:::-;:25;46005:62;;;;-1:-1:-1;;;46005:62:0;;;;;;;:::i;:::-;47282:16:::1;47315:12;:10;:12::i;:::-;47301:11;:9;:11::i;:::-;:26;;;;:::i;:::-;47282:45;;47338:14;47597:8;47422:10;47451:14;47484:16;47519:14;47552:15;47387:195;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47363:230;;;;;;47355:239;;:250;;;;:::i;:::-;47618:13;47650:19:::0;;;:11:::1;:19;::::0;;;;;47338:267;;-1:-1:-1;47618:13:0;47646:304:::1;;-1:-1:-1::0;47795:6:0;47646:304:::1;;;-1:-1:-1::0;47919:19:0::1;::::0;;;:11:::1;:19;::::0;;;;;47646:304:::1;48027:11;:25;48039:12;48050:1;48039:8:::0;:12:::1;:::i;:::-;48027:25;;;;;;;;;;;;48056:1;48027:30;48023:331;;;48161:12;48172:1;48161:8:::0;:12:::1;:::i;:::-;48139:19;::::0;;;:11:::1;:19;::::0;;;;:34;48023:331:::1;;;48317:11;:25;48329:12;48340:1;48329:8:::0;:12:::1;:::i;:::-;48317:25:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;48317:25:0;;;;48295:19;;;:11:::1;:19:::0;;;;:47;48023:331:::1;48395:17;:15;:17::i;:::-;-1:-1:-1::0;48440:9:0::1;::::0;48432:17:::1;::::0;:5;:17:::1;:::i;:::-;48425:24;;;;;47195:1262:::0;:::o;27486:110::-;27562:26;27572:2;27576:7;27562:26;;;;;;;;;;;;:9;:26::i;42892:173::-;42967:6;;;-1:-1:-1;;;;;42984:17:0;;;-1:-1:-1;;;;;;42984:17:0;;;;;;;43017:40;;42967:6;;;42984:17;42967:6;;43017:40;;42948:16;;43017:40;42892:173;;:::o;43830:114::-;43922:14;;43830:114::o;25874:315::-;26031:28;26041:4;26047:2;26051:7;26031:9;:28::i;:::-;26078:48;26101:4;26107:2;26111:7;26120:5;26078:22;:48::i;:::-;26070:111;;;;-1:-1:-1;;;26070:111:0;;;;;;;:::i;52506:113::-;52566:13;52599:12;52592:19;;;;;:::i;16563:723::-;16619:13;16840:10;16836:53;;-1:-1:-1;16867:10:0;;;;;;;;;;;;-1:-1:-1;;;16867:10:0;;;;;;16836:53;16914:5;16899:12;16955:78;16962:9;;16955:78;;16988:8;;;;:::i;:::-;;-1:-1:-1;17011:10:0;;-1:-1:-1;17019:2:0;17011:10;;:::i;:::-;;;16955:78;;;17043:19;17075:6;17065:17;;;;;;-1:-1:-1;;;17065:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17065:17:0;;17043:39;;17093:154;17100:10;;17093:154;;17127:11;17137:1;17127:11;;:::i;:::-;;-1:-1:-1;17196:10:0;17204:2;17196:5;:10;:::i;:::-;17183:24;;:2;:24;:::i;:::-;17170:39;;17153:6;17160;17153:14;;;;;;-1:-1:-1;;;17153:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17153:56:0;;;;;;;;-1:-1:-1;17224:11:0;17233:2;17224:11;;:::i;:::-;;;17093:154;;20604:305;20706:4;-1:-1:-1;;;;;;20743:40:0;;-1:-1:-1;;;20743:40:0;;:105;;-1:-1:-1;;;;;;;20800:48:0;;-1:-1:-1;;;20800:48:0;20743:105;:158;;;;20865:36;20889:11;20865:23;:36::i;53871:215::-;54033:45;54060:4;54066:2;54070:7;54033:26;:45::i;45703:192::-;45769:7;46037:1;46013:21;:19;:21::i;:::-;:25;46005:62;;;;-1:-1:-1;;;46005:62:0;;;;;;;:::i;:::-;45789:13:::1;45805:21;:11;:19;:21::i;:::-;45789:37;;45839:23;:11;:21;:23::i;27823:321::-:0;27953:18;27959:2;27963:7;27953:5;:18::i;:::-;28004:54;28035:1;28039:2;28043:7;28052:5;28004:22;:54::i;:::-;27982:154;;;;-1:-1:-1;;;27982:154:0;;;;;;;:::i;31223:799::-;31378:4;31399:15;:2;-1:-1:-1;;;;;31399:13:0;;:15::i;:::-;31395:620;;;31451:2;-1:-1:-1;;;;;31435:36:0;;31472:12;:10;:12::i;:::-;31486:4;31492:7;31501:5;31435:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31435:72:0;;;;;;;;-1:-1:-1;;31435:72:0;;;;;;;;;;;;:::i;:::-;;;31431:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31677:13:0;;31673:272;;31720:60;;-1:-1:-1;;;31720:60:0;;;;;;;:::i;31673:272::-;31895:6;31889:13;31880:6;31876:2;31872:15;31865:38;31431:529;-1:-1:-1;;;;;;31558:51:0;-1:-1:-1;;;31558:51:0;;-1:-1:-1;31551:58:0;;31395:620;-1:-1:-1;31999:4:0;31223:799;;;;;;:::o;19120:157::-;-1:-1:-1;;;;;;19229:40:0;;-1:-1:-1;;;19229:40:0;19120:157;;;:::o;36322:589::-;36466:45;36493:4;36499:2;36503:7;36466:26;:45::i;:::-;-1:-1:-1;;;;;36528:18:0;;36524:187;;36563:40;36595:7;36563:31;:40::i;:::-;36524:187;;;36633:2;-1:-1:-1;;;;;36625:10:0;:4;-1:-1:-1;;;;;36625:10:0;;36621:90;;36652:47;36685:4;36691:7;36652:32;:47::i;:::-;-1:-1:-1;;;;;36725:16:0;;36721:183;;36758:45;36795:7;36758:36;:45::i;:::-;36721:183;;;36831:4;-1:-1:-1;;;;;36825:10:0;:2;-1:-1:-1;;;;;36825:10:0;;36821:83;;36852:40;36880:2;36884:7;36852:27;:40::i;43952:127::-;44041:19;;44059:1;44041:19;;;43952:127::o;28480:382::-;-1:-1:-1;;;;;28560:16:0;;28552:61;;;;-1:-1:-1;;;28552:61:0;;;;;;;:::i;:::-;28633:16;28641:7;28633;:16::i;:::-;28632:17;28624:58;;;;-1:-1:-1;;;28624:58:0;;;;;;;:::i;:::-;28695:45;28724:1;28728:2;28732:7;28695:20;:45::i;:::-;-1:-1:-1;;;;;28753:13:0;;;;;;:9;:13;;;;;:18;;28770:1;;28753:13;:18;;28770:1;;28753:18;:::i;:::-;;;;-1:-1:-1;;28782:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28782:21:0;-1:-1:-1;;;;;28782:21:0;;;;;;;;28821:33;;28782:16;;;28821:33;;28782:16;;28821:33;28480:382;;:::o;8078:387::-;8401:20;8449:8;;;8078:387::o;37634:164::-;37738:10;:17;;37711:24;;;;:15;:24;;;;;:44;;;37766:24;;;;;;;;;;;;37634:164::o;38425:988::-;38691:22;38741:1;38716:22;38733:4;38716:16;:22::i;:::-;:26;;;;:::i;:::-;38753:18;38774:26;;;:17;:26;;;;;;38691:51;;-1:-1:-1;38907:28:0;;;38903:328;;-1:-1:-1;;;;;38974:18:0;;38952:19;38974:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39025:30;;;;;;:44;;;39142:30;;:17;:30;;;;;:43;;;38903:328;-1:-1:-1;39327:26:0;;;;:17;:26;;;;;;;;39320:33;;;-1:-1:-1;;;;;39371:18:0;;;;;:12;:18;;;;;:34;;;;;;;39364:41;38425:988::o;39708:1079::-;39986:10;:17;39961:22;;39986:21;;40006:1;;39986:21;:::i;:::-;40018:18;40039:24;;;:15;:24;;;;;;40412:10;:26;;39961:46;;-1:-1:-1;40039:24:0;;39961:46;;40412:26;;;;-1:-1:-1;;;40412:26:0;;;;;;;;;;;;;;;;;40390:48;;40476:11;40451:10;40462;40451:22;;;;;;-1:-1:-1;;;40451:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40556:28;;;:15;:28;;;;;;;:41;;;40728:24;;;;;40721:31;40763:10;:16;;;;;-1:-1:-1;;;40763:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39708:1079;;;;:::o;37212:221::-;37297:14;37314:20;37331:2;37314:16;:20::i;:::-;-1:-1:-1;;;;;37345:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37390:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37212:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:259::-;;4949:5;4943:12;4976:6;4971:3;4964:19;4992:63;5048:6;5041:4;5036:3;5032:14;5025:4;5018:5;5014:16;4992:63;:::i;:::-;5109:2;5088:15;-1:-1:-1;;5084:29:1;5075:39;;;;5116:4;5071:50;;4919:208;-1:-1:-1;;4919:208:1:o;5132:546::-;-1:-1:-1;;5459:2:1;5455:15;;;5451:24;;5439:37;;5510:15;;;;5506:24;;;5501:2;5492:12;;5485:46;5556:2;5547:12;;5540:28;;;;5593:2;5584:12;;5577:28;5630:3;5621:13;;5614:29;5668:3;5659:13;;5379:299::o;5683:470::-;;5900:6;5894:13;5916:53;5962:6;5957:3;5950:4;5942:6;5938:17;5916:53;:::i;:::-;6032:13;;5991:16;;;;6054:57;6032:13;5991:16;6088:4;6076:17;;6054:57;:::i;:::-;6127:20;;5870:283;-1:-1:-1;;;;5870:283:1:o;6158:205::-;6358:3;6349:14::o;6368:203::-;-1:-1:-1;;;;;6532:32:1;;;;6514:51;;6502:2;6487:18;;6469:102::o;6576:490::-;-1:-1:-1;;;;;6845:15:1;;;6827:34;;6897:15;;6892:2;6877:18;;6870:43;6944:2;6929:18;;6922:34;;;6992:3;6987:2;6972:18;;6965:31;;;6576:490;;7013:47;;7040:19;;7032:6;7013:47;:::i;:::-;7005:55;6779:287;-1:-1:-1;;;;;;6779:287:1:o;7071:274::-;-1:-1:-1;;;;;7263:32:1;;;;7245:51;;7327:2;7312:18;;7305:34;7233:2;7218:18;;7200:145::o;7350:187::-;7515:14;;7508:22;7490:41;;7478:2;7463:18;;7445:92::o;7542:221::-;;7691:2;7680:9;7673:21;7711:46;7753:2;7742:9;7738:18;7730:6;7711:46;:::i;7768:355::-;7970:2;7952:21;;;8009:2;7989:18;;;7982:30;8048:33;8043:2;8028:18;;8021:61;8114:2;8099:18;;7942:181::o;8128:407::-;8330:2;8312:21;;;8369:2;8349:18;;;8342:30;8408:34;8403:2;8388:18;;8381:62;-1:-1:-1;;;8474:2:1;8459:18;;8452:41;8525:3;8510:19;;8302:233::o;8540:414::-;8742:2;8724:21;;;8781:2;8761:18;;;8754:30;8820:34;8815:2;8800:18;;8793:62;-1:-1:-1;;;8886:2:1;8871:18;;8864:48;8944:3;8929:19;;8714:240::o;8959:402::-;9161:2;9143:21;;;9200:2;9180:18;;;9173:30;9239:34;9234:2;9219:18;;9212:62;-1:-1:-1;;;9305:2:1;9290:18;;9283:36;9351:3;9336:19;;9133:228::o;9366:352::-;9568:2;9550:21;;;9607:2;9587:18;;;9580:30;9646;9641:2;9626:18;;9619:58;9709:2;9694:18;;9540:178::o;9723:400::-;9925:2;9907:21;;;9964:2;9944:18;;;9937:30;10003:34;9998:2;9983:18;;9976:62;-1:-1:-1;;;10069:2:1;10054:18;;10047:34;10113:3;10098:19;;9897:226::o;10128:349::-;10330:2;10312:21;;;10369:2;10349:18;;;10342:30;10408:27;10403:2;10388:18;;10381:55;10468:2;10453:18;;10302:175::o;10482:348::-;10684:2;10666:21;;;10723:2;10703:18;;;10696:30;10762:26;10757:2;10742:18;;10735:54;10821:2;10806:18;;10656:174::o;10835:408::-;11037:2;11019:21;;;11076:2;11056:18;;;11049:30;11115:34;11110:2;11095:18;;11088:62;-1:-1:-1;;;11181:2:1;11166:18;;11159:42;11233:3;11218:19;;11009:234::o;11248:348::-;11450:2;11432:21;;;11489:2;11469:18;;;11462:30;11528:26;11523:2;11508:18;;11501:54;11587:2;11572:18;;11422:174::o;11601:420::-;11803:2;11785:21;;;11842:2;11822:18;;;11815:30;11881:34;11876:2;11861:18;;11854:62;11952:26;11947:2;11932:18;;11925:54;12011:3;11996:19;;11775:246::o;12026:349::-;12228:2;12210:21;;;12267:2;12247:18;;;12240:30;12306:27;12301:2;12286:18;;12279:55;12366:2;12351:18;;12200:175::o;12380:406::-;12582:2;12564:21;;;12621:2;12601:18;;;12594:30;12660:34;12655:2;12640:18;;12633:62;-1:-1:-1;;;12726:2:1;12711:18;;12704:40;12776:3;12761:19;;12554:232::o;12791:405::-;12993:2;12975:21;;;13032:2;13012:18;;;13005:30;13071:34;13066:2;13051:18;;13044:62;-1:-1:-1;;;13137:2:1;13122:18;;13115:39;13186:3;13171:19;;12965:231::o;13201:355::-;13403:2;13385:21;;;13442:2;13422:18;;;13415:30;13481:33;13476:2;13461:18;;13454:61;13547:2;13532:18;;13375:181::o;13561:356::-;13763:2;13745:21;;;13782:18;;;13775:30;13841:34;13836:2;13821:18;;13814:62;13908:2;13893:18;;13735:182::o;13922:347::-;14124:2;14106:21;;;14163:2;14143:18;;;14136:30;14202:25;14197:2;14182:18;;14175:53;14260:2;14245:18;;14096:173::o;14274:408::-;14476:2;14458:21;;;14515:2;14495:18;;;14488:30;14554:34;14549:2;14534:18;;14527:62;-1:-1:-1;;;14620:2:1;14605:18;;14598:42;14672:3;14657:19;;14448:234::o;14687:343::-;14889:2;14871:21;;;14928:2;14908:18;;;14901:30;-1:-1:-1;;;14962:2:1;14947:18;;14940:49;15021:2;15006:18;;14861:169::o;15035:356::-;15237:2;15219:21;;;15256:18;;;15249:30;15315:34;15310:2;15295:18;;15288:62;15382:2;15367:18;;15209:182::o;15396:405::-;15598:2;15580:21;;;15637:2;15617:18;;;15610:30;15676:34;15671:2;15656:18;;15649:62;-1:-1:-1;;;15742:2:1;15727:18;;15720:39;15791:3;15776:19;;15570:231::o;15806:411::-;16008:2;15990:21;;;16047:2;16027:18;;;16020:30;16086:34;16081:2;16066:18;;16059:62;-1:-1:-1;;;16152:2:1;16137:18;;16130:45;16207:3;16192:19;;15980:237::o;16222:397::-;16424:2;16406:21;;;16463:2;16443:18;;;16436:30;16502:34;16497:2;16482:18;;16475:62;-1:-1:-1;;;16568:2:1;16553:18;;16546:31;16609:3;16594:19;;16396:223::o;16624:347::-;16826:2;16808:21;;;16865:2;16845:18;;;16838:30;16904:25;16899:2;16884:18;;16877:53;16962:2;16947:18;;16798:173::o;16976:347::-;17178:2;17160:21;;;17217:2;17197:18;;;17190:30;17256:25;17251:2;17236:18;;17229:53;17314:2;17299:18;;17150:173::o;17328:413::-;17530:2;17512:21;;;17569:2;17549:18;;;17542:30;17608:34;17603:2;17588:18;;17581:62;-1:-1:-1;;;17674:2:1;17659:18;;17652:47;17731:3;17716:19;;17502:239::o;17746:350::-;17948:2;17930:21;;;17987:2;17967:18;;;17960:30;18026:28;18021:2;18006:18;;17999:56;18087:2;18072:18;;17920:176::o;18101:408::-;18303:2;18285:21;;;18342:2;18322:18;;;18315:30;18381:34;18376:2;18361:18;;18354:62;-1:-1:-1;;;18447:2:1;18432:18;;18425:42;18499:3;18484:19;;18275:234::o;18514:403::-;18716:2;18698:21;;;18755:2;18735:18;;;18728:30;18794:34;18789:2;18774:18;;18767:62;-1:-1:-1;;;18860:2:1;18845:18;;18838:37;18907:3;18892:19;;18688:229::o;18922:177::-;19068:25;;;19056:2;19041:18;;19023:76::o;19104:128::-;;19175:1;19171:6;19168:1;19165:13;19162:2;;;19181:18;;:::i;:::-;-1:-1:-1;19217:9:1;;19152:80::o;19237:120::-;;19303:1;19293:2;;19308:18;;:::i;:::-;-1:-1:-1;19342:9:1;;19283:74::o;19362:168::-;;19468:1;19464;19460:6;19456:14;19453:1;19450:21;19445:1;19438:9;19431:17;19427:45;19424:2;;;19475:18;;:::i;:::-;-1:-1:-1;19515:9:1;;19414:116::o;19535:125::-;;19603:1;19600;19597:8;19594:2;;;19608:18;;:::i;:::-;-1:-1:-1;19645:9:1;;19584:76::o;19665:258::-;19737:1;19747:113;19761:6;19758:1;19755:13;19747:113;;;19837:11;;;19831:18;19818:11;;;19811:39;19783:2;19776:10;19747:113;;;19878:6;19875:1;19872:13;19869:2;;;-1:-1:-1;;19913:1:1;19895:16;;19888:27;19718:205::o;19928:380::-;20013:1;20003:12;;20060:1;20050:12;;;20071:2;;20125:4;20117:6;20113:17;20103:27;;20071:2;20178;20170:6;20167:14;20147:18;20144:38;20141:2;;;20224:10;20219:3;20215:20;20212:1;20205:31;20259:4;20256:1;20249:15;20287:4;20284:1;20277:15;20141:2;;19983:325;;;:::o;20313:135::-;;-1:-1:-1;;20373:17:1;;20370:2;;;20393:18;;:::i;:::-;-1:-1:-1;20440:1:1;20429:13;;20360:88::o;20453:112::-;;20511:1;20501:2;;20516:18;;:::i;:::-;-1:-1:-1;20550:9:1;;20491:74::o;20570:127::-;20631:10;20626:3;20622:20;20619:1;20612:31;20662:4;20659:1;20652:15;20686:4;20683:1;20676:15;20702:127;20763:10;20758:3;20754:20;20751:1;20744:31;20794:4;20791:1;20784:15;20818:4;20815:1;20808:15;20834:127;20895:10;20890:3;20886:20;20883:1;20876:31;20926:4;20923:1;20916:15;20950:4;20947:1;20940:15;20966:133;-1:-1:-1;;;;;;21042:32:1;;21032:43;;21022:2;;21089:1;21086;21079:12

Swarm Source

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