ETH Price: $2,764.89 (+4.75%)

Meta Pharaohs Deployment (MPA)
 

Overview

TokenID

110

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MetaPharaohsContract

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-03-27
*/

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

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

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

// SPDX-License-Identifier: MIT AND GPL-3.0

// 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/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/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/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/token/ERC721/extensions/ERC721Enumerable.sol



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);
    }
}

// File: contracts/SmartContract.sol

pragma solidity >=0.7.0 <0.9.0;



contract MetaPharaohsContract is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string private baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public preSaleCost = 0.005 ether;
    uint256 public cost = 0.2 ether;
    uint256 public maxSupply = 5555;
    uint256 public preSaleMaxSupply = 5555;
    uint256 public maxMintAmountPresale = 5;
    uint256 public maxMintAmount = 10;
    uint256 public nftPerAddressLimitPresale = 5;
    uint256 public nftPerAddressLimit = 10;
    uint256 public preSaleDate = 1648144211;
    uint256 public preSaleEndDate = 1651086000;
    uint256 public publicSaleDate = 1651172400;
    bool public paused = false;
    bool public revealed = false;
    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _name, string memory _symbol, string memory _initNotRevealedUri) ERC721(_name, _symbol) {
        setNotRevealedURI(_initNotRevealedUri);
    }
    
    //MODIFIERS
    modifier notPaused {
         require(!paused, "the contract is paused");
         _;
    }

    modifier saleStarted {
        require(block.timestamp >= preSaleDate, "Sale has not started yet");
        _;
    }

    modifier minimumMintAmount(uint256 _mintAmount) {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        _;
    }

    // INTERNAL
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function presaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount, uint256 _supply) internal {
            uint256 actualCost;
            block.timestamp < preSaleEndDate ? actualCost = preSaleCost : actualCost = cost;
            require(_ownerMintedCount + _mintAmount <= nftPerAddressLimitPresale, "max NFT per address exceeded for presale");
            require(msg.value >= actualCost * _mintAmount, "insufficient funds");
            require(_mintAmount <= maxMintAmountPresale,"max mint amount per transaction exceeded");
            require(_supply + _mintAmount <= preSaleMaxSupply,"max NFT presale limit exceeded");
    }

    function publicsaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount) internal {
        require(_ownerMintedCount + _mintAmount <= nftPerAddressLimit,"max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
        require(_mintAmount <= maxMintAmount,"max mint amount per transaction exceeded");
    }

    //MINT
    function mint(uint256 _mintAmount) public payable notPaused saleStarted minimumMintAmount(_mintAmount) {
        uint256 supply = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];

        //Do some validations depending on which step of the sale we are in
        block.timestamp < publicSaleDate ? presaleValidations(ownerMintedCount, _mintAmount, supply) : publicsaleValidations(ownerMintedCount, _mintAmount);

        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function gift(uint256 _mintAmount, address destination) public onlyOwner {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[destination]++;
            _safeMint(destination, supply + i);
        }
    }

    //PUBLIC VIEWS

    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) {
            return notRevealedUri;
        } else {
            string memory currentBaseURI = _baseURI();
            return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,tokenId.toString(), baseExtension)) : "";
        }
    }

    function getCurrentCost() public view returns (uint256) {
        if (block.timestamp < preSaleEndDate) {
            return preSaleCost;
        } else {
            return cost;
        }
    }

    //ONLY OWNER VIEWS
    function getBaseURI() public view onlyOwner returns (string memory) {
        return baseURI;
    }

    function getContractBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    //ONLY OWNER SETTERS
    function reveal() public onlyOwner {
        revealed = true;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner {
        nftPerAddressLimitPresale = _limit;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        preSaleCost = _newCost;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }
    
    function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountPresale = _newmaxMintAmount;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner {
        preSaleMaxSupply = _newPresaleMaxSupply;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setPreSaleDate(uint256 _preSaleDate) public onlyOwner {
        preSaleDate = _preSaleDate;
    }

    function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner {
        preSaleEndDate = _preSaleEndDate;
    }

    function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner {
        publicSaleDate = _publicSaleDate;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","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":"nftPerAddressLimitPresale","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":"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":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001e3565b506611c37937e08000600e556702c68af0bb140000600f556115b3601081905560115560056012819055600a601381905560149190915560155563623caf5360165563626992b060175563626ae4306018556019805461ffff191690553480156200009257600080fd5b506040516200330c3803806200330c833981016040819052620000b59162000340565b825183908390620000ce906000906020850190620001e3565b508051620000e4906001906020840190620001e3565b50505062000101620000fb6200011560201b60201c565b62000119565b6200010c816200016b565b50505062000424565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001df90600d906020840190620001e3565b5050565b828054620001f190620003d1565b90600052602060002090601f01602090048101928262000215576000855562000260565b82601f106200023057805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200026057825182559160200191906001019062000243565b506200026e92915062000272565b5090565b5b808211156200026e576000815560010162000273565b600082601f8301126200029b57600080fd5b81516001600160401b0380821115620002b857620002b86200040e565b604051601f8301601f19908116603f01168101908282118183101715620002e357620002e36200040e565b816040528381526020925086838588010111156200030057600080fd5b600091505b8382101562000324578582018301518183018401529082019062000305565b83821115620003365760008385830101525b9695505050505050565b6000806000606084860312156200035657600080fd5b83516001600160401b03808211156200036e57600080fd5b6200037c8783880162000289565b945060208601519150808211156200039357600080fd5b620003a18783880162000289565b93506040860151915080821115620003b857600080fd5b50620003c78682870162000289565b9150509250925092565b600181811c90821680620003e657607f821691505b602082108114156200040857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ed880620004346000396000f3fe6080604052600436106103815760003560e01c80636f9fb98a116101d1578063a18116f111610102578063cc9ff9c6116100a0578063e985e9c51161006f578063e985e9c5146109aa578063eced3873146109f3578063f2c4ce1e14610a09578063f2fde38b14610a2957600080fd5b8063cc9ff9c61461093e578063d0eb26b014610954578063d5abeb0114610974578063da3ef23f1461098a57600080fd5b8063b88d4fde116100dc578063b88d4fde146108d3578063ba7d2c76146108f3578063c668286214610909578063c87b56dd1461091e57600080fd5b8063a18116f114610888578063a22cb4651461089e578063a475b5dd146108be57600080fd5b80637f00c7a61161016f5780638da5cb5b116101495780638da5cb5b146108225780638fdcf9421461084057806395d89b4114610860578063a0712d681461087557600080fd5b80637f00c7a6146107cd578063831e60de146107ed57806383a076be1461080257600080fd5b8063715018a6116101ab578063715018a61461076c578063743c7f6b146107815780637967a50a146107a15780637effc032146107b757600080fd5b80636f9fb98a1461072257806370a0823114610737578063714c53981461075757600080fd5b806323b872dd116102b657806344a0d68a116102545780635c975abb116102235780635c975abb146106a85780636352211e146106c2578063669736c0146106e25780636f8b44b01461070257600080fd5b806344a0d68a146106295780634f6ccce714610649578063518302271461066957806355f804b31461068857600080fd5b80633ccfd60b116102905780633ccfd60b146105b457806342842e0e146105bc57806342f0ca0d146105dc578063438b6300146105fc57600080fd5b806323b872dd1461055e5780632e09282e1461057e5780632f745c591461059457600080fd5b80630a50716b1161032357806318160ddd116102fd57806318160ddd146104f057806318cae269146105055780631985cc6514610532578063239c70ae1461054857600080fd5b80630a50716b1461048c5780630e54a883146104ac57806313faede6146104cc57600080fd5b8063081812fc1161035f578063081812fc146103ff578063081c8c4414610437578063095ea7b31461044c5780630a403f041461046c57600080fd5b806301ffc9a71461038657806302329a29146103bb57806306fdde03146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046129c3565b610a49565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d63660046129a8565b610a74565b005b3480156103e957600080fd5b506103f2610aba565b6040516103b29190612bf3565b34801561040b57600080fd5b5061041f61041a366004612a46565b610b4c565b6040516001600160a01b0390911681526020016103b2565b34801561044357600080fd5b506103f2610be1565b34801561045857600080fd5b506103db61046736600461297e565b610c6f565b34801561047857600080fd5b506103db610487366004612a46565b610d85565b34801561049857600080fd5b506103db6104a7366004612a46565b610db4565b3480156104b857600080fd5b506103db6104c7366004612a46565b610de3565b3480156104d857600080fd5b506104e2600f5481565b6040519081526020016103b2565b3480156104fc57600080fd5b506008546104e2565b34801561051157600080fd5b506104e261052036600461284e565b601a6020526000908152604090205481565b34801561053e57600080fd5b506104e260165481565b34801561055457600080fd5b506104e260135481565b34801561056a57600080fd5b506103db61057936600461289c565b610e12565b34801561058a57600080fd5b506104e260145481565b3480156105a057600080fd5b506104e26105af36600461297e565b610e43565b6103db610ed9565b3480156105c857600080fd5b506103db6105d736600461289c565b610f5b565b3480156105e857600080fd5b506103db6105f7366004612a46565b610f76565b34801561060857600080fd5b5061061c61061736600461284e565b610fa5565b6040516103b29190612baf565b34801561063557600080fd5b506103db610644366004612a46565b611047565b34801561065557600080fd5b506104e2610664366004612a46565b611076565b34801561067557600080fd5b506019546103a690610100900460ff1681565b34801561069457600080fd5b506103db6106a33660046129fd565b611109565b3480156106b457600080fd5b506019546103a69060ff1681565b3480156106ce57600080fd5b5061041f6106dd366004612a46565b61114a565b3480156106ee57600080fd5b506103db6106fd366004612a46565b6111c1565b34801561070e57600080fd5b506103db61071d366004612a46565b6111f0565b34801561072e57600080fd5b506104e261121f565b34801561074357600080fd5b506104e261075236600461284e565b611251565b34801561076357600080fd5b506103f26112d8565b34801561077857600080fd5b506103db611312565b34801561078d57600080fd5b506103db61079c366004612a46565b611348565b3480156107ad57600080fd5b506104e260175481565b3480156107c357600080fd5b506104e260125481565b3480156107d957600080fd5b506103db6107e8366004612a46565b611377565b3480156107f957600080fd5b506104e26113a6565b34801561080e57600080fd5b506103db61081d366004612a5f565b6113c0565b34801561082e57600080fd5b50600a546001600160a01b031661041f565b34801561084c57600080fd5b506103db61085b366004612a46565b6114fb565b34801561086c57600080fd5b506103f261152a565b6103db610883366004612a46565b611539565b34801561089457600080fd5b506104e260115481565b3480156108aa57600080fd5b506103db6108b9366004612954565b611710565b3480156108ca57600080fd5b506103db6117d5565b3480156108df57600080fd5b506103db6108ee3660046128d8565b611810565b3480156108ff57600080fd5b506104e260155481565b34801561091557600080fd5b506103f2611842565b34801561092a57600080fd5b506103f2610939366004612a46565b61184f565b34801561094a57600080fd5b506104e2600e5481565b34801561096057600080fd5b506103db61096f366004612a46565b6119d3565b34801561098057600080fd5b506104e260105481565b34801561099657600080fd5b506103db6109a53660046129fd565b611a02565b3480156109b657600080fd5b506103a66109c5366004612869565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109ff57600080fd5b506104e260185481565b348015610a1557600080fd5b506103db610a243660046129fd565b611a3f565b348015610a3557600080fd5b506103db610a4436600461284e565b611a7c565b60006001600160e01b0319821663780e9d6360e01b1480610a6e5750610a6e82611b14565b92915050565b600a546001600160a01b03163314610aa75760405162461bcd60e51b8152600401610a9e90612ca0565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610ac990612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054610af590612db4565b8015610b425780601f10610b1757610100808354040283529160200191610b42565b820191906000526020600020905b815481529060010190602001808311610b2557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bc55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a9e565b506000908152600460205260409020546001600160a01b031690565b600d8054610bee90612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90612db4565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b6000610c7a8261114a565b9050806001600160a01b0316836001600160a01b03161415610ce85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a9e565b336001600160a01b0382161480610d045750610d0481336109c5565b610d765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a9e565b610d808383611b64565b505050565b600a546001600160a01b03163314610daf5760405162461bcd60e51b8152600401610a9e90612ca0565b601155565b600a546001600160a01b03163314610dde5760405162461bcd60e51b8152600401610a9e90612ca0565b601455565b600a546001600160a01b03163314610e0d5760405162461bcd60e51b8152600401610a9e90612ca0565b601855565b610e1c3382611bd2565b610e385760405162461bcd60e51b8152600401610a9e90612cd5565b610d80838383611cc9565b6000610e4e83611251565b8210610eb05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a9e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f035760405162461bcd60e51b8152600401610a9e90612ca0565b604051600090339047908381818185875af1925050503d8060008114610f45576040519150601f19603f3d011682016040523d82523d6000602084013e610f4a565b606091505b5050905080610f5857600080fd5b50565b610d8083838360405180602001604052806000815250611810565b600a546001600160a01b03163314610fa05760405162461bcd60e51b8152600401610a9e90612ca0565b601755565b60606000610fb283611251565b905060008167ffffffffffffffff811115610fcf57610fcf612e76565b604051908082528060200260200182016040528015610ff8578160200160208202803683370190505b50905060005b8281101561103f576110108582610e43565b82828151811061102257611022612e60565b60209081029190910101528061103781612def565b915050610ffe565b509392505050565b600a546001600160a01b031633146110715760405162461bcd60e51b8152600401610a9e90612ca0565b600f55565b600061108160085490565b82106110e45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a9e565b600882815481106110f7576110f7612e60565b90600052602060002001549050919050565b600a546001600160a01b031633146111335760405162461bcd60e51b8152600401610a9e90612ca0565b805161114690600b906020840190612718565b5050565b6000818152600260205260408120546001600160a01b031680610a6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a9e565b600a546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610a9e90612ca0565b601255565b600a546001600160a01b0316331461121a5760405162461bcd60e51b8152600401610a9e90612ca0565b601055565b600a546000906001600160a01b0316331461124c5760405162461bcd60e51b8152600401610a9e90612ca0565b504790565b60006001600160a01b0382166112bc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a9e565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113055760405162461bcd60e51b8152600401610a9e90612ca0565b600b8054610ac990612db4565b600a546001600160a01b0316331461133c5760405162461bcd60e51b8152600401610a9e90612ca0565b6113466000611e74565b565b600a546001600160a01b031633146113725760405162461bcd60e51b8152600401610a9e90612ca0565b601655565b600a546001600160a01b031633146113a15760405162461bcd60e51b8152600401610a9e90612ca0565b601355565b60006017544210156113b95750600e5490565b50600f5490565b600a546001600160a01b031633146113ea5760405162461bcd60e51b8152600401610a9e90612ca0565b6000821161143a5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a9e565b600061144560085490565b6010549091506114558483612d26565b111561149c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a9e565b60015b8381116114f5576001600160a01b0383166000908152601a602052604081208054916114ca83612def565b909155506114e39050836114de8385612d26565b611ec6565b806114ed81612def565b91505061149f565b50505050565b600a546001600160a01b031633146115255760405162461bcd60e51b8152600401610a9e90612ca0565b600e55565b606060018054610ac990612db4565b60195460ff16156115855760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a9e565b6016544210156115d75760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610a9e565b80600081116116285760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a9e565b600061163360085490565b336000908152601a602052604090205460185491925090421061165f5761165a8185611ee0565b61166a565b61166a818584611faf565b6010546116778584612d26565b11156116be5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a9e565b60015b84811161170957336000908152601a602052604081208054916116e383612def565b909155506116f79050336114de8386612d26565b8061170181612def565b9150506116c1565b5050505050565b6001600160a01b0382163314156117695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a9e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117ff5760405162461bcd60e51b8152600401610a9e90612ca0565b6019805461ff001916610100179055565b61181a3383611bd2565b6118365760405162461bcd60e51b8152600401610a9e90612cd5565b6114f584848484612102565b600c8054610bee90612db4565b6000818152600260205260409020546060906001600160a01b03166118ce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a9e565b601954610100900460ff1661196f57600d80546118ea90612db4565b80601f016020809104026020016040519081016040528092919081815260200182805461191690612db4565b80156119635780601f1061193857610100808354040283529160200191611963565b820191906000526020600020905b81548152906001019060200180831161194657829003601f168201915b50505050509050919050565b6000611979612135565b9050600081511161199957604051806020016040528060008152506119c7565b806119a384612144565b600c6040516020016119b793929190612aae565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146119fd5760405162461bcd60e51b8152600401610a9e90612ca0565b601555565b600a546001600160a01b03163314611a2c5760405162461bcd60e51b8152600401610a9e90612ca0565b805161114690600c906020840190612718565b600a546001600160a01b03163314611a695760405162461bcd60e51b8152600401610a9e90612ca0565b805161114690600d906020840190612718565b600a546001600160a01b03163314611aa65760405162461bcd60e51b8152600401610a9e90612ca0565b6001600160a01b038116611b0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a9e565b610f5881611e74565b60006001600160e01b031982166380ac58cd60e01b1480611b4557506001600160e01b03198216635b5e139f60e01b145b80610a6e57506301ffc9a760e01b6001600160e01b0319831614610a6e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b998261114a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c4b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a9e565b6000611c568361114a565b9050806001600160a01b0316846001600160a01b03161480611c915750836001600160a01b0316611c8684610b4c565b6001600160a01b0316145b80611cc157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cdc8261114a565b6001600160a01b031614611d445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a9e565b6001600160a01b038216611da65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a9e565b611db1838383612242565b611dbc600082611b64565b6001600160a01b0383166000908152600360205260408120805460019290611de5908490612d71565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e13908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111468282604051806020016040528060008152506122fa565b601554611eed8284612d26565b1115611f3b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a9e565b80600f54611f499190612d52565b341015611f8d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a9e565b6013548111156111465760405162461bcd60e51b8152600401610a9e90612c58565b60006017544210611fc45750600f5480611fca565b50600e54805b50601454611fd88486612d26565b11156120375760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610a9e565b6120418382612d52565b3410156120855760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a9e565b6012548311156120a75760405162461bcd60e51b8152600401610a9e90612c58565b6011546120b48484612d26565b11156114f55760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610a9e565b61210d848484611cc9565b6121198484848461232d565b6114f55760405162461bcd60e51b8152600401610a9e90612c06565b6060600b8054610ac990612db4565b6060816121685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612192578061217c81612def565b915061218b9050600a83612d3e565b915061216c565b60008167ffffffffffffffff8111156121ad576121ad612e76565b6040519080825280601f01601f1916602001820160405280156121d7576020820181803683370190505b5090505b8415611cc1576121ec600183612d71565b91506121f9600a86612e0a565b612204906030612d26565b60f81b81838151811061221957612219612e60565b60200101906001600160f81b031916908160001a90535061223b600a86612d3e565b94506121db565b6001600160a01b03831661229d5761229881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122c0565b816001600160a01b0316836001600160a01b0316146122c0576122c0838261243a565b6001600160a01b0382166122d757610d80816124d7565b826001600160a01b0316826001600160a01b031614610d8057610d808282612586565b61230483836125ca565b612311600084848461232d565b610d805760405162461bcd60e51b8152600401610a9e90612c06565b60006001600160a01b0384163b1561242f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612371903390899088908890600401612b72565b602060405180830381600087803b15801561238b57600080fd5b505af19250505080156123bb575060408051601f3d908101601f191682019092526123b8918101906129e0565b60015b612415573d8080156123e9576040519150601f19603f3d011682016040523d82523d6000602084013e6123ee565b606091505b50805161240d5760405162461bcd60e51b8152600401610a9e90612c06565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cc1565b506001949350505050565b6000600161244784611251565b6124519190612d71565b6000838152600760205260409020549091508082146124a4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124e990600190612d71565b6000838152600960205260408120546008805493945090928490811061251157612511612e60565b90600052602060002001549050806008838154811061253257612532612e60565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061256a5761256a612e4a565b6001900381819060005260206000200160009055905550505050565b600061259183611251565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a9e565b6000818152600260205260409020546001600160a01b0316156126855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a9e565b61269160008383612242565b6001600160a01b03821660009081526003602052604081208054600192906126ba908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461272490612db4565b90600052602060002090601f016020900481019282612746576000855561278c565b82601f1061275f57805160ff191683800117855561278c565b8280016001018555821561278c579182015b8281111561278c578251825591602001919060010190612771565b5061279892915061279c565b5090565b5b80821115612798576000815560010161279d565b600067ffffffffffffffff808411156127cc576127cc612e76565b604051601f8501601f19908116603f011681019082821181831017156127f4576127f4612e76565b8160405280935085815286868601111561280d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119ce57600080fd5b803580151581146119ce57600080fd5b60006020828403121561286057600080fd5b6119c782612827565b6000806040838503121561287c57600080fd5b61288583612827565b915061289360208401612827565b90509250929050565b6000806000606084860312156128b157600080fd5b6128ba84612827565b92506128c860208501612827565b9150604084013590509250925092565b600080600080608085870312156128ee57600080fd5b6128f785612827565b935061290560208601612827565b925060408501359150606085013567ffffffffffffffff81111561292857600080fd5b8501601f8101871361293957600080fd5b612948878235602084016127b1565b91505092959194509250565b6000806040838503121561296757600080fd5b61297083612827565b91506128936020840161283e565b6000806040838503121561299157600080fd5b61299a83612827565b946020939093013593505050565b6000602082840312156129ba57600080fd5b6119c78261283e565b6000602082840312156129d557600080fd5b81356119c781612e8c565b6000602082840312156129f257600080fd5b81516119c781612e8c565b600060208284031215612a0f57600080fd5b813567ffffffffffffffff811115612a2657600080fd5b8201601f81018413612a3757600080fd5b611cc1848235602084016127b1565b600060208284031215612a5857600080fd5b5035919050565b60008060408385031215612a7257600080fd5b8235915061289360208401612827565b60008151808452612a9a816020860160208601612d88565b601f01601f19169290920160200192915050565b600084516020612ac18285838a01612d88565b855191840191612ad48184848a01612d88565b8554920191600090600181811c9080831680612af157607f831692505b858310811415612b0f57634e487b7160e01b85526022600452602485fd5b808015612b235760018114612b3457612b61565b60ff19851688528388019550612b61565b60008b81526020902060005b85811015612b595781548a820152908401908801612b40565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba590830184612a82565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612be757835183529284019291840191600101612bcb565b50909695505050505050565b6020815260006119c76020830184612a82565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d3957612d39612e1e565b500190565b600082612d4d57612d4d612e34565b500490565b6000816000190483118215151615612d6c57612d6c612e1e565b500290565b600082821015612d8357612d83612e1e565b500390565b60005b83811015612da3578181015183820152602001612d8b565b838111156114f55750506000910152565b600181811c90821680612dc857607f821691505b60208210811415612de957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e0357612e03612e1e565b5060010190565b600082612e1957612e19612e34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f5857600080fdfea2646970667358221220347fdddac11e5a45a9acbc0fb908fe935c077930d5bee54bbaf0a71cb2ba7e4564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000184d6574612050686172616f6873204465706c6f796d656e74000000000000000000000000000000000000000000000000000000000000000000000000000000034d50410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d655346596270474c6d66636135625a6757774d3870715a376e526865697254727a396f4b4d4b666d776e485a00000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103815760003560e01c80636f9fb98a116101d1578063a18116f111610102578063cc9ff9c6116100a0578063e985e9c51161006f578063e985e9c5146109aa578063eced3873146109f3578063f2c4ce1e14610a09578063f2fde38b14610a2957600080fd5b8063cc9ff9c61461093e578063d0eb26b014610954578063d5abeb0114610974578063da3ef23f1461098a57600080fd5b8063b88d4fde116100dc578063b88d4fde146108d3578063ba7d2c76146108f3578063c668286214610909578063c87b56dd1461091e57600080fd5b8063a18116f114610888578063a22cb4651461089e578063a475b5dd146108be57600080fd5b80637f00c7a61161016f5780638da5cb5b116101495780638da5cb5b146108225780638fdcf9421461084057806395d89b4114610860578063a0712d681461087557600080fd5b80637f00c7a6146107cd578063831e60de146107ed57806383a076be1461080257600080fd5b8063715018a6116101ab578063715018a61461076c578063743c7f6b146107815780637967a50a146107a15780637effc032146107b757600080fd5b80636f9fb98a1461072257806370a0823114610737578063714c53981461075757600080fd5b806323b872dd116102b657806344a0d68a116102545780635c975abb116102235780635c975abb146106a85780636352211e146106c2578063669736c0146106e25780636f8b44b01461070257600080fd5b806344a0d68a146106295780634f6ccce714610649578063518302271461066957806355f804b31461068857600080fd5b80633ccfd60b116102905780633ccfd60b146105b457806342842e0e146105bc57806342f0ca0d146105dc578063438b6300146105fc57600080fd5b806323b872dd1461055e5780632e09282e1461057e5780632f745c591461059457600080fd5b80630a50716b1161032357806318160ddd116102fd57806318160ddd146104f057806318cae269146105055780631985cc6514610532578063239c70ae1461054857600080fd5b80630a50716b1461048c5780630e54a883146104ac57806313faede6146104cc57600080fd5b8063081812fc1161035f578063081812fc146103ff578063081c8c4414610437578063095ea7b31461044c5780630a403f041461046c57600080fd5b806301ffc9a71461038657806302329a29146103bb57806306fdde03146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046129c3565b610a49565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d63660046129a8565b610a74565b005b3480156103e957600080fd5b506103f2610aba565b6040516103b29190612bf3565b34801561040b57600080fd5b5061041f61041a366004612a46565b610b4c565b6040516001600160a01b0390911681526020016103b2565b34801561044357600080fd5b506103f2610be1565b34801561045857600080fd5b506103db61046736600461297e565b610c6f565b34801561047857600080fd5b506103db610487366004612a46565b610d85565b34801561049857600080fd5b506103db6104a7366004612a46565b610db4565b3480156104b857600080fd5b506103db6104c7366004612a46565b610de3565b3480156104d857600080fd5b506104e2600f5481565b6040519081526020016103b2565b3480156104fc57600080fd5b506008546104e2565b34801561051157600080fd5b506104e261052036600461284e565b601a6020526000908152604090205481565b34801561053e57600080fd5b506104e260165481565b34801561055457600080fd5b506104e260135481565b34801561056a57600080fd5b506103db61057936600461289c565b610e12565b34801561058a57600080fd5b506104e260145481565b3480156105a057600080fd5b506104e26105af36600461297e565b610e43565b6103db610ed9565b3480156105c857600080fd5b506103db6105d736600461289c565b610f5b565b3480156105e857600080fd5b506103db6105f7366004612a46565b610f76565b34801561060857600080fd5b5061061c61061736600461284e565b610fa5565b6040516103b29190612baf565b34801561063557600080fd5b506103db610644366004612a46565b611047565b34801561065557600080fd5b506104e2610664366004612a46565b611076565b34801561067557600080fd5b506019546103a690610100900460ff1681565b34801561069457600080fd5b506103db6106a33660046129fd565b611109565b3480156106b457600080fd5b506019546103a69060ff1681565b3480156106ce57600080fd5b5061041f6106dd366004612a46565b61114a565b3480156106ee57600080fd5b506103db6106fd366004612a46565b6111c1565b34801561070e57600080fd5b506103db61071d366004612a46565b6111f0565b34801561072e57600080fd5b506104e261121f565b34801561074357600080fd5b506104e261075236600461284e565b611251565b34801561076357600080fd5b506103f26112d8565b34801561077857600080fd5b506103db611312565b34801561078d57600080fd5b506103db61079c366004612a46565b611348565b3480156107ad57600080fd5b506104e260175481565b3480156107c357600080fd5b506104e260125481565b3480156107d957600080fd5b506103db6107e8366004612a46565b611377565b3480156107f957600080fd5b506104e26113a6565b34801561080e57600080fd5b506103db61081d366004612a5f565b6113c0565b34801561082e57600080fd5b50600a546001600160a01b031661041f565b34801561084c57600080fd5b506103db61085b366004612a46565b6114fb565b34801561086c57600080fd5b506103f261152a565b6103db610883366004612a46565b611539565b34801561089457600080fd5b506104e260115481565b3480156108aa57600080fd5b506103db6108b9366004612954565b611710565b3480156108ca57600080fd5b506103db6117d5565b3480156108df57600080fd5b506103db6108ee3660046128d8565b611810565b3480156108ff57600080fd5b506104e260155481565b34801561091557600080fd5b506103f2611842565b34801561092a57600080fd5b506103f2610939366004612a46565b61184f565b34801561094a57600080fd5b506104e2600e5481565b34801561096057600080fd5b506103db61096f366004612a46565b6119d3565b34801561098057600080fd5b506104e260105481565b34801561099657600080fd5b506103db6109a53660046129fd565b611a02565b3480156109b657600080fd5b506103a66109c5366004612869565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109ff57600080fd5b506104e260185481565b348015610a1557600080fd5b506103db610a243660046129fd565b611a3f565b348015610a3557600080fd5b506103db610a4436600461284e565b611a7c565b60006001600160e01b0319821663780e9d6360e01b1480610a6e5750610a6e82611b14565b92915050565b600a546001600160a01b03163314610aa75760405162461bcd60e51b8152600401610a9e90612ca0565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610ac990612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054610af590612db4565b8015610b425780601f10610b1757610100808354040283529160200191610b42565b820191906000526020600020905b815481529060010190602001808311610b2557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bc55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a9e565b506000908152600460205260409020546001600160a01b031690565b600d8054610bee90612db4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90612db4565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b6000610c7a8261114a565b9050806001600160a01b0316836001600160a01b03161415610ce85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a9e565b336001600160a01b0382161480610d045750610d0481336109c5565b610d765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a9e565b610d808383611b64565b505050565b600a546001600160a01b03163314610daf5760405162461bcd60e51b8152600401610a9e90612ca0565b601155565b600a546001600160a01b03163314610dde5760405162461bcd60e51b8152600401610a9e90612ca0565b601455565b600a546001600160a01b03163314610e0d5760405162461bcd60e51b8152600401610a9e90612ca0565b601855565b610e1c3382611bd2565b610e385760405162461bcd60e51b8152600401610a9e90612cd5565b610d80838383611cc9565b6000610e4e83611251565b8210610eb05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a9e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f035760405162461bcd60e51b8152600401610a9e90612ca0565b604051600090339047908381818185875af1925050503d8060008114610f45576040519150601f19603f3d011682016040523d82523d6000602084013e610f4a565b606091505b5050905080610f5857600080fd5b50565b610d8083838360405180602001604052806000815250611810565b600a546001600160a01b03163314610fa05760405162461bcd60e51b8152600401610a9e90612ca0565b601755565b60606000610fb283611251565b905060008167ffffffffffffffff811115610fcf57610fcf612e76565b604051908082528060200260200182016040528015610ff8578160200160208202803683370190505b50905060005b8281101561103f576110108582610e43565b82828151811061102257611022612e60565b60209081029190910101528061103781612def565b915050610ffe565b509392505050565b600a546001600160a01b031633146110715760405162461bcd60e51b8152600401610a9e90612ca0565b600f55565b600061108160085490565b82106110e45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a9e565b600882815481106110f7576110f7612e60565b90600052602060002001549050919050565b600a546001600160a01b031633146111335760405162461bcd60e51b8152600401610a9e90612ca0565b805161114690600b906020840190612718565b5050565b6000818152600260205260408120546001600160a01b031680610a6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a9e565b600a546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610a9e90612ca0565b601255565b600a546001600160a01b0316331461121a5760405162461bcd60e51b8152600401610a9e90612ca0565b601055565b600a546000906001600160a01b0316331461124c5760405162461bcd60e51b8152600401610a9e90612ca0565b504790565b60006001600160a01b0382166112bc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a9e565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113055760405162461bcd60e51b8152600401610a9e90612ca0565b600b8054610ac990612db4565b600a546001600160a01b0316331461133c5760405162461bcd60e51b8152600401610a9e90612ca0565b6113466000611e74565b565b600a546001600160a01b031633146113725760405162461bcd60e51b8152600401610a9e90612ca0565b601655565b600a546001600160a01b031633146113a15760405162461bcd60e51b8152600401610a9e90612ca0565b601355565b60006017544210156113b95750600e5490565b50600f5490565b600a546001600160a01b031633146113ea5760405162461bcd60e51b8152600401610a9e90612ca0565b6000821161143a5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a9e565b600061144560085490565b6010549091506114558483612d26565b111561149c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a9e565b60015b8381116114f5576001600160a01b0383166000908152601a602052604081208054916114ca83612def565b909155506114e39050836114de8385612d26565b611ec6565b806114ed81612def565b91505061149f565b50505050565b600a546001600160a01b031633146115255760405162461bcd60e51b8152600401610a9e90612ca0565b600e55565b606060018054610ac990612db4565b60195460ff16156115855760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a9e565b6016544210156115d75760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610a9e565b80600081116116285760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a9e565b600061163360085490565b336000908152601a602052604090205460185491925090421061165f5761165a8185611ee0565b61166a565b61166a818584611faf565b6010546116778584612d26565b11156116be5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a9e565b60015b84811161170957336000908152601a602052604081208054916116e383612def565b909155506116f79050336114de8386612d26565b8061170181612def565b9150506116c1565b5050505050565b6001600160a01b0382163314156117695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a9e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117ff5760405162461bcd60e51b8152600401610a9e90612ca0565b6019805461ff001916610100179055565b61181a3383611bd2565b6118365760405162461bcd60e51b8152600401610a9e90612cd5565b6114f584848484612102565b600c8054610bee90612db4565b6000818152600260205260409020546060906001600160a01b03166118ce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a9e565b601954610100900460ff1661196f57600d80546118ea90612db4565b80601f016020809104026020016040519081016040528092919081815260200182805461191690612db4565b80156119635780601f1061193857610100808354040283529160200191611963565b820191906000526020600020905b81548152906001019060200180831161194657829003601f168201915b50505050509050919050565b6000611979612135565b9050600081511161199957604051806020016040528060008152506119c7565b806119a384612144565b600c6040516020016119b793929190612aae565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146119fd5760405162461bcd60e51b8152600401610a9e90612ca0565b601555565b600a546001600160a01b03163314611a2c5760405162461bcd60e51b8152600401610a9e90612ca0565b805161114690600c906020840190612718565b600a546001600160a01b03163314611a695760405162461bcd60e51b8152600401610a9e90612ca0565b805161114690600d906020840190612718565b600a546001600160a01b03163314611aa65760405162461bcd60e51b8152600401610a9e90612ca0565b6001600160a01b038116611b0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a9e565b610f5881611e74565b60006001600160e01b031982166380ac58cd60e01b1480611b4557506001600160e01b03198216635b5e139f60e01b145b80610a6e57506301ffc9a760e01b6001600160e01b0319831614610a6e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b998261114a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c4b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a9e565b6000611c568361114a565b9050806001600160a01b0316846001600160a01b03161480611c915750836001600160a01b0316611c8684610b4c565b6001600160a01b0316145b80611cc157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cdc8261114a565b6001600160a01b031614611d445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a9e565b6001600160a01b038216611da65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a9e565b611db1838383612242565b611dbc600082611b64565b6001600160a01b0383166000908152600360205260408120805460019290611de5908490612d71565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e13908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111468282604051806020016040528060008152506122fa565b601554611eed8284612d26565b1115611f3b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a9e565b80600f54611f499190612d52565b341015611f8d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a9e565b6013548111156111465760405162461bcd60e51b8152600401610a9e90612c58565b60006017544210611fc45750600f5480611fca565b50600e54805b50601454611fd88486612d26565b11156120375760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610a9e565b6120418382612d52565b3410156120855760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a9e565b6012548311156120a75760405162461bcd60e51b8152600401610a9e90612c58565b6011546120b48484612d26565b11156114f55760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610a9e565b61210d848484611cc9565b6121198484848461232d565b6114f55760405162461bcd60e51b8152600401610a9e90612c06565b6060600b8054610ac990612db4565b6060816121685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612192578061217c81612def565b915061218b9050600a83612d3e565b915061216c565b60008167ffffffffffffffff8111156121ad576121ad612e76565b6040519080825280601f01601f1916602001820160405280156121d7576020820181803683370190505b5090505b8415611cc1576121ec600183612d71565b91506121f9600a86612e0a565b612204906030612d26565b60f81b81838151811061221957612219612e60565b60200101906001600160f81b031916908160001a90535061223b600a86612d3e565b94506121db565b6001600160a01b03831661229d5761229881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122c0565b816001600160a01b0316836001600160a01b0316146122c0576122c0838261243a565b6001600160a01b0382166122d757610d80816124d7565b826001600160a01b0316826001600160a01b031614610d8057610d808282612586565b61230483836125ca565b612311600084848461232d565b610d805760405162461bcd60e51b8152600401610a9e90612c06565b60006001600160a01b0384163b1561242f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612371903390899088908890600401612b72565b602060405180830381600087803b15801561238b57600080fd5b505af19250505080156123bb575060408051601f3d908101601f191682019092526123b8918101906129e0565b60015b612415573d8080156123e9576040519150601f19603f3d011682016040523d82523d6000602084013e6123ee565b606091505b50805161240d5760405162461bcd60e51b8152600401610a9e90612c06565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cc1565b506001949350505050565b6000600161244784611251565b6124519190612d71565b6000838152600760205260409020549091508082146124a4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124e990600190612d71565b6000838152600960205260408120546008805493945090928490811061251157612511612e60565b90600052602060002001549050806008838154811061253257612532612e60565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061256a5761256a612e4a565b6001900381819060005260206000200160009055905550505050565b600061259183611251565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a9e565b6000818152600260205260409020546001600160a01b0316156126855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a9e565b61269160008383612242565b6001600160a01b03821660009081526003602052604081208054600192906126ba908490612d26565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461272490612db4565b90600052602060002090601f016020900481019282612746576000855561278c565b82601f1061275f57805160ff191683800117855561278c565b8280016001018555821561278c579182015b8281111561278c578251825591602001919060010190612771565b5061279892915061279c565b5090565b5b80821115612798576000815560010161279d565b600067ffffffffffffffff808411156127cc576127cc612e76565b604051601f8501601f19908116603f011681019082821181831017156127f4576127f4612e76565b8160405280935085815286868601111561280d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119ce57600080fd5b803580151581146119ce57600080fd5b60006020828403121561286057600080fd5b6119c782612827565b6000806040838503121561287c57600080fd5b61288583612827565b915061289360208401612827565b90509250929050565b6000806000606084860312156128b157600080fd5b6128ba84612827565b92506128c860208501612827565b9150604084013590509250925092565b600080600080608085870312156128ee57600080fd5b6128f785612827565b935061290560208601612827565b925060408501359150606085013567ffffffffffffffff81111561292857600080fd5b8501601f8101871361293957600080fd5b612948878235602084016127b1565b91505092959194509250565b6000806040838503121561296757600080fd5b61297083612827565b91506128936020840161283e565b6000806040838503121561299157600080fd5b61299a83612827565b946020939093013593505050565b6000602082840312156129ba57600080fd5b6119c78261283e565b6000602082840312156129d557600080fd5b81356119c781612e8c565b6000602082840312156129f257600080fd5b81516119c781612e8c565b600060208284031215612a0f57600080fd5b813567ffffffffffffffff811115612a2657600080fd5b8201601f81018413612a3757600080fd5b611cc1848235602084016127b1565b600060208284031215612a5857600080fd5b5035919050565b60008060408385031215612a7257600080fd5b8235915061289360208401612827565b60008151808452612a9a816020860160208601612d88565b601f01601f19169290920160200192915050565b600084516020612ac18285838a01612d88565b855191840191612ad48184848a01612d88565b8554920191600090600181811c9080831680612af157607f831692505b858310811415612b0f57634e487b7160e01b85526022600452602485fd5b808015612b235760018114612b3457612b61565b60ff19851688528388019550612b61565b60008b81526020902060005b85811015612b595781548a820152908401908801612b40565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba590830184612a82565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612be757835183529284019291840191600101612bcb565b50909695505050505050565b6020815260006119c76020830184612a82565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d3957612d39612e1e565b500190565b600082612d4d57612d4d612e34565b500490565b6000816000190483118215151615612d6c57612d6c612e1e565b500290565b600082821015612d8357612d83612e1e565b500390565b60005b83811015612da3578181015183820152602001612d8b565b838111156114f55750506000910152565b600181811c90821680612dc857607f821691505b60208210811415612de957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e0357612e03612e1e565b5060010190565b600082612e1957612e19612e34565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f5857600080fdfea2646970667358221220347fdddac11e5a45a9acbc0fb908fe935c077930d5bee54bbaf0a71cb2ba7e4564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000184d6574612050686172616f6873204465706c6f796d656e74000000000000000000000000000000000000000000000000000000000000000000000000000000034d50410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d655346596270474c6d66636135625a6757774d3870715a376e526865697254727a396f4b4d4b666d776e485a00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Meta Pharaohs Deployment
Arg [1] : _symbol (string): MPA
Arg [2] : _initNotRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmeSFYbpGLmfca5bZgWwM8pqZ7nRheirTrz9oKMKfmwnHZ

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 4d6574612050686172616f6873204465706c6f796d656e740000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d50410000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d655346596270474c6d66636135625a6757774d3870715a376e526865
Arg [10] : 697254727a396f4b4d4b666d776e485a00000000000000000000000000000000


Deployed Bytecode Sourcemap

43450:7163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34945:224;;;;;;;;;;-1:-1:-1;34945:224:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;34945:224:0;;;;;;;;48617:79;;;;;;;;;;-1:-1:-1;48617:79:0;;;;;:::i;:::-;;:::i;:::-;;21846:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23405:221::-;;;;;;;;;;-1:-1:-1;23405:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;23405:221:0;6563:203:1;43621:28:0;;;;;;;;;;;;;:::i;22928:411::-;;;;;;;;;;-1:-1:-1;22928:411:0;;;;;:::i;:::-;;:::i;49820:134::-;;;;;;;;;;-1:-1:-1;49820:134:0;;;;;:::i;:::-;;:::i;48708:124::-;;;;;;;;;;-1:-1:-1;48708:124:0;;;;;:::i;:::-;;:::i;50314:120::-;;;;;;;;;;-1:-1:-1;50314:120:0;;;;;:::i;:::-;;:::i;43703:31::-;;;;;;;;;;;;;;;;;;;18962:25:1;;;18950:2;18935:18;43703:31:0;18816:177:1;35585:113:0;;;;;;;;;;-1:-1:-1;35673:10:0;:17;35585:113;;44218:55;;;;;;;;;;-1:-1:-1;44218:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;44006:39;;;;;;;;;;;;;;;;43870:33;;;;;;;;;;;;;;;;24295:339;;;;;;;;;;-1:-1:-1;24295:339:0;;;;;:::i;:::-;;:::i;43910:44::-;;;;;;;;;;;;;;;;35253:256;;;;;;;;;;-1:-1:-1;35253:256:0;;;;;:::i;:::-;;:::i;50442:168::-;;;:::i;24705:185::-;;;;;;;;;;-1:-1:-1;24705:185:0;;;;;:::i;:::-;;:::i;50186:120::-;;;;;;;;;;-1:-1:-1;50186:120:0;;;;;:::i;:::-;;:::i;47205:358::-;;;;;;;;;;-1:-1:-1;47205:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49066:86::-;;;;;;;;;;-1:-1:-1;49066:86:0;;;;;:::i;:::-;;:::i;35775:233::-;;;;;;;;;;-1:-1:-1;35775:233:0;;;;;:::i;:::-;;:::i;44183:28::-;;;;;;;;;;-1:-1:-1;44183:28:0;;;;;;;;;;;49438:104;;;;;;;;;;-1:-1:-1;49438:104:0;;;;;:::i;:::-;;:::i;44150:26::-;;;;;;;;;;-1:-1:-1;44150:26:0;;;;;;;;21540:239;;;;;;;;;;-1:-1:-1;21540:239:0;;;;;:::i;:::-;;:::i;49164:136::-;;;;;;;;;;-1:-1:-1;49164:136:0;;;;;:::i;:::-;;:::i;49962:100::-;;;;;;;;;;-1:-1:-1;49962:100:0;;;;;:::i;:::-;;:::i;48389:117::-;;;;;;;;;;;;;:::i;21270:208::-;;;;;;;;;;-1:-1:-1;21270:208:0;;;;;:::i;:::-;;:::i;48280:101::-;;;;;;;;;;;;;:::i;42742:94::-;;;;;;;;;;;;;:::i;50070:108::-;;;;;;;;;;-1:-1:-1;50070:108:0;;;;;:::i;:::-;;:::i;44052:42::-;;;;;;;;;;;;;;;;43824:39;;;;;;;;;;;;;;;;49308:122;;;;;;;;;;-1:-1:-1;49308:122:0;;;;;:::i;:::-;;:::i;48047:201::-;;;;;;;;;;;;;:::i;46742:433::-;;;;;;;;;;-1:-1:-1;46742:433:0;;;;;:::i;:::-;;:::i;42091:87::-;;;;;;;;;;-1:-1:-1;42164:6:0;;-1:-1:-1;;;;;42164:6:0;42091:87;;48958:100;;;;;;;;;;-1:-1:-1;48958:100:0;;;;;:::i;:::-;;:::i;22015:104::-;;;;;;;;;;;;;:::i;46026:704::-;;;;;;:::i;:::-;;:::i;43779:38::-;;;;;;;;;;;;;;;;23698:295;;;;;;;;;;-1:-1:-1;23698:295:0;;;;;:::i;:::-;;:::i;48540:69::-;;;;;;;;;;;;;:::i;24961:328::-;;;;;;;;;;-1:-1:-1;24961:328:0;;;;;:::i;:::-;;:::i;43961:38::-;;;;;;;;;;;;;;;;43577:37;;;;;;;;;;;;;:::i;47571:468::-;;;;;;;;;;-1:-1:-1;47571:468:0;;;;;:::i;:::-;;:::i;43656:40::-;;;;;;;;;;;;;;;;48840:110;;;;;;;;;;-1:-1:-1;48840:110:0;;;;;:::i;:::-;;:::i;43741:31::-;;;;;;;;;;;;;;;;49550:128;;;;;;;;;;-1:-1:-1;49550:128:0;;;;;:::i;:::-;;:::i;24064:164::-;;;;;;;;;;-1:-1:-1;24064:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24185:25:0;;;24161:4;24185:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24064:164;44101:42;;;;;;;;;;;;;;;;49686:126;;;;;;;;;;-1:-1:-1;49686:126:0;;;;;:::i;:::-;;:::i;42991:192::-;;;;;;;;;;-1:-1:-1;42991:192:0;;;;;:::i;:::-;;:::i;34945:224::-;35047:4;-1:-1:-1;;;;;;35071:50:0;;-1:-1:-1;;;35071:50:0;;:90;;;35125:36;35149:11;35125:23;:36::i;:::-;35064:97;34945:224;-1:-1:-1;;34945:224:0:o;48617:79::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;;;;;;;;;48673:6:::1;:15:::0;;-1:-1:-1;;48673:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48617:79::o;21846:100::-;21900:13;21933:5;21926:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21846:100;:::o;23405:221::-;23481:7;26888:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26888:16:0;23501:73;;;;-1:-1:-1;;;23501:73:0;;14363:2:1;23501:73:0;;;14345:21:1;14402:2;14382:18;;;14375:30;14441:34;14421:18;;;14414:62;-1:-1:-1;;;14492:18:1;;;14485:42;14544:19;;23501:73:0;14161:408:1;23501:73:0;-1:-1:-1;23594:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23594:24:0;;23405:221::o;43621:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22928:411::-;23009:13;23025:23;23040:7;23025:14;:23::i;:::-;23009:39;;23073:5;-1:-1:-1;;;;;23067:11:0;:2;-1:-1:-1;;;;;23067:11:0;;;23059:57;;;;-1:-1:-1;;;23059:57:0;;16673:2:1;23059:57:0;;;16655:21:1;16712:2;16692:18;;;16685:30;16751:34;16731:18;;;16724:62;-1:-1:-1;;;16802:18:1;;;16795:31;16843:19;;23059:57:0;16471:397:1;23059:57:0;16403:10;-1:-1:-1;;;;;23151:21:0;;;;:62;;-1:-1:-1;23176:37:0;23193:5;16403:10;24064:164;:::i;23176:37::-;23129:168;;;;-1:-1:-1;;;23129:168:0;;12405:2:1;23129:168:0;;;12387:21:1;12444:2;12424:18;;;12417:30;12483:34;12463:18;;;12456:62;12554:26;12534:18;;;12527:54;12598:19;;23129:168:0;12203:420:1;23129:168:0;23310:21;23319:2;23323:7;23310:8;:21::i;:::-;22998:341;22928:411;;:::o;49820:134::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49907:16:::1;:39:::0;49820:134::o;48708:124::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;48790:25:::1;:34:::0;48708:124::o;50314:120::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;50394:14:::1;:32:::0;50314:120::o;24295:339::-;24490:41;16403:10;24523:7;24490:18;:41::i;:::-;24482:103;;;;-1:-1:-1;;;24482:103:0;;;;;;;:::i;:::-;24598:28;24608:4;24614:2;24618:7;24598:9;:28::i;35253:256::-;35350:7;35386:23;35403:5;35386:16;:23::i;:::-;35378:5;:31;35370:87;;;;-1:-1:-1;;;35370:87:0;;8872:2:1;35370:87:0;;;8854:21:1;8911:2;8891:18;;;8884:30;8950:34;8930:18;;;8923:62;-1:-1:-1;;;9001:18:1;;;8994:41;9052:19;;35370:87:0;8670:407:1;35370:87:0;-1:-1:-1;;;;;;35475:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35253:256::o;50442:168::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;50517:58:::1;::::0;50499:12:::1;::::0;50525:10:::1;::::0;50549:21:::1;::::0;50499:12;50517:58;50499:12;50517:58;50549:21;50525:10;50517:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50498:77;;;50594:7;50586:16;;;::::0;::::1;;50487:123;50442:168::o:0;24705:185::-;24843:39;24860:4;24866:2;24870:7;24843:39;;;;;;;;;;;;:16;:39::i;50186:120::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;50266:14:::1;:32:::0;50186:120::o;47205:358::-;47265:16;47294:23;47320:17;47330:6;47320:9;:17::i;:::-;47294:43;;47348:25;47390:15;47376:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47376:30:0;;47348:58;;47422:9;47417:113;47437:15;47433:1;:19;47417:113;;;47488:30;47508:6;47516:1;47488:19;:30::i;:::-;47474:8;47483:1;47474:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47454:3;;;;:::i;:::-;;;;47417:113;;;-1:-1:-1;47547:8:0;47205:358;-1:-1:-1;;;47205:358:0:o;49066:86::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49129:4:::1;:15:::0;49066:86::o;35775:233::-;35850:7;35886:30;35673:10;:17;;35585:113;35886:30;35878:5;:38;35870:95;;;;-1:-1:-1;;;35870:95:0;;18249:2:1;35870:95:0;;;18231:21:1;18288:2;18268:18;;;18261:30;18327:34;18307:18;;;18300:62;-1:-1:-1;;;18378:18:1;;;18371:42;18430:19;;35870:95:0;18047:408:1;35870:95:0;35983:10;35994:5;35983:17;;;;;;;;:::i;:::-;;;;;;;;;35976:24;;35775:233;;;:::o;49438:104::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49513:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49438:104:::0;:::o;21540:239::-;21612:7;21648:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21648:16:0;21683:19;21675:73;;;;-1:-1:-1;;;21675:73:0;;13241:2:1;21675:73:0;;;13223:21:1;13280:2;13260:18;;;13253:30;13319:34;13299:18;;;13292:62;-1:-1:-1;;;13370:18:1;;;13363:39;13419:19;;21675:73:0;13039:405:1;49164:136:0;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49252:20:::1;:40:::0;49164:136::o;49962:100::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;50032:9:::1;:22:::0;49962:100::o;48389:117::-;42164:6;;48450:7;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;-1:-1:-1;48477:21:0::1;48389:117:::0;:::o;21270:208::-;21342:7;-1:-1:-1;;;;;21370:19:0;;21362:74;;;;-1:-1:-1;;;21362:74:0;;12830:2:1;21362:74:0;;;12812:21:1;12869:2;12849:18;;;12842:30;12908:34;12888:18;;;12881:62;-1:-1:-1;;;12959:18:1;;;12952:40;13009:19;;21362:74:0;12628:406:1;21362:74:0;-1:-1:-1;;;;;;21454:16:0;;;;;:9;:16;;;;;;;21270:208::o;48280:101::-;42164:6;;48333:13;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;48366:7:::1;48359:14;;;;;:::i;42742:94::-:0;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;42807:21:::1;42825:1;42807:9;:21::i;:::-;42742:94::o:0;50070:108::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;50144:11:::1;:26:::0;50070:108::o;49308:122::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49389:13:::1;:33:::0;49308:122::o;48047:201::-;48094:7;48136:14;;48118:15;:32;48114:127;;;-1:-1:-1;48174:11:0;;;48047:201::o;48114:127::-;-1:-1:-1;48225:4:0;;;48047:201::o;46742:433::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;46848:1:::1;46834:11;:15;46826:55;;;::::0;-1:-1:-1;;;46826:55:0;;18662:2:1;46826:55:0::1;::::0;::::1;18644:21:1::0;18701:2;18681:18;;;18674:30;18740:29;18720:18;;;18713:57;18787:18;;46826:55:0::1;18460:351:1::0;46826:55:0::1;46892:14;46909:13;35673:10:::0;:17;;35585:113;46909:13:::1;46965:9;::::0;46892:30;;-1:-1:-1;46941:20:0::1;46950:11:::0;46892:30;46941:20:::1;:::i;:::-;:33;;46933:68;;;::::0;-1:-1:-1;;;46933:68:0;;13651:2:1;46933:68:0::1;::::0;::::1;13633:21:1::0;13690:2;13670:18;;;13663:30;-1:-1:-1;;;13709:18:1;;;13702:52;13771:18;;46933:68:0::1;13449:346:1::0;46933:68:0::1;47031:1;47014:154;47039:11;47034:1;:16;47014:154;;-1:-1:-1::0;;;;;47072:33:0;::::1;;::::0;;;:20:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;47122:34:0::1;::::0;-1:-1:-1;47132:11:0;47145:10:::1;47154:1:::0;47145:6;:10:::1;:::i;:::-;47122:9;:34::i;:::-;47052:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47014:154;;;;46815:360;46742:433:::0;;:::o;48958:100::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49028:11:::1;:22:::0;48958:100::o;22015:104::-;22071:13;22104:7;22097:14;;;;;:::i;46026:704::-;44522:6;;;;44521:7;44513:42;;;;-1:-1:-1;;;44513:42:0;;15137:2:1;44513:42:0;;;15119:21:1;15176:2;15156:18;;;15149:30;-1:-1:-1;;;15195:18:1;;;15188:52;15257:18;;44513:42:0;14935:346:1;44513:42:0;44643:11:::1;;44624:15;:30;;44616:67;;;::::0;-1:-1:-1;;;44616:67:0;;8519:2:1;44616:67:0::1;::::0;::::1;8501:21:1::0;8558:2;8538:18;;;8531:30;8597:26;8577:18;;;8570:54;8641:18;;44616:67:0::1;8317:348:1::0;44616:67:0::1;46116:11:::2;44792:1;44778:11;:15;44770:55;;;::::0;-1:-1:-1;;;44770:55:0;;18662:2:1;44770:55:0::2;::::0;::::2;18644:21:1::0;18701:2;18681:18;;;18674:30;18740:29;18720:18;;;18713:57;18787:18;;44770:55:0::2;18460:351:1::0;44770:55:0::2;46140:14:::3;46157:13;35673:10:::0;:17;;35585:113;46157:13:::3;46229:10;46181:24;46208:32:::0;;;:20:::3;:32;::::0;;;;;46348:14:::3;::::0;46140:30;;-1:-1:-1;46208:32:0;46330:15:::3;:32;:147;;46425:52;46447:16;46465:11;46425:21;:52::i;:::-;46330:147;;;46365:57;46384:16;46402:11;46415:6;46365:18;:57::i;:::-;46522:9;::::0;46498:20:::3;46507:11:::0;46498:6;:20:::3;:::i;:::-;:33;;46490:68;;;::::0;-1:-1:-1;;;46490:68:0;;13651:2:1;46490:68:0::3;::::0;::::3;13633:21:1::0;13690:2;13670:18;;;13663:30;-1:-1:-1;;;13709:18:1;;;13702:52;13771:18;;46490:68:0::3;13449:346:1::0;46490:68:0::3;46588:1;46571:152;46596:11;46591:1;:16;46571:152;;46650:10;46629:32;::::0;;;:20:::3;:32;::::0;;;;:34;;;::::3;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;46678:33:0::3;::::0;-1:-1:-1;46688:10:0::3;46700;46709:1:::0;46700:6;:10:::3;:::i;46678:33::-;46609:3:::0;::::3;::::0;::::3;:::i;:::-;;;;46571:152;;;;46129:601;;44694:1:::2;46026:704:::0;:::o;23698:295::-;-1:-1:-1;;;;;23801:24:0;;16403:10;23801:24;;23793:62;;;;-1:-1:-1;;;23793:62:0;;11229:2:1;23793:62:0;;;11211:21:1;11268:2;11248:18;;;11241:30;11307:27;11287:18;;;11280:55;11352:18;;23793:62:0;11027:349:1;23793:62:0;16403:10;23868:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23868:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23868:53:0;;;;;;;;;;23937:48;;8041:41:1;;;23868:42:0;;16403:10;23937:48;;8014:18:1;23937:48:0;;;;;;;23698:295;;:::o;48540:69::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;48586:8:::1;:15:::0;;-1:-1:-1;;48586:15:0::1;;;::::0;;48540:69::o;24961:328::-;25136:41;16403:10;25169:7;25136:18;:41::i;:::-;25128:103;;;;-1:-1:-1;;;25128:103:0;;;;;;;:::i;:::-;25242:39;25256:4;25262:2;25266:7;25275:5;25242:13;:39::i;43577:37::-;;;;;;;:::i;47571:468::-;26864:4;26888:16;;;:7;:16;;;;;;47644:13;;-1:-1:-1;;;;;26888:16:0;47670:76;;;;-1:-1:-1;;;47670:76:0;;16257:2:1;47670:76:0;;;16239:21:1;16296:2;16276:18;;;16269:30;16335:34;16315:18;;;16308:62;-1:-1:-1;;;16386:18:1;;;16379:45;16441:19;;47670:76:0;16055:411:1;47670:76:0;47764:8;;;;;;;47759:273;;47796:14;47789:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47571:468;;;:::o;47759:273::-;47843:28;47874:10;:8;:10::i;:::-;47843:41;;47937:1;47912:14;47906:28;:32;:114;;;;;;;;;;;;;;;;;47965:14;47980:18;:7;:16;:18::i;:::-;48000:13;47948:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47906:114;47899:121;47571:468;-1:-1:-1;;;47571:468:0:o;47759:273::-;47571:468;;;:::o;48840:110::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;48915:18:::1;:27:::0;48840:110::o;49550:128::-;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49637:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49686:126::-:0;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;49772:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42991:192::-:0;42164:6;;-1:-1:-1;;;;;42164:6:0;16403:10;42311:23;42303:68;;;;-1:-1:-1;;;42303:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43080:22:0;::::1;43072:73;;;::::0;-1:-1:-1;;;43072:73:0;;9703:2:1;43072:73:0::1;::::0;::::1;9685:21:1::0;9742:2;9722:18;;;9715:30;9781:34;9761:18;;;9754:62;-1:-1:-1;;;9832:18:1;;;9825:36;9878:19;;43072:73:0::1;9501:402:1::0;43072:73:0::1;43156:19;43166:8;43156:9;:19::i;20901:305::-:0;21003:4;-1:-1:-1;;;;;;21040:40:0;;-1:-1:-1;;;21040:40:0;;:105;;-1:-1:-1;;;;;;;21097:48:0;;-1:-1:-1;;;21097:48:0;21040:105;:158;;;-1:-1:-1;;;;;;;;;;19514:40:0;;;21162:36;19405:157;30781:174;30856:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30856:29:0;-1:-1:-1;;;;;30856:29:0;;;;;;;;:24;;30910:23;30856:24;30910:14;:23::i;:::-;-1:-1:-1;;;;;30901:46:0;;;;;;;;;;;30781:174;;:::o;27093:348::-;27186:4;26888:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26888:16:0;27203:73;;;;-1:-1:-1;;;27203:73:0;;11992:2:1;27203:73:0;;;11974:21:1;12031:2;12011:18;;;12004:30;12070:34;12050:18;;;12043:62;-1:-1:-1;;;12121:18:1;;;12114:42;12173:19;;27203:73:0;11790:408:1;27203:73:0;27287:13;27303:23;27318:7;27303:14;:23::i;:::-;27287:39;;27356:5;-1:-1:-1;;;;;27345:16:0;:7;-1:-1:-1;;;;;27345:16:0;;:51;;;;27389:7;-1:-1:-1;;;;;27365:31:0;:20;27377:7;27365:11;:20::i;:::-;-1:-1:-1;;;;;27365:31:0;;27345:51;:87;;;-1:-1:-1;;;;;;24185:25:0;;;24161:4;24185:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27400:32;27337:96;27093:348;-1:-1:-1;;;;27093:348:0:o;30085:578::-;30244:4;-1:-1:-1;;;;;30217:31:0;:23;30232:7;30217:14;:23::i;:::-;-1:-1:-1;;;;;30217:31:0;;30209:85;;;;-1:-1:-1;;;30209:85:0;;15488:2:1;30209:85:0;;;15470:21:1;15527:2;15507:18;;;15500:30;15566:34;15546:18;;;15539:62;-1:-1:-1;;;15617:18:1;;;15610:39;15666:19;;30209:85:0;15286:405:1;30209:85:0;-1:-1:-1;;;;;30313:16:0;;30305:65;;;;-1:-1:-1;;;30305:65:0;;10824:2:1;30305:65:0;;;10806:21:1;10863:2;10843:18;;;10836:30;10902:34;10882:18;;;10875:62;-1:-1:-1;;;10953:18:1;;;10946:34;10997:19;;30305:65:0;10622:400:1;30305:65:0;30383:39;30404:4;30410:2;30414:7;30383:20;:39::i;:::-;30487:29;30504:1;30508:7;30487:8;:29::i;:::-;-1:-1:-1;;;;;30529:15:0;;;;;;:9;:15;;;;;:20;;30548:1;;30529:15;:20;;30548:1;;30529:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30560:13:0;;;;;;:9;:13;;;;;:18;;30577:1;;30560:13;:18;;30577:1;;30560:18;:::i;:::-;;;;-1:-1:-1;;30589:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30589:21:0;-1:-1:-1;;;;;30589:21:0;;;;;;;;;30628:27;;30589:16;;30628:27;;;;;;;30085:578;;;:::o;43191:173::-;43266:6;;;-1:-1:-1;;;;;43283:17:0;;;-1:-1:-1;;;;;;43283:17:0;;;;;;;43316:40;;43266:6;;;43283:17;43266:6;;43316:40;;43247:16;;43316:40;43236:128;43191:173;:::o;27783:110::-;27859:26;27869:2;27873:7;27859:26;;;;;;;;;;;;:9;:26::i;45642:364::-;45784:18;;45749:31;45769:11;45749:17;:31;:::i;:::-;:53;;45741:93;;;;-1:-1:-1;;;45741:93:0;;10467:2:1;45741:93:0;;;10449:21:1;10506:2;10486:18;;;10479:30;10545;10525:18;;;10518:58;10593:18;;45741:93:0;10265:352:1;45741:93:0;45873:11;45866:4;;:18;;;;:::i;:::-;45853:9;:31;;45845:62;;;;-1:-1:-1;;;45845:62:0;;17075:2:1;45845:62:0;;;17057:21:1;17114:2;17094:18;;;17087:30;-1:-1:-1;;;17133:18:1;;;17126:48;17191:18;;45845:62:0;16873:342:1;45845:62:0;45941:13;;45926:11;:28;;45918:80;;;;-1:-1:-1;;;45918:80:0;;;;;;;:::i;44986:648::-;45103:18;45154:14;;45136:15;:32;:79;;-1:-1:-1;45211:4:0;;;45136:79;;;-1:-1:-1;45184:11:0;;;45136:79;-1:-1:-1;45273:25:0;;45238:31;45258:11;45238:17;:31;:::i;:::-;:60;;45230:113;;;;-1:-1:-1;;;45230:113:0;;17422:2:1;45230:113:0;;;17404:21:1;17461:2;17441:18;;;17434:30;17500:34;17480:18;;;17473:62;-1:-1:-1;;;17551:18:1;;;17544:38;17599:19;;45230:113:0;17220:404:1;45230:113:0;45379:24;45392:11;45379:10;:24;:::i;:::-;45366:9;:37;;45358:68;;;;-1:-1:-1;;;45358:68:0;;17075:2:1;45358:68:0;;;17057:21:1;17114:2;17094:18;;;17087:30;-1:-1:-1;;;17133:18:1;;;17126:48;17191:18;;45358:68:0;16873:342:1;45358:68:0;45464:20;;45449:11;:35;;45441:87;;;;-1:-1:-1;;;45441:87:0;;;;;;;:::i;:::-;45576:16;;45551:21;45561:11;45551:7;:21;:::i;:::-;:41;;45543:83;;;;-1:-1:-1;;;45543:83:0;;15898:2:1;45543:83:0;;;15880:21:1;15937:2;15917:18;;;15910:30;15976:32;15956:18;;;15949:60;16026:18;;45543:83:0;15696:354:1;26171:315:0;26328:28;26338:4;26344:2;26348:7;26328:9;:28::i;:::-;26375:48;26398:4;26404:2;26408:7;26417:5;26375:22;:48::i;:::-;26367:111;;;;-1:-1:-1;;;26367:111:0;;;;;;;:::i;44870:108::-;44930:13;44963:7;44956:14;;;;;:::i;16848:723::-;16904:13;17125:10;17121:53;;-1:-1:-1;;17152:10:0;;;;;;;;;;;;-1:-1:-1;;;17152:10:0;;;;;16848:723::o;17121:53::-;17199:5;17184:12;17240:78;17247:9;;17240:78;;17273:8;;;;:::i;:::-;;-1:-1:-1;17296:10:0;;-1:-1:-1;17304:2:0;17296:10;;:::i;:::-;;;17240:78;;;17328:19;17360:6;17350:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17350:17:0;;17328:39;;17378:154;17385:10;;17378:154;;17412:11;17422:1;17412:11;;:::i;:::-;;-1:-1:-1;17481:10:0;17489:2;17481:5;:10;:::i;:::-;17468:24;;:2;:24;:::i;:::-;17455:39;;17438:6;17445;17438:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17438:56:0;;;;;;;;-1:-1:-1;17509:11:0;17518:2;17509:11;;:::i;:::-;;;17378:154;;36621:589;-1:-1:-1;;;;;36827:18:0;;36823:187;;36862:40;36894:7;38037:10;:17;;38010:24;;;;:15;:24;;;;;:44;;;38065:24;;;;;;;;;;;;37933:164;36862:40;36823:187;;;36932:2;-1:-1:-1;;;;;36924:10:0;:4;-1:-1:-1;;;;;36924:10:0;;36920:90;;36951:47;36984:4;36990:7;36951:32;:47::i;:::-;-1:-1:-1;;;;;37024:16:0;;37020:183;;37057:45;37094:7;37057:36;:45::i;37020:183::-;37130:4;-1:-1:-1;;;;;37124:10:0;:2;-1:-1:-1;;;;;37124:10:0;;37120:83;;37151:40;37179:2;37183:7;37151:27;:40::i;28120:321::-;28250:18;28256:2;28260:7;28250:5;:18::i;:::-;28301:54;28332:1;28336:2;28340:7;28349:5;28301:22;:54::i;:::-;28279:154;;;;-1:-1:-1;;;28279:154:0;;;;;;;:::i;31520:799::-;31675:4;-1:-1:-1;;;;;31696:13:0;;8690:20;8738:8;31692:620;;31732:72;;-1:-1:-1;;;31732:72:0;;-1:-1:-1;;;;;31732:36:0;;;;;:72;;16403:10;;31783:4;;31789:7;;31798:5;;31732:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31732:72:0;;;;;;;;-1:-1:-1;;31732:72:0;;;;;;;;;;;;:::i;:::-;;;31728:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31974:13:0;;31970:272;;32017:60;;-1:-1:-1;;;32017:60:0;;;;;;;:::i;31970:272::-;32192:6;32186:13;32177:6;32173:2;32169:15;32162:38;31728:529;-1:-1:-1;;;;;;31855:51:0;-1:-1:-1;;;31855:51:0;;-1:-1:-1;31848:58:0;;31692:620;-1:-1:-1;32296:4:0;31520:799;;;;;;:::o;38724:988::-;38990:22;39040:1;39015:22;39032:4;39015:16;:22::i;:::-;:26;;;;:::i;:::-;39052:18;39073:26;;;:17;:26;;;;;;38990:51;;-1:-1:-1;39206:28:0;;;39202:328;;-1:-1:-1;;;;;39273:18:0;;39251:19;39273:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39324:30;;;;;;:44;;;39441:30;;:17;:30;;;;;:43;;;39202:328;-1:-1:-1;39626:26:0;;;;:17;:26;;;;;;;;39619:33;;;-1:-1:-1;;;;;39670:18:0;;;;;:12;:18;;;;;:34;;;;;;;39663:41;38724:988::o;40007:1079::-;40285:10;:17;40260:22;;40285:21;;40305:1;;40285:21;:::i;:::-;40317:18;40338:24;;;:15;:24;;;;;;40711:10;:26;;40260:46;;-1:-1:-1;40338:24:0;;40260:46;;40711:26;;;;;;:::i;:::-;;;;;;;;;40689:48;;40775:11;40750:10;40761;40750:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40855:28;;;:15;:28;;;;;;;:41;;;41027:24;;;;;41020:31;41062:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40078:1008;;;40007:1079;:::o;37511:221::-;37596:14;37613:20;37630:2;37613:16;:20::i;:::-;-1:-1:-1;;;;;37644:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37689:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37511:221:0:o;28777:382::-;-1:-1:-1;;;;;28857:16:0;;28849:61;;;;-1:-1:-1;;;28849:61:0;;14002:2:1;28849:61:0;;;13984:21:1;;;14021:18;;;14014:30;14080:34;14060:18;;;14053:62;14132:18;;28849:61:0;13800:356:1;28849:61:0;26864:4;26888:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26888:16:0;:30;28921:58;;;;-1:-1:-1;;;28921:58:0;;10110:2:1;28921:58:0;;;10092:21:1;10149:2;10129:18;;;10122:30;10188;10168:18;;;10161:58;10236:18;;28921:58:0;9908:352:1;28921:58:0;28992:45;29021:1;29025:2;29029:7;28992:20;:45::i;:::-;-1:-1:-1;;;;;29050:13:0;;;;;;:9;:13;;;;;:18;;29067:1;;29050:13;:18;;29067:1;;29050:18;:::i;:::-;;;;-1:-1:-1;;29079:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29079:21:0;-1:-1:-1;;;;;29079:21:0;;;;;;;;29118:33;;29079:16;;;29118:33;;29079:16;;29118:33;28777:382;;:::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;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:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;19071:1;19064:14;;;19108:4;19095:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;9082:414::-;9284:2;9266:21;;;9323:2;9303:18;;;9296:30;9362:34;9357:2;9342:18;;9335:62;-1:-1:-1;;;9428:2:1;9413:18;;9406:48;9486:3;9471:19;;9082:414::o;11381:404::-;11583:2;11565:21;;;11622:2;11602:18;;;11595:30;11661:34;11656:2;11641:18;;11634:62;-1:-1:-1;;;11727:2:1;11712:18;;11705:38;11775:3;11760:19;;11381:404::o;14574:356::-;14776:2;14758:21;;;14795:18;;;14788:30;14854:34;14849:2;14834:18;;14827:62;14921:2;14906:18;;14574:356::o;17629:413::-;17831:2;17813:21;;;17870:2;17850:18;;;17843:30;17909:34;17904:2;17889:18;;17882:62;-1:-1:-1;;;17975:2:1;17960:18;;17953:47;18032:3;18017:19;;17629:413::o;19124:128::-;19164:3;19195:1;19191:6;19188:1;19185:13;19182:39;;;19201:18;;:::i;:::-;-1:-1:-1;19237:9:1;;19124:128::o;19257:120::-;19297:1;19323;19313:35;;19328:18;;:::i;:::-;-1:-1:-1;19362:9:1;;19257:120::o;19382:168::-;19422:7;19488:1;19484;19480:6;19476:14;19473:1;19470:21;19465:1;19458:9;19451:17;19447:45;19444:71;;;19495:18;;:::i;:::-;-1:-1:-1;19535:9:1;;19382:168::o;19555:125::-;19595:4;19623:1;19620;19617:8;19614:34;;;19628:18;;:::i;:::-;-1:-1:-1;19665:9:1;;19555:125::o;19685:258::-;19757:1;19767:113;19781:6;19778:1;19775:13;19767:113;;;19857:11;;;19851:18;19838:11;;;19831:39;19803:2;19796:10;19767:113;;;19898:6;19895:1;19892:13;19889:48;;;-1:-1:-1;;19933:1:1;19915:16;;19908:27;19685:258::o;19948:380::-;20027:1;20023:12;;;;20070;;;20091:61;;20145:4;20137:6;20133:17;20123:27;;20091:61;20198:2;20190:6;20187:14;20167:18;20164:38;20161:161;;;20244:10;20239:3;20235:20;20232:1;20225:31;20279:4;20276:1;20269:15;20307:4;20304:1;20297:15;20161:161;;19948:380;;;:::o;20333:135::-;20372:3;-1:-1:-1;;20393:17:1;;20390:43;;;20413:18;;:::i;:::-;-1:-1:-1;20460:1:1;20449:13;;20333:135::o;20473:112::-;20505:1;20531;20521:35;;20536:18;;:::i;:::-;-1:-1:-1;20570:9:1;;20473:112::o;20590:127::-;20651:10;20646:3;20642:20;20639:1;20632:31;20682:4;20679:1;20672:15;20706:4;20703:1;20696:15;20722:127;20783:10;20778:3;20774:20;20771:1;20764:31;20814:4;20811:1;20804:15;20838:4;20835:1;20828:15;20854:127;20915:10;20910:3;20906:20;20903:1;20896:31;20946:4;20943:1;20936:15;20970:4;20967:1;20960:15;20986:127;21047:10;21042:3;21038:20;21035:1;21028:31;21078:4;21075:1;21068:15;21102:4;21099:1;21092:15;21118:127;21179:10;21174:3;21170:20;21167:1;21160:31;21210:4;21207:1;21200:15;21234:4;21231:1;21224:15;21250:131;-1:-1:-1;;;;;;21324:32:1;;21314:43;;21304:71;;21371:1;21368;21361:12

Swarm Source

ipfs://347fdddac11e5a45a9acbc0fb908fe935c077930d5bee54bbaf0a71cb2ba7e45
Loading...
Loading
Loading...
Loading
[ 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.