ETH Price: $2,484.50 (+1.85%)

Token

MetaScorpies (MetaScorpies)
 

Overview

Max Total Supply

73 MetaScorpies

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
davedoescrypto.eth
Balance
1 MetaScorpies
0xb01c04d707d461e30ea8fb6d7a1d346a42bbdfc0
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:
Metascorpies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 5 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/MetaScorpies.sol



//Developer:FazelPejmanfar , Twitter:@Pejmanfarfazel || [email protected]



pragma solidity >=0.7.0 <0.9.0;





  contract Metascorpies is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string private baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public preSaleCost = 0.05 ether;
  uint256 public cost = 0.09 ether;
  uint256 public maxSupply = 5000;
  uint256 public preSaleMaxSupply = 150;
  uint256 public maxMintAmountPresale = 10; //per tx
  uint256 public maxMintAmount = 10;  //per tx
  uint256 public nftPerAddressLimitPresale = 100;
  uint256 public nftPerAddressLimit = 100;
  uint256 public preSaleDate = 1641659400;
  uint256 public preSaleEndDate = 1641929400;
  uint256 public publicSaleDate = 1642825800;
  bool public paused = false;
  bool public revealed = false;
  mapping(address => bool) whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  // Payment_Addresses
  address p1 = 0x722056308f3E4E6538141fdd07e6D650f8256d7D; //Morteza
  address p2 = 0xB26145160A80616DC909885AeDa90AF97eea349e; //Shahab
  address p3 = 0xEEc4B9813A820a2cbD7bD3f58C3B4CD9913f446A; //Saleh
  address p4 = 0x07A94FD0868ba0723624A5Ca86207cD53B769Aa5; //Milad
  address p5 = 0x06b15E34134eCbC5e7274fdd406e35EfceCa655a; //Shakib
  address p6 = 0x107e1982F1e7eD072470E62F327816c8830DFc33; //Kamyar
  address p7 = 0xeA87d49cC404D3f2F453CB2DBDC445c7dE43946e; //Mansour
  address p8 = 0xecC9A41efa618422efFfc6789D7eAf352f8AE514; //Gift & Giveaways
  
  
  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721("MetaScorpies", "MetaScorpies") {
    setBaseURI(_initBaseURI);
    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 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);
    }

  }

  //Gift
  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;
  }

  //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 setPresaleCost(uint256 _newCost) public onlyOwner {
    preSaleCost = _newCost;
  }

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

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

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

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

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

  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 withdrawAll() public payable onlyOwner {

        uint256 _each = address(this).balance / 8;
        require(payable(p1).send(_each));
        require(payable(p2).send(_each));
        require(payable(p3).send(_each));
        require(payable(p4).send(_each));
        require(payable(p5).send(_each));
        require(payable(p6).send(_each));
        require(payable(p7).send(_each));
        require(payable(p8).send(_each));
      }
      }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"_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":"_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":"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000328565b5066b1a2bc2ec50000600e5567013fbe85edc90000600f556113886010556096601155600a6012819055601355606460148190556015556361d9bc086016556361dddab86017556361eb88486018556019805461ffff19169055601c80546001600160a01b031990811673722056308f3e4e6538141fdd07e6d650f8256d7d17909155601d8054821673b26145160a80616dc909885aeda90af97eea349e179055601e8054821673eec4b9813a820a2cbd7bd3f58c3b4cd9913f446a179055601f805482167307a94fd0868ba0723624a5ca86207cd53b769aa51790556020805482167306b15e34134ecbc5e7274fdd406e35efceca655a17905560218054821673107e1982f1e7ed072470e62f327816c8830dfc3317905560228054821673ea87d49cc404d3f2f453cb2dbdc445c7de43946e1790556023805490911673ecc9a41efa618422efffc6789d7eaf352f8ae5141790553480156200018b57600080fd5b50604051620032a2380380620032a2833981016040819052620001ae9162000485565b604080518082018252600c8082526b4d65746153636f727069657360a01b602080840182815285518087019096529285528401528151919291620001f59160009162000328565b5080516200020b90600190602084019062000328565b50505062000228620002226200024660201b60201c565b6200024a565b62000233826200029c565b6200023e81620002eb565b505062000577565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002d25760405162461bcd60e51b8152600401620002c990620004ef565b60405180910390fd5b8051620002e790600b90602084019062000328565b5050565b600a546001600160a01b03163314620003185760405162461bcd60e51b8152600401620002c990620004ef565b8051620002e790600d9060208401905b828054620003369062000524565b90600052602060002090601f0160209004810192826200035a5760008555620003a5565b82601f106200037557805160ff1916838001178555620003a5565b82800160010185558215620003a5579182015b82811115620003a557825182559160200191906001019062000388565b50620003b3929150620003b7565b5090565b5b80821115620003b35760008155600101620003b8565b600082601f830112620003e057600080fd5b81516001600160401b0380821115620003fd57620003fd62000561565b604051601f8301601f19908116603f0116810190828211818310171562000428576200042862000561565b816040528381526020925086838588010111156200044557600080fd5b600091505b838210156200046957858201830151818301840152908201906200044a565b838211156200047b5760008385830101525b9695505050505050565b600080604083850312156200049957600080fd5b82516001600160401b0380821115620004b157600080fd5b620004bf86838701620003ce565b93506020850151915080821115620004d657600080fd5b50620004e585828601620003ce565b9150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806200053957607f821691505b602082108114156200055b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612d1b80620005876000396000f3fe60806040526004361061025a5760003560e01c806301ffc9a71461025f57806302329a291461029457806306fdde03146102b6578063081812fc146102d8578063081c8c4414610310578063095ea7b3146103255780630a403f04146103455780630a50716b146103655780630e54a8831461038557806313faede6146103a557806318160ddd146103c957806318cae269146103de5780631985cc651461040b578063239c70ae1461042157806323b872dd146104375780632e09282e146104575780632f745c591461046d57806342842e0e1461048d57806342f0ca0d146104ad578063438b6300146104cd57806344a0d68a146104fa5780634f6ccce71461051a578063518302271461053a57806355f804b3146105595780635c975abb146105795780636352211e14610593578063669736c0146105b357806370a08231146105d3578063714c5398146105f3578063715018a614610608578063743c7f6b1461061d5780637967a50a1461063d5780637effc03214610653578063831e60de1461066957806383a076be1461067e578063853828b61461069e5780638da5cb5b146106a65780638fdcf942146106bb57806395d89b41146106db578063a0712d68146106f0578063a18116f114610703578063a22cb46514610719578063a475b5dd14610739578063b88d4fde1461074e578063ba7d2c761461076e578063c668286214610784578063c87b56dd14610799578063cc9ff9c6146107b9578063d5abeb01146107cf578063e985e9c5146107e5578063eced387314610805578063f2c4ce1e1461081b578063f2fde38b1461083b575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612756565b61085b565b60405190151581526020015b60405180910390f35b3480156102a057600080fd5b506102b46102af36600461273b565b610886565b005b3480156102c257600080fd5b506102cb6108d1565b60405161028b9190612985565b3480156102e457600080fd5b506102f86102f33660046127d8565b610963565b6040516001600160a01b03909116815260200161028b565b34801561031c57600080fd5b506102cb6109eb565b34801561033157600080fd5b506102b4610340366004612711565b610a79565b34801561035157600080fd5b506102b46103603660046127d8565b610b8a565b34801561037157600080fd5b506102b46103803660046127d8565b610bbe565b34801561039157600080fd5b506102b46103a03660046127d8565b610bf2565b3480156103b157600080fd5b506103bb600f5481565b60405190815260200161028b565b3480156103d557600080fd5b506008546103bb565b3480156103ea57600080fd5b506103bb6103f93660046125e2565b601b6020526000908152604090205481565b34801561041757600080fd5b506103bb60165481565b34801561042d57600080fd5b506103bb60135481565b34801561044357600080fd5b506102b4610452366004612630565b610c26565b34801561046357600080fd5b506103bb60145481565b34801561047957600080fd5b506103bb610488366004612711565b610c57565b34801561049957600080fd5b506102b46104a8366004612630565b610ced565b3480156104b957600080fd5b506102b46104c83660046127d8565b610d08565b3480156104d957600080fd5b506104ed6104e83660046125e2565b610d3c565b60405161028b9190612941565b34801561050657600080fd5b506102b46105153660046127d8565b610ddd565b34801561052657600080fd5b506103bb6105353660046127d8565b610e11565b34801561054657600080fd5b5060195461027f90610100900460ff1681565b34801561056557600080fd5b506102b4610574366004612790565b610ea4565b34801561058557600080fd5b5060195461027f9060ff1681565b34801561059f57600080fd5b506102f86105ae3660046127d8565b610eea565b3480156105bf57600080fd5b506102b46105ce3660046127d8565b610f61565b3480156105df57600080fd5b506103bb6105ee3660046125e2565b610f95565b3480156105ff57600080fd5b506102cb61101c565b34801561061457600080fd5b506102b461105a565b34801561062957600080fd5b506102b46106383660046127d8565b611095565b34801561064957600080fd5b506103bb60175481565b34801561065f57600080fd5b506103bb60125481565b34801561067557600080fd5b506103bb6110c9565b34801561068a57600080fd5b506102b46106993660046127f1565b6110e3565b6102b46111ca565b3480156106b257600080fd5b506102f861139a565b3480156106c757600080fd5b506102b46106d63660046127d8565b6113a9565b3480156106e757600080fd5b506102cb6113dd565b6102b46106fe3660046127d8565b6113ec565b34801561070f57600080fd5b506103bb60115481565b34801561072557600080fd5b506102b46107343660046126e7565b611565565b34801561074557600080fd5b506102b4611570565b34801561075a57600080fd5b506102b461076936600461266c565b6115b0565b34801561077a57600080fd5b506103bb60155481565b34801561079057600080fd5b506102cb6115e2565b3480156107a557600080fd5b506102cb6107b43660046127d8565b6115ef565b3480156107c557600080fd5b506103bb600e5481565b3480156107db57600080fd5b506103bb60105481565b3480156107f157600080fd5b5061027f6108003660046125fd565b611770565b34801561081157600080fd5b506103bb60185481565b34801561082757600080fd5b506102b4610836366004612790565b61179e565b34801561084757600080fd5b506102b46108563660046125e2565b6117e0565b60006001600160e01b0319821663780e9d6360e01b148061088057506108808261187d565b92915050565b3361088f61139a565b6001600160a01b0316146108be5760405162461bcd60e51b81526004016108b590612a62565b60405180910390fd5b6019805460ff1916911515919091179055565b6060600080546108e090612bd7565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612bd7565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e826118cd565b6109cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b5565b506000908152600460205260409020546001600160a01b031690565b600d80546109f890612bd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2490612bd7565b8015610a715780601f10610a4657610100808354040283529160200191610a71565b820191906000526020600020905b815481529060010190602001808311610a5457829003601f168201915b505050505081565b6000610a8482610eea565b9050806001600160a01b0316836001600160a01b03161415610af25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108b5565b336001600160a01b0382161480610b0e5750610b0e8133611770565b610b7b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016108b5565b610b8583836118ea565b505050565b33610b9361139a565b6001600160a01b031614610bb95760405162461bcd60e51b81526004016108b590612a62565b601155565b33610bc761139a565b6001600160a01b031614610bed5760405162461bcd60e51b81526004016108b590612a62565b601455565b33610bfb61139a565b6001600160a01b031614610c215760405162461bcd60e51b81526004016108b590612a62565b601855565b610c303382611958565b610c4c5760405162461bcd60e51b81526004016108b590612ac3565b610b85838383611a22565b6000610c6283610f95565b8210610cc45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108b5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b85838383604051806020016040528060008152506115b0565b33610d1161139a565b6001600160a01b031614610d375760405162461bcd60e51b81526004016108b590612a62565b601755565b60606000610d4983610f95565b90506000816001600160401b03811115610d6557610d65612c99565b604051908082528060200260200182016040528015610d8e578160200160208202803683370190505b50905060005b82811015610dd557610da68582610c57565b828281518110610db857610db8612c83565b602090810291909101015280610dcd81612c12565b915050610d94565b509392505050565b33610de661139a565b6001600160a01b031614610e0c5760405162461bcd60e51b81526004016108b590612a62565b600f55565b6000610e1c60085490565b8210610e7f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108b5565b60088281548110610e9257610e92612c83565b90600052602060002001549050919050565b33610ead61139a565b6001600160a01b031614610ed35760405162461bcd60e51b81526004016108b590612a62565b8051610ee690600b9060208401906124ad565b5050565b6000818152600260205260408120546001600160a01b0316806108805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108b5565b33610f6a61139a565b6001600160a01b031614610f905760405162461bcd60e51b81526004016108b590612a62565b601255565b60006001600160a01b0382166110005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108b5565b506001600160a01b031660009081526003602052604090205490565b60603361102761139a565b6001600160a01b03161461104d5760405162461bcd60e51b81526004016108b590612a62565b600b80546108e090612bd7565b3361106361139a565b6001600160a01b0316146110895760405162461bcd60e51b81526004016108b590612a62565b6110936000611bbb565b565b3361109e61139a565b6001600160a01b0316146110c45760405162461bcd60e51b81526004016108b590612a62565b601655565b60006017544210156110dc5750600e5490565b50600f5490565b336110ec61139a565b6001600160a01b0316146111125760405162461bcd60e51b81526004016108b590612a62565b600082116111325760405162461bcd60e51b81526004016108b590612b14565b600061113d60085490565b60105490915061114d8483612b49565b111561116b5760405162461bcd60e51b81526004016108b590612a32565b60015b8381116111c4576001600160a01b0383166000908152601b6020526040812080549161119983612c12565b909155506111b29050836111ad8385612b49565b611c0d565b806111bc81612c12565b91505061116e565b50505050565b336111d361139a565b6001600160a01b0316146111f95760405162461bcd60e51b81526004016108b590612a62565b6000611206600847612b61565b601c546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061123957600080fd5b601d546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061126b57600080fd5b601e546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061129d57600080fd5b601f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506112cf57600080fd5b6020546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061130157600080fd5b6021546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061133357600080fd5b6022546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061136557600080fd5b6023546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061139757600080fd5b50565b600a546001600160a01b031690565b336113b261139a565b6001600160a01b0316146113d85760405162461bcd60e51b81526004016108b590612a62565b600e55565b6060600180546108e090612bd7565b60195460ff16156114385760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108b5565b6016544210156114855760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064016108b5565b80600081116114a65760405162461bcd60e51b81526004016108b590612b14565b60006114b160085490565b336000908152601b60205260409020546018549192509042106114dd576114d88185611c27565b6114e8565b6114e8818584611cd0565b6010546114f58584612b49565b11156115135760405162461bcd60e51b81526004016108b590612a32565b60015b84811161155e57336000908152601b6020526040812080549161153883612c12565b9091555061154c9050336111ad8386612b49565b8061155681612c12565b915050611516565b5050505050565b610ee6338383611dfe565b3361157961139a565b6001600160a01b03161461159f5760405162461bcd60e51b81526004016108b590612a62565b6019805461ff001916610100179055565b6115ba3383611958565b6115d65760405162461bcd60e51b81526004016108b590612ac3565b6111c484848484611ec9565b600c80546109f890612bd7565b60606115fa826118cd565b61165e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b5565b601954610100900460ff166116ff57600d805461167a90612bd7565b80601f01602080910402602001604051908101604052809291908181526020018280546116a690612bd7565b80156116f35780601f106116c8576101008083540402835291602001916116f3565b820191906000526020600020905b8154815290600101906020018083116116d657829003601f168201915b50505050509050919050565b600061171660408051602081019091526000815290565b905060008151116117365760405180602001604052806000815250611764565b8061174084611efc565b600c60405160200161175493929190612840565b6040516020818303038152906040525b9392505050565b919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b336117a761139a565b6001600160a01b0316146117cd5760405162461bcd60e51b81526004016108b590612a62565b8051610ee690600d9060208401906124ad565b336117e961139a565b6001600160a01b03161461180f5760405162461bcd60e51b81526004016108b590612a62565b6001600160a01b0381166118745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b61139781611bbb565b60006001600160e01b031982166380ac58cd60e01b14806118ae57506001600160e01b03198216635b5e139f60e01b145b8061088057506301ffc9a760e01b6001600160e01b0319831614610880565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191f82610eea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611963826118cd565b6119c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b5565b60006119cf83610eea565b9050806001600160a01b0316846001600160a01b03161480611a0a5750836001600160a01b03166119ff84610963565b6001600160a01b0316145b80611a1a5750611a1a8185611770565b949350505050565b826001600160a01b0316611a3582610eea565b6001600160a01b031614611a9d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108b5565b6001600160a01b038216611aff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b5565b611b0a838383611ff9565b611b156000826118ea565b6001600160a01b0383166000908152600360205260408120805460019290611b3e908490612b94565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b6c908490612b49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612cc683398151915291a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ee68282604051806020016040528060008152506120b1565b601554611c348284612b49565b1115611c815760405162461bcd60e51b815260206004820152601c60248201527b1b585e08139195081c195c881859191c995cdcc8195e18d95959195960221b60448201526064016108b5565b80600f54611c8f9190612b75565b341015611cae5760405162461bcd60e51b81526004016108b590612a97565b601354811115610ee65760405162461bcd60e51b81526004016108b5906129ea565b60006017544210611ce55750600f5480611ceb565b50600e54805b50601454611cf98486612b49565b1115611d585760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b60648201526084016108b5565b611d628382612b75565b341015611d815760405162461bcd60e51b81526004016108b590612a97565b601254831115611da35760405162461bcd60e51b81526004016108b5906129ea565b601154611db08484612b49565b11156111c45760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d6974206578636565646564000060448201526064016108b5565b816001600160a01b0316836001600160a01b03161415611e5c5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016108b5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ed4848484611a22565b611ee0848484846120e4565b6111c45760405162461bcd60e51b81526004016108b590612998565b606081611f205750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f4a5780611f3481612c12565b9150611f439050600a83612b61565b9150611f24565b6000816001600160401b03811115611f6457611f64612c99565b6040519080825280601f01601f191660200182016040528015611f8e576020820181803683370190505b5090505b8415611a1a57611fa3600183612b94565b9150611fb0600a86612c2d565b611fbb906030612b49565b60f81b818381518110611fd057611fd0612c83565b60200101906001600160f81b031916908160001a905350611ff2600a86612b61565b9450611f92565b6001600160a01b0383166120545761204f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612077565b816001600160a01b0316836001600160a01b0316146120775761207783826121f1565b6001600160a01b03821661208e57610b858161228e565b826001600160a01b0316826001600160a01b031614610b8557610b85828261233d565b6120bb8383612381565b6120c860008484846120e4565b610b855760405162461bcd60e51b81526004016108b590612998565b60006001600160a01b0384163b156121e657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612128903390899088908890600401612904565b602060405180830381600087803b15801561214257600080fd5b505af1925050508015612172575060408051601f3d908101601f1916820190925261216f91810190612773565b60015b6121cc573d8080156121a0576040519150601f19603f3d011682016040523d82523d6000602084013e6121a5565b606091505b5080516121c45760405162461bcd60e51b81526004016108b590612998565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a1a565b506001949350505050565b600060016121fe84610f95565b6122089190612b94565b60008381526007602052604090205490915080821461225b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122a090600190612b94565b600083815260096020526040812054600880549394509092849081106122c8576122c8612c83565b9060005260206000200154905080600883815481106122e9576122e9612c83565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061232157612321612c6d565b6001900381819060005260206000200160009055905550505050565b600061234883610f95565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123d75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b5565b6123e0816118cd565b1561242c5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016108b5565b61243860008383611ff9565b6001600160a01b0382166000908152600360205260408120805460019290612461908490612b49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612cc6833981519152908290a45050565b8280546124b990612bd7565b90600052602060002090601f0160209004810192826124db5760008555612521565b82601f106124f457805160ff1916838001178555612521565b82800160010185558215612521579182015b82811115612521578251825591602001919060010190612506565b5061252d929150612531565b5090565b5b8082111561252d5760008155600101612532565b60006001600160401b038084111561256057612560612c99565b604051601f8501601f19908116603f0116810190828211818310171561258857612588612c99565b816040528093508581528686860111156125a157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461176b57600080fd5b8035801515811461176b57600080fd5b6000602082840312156125f457600080fd5b611764826125bb565b6000806040838503121561261057600080fd5b612619836125bb565b9150612627602084016125bb565b90509250929050565b60008060006060848603121561264557600080fd5b61264e846125bb565b925061265c602085016125bb565b9150604084013590509250925092565b6000806000806080858703121561268257600080fd5b61268b856125bb565b9350612699602086016125bb565b92506040850135915060608501356001600160401b038111156126bb57600080fd5b8501601f810187136126cc57600080fd5b6126db87823560208401612546565b91505092959194509250565b600080604083850312156126fa57600080fd5b612703836125bb565b9150612627602084016125d2565b6000806040838503121561272457600080fd5b61272d836125bb565b946020939093013593505050565b60006020828403121561274d57600080fd5b611764826125d2565b60006020828403121561276857600080fd5b813561176481612caf565b60006020828403121561278557600080fd5b815161176481612caf565b6000602082840312156127a257600080fd5b81356001600160401b038111156127b857600080fd5b8201601f810184136127c957600080fd5b611a1a84823560208401612546565b6000602082840312156127ea57600080fd5b5035919050565b6000806040838503121561280457600080fd5b82359150612627602084016125bb565b6000815180845261282c816020860160208601612bab565b601f01601f19169290920160200192915050565b6000845160206128538285838a01612bab565b8551918401916128668184848a01612bab565b8554920191600090600181811c908083168061288357607f831692505b8583108114156128a157634e487b7160e01b85526022600452602485fd5b8080156128b557600181146128c6576128f3565b60ff198516885283880195506128f3565b60008b81526020902060005b858110156128eb5781548a8201529084019088016128d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293790830184612814565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129795783518352928401929184019160010161295d565b50909695505050505050565b6020815260006117646020830184612814565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601b908201527a1b995959081d1bc81b5a5b9d08185d081b19585cdd080c48139195602a1b604082015260600190565b60008219821115612b5c57612b5c612c41565b500190565b600082612b7057612b70612c57565b500490565b6000816000190483118215151615612b8f57612b8f612c41565b500290565b600082821015612ba657612ba6612c41565b500390565b60005b83811015612bc6578181015183820152602001612bae565b838111156111c45750506000910152565b600181811c90821680612beb57607f821691505b60208210811415612c0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2657612c26612c41565b5060010190565b600082612c3c57612c3c612c57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461139757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202cb5703522fd6aef61622102ed0a9ae271ed16f6394734d5add190c927b28f5064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569656e757274686e7362746b61706e7535646b7137646b77356b687970627466687834346c6a756365716d346732686171746d6e752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656963703464627967357a7078627665637a7036786e6b6a616b6c686a763237366d646e687475646675756b75656c7377797a68346d2f68696464656e2e6a736f6e000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025a5760003560e01c806301ffc9a71461025f57806302329a291461029457806306fdde03146102b6578063081812fc146102d8578063081c8c4414610310578063095ea7b3146103255780630a403f04146103455780630a50716b146103655780630e54a8831461038557806313faede6146103a557806318160ddd146103c957806318cae269146103de5780631985cc651461040b578063239c70ae1461042157806323b872dd146104375780632e09282e146104575780632f745c591461046d57806342842e0e1461048d57806342f0ca0d146104ad578063438b6300146104cd57806344a0d68a146104fa5780634f6ccce71461051a578063518302271461053a57806355f804b3146105595780635c975abb146105795780636352211e14610593578063669736c0146105b357806370a08231146105d3578063714c5398146105f3578063715018a614610608578063743c7f6b1461061d5780637967a50a1461063d5780637effc03214610653578063831e60de1461066957806383a076be1461067e578063853828b61461069e5780638da5cb5b146106a65780638fdcf942146106bb57806395d89b41146106db578063a0712d68146106f0578063a18116f114610703578063a22cb46514610719578063a475b5dd14610739578063b88d4fde1461074e578063ba7d2c761461076e578063c668286214610784578063c87b56dd14610799578063cc9ff9c6146107b9578063d5abeb01146107cf578063e985e9c5146107e5578063eced387314610805578063f2c4ce1e1461081b578063f2fde38b1461083b575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612756565b61085b565b60405190151581526020015b60405180910390f35b3480156102a057600080fd5b506102b46102af36600461273b565b610886565b005b3480156102c257600080fd5b506102cb6108d1565b60405161028b9190612985565b3480156102e457600080fd5b506102f86102f33660046127d8565b610963565b6040516001600160a01b03909116815260200161028b565b34801561031c57600080fd5b506102cb6109eb565b34801561033157600080fd5b506102b4610340366004612711565b610a79565b34801561035157600080fd5b506102b46103603660046127d8565b610b8a565b34801561037157600080fd5b506102b46103803660046127d8565b610bbe565b34801561039157600080fd5b506102b46103a03660046127d8565b610bf2565b3480156103b157600080fd5b506103bb600f5481565b60405190815260200161028b565b3480156103d557600080fd5b506008546103bb565b3480156103ea57600080fd5b506103bb6103f93660046125e2565b601b6020526000908152604090205481565b34801561041757600080fd5b506103bb60165481565b34801561042d57600080fd5b506103bb60135481565b34801561044357600080fd5b506102b4610452366004612630565b610c26565b34801561046357600080fd5b506103bb60145481565b34801561047957600080fd5b506103bb610488366004612711565b610c57565b34801561049957600080fd5b506102b46104a8366004612630565b610ced565b3480156104b957600080fd5b506102b46104c83660046127d8565b610d08565b3480156104d957600080fd5b506104ed6104e83660046125e2565b610d3c565b60405161028b9190612941565b34801561050657600080fd5b506102b46105153660046127d8565b610ddd565b34801561052657600080fd5b506103bb6105353660046127d8565b610e11565b34801561054657600080fd5b5060195461027f90610100900460ff1681565b34801561056557600080fd5b506102b4610574366004612790565b610ea4565b34801561058557600080fd5b5060195461027f9060ff1681565b34801561059f57600080fd5b506102f86105ae3660046127d8565b610eea565b3480156105bf57600080fd5b506102b46105ce3660046127d8565b610f61565b3480156105df57600080fd5b506103bb6105ee3660046125e2565b610f95565b3480156105ff57600080fd5b506102cb61101c565b34801561061457600080fd5b506102b461105a565b34801561062957600080fd5b506102b46106383660046127d8565b611095565b34801561064957600080fd5b506103bb60175481565b34801561065f57600080fd5b506103bb60125481565b34801561067557600080fd5b506103bb6110c9565b34801561068a57600080fd5b506102b46106993660046127f1565b6110e3565b6102b46111ca565b3480156106b257600080fd5b506102f861139a565b3480156106c757600080fd5b506102b46106d63660046127d8565b6113a9565b3480156106e757600080fd5b506102cb6113dd565b6102b46106fe3660046127d8565b6113ec565b34801561070f57600080fd5b506103bb60115481565b34801561072557600080fd5b506102b46107343660046126e7565b611565565b34801561074557600080fd5b506102b4611570565b34801561075a57600080fd5b506102b461076936600461266c565b6115b0565b34801561077a57600080fd5b506103bb60155481565b34801561079057600080fd5b506102cb6115e2565b3480156107a557600080fd5b506102cb6107b43660046127d8565b6115ef565b3480156107c557600080fd5b506103bb600e5481565b3480156107db57600080fd5b506103bb60105481565b3480156107f157600080fd5b5061027f6108003660046125fd565b611770565b34801561081157600080fd5b506103bb60185481565b34801561082757600080fd5b506102b4610836366004612790565b61179e565b34801561084757600080fd5b506102b46108563660046125e2565b6117e0565b60006001600160e01b0319821663780e9d6360e01b148061088057506108808261187d565b92915050565b3361088f61139a565b6001600160a01b0316146108be5760405162461bcd60e51b81526004016108b590612a62565b60405180910390fd5b6019805460ff1916911515919091179055565b6060600080546108e090612bd7565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90612bd7565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e826118cd565b6109cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b5565b506000908152600460205260409020546001600160a01b031690565b600d80546109f890612bd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2490612bd7565b8015610a715780601f10610a4657610100808354040283529160200191610a71565b820191906000526020600020905b815481529060010190602001808311610a5457829003601f168201915b505050505081565b6000610a8482610eea565b9050806001600160a01b0316836001600160a01b03161415610af25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108b5565b336001600160a01b0382161480610b0e5750610b0e8133611770565b610b7b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016108b5565b610b8583836118ea565b505050565b33610b9361139a565b6001600160a01b031614610bb95760405162461bcd60e51b81526004016108b590612a62565b601155565b33610bc761139a565b6001600160a01b031614610bed5760405162461bcd60e51b81526004016108b590612a62565b601455565b33610bfb61139a565b6001600160a01b031614610c215760405162461bcd60e51b81526004016108b590612a62565b601855565b610c303382611958565b610c4c5760405162461bcd60e51b81526004016108b590612ac3565b610b85838383611a22565b6000610c6283610f95565b8210610cc45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108b5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b85838383604051806020016040528060008152506115b0565b33610d1161139a565b6001600160a01b031614610d375760405162461bcd60e51b81526004016108b590612a62565b601755565b60606000610d4983610f95565b90506000816001600160401b03811115610d6557610d65612c99565b604051908082528060200260200182016040528015610d8e578160200160208202803683370190505b50905060005b82811015610dd557610da68582610c57565b828281518110610db857610db8612c83565b602090810291909101015280610dcd81612c12565b915050610d94565b509392505050565b33610de661139a565b6001600160a01b031614610e0c5760405162461bcd60e51b81526004016108b590612a62565b600f55565b6000610e1c60085490565b8210610e7f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108b5565b60088281548110610e9257610e92612c83565b90600052602060002001549050919050565b33610ead61139a565b6001600160a01b031614610ed35760405162461bcd60e51b81526004016108b590612a62565b8051610ee690600b9060208401906124ad565b5050565b6000818152600260205260408120546001600160a01b0316806108805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108b5565b33610f6a61139a565b6001600160a01b031614610f905760405162461bcd60e51b81526004016108b590612a62565b601255565b60006001600160a01b0382166110005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108b5565b506001600160a01b031660009081526003602052604090205490565b60603361102761139a565b6001600160a01b03161461104d5760405162461bcd60e51b81526004016108b590612a62565b600b80546108e090612bd7565b3361106361139a565b6001600160a01b0316146110895760405162461bcd60e51b81526004016108b590612a62565b6110936000611bbb565b565b3361109e61139a565b6001600160a01b0316146110c45760405162461bcd60e51b81526004016108b590612a62565b601655565b60006017544210156110dc5750600e5490565b50600f5490565b336110ec61139a565b6001600160a01b0316146111125760405162461bcd60e51b81526004016108b590612a62565b600082116111325760405162461bcd60e51b81526004016108b590612b14565b600061113d60085490565b60105490915061114d8483612b49565b111561116b5760405162461bcd60e51b81526004016108b590612a32565b60015b8381116111c4576001600160a01b0383166000908152601b6020526040812080549161119983612c12565b909155506111b29050836111ad8385612b49565b611c0d565b806111bc81612c12565b91505061116e565b50505050565b336111d361139a565b6001600160a01b0316146111f95760405162461bcd60e51b81526004016108b590612a62565b6000611206600847612b61565b601c546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061123957600080fd5b601d546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061126b57600080fd5b601e546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061129d57600080fd5b601f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506112cf57600080fd5b6020546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061130157600080fd5b6021546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061133357600080fd5b6022546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061136557600080fd5b6023546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061139757600080fd5b50565b600a546001600160a01b031690565b336113b261139a565b6001600160a01b0316146113d85760405162461bcd60e51b81526004016108b590612a62565b600e55565b6060600180546108e090612bd7565b60195460ff16156114385760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108b5565b6016544210156114855760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064016108b5565b80600081116114a65760405162461bcd60e51b81526004016108b590612b14565b60006114b160085490565b336000908152601b60205260409020546018549192509042106114dd576114d88185611c27565b6114e8565b6114e8818584611cd0565b6010546114f58584612b49565b11156115135760405162461bcd60e51b81526004016108b590612a32565b60015b84811161155e57336000908152601b6020526040812080549161153883612c12565b9091555061154c9050336111ad8386612b49565b8061155681612c12565b915050611516565b5050505050565b610ee6338383611dfe565b3361157961139a565b6001600160a01b03161461159f5760405162461bcd60e51b81526004016108b590612a62565b6019805461ff001916610100179055565b6115ba3383611958565b6115d65760405162461bcd60e51b81526004016108b590612ac3565b6111c484848484611ec9565b600c80546109f890612bd7565b60606115fa826118cd565b61165e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b5565b601954610100900460ff166116ff57600d805461167a90612bd7565b80601f01602080910402602001604051908101604052809291908181526020018280546116a690612bd7565b80156116f35780601f106116c8576101008083540402835291602001916116f3565b820191906000526020600020905b8154815290600101906020018083116116d657829003601f168201915b50505050509050919050565b600061171660408051602081019091526000815290565b905060008151116117365760405180602001604052806000815250611764565b8061174084611efc565b600c60405160200161175493929190612840565b6040516020818303038152906040525b9392505050565b919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b336117a761139a565b6001600160a01b0316146117cd5760405162461bcd60e51b81526004016108b590612a62565b8051610ee690600d9060208401906124ad565b336117e961139a565b6001600160a01b03161461180f5760405162461bcd60e51b81526004016108b590612a62565b6001600160a01b0381166118745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b5565b61139781611bbb565b60006001600160e01b031982166380ac58cd60e01b14806118ae57506001600160e01b03198216635b5e139f60e01b145b8061088057506301ffc9a760e01b6001600160e01b0319831614610880565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191f82610eea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611963826118cd565b6119c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108b5565b60006119cf83610eea565b9050806001600160a01b0316846001600160a01b03161480611a0a5750836001600160a01b03166119ff84610963565b6001600160a01b0316145b80611a1a5750611a1a8185611770565b949350505050565b826001600160a01b0316611a3582610eea565b6001600160a01b031614611a9d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108b5565b6001600160a01b038216611aff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108b5565b611b0a838383611ff9565b611b156000826118ea565b6001600160a01b0383166000908152600360205260408120805460019290611b3e908490612b94565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b6c908490612b49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612cc683398151915291a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ee68282604051806020016040528060008152506120b1565b601554611c348284612b49565b1115611c815760405162461bcd60e51b815260206004820152601c60248201527b1b585e08139195081c195c881859191c995cdcc8195e18d95959195960221b60448201526064016108b5565b80600f54611c8f9190612b75565b341015611cae5760405162461bcd60e51b81526004016108b590612a97565b601354811115610ee65760405162461bcd60e51b81526004016108b5906129ea565b60006017544210611ce55750600f5480611ceb565b50600e54805b50601454611cf98486612b49565b1115611d585760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b60648201526084016108b5565b611d628382612b75565b341015611d815760405162461bcd60e51b81526004016108b590612a97565b601254831115611da35760405162461bcd60e51b81526004016108b5906129ea565b601154611db08484612b49565b11156111c45760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d6974206578636565646564000060448201526064016108b5565b816001600160a01b0316836001600160a01b03161415611e5c5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016108b5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ed4848484611a22565b611ee0848484846120e4565b6111c45760405162461bcd60e51b81526004016108b590612998565b606081611f205750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f4a5780611f3481612c12565b9150611f439050600a83612b61565b9150611f24565b6000816001600160401b03811115611f6457611f64612c99565b6040519080825280601f01601f191660200182016040528015611f8e576020820181803683370190505b5090505b8415611a1a57611fa3600183612b94565b9150611fb0600a86612c2d565b611fbb906030612b49565b60f81b818381518110611fd057611fd0612c83565b60200101906001600160f81b031916908160001a905350611ff2600a86612b61565b9450611f92565b6001600160a01b0383166120545761204f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612077565b816001600160a01b0316836001600160a01b0316146120775761207783826121f1565b6001600160a01b03821661208e57610b858161228e565b826001600160a01b0316826001600160a01b031614610b8557610b85828261233d565b6120bb8383612381565b6120c860008484846120e4565b610b855760405162461bcd60e51b81526004016108b590612998565b60006001600160a01b0384163b156121e657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612128903390899088908890600401612904565b602060405180830381600087803b15801561214257600080fd5b505af1925050508015612172575060408051601f3d908101601f1916820190925261216f91810190612773565b60015b6121cc573d8080156121a0576040519150601f19603f3d011682016040523d82523d6000602084013e6121a5565b606091505b5080516121c45760405162461bcd60e51b81526004016108b590612998565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a1a565b506001949350505050565b600060016121fe84610f95565b6122089190612b94565b60008381526007602052604090205490915080821461225b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122a090600190612b94565b600083815260096020526040812054600880549394509092849081106122c8576122c8612c83565b9060005260206000200154905080600883815481106122e9576122e9612c83565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061232157612321612c6d565b6001900381819060005260206000200160009055905550505050565b600061234883610f95565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123d75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b5565b6123e0816118cd565b1561242c5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016108b5565b61243860008383611ff9565b6001600160a01b0382166000908152600360205260408120805460019290612461908490612b49565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612cc6833981519152908290a45050565b8280546124b990612bd7565b90600052602060002090601f0160209004810192826124db5760008555612521565b82601f106124f457805160ff1916838001178555612521565b82800160010185558215612521579182015b82811115612521578251825591602001919060010190612506565b5061252d929150612531565b5090565b5b8082111561252d5760008155600101612532565b60006001600160401b038084111561256057612560612c99565b604051601f8501601f19908116603f0116810190828211818310171561258857612588612c99565b816040528093508581528686860111156125a157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461176b57600080fd5b8035801515811461176b57600080fd5b6000602082840312156125f457600080fd5b611764826125bb565b6000806040838503121561261057600080fd5b612619836125bb565b9150612627602084016125bb565b90509250929050565b60008060006060848603121561264557600080fd5b61264e846125bb565b925061265c602085016125bb565b9150604084013590509250925092565b6000806000806080858703121561268257600080fd5b61268b856125bb565b9350612699602086016125bb565b92506040850135915060608501356001600160401b038111156126bb57600080fd5b8501601f810187136126cc57600080fd5b6126db87823560208401612546565b91505092959194509250565b600080604083850312156126fa57600080fd5b612703836125bb565b9150612627602084016125d2565b6000806040838503121561272457600080fd5b61272d836125bb565b946020939093013593505050565b60006020828403121561274d57600080fd5b611764826125d2565b60006020828403121561276857600080fd5b813561176481612caf565b60006020828403121561278557600080fd5b815161176481612caf565b6000602082840312156127a257600080fd5b81356001600160401b038111156127b857600080fd5b8201601f810184136127c957600080fd5b611a1a84823560208401612546565b6000602082840312156127ea57600080fd5b5035919050565b6000806040838503121561280457600080fd5b82359150612627602084016125bb565b6000815180845261282c816020860160208601612bab565b601f01601f19169290920160200192915050565b6000845160206128538285838a01612bab565b8551918401916128668184848a01612bab565b8554920191600090600181811c908083168061288357607f831692505b8583108114156128a157634e487b7160e01b85526022600452602485fd5b8080156128b557600181146128c6576128f3565b60ff198516885283880195506128f3565b60008b81526020902060005b858110156128eb5781548a8201529084019088016128d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293790830184612814565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129795783518352928401929184019160010161295d565b50909695505050505050565b6020815260006117646020830184612814565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601b908201527a1b995959081d1bc81b5a5b9d08185d081b19585cdd080c48139195602a1b604082015260600190565b60008219821115612b5c57612b5c612c41565b500190565b600082612b7057612b70612c57565b500490565b6000816000190483118215151615612b8f57612b8f612c41565b500290565b600082821015612ba657612ba6612c41565b500390565b60005b83811015612bc6578181015183820152602001612bae565b838111156111c45750506000910152565b600181811c90821680612beb57607f821691505b60208210811415612c0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2657612c26612c41565b5060010190565b600082612c3c57612c3c612c57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461139757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202cb5703522fd6aef61622102ed0a9ae271ed16f6394734d5add190c927b28f5064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569656e757274686e7362746b61706e7535646b7137646b77356b687970627466687834346c6a756365716d346732686171746d6e752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f6261667962656963703464627967357a7078627665637a7036786e6b6a616b6c686a763237366d646e687475646675756b75656c7377797a68346d2f68696464656e2e6a736f6e000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeienurthnsbtkapnu5dkq7dkw5khypbtfhx44ljuceqm4g2haqtmnu/
Arg [1] : _initNotRevealedUri (string): ipfs://bafybeicp4dbyg5zpxbveczp6xnkjaklhjv276mdnhtudfuukuelswyzh4m/hidden.json

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f62616679626569656e757274686e7362746b61706e7535646b
Arg [4] : 7137646b77356b687970627466687834346c6a756365716d346732686171746d
Arg [5] : 6e752f0000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [7] : 697066733a2f2f6261667962656963703464627967357a7078627665637a7036
Arg [8] : 786e6b6a616b6c686a763237366d646e687475646675756b75656c7377797a68
Arg [9] : 346d2f68696464656e2e6a736f6e000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44590:7300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;-1:-1:-1;38266:224:0;;;;;:::i;:::-;;:::i;:::-;;;7856:14:1;;7849:22;7831:41;;7819:2;7804:18;38266:224:0;;;;;;;;50186:73;;;;;;;;;;-1:-1:-1;50186:73:0;;;;;:::i;:::-;;:::i;:::-;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27319:221::-;;;;;;;;;;-1:-1:-1;27319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6517:32:1;;;6499:51;;6487:2;6472:18;27319:221:0;6353:203:1;44747:28:0;;;;;;;;;;;;;:::i;26842:411::-;;;;;;;;;;-1:-1:-1;26842:411:0;;;;;:::i;:::-;;:::i;50713:128::-;;;;;;;;;;-1:-1:-1;50713:128:0;;;;;:::i;:::-;;:::i;50265:118::-;;;;;;;;;;-1:-1:-1;50265:118:0;;;;;:::i;:::-;;:::i;51305:114::-;;;;;;;;;;-1:-1:-1;51305:114:0;;;;;:::i;:::-;;:::i;44824:32::-;;;;;;;;;;;;;;;;;;;18752:25:1;;;18740:2;18725:18;44824:32:0;18606:177:1;38906:113:0;;;;;;;;;;-1:-1:-1;38994:10:0;:17;38906:113;;45388:55;;;;;;;;;;-1:-1:-1;45388:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;45136:39;;;;;;;;;;;;;;;;44993:33;;;;;;;;;;;;;;;;28069:339;;;;;;;;;;-1:-1:-1;28069:339:0;;;;;:::i;:::-;;:::i;45041:46::-;;;;;;;;;;;;;;;;38574:256;;;;;;;;;;-1:-1:-1;38574:256:0;;;;;:::i;:::-;;:::i;28479:185::-;;;;;;;;;;-1:-1:-1;28479:185:0;;;;;:::i;:::-;;:::i;51185:114::-;;;;;;;;;;-1:-1:-1;51185:114:0;;;;;:::i;:::-;;:::i;48890:348::-;;;;;;;;;;-1:-1:-1;48890:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50491:80::-;;;;;;;;;;-1:-1:-1;50491:80:0;;;;;:::i;:::-;;:::i;39096:233::-;;;;;;;;;;-1:-1:-1;39096:233:0;;;;;:::i;:::-;;:::i;45305:28::-;;;;;;;;;;-1:-1:-1;45305:28:0;;;;;;;;;;;50847:98;;;;;;;;;;-1:-1:-1;50847:98:0;;;;;:::i;:::-;;:::i;45274:26::-;;;;;;;;;;-1:-1:-1;45274:26:0;;;;;;;;25454:239;;;;;;;;;;-1:-1:-1;25454:239:0;;;;;:::i;:::-;;:::i;50577:130::-;;;;;;;;;;-1:-1:-1;50577:130:0;;;;;:::i;:::-;;:::i;25184:208::-;;;;;;;;;;-1:-1:-1;25184:208:0;;;;;:::i;:::-;;:::i;49992:95::-;;;;;;;;;;;;;:::i;4730:103::-;;;;;;;;;;;;;:::i;51077:102::-;;;;;;;;;;-1:-1:-1;51077:102:0;;;;;:::i;:::-;;:::i;45180:42::-;;;;;;;;;;;;;;;;44939:40;;;;;;;;;;;;;;;;49789:175;;;;;;;;;;;;;:::i;48467:399::-;;;;;;;;;;-1:-1:-1;48467:399:0;;;;;:::i;:::-;;:::i;51425:456::-;;;:::i;4079:87::-;;;;;;;;;;;;;:::i;50391:94::-;;;;;;;;;;-1:-1:-1;50391:94:0;;;;;:::i;:::-;;:::i;25929:104::-;;;;;;;;;;;;;:::i;47745:706::-;;;;;;:::i;:::-;;:::i;44897:37::-;;;;;;;;;;;;;;;;27612:155;;;;;;;;;;-1:-1:-1;27612:155:0;;;;;:::i;:::-;;:::i;50117:63::-;;;;;;;;;;;;;:::i;28735:328::-;;;;;;;;;;-1:-1:-1;28735:328:0;;;;;:::i;:::-;;:::i;45092:39::-;;;;;;;;;;;;;;;;44705:37;;;;;;;;;;;;;:::i;49244:539::-;;;;;;;;;;-1:-1:-1;49244:539:0;;;;;:::i;:::-;;:::i;44780:39::-;;;;;;;;;;;;;;;;44861:31;;;;;;;;;;;;;;;;27838:164;;;;;;;;;;-1:-1:-1;27838:164:0;;;;;:::i;:::-;;:::i;45227:42::-;;;;;;;;;;;;;;;;50951:120;;;;;;;;;;-1:-1:-1;50951:120:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;38266:224::-;38368:4;-1:-1:-1;;;;;;38392:50:0;;-1:-1:-1;;;38392:50:0;;:90;;;38446:36;38470:11;38446:23;:36::i;:::-;38385:97;38266:224;-1:-1:-1;;38266:224:0:o;50186:73::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;50238:6:::1;:15:::0;;-1:-1:-1;;50238:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50186:73::o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;27423:16;27431:7;27423;:16::i;:::-;27415:73;;;;-1:-1:-1;;;27415:73:0;;14153:2:1;27415:73:0;;;14135:21:1;14192:2;14172:18;;;14165:30;14231:34;14211:18;;;14204:62;-1:-1:-1;;;14282:18:1;;;14275:42;14334:19;;27415:73:0;13951:408:1;27415:73:0;-1:-1:-1;27508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27508:24:0;;27319:221::o;44747:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;-1:-1:-1;;;;;26981:11:0;:2;-1:-1:-1;;;;;26981:11:0;;;26973:57;;;;-1:-1:-1;;;26973:57:0;;16463:2:1;26973:57:0;;;16445:21:1;16502:2;16482:18;;;16475:30;16541:34;16521:18;;;16514:62;-1:-1:-1;;;16592:18:1;;;16585:31;16633:19;;26973:57:0;16261:397:1;26973:57:0;2883:10;-1:-1:-1;;;;;27065:21:0;;;;:62;;-1:-1:-1;27090:37:0;27107:5;2883:10;27838:164;:::i;27090:37::-;27043:168;;;;-1:-1:-1;;;27043:168:0;;12195:2:1;27043:168:0;;;12177:21:1;12234:2;12214:18;;;12207:30;12273:34;12253:18;;;12246:62;-1:-1:-1;;;12324:18:1;;;12317:54;12388:19;;27043:168:0;11993:420:1;27043:168:0;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;50713:128::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50796:16:::1;:39:::0;50713:128::o;50265:118::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50343:25:::1;:34:::0;50265:118::o;51305:114::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51381:14:::1;:32:::0;51305:114::o;28069:339::-;28264:41;2883:10;28297:7;28264:18;:41::i;:::-;28256:103;;;;-1:-1:-1;;;28256:103:0;;;;;;;:::i;:::-;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;-1:-1:-1;;;38691:87:0;;8662:2:1;38691:87:0;;;8644:21:1;8701:2;8681:18;;;8674:30;8740:34;8720:18;;;8713:62;-1:-1:-1;;;8791:18:1;;;8784:41;8842:19;;38691:87:0;8460:407:1;38691:87:0;-1:-1:-1;;;;;;38796:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38574:256::o;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;51185:114::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51261:14:::1;:32:::0;51185:114::o;48890:348::-;48965:16;48993:23;49019:17;49029:6;49019:9;:17::i;:::-;48993:43;;49043:25;49085:15;-1:-1:-1;;;;;49071:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49071:30:0;;49043:58;;49113:9;49108:103;49128:15;49124:1;:19;49108:103;;;49173:30;49193:6;49201:1;49173:19;:30::i;:::-;49159:8;49168:1;49159:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49145:3;;;;:::i;:::-;;;;49108:103;;;-1:-1:-1;49224:8:0;48890:348;-1:-1:-1;;;48890:348:0:o;50491:80::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50550:4:::1;:15:::0;50491:80::o;39096:233::-;39171:7;39207:30;38994:10;:17;;38906:113;39207:30;39199:5;:38;39191:95;;;;-1:-1:-1;;;39191:95:0;;18039:2:1;39191:95:0;;;18021:21:1;18078:2;18058:18;;;18051:30;18117:34;18097:18;;;18090:62;-1:-1:-1;;;18168:18:1;;;18161:42;18220:19;;39191:95:0;17837:408:1;39191:95:0;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;39297:24;;39096:233;;;:::o;50847:98::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50918:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50847:98:::0;:::o;25454:239::-;25526:7;25562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25562:16:0;25597:19;25589:73;;;;-1:-1:-1;;;25589:73:0;;13031:2:1;25589:73:0;;;13013:21:1;13070:2;13050:18;;;13043:30;13109:34;13089:18;;;13082:62;-1:-1:-1;;;13160:18:1;;;13153:39;13209:19;;25589:73:0;12829:405:1;50577:130:0;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50661:20:::1;:40:::0;50577:130::o;25184:208::-;25256:7;-1:-1:-1;;;;;25284:19:0;;25276:74;;;;-1:-1:-1;;;25276:74:0;;12620:2:1;25276:74:0;;;12602:21:1;12659:2;12639:18;;;12632:30;12698:34;12678:18;;;12671:62;-1:-1:-1;;;12749:18:1;;;12742:40;12799:19;;25276:74:0;12418:406:1;25276:74:0;-1:-1:-1;;;;;;25368:16:0;;;;;:9;:16;;;;;;;25184:208::o;49992:95::-;50045:13;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50074:7:::1;50067:14;;;;;:::i;4730:103::-:0;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;51077:102::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51147:11:::1;:26:::0;51077:102::o;49789:175::-;49836:7;49874:14;;49856:15;:32;49852:107;;;-1:-1:-1;49906:11:0;;;49789:175::o;49852:107::-;-1:-1:-1;49947:4:0;;;49789:175::o;48467:399::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48569:1:::1;48555:11;:15;48547:55;;;;-1:-1:-1::0;;;48547:55:0::1;;;;;;;:::i;:::-;48609:14;48626:13;38994:10:::0;:17;;38906:113;48626:13:::1;48678:9;::::0;48609:30;;-1:-1:-1;48654:20:0::1;48663:11:::0;48609:30;48654:20:::1;:::i;:::-;:33;;48646:68;;;;-1:-1:-1::0;;;48646:68:0::1;;;;;;;:::i;:::-;48740:1;48723:138;48748:11;48743:1;:16;48723:138;;-1:-1:-1::0;;;;;48775:33:0;::::1;;::::0;;;:20:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;48819:34:0::1;::::0;-1:-1:-1;48829:11:0;48842:10:::1;48851:1:::0;48842:6;:10:::1;:::i;:::-;48819:9;:34::i;:::-;48761:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48723:138;;;;48540:326;48467:399:::0;;:::o;51425:456::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51486:13:::1;51502:25;51526:1;51502:21;:25;:::i;:::-;51554:2;::::0;51546:23:::1;::::0;51486:41;;-1:-1:-1;;;;;;51554:2:0::1;::::0;51546:23;::::1;;;::::0;51486:41;;51554:2:::1;51546:23:::0;51554:2;51546:23;51486:41;51554:2;51546:23;::::1;;;;;;51538:32;;;::::0;::::1;;51597:2;::::0;51589:23:::1;::::0;-1:-1:-1;;;;;51597:2:0;;::::1;::::0;51589:23;::::1;;;::::0;51606:5;;51597:2:::1;51589:23:::0;51597:2;51589:23;51606:5;51597:2;51589:23;::::1;;;;;;51581:32;;;::::0;::::1;;51640:2;::::0;51632:23:::1;::::0;-1:-1:-1;;;;;51640:2:0;;::::1;::::0;51632:23;::::1;;;::::0;51649:5;;51640:2:::1;51632:23:::0;51640:2;51632:23;51649:5;51640:2;51632:23;::::1;;;;;;51624:32;;;::::0;::::1;;51683:2;::::0;51675:23:::1;::::0;-1:-1:-1;;;;;51683:2:0;;::::1;::::0;51675:23;::::1;;;::::0;51692:5;;51683:2:::1;51675:23:::0;51683:2;51675:23;51692:5;51683:2;51675:23;::::1;;;;;;51667:32;;;::::0;::::1;;51726:2;::::0;51718:23:::1;::::0;-1:-1:-1;;;;;51726:2:0;;::::1;::::0;51718:23;::::1;;;::::0;51735:5;;51726:2:::1;51718:23:::0;51726:2;51718:23;51735:5;51726:2;51718:23;::::1;;;;;;51710:32;;;::::0;::::1;;51769:2;::::0;51761:23:::1;::::0;-1:-1:-1;;;;;51769:2:0;;::::1;::::0;51761:23;::::1;;;::::0;51778:5;;51769:2:::1;51761:23:::0;51769:2;51761:23;51778:5;51769:2;51761:23;::::1;;;;;;51753:32;;;::::0;::::1;;51812:2;::::0;51804:23:::1;::::0;-1:-1:-1;;;;;51812:2:0;;::::1;::::0;51804:23;::::1;;;::::0;51821:5;;51812:2:::1;51804:23:::0;51812:2;51804:23;51821:5;51812:2;51804:23;::::1;;;;;;51796:32;;;::::0;::::1;;51855:2;::::0;51847:23:::1;::::0;-1:-1:-1;;;;;51855:2:0;;::::1;::::0;51847:23;::::1;;;::::0;51864:5;;51855:2:::1;51847:23:::0;51855:2;51847:23;51864:5;51855:2;51847:23;::::1;;;;;;51839:32;;;::::0;::::1;;51473:408;51425:456::o:0;4079:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;;4079:87::o;50391:94::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50457:11:::1;:22:::0;50391:94::o;25929:104::-;25985:13;26018:7;26011:14;;;;;:::i;47745:706::-;46311:6;;;;46310:7;46302:42;;;;-1:-1:-1;;;46302:42:0;;14927:2:1;46302:42:0;;;14909:21:1;14966:2;14946:18;;;14939:30;-1:-1:-1;;;14985:18:1;;;14978:52;15047:18;;46302:42:0;14725:346:1;46302:42:0;46419:11:::1;;46400:15;:30;;46392:67;;;::::0;-1:-1:-1;;;46392:67:0;;8309:2:1;46392:67:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;-1:-1:-1;;;8367:18:1;;;8360:54;8431:18;;46392:67:0::1;8107:348:1::0;46392:67:0::1;47860:11:::2;46556:1;46542:11;:15;46534:55;;;;-1:-1:-1::0;;;46534:55:0::2;;;;;;;:::i;:::-;47883:14:::3;47900:13;38994:10:::0;:17;;38906:113;47900:13:::3;47968:10;47920:24;47947:32:::0;;;:20:::3;:32;::::0;;;;;48079:14:::3;::::0;47883:30;;-1:-1:-1;47947:32:0;48061:15:::3;:32;:161;;48170:52;48192:16;48210:11;48170:21;:52::i;:::-;48061:161;;;48103:57;48122:16;48140:11;48153:6;48103:18;:57::i;:::-;48263:9;::::0;48239:20:::3;48248:11:::0;48239:6;:20:::3;:::i;:::-;:33;;48231:68;;;;-1:-1:-1::0;;;48231:68:0::3;;;;;;;:::i;:::-;48325:1;48308:136;48333:11;48328:1;:16;48308:136;;48381:10;48360:32;::::0;;;:20:::3;:32;::::0;;;;:34;;;::::3;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;48403:33:0::3;::::0;-1:-1:-1;48413:10:0::3;48425;48434:1:::0;48425:6;:10:::3;:::i;48403:33::-;48346:3:::0;::::3;::::0;::::3;:::i;:::-;;;;48308:136;;;;47876:575;;46466:1:::2;47745:706:::0;:::o;27612:155::-;27707:52;2883:10;27740:8;27750;27707:18;:52::i;50117:63::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50159:8:::1;:15:::0;;-1:-1:-1;;50159:15:0::1;;;::::0;;50117:63::o;28735:328::-;28910:41;2883:10;28943:7;28910:18;:41::i;:::-;28902:103;;;;-1:-1:-1;;;28902:103:0;;;;;;;:::i;:::-;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;44705:37::-;;;;;;;:::i;49244:539::-;49342:13;49383:16;49391:7;49383;:16::i;:::-;49367:97;;;;-1:-1:-1;;;49367:97:0;;16047:2:1;49367:97:0;;;16029:21:1;16086:2;16066:18;;;16059:30;16125:34;16105:18;;;16098:62;-1:-1:-1;;;16176:18:1;;;16169:45;16231:19;;49367:97:0;15845:411:1;49367:97:0;49478:8;;;;;;;49473:305;;49504:14;49497:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49244:539;;;:::o;49473:305::-;49541:28;49572:10;26763:9;;;;;;;;;-1:-1:-1;26763:9:0;;;26686:94;49572:10;49541:41;;49638:1;49613:14;49607:28;:32;:163;;;;;;;;;;;;;;;;;49691:14;49707:18;:7;:16;:18::i;:::-;49727:13;49674:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49607:163;49591:179;49244:539;-1:-1:-1;;;49244:539:0:o;49473:305::-;49244:539;;;:::o;27838:164::-;-1:-1:-1;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27838:164::o;50951:120::-;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51033:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;2883:10;4299:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;9493:2:1;5069:73:0::1;::::0;::::1;9475:21:1::0;9532:2;9512:18;;;9505:30;9571:34;9551:18;;;9544:62;-1:-1:-1;;;9622:18:1;;;9615:36;9668:19;;5069:73:0::1;9291:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;24815:305::-:0;24917:4;-1:-1:-1;;;;;;24954:40:0;;-1:-1:-1;;;24954:40:0;;:105;;-1:-1:-1;;;;;;;25011:48:0;;-1:-1:-1;;;25011:48:0;24954:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;25076:36;16511:157;30573:127;30638:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;:30;;;30573:127::o;34555:174::-;34630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34630:29:0;-1:-1:-1;;;;;34630:29:0;;;;;;;;:24;;34684:23;34630:24;34684:14;:23::i;:::-;-1:-1:-1;;;;;34675:46:0;;;;;;;;;;;34555:174;;:::o;30867:348::-;30960:4;30985:16;30993:7;30985;:16::i;:::-;30977:73;;;;-1:-1:-1;;;30977:73:0;;11782:2:1;30977:73:0;;;11764:21:1;11821:2;11801:18;;;11794:30;11860:34;11840:18;;;11833:62;-1:-1:-1;;;11911:18:1;;;11904:42;11963:19;;30977:73:0;11580:408:1;30977:73:0;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;-1:-1:-1;;;;;31119:16:0;:7;-1:-1:-1;;;;;31119:16:0;;:51;;;;31163:7;-1:-1:-1;;;;;31139:31:0;:20;31151:7;31139:11;:20::i;:::-;-1:-1:-1;;;;;31139:31:0;;31119:51;:87;;;;31174:32;31191:5;31198:7;31174:16;:32::i;:::-;31111:96;30867:348;-1:-1:-1;;;;30867:348:0:o;33859:578::-;34018:4;-1:-1:-1;;;;;33991:31:0;:23;34006:7;33991:14;:23::i;:::-;-1:-1:-1;;;;;33991:31:0;;33983:85;;;;-1:-1:-1;;;33983:85:0;;15278:2:1;33983:85:0;;;15260:21:1;15317:2;15297:18;;;15290:30;15356:34;15336:18;;;15329:62;-1:-1:-1;;;15407:18:1;;;15400:39;15456:19;;33983:85:0;15076:405:1;33983:85:0;-1:-1:-1;;;;;34087:16:0;;34079:65;;;;-1:-1:-1;;;34079:65:0;;10614:2:1;34079:65:0;;;10596:21:1;10653:2;10633:18;;;10626:30;10692:34;10672:18;;;10665:62;-1:-1:-1;;;10743:18:1;;;10736:34;10787:19;;34079:65:0;10412:400:1;34079:65:0;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;-1:-1:-1;;;;;34303:15:0;;;;;;:9;:15;;;;;:20;;34322:1;;34303:15;:20;;34322:1;;34303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34334:13:0;;;;;;:9;:13;;;;;:18;;34351:1;;34334:13;:18;;34351:1;;34334:18;:::i;:::-;;;;-1:-1:-1;;34363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34363:21:0;-1:-1:-1;;;;;34363:21:0;;;;;;;;;34402:27;;34363:16;;34402:27;;;;-1:-1:-1;;;;;;;;;;;34402:27:0;;33859:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;47327:402::-;47481:18;;47446:31;47466:11;47446:17;:31;:::i;:::-;:53;;47430:115;;;;-1:-1:-1;;;47430:115:0;;10257:2:1;47430:115:0;;;10239:21:1;10296:2;10276:18;;;10269:30;-1:-1:-1;;;10315:18:1;;;10308:58;10383:18;;47430:115:0;10055:352:1;47430:115:0;47580:11;47573:4;;:18;;;;:::i;:::-;47560:9;:31;;47552:62;;;;-1:-1:-1;;;47552:62:0;;;;;;;:::i;:::-;47652:13;;47637:11;:28;;47621:102;;;;-1:-1:-1;;;47621:102:0;;;;;;;:::i;46624:697::-;46753:18;46796:14;;46778:15;:32;:93;;-1:-1:-1;46867:4:0;;;46778:93;;;-1:-1:-1;46833:11:0;;;46778:93;-1:-1:-1;46929:25:0;;46894:31;46914:11;46894:17;:31;:::i;:::-;:60;;46878:134;;;;-1:-1:-1;;;46878:134:0;;17212:2:1;46878:134:0;;;17194:21:1;17251:2;17231:18;;;17224:30;17290:34;17270:18;;;17263:62;-1:-1:-1;;;17341:18:1;;;17334:38;17389:19;;46878:134:0;17010:404:1;46878:134:0;47040:24;47053:11;47040:10;:24;:::i;:::-;47027:9;:37;;47019:68;;;;-1:-1:-1;;;47019:68:0;;;;;;;:::i;:::-;47125:20;;47110:11;:35;;47094:109;;;;-1:-1:-1;;;47094:109:0;;;;;;;:::i;:::-;47251:16;;47226:21;47236:11;47226:7;:21;:::i;:::-;:41;;47210:105;;;;-1:-1:-1;;;47210:105:0;;15688:2:1;47210:105:0;;;15670:21:1;15727:2;15707:18;;;15700:30;15766:32;15746:18;;;15739:60;15816:18;;47210:105:0;15486:354:1;34871:315:0;35026:8;-1:-1:-1;;;;;35017:17:0;:5;-1:-1:-1;;;;;35017:17:0;;;35009:55;;;;-1:-1:-1;;;35009:55:0;;11019:2:1;35009:55:0;;;11001:21:1;11058:2;11038:18;;;11031:30;-1:-1:-1;;;11077:18:1;;;11070:55;11142:18;;35009:55:0;10817:349:1;35009:55:0;-1:-1:-1;;;;;35075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35075:46:0;;;;;;;;;;35137:41;;7831::1;;;35137::0;;7804:18:1;35137:41:0;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;-1:-1:-1;;;30141:111:0;;;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;39942:589;-1:-1:-1;;;;;40148:18:0;;40144:187;;40183:40;40215:7;41358:10;:17;;41331:24;;;;:15;:24;;;;;:44;;;41386:24;;;;;;;;;;;;41254:164;40183:40;40144:187;;;40253:2;-1:-1:-1;;;;;40245:10:0;:4;-1:-1:-1;;;;;40245:10:0;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;-1:-1:-1;;;;;40345:16:0;;40341:183;;40378:45;40415:7;40378:36;:45::i;40341:183::-;40451:4;-1:-1:-1;;;;;40445:10:0;:2;-1:-1:-1;;;;;40445:10:0;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;31894:321::-;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;-1:-1:-1;;;32053:154:0;;;;;;;:::i;35751:799::-;35906:4;-1:-1:-1;;;;;35927:13:0;;6690:20;6738:8;35923:620;;35963:72;;-1:-1:-1;;;35963:72:0;;-1:-1:-1;;;;;35963:36:0;;;;;:72;;2883:10;;36014:4;;36020:7;;36029:5;;35963:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35963:72:0;;;;;;;;-1:-1:-1;;35963:72:0;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36205:13:0;;36201:272;;36248:60;;-1:-1:-1;;;36248:60:0;;;;;;;:::i;36201:272::-;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;-1:-1:-1;;;;;;36086:51:0;-1:-1:-1;;;36086:51:0;;-1:-1:-1;36079:58:0;;35923:620;-1:-1:-1;36527:4:0;35751:799;;;;;;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42373:18;42394:26;;;:17;:26;;;;;;42311:51;;-1:-1:-1;42527:28:0;;;42523:328;;-1:-1:-1;;;;;42594:18:0;;42572:19;42594:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42645:30;;;;;;:44;;;42762:30;;:17;:30;;;;;:43;;;42523:328;-1:-1:-1;42947:26:0;;;;:17;:26;;;;;;;;42940:33;;;-1:-1:-1;;;;;42991:18:0;;;;;:12;:18;;;;;:34;;;;;;;42984:41;42045:988::o;43328:1079::-;43606:10;:17;43581:22;;43606:21;;43626:1;;43606:21;:::i;:::-;43638:18;43659:24;;;:15;:24;;;;;;44032:10;:26;;43581:46;;-1:-1:-1;43659:24:0;;43581:46;;44032:26;;;;;;:::i;:::-;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44176:28;;;:15;:28;;;;;;;:41;;;44348:24;;;;;44341:31;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;-1:-1:-1;;;;;40965:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41010:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40832:221:0:o;32551:382::-;-1:-1:-1;;;;;32631:16:0;;32623:61;;;;-1:-1:-1;;;32623:61:0;;13792:2:1;32623:61:0;;;13774:21:1;;;13811:18;;;13804:30;13870:34;13850:18;;;13843:62;13922:18;;32623:61:0;13590:356:1;32623:61:0;32704:16;32712:7;32704;:16::i;:::-;32703:17;32695:58;;;;-1:-1:-1;;;32695:58:0;;9900:2:1;32695:58:0;;;9882:21:1;9939:2;9919:18;;;9912:30;-1:-1:-1;;;9958:18:1;;;9951:58;10026:18;;32695:58:0;9698:352:1;32695:58:0;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;-1:-1:-1;;;;;32824:13:0;;;;;;:9;:13;;;;;:18;;32841:1;;32824:13;:18;;32841:1;;32824:18;:::i;:::-;;;;-1:-1:-1;;32853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32853:21:0;-1:-1:-1;;;;;32853:21:0;;;;;;;;32892:33;;32853:16;;;-1:-1:-1;;;;;;;;;;;32892:33:0;32853:16;;32892:33;32551:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;138:14:1;;;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;-1:-1:-1;2127:2:1;2112:18;;2099:32;;-1:-1:-1;2182:2:1;2167:18;;2154:32;-1:-1:-1;;;;;2198:30:1;;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;3825:23;;-1:-1:-1;;;;;3860:30:1;;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;18861:1;18854:14;;;18898:4;18885: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;6561:488::-;-1:-1:-1;;;;;6830:15:1;;;6812:34;;6882:15;;6877:2;6862:18;;6855:43;6929:2;6914:18;;6907:34;;;6977:3;6972:2;6957:18;;6950:31;;;6755:4;;6998:45;;7023:19;;7015:6;6998:45;:::i;:::-;6990:53;6561:488;-1:-1:-1;;;;;;6561:488:1:o;7054:632::-;7225:2;7277:21;;;7347:13;;7250:18;;;7369:22;;;7196:4;;7225:2;7448:15;;;;7422:2;7407:18;;;7196:4;7491:169;7505:6;7502:1;7499:13;7491:169;;;7566:13;;7554:26;;7635:15;;;;7600:12;;;;7527:1;7520:9;7491:169;;;-1:-1:-1;7677:3:1;;7054:632;-1:-1:-1;;;;;;7054:632:1:o;7883:219::-;8032:2;8021:9;8014:21;7995:4;8052:44;8092:2;8081:9;8077:18;8069:6;8052:44;:::i;8872:414::-;9074:2;9056:21;;;9113:2;9093:18;;;9086:30;9152:34;9147:2;9132:18;;9125:62;-1:-1:-1;;;9218:2:1;9203:18;;9196:48;9276:3;9261:19;;8872:414::o;11171:404::-;11373:2;11355:21;;;11412:2;11392:18;;;11385:30;11451:34;11446:2;11431:18;;11424:62;-1:-1:-1;;;11517:2:1;11502:18;;11495:38;11565:3;11550:19;;11171:404::o;13239:346::-;13441:2;13423:21;;;13480:2;13460:18;;;13453:30;-1:-1:-1;;;13514:2:1;13499:18;;13492:52;13576:2;13561:18;;13239:346::o;14364:356::-;14566:2;14548:21;;;14585:18;;;14578:30;14644:34;14639:2;14624:18;;14617:62;14711:2;14696:18;;14364:356::o;16663:342::-;16865:2;16847:21;;;16904:2;16884:18;;;16877:30;-1:-1:-1;;;16938:2:1;16923:18;;16916:48;16996:2;16981:18;;16663:342::o;17419:413::-;17621:2;17603:21;;;17660:2;17640:18;;;17633:30;17699:34;17694:2;17679:18;;17672:62;-1:-1:-1;;;17765:2:1;17750:18;;17743:47;17822:3;17807:19;;17419:413::o;18250:351::-;18452:2;18434:21;;;18491:2;18471:18;;;18464:30;-1:-1:-1;;;18525:2:1;18510:18;;18503:57;18592:2;18577:18;;18250:351::o;18914:128::-;18954:3;18985:1;18981:6;18978:1;18975:13;18972:39;;;18991:18;;:::i;:::-;-1:-1:-1;19027:9:1;;18914:128::o;19047:120::-;19087:1;19113;19103:35;;19118:18;;:::i;:::-;-1:-1:-1;19152:9:1;;19047:120::o;19172:168::-;19212:7;19278:1;19274;19270:6;19266:14;19263:1;19260:21;19255:1;19248:9;19241:17;19237:45;19234:71;;;19285:18;;:::i;:::-;-1:-1:-1;19325:9:1;;19172:168::o;19345:125::-;19385:4;19413:1;19410;19407:8;19404:34;;;19418:18;;:::i;:::-;-1:-1:-1;19455:9:1;;19345:125::o;19475:258::-;19547:1;19557:113;19571:6;19568:1;19565:13;19557:113;;;19647:11;;;19641:18;19628:11;;;19621:39;19593:2;19586:10;19557:113;;;19688:6;19685:1;19682:13;19679:48;;;-1:-1:-1;;19723:1:1;19705:16;;19698:27;19475:258::o;19738:380::-;19817:1;19813:12;;;;19860;;;19881:61;;19935:4;19927:6;19923:17;19913:27;;19881:61;19988:2;19980:6;19977:14;19957:18;19954:38;19951:161;;;20034:10;20029:3;20025:20;20022:1;20015:31;20069:4;20066:1;20059:15;20097:4;20094:1;20087:15;19951:161;;19738:380;;;:::o;20123:135::-;20162:3;-1:-1:-1;;20183:17:1;;20180:43;;;20203:18;;:::i;:::-;-1:-1:-1;20250:1:1;20239:13;;20123:135::o;20263:112::-;20295:1;20321;20311:35;;20326:18;;:::i;:::-;-1:-1:-1;20360:9:1;;20263:112::o;20380:127::-;20441:10;20436:3;20432:20;20429:1;20422:31;20472:4;20469:1;20462:15;20496:4;20493:1;20486:15;20512:127;20573:10;20568:3;20564:20;20561:1;20554:31;20604:4;20601:1;20594:15;20628:4;20625:1;20618:15;20644:127;20705:10;20700:3;20696:20;20693:1;20686:31;20736:4;20733:1;20726:15;20760:4;20757:1;20750:15;20776:127;20837:10;20832:3;20828:20;20825:1;20818:31;20868:4;20865:1;20858:15;20892:4;20889:1;20882:15;20908:127;20969:10;20964:3;20960:20;20957:1;20950:31;21000:4;20997:1;20990:15;21024:4;21021:1;21014:15;21040:131;-1:-1:-1;;;;;;21114:32:1;;21104:43;;21094:71;;21161:1;21158;21151:12

Swarm Source

ipfs://2cb5703522fd6aef61622102ed0a9ae271ed16f6394734d5add190c927b28f50
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.