ETH Price: $2,518.93 (-0.95%)

Token

MetaGemsOfficial (MgO7)
 

Overview

Max Total Supply

151 MgO7

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
27 MgO7
0x0a0c9517af8d3899de982c41a6c53e201acfaaa1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MetaGems are the most powerful resources in our metaverse. According to legend, A GodGems was sent from a digital 3.0 parallel world and landed on Earth creating a portal to their World of the Future. These MetaGems have the ability to create sparkling $DUST, a property that f...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
nftCryptoGems

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-16
*/

// SPDX-License-Identifier: MIT

 
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
 
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
 
    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
 
    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
 
    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
 
    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;
 
    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);
 
    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;
 
    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
 
 
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
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/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
 
// File: @openzeppelin/contracts/utils/Strings.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
 
    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
 
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
 
    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }
 
    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
 
// File: @openzeppelin/contracts/utils/Address.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.
 
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
 
    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");
 
        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
 
    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }
 
    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");
 
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");
 
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");
 
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }
 
    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
 
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
 
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
 
 
 
pragma solidity ^0.8.0;
 
 
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
 
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
 
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
 
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
 
    // Token name
    string private _name;
 
    // Token symbol
    string private _symbol;
 
    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;
 
    // Mapping owner address to token count
    mapping(address => uint256) private _balances;
 
    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;
 
    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
 
    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
 
    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }
 
    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
 
    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }
 
    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }
 
    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");
 
        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );
 
        _approve(to, tokenId);
    }
 
    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
 
        return _tokenApprovals[tokenId];
    }
 
    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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/ERC721Enumerable.sol
 
pragma solidity ^0.8.0;
 
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
 
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
 
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
 
 }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
   
 
 
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/Ownable.sol
pragma solidity ^0.8.0;
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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.7.0 <0.9.0;
 
 
contract nftCryptoGems is ERC721Enumerable, Ownable {
 
  using Strings for uint256;
 
  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.0777 ether; // a changer pour le mainet
  uint256 public maxSupply = 777;  // a changer pour le mainet
  uint256 public maxMintAmount = 7;  // a changer pour le mainet
  uint256 public nftPerAddressLimit = 7;
  uint256 public headStart = block.timestamp + 1 days;
  bool public paused = false;
  bool public revealed = false;
  string public notRevealedUri;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;
 
  bool public finalPay = false;
 
  address t1 = 0xfC39E340Af7600D74157E89B18D553B4590E9797;
    address t2 = 0x6e49117CceF4B1bDBd3cE5118910f3D17D953843; 
    address t3 = 0x8049cAE2a712bDc2564731c7869aE7F4652eC38D; 
    address t4 = 0x8B7732BCcb98a943bD275F71875fBCA63B54220a; 
     address t5 = 0x3b99B4E2464138884F327761eBf93CaBC83A445B; 
        address t6 = 0x3b99B4E2464138884F327761eBf93CaBC83A445B; 
    address t7 = 0x7cb0699dB6ff4BccC9BAd16D5156fB6EC52a9212; 
    address t8= 0x9E12628bB95Fd4178c3bc0E92d2a16c1DD47B897; 
    address t9 = 0x6e49117CceF4B1bDBd3cE5118910f3D17D953843; 
     address t10 = 0x70Ea37998Be29144491d313b3AAe8525FF82E839; 
      address g1 = 0x952482221CfAB5e156B4d9005282DEd58d79A6f4;
    address g2 = 0x1219c4EBbD27B81C42A901583416DF11AfBca7F2;
    address g3 = 0x201Ba15A16C7008af567b5E25b281BEb9D29c43C; 
    address g4 = 0x713965F5855d43d330C5C1e986896F7A89756878; 
     address g5 = 0xB9E069EBda129DE346898BB8bc821733D7F6fd2c; 
        address g6 = 0x0920238aeFE1b860907bBe6c51FCE2493d26f759;
    address g7 = 0xE0Af27546ACf7523d019F763C9bFad33B2286319; 
    address g8= 0x7cb0699dB6ff4BccC9BAd16D5156fB6EC52a9212; 
    address g9 = 0xd4a59AF4Dd01Aa453a7254639810E4926bEBb075;
     address g10 = 0x7cb0699dB6ff4BccC9BAd16D5156fB6EC52a9212; 
 constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
   
      _safeMint( t1, 1);
        _safeMint( t2, 2);
        _safeMint( t3, 3);
        _safeMint( t4, 4);
        _safeMint( t5, 5);
         _safeMint( t6, 6);
        _safeMint( t7, 7);
        _safeMint( t8, 8);
        _safeMint( t9, 9);
        _safeMint( t10, 10);
           _safeMint( g1, 11);
        _safeMint( g2, 12);
        _safeMint( g3, 13);
        _safeMint( g4, 14);
        _safeMint( g5, 15);
         _safeMint( g6, 16);
        _safeMint( g7, 17);
        _safeMint( g8, 18);
        _safeMint( g9, 19);
        _safeMint( g10, 20);
  }
 
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
 
 
 function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();  
    require(!paused, "Contract is paused!");
    require(_mintAmount > 0, "must mintAmount > 0");
    require(_mintAmount <= maxMintAmount, "maxmintamount limit exceed");
    require(supply + _mintAmount <= maxSupply, "supply amount exceed");
    require(msg.sender != owner(), "Owner can not mint!");    
    require(msg.value >= cost * _mintAmount, "Not enough funds!");
 if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
   
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
    }
    function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
 
    }
 
 
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
 
 
 
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
   
   if(revealed == false) {
     return notRevealedUri;
   }
 
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
 
  //only owner
  function reveal() public onlyOwner() {
      revealed = true;
  }
 
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }
 
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
   notRevealedUri = _notRevealedURI;
  }
 
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
 
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
 
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 
function _widthdraw(address _address, uint256 _amount) private {
    (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
}
 
  // minting rewards bonus for people who help.
    function withdraw() public payable onlyOwner {
    uint256 supply = totalSupply();
    require(supply == maxSupply || block.timestamp >= headStart, "Can not withdraw yet.");
 
    require(address(this).balance > 1 ether);  
    uint256 poolBalance = address(this).balance * 20 / 100;  
    uint256 bankBalance = address(this).balance * 30 / 100;  
    if(finalPay == false) {
      finalPay = true;
           (bool communitygrowth, ) = payable(0x5751E1e0EF3198f4AD2f5483a68dB699cBfECDD8).call{value: poolBalance}("");
    require(communitygrowth);
    }
  

    //Metabank
    (bool metaversebank, ) = payable(0x7cb0699dB6ff4BccC9BAd16D5156fB6EC52a9212).call{value: bankBalance}("");
    require(metaversebank);
 
    //founder
    uint256 founderBalance = address(this).balance;  
    (bool founder1, ) = payable(0x6e49117CceF4B1bDBd3cE5118910f3D17D953843).call{value: founderBalance * 45 / 100}("");
    require(founder1);
    (bool founder2, ) = payable(0xA58ee9834F6D52cF936e538908449E60D9e4A6Bf).call{value: founderBalance * 225 / 1000}("");
    require(founder2);
    (bool founder3, ) = payable(0xfC39E340Af7600D74157E89B18D553B4590E9797).call{value: founderBalance * 20 / 100}("");
    require(founder3);
    (bool founder4, ) = payable(0x8B7732BCcb98a943bD275F71875fBCA63B54220a).call{value: founderBalance * 125 / 1000}("");
    require(founder4);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalPay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"headStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000cc6565b506701140bbd030c4000600d55610309600e556007600f81905560105562000054426201518062000f3f565b6011556012805461ffff191690556014805460ff191690556017805474fc39e340af7600d74157e89b18d553b4590e9797006001600160a81b0319909116179055601880546001600160a01b0319908116736e49117ccef4b1bdbd3ce5118910f3d17d953843908117909255601980548216738049cae2a712bdc2564731c7869ae7f4652ec38d179055601a80548216738b7732bccb98a943bd275f71875fbca63b54220a179055601b80548216733b99b4e2464138884f327761ebf93cabc83a445b908117909155601c805483169091179055601d80548216737cb0699db6ff4bccc9bad16d5156fb6ec52a9212908117909155601e80548316739e12628bb95fd4178c3bc0e92d2a16c1dd47b897179055601f805483169093179092556020805482167370ea37998be29144491d313b3aae8525ff82e83917905560218054821673952482221cfab5e156b4d9005282ded58d79a6f4179055602280548216731219c4ebbd27b81c42a901583416df11afbca7f217905560238054821673201ba15a16c7008af567b5e25b281beb9d29c43c17905560248054821673713965f5855d43d330c5c1e986896f7a8975687817905560258054821673b9e069ebda129de346898bb8bc821733d7f6fd2c179055602680548216730920238aefe1b860907bbe6c51fce2493d26f75917905560278054821673e0af27546acf7523d019f763c9bfad33b22863191790556028805482168317905560298054821673d4a59af4dd01aa453a7254639810e4926bebb075179055602a80549091169091179055348015620002a457600080fd5b5060405162003bd938038062003bd9833981016040819052620002c79162000e30565b835184908490620002e090600090602085019062000cc6565b508051620002f690600190602084019062000cc6565b505050620003136200030d6200052c60201b60201c565b62000530565b6200031e8262000582565b6200032981620005ea565b601754620003479061010090046001600160a01b031660016200064a565b60185462000360906001600160a01b031660026200064a565b60195462000379906001600160a01b031660036200064a565b601a5462000392906001600160a01b031660046200064a565b601b54620003ab906001600160a01b031660056200064a565b601c54620003c4906001600160a01b031660066200064a565b601d54620003dd906001600160a01b031660076200064a565b601e54620003f6906001600160a01b031660086200064a565b601f546200040f906001600160a01b031660096200064a565b60205462000428906001600160a01b0316600a6200064a565b60215462000441906001600160a01b0316600b6200064a565b6022546200045a906001600160a01b0316600c6200064a565b60235462000473906001600160a01b0316600d6200064a565b6024546200048c906001600160a01b0316600e6200064a565b602554620004a5906001600160a01b0316600f6200064a565b602654620004be906001600160a01b031660106200064a565b602754620004d7906001600160a01b031660116200064a565b602854620004f0906001600160a01b031660126200064a565b60295462000509906001600160a01b031660136200064a565b602a5462000522906001600160a01b031660146200064a565b505050506200103c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620005d15760405162461bcd60e51b8152602060048201819052602482015260008051602062003bb983398151915260448201526064015b60405180910390fd5b8051620005e690600b90602084019062000cc6565b5050565b600a546001600160a01b03163314620006355760405162461bcd60e51b8152602060048201819052602482015260008051602062003bb98339815191526044820152606401620005c8565b8051620005e690601390602084019062000cc6565b620005e68282604051806020016040528060008152506200066c60201b60201c565b620006788383620006e4565b6200068760008484846200083a565b620006df5760405162461bcd60e51b8152602060048201526032602482015260008051602062003b9983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620005c8565b505050565b6001600160a01b0382166200073c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620005c8565b6000818152600260205260409020546001600160a01b031615620007a35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620005c8565b620007b160008383620009a3565b6001600160a01b0382166000908152600360205260408120805460019290620007dc90849062000f3f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200085b846001600160a01b031662000a7f60201b62001a0b1760201c565b156200099757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200089590339089908890889060040162000ee9565b602060405180830381600087803b158015620008b057600080fd5b505af1925050508015620008e3575060408051601f3d908101601f19168201909252620008e09181019062000dfd565b60015b6200097c573d80801562000914576040519150601f19603f3d011682016040523d82523d6000602084013e62000919565b606091505b508051620009745760405162461bcd60e51b8152602060048201526032602482015260008051602062003b9983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620005c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200099b565b5060015b949350505050565b620009bb838383620006df60201b62000aa11760201c565b6001600160a01b03831662000a195762000a1381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000a3f565b816001600160a01b0316836001600160a01b03161462000a3f5762000a3f838262000a85565b6001600160a01b03821662000a5957620006df8162000b32565b826001600160a01b0316826001600160a01b031614620006df57620006df828262000bec565b3b151590565b6000600162000a9f8462000c3d60201b620011d31760201c565b62000aab919062000f5a565b60008381526007602052604090205490915080821462000aff576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000b469060019062000f5a565b6000838152600960205260408120546008805493945090928490811062000b715762000b7162001010565b90600052602060002001549050806008838154811062000b955762000b9562001010565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000bd05762000bd062000ffa565b6001900381819060005260206000200160009055905550505050565b600062000c048362000c3d60201b620011d31760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000caa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620005c8565b506001600160a01b031660009081526003602052604090205490565b82805462000cd49062000fa7565b90600052602060002090601f01602090048101928262000cf8576000855562000d43565b82601f1062000d1357805160ff191683800117855562000d43565b8280016001018555821562000d43579182015b8281111562000d4357825182559160200191906001019062000d26565b5062000d5192915062000d55565b5090565b5b8082111562000d51576000815560010162000d56565b600082601f83011262000d7e57600080fd5b81516001600160401b038082111562000d9b5762000d9b62001026565b604051601f8301601f19908116603f0116810190828211818310171562000dc65762000dc662001026565b8160405283815286602085880101111562000de057600080fd5b62000df384602083016020890162000f74565b9695505050505050565b60006020828403121562000e1057600080fd5b81516001600160e01b03198116811462000e2957600080fd5b9392505050565b6000806000806080858703121562000e4757600080fd5b84516001600160401b038082111562000e5f57600080fd5b62000e6d8883890162000d6c565b9550602087015191508082111562000e8457600080fd5b62000e928883890162000d6c565b9450604087015191508082111562000ea957600080fd5b62000eb78883890162000d6c565b9350606087015191508082111562000ece57600080fd5b5062000edd8782880162000d6c565b91505092959194509250565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000f288160a085016020870162000f74565b601f01601f19169190910160a00195945050505050565b6000821982111562000f555762000f5562000fe4565b500190565b60008282101562000f6f5762000f6f62000fe4565b500390565b60005b8381101562000f9157818101518382015260200162000f77565b8381111562000fa1576000848401525b50505050565b600181811c9082168062000fbc57607f821691505b6020821081141562000fde57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612b4d806200104c6000396000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610695578063da3ef23f146106ab578063e985e9c5146106cb578063f2c4ce1e14610714578063f2fde38b14610734578063f55974ca1461075457600080fd5b8063b88d4fde1461060a578063ba4e5c491461062a578063ba7d2c761461064a578063c668286214610660578063c87b56dd1461067557600080fd5b80639c70b512116100fd5780639c70b5121461058e578063a0712d68146105a8578063a22cb465146105bb578063a475b5dd146105db578063ae5c1c50146105f057600080fd5b80636352211e1461050657806370a0823114610526578063715018a6146105465780638da5cb5b1461055b57806395d89b411461057957600080fd5b806323b872dd116101d2578063438b630011610196578063438b63001461044057806344a0d68a1461046d5780634f6ccce71461048d57806351830227146104ad57806355f804b3146104cc5780635c975abb146104ec57600080fd5b806323b872dd146103b85780632f745c59146103d85780633af32abf146103f85780633ccfd60b1461041857806342842e0e1461042057600080fd5b8063095ea7b311610219578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057806318cae26914610375578063239c70ae146103a257600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026257600080fd5b506102766102713660046126a3565b61076a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612688565b610795565b005b3480156102b957600080fd5b506102c26107db565b60405161028291906128b0565b3480156102db57600080fd5b506102ef6102ea366004612726565b61086d565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102c2610902565b34801561032857600080fd5b506102ab61033736600461265e565b610990565b34801561034857600080fd5b50610352600d5481565b604051908152602001610282565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b5061035261039036600461252e565b60166020526000908152604090205481565b3480156103ae57600080fd5b50610352600f5481565b3480156103c457600080fd5b506102ab6103d336600461257c565b610aa6565b3480156103e457600080fd5b506103526103f336600461265e565b610ad7565b34801561040457600080fd5b5061027661041336600461252e565b610b6d565b6102ab610bd7565b34801561042c57600080fd5b506102ab61043b36600461257c565b610f9c565b34801561044c57600080fd5b5061046061045b36600461252e565b610fb7565b604051610282919061286c565b34801561047957600080fd5b506102ab610488366004612726565b611059565b34801561049957600080fd5b506103526104a8366004612726565b611088565b3480156104b957600080fd5b5060125461027690610100900460ff1681565b3480156104d857600080fd5b506102ab6104e73660046126dd565b61111b565b3480156104f857600080fd5b506012546102769060ff1681565b34801561051257600080fd5b506102ef610521366004612726565b61115c565b34801561053257600080fd5b5061035261054136600461252e565b6111d3565b34801561055257600080fd5b506102ab61125a565b34801561056757600080fd5b50600a546001600160a01b03166102ef565b34801561058557600080fd5b506102c2611290565b34801561059a57600080fd5b506014546102769060ff1681565b6102ab6105b6366004612726565b61129f565b3480156105c757600080fd5b506102ab6105d6366004612634565b611608565b3480156105e757600080fd5b506102ab6116cd565b3480156105fc57600080fd5b506017546102769060ff1681565b34801561061657600080fd5b506102ab6106253660046125b8565b611708565b34801561063657600080fd5b506102ef610645366004612726565b611740565b34801561065657600080fd5b5061035260105481565b34801561066c57600080fd5b506102c261176a565b34801561068157600080fd5b506102c2610690366004612726565b611777565b3480156106a157600080fd5b50610352600e5481565b3480156106b757600080fd5b506102ab6106c63660046126dd565b6118f6565b3480156106d757600080fd5b506102766106e6366004612549565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072057600080fd5b506102ab61072f3660046126dd565b611933565b34801561074057600080fd5b506102ab61074f36600461252e565b611970565b34801561076057600080fd5b5061035260115481565b60006001600160e01b0319821663780e9d6360e01b148061078f575061078f82611a11565b92915050565b600a546001600160a01b031633146107c85760405162461bcd60e51b81526004016107bf90612915565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546107ea90612a29565b80601f016020809104026020016040519081016040528092919081815260200182805461081690612a29565b80156108635780601f1061083857610100808354040283529160200191610863565b820191906000526020600020905b81548152906001019060200180831161084657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bf565b506000908152600460205260409020546001600160a01b031690565b6013805461090f90612a29565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612a29565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b505050505081565b600061099b8261115c565b9050806001600160a01b0316836001600160a01b03161415610a095760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107bf565b336001600160a01b0382161480610a255750610a2581336106e6565b610a975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107bf565b610aa18383611a61565b505050565b610ab03382611acf565b610acc5760405162461bcd60e51b81526004016107bf9061294a565b610aa1838383611bc6565b6000610ae2836111d3565b8210610b445760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107bf565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601554811015610bce57826001600160a01b031660158281548110610b9857610b98612ad5565b6000918252602090912001546001600160a01b03161415610bbc5750600192915050565b80610bc681612a64565b915050610b71565b50600092915050565b600a546001600160a01b03163314610c015760405162461bcd60e51b81526004016107bf90612915565b6000610c0c60085490565b9050600e54811480610c2057506011544210155b610c645760405162461bcd60e51b815260206004820152601560248201527421b0b7103737ba103bb4ba34323930bb903cb2ba1760591b60448201526064016107bf565b670de0b6b3a76400004711610c7857600080fd5b60006064610c874760146129c7565b610c9191906129b3565b905060006064610ca247601e6129c7565b610cac91906129b3565b60175490915060ff16610d31576017805460ff19166001179055604051600090735751e1e0ef3198f4ad2f5483a68db699cbfecdd89084908381818185875af1925050503d8060008114610d1c576040519150601f19603f3d011682016040523d82523d6000602084013e610d21565b606091505b5050905080610d2f57600080fd5b505b604051600090737cb0699db6ff4bccc9bad16d5156fb6ec52a92129083908381818185875af1925050503d8060008114610d87576040519150601f19603f3d011682016040523d82523d6000602084013e610d8c565b606091505b5050905080610d9a57600080fd5b476000736e49117ccef4b1bdbd3ce5118910f3d17d9538436064610dbf84602d6129c7565b610dc991906129b3565b604051600081818185875af1925050503d8060008114610e05576040519150601f19603f3d011682016040523d82523d6000602084013e610e0a565b606091505b5050905080610e1857600080fd5b600073a58ee9834f6d52cf936e538908449e60d9e4a6bf6103e8610e3d8560e16129c7565b610e4791906129b3565b604051600081818185875af1925050503d8060008114610e83576040519150601f19603f3d011682016040523d82523d6000602084013e610e88565b606091505b5050905080610e9657600080fd5b600073fc39e340af7600d74157e89b18d553b4590e97976064610eba8660146129c7565b610ec491906129b3565b604051600081818185875af1925050503d8060008114610f00576040519150601f19603f3d011682016040523d82523d6000602084013e610f05565b606091505b5050905080610f1357600080fd5b6000738b7732bccb98a943bd275f71875fbca63b54220a6103e8610f3887607d6129c7565b610f4291906129b3565b604051600081818185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610f9157600080fd5b505050505050505050565b610aa183838360405180602001604052806000815250611708565b60606000610fc4836111d3565b905060008167ffffffffffffffff811115610fe157610fe1612aeb565b60405190808252806020026020018201604052801561100a578160200160208202803683370190505b50905060005b82811015611051576110228582610ad7565b82828151811061103457611034612ad5565b60209081029190910101528061104981612a64565b915050611010565b509392505050565b600a546001600160a01b031633146110835760405162461bcd60e51b81526004016107bf90612915565b600d55565b600061109360085490565b82106110f65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107bf565b6008828154811061110957611109612ad5565b90600052602060002001549050919050565b600a546001600160a01b031633146111455760405162461bcd60e51b81526004016107bf90612915565b805161115890600b9060208401906123f3565b5050565b6000818152600260205260408120546001600160a01b03168061078f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107bf565b60006001600160a01b03821661123e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107bf565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112845760405162461bcd60e51b81526004016107bf90612915565b61128e6000611d71565b565b6060600180546107ea90612a29565b60006112aa60085490565b60125490915060ff16156112f65760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016107bf565b6000821161133c5760405162461bcd60e51b815260206004820152601360248201527206d757374206d696e74416d6f756e74203e203606c1b60448201526064016107bf565b600f5482111561138e5760405162461bcd60e51b815260206004820152601a60248201527f6d61786d696e74616d6f756e74206c696d69742065786365656400000000000060448201526064016107bf565b600e5461139b838361299b565b11156113e05760405162461bcd60e51b81526020600482015260146024820152731cdd5c1c1b1e48185b5bdd5b9d08195e18d9595960621b60448201526064016107bf565b600a546001600160a01b03163314156114315760405162461bcd60e51b81526020600482015260136024820152724f776e65722063616e206e6f74206d696e742160681b60448201526064016107bf565b81600d5461143f91906129c7565b3410156114825760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f7567682066756e64732160781b60448201526064016107bf565b600a546001600160a01b031633146115b85760145460ff16151560011415611566576114ad33610b6d565b6114f95760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016107bf565b33600090815260166020526040902054601054611516848361299b565b11156115645760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107bf565b505b81600d5461157491906129c7565b3410156115b85760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016107bf565b60015b828111610aa1573360009081526016602052604081208054916115dd83612a64565b909155506115f69050336115f1838561299b565b611dc3565b8061160081612a64565b9150506115bb565b6001600160a01b0382163314156116615760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107bf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146116f75760405162461bcd60e51b81526004016107bf90612915565b6012805461ff001916610100179055565b6117123383611acf565b61172e5760405162461bcd60e51b81526004016107bf9061294a565b61173a84848484611ddd565b50505050565b6015818154811061175057600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461090f90612a29565b6000818152600260205260409020546060906001600160a01b03166117f65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bf565b601254610100900460ff16611897576013805461181290612a29565b80601f016020809104026020016040519081016040528092919081815260200182805461183e90612a29565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b50505050509050919050565b60006118a1611e10565b905060008151116118c157604051806020016040528060008152506118ef565b806118cb84611e1f565b600c6040516020016118df9392919061276b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119205760405162461bcd60e51b81526004016107bf90612915565b805161115890600c9060208401906123f3565b600a546001600160a01b0316331461195d5760405162461bcd60e51b81526004016107bf90612915565b80516111589060139060208401906123f3565b600a546001600160a01b0316331461199a5760405162461bcd60e51b81526004016107bf90612915565b6001600160a01b0381166119ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bf565b611a0881611d71565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611a4257506001600160e01b03198216635b5e139f60e01b145b8061078f57506301ffc9a760e01b6001600160e01b031983161461078f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a968261115c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bf565b6000611b538361115c565b9050806001600160a01b0316846001600160a01b03161480611b8e5750836001600160a01b0316611b838461086d565b6001600160a01b0316145b80611bbe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bd98261115c565b6001600160a01b031614611c415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107bf565b6001600160a01b038216611ca35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107bf565b611cae838383611f1d565b611cb9600082611a61565b6001600160a01b0383166000908152600360205260408120805460019290611ce29084906129e6565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d1090849061299b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611158828260405180602001604052806000815250611fd5565b611de8848484611bc6565b611df484848484612008565b61173a5760405162461bcd60e51b81526004016107bf906128c3565b6060600b80546107ea90612a29565b606081611e435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e6d5780611e5781612a64565b9150611e669050600a836129b3565b9150611e47565b60008167ffffffffffffffff811115611e8857611e88612aeb565b6040519080825280601f01601f191660200182016040528015611eb2576020820181803683370190505b5090505b8415611bbe57611ec76001836129e6565b9150611ed4600a86612a7f565b611edf90603061299b565b60f81b818381518110611ef457611ef4612ad5565b60200101906001600160f81b031916908160001a905350611f16600a866129b3565b9450611eb6565b6001600160a01b038316611f7857611f7381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f9b565b816001600160a01b0316836001600160a01b031614611f9b57611f9b8382612115565b6001600160a01b038216611fb257610aa1816121b2565b826001600160a01b0316826001600160a01b031614610aa157610aa18282612261565b611fdf83836122a5565b611fec6000848484612008565b610aa15760405162461bcd60e51b81526004016107bf906128c3565b60006001600160a01b0384163b1561210a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061204c90339089908890889060040161282f565b602060405180830381600087803b15801561206657600080fd5b505af1925050508015612096575060408051601f3d908101601f19168201909252612093918101906126c0565b60015b6120f0573d8080156120c4576040519150601f19603f3d011682016040523d82523d6000602084013e6120c9565b606091505b5080516120e85760405162461bcd60e51b81526004016107bf906128c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bbe565b506001949350505050565b60006001612122846111d3565b61212c91906129e6565b60008381526007602052604090205490915080821461217f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121c4906001906129e6565b600083815260096020526040812054600880549394509092849081106121ec576121ec612ad5565b90600052602060002001549050806008838154811061220d5761220d612ad5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061224557612245612abf565b6001900381819060005260206000200160009055905550505050565b600061226c836111d3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107bf565b6000818152600260205260409020546001600160a01b0316156123605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107bf565b61236c60008383611f1d565b6001600160a01b038216600090815260036020526040812080546001929061239590849061299b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123ff90612a29565b90600052602060002090601f0160209004810192826124215760008555612467565b82601f1061243a57805160ff1916838001178555612467565b82800160010185558215612467579182015b8281111561246757825182559160200191906001019061244c565b50612473929150612477565b5090565b5b808211156124735760008155600101612478565b600067ffffffffffffffff808411156124a7576124a7612aeb565b604051601f8501601f19908116603f011681019082821181831017156124cf576124cf612aeb565b816040528093508581528686860111156124e857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461251957600080fd5b919050565b8035801515811461251957600080fd5b60006020828403121561254057600080fd5b6118ef82612502565b6000806040838503121561255c57600080fd5b61256583612502565b915061257360208401612502565b90509250929050565b60008060006060848603121561259157600080fd5b61259a84612502565b92506125a860208501612502565b9150604084013590509250925092565b600080600080608085870312156125ce57600080fd5b6125d785612502565b93506125e560208601612502565b925060408501359150606085013567ffffffffffffffff81111561260857600080fd5b8501601f8101871361261957600080fd5b6126288782356020840161248c565b91505092959194509250565b6000806040838503121561264757600080fd5b61265083612502565b91506125736020840161251e565b6000806040838503121561267157600080fd5b61267a83612502565b946020939093013593505050565b60006020828403121561269a57600080fd5b6118ef8261251e565b6000602082840312156126b557600080fd5b81356118ef81612b01565b6000602082840312156126d257600080fd5b81516118ef81612b01565b6000602082840312156126ef57600080fd5b813567ffffffffffffffff81111561270657600080fd5b8201601f8101841361271757600080fd5b611bbe8482356020840161248c565b60006020828403121561273857600080fd5b5035919050565b600081518084526127578160208601602086016129fd565b601f01601f19169290920160200192915050565b60008451602061277e8285838a016129fd565b8551918401916127918184848a016129fd565b8554920191600090600181811c90808316806127ae57607f831692505b8583108114156127cc57634e487b7160e01b85526022600452602485fd5b8080156127e057600181146127f15761281e565b60ff1985168852838801955061281e565b60008b81526020902060005b858110156128165781548a8201529084019088016127fd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128629083018461273f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128a457835183529284019291840191600101612888565b50909695505050505050565b6020815260006118ef602083018461273f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129ae576129ae612a93565b500190565b6000826129c2576129c2612aa9565b500490565b60008160001904831182151516156129e1576129e1612a93565b500290565b6000828210156129f8576129f8612a93565b500390565b60005b83811015612a18578181015183820152602001612a00565b8381111561173a5750506000910152565b600181811c90821680612a3d57607f821691505b60208210811415612a5e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7857612a78612a93565b5060010190565b600082612a8e57612a8e612aa9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a0857600080fdfea2646970667358221220b62ec4a057760cf02cabcb6c7ef003900b3b219426b70a0d5ccab69b1f961b2364736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000104d65746147656d734f6666696369616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d674f37000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5763536d645762463776337454754b68576a3956673462534b32554841484d34764c7a6f42635646395770362f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d5366746d76776e5734784368535255414876703379466b3656596b625469787466595a37686546774c5a33772f68696464656e00000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636352211e11610139578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610695578063da3ef23f146106ab578063e985e9c5146106cb578063f2c4ce1e14610714578063f2fde38b14610734578063f55974ca1461075457600080fd5b8063b88d4fde1461060a578063ba4e5c491461062a578063ba7d2c761461064a578063c668286214610660578063c87b56dd1461067557600080fd5b80639c70b512116100fd5780639c70b5121461058e578063a0712d68146105a8578063a22cb465146105bb578063a475b5dd146105db578063ae5c1c50146105f057600080fd5b80636352211e1461050657806370a0823114610526578063715018a6146105465780638da5cb5b1461055b57806395d89b411461057957600080fd5b806323b872dd116101d2578063438b630011610196578063438b63001461044057806344a0d68a1461046d5780634f6ccce71461048d57806351830227146104ad57806355f804b3146104cc5780635c975abb146104ec57600080fd5b806323b872dd146103b85780632f745c59146103d85780633af32abf146103f85780633ccfd60b1461041857806342842e0e1461042057600080fd5b8063095ea7b311610219578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057806318cae26914610375578063239c70ae146103a257600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026257600080fd5b506102766102713660046126a3565b61076a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612688565b610795565b005b3480156102b957600080fd5b506102c26107db565b60405161028291906128b0565b3480156102db57600080fd5b506102ef6102ea366004612726565b61086d565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102c2610902565b34801561032857600080fd5b506102ab61033736600461265e565b610990565b34801561034857600080fd5b50610352600d5481565b604051908152602001610282565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b5061035261039036600461252e565b60166020526000908152604090205481565b3480156103ae57600080fd5b50610352600f5481565b3480156103c457600080fd5b506102ab6103d336600461257c565b610aa6565b3480156103e457600080fd5b506103526103f336600461265e565b610ad7565b34801561040457600080fd5b5061027661041336600461252e565b610b6d565b6102ab610bd7565b34801561042c57600080fd5b506102ab61043b36600461257c565b610f9c565b34801561044c57600080fd5b5061046061045b36600461252e565b610fb7565b604051610282919061286c565b34801561047957600080fd5b506102ab610488366004612726565b611059565b34801561049957600080fd5b506103526104a8366004612726565b611088565b3480156104b957600080fd5b5060125461027690610100900460ff1681565b3480156104d857600080fd5b506102ab6104e73660046126dd565b61111b565b3480156104f857600080fd5b506012546102769060ff1681565b34801561051257600080fd5b506102ef610521366004612726565b61115c565b34801561053257600080fd5b5061035261054136600461252e565b6111d3565b34801561055257600080fd5b506102ab61125a565b34801561056757600080fd5b50600a546001600160a01b03166102ef565b34801561058557600080fd5b506102c2611290565b34801561059a57600080fd5b506014546102769060ff1681565b6102ab6105b6366004612726565b61129f565b3480156105c757600080fd5b506102ab6105d6366004612634565b611608565b3480156105e757600080fd5b506102ab6116cd565b3480156105fc57600080fd5b506017546102769060ff1681565b34801561061657600080fd5b506102ab6106253660046125b8565b611708565b34801561063657600080fd5b506102ef610645366004612726565b611740565b34801561065657600080fd5b5061035260105481565b34801561066c57600080fd5b506102c261176a565b34801561068157600080fd5b506102c2610690366004612726565b611777565b3480156106a157600080fd5b50610352600e5481565b3480156106b757600080fd5b506102ab6106c63660046126dd565b6118f6565b3480156106d757600080fd5b506102766106e6366004612549565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072057600080fd5b506102ab61072f3660046126dd565b611933565b34801561074057600080fd5b506102ab61074f36600461252e565b611970565b34801561076057600080fd5b5061035260115481565b60006001600160e01b0319821663780e9d6360e01b148061078f575061078f82611a11565b92915050565b600a546001600160a01b031633146107c85760405162461bcd60e51b81526004016107bf90612915565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546107ea90612a29565b80601f016020809104026020016040519081016040528092919081815260200182805461081690612a29565b80156108635780601f1061083857610100808354040283529160200191610863565b820191906000526020600020905b81548152906001019060200180831161084657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bf565b506000908152600460205260409020546001600160a01b031690565b6013805461090f90612a29565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612a29565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b505050505081565b600061099b8261115c565b9050806001600160a01b0316836001600160a01b03161415610a095760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107bf565b336001600160a01b0382161480610a255750610a2581336106e6565b610a975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107bf565b610aa18383611a61565b505050565b610ab03382611acf565b610acc5760405162461bcd60e51b81526004016107bf9061294a565b610aa1838383611bc6565b6000610ae2836111d3565b8210610b445760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107bf565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601554811015610bce57826001600160a01b031660158281548110610b9857610b98612ad5565b6000918252602090912001546001600160a01b03161415610bbc5750600192915050565b80610bc681612a64565b915050610b71565b50600092915050565b600a546001600160a01b03163314610c015760405162461bcd60e51b81526004016107bf90612915565b6000610c0c60085490565b9050600e54811480610c2057506011544210155b610c645760405162461bcd60e51b815260206004820152601560248201527421b0b7103737ba103bb4ba34323930bb903cb2ba1760591b60448201526064016107bf565b670de0b6b3a76400004711610c7857600080fd5b60006064610c874760146129c7565b610c9191906129b3565b905060006064610ca247601e6129c7565b610cac91906129b3565b60175490915060ff16610d31576017805460ff19166001179055604051600090735751e1e0ef3198f4ad2f5483a68db699cbfecdd89084908381818185875af1925050503d8060008114610d1c576040519150601f19603f3d011682016040523d82523d6000602084013e610d21565b606091505b5050905080610d2f57600080fd5b505b604051600090737cb0699db6ff4bccc9bad16d5156fb6ec52a92129083908381818185875af1925050503d8060008114610d87576040519150601f19603f3d011682016040523d82523d6000602084013e610d8c565b606091505b5050905080610d9a57600080fd5b476000736e49117ccef4b1bdbd3ce5118910f3d17d9538436064610dbf84602d6129c7565b610dc991906129b3565b604051600081818185875af1925050503d8060008114610e05576040519150601f19603f3d011682016040523d82523d6000602084013e610e0a565b606091505b5050905080610e1857600080fd5b600073a58ee9834f6d52cf936e538908449e60d9e4a6bf6103e8610e3d8560e16129c7565b610e4791906129b3565b604051600081818185875af1925050503d8060008114610e83576040519150601f19603f3d011682016040523d82523d6000602084013e610e88565b606091505b5050905080610e9657600080fd5b600073fc39e340af7600d74157e89b18d553b4590e97976064610eba8660146129c7565b610ec491906129b3565b604051600081818185875af1925050503d8060008114610f00576040519150601f19603f3d011682016040523d82523d6000602084013e610f05565b606091505b5050905080610f1357600080fd5b6000738b7732bccb98a943bd275f71875fbca63b54220a6103e8610f3887607d6129c7565b610f4291906129b3565b604051600081818185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050905080610f9157600080fd5b505050505050505050565b610aa183838360405180602001604052806000815250611708565b60606000610fc4836111d3565b905060008167ffffffffffffffff811115610fe157610fe1612aeb565b60405190808252806020026020018201604052801561100a578160200160208202803683370190505b50905060005b82811015611051576110228582610ad7565b82828151811061103457611034612ad5565b60209081029190910101528061104981612a64565b915050611010565b509392505050565b600a546001600160a01b031633146110835760405162461bcd60e51b81526004016107bf90612915565b600d55565b600061109360085490565b82106110f65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107bf565b6008828154811061110957611109612ad5565b90600052602060002001549050919050565b600a546001600160a01b031633146111455760405162461bcd60e51b81526004016107bf90612915565b805161115890600b9060208401906123f3565b5050565b6000818152600260205260408120546001600160a01b03168061078f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107bf565b60006001600160a01b03821661123e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107bf565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112845760405162461bcd60e51b81526004016107bf90612915565b61128e6000611d71565b565b6060600180546107ea90612a29565b60006112aa60085490565b60125490915060ff16156112f65760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016107bf565b6000821161133c5760405162461bcd60e51b815260206004820152601360248201527206d757374206d696e74416d6f756e74203e203606c1b60448201526064016107bf565b600f5482111561138e5760405162461bcd60e51b815260206004820152601a60248201527f6d61786d696e74616d6f756e74206c696d69742065786365656400000000000060448201526064016107bf565b600e5461139b838361299b565b11156113e05760405162461bcd60e51b81526020600482015260146024820152731cdd5c1c1b1e48185b5bdd5b9d08195e18d9595960621b60448201526064016107bf565b600a546001600160a01b03163314156114315760405162461bcd60e51b81526020600482015260136024820152724f776e65722063616e206e6f74206d696e742160681b60448201526064016107bf565b81600d5461143f91906129c7565b3410156114825760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f7567682066756e64732160781b60448201526064016107bf565b600a546001600160a01b031633146115b85760145460ff16151560011415611566576114ad33610b6d565b6114f95760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016107bf565b33600090815260166020526040902054601054611516848361299b565b11156115645760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107bf565b505b81600d5461157491906129c7565b3410156115b85760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016107bf565b60015b828111610aa1573360009081526016602052604081208054916115dd83612a64565b909155506115f69050336115f1838561299b565b611dc3565b8061160081612a64565b9150506115bb565b6001600160a01b0382163314156116615760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107bf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146116f75760405162461bcd60e51b81526004016107bf90612915565b6012805461ff001916610100179055565b6117123383611acf565b61172e5760405162461bcd60e51b81526004016107bf9061294a565b61173a84848484611ddd565b50505050565b6015818154811061175057600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461090f90612a29565b6000818152600260205260409020546060906001600160a01b03166117f65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bf565b601254610100900460ff16611897576013805461181290612a29565b80601f016020809104026020016040519081016040528092919081815260200182805461183e90612a29565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b50505050509050919050565b60006118a1611e10565b905060008151116118c157604051806020016040528060008152506118ef565b806118cb84611e1f565b600c6040516020016118df9392919061276b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119205760405162461bcd60e51b81526004016107bf90612915565b805161115890600c9060208401906123f3565b600a546001600160a01b0316331461195d5760405162461bcd60e51b81526004016107bf90612915565b80516111589060139060208401906123f3565b600a546001600160a01b0316331461199a5760405162461bcd60e51b81526004016107bf90612915565b6001600160a01b0381166119ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bf565b611a0881611d71565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611a4257506001600160e01b03198216635b5e139f60e01b145b8061078f57506301ffc9a760e01b6001600160e01b031983161461078f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a968261115c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bf565b6000611b538361115c565b9050806001600160a01b0316846001600160a01b03161480611b8e5750836001600160a01b0316611b838461086d565b6001600160a01b0316145b80611bbe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bd98261115c565b6001600160a01b031614611c415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107bf565b6001600160a01b038216611ca35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107bf565b611cae838383611f1d565b611cb9600082611a61565b6001600160a01b0383166000908152600360205260408120805460019290611ce29084906129e6565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d1090849061299b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611158828260405180602001604052806000815250611fd5565b611de8848484611bc6565b611df484848484612008565b61173a5760405162461bcd60e51b81526004016107bf906128c3565b6060600b80546107ea90612a29565b606081611e435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e6d5780611e5781612a64565b9150611e669050600a836129b3565b9150611e47565b60008167ffffffffffffffff811115611e8857611e88612aeb565b6040519080825280601f01601f191660200182016040528015611eb2576020820181803683370190505b5090505b8415611bbe57611ec76001836129e6565b9150611ed4600a86612a7f565b611edf90603061299b565b60f81b818381518110611ef457611ef4612ad5565b60200101906001600160f81b031916908160001a905350611f16600a866129b3565b9450611eb6565b6001600160a01b038316611f7857611f7381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f9b565b816001600160a01b0316836001600160a01b031614611f9b57611f9b8382612115565b6001600160a01b038216611fb257610aa1816121b2565b826001600160a01b0316826001600160a01b031614610aa157610aa18282612261565b611fdf83836122a5565b611fec6000848484612008565b610aa15760405162461bcd60e51b81526004016107bf906128c3565b60006001600160a01b0384163b1561210a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061204c90339089908890889060040161282f565b602060405180830381600087803b15801561206657600080fd5b505af1925050508015612096575060408051601f3d908101601f19168201909252612093918101906126c0565b60015b6120f0573d8080156120c4576040519150601f19603f3d011682016040523d82523d6000602084013e6120c9565b606091505b5080516120e85760405162461bcd60e51b81526004016107bf906128c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bbe565b506001949350505050565b60006001612122846111d3565b61212c91906129e6565b60008381526007602052604090205490915080821461217f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121c4906001906129e6565b600083815260096020526040812054600880549394509092849081106121ec576121ec612ad5565b90600052602060002001549050806008838154811061220d5761220d612ad5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061224557612245612abf565b6001900381819060005260206000200160009055905550505050565b600061226c836111d3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107bf565b6000818152600260205260409020546001600160a01b0316156123605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107bf565b61236c60008383611f1d565b6001600160a01b038216600090815260036020526040812080546001929061239590849061299b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123ff90612a29565b90600052602060002090601f0160209004810192826124215760008555612467565b82601f1061243a57805160ff1916838001178555612467565b82800160010185558215612467579182015b8281111561246757825182559160200191906001019061244c565b50612473929150612477565b5090565b5b808211156124735760008155600101612478565b600067ffffffffffffffff808411156124a7576124a7612aeb565b604051601f8501601f19908116603f011681019082821181831017156124cf576124cf612aeb565b816040528093508581528686860111156124e857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461251957600080fd5b919050565b8035801515811461251957600080fd5b60006020828403121561254057600080fd5b6118ef82612502565b6000806040838503121561255c57600080fd5b61256583612502565b915061257360208401612502565b90509250929050565b60008060006060848603121561259157600080fd5b61259a84612502565b92506125a860208501612502565b9150604084013590509250925092565b600080600080608085870312156125ce57600080fd5b6125d785612502565b93506125e560208601612502565b925060408501359150606085013567ffffffffffffffff81111561260857600080fd5b8501601f8101871361261957600080fd5b6126288782356020840161248c565b91505092959194509250565b6000806040838503121561264757600080fd5b61265083612502565b91506125736020840161251e565b6000806040838503121561267157600080fd5b61267a83612502565b946020939093013593505050565b60006020828403121561269a57600080fd5b6118ef8261251e565b6000602082840312156126b557600080fd5b81356118ef81612b01565b6000602082840312156126d257600080fd5b81516118ef81612b01565b6000602082840312156126ef57600080fd5b813567ffffffffffffffff81111561270657600080fd5b8201601f8101841361271757600080fd5b611bbe8482356020840161248c565b60006020828403121561273857600080fd5b5035919050565b600081518084526127578160208601602086016129fd565b601f01601f19169290920160200192915050565b60008451602061277e8285838a016129fd565b8551918401916127918184848a016129fd565b8554920191600090600181811c90808316806127ae57607f831692505b8583108114156127cc57634e487b7160e01b85526022600452602485fd5b8080156127e057600181146127f15761281e565b60ff1985168852838801955061281e565b60008b81526020902060005b858110156128165781548a8201529084019088016127fd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128629083018461273f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128a457835183529284019291840191600101612888565b50909695505050505050565b6020815260006118ef602083018461273f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129ae576129ae612a93565b500190565b6000826129c2576129c2612aa9565b500490565b60008160001904831182151516156129e1576129e1612a93565b500290565b6000828210156129f8576129f8612a93565b500390565b60005b83811015612a18578181015183820152602001612a00565b8381111561173a5750506000910152565b600181811c90821680612a3d57607f821691505b60208210811415612a5e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a7857612a78612a93565b5060010190565b600082612a8e57612a8e612aa9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a0857600080fdfea2646970667358221220b62ec4a057760cf02cabcb6c7ef003900b3b219426b70a0d5ccab69b1f961b2364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000104d65746147656d734f6666696369616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d674f37000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5763536d645762463776337454754b68576a3956673462534b32554841484d34764c7a6f42635646395770362f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d5366746d76776e5734784368535255414876703379466b3656596b625469787466595a37686546774c5a33772f68696464656e00000000

-----Decoded View---------------
Arg [0] : _name (string): MetaGemsOfficial
Arg [1] : _symbol (string): MgO7
Arg [2] : _initBaseURI (string): ipfs://QmWcSmdWbF7v3tTuKhWj9Vg4bSK2UHAHM4vLzoBcVF9Wp6/
Arg [3] : _initNotRevealedUri (string): ipfs://QmSftmvwnW4xChSRUAHvp3yFk6VYkbTixtfYZ7heFwLZ3w/hidden

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4d65746147656d734f6666696369616c00000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d674f3700000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5763536d645762463776337454754b68576a3956673462
Arg [10] : 534b32554841484d34764c7a6f42635646395770362f00000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [12] : 697066733a2f2f516d5366746d76776e5734784368535255414876703379466b
Arg [13] : 3656596b625469787466595a37686546774c5a33772f68696464656e00000000


Deployed Bytecode Sourcemap

49963:7349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41469:224;;;;;;;;;;-1:-1:-1;41469:224:0;;;;;:::i;:::-;;:::i;:::-;;;7807:14:1;;7800:22;7782:41;;7770:2;7755:18;41469:224:0;;;;;;;;55607:73;;;;;;;;;;-1:-1:-1;55607:73:0;;;;;:::i;:::-;;:::i;:::-;;22633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24200:222::-;;;;;;;;;;-1:-1:-1;24200:222:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;24200:222:0;6304:203:1;50476:28:0;;;;;;;;;;;;;:::i;23720:413::-;;;;;;;;;;-1:-1:-1;23720:413:0;;;;;:::i;:::-;;:::i;50117:34::-;;;;;;;;;;;;;;;;;;;18911:25:1;;;18899:2;18884:18;50117:34:0;18765:177:1;42111:113:0;;;;;;;;;;-1:-1:-1;42199:10:0;:17;42111:113;;50591:55;;;;;;;;;;-1:-1:-1;50591:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;50248:32;;;;;;;;;;;;;;;;25095:340;;;;;;;;;;-1:-1:-1;25095:340:0;;;;;:::i;:::-;;:::i;41778:256::-;;;;;;;;;;-1:-1:-1;41778:256:0;;;;;:::i;:::-;;:::i;53954:244::-;;;;;;;;;;-1:-1:-1;53954:244:0;;;;;:::i;:::-;;:::i;55919:1390::-;;;:::i;25507:185::-;;;;;;;;;;-1:-1:-1;25507:185:0;;;;;:::i;:::-;;:::i;54208:348::-;;;;;;;;;;-1:-1:-1;54208:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55158:82::-;;;;;;;;;;-1:-1:-1;55158:82:0;;;;;:::i;:::-;;:::i;42302:233::-;;;;;;;;;;-1:-1:-1;42302:233:0;;;;;:::i;:::-;;:::i;50443:28::-;;;;;;;;;;-1:-1:-1;50443:28:0;;;;;;;;;;;55373:98;;;;;;;;;;-1:-1:-1;55373:98:0;;;;;:::i;:::-;;:::i;50412:26::-;;;;;;;;;;-1:-1:-1;50412:26:0;;;;;;;;22326:239;;;;;;;;;;-1:-1:-1;22326:239:0;;;;;:::i;:::-;;:::i;22055:208::-;;;;;;;;;;-1:-1:-1;22055:208:0;;;;;:::i;:::-;;:::i;49282:94::-;;;;;;;;;;;;;:::i;48629:87::-;;;;;;;;;;-1:-1:-1;48702:6:0;;-1:-1:-1;;;;;48702:6:0;48629:87;;22803:104;;;;;;;;;;;;;:::i;50509:35::-;;;;;;;;;;-1:-1:-1;50509:35:0;;;;;;;;52904:1044;;;;;;:::i;:::-;;:::i;24495:296::-;;;;;;;;;;-1:-1:-1;24495:296:0;;;;;:::i;:::-;;:::i;55084:67::-;;;;;;;;;;;;;:::i;50654:28::-;;;;;;;;;;-1:-1:-1;50654:28:0;;;;;;;;25764:328;;;;;;;;;;-1:-1:-1;25764:328:0;;;;;:::i;:::-;;:::i;50549:37::-;;;;;;;;;;-1:-1:-1;50549:37:0;;;;;:::i;:::-;;:::i;50314:::-;;;;;;;;;;;;;;;;50075;;;;;;;;;;;;;:::i;54569:492::-;;;;;;;;;;-1:-1:-1;54569:492:0;;;;;:::i;:::-;;:::i;50184:30::-;;;;;;;;;;;;;;;;55478:122;;;;;;;;;;-1:-1:-1;55478:122:0;;;;;:::i;:::-;;:::i;24863:164::-;;;;;;;;;;-1:-1:-1;24863:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24984:25:0;;;24960:4;24984:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24863:164;55247:119;;;;;;;;;;-1:-1:-1;55247:119:0;;;;;:::i;:::-;;:::i;49532:192::-;;;;;;;;;;-1:-1:-1;49532:192:0;;;;;:::i;:::-;;:::i;50356:51::-;;;;;;;;;;;;;;;;41469:224;41571:4;-1:-1:-1;;;;;;41595:50:0;;-1:-1:-1;;;41595:50:0;;:90;;;41649:36;41673:11;41649:23;:36::i;:::-;41588:97;41469:224;-1:-1:-1;;41469:224:0:o;55607:73::-;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;;;;;;;;;55659:6:::1;:15:::0;;-1:-1:-1;;55659:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55607:73::o;22633:100::-;22687:13;22720:5;22713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22633:100;:::o;24200:222::-;24276:7;27693:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27693:16:0;24296:73;;;;-1:-1:-1;;;24296:73:0;;14391:2:1;24296:73:0;;;14373:21:1;14430:2;14410:18;;;14403:30;14469:34;14449:18;;;14442:62;-1:-1:-1;;;14520:18:1;;;14513:42;14572:19;;24296:73:0;14189:408:1;24296:73:0;-1:-1:-1;24390:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24390:24:0;;24200:222::o;50476:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23720:413::-;23801:13;23817:23;23832:7;23817:14;:23::i;:::-;23801:39;;23865:5;-1:-1:-1;;;;;23859:11:0;:2;-1:-1:-1;;;;;23859:11:0;;;23851:57;;;;-1:-1:-1;;;23851:57:0;;16687:2:1;23851:57:0;;;16669:21:1;16726:2;16706:18;;;16699:30;16765:34;16745:18;;;16738:62;-1:-1:-1;;;16816:18:1;;;16809:31;16857:19;;23851:57:0;16485:397:1;23851:57:0;20228:10;-1:-1:-1;;;;;23944:21:0;;;;:62;;-1:-1:-1;23969:37:0;23986:5;20228:10;24863:164;:::i;23969:37::-;23922:168;;;;-1:-1:-1;;;23922:168:0;;12436:2:1;23922:168:0;;;12418:21:1;12475:2;12455:18;;;12448:30;12514:34;12494:18;;;12487:62;12585:26;12565:18;;;12558:54;12629:19;;23922:168:0;12234:420:1;23922:168:0;24104:21;24113:2;24117:7;24104:8;:21::i;:::-;23790:343;23720:413;;:::o;25095:340::-;25290:41;20228:10;25323:7;25290:18;:41::i;:::-;25282:103;;;;-1:-1:-1;;;25282:103:0;;;;;;;:::i;:::-;25399:28;25409:4;25415:2;25419:7;25399:9;:28::i;41778:256::-;41875:7;41911:23;41928:5;41911:16;:23::i;:::-;41903:5;:31;41895:87;;;;-1:-1:-1;;;41895:87:0;;8260:2:1;41895:87:0;;;8242:21:1;8299:2;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;-1:-1:-1;;;8389:18:1;;;8382:41;8440:19;;41895:87:0;8058:407:1;41895:87:0;-1:-1:-1;;;;;;42000:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41778:256::o;53954:244::-;54013:4;;54026:143;54047:20;:27;54043:31;;54026:143;;;54121:5;-1:-1:-1;;;;;54094:32:0;:20;54115:1;54094:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;54094:23:0;:32;54090:72;;;-1:-1:-1;54148:4:0;;53954:244;-1:-1:-1;;53954:244:0:o;54090:72::-;54076:3;;;;:::i;:::-;;;;54026:143;;;-1:-1:-1;54182:5:0;;53954:244;-1:-1:-1;;53954:244:0:o;55919:1390::-;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;55971:14:::1;55988:13;42199:10:::0;:17;;42111:113;55988:13:::1;55971:30;;56026:9;;56016:6;:19;:51;;;;56058:9;;56039:15;:28;;56016:51;56008:85;;;::::0;-1:-1:-1;;;56008:85:0;;15165:2:1;56008:85:0::1;::::0;::::1;15147:21:1::0;15204:2;15184:18;;;15177:30;-1:-1:-1;;;15223:18:1;;;15216:51;15284:18;;56008:85:0::1;14963:345:1::0;56008:85:0::1;56135:7;56111:21;:31;56103:40;;;::::0;::::1;;56152:19;56203:3;56174:26;:21;56198:2;56174:26;:::i;:::-;:32;;;;:::i;:::-;56152:54:::0;-1:-1:-1;56215:19:0::1;56266:3;56237:26;:21;56261:2;56237:26;:::i;:::-;:32;;;;:::i;:::-;56281:8;::::0;56215:54;;-1:-1:-1;56281:8:0::1;;56278:206;;56309:8;:15:::0;;-1:-1:-1;;56309:15:0::1;56320:4;56309:15;::::0;;56365:80:::1;::::0;-1:-1:-1;;56373:42:0::1;::::0;56429:11;;-1:-1:-1;56365:80:0;-1:-1:-1;56365:80:0;56429:11;56373:42;56365:80:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56338:107;;;56460:15;56452:24;;;::::0;::::1;;56300:184;56278:206;56537:80;::::0;56513:18:::1;::::0;56545:42:::1;::::0;56601:11;;56513:18;56537:80;56513:18;56537:80;56601:11;56545:42;56537:80:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56512:105;;;56632:13;56624:22;;;::::0;::::1;;56696:21;56671:22;56754:42;56832:3;56810:19;56696:21:::0;56827:2:::1;56810:19;:::i;:::-;:25;;;;:::i;:::-;56746:94;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56726:114;;;56855:8;56847:17;;;::::0;::::1;;56872:13;56899:42;56978:4;56955:20;:14:::0;56972:3:::1;56955:20;:::i;:::-;:27;;;;:::i;:::-;56891:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56871:116;;;57002:8;56994:17;;;::::0;::::1;;57019:13;57046:42;57124:3;57102:19;:14:::0;57119:2:::1;57102:19;:::i;:::-;:25;;;;:::i;:::-;57038:94;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57018:114;;;57147:8;57139:17;;;::::0;::::1;;57164:13;57191:42;57270:4;57247:20;:14:::0;57264:3:::1;57247:20;:::i;:::-;:27;;;;:::i;:::-;57183:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57163:116;;;57294:8;57286:17;;;::::0;::::1;;55964:1345;;;;;;;;;55919:1390::o:0;25507:185::-;25645:39;25662:4;25668:2;25672:7;25645:39;;;;;;;;;;;;:16;:39::i;54208:348::-;54283:16;54311:23;54337:17;54347:6;54337:9;:17::i;:::-;54311:43;;54361:25;54403:15;54389:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54389:30:0;;54361:58;;54431:9;54426:103;54446:15;54442:1;:19;54426:103;;;54491:30;54511:6;54519:1;54491:19;:30::i;:::-;54477:8;54486:1;54477:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54463:3;;;;:::i;:::-;;;;54426:103;;;-1:-1:-1;54542:8:0;54208:348;-1:-1:-1;;;54208:348:0:o;55158:82::-;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;55219:4:::1;:15:::0;55158:82::o;42302:233::-;42377:7;42413:30;42199:10;:17;;42111:113;42413:30;42405:5;:38;42397:95;;;;-1:-1:-1;;;42397:95:0;;17854:2:1;42397:95:0;;;17836:21:1;17893:2;17873:18;;;17866:30;17932:34;17912:18;;;17905:62;-1:-1:-1;;;17983:18:1;;;17976:42;18035:19;;42397:95:0;17652:408:1;42397:95:0;42510:10;42521:5;42510:17;;;;;;;;:::i;:::-;;;;;;;;;42503:24;;42302:233;;;:::o;55373:98::-;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;55444:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55373:98:::0;:::o;22326:239::-;22398:7;22434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22434:16:0;22469:19;22461:73;;;;-1:-1:-1;;;22461:73:0;;13272:2:1;22461:73:0;;;13254:21:1;13311:2;13291:18;;;13284:30;13350:34;13330:18;;;13323:62;-1:-1:-1;;;13401:18:1;;;13394:39;13450:19;;22461:73:0;13070:405:1;22055:208:0;22127:7;-1:-1:-1;;;;;22155:19:0;;22147:74;;;;-1:-1:-1;;;22147:74:0;;12861:2:1;22147:74:0;;;12843:21:1;12900:2;12880:18;;;12873:30;12939:34;12919:18;;;12912:62;-1:-1:-1;;;12990:18:1;;;12983:40;13040:19;;22147:74:0;12659:406:1;22147:74:0;-1:-1:-1;;;;;;22239:16:0;;;;;:9;:16;;;;;;;22055:208::o;49282:94::-;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;49347:21:::1;49365:1;49347:9;:21::i;:::-;49282:94::o:0;22803:104::-;22859:13;22892:7;22885:14;;;;;:::i;52904:1044::-;52961:14;52978:13;42199:10;:17;;42111:113;52978:13;53009:6;;52961:30;;-1:-1:-1;53009:6:0;;53008:7;53000:39;;;;-1:-1:-1;;;53000:39:0;;10916:2:1;53000:39:0;;;10898:21:1;10955:2;10935:18;;;10928:30;-1:-1:-1;;;10974:18:1;;;10967:49;11033:18;;53000:39:0;10714:343:1;53000:39:0;53068:1;53054:11;:15;53046:47;;;;-1:-1:-1;;;53046:47:0;;18267:2:1;53046:47:0;;;18249:21:1;18306:2;18286:18;;;18279:30;-1:-1:-1;;;18325:18:1;;;18318:49;18384:18;;53046:47:0;18065:343:1;53046:47:0;53123:13;;53108:11;:28;;53100:67;;;;-1:-1:-1;;;53100:67:0;;10561:2:1;53100:67:0;;;10543:21:1;10600:2;10580:18;;;10573:30;10639:28;10619:18;;;10612:56;10685:18;;53100:67:0;10359:350:1;53100:67:0;53206:9;;53182:20;53191:11;53182:6;:20;:::i;:::-;:33;;53174:66;;;;-1:-1:-1;;;53174:66:0;;9498:2:1;53174:66:0;;;9480:21:1;9537:2;9517:18;;;9510:30;-1:-1:-1;;;9556:18:1;;;9549:50;9616:18;;53174:66:0;9296:344:1;53174:66:0;48702:6;;-1:-1:-1;;;;;48702:6:0;53255:10;:21;;53247:53;;;;-1:-1:-1;;;53247:53:0;;13682:2:1;53247:53:0;;;13664:21:1;13721:2;13701:18;;;13694:30;-1:-1:-1;;;13740:18:1;;;13733:49;13799:18;;53247:53:0;13480:343:1;53247:53:0;53339:11;53332:4;;:18;;;;:::i;:::-;53319:9;:31;;53311:61;;;;-1:-1:-1;;;53311:61:0;;16341:2:1;53311:61:0;;;16323:21:1;16380:2;16360:18;;;16353:30;-1:-1:-1;;;16399:18:1;;;16392:47;16456:18;;53311:61:0;16139:341:1;53311:61:0;48702:6;;-1:-1:-1;;;;;48702:6:0;53380:10;:21;53376:416;;53417:15;;;;:23;;:15;:23;53414:298;;;53465:25;53479:10;53465:13;:25::i;:::-;53457:61;;;;-1:-1:-1;;;53457:61:0;;18615:2:1;53457:61:0;;;18597:21:1;18654:2;18634:18;;;18627:30;18693:25;18673:18;;;18666:53;18736:18;;53457:61:0;18413:347:1;53457:61:0;53581:10;53533:24;53560:32;;;:20;:32;;;;;;53649:18;;53615:30;53634:11;53560:32;53615:30;:::i;:::-;:52;;53607:93;;;;-1:-1:-1;;;53607:93:0;;10204:2:1;53607:93:0;;;10186:21:1;10243:2;10223:18;;;10216:30;10282;10262:18;;;10255:58;10330:18;;53607:93:0;10002:352:1;53607:93:0;53442:270;53414:298;53750:11;53743:4;;:18;;;;:::i;:::-;53730:9;:31;;53722:62;;;;-1:-1:-1;;;53722:62:0;;17089:2:1;53722:62:0;;;17071:21:1;17128:2;17108:18;;;17101:30;-1:-1:-1;;;17147:18:1;;;17140:48;17205:18;;53722:62:0;16887:342:1;53722:62:0;53820:1;53803:138;53828:11;53823:1;:16;53803:138;;53878:10;53857:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;53900:33:0;;-1:-1:-1;53910:10:0;53922;53931:1;53922:6;:10;:::i;:::-;53900:9;:33::i;:::-;53841:3;;;;:::i;:::-;;;;53803:138;;24495:296;-1:-1:-1;;;;;24598:24:0;;20228:10;24598:24;;24590:62;;;;-1:-1:-1;;;24590:62:0;;11669:2:1;24590:62:0;;;11651:21:1;11708:2;11688:18;;;11681:30;11747:27;11727:18;;;11720:55;11792:18;;24590:62:0;11467:349:1;24590:62:0;20228:10;24666:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24666:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24666:53:0;;;;;;;;;;24735:48;;7782:41:1;;;24666:42:0;;20228:10;24735:48;;7755:18:1;24735:48:0;;;;;;;24495:296;;:::o;55084:67::-;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;55130:8:::1;:15:::0;;-1:-1:-1;;55130:15:0::1;;;::::0;;55084:67::o;25764:328::-;25939:41;20228:10;25972:7;25939:18;:41::i;:::-;25931:103;;;;-1:-1:-1;;;25931:103:0;;;;;;;:::i;:::-;26045:39;26059:4;26065:2;26069:7;26078:5;26045:13;:39::i;:::-;25764:328;;;;:::o;50549:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50549:37:0;;-1:-1:-1;50549:37:0;:::o;50075:::-;;;;;;;:::i;54569:492::-;27669:4;27693:16;;;:7;:16;;;;;;54667:13;;-1:-1:-1;;;;;27693:16:0;54692:97;;;;-1:-1:-1;;;54692:97:0;;15925:2:1;54692:97:0;;;15907:21:1;15964:2;15944:18;;;15937:30;16003:34;15983:18;;;15976:62;-1:-1:-1;;;16054:18:1;;;16047:45;16109:19;;54692:97:0;15723:411:1;54692:97:0;54803:8;;;;;;;54800:58;;54837:14;54830:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54569:492;;;:::o;54800:58::-;54867:28;54898:10;:8;:10::i;:::-;54867:41;;54953:1;54928:14;54922:28;:32;:133;;;;;;;;;;;;;;;;;54990:14;55006:18;:7;:16;:18::i;:::-;55026:13;54973:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54922:133;54915:140;54569:492;-1:-1:-1;;;54569:492:0:o;55478:122::-;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;55561:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;55247:119::-:0;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;55328:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;49532:192::-:0;48702:6;;-1:-1:-1;;;;;48702:6:0;20228:10;48850:23;48842:68;;;;-1:-1:-1;;;48842:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49621:22:0;::::1;49613:73;;;::::0;-1:-1:-1;;;49613:73:0;;9091:2:1;49613:73:0::1;::::0;::::1;9073:21:1::0;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;-1:-1:-1;;;9220:18:1;;;9213:36;9266:19;;49613:73:0::1;8889:402:1::0;49613:73:0::1;49697:19;49707:8;49697:9;:19::i;:::-;49532:192:::0;:::o;10475:388::-;10799:20;10847:8;;;10475:388::o;21685:305::-;21787:4;-1:-1:-1;;;;;;21824:40:0;;-1:-1:-1;;;21824:40:0;;:105;;-1:-1:-1;;;;;;;21881:48:0;;-1:-1:-1;;;21881:48:0;21824:105;:158;;;-1:-1:-1;;;;;;;;;;7570:40:0;;;21946:36;7461:157;31604:174;31679:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31679:29:0;-1:-1:-1;;;;;31679:29:0;;;;;;;;:24;;31733:23;31679:24;31733:14;:23::i;:::-;-1:-1:-1;;;;;31724:46:0;;;;;;;;;;;31604:174;;:::o;27899:348::-;27992:4;27693:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27693:16:0;28009:73;;;;-1:-1:-1;;;28009:73:0;;12023:2:1;28009:73:0;;;12005:21:1;12062:2;12042:18;;;12035:30;12101:34;12081:18;;;12074:62;-1:-1:-1;;;12152:18:1;;;12145:42;12204:19;;28009:73:0;11821:408:1;28009:73:0;28093:13;28109:23;28124:7;28109:14;:23::i;:::-;28093:39;;28162:5;-1:-1:-1;;;;;28151:16:0;:7;-1:-1:-1;;;;;28151:16:0;;:51;;;;28195:7;-1:-1:-1;;;;;28171:31:0;:20;28183:7;28171:11;:20::i;:::-;-1:-1:-1;;;;;28171:31:0;;28151:51;:87;;;-1:-1:-1;;;;;;24984:25:0;;;24960:4;24984:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28206:32;28143:96;27899:348;-1:-1:-1;;;;27899:348:0:o;30903:582::-;31062:4;-1:-1:-1;;;;;31035:31:0;:23;31050:7;31035:14;:23::i;:::-;-1:-1:-1;;;;;31035:31:0;;31027:85;;;;-1:-1:-1;;;31027:85:0;;15515:2:1;31027:85:0;;;15497:21:1;15554:2;15534:18;;;15527:30;15593:34;15573:18;;;15566:62;-1:-1:-1;;;15644:18:1;;;15637:39;15693:19;;31027:85:0;15313:405:1;31027:85:0;-1:-1:-1;;;;;31131:16:0;;31123:65;;;;-1:-1:-1;;;31123:65:0;;11264:2:1;31123:65:0;;;11246:21:1;11303:2;11283:18;;;11276:30;11342:34;11322:18;;;11315:62;-1:-1:-1;;;11393:18:1;;;11386:34;11437:19;;31123:65:0;11062:400:1;31123:65:0;31202:39;31223:4;31229:2;31233:7;31202:20;:39::i;:::-;31307:29;31324:1;31328:7;31307:8;:29::i;:::-;-1:-1:-1;;;;;31350:15:0;;;;;;:9;:15;;;;;:20;;31369:1;;31350:15;:20;;31369:1;;31350:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31381:13:0;;;;;;:9;:13;;;;;:18;;31398:1;;31381:13;:18;;31398:1;;31381:18;:::i;:::-;;;;-1:-1:-1;;31410:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31410:21:0;-1:-1:-1;;;;;31410:21:0;;;;;;;;;31450:27;;31410:16;;31450:27;;;;;;;30903:582;;;:::o;49733:173::-;49808:6;;;-1:-1:-1;;;;;49825:17:0;;;-1:-1:-1;;;;;;49825:17:0;;;;;;;49858:40;;49808:6;;;49825:17;49808:6;;49858:40;;49789:16;;49858:40;49778:128;49733:173;:::o;28590:110::-;28666:26;28676:2;28680:7;28666:26;;;;;;;;;;;;:9;:26::i;26975:315::-;27132:28;27142:4;27148:2;27152:7;27132:9;:28::i;:::-;27179:48;27202:4;27208:2;27212:7;27221:5;27179:22;:48::i;:::-;27171:111;;;;-1:-1:-1;;;27171:111:0;;;;;;;:::i;52793:102::-;52853:13;52882:7;52875:14;;;;;:::i;7942:724::-;7998:13;8220:10;8216:53;;-1:-1:-1;;8247:10:0;;;;;;;;;;;;-1:-1:-1;;;8247:10:0;;;;;7942:724::o;8216:53::-;8294:5;8279:12;8335:78;8342:9;;8335:78;;8368:8;;;;:::i;:::-;;-1:-1:-1;8391:10:0;;-1:-1:-1;8399:2:0;8391:10;;:::i;:::-;;;8335:78;;;8423:19;8455:6;8445:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8445:17:0;;8423:39;;8473:154;8480:10;;8473:154;;8507:11;8517:1;8507:11;;:::i;:::-;;-1:-1:-1;8576:10:0;8584:2;8576:5;:10;:::i;:::-;8563:24;;:2;:24;:::i;:::-;8550:39;;8533:6;8540;8533:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8533:56:0;;;;;;;;-1:-1:-1;8604:11:0;8613:2;8604:11;;:::i;:::-;;;8473:154;;43149:590;-1:-1:-1;;;;;43356:18:0;;43352:187;;43391:40;43423:7;44568:10;:17;;44541:24;;;;:15;:24;;;;;:44;;;44596:24;;;;;;;;;;;;44464:164;43391:40;43352:187;;;43461:2;-1:-1:-1;;;;;43453:10:0;:4;-1:-1:-1;;;;;43453:10:0;;43449:90;;43480:47;43513:4;43519:7;43480:32;:47::i;:::-;-1:-1:-1;;;;;43553:16:0;;43549:183;;43586:45;43623:7;43586:36;:45::i;43549:183::-;43659:4;-1:-1:-1;;;;;43653:10:0;:2;-1:-1:-1;;;;;43653:10:0;;43649:83;;43680:40;43708:2;43712:7;43680:27;:40::i;28928:321::-;29058:18;29064:2;29068:7;29058:5;:18::i;:::-;29109:54;29140:1;29144:2;29148:7;29157:5;29109:22;:54::i;:::-;29087:154;;;;-1:-1:-1;;;29087:154:0;;;;;;;:::i;32344:799::-;32499:4;-1:-1:-1;;;;;32520:13:0;;10799:20;10847:8;32516:620;;32556:72;;-1:-1:-1;;;32556:72:0;;-1:-1:-1;;;;;32556:36:0;;;;;:72;;20228:10;;32607:4;;32613:7;;32622:5;;32556:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32556:72:0;;;;;;;;-1:-1:-1;;32556:72:0;;;;;;;;;;;;:::i;:::-;;;32552:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32798:13:0;;32794:272;;32841:60;;-1:-1:-1;;;32841:60:0;;;;;;;:::i;32794:272::-;33016:6;33010:13;33001:6;32997:2;32993:15;32986:38;32552:529;-1:-1:-1;;;;;;32679:51:0;-1:-1:-1;;;32679:51:0;;-1:-1:-1;32672:58:0;;32516:620;-1:-1:-1;33120:4:0;32344:799;;;;;;:::o;45256:992::-;45523:22;45573:1;45548:22;45565:4;45548:16;:22::i;:::-;:26;;;;:::i;:::-;45585:18;45606:26;;;:17;:26;;;;;;45523:51;;-1:-1:-1;45740:28:0;;;45736:329;;-1:-1:-1;;;;;45807:18:0;;45785:19;45807:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45859:30;;;;;;:44;;;45976:30;;:17;:30;;;;;:43;;;45736:329;-1:-1:-1;46162:26:0;;;;:17;:26;;;;;;;;46155:33;;;-1:-1:-1;;;;;46206:18:0;;;;;:12;:18;;;;;:34;;;;;;;46199:41;45256:992::o;46544:1083::-;46823:10;:17;46798:22;;46823:21;;46843:1;;46823:21;:::i;:::-;46855:18;46876:24;;;:15;:24;;;;;;47250:10;:26;;46798:46;;-1:-1:-1;46876:24:0;;46798:46;;47250:26;;;;;;:::i;:::-;;;;;;;;;47228:48;;47315:11;47290:10;47301;47290:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47395:28;;;:15;:28;;;;;;;:41;;;47568:24;;;;;47561:31;47603:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46615:1012;;;46544:1083;:::o;44041:221::-;44126:14;44143:20;44160:2;44143:16;:20::i;:::-;-1:-1:-1;;;;;44174:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44219:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44041:221:0:o;29586:385::-;-1:-1:-1;;;;;29666:16:0;;29658:61;;;;-1:-1:-1;;;29658:61:0;;14030:2:1;29658:61:0;;;14012:21:1;;;14049:18;;;14042:30;14108:34;14088:18;;;14081:62;14160:18;;29658:61:0;13828:356:1;29658:61:0;27669:4;27693:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27693:16:0;:30;29730:58;;;;-1:-1:-1;;;29730:58:0;;9847:2:1;29730:58:0;;;9829:21:1;9886:2;9866:18;;;9859:30;9925;9905:18;;;9898:58;9973:18;;29730:58:0;9645:352:1;29730:58:0;29802:45;29831:1;29835:2;29839:7;29802:20;:45::i;:::-;-1:-1:-1;;;;;29861:13:0;;;;;;:9;:13;;;;;:18;;29878:1;;29861:13;:18;;29878:1;;29861:18;:::i;:::-;;;;-1:-1:-1;;29890:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29890:21:0;-1:-1:-1;;;;;29890:21:0;;;;;;;;29930:33;;29890:16;;;29930:33;;29890:16;;29930:33;29586:385;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;19020:1;19013:14;;;19057:4;19044:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:1;;7005:632;-1:-1:-1;;;;;;7005:632:1:o;7834:219::-;7983:2;7972:9;7965:21;7946:4;8003:44;8043:2;8032:9;8028:18;8020:6;8003:44;:::i;8470:414::-;8672:2;8654:21;;;8711:2;8691:18;;;8684:30;8750:34;8745:2;8730:18;;8723:62;-1:-1:-1;;;8816:2:1;8801:18;;8794:48;8874:3;8859:19;;8470:414::o;14602:356::-;14804:2;14786:21;;;14823:18;;;14816:30;14882:34;14877:2;14862:18;;14855:62;14949:2;14934:18;;14602:356::o;17234:413::-;17436:2;17418:21;;;17475:2;17455:18;;;17448:30;17514:34;17509:2;17494:18;;17487:62;-1:-1:-1;;;17580:2:1;17565:18;;17558:47;17637:3;17622:19;;17234:413::o;19073:128::-;19113:3;19144:1;19140:6;19137:1;19134:13;19131:39;;;19150:18;;:::i;:::-;-1:-1:-1;19186:9:1;;19073:128::o;19206:120::-;19246:1;19272;19262:35;;19277:18;;:::i;:::-;-1:-1:-1;19311:9:1;;19206:120::o;19331:168::-;19371:7;19437:1;19433;19429:6;19425:14;19422:1;19419:21;19414:1;19407:9;19400:17;19396:45;19393:71;;;19444:18;;:::i;:::-;-1:-1:-1;19484:9:1;;19331:168::o;19504:125::-;19544:4;19572:1;19569;19566:8;19563:34;;;19577:18;;:::i;:::-;-1:-1:-1;19614:9:1;;19504:125::o;19634:258::-;19706:1;19716:113;19730:6;19727:1;19724:13;19716:113;;;19806:11;;;19800:18;19787:11;;;19780:39;19752:2;19745:10;19716:113;;;19847:6;19844:1;19841:13;19838:48;;;-1:-1:-1;;19882:1:1;19864:16;;19857:27;19634:258::o;19897:380::-;19976:1;19972:12;;;;20019;;;20040:61;;20094:4;20086:6;20082:17;20072:27;;20040:61;20147:2;20139:6;20136:14;20116:18;20113:38;20110:161;;;20193:10;20188:3;20184:20;20181:1;20174:31;20228:4;20225:1;20218:15;20256:4;20253:1;20246:15;20110:161;;19897:380;;;:::o;20282:135::-;20321:3;-1:-1:-1;;20342:17:1;;20339:43;;;20362:18;;:::i;:::-;-1:-1:-1;20409:1:1;20398:13;;20282:135::o;20422:112::-;20454:1;20480;20470:35;;20485:18;;:::i;:::-;-1:-1:-1;20519:9:1;;20422:112::o;20539:127::-;20600:10;20595:3;20591:20;20588:1;20581:31;20631:4;20628:1;20621:15;20655:4;20652:1;20645:15;20671:127;20732:10;20727:3;20723:20;20720:1;20713:31;20763:4;20760:1;20753:15;20787:4;20784:1;20777:15;20803:127;20864:10;20859:3;20855:20;20852:1;20845:31;20895:4;20892:1;20885:15;20919:4;20916:1;20909:15;20935:127;20996:10;20991:3;20987:20;20984:1;20977:31;21027:4;21024:1;21017:15;21051:4;21048:1;21041:15;21067:127;21128:10;21123:3;21119:20;21116:1;21109:31;21159:4;21156:1;21149:15;21183:4;21180:1;21173:15;21199:131;-1:-1:-1;;;;;;21273:32:1;;21263:43;;21253:71;;21320:1;21317;21310:12

Swarm Source

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