ETH Price: $3,364.51 (-1.53%)
Gas: 8 Gwei

Token

Mutant Punks NFT (MPNFT)
 

Overview

Max Total Supply

10,000 MPNFT

Holders

4,383

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MPNFT
0xeadd7a1AbB180e1A1Dcb04bFD3DEFbFb8bA5ecBa
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mutant Punks NFT is a collection of 10,000 uniquely and randomly auto-generated Punks who have turned Mutant into different species. They need no costume for this Halloween.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MutantPunksNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    string public baseURI;
    string public baseExtension = ".json";
    address private signerAddress;
    uint256 public cost = .0 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxAmountPerMint = 2;
    uint256 public maxMintPerAddress = 2;
    bool public publicEnabled = false;
    bool public presaleEnabled = false;
    mapping(address => bool) public whitelisted;
    mapping(address => uint256) public addressMintCount;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        address _initSignerAddress
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        signerAddress = _initSignerAddress;
        publicMint(msg.sender, 42);
    }

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

    modifier mintConditionsMet(address _to, uint256 _mintAmount) {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "mint amount must be greater than 0");
        require(supply + _mintAmount <= maxSupply, "mint amount cannot exceed max supply");

        if (msg.sender != owner()) {
            require(_mintAmount <= maxAmountPerMint, "mint amount cannot exceed max amount per mint");
            require((addressMintCount[_to] + _mintAmount) <= maxMintPerAddress, "cannot exceed max mint per wallet address");
            if (whitelisted[msg.sender] != true) {
                require(msg.value >= cost * _mintAmount, "ether value must be greater or equal cost to mint");
            }
        }
        _;
    }

    // public sale
    function publicMint(address _to, uint256 _mintAmount) public payable mintConditionsMet(_to, _mintAmount)
    {
        uint256 supply = totalSupply();
        require(publicEnabled || msg.sender == owner(), "public sale is not enabled");
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
            addressMintCount[_to] = (addressMintCount[_to] + _mintAmount);
        }
    }

    // pre-sale
    function presaleMint(address _to, uint256 _mintAmount, bytes memory sig) public payable mintConditionsMet(_to, _mintAmount) {
        uint256 supply = totalSupply();
        require(presaleEnabled, "pre-sale is not enabled");
        require(isValidSignedData(sig), "wallet was not signed by the official whitelisting signer");
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
            addressMintCount[_to] = (addressMintCount[_to] + _mintAmount);
        }
    }

    // public methods
    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"
        );

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

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

    function setMaxAmountPerMint(uint256 _newMaxAmountPerMint) public onlyOwner {
        maxAmountPerMint = _newMaxAmountPerMint;
    }

    function setMaxMintPerAddress(uint256 _newMaxMintPerAddress) public onlyOwner {
        maxMintPerAddress = _newMaxMintPerAddress;
    }

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

    function getSignerAddress() public view onlyOwner returns (address) {
        return signerAddress;
    }

    function setSignerAddress(address _newSignerAddress) public onlyOwner {
        signerAddress = _newSignerAddress;
    }

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

    function setPublicEnabled(bool _state) public onlyOwner {
        publicEnabled = _state;
    }

    function setPresaleEnabled(bool _state) public onlyOwner {
        presaleEnabled = _state;
    }

    function whitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function setAddressMintCount(address _user, uint256 count) public onlyOwner {
        addressMintCount[_user] = count;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    /************
     * Security *
     ************/

    function isValidSignedData(bytes memory sig) public view returns (bool) {
        bytes32 message = keccak256(abi.encodePacked(_msgSender()));
        return (recoverSigner(message, sig) == signerAddress);
    }

    function recoverSigner(bytes32 message, bytes memory sig) public pure returns (address) {
        uint8 v;
        bytes32 r;
        bytes32 s;
        (v, r, s) = splitSignature(sig);
        return ecrecover(message, v, r, s);
    }

    function splitSignature(bytes memory sig) public pure returns (uint8, bytes32, bytes32) {
        require(sig.length == 65);
        bytes32 r;
        bytes32 s;
        uint8 v;
        assembly {
            // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
            // second 32 bytes
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }

        return (v, r, s);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_initSignerAddress","type":"address"}],"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":"addressMintCount","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":"baseURI","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":"getSignerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"isValidSignedData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setAddressMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmountPerMint","type":"uint256"}],"name":"setMaxAmountPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerAddress","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSignerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000bbd565b506000600e55612710600f55600260108190556011556012805461ffff191690553480156200005657600080fd5b5060405162003d7238038062003d72833981016040819052620000799162000d27565b8351849084906200009290600090602085019062000bbd565b508051620000a890600190602084019062000bbd565b505050620000c5620000bf6200010260201b60201c565b62000106565b620000d08262000158565b600d80546001600160a01b0319166001600160a01b038316179055620000f833602a620001d1565b5050505062000f6d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001cd90600b90602084019062000bbd565b5050565b81816000620001df60085490565b9050600082116200023e5760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e74206d7573742062652067726561746572207468616e604482015261020360f41b6064820152608401620001af565b600f546200024d838362000e30565b1115620002a95760405162461bcd60e51b8152602060048201526024808201527f6d696e7420616d6f756e742063616e6e6f7420657863656564206d617820737560448201526370706c7960e01b6064820152608401620001af565b600a546001600160a01b031633146200044957601054821115620003265760405162461bcd60e51b815260206004820152602d60248201527f6d696e7420616d6f756e742063616e6e6f7420657863656564206d617820616d60448201526c1bdd5b9d081c195c881b5a5b9d609a1b6064820152608401620001af565b6011546001600160a01b0384166000908152601460205260409020546200034f90849062000e30565b1115620003b15760405162461bcd60e51b815260206004820152602960248201527f63616e6e6f7420657863656564206d6178206d696e74207065722077616c6c6560448201526874206164647265737360b81b6064820152608401620001af565b3360009081526013602052604090205460ff161515600114620004495781600e54620003de919062000e4b565b341015620004495760405162461bcd60e51b815260206004820152603160248201527f65746865722076616c7565206d7573742062652067726561746572206f7220656044820152701c5d585b0818dbdcdd081d1bc81b5a5b9d607a1b6064820152608401620001af565b60006200045560085490565b60125490915060ff1680620004745750600a546001600160a01b031633145b620004c25760405162461bcd60e51b815260206004820152601a60248201527f7075626c69632073616c65206973206e6f7420656e61626c65640000000000006044820152606401620001af565b60015b8581116200053857620004e487620004de838562000e30565b62000541565b6001600160a01b0387166000908152601460205260409020546200050a90879062000e30565b6001600160a01b038816600090815260146020526040902055806200052f8162000ef7565b915050620004c5565b50505050505050565b620001cd8282604051806020016040528060008152506200056360201b60201c565b6200056f8383620005db565b6200057e600084848462000731565b620005d65760405162461bcd60e51b8152602060048201526032602482015260008051602062003d5283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001af565b505050565b6001600160a01b038216620006335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001af565b6000818152600260205260409020546001600160a01b0316156200069a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001af565b620006a8600083836200089a565b6001600160a01b0382166000908152600360205260408120805460019290620006d390849062000e30565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000752846001600160a01b03166200097660201b62001a471760201c565b156200088e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200078c90339089908890889060040162000dda565b602060405180830381600087803b158015620007a757600080fd5b505af1925050508015620007da575060408051601f3d908101601f19168201909252620007d79181019062000cf4565b60015b62000873573d8080156200080b576040519150601f19603f3d011682016040523d82523d6000602084013e62000810565b606091505b5080516200086b5760405162461bcd60e51b8152602060048201526032602482015260008051602062003d5283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000892565b5060015b949350505050565b620008b2838383620005d660201b62000e131760201c565b6001600160a01b03831662000910576200090a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000936565b816001600160a01b0316836001600160a01b03161462000936576200093683826200097c565b6001600160a01b0382166200095057620005d68162000a29565b826001600160a01b0316826001600160a01b031614620005d657620005d6828262000ae3565b3b151590565b60006001620009968462000b3460201b620012f91760201c565b620009a2919062000e6d565b600083815260076020526040902054909150808214620009f6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000a3d9060019062000e6d565b6000838152600960205260408120546008805493945090928490811062000a685762000a6862000f41565b90600052602060002001549050806008838154811062000a8c5762000a8c62000f41565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000ac75762000ac762000f2b565b6001900381819060005260206000200160009055905550505050565b600062000afb8362000b3460201b620012f91760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000ba15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001af565b506001600160a01b031660009081526003602052604090205490565b82805462000bcb9062000eba565b90600052602060002090601f01602090048101928262000bef576000855562000c3a565b82601f1062000c0a57805160ff191683800117855562000c3a565b8280016001018555821562000c3a579182015b8281111562000c3a57825182559160200191906001019062000c1d565b5062000c4892915062000c4c565b5090565b5b8082111562000c48576000815560010162000c4d565b600082601f83011262000c7557600080fd5b81516001600160401b038082111562000c925762000c9262000f57565b604051601f8301601f19908116603f0116810190828211818310171562000cbd5762000cbd62000f57565b8160405283815286602085880101111562000cd757600080fd5b62000cea84602083016020890162000e87565b9695505050505050565b60006020828403121562000d0757600080fd5b81516001600160e01b03198116811462000d2057600080fd5b9392505050565b6000806000806080858703121562000d3e57600080fd5b84516001600160401b038082111562000d5657600080fd5b62000d648883890162000c63565b9550602087015191508082111562000d7b57600080fd5b62000d898883890162000c63565b9450604087015191508082111562000da057600080fd5b5062000daf8782880162000c63565b606087015190935090506001600160a01b038116811462000dcf57600080fd5b939692955090935050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000e198160a085016020870162000e87565b601f01601f19169190910160a00195945050505050565b6000821982111562000e465762000e4662000f15565b500190565b600081600019048311821515161562000e685762000e6862000f15565b500290565b60008282101562000e825762000e8262000f15565b500390565b60005b8381101562000ea457818101518382015260200162000e8a565b8381111562000eb4576000848401525b50505050565b600181811c9082168062000ecf57607f821691505b6020821081141562000ef157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000f0e5762000f0e62000f15565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612dd58062000f7d6000396000f3fe6080604052600436106102925760003560e01c8063572849c41161015a578063a7bb5803116100c1578063ce6df2b91161007a578063ce6df2b9146107c1578063d5abeb01146107d4578063d936547e146107ea578063da3ef23f1461081a578063e985e9c51461083a578063f2fde38b1461088357600080fd5b8063a7bb5803146106ed578063ad8e75aa1461072c578063b88d4fde1461074c578063c10225b81461076c578063c66828621461078c578063c87b56dd146107a157600080fd5b80638da5cb5b116101135780638da5cb5b1461064057806390a1abe31461065e57806395d89b411461067e57806397aba7f9146106935780639b001f45146106b3578063a22cb465146106cd57600080fd5b8063572849c4146105a05780636352211e146105b65780636c0360eb146105d657806370a08231146105eb578063715018a61461060b5780637af3a1af1461062057600080fd5b80631e14d44b116101fe57806342842e0e116101b757806342842e0e146104d3578063438b6300146104f357806344a0d68a146105205780634a4c560d146105405780634f6ccce71461056057806355f804b31461058057600080fd5b80631e14d44b1461043557806323b872dd1461045557806327acc76d146104755780632f745c591461048b57806330cc7ae0146104ab5780633ccfd60b146104cb57600080fd5b8063095ea7b311610250578063095ea7b31461037b57806313faede61461039b578063143b237f146103bf57806318160ddd146103de5780631a296e02146103f35780631ba4f67d1461040857600080fd5b806289576b1461029757806301ffc9a7146102ac578063046dc166146102e1578063059c78081461030157806306fdde0314610321578063081812fc14610343575b600080fd5b6102aa6102a53660046126d0565b6108a3565b005b3480156102b857600080fd5b506102cc6102c7366004612789565b610b1e565b60405190151581526020015b60405180910390f35b3480156102ed57600080fd5b506102aa6102fc36600461258a565b610b49565b34801561030d57600080fd5b506102aa61031c3660046126a6565b610b95565b34801561032d57600080fd5b50610336610bdb565b6040516102d891906129cb565b34801561034f57600080fd5b5061036361035e366004612841565b610c6d565b6040516001600160a01b0390911681526020016102d8565b34801561038757600080fd5b506102aa6103963660046126a6565b610d02565b3480156103a757600080fd5b506103b1600e5481565b6040519081526020016102d8565b3480156103cb57600080fd5b506012546102cc90610100900460ff1681565b3480156103ea57600080fd5b506008546103b1565b3480156103ff57600080fd5b50610363610e18565b34801561041457600080fd5b506103b161042336600461258a565b60146020526000908152604090205481565b34801561044157600080fd5b506102aa610450366004612841565b610e55565b34801561046157600080fd5b506102aa6104703660046125d8565b610e84565b34801561048157600080fd5b506103b160105481565b34801561049757600080fd5b506103b16104a63660046126a6565b610eb5565b3480156104b757600080fd5b506102aa6104c636600461258a565b610f4b565b6102aa610f96565b3480156104df57600080fd5b506102aa6104ee3660046125d8565b610fe6565b3480156104ff57600080fd5b5061051361050e36600461258a565b611001565b6040516102d89190612987565b34801561052c57600080fd5b506102aa61053b366004612841565b6110a3565b34801561054c57600080fd5b506102aa61055b36600461258a565b6110d2565b34801561056c57600080fd5b506103b161057b366004612841565b611120565b34801561058c57600080fd5b506102aa61059b3660046127f8565b6111b3565b3480156105ac57600080fd5b506103b160115481565b3480156105c257600080fd5b506103636105d1366004612841565b6111f4565b3480156105e257600080fd5b5061033661126b565b3480156105f757600080fd5b506103b161060636600461258a565b6112f9565b34801561061757600080fd5b506102aa611380565b34801561062c57600080fd5b506102aa61063b366004612727565b6113b4565b34801561064c57600080fd5b50600a546001600160a01b0316610363565b34801561066a57600080fd5b506102cc6106793660046127c3565b6113f1565b34801561068a57600080fd5b50610336611456565b34801561069f57600080fd5b506103636106ae366004612742565b611465565b3480156106bf57600080fd5b506012546102cc9060ff1681565b3480156106d957600080fd5b506102aa6106e836600461267c565b6114e4565b3480156106f957600080fd5b5061070d6107083660046127c3565b6115a9565b6040805160ff90941684526020840192909252908201526060016102d8565b34801561073857600080fd5b506102aa610747366004612841565b6115d8565b34801561075857600080fd5b506102aa610767366004612614565b611607565b34801561077857600080fd5b506102aa610787366004612727565b61163f565b34801561079857600080fd5b50610336611683565b3480156107ad57600080fd5b506103366107bc366004612841565b611690565b6102aa6107cf3660046126a6565b61176e565b3480156107e057600080fd5b506103b1600f5481565b3480156107f657600080fd5b506102cc61080536600461258a565b60136020526000908152604090205460ff1681565b34801561082657600080fd5b506102aa6108353660046127f8565b61196f565b34801561084657600080fd5b506102cc6108553660046125a5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088f57600080fd5b506102aa61089e36600461258a565b6119ac565b828260006108b060085490565b9050600082116108db5760405162461bcd60e51b81526004016108d290612a30565b60405180910390fd5b600f546108e88383612c23565b11156109065760405162461bcd60e51b81526004016108d290612b96565b600a546001600160a01b031633146109c85760105482111561093a5760405162461bcd60e51b81526004016108d290612aa7565b6011546001600160a01b038416600090815260146020526040902054610961908490612c23565b111561097f5760405162461bcd60e51b81526004016108d290612bda565b3360009081526013602052604090205460ff1615156001146109c85781600e546109a99190612c4f565b3410156109c85760405162461bcd60e51b81526004016108d290612b45565b60006109d360085490565b601254909150610100900460ff16610a2d5760405162461bcd60e51b815260206004820152601760248201527f7072652d73616c65206973206e6f7420656e61626c656400000000000000000060448201526064016108d2565b610a36856113f1565b610aa85760405162461bcd60e51b815260206004820152603960248201527f77616c6c657420776173206e6f74207369676e656420627920746865206f666660448201527f696369616c2077686974656c697374696e67207369676e65720000000000000060648201526084016108d2565b60015b868111610b1457610ac588610ac08385612c23565b611a4d565b6001600160a01b038816600090815260146020526040902054610ae9908890612c23565b6001600160a01b03891660009081526014602052604090205580610b0c81612cec565b915050610aab565b5050505050505050565b60006001600160e01b0319821663780e9d6360e01b1480610b435750610b4382611a67565b92915050565b600a546001600160a01b03163314610b735760405162461bcd60e51b81526004016108d290612a72565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610bbf5760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b03909116600090815260146020526040902055565b606060008054610bea90612cb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1690612cb1565b8015610c635780601f10610c3857610100808354040283529160200191610c63565b820191906000526020600020905b815481529060010190602001808311610c4657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ce65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d2565b506000908152600460205260409020546001600160a01b031690565b6000610d0d826111f4565b9050806001600160a01b0316836001600160a01b03161415610d7b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d2565b336001600160a01b0382161480610d975750610d978133610855565b610e095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d2565b610e138383611ab7565b505050565b600a546000906001600160a01b03163314610e455760405162461bcd60e51b81526004016108d290612a72565b50600d546001600160a01b031690565b600a546001600160a01b03163314610e7f5760405162461bcd60e51b81526004016108d290612a72565b601155565b610e8e3382611b25565b610eaa5760405162461bcd60e51b81526004016108d290612af4565b610e13838383611c1c565b6000610ec0836112f9565b8210610f225760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f755760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b03166000908152601360205260409020805460ff19169055565b600a546001600160a01b03163314610fc05760405162461bcd60e51b81526004016108d290612a72565b60405133904780156108fc02916000818181858888f19350505050610fe457600080fd5b565b610e1383838360405180602001604052806000815250611607565b6060600061100e836112f9565b905060008167ffffffffffffffff81111561102b5761102b612d73565b604051908082528060200260200182016040528015611054578160200160208202803683370190505b50905060005b8281101561109b5761106c8582610eb5565b82828151811061107e5761107e612d5d565b60209081029190910101528061109381612cec565b91505061105a565b509392505050565b600a546001600160a01b031633146110cd5760405162461bcd60e51b81526004016108d290612a72565b600e55565b600a546001600160a01b031633146110fc5760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b600061112b60085490565b821061118e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108d2565b600882815481106111a1576111a1612d5d565b90600052602060002001549050919050565b600a546001600160a01b031633146111dd5760405162461bcd60e51b81526004016108d290612a72565b80516111f090600b90602084019061242f565b5050565b6000818152600260205260408120546001600160a01b031680610b435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d2565b600b805461127890612cb1565b80601f01602080910402602001604051908101604052809291908181526020018280546112a490612cb1565b80156112f15780601f106112c6576101008083540402835291602001916112f1565b820191906000526020600020905b8154815290600101906020018083116112d457829003601f168201915b505050505081565b60006001600160a01b0382166113645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113aa5760405162461bcd60e51b81526004016108d290612a72565b610fe46000611dc7565b600a546001600160a01b031633146113de5760405162461bcd60e51b81526004016108d290612a72565b6012805460ff1916911515919091179055565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160408051601f198184030181529190528051602090910120600d549091506001600160a01b03166114458285611465565b6001600160a01b0316149392505050565b606060018054610bea90612cb1565b600080600080611474856115a9565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa1580156114cf573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160a01b03821633141561153d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080600083516041146115bc57600080fd5b5050506020810151604082015160609092015160001a92909190565b600a546001600160a01b031633146116025760405162461bcd60e51b81526004016108d290612a72565b601055565b6116113383611b25565b61162d5760405162461bcd60e51b81526004016108d290612af4565b61163984848484611e19565b50505050565b600a546001600160a01b031633146116695760405162461bcd60e51b81526004016108d290612a72565b601280549115156101000261ff0019909216919091179055565b600c805461127890612cb1565b6000818152600260205260409020546060906001600160a01b031661170f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d2565b6000611719611e4c565b905060008151116117395760405180602001604052806000815250611767565b8061174384611e5b565b600c60405160200161175793929190612886565b6040516020818303038152906040525b9392505050565b8181600061177b60085490565b90506000821161179d5760405162461bcd60e51b81526004016108d290612a30565b600f546117aa8383612c23565b11156117c85760405162461bcd60e51b81526004016108d290612b96565b600a546001600160a01b0316331461188a576010548211156117fc5760405162461bcd60e51b81526004016108d290612aa7565b6011546001600160a01b038416600090815260146020526040902054611823908490612c23565b11156118415760405162461bcd60e51b81526004016108d290612bda565b3360009081526013602052604090205460ff16151560011461188a5781600e5461186b9190612c4f565b34101561188a5760405162461bcd60e51b81526004016108d290612b45565b600061189560085490565b60125490915060ff16806118b35750600a546001600160a01b031633145b6118ff5760405162461bcd60e51b815260206004820152601a60248201527f7075626c69632073616c65206973206e6f7420656e61626c656400000000000060448201526064016108d2565b60015b8581116119665761191787610ac08385612c23565b6001600160a01b03871660009081526014602052604090205461193b908790612c23565b6001600160a01b0388166000908152601460205260409020558061195e81612cec565b915050611902565b50505050505050565b600a546001600160a01b031633146119995760405162461bcd60e51b81526004016108d290612a72565b80516111f090600c90602084019061242f565b600a546001600160a01b031633146119d65760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b038116611a3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d2565b611a4481611dc7565b50565b3b151590565b6111f0828260405180602001604052806000815250611f59565b60006001600160e01b031982166380ac58cd60e01b1480611a9857506001600160e01b03198216635b5e139f60e01b145b80610b4357506301ffc9a760e01b6001600160e01b0319831614610b43565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aec826111f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b9e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d2565b6000611ba9836111f4565b9050806001600160a01b0316846001600160a01b03161480611be45750836001600160a01b0316611bd984610c6d565b6001600160a01b0316145b80611c1457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c2f826111f4565b6001600160a01b031614611c975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d2565b6001600160a01b038216611cf95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d2565b611d04838383611f8c565b611d0f600082611ab7565b6001600160a01b0383166000908152600360205260408120805460019290611d38908490612c6e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d66908490612c23565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e24848484611c1c565b611e3084848484612044565b6116395760405162461bcd60e51b81526004016108d2906129de565b6060600b8054610bea90612cb1565b606081611e7f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ea95780611e9381612cec565b9150611ea29050600a83612c3b565b9150611e83565b60008167ffffffffffffffff811115611ec457611ec4612d73565b6040519080825280601f01601f191660200182016040528015611eee576020820181803683370190505b5090505b8415611c1457611f03600183612c6e565b9150611f10600a86612d07565b611f1b906030612c23565b60f81b818381518110611f3057611f30612d5d565b60200101906001600160f81b031916908160001a905350611f52600a86612c3b565b9450611ef2565b611f638383612151565b611f706000848484612044565b610e135760405162461bcd60e51b81526004016108d2906129de565b6001600160a01b038316611fe757611fe281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61200a565b816001600160a01b0316836001600160a01b03161461200a5761200a838261229f565b6001600160a01b03821661202157610e138161233c565b826001600160a01b0316826001600160a01b031614610e1357610e1382826123eb565b60006001600160a01b0384163b1561214657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061208890339089908890889060040161294a565b602060405180830381600087803b1580156120a257600080fd5b505af19250505080156120d2575060408051601f3d908101601f191682019092526120cf918101906127a6565b60015b61212c573d808015612100576040519150601f19603f3d011682016040523d82523d6000602084013e612105565b606091505b5080516121245760405162461bcd60e51b81526004016108d2906129de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c14565b506001949350505050565b6001600160a01b0382166121a75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d2565b6000818152600260205260409020546001600160a01b03161561220c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d2565b61221860008383611f8c565b6001600160a01b0382166000908152600360205260408120805460019290612241908490612c23565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122ac846112f9565b6122b69190612c6e565b600083815260076020526040902054909150808214612309576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061234e90600190612c6e565b6000838152600960205260408120546008805493945090928490811061237657612376612d5d565b90600052602060002001549050806008838154811061239757612397612d5d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123cf576123cf612d47565b6001900381819060005260206000200160009055905550505050565b60006123f6836112f9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461243b90612cb1565b90600052602060002090601f01602090048101928261245d57600085556124a3565b82601f1061247657805160ff19168380011785556124a3565b828001600101855582156124a3579182015b828111156124a3578251825591602001919060010190612488565b506124af9291506124b3565b5090565b5b808211156124af57600081556001016124b4565b600067ffffffffffffffff808411156124e3576124e3612d73565b604051601f8501601f19908116603f0116810190828211818310171561250b5761250b612d73565b8160405280935085815286868601111561252457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461255557600080fd5b919050565b8035801515811461255557600080fd5b600082601f83011261257b57600080fd5b611767838335602085016124c8565b60006020828403121561259c57600080fd5b6117678261253e565b600080604083850312156125b857600080fd5b6125c18361253e565b91506125cf6020840161253e565b90509250929050565b6000806000606084860312156125ed57600080fd5b6125f68461253e565b92506126046020850161253e565b9150604084013590509250925092565b6000806000806080858703121561262a57600080fd5b6126338561253e565b93506126416020860161253e565b925060408501359150606085013567ffffffffffffffff81111561266457600080fd5b6126708782880161256a565b91505092959194509250565b6000806040838503121561268f57600080fd5b6126988361253e565b91506125cf6020840161255a565b600080604083850312156126b957600080fd5b6126c28361253e565b946020939093013593505050565b6000806000606084860312156126e557600080fd5b6126ee8461253e565b925060208401359150604084013567ffffffffffffffff81111561271157600080fd5b61271d8682870161256a565b9150509250925092565b60006020828403121561273957600080fd5b6117678261255a565b6000806040838503121561275557600080fd5b82359150602083013567ffffffffffffffff81111561277357600080fd5b61277f8582860161256a565b9150509250929050565b60006020828403121561279b57600080fd5b813561176781612d89565b6000602082840312156127b857600080fd5b815161176781612d89565b6000602082840312156127d557600080fd5b813567ffffffffffffffff8111156127ec57600080fd5b611c148482850161256a565b60006020828403121561280a57600080fd5b813567ffffffffffffffff81111561282157600080fd5b8201601f8101841361283257600080fd5b611c14848235602084016124c8565b60006020828403121561285357600080fd5b5035919050565b60008151808452612872816020860160208601612c85565b601f01601f19169290920160200192915050565b6000845160206128998285838a01612c85565b8551918401916128ac8184848a01612c85565b8554920191600090600181811c90808316806128c957607f831692505b8583108114156128e757634e487b7160e01b85526022600452602485fd5b8080156128fb576001811461290c57612939565b60ff19851688528388019550612939565b60008b81526020902060005b858110156129315781548a820152908401908801612918565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061297d9083018461285a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129bf578351835292840192918401916001016129a3565b50909695505050505050565b602081526000611767602083018461285a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f6d696e7420616d6f756e74206d7573742062652067726561746572207468616e604082015261020360f41b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f6d696e7420616d6f756e742063616e6e6f7420657863656564206d617820616d60408201526c1bdd5b9d081c195c881b5a5b9d609a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526031908201527f65746865722076616c7565206d7573742062652067726561746572206f7220656040820152701c5d585b0818dbdcdd081d1bc81b5a5b9d607a1b606082015260800190565b60208082526024908201527f6d696e7420616d6f756e742063616e6e6f7420657863656564206d617820737560408201526370706c7960e01b606082015260800190565b60208082526029908201527f63616e6e6f7420657863656564206d6178206d696e74207065722077616c6c6560408201526874206164647265737360b81b606082015260800190565b60008219821115612c3657612c36612d1b565b500190565b600082612c4a57612c4a612d31565b500490565b6000816000190483118215151615612c6957612c69612d1b565b500290565b600082821015612c8057612c80612d1b565b500390565b60005b83811015612ca0578181015183820152602001612c88565b838111156116395750506000910152565b600181811c90821680612cc557607f821691505b60208210811415612ce657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d0057612d00612d1b565b5060010190565b600082612d1657612d16612d31565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a4457600080fdfea26469706673582212201def8e22480d0185786501f13c8331cc304e29a52d75b5111fac612550dbe39d64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a79873d7039c93f3a90dcb7abd0606b1fa564a8900000000000000000000000000000000000000000000000000000000000000104d7574616e742050756e6b73204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d504e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e697066732e696f2f69706e732f6b3531717a6935757175356468316b6a32753768633078376b6e3372766c64336b6f676f636b6f38776e35756b3336767a6261796169377979646d6570652f00000000

Deployed Bytecode

0x6080604052600436106102925760003560e01c8063572849c41161015a578063a7bb5803116100c1578063ce6df2b91161007a578063ce6df2b9146107c1578063d5abeb01146107d4578063d936547e146107ea578063da3ef23f1461081a578063e985e9c51461083a578063f2fde38b1461088357600080fd5b8063a7bb5803146106ed578063ad8e75aa1461072c578063b88d4fde1461074c578063c10225b81461076c578063c66828621461078c578063c87b56dd146107a157600080fd5b80638da5cb5b116101135780638da5cb5b1461064057806390a1abe31461065e57806395d89b411461067e57806397aba7f9146106935780639b001f45146106b3578063a22cb465146106cd57600080fd5b8063572849c4146105a05780636352211e146105b65780636c0360eb146105d657806370a08231146105eb578063715018a61461060b5780637af3a1af1461062057600080fd5b80631e14d44b116101fe57806342842e0e116101b757806342842e0e146104d3578063438b6300146104f357806344a0d68a146105205780634a4c560d146105405780634f6ccce71461056057806355f804b31461058057600080fd5b80631e14d44b1461043557806323b872dd1461045557806327acc76d146104755780632f745c591461048b57806330cc7ae0146104ab5780633ccfd60b146104cb57600080fd5b8063095ea7b311610250578063095ea7b31461037b57806313faede61461039b578063143b237f146103bf57806318160ddd146103de5780631a296e02146103f35780631ba4f67d1461040857600080fd5b806289576b1461029757806301ffc9a7146102ac578063046dc166146102e1578063059c78081461030157806306fdde0314610321578063081812fc14610343575b600080fd5b6102aa6102a53660046126d0565b6108a3565b005b3480156102b857600080fd5b506102cc6102c7366004612789565b610b1e565b60405190151581526020015b60405180910390f35b3480156102ed57600080fd5b506102aa6102fc36600461258a565b610b49565b34801561030d57600080fd5b506102aa61031c3660046126a6565b610b95565b34801561032d57600080fd5b50610336610bdb565b6040516102d891906129cb565b34801561034f57600080fd5b5061036361035e366004612841565b610c6d565b6040516001600160a01b0390911681526020016102d8565b34801561038757600080fd5b506102aa6103963660046126a6565b610d02565b3480156103a757600080fd5b506103b1600e5481565b6040519081526020016102d8565b3480156103cb57600080fd5b506012546102cc90610100900460ff1681565b3480156103ea57600080fd5b506008546103b1565b3480156103ff57600080fd5b50610363610e18565b34801561041457600080fd5b506103b161042336600461258a565b60146020526000908152604090205481565b34801561044157600080fd5b506102aa610450366004612841565b610e55565b34801561046157600080fd5b506102aa6104703660046125d8565b610e84565b34801561048157600080fd5b506103b160105481565b34801561049757600080fd5b506103b16104a63660046126a6565b610eb5565b3480156104b757600080fd5b506102aa6104c636600461258a565b610f4b565b6102aa610f96565b3480156104df57600080fd5b506102aa6104ee3660046125d8565b610fe6565b3480156104ff57600080fd5b5061051361050e36600461258a565b611001565b6040516102d89190612987565b34801561052c57600080fd5b506102aa61053b366004612841565b6110a3565b34801561054c57600080fd5b506102aa61055b36600461258a565b6110d2565b34801561056c57600080fd5b506103b161057b366004612841565b611120565b34801561058c57600080fd5b506102aa61059b3660046127f8565b6111b3565b3480156105ac57600080fd5b506103b160115481565b3480156105c257600080fd5b506103636105d1366004612841565b6111f4565b3480156105e257600080fd5b5061033661126b565b3480156105f757600080fd5b506103b161060636600461258a565b6112f9565b34801561061757600080fd5b506102aa611380565b34801561062c57600080fd5b506102aa61063b366004612727565b6113b4565b34801561064c57600080fd5b50600a546001600160a01b0316610363565b34801561066a57600080fd5b506102cc6106793660046127c3565b6113f1565b34801561068a57600080fd5b50610336611456565b34801561069f57600080fd5b506103636106ae366004612742565b611465565b3480156106bf57600080fd5b506012546102cc9060ff1681565b3480156106d957600080fd5b506102aa6106e836600461267c565b6114e4565b3480156106f957600080fd5b5061070d6107083660046127c3565b6115a9565b6040805160ff90941684526020840192909252908201526060016102d8565b34801561073857600080fd5b506102aa610747366004612841565b6115d8565b34801561075857600080fd5b506102aa610767366004612614565b611607565b34801561077857600080fd5b506102aa610787366004612727565b61163f565b34801561079857600080fd5b50610336611683565b3480156107ad57600080fd5b506103366107bc366004612841565b611690565b6102aa6107cf3660046126a6565b61176e565b3480156107e057600080fd5b506103b1600f5481565b3480156107f657600080fd5b506102cc61080536600461258a565b60136020526000908152604090205460ff1681565b34801561082657600080fd5b506102aa6108353660046127f8565b61196f565b34801561084657600080fd5b506102cc6108553660046125a5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088f57600080fd5b506102aa61089e36600461258a565b6119ac565b828260006108b060085490565b9050600082116108db5760405162461bcd60e51b81526004016108d290612a30565b60405180910390fd5b600f546108e88383612c23565b11156109065760405162461bcd60e51b81526004016108d290612b96565b600a546001600160a01b031633146109c85760105482111561093a5760405162461bcd60e51b81526004016108d290612aa7565b6011546001600160a01b038416600090815260146020526040902054610961908490612c23565b111561097f5760405162461bcd60e51b81526004016108d290612bda565b3360009081526013602052604090205460ff1615156001146109c85781600e546109a99190612c4f565b3410156109c85760405162461bcd60e51b81526004016108d290612b45565b60006109d360085490565b601254909150610100900460ff16610a2d5760405162461bcd60e51b815260206004820152601760248201527f7072652d73616c65206973206e6f7420656e61626c656400000000000000000060448201526064016108d2565b610a36856113f1565b610aa85760405162461bcd60e51b815260206004820152603960248201527f77616c6c657420776173206e6f74207369676e656420627920746865206f666660448201527f696369616c2077686974656c697374696e67207369676e65720000000000000060648201526084016108d2565b60015b868111610b1457610ac588610ac08385612c23565b611a4d565b6001600160a01b038816600090815260146020526040902054610ae9908890612c23565b6001600160a01b03891660009081526014602052604090205580610b0c81612cec565b915050610aab565b5050505050505050565b60006001600160e01b0319821663780e9d6360e01b1480610b435750610b4382611a67565b92915050565b600a546001600160a01b03163314610b735760405162461bcd60e51b81526004016108d290612a72565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610bbf5760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b03909116600090815260146020526040902055565b606060008054610bea90612cb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1690612cb1565b8015610c635780601f10610c3857610100808354040283529160200191610c63565b820191906000526020600020905b815481529060010190602001808311610c4657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610ce65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d2565b506000908152600460205260409020546001600160a01b031690565b6000610d0d826111f4565b9050806001600160a01b0316836001600160a01b03161415610d7b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d2565b336001600160a01b0382161480610d975750610d978133610855565b610e095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d2565b610e138383611ab7565b505050565b600a546000906001600160a01b03163314610e455760405162461bcd60e51b81526004016108d290612a72565b50600d546001600160a01b031690565b600a546001600160a01b03163314610e7f5760405162461bcd60e51b81526004016108d290612a72565b601155565b610e8e3382611b25565b610eaa5760405162461bcd60e51b81526004016108d290612af4565b610e13838383611c1c565b6000610ec0836112f9565b8210610f225760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f755760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b03166000908152601360205260409020805460ff19169055565b600a546001600160a01b03163314610fc05760405162461bcd60e51b81526004016108d290612a72565b60405133904780156108fc02916000818181858888f19350505050610fe457600080fd5b565b610e1383838360405180602001604052806000815250611607565b6060600061100e836112f9565b905060008167ffffffffffffffff81111561102b5761102b612d73565b604051908082528060200260200182016040528015611054578160200160208202803683370190505b50905060005b8281101561109b5761106c8582610eb5565b82828151811061107e5761107e612d5d565b60209081029190910101528061109381612cec565b91505061105a565b509392505050565b600a546001600160a01b031633146110cd5760405162461bcd60e51b81526004016108d290612a72565b600e55565b600a546001600160a01b031633146110fc5760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b600061112b60085490565b821061118e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108d2565b600882815481106111a1576111a1612d5d565b90600052602060002001549050919050565b600a546001600160a01b031633146111dd5760405162461bcd60e51b81526004016108d290612a72565b80516111f090600b90602084019061242f565b5050565b6000818152600260205260408120546001600160a01b031680610b435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d2565b600b805461127890612cb1565b80601f01602080910402602001604051908101604052809291908181526020018280546112a490612cb1565b80156112f15780601f106112c6576101008083540402835291602001916112f1565b820191906000526020600020905b8154815290600101906020018083116112d457829003601f168201915b505050505081565b60006001600160a01b0382166113645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113aa5760405162461bcd60e51b81526004016108d290612a72565b610fe46000611dc7565b600a546001600160a01b031633146113de5760405162461bcd60e51b81526004016108d290612a72565b6012805460ff1916911515919091179055565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160408051601f198184030181529190528051602090910120600d549091506001600160a01b03166114458285611465565b6001600160a01b0316149392505050565b606060018054610bea90612cb1565b600080600080611474856115a9565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa1580156114cf573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160a01b03821633141561153d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080600083516041146115bc57600080fd5b5050506020810151604082015160609092015160001a92909190565b600a546001600160a01b031633146116025760405162461bcd60e51b81526004016108d290612a72565b601055565b6116113383611b25565b61162d5760405162461bcd60e51b81526004016108d290612af4565b61163984848484611e19565b50505050565b600a546001600160a01b031633146116695760405162461bcd60e51b81526004016108d290612a72565b601280549115156101000261ff0019909216919091179055565b600c805461127890612cb1565b6000818152600260205260409020546060906001600160a01b031661170f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d2565b6000611719611e4c565b905060008151116117395760405180602001604052806000815250611767565b8061174384611e5b565b600c60405160200161175793929190612886565b6040516020818303038152906040525b9392505050565b8181600061177b60085490565b90506000821161179d5760405162461bcd60e51b81526004016108d290612a30565b600f546117aa8383612c23565b11156117c85760405162461bcd60e51b81526004016108d290612b96565b600a546001600160a01b0316331461188a576010548211156117fc5760405162461bcd60e51b81526004016108d290612aa7565b6011546001600160a01b038416600090815260146020526040902054611823908490612c23565b11156118415760405162461bcd60e51b81526004016108d290612bda565b3360009081526013602052604090205460ff16151560011461188a5781600e5461186b9190612c4f565b34101561188a5760405162461bcd60e51b81526004016108d290612b45565b600061189560085490565b60125490915060ff16806118b35750600a546001600160a01b031633145b6118ff5760405162461bcd60e51b815260206004820152601a60248201527f7075626c69632073616c65206973206e6f7420656e61626c656400000000000060448201526064016108d2565b60015b8581116119665761191787610ac08385612c23565b6001600160a01b03871660009081526014602052604090205461193b908790612c23565b6001600160a01b0388166000908152601460205260409020558061195e81612cec565b915050611902565b50505050505050565b600a546001600160a01b031633146119995760405162461bcd60e51b81526004016108d290612a72565b80516111f090600c90602084019061242f565b600a546001600160a01b031633146119d65760405162461bcd60e51b81526004016108d290612a72565b6001600160a01b038116611a3b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d2565b611a4481611dc7565b50565b3b151590565b6111f0828260405180602001604052806000815250611f59565b60006001600160e01b031982166380ac58cd60e01b1480611a9857506001600160e01b03198216635b5e139f60e01b145b80610b4357506301ffc9a760e01b6001600160e01b0319831614610b43565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aec826111f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b9e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d2565b6000611ba9836111f4565b9050806001600160a01b0316846001600160a01b03161480611be45750836001600160a01b0316611bd984610c6d565b6001600160a01b0316145b80611c1457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c2f826111f4565b6001600160a01b031614611c975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d2565b6001600160a01b038216611cf95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d2565b611d04838383611f8c565b611d0f600082611ab7565b6001600160a01b0383166000908152600360205260408120805460019290611d38908490612c6e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d66908490612c23565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e24848484611c1c565b611e3084848484612044565b6116395760405162461bcd60e51b81526004016108d2906129de565b6060600b8054610bea90612cb1565b606081611e7f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ea95780611e9381612cec565b9150611ea29050600a83612c3b565b9150611e83565b60008167ffffffffffffffff811115611ec457611ec4612d73565b6040519080825280601f01601f191660200182016040528015611eee576020820181803683370190505b5090505b8415611c1457611f03600183612c6e565b9150611f10600a86612d07565b611f1b906030612c23565b60f81b818381518110611f3057611f30612d5d565b60200101906001600160f81b031916908160001a905350611f52600a86612c3b565b9450611ef2565b611f638383612151565b611f706000848484612044565b610e135760405162461bcd60e51b81526004016108d2906129de565b6001600160a01b038316611fe757611fe281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61200a565b816001600160a01b0316836001600160a01b03161461200a5761200a838261229f565b6001600160a01b03821661202157610e138161233c565b826001600160a01b0316826001600160a01b031614610e1357610e1382826123eb565b60006001600160a01b0384163b1561214657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061208890339089908890889060040161294a565b602060405180830381600087803b1580156120a257600080fd5b505af19250505080156120d2575060408051601f3d908101601f191682019092526120cf918101906127a6565b60015b61212c573d808015612100576040519150601f19603f3d011682016040523d82523d6000602084013e612105565b606091505b5080516121245760405162461bcd60e51b81526004016108d2906129de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c14565b506001949350505050565b6001600160a01b0382166121a75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d2565b6000818152600260205260409020546001600160a01b03161561220c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d2565b61221860008383611f8c565b6001600160a01b0382166000908152600360205260408120805460019290612241908490612c23565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122ac846112f9565b6122b69190612c6e565b600083815260076020526040902054909150808214612309576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061234e90600190612c6e565b6000838152600960205260408120546008805493945090928490811061237657612376612d5d565b90600052602060002001549050806008838154811061239757612397612d5d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123cf576123cf612d47565b6001900381819060005260206000200160009055905550505050565b60006123f6836112f9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461243b90612cb1565b90600052602060002090601f01602090048101928261245d57600085556124a3565b82601f1061247657805160ff19168380011785556124a3565b828001600101855582156124a3579182015b828111156124a3578251825591602001919060010190612488565b506124af9291506124b3565b5090565b5b808211156124af57600081556001016124b4565b600067ffffffffffffffff808411156124e3576124e3612d73565b604051601f8501601f19908116603f0116810190828211818310171561250b5761250b612d73565b8160405280935085815286868601111561252457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461255557600080fd5b919050565b8035801515811461255557600080fd5b600082601f83011261257b57600080fd5b611767838335602085016124c8565b60006020828403121561259c57600080fd5b6117678261253e565b600080604083850312156125b857600080fd5b6125c18361253e565b91506125cf6020840161253e565b90509250929050565b6000806000606084860312156125ed57600080fd5b6125f68461253e565b92506126046020850161253e565b9150604084013590509250925092565b6000806000806080858703121561262a57600080fd5b6126338561253e565b93506126416020860161253e565b925060408501359150606085013567ffffffffffffffff81111561266457600080fd5b6126708782880161256a565b91505092959194509250565b6000806040838503121561268f57600080fd5b6126988361253e565b91506125cf6020840161255a565b600080604083850312156126b957600080fd5b6126c28361253e565b946020939093013593505050565b6000806000606084860312156126e557600080fd5b6126ee8461253e565b925060208401359150604084013567ffffffffffffffff81111561271157600080fd5b61271d8682870161256a565b9150509250925092565b60006020828403121561273957600080fd5b6117678261255a565b6000806040838503121561275557600080fd5b82359150602083013567ffffffffffffffff81111561277357600080fd5b61277f8582860161256a565b9150509250929050565b60006020828403121561279b57600080fd5b813561176781612d89565b6000602082840312156127b857600080fd5b815161176781612d89565b6000602082840312156127d557600080fd5b813567ffffffffffffffff8111156127ec57600080fd5b611c148482850161256a565b60006020828403121561280a57600080fd5b813567ffffffffffffffff81111561282157600080fd5b8201601f8101841361283257600080fd5b611c14848235602084016124c8565b60006020828403121561285357600080fd5b5035919050565b60008151808452612872816020860160208601612c85565b601f01601f19169290920160200192915050565b6000845160206128998285838a01612c85565b8551918401916128ac8184848a01612c85565b8554920191600090600181811c90808316806128c957607f831692505b8583108114156128e757634e487b7160e01b85526022600452602485fd5b8080156128fb576001811461290c57612939565b60ff19851688528388019550612939565b60008b81526020902060005b858110156129315781548a820152908401908801612918565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061297d9083018461285a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129bf578351835292840192918401916001016129a3565b50909695505050505050565b602081526000611767602083018461285a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f6d696e7420616d6f756e74206d7573742062652067726561746572207468616e604082015261020360f41b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f6d696e7420616d6f756e742063616e6e6f7420657863656564206d617820616d60408201526c1bdd5b9d081c195c881b5a5b9d609a1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526031908201527f65746865722076616c7565206d7573742062652067726561746572206f7220656040820152701c5d585b0818dbdcdd081d1bc81b5a5b9d607a1b606082015260800190565b60208082526024908201527f6d696e7420616d6f756e742063616e6e6f7420657863656564206d617820737560408201526370706c7960e01b606082015260800190565b60208082526029908201527f63616e6e6f7420657863656564206d6178206d696e74207065722077616c6c6560408201526874206164647265737360b81b606082015260800190565b60008219821115612c3657612c36612d1b565b500190565b600082612c4a57612c4a612d31565b500490565b6000816000190483118215151615612c6957612c69612d1b565b500290565b600082821015612c8057612c80612d1b565b500390565b60005b83811015612ca0578181015183820152602001612c88565b838111156116395750506000910152565b600181811c90821680612cc557607f821691505b60208210811415612ce657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d0057612d00612d1b565b5060010190565b600082612d1657612d16612d31565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a4457600080fdfea26469706673582212201def8e22480d0185786501f13c8331cc304e29a52d75b5111fac612550dbe39d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a79873d7039c93f3a90dcb7abd0606b1fa564a8900000000000000000000000000000000000000000000000000000000000000104d7574616e742050756e6b73204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d504e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e697066732e696f2f69706e732f6b3531717a6935757175356468316b6a32753768633078376b6e3372766c64336b6f676f636b6f38776e35756b3336767a6261796169377979646d6570652f00000000

-----Decoded View---------------
Arg [0] : _name (string): Mutant Punks NFT
Arg [1] : _symbol (string): MPNFT
Arg [2] : _initBaseURI (string): https://gateway.ipfs.io/ipns/k51qzi5uqu5dh1kj2u7hc0x7kn3rvld3kogocko8wn5uk36vzbayai7yydmepe/
Arg [3] : _initSignerAddress (address): 0xa79873d7039C93f3a90DcB7ABD0606B1fa564A89

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000a79873d7039c93f3a90dcb7abd0606b1fa564a89
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4d7574616e742050756e6b73204e465400000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4d504e4654000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [9] : 68747470733a2f2f676174657761792e697066732e696f2f69706e732f6b3531
Arg [10] : 717a6935757175356468316b6a32753768633078376b6e3372766c64336b6f67
Arg [11] : 6f636b6f38776e35756b3336767a6261796169377979646d6570652f00000000


Deployed Bytecode Sourcemap

45109:6389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47338:519;;;;;;:::i;:::-;;:::i;:::-;;36338:300;;;;;;;;;;-1:-1:-1;36338:300:0;;;;;:::i;:::-;;:::i;:::-;;;9112:14:1;;9105:22;9087:41;;9075:2;9060:18;36338:300:0;;;;;;;;49481:122;;;;;;;;;;-1:-1:-1;49481:122:0;;;;;:::i;:::-;;:::i;50180:126::-;;;;;;;;;;-1:-1:-1;50180:126:0;;;;;:::i;:::-;;:::i;23502:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25195:308::-;;;;;;;;;;-1:-1:-1;25195:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7773:32:1;;;7755:51;;7743:2;7728:18;25195:308:0;7609:203:1;24718:411:0;;;;;;;;;;-1:-1:-1;24718:411:0;;;;;:::i;:::-;;:::i;45311:30::-;;;;;;;;;;;;;;;;;;;20302:25:1;;;20290:2;20275:18;45311:30:0;20156:177:1;45512:34:0;;;;;;;;;;-1:-1:-1;45512:34:0;;;;;;;;;;;37141:113;;;;;;;;;;-1:-1:-1;37229:10:0;:17;37141:113;;49366:107;;;;;;;;;;;;;:::i;45603:51::-;;;;;;;;;;-1:-1:-1;45603:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;49108:138;;;;;;;;;;-1:-1:-1;49108:138:0;;;;;:::i;:::-;;:::i;26254:376::-;;;;;;;;;;-1:-1:-1;26254:376:0;;;;;:::i;:::-;;:::i;45387:35::-;;;;;;;;;;;;;;;;36722:343;;;;;;;;;;-1:-1:-1;36722:343:0;;;;;:::i;:::-;;:::i;50066:106::-;;;;;;;;;;-1:-1:-1;50066:106:0;;;;;:::i;:::-;;:::i;50314:120::-;;;:::i;26701:185::-;;;;;;;;;;-1:-1:-1;26701:185:0;;;;;:::i;:::-;;:::i;47888:358::-;;;;;;;;;;-1:-1:-1;47888:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48872:86::-;;;;;;;;;;-1:-1:-1;48872:86:0;;;;;:::i;:::-;;:::i;49959:99::-;;;;;;;;;;-1:-1:-1;49959:99:0;;;;;:::i;:::-;;:::i;37331:320::-;;;;;;;;;;-1:-1:-1;37331:320:0;;;;;:::i;:::-;;:::i;49254:104::-;;;;;;;;;;-1:-1:-1;49254:104:0;;;;;:::i;:::-;;:::i;45429:36::-;;;;;;;;;;;;;;;;23109:326;;;;;;;;;;-1:-1:-1;23109:326:0;;;;;:::i;:::-;;:::i;45203:21::-;;;;;;;;;;;;;:::i;22752:295::-;;;;;;;;;;-1:-1:-1;22752:295:0;;;;;:::i;:::-;;:::i;44416:94::-;;;;;;;;;;;;;:::i;49747:97::-;;;;;;;;;;-1:-1:-1;49747:97:0;;;;;:::i;:::-;;:::i;43765:87::-;;;;;;;;;;-1:-1:-1;43838:6:0;;-1:-1:-1;;;;;43838:6:0;43765:87;;50502:214;;;;;;;;;;-1:-1:-1;50502:214:0;;;;;:::i;:::-;;:::i;23671:104::-;;;;;;;;;;;;;:::i;50724:241::-;;;;;;;;;;-1:-1:-1;50724:241:0;;;;;:::i;:::-;;:::i;45472:33::-;;;;;;;;;;-1:-1:-1;45472:33:0;;;;;;;;25575:327;;;;;;;;;;-1:-1:-1;25575:327:0;;;;;:::i;:::-;;:::i;50973:522::-;;;;;;;;;;-1:-1:-1;50973:522:0;;;;;:::i;:::-;;:::i;:::-;;;;20566:4:1;20554:17;;;20536:36;;20603:2;20588:18;;20581:34;;;;20631:18;;;20624:34;20524:2;20509:18;50973:522:0;20338:326:1;48966:134:0;;;;;;;;;;-1:-1:-1;48966:134:0;;;;;:::i;:::-;;:::i;26957:365::-;;;;;;;;;;-1:-1:-1;26957:365:0;;;;;:::i;:::-;;:::i;49852:99::-;;;;;;;;;;-1:-1:-1;49852:99:0;;;;;:::i;:::-;;:::i;45231:37::-;;;;;;;;;;;;;:::i;48254:592::-;;;;;;;;;;-1:-1:-1;48254:592:0;;;;;:::i;:::-;;:::i;46884:429::-;;;;;;:::i;:::-;;:::i;45348:32::-;;;;;;;;;;;;;;;;45553:43;;;;;;;;;;-1:-1:-1;45553:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49611:128;;;;;;;;;;-1:-1:-1;49611:128:0;;;;;:::i;:::-;;:::i;25973:214::-;;;;;;;;;;-1:-1:-1;25973:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26144:25:0;;;26115:4;26144:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25973:214;44665:229;;;;;;;;;;-1:-1:-1;44665:229:0;;;;;:::i;:::-;;:::i;47338:519::-;47444:3;47449:11;46179:14;46196:13;37229:10;:17;;37141:113;46196:13;46179:30;;46242:1;46228:11;:15;46220:62;;;;-1:-1:-1;;;46220:62:0;;;;;;;:::i;:::-;;;;;;;;;46325:9;;46301:20;46310:11;46301:6;:20;:::i;:::-;:33;;46293:82;;;;-1:-1:-1;;;46293:82:0;;;;;;;:::i;:::-;43838:6;;-1:-1:-1;;;;;43838:6:0;46392:10;:21;46388:449;;46453:16;;46438:11;:31;;46430:89;;;;-1:-1:-1;;;46430:89:0;;;;;;;:::i;:::-;46583:17;;-1:-1:-1;;;;;46543:21:0;;;;;;:16;:21;;;;;;:35;;46567:11;;46543:35;:::i;:::-;46542:58;;46534:112;;;;-1:-1:-1;;;46534:112:0;;;;;;;:::i;:::-;46677:10;46665:23;;;;:11;:23;;;;;;;;:31;;:23;:31;46661:165;;46745:11;46738:4;;:18;;;;:::i;:::-;46725:9;:31;;46717:93;;;;-1:-1:-1;;;46717:93:0;;;;;;;:::i;:::-;47473:14:::1;47490:13;37229:10:::0;:17;;37141:113;47490:13:::1;47522:14;::::0;47473:30;;-1:-1:-1;47522:14:0::1;::::0;::::1;;;47514:50;;;::::0;-1:-1:-1;;;47514:50:0;;13515:2:1;47514:50:0::1;::::0;::::1;13497:21:1::0;13554:2;13534:18;;;13527:30;13593:25;13573:18;;;13566:53;13636:18;;47514:50:0::1;13313:347:1::0;47514:50:0::1;47583:22;47601:3;47583:17;:22::i;:::-;47575:92;;;::::0;-1:-1:-1;;;47575:92:0;;17052:2:1;47575:92:0::1;::::0;::::1;17034:21:1::0;17091:2;17071:18;;;17064:30;17130:34;17110:18;;;17103:62;17201:27;17181:18;;;17174:55;17246:19;;47575:92:0::1;16850:421:1::0;47575:92:0::1;47695:1;47678:172;47703:11;47698:1;:16;47678:172;;47736:26;47746:3:::0;47751:10:::1;47760:1:::0;47751:6;:10:::1;:::i;:::-;47736:9;:26::i;:::-;-1:-1:-1::0;;;;;47802:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;;:35:::1;::::0;47826:11;;47802:35:::1;:::i;:::-;-1:-1:-1::0;;;;;47777:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;:61;47716:3;::::1;::::0;::::1;:::i;:::-;;;;47678:172;;;;47462:395;46168:688:::0;47338:519;;;;;:::o;36338:300::-;36485:4;-1:-1:-1;;;;;;36527:50:0;;-1:-1:-1;;;36527:50:0;;:103;;;36594:36;36618:11;36594:23;:36::i;:::-;36507:123;36338:300;-1:-1:-1;;36338:300:0:o;49481:122::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;49562:13:::1;:33:::0;;-1:-1:-1;;;;;;49562:33:0::1;-1:-1:-1::0;;;;;49562:33:0;;;::::1;::::0;;;::::1;::::0;;49481:122::o;50180:126::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50267:23:0;;::::1;;::::0;;;:16:::1;:23;::::0;;;;:31;50180:126::o;23502:100::-;23556:13;23589:5;23582:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23502:100;:::o;25195:308::-;25316:7;28958:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28958:16:0;25341:110;;;;-1:-1:-1;;;25341:110:0;;15452:2:1;25341:110:0;;;15434:21:1;15491:2;15471:18;;;15464:30;15530:34;15510:18;;;15503:62;-1:-1:-1;;;15581:18:1;;;15574:42;15633:19;;25341:110:0;15250:408:1;25341:110:0;-1:-1:-1;25471:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25471:24:0;;25195:308::o;24718:411::-;24799:13;24815:23;24830:7;24815:14;:23::i;:::-;24799:39;;24863:5;-1:-1:-1;;;;;24857:11:0;:2;-1:-1:-1;;;;;24857:11:0;;;24849:57;;;;-1:-1:-1;;;24849:57:0;;17892:2:1;24849:57:0;;;17874:21:1;17931:2;17911:18;;;17904:30;17970:34;17950:18;;;17943:62;-1:-1:-1;;;18021:18:1;;;18014:31;18062:19;;24849:57:0;17690:397:1;24849:57:0;20887:10;-1:-1:-1;;;;;24941:21:0;;;;:62;;-1:-1:-1;24966:37:0;24983:5;20887:10;25973:214;:::i;24966:37::-;24919:168;;;;-1:-1:-1;;;24919:168:0;;13090:2:1;24919:168:0;;;13072:21:1;13129:2;13109:18;;;13102:30;13168:34;13148:18;;;13141:62;13239:26;13219:18;;;13212:54;13283:19;;24919:168:0;12888:420:1;24919:168:0;25100:21;25109:2;25113:7;25100:8;:21::i;:::-;24788:341;24718:411;;:::o;49366:107::-;43838:6;;49425:7;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;-1:-1:-1;49452:13:0::1;::::0;-1:-1:-1;;;;;49452:13:0::1;49366:107:::0;:::o;49108:138::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;49197:17:::1;:41:::0;49108:138::o;26254:376::-;26463:41;20887:10;26496:7;26463:18;:41::i;:::-;26441:140;;;;-1:-1:-1;;;26441:140:0;;;;;;;:::i;:::-;26594:28;26604:4;26610:2;26614:7;26594:9;:28::i;36722:343::-;36864:7;36919:23;36936:5;36919:16;:23::i;:::-;36911:5;:31;36889:124;;;;-1:-1:-1;;;36889:124:0;;10323:2:1;36889:124:0;;;10305:21:1;10362:2;10342:18;;;10335:30;10401:34;10381:18;;;10374:62;-1:-1:-1;;;10452:18:1;;;10445:41;10503:19;;36889:124:0;10121:407:1;36889:124:0;-1:-1:-1;;;;;;37031:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36722:343::o;50066:106::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50138:18:0::1;50159:5;50138:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;50138:26:0::1;::::0;;50066:106::o;50314:120::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;50378:47:::1;::::0;50386:10:::1;::::0;50403:21:::1;50378:47:::0;::::1;;;::::0;::::1;::::0;;;50403:21;50386:10;50378:47;::::1;;;;;;50370:56;;;::::0;::::1;;50314:120::o:0;26701:185::-;26839:39;26856:4;26862:2;26866:7;26839:39;;;;;;;;;;;;:16;:39::i;47888:358::-;47948:16;47977:23;48003:17;48013:6;48003:9;:17::i;:::-;47977:43;;48031:25;48073:15;48059:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48059:30:0;;48031:58;;48105:9;48100:113;48120:15;48116:1;:19;48100:113;;;48171:30;48191:6;48199:1;48171:19;:30::i;:::-;48157:8;48166:1;48157:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48137:3;;;;:::i;:::-;;;;48100:113;;;-1:-1:-1;48230:8:0;47888:358;-1:-1:-1;;;47888:358:0:o;48872:86::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;48935:4:::1;:15:::0;48872:86::o;49959:99::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50025:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;50025:25:0::1;50046:4;50025:25;::::0;;49959:99::o;37331:320::-;37451:7;37506:30;37229:10;:17;;37141:113;37506:30;37498:5;:38;37476:132;;;;-1:-1:-1;;;37476:132:0;;18712:2:1;37476:132:0;;;18694:21:1;18751:2;18731:18;;;18724:30;18790:34;18770:18;;;18763:62;-1:-1:-1;;;18841:18:1;;;18834:42;18893:19;;37476:132:0;18510:408:1;37476:132:0;37626:10;37637:5;37626:17;;;;;;;;:::i;:::-;;;;;;;;;37619:24;;37331:320;;;:::o;49254:104::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;49329:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49254:104:::0;:::o;23109:326::-;23226:7;23267:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23267:16:0;23316:19;23294:110;;;;-1:-1:-1;;;23294:110:0;;14278:2:1;23294:110:0;;;14260:21:1;14317:2;14297:18;;;14290:30;14356:34;14336:18;;;14329:62;-1:-1:-1;;;14407:18:1;;;14400:39;14456:19;;23294:110:0;14076:405:1;45203:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22752:295::-;22869:7;-1:-1:-1;;;;;22916:19:0;;22894:111;;;;-1:-1:-1;;;22894:111:0;;13867:2:1;22894:111:0;;;13849:21:1;13906:2;13886:18;;;13879:30;13945:34;13925:18;;;13918:62;-1:-1:-1;;;13996:18:1;;;13989:40;14046:19;;22894:111:0;13665:406:1;22894:111:0;-1:-1:-1;;;;;;23023:16:0;;;;;:9;:16;;;;;;;22752:295::o;44416:94::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;44481:21:::1;44499:1;44481:9;:21::i;49747:97::-:0;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;49814:13:::1;:22:::0;;-1:-1:-1;;49814:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49747:97::o;50502:214::-;50613:30;;-1:-1:-1;;20887:10:0;5992:2:1;5988:15;5984:53;50613:30:0;;;5972:66:1;50568:4:0;;;;6054:12:1;;50613:30:0;;;-1:-1:-1;;50613:30:0;;;;;;;;;50603:41;;50613:30;50603:41;;;;50694:13;;50603:41;;-1:-1:-1;;;;;;50694:13:0;50663:27;50603:41;50686:3;50663:13;:27::i;:::-;-1:-1:-1;;;;;50663:44:0;;;50502:214;-1:-1:-1;;;50502:214:0:o;23671:104::-;23727:13;23760:7;23753:14;;;;;:::i;50724:241::-;50803:7;50823;50841:9;50861;50893:19;50908:3;50893:14;:19::i;:::-;50930:27;;;;;;;;;;;;9366:25:1;;;9439:4;9427:17;;9407:18;;;9400:45;;;;9461:18;;;9454:34;;;9504:18;;;9497:34;;;50881:31:0;;-1:-1:-1;50881:31:0;;-1:-1:-1;50881:31:0;-1:-1:-1;50930:27:0;;9338:19:1;;50930:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50930:27:0;;-1:-1:-1;;50930:27:0;;;50724:241;-1:-1:-1;;;;;;;50724:241:0:o;25575:327::-;-1:-1:-1;;;;;25710:24:0;;20887:10;25710:24;;25702:62;;;;-1:-1:-1;;;25702:62:0;;12323:2:1;25702:62:0;;;12305:21:1;12362:2;12342:18;;;12335:30;12401:27;12381:18;;;12374:55;12446:18;;25702:62:0;12121:349:1;25702:62:0;20887:10;25777:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25777:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25777:53:0;;;;;;;;;;25846:48;;9087:41:1;;;25777:42:0;;20887:10;25846:48;;9060:18:1;25846:48:0;;;;;;;25575:327;;:::o;50973:522::-;51036:5;51043:7;51052;51080:3;:10;51094:2;51080:16;51072:25;;;;;;-1:-1:-1;;;51266:2:0;51257:12;;51251:19;51336:2;51327:12;;51321:19;51443:2;51434:12;;;51428:19;51108:9;51420:28;;51251:19;;51321;50973:522::o;48966:134::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;49053:16:::1;:39:::0;48966:134::o;26957:365::-;27146:41;20887:10;27179:7;27146:18;:41::i;:::-;27124:140;;;;-1:-1:-1;;;27124:140:0;;;;;;;:::i;:::-;27275:39;27289:4;27295:2;27299:7;27308:5;27275:13;:39::i;:::-;26957:365;;;;:::o;49852:99::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;49920:14:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;49920:23:0;;::::1;::::0;;;::::1;::::0;;49852:99::o;45231:37::-;;;;;;;:::i;48254:592::-;28934:4;28958:16;;;:7;:16;;;;;;48327:13;;-1:-1:-1;;;;;28958:16:0;48353:113;;;;-1:-1:-1;;;48353:113:0;;16636:2:1;48353:113:0;;;16618:21:1;16675:2;16655:18;;;16648:30;16714:34;16694:18;;;16687:62;-1:-1:-1;;;16765:18:1;;;16758:45;16820:19;;48353:113:0;16434:411:1;48353:113:0;48479:28;48510:10;:8;:10::i;:::-;48479:41;;48582:1;48557:14;48551:28;:32;:287;;;;;;;;;;;;;;;;;48675:14;48716:18;:7;:16;:18::i;:::-;48761:13;48632:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48551:287;48531:307;48254:592;-1:-1:-1;;;48254:592:0:o;46884:429::-;46971:3;46976:11;46179:14;46196:13;37229:10;:17;;37141:113;46196:13;46179:30;;46242:1;46228:11;:15;46220:62;;;;-1:-1:-1;;;46220:62:0;;;;;;;:::i;:::-;46325:9;;46301:20;46310:11;46301:6;:20;:::i;:::-;:33;;46293:82;;;;-1:-1:-1;;;46293:82:0;;;;;;;:::i;:::-;43838:6;;-1:-1:-1;;;;;43838:6:0;46392:10;:21;46388:449;;46453:16;;46438:11;:31;;46430:89;;;;-1:-1:-1;;;46430:89:0;;;;;;;:::i;:::-;46583:17;;-1:-1:-1;;;;;46543:21:0;;;;;;:16;:21;;;;;;:35;;46567:11;;46543:35;:::i;:::-;46542:58;;46534:112;;;;-1:-1:-1;;;46534:112:0;;;;;;;:::i;:::-;46677:10;46665:23;;;;:11;:23;;;;;;;;:31;;:23;:31;46661:165;;46745:11;46738:4;;:18;;;;:::i;:::-;46725:9;:31;;46717:93;;;;-1:-1:-1;;;46717:93:0;;;;;;;:::i;:::-;47005:14:::1;47022:13;37229:10:::0;:17;;37141:113;47022:13:::1;47054;::::0;47005:30;;-1:-1:-1;47054:13:0::1;;::::0;:38:::1;;-1:-1:-1::0;43838:6:0;;-1:-1:-1;;;;;43838:6:0;47071:10:::1;:21;47054:38;47046:77;;;::::0;-1:-1:-1;;;47046:77:0;;9968:2:1;47046:77:0::1;::::0;::::1;9950:21:1::0;10007:2;9987:18;;;9980:30;10046:28;10026:18;;;10019:56;10092:18;;47046:77:0::1;9766:350:1::0;47046:77:0::1;47151:1;47134:172;47159:11;47154:1;:16;47134:172;;47192:26;47202:3:::0;47207:10:::1;47216:1:::0;47207:6;:10:::1;:::i;47192:26::-;-1:-1:-1::0;;;;;47258:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;;:35:::1;::::0;47282:11;;47258:35:::1;:::i;:::-;-1:-1:-1::0;;;;;47233:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;:61;47172:3;::::1;::::0;::::1;:::i;:::-;;;;47134:172;;;;46994:319;46168:688:::0;46884:429;;;;:::o;49611:128::-;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;49698:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;44665:229::-:0;43838:6;;-1:-1:-1;;;;;43838:6:0;20887:10;43985:23;43977:68;;;;-1:-1:-1;;;43977:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44768:22:0;::::1;44746:110;;;::::0;-1:-1:-1;;;44746:110:0;;11154:2:1;44746:110:0::1;::::0;::::1;11136:21:1::0;11193:2;11173:18;;;11166:30;11232:34;11212:18;;;11205:62;-1:-1:-1;;;11283:18:1;;;11276:36;11329:19;;44746:110:0::1;10952:402:1::0;44746:110:0::1;44867:19;44877:8;44867:9;:19::i;:::-;44665:229:::0;:::o;10705:387::-;11028:20;11076:8;;;10705:387::o;29957:110::-;30033:26;30043:2;30047:7;30033:26;;;;;;;;;;;;:9;:26::i;22333:355::-;22480:4;-1:-1:-1;;;;;;22522:40:0;;-1:-1:-1;;;22522:40:0;;:105;;-1:-1:-1;;;;;;;22579:48:0;;-1:-1:-1;;;22579:48:0;22522:105;:158;;;-1:-1:-1;;;;;;;;;;7790:40:0;;;22644:36;7631:207;32992:174;33067:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33067:29:0;-1:-1:-1;;;;;33067:29:0;;;;;;;;:24;;33121:23;33067:24;33121:14;:23::i;:::-;-1:-1:-1;;;;;33112:46:0;;;;;;;;;;;32992:174;;:::o;29163:452::-;29292:4;28958:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28958:16:0;29314:110;;;;-1:-1:-1;;;29314:110:0;;12677:2:1;29314:110:0;;;12659:21:1;12716:2;12696:18;;;12689:30;12755:34;12735:18;;;12728:62;-1:-1:-1;;;12806:18:1;;;12799:42;12858:19;;29314:110:0;12475:408:1;29314:110:0;29435:13;29451:23;29466:7;29451:14;:23::i;:::-;29435:39;;29504:5;-1:-1:-1;;;;;29493:16:0;:7;-1:-1:-1;;;;;29493:16:0;;:64;;;;29550:7;-1:-1:-1;;;;;29526:31:0;:20;29538:7;29526:11;:20::i;:::-;-1:-1:-1;;;;;29526:31:0;;29493:64;:113;;;-1:-1:-1;;;;;;26144:25:0;;;26115:4;26144:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29574:32;29485:122;29163:452;-1:-1:-1;;;;29163:452:0:o;32259:615::-;32432:4;-1:-1:-1;;;;;32405:31:0;:23;32420:7;32405:14;:23::i;:::-;-1:-1:-1;;;;;32405:31:0;;32383:122;;;;-1:-1:-1;;;32383:122:0;;16226:2:1;32383:122:0;;;16208:21:1;16265:2;16245:18;;;16238:30;16304:34;16284:18;;;16277:62;-1:-1:-1;;;16355:18:1;;;16348:39;16404:19;;32383:122:0;16024:405:1;32383:122:0;-1:-1:-1;;;;;32524:16:0;;32516:65;;;;-1:-1:-1;;;32516:65:0;;11918:2:1;32516:65:0;;;11900:21:1;11957:2;11937:18;;;11930:30;11996:34;11976:18;;;11969:62;-1:-1:-1;;;12047:18:1;;;12040:34;12091:19;;32516:65:0;11716:400:1;32516:65:0;32594:39;32615:4;32621:2;32625:7;32594:20;:39::i;:::-;32698:29;32715:1;32719:7;32698:8;:29::i;:::-;-1:-1:-1;;;;;32740:15:0;;;;;;:9;:15;;;;;:20;;32759:1;;32740:15;:20;;32759:1;;32740:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32771:13:0;;;;;;:9;:13;;;;;:18;;32788:1;;32771:13;:18;;32788:1;;32771:18;:::i;:::-;;;;-1:-1:-1;;32800:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32800:21:0;-1:-1:-1;;;;;32800:21:0;;;;;;;;;32839:27;;32800:16;;32839:27;;;;;;;32259:615;;;:::o;44902:173::-;44977:6;;;-1:-1:-1;;;;;44994:17:0;;;-1:-1:-1;;;;;;44994:17:0;;;;;;;45027:40;;44977:6;;;44994:17;44977:6;;45027:40;;44958:16;;45027:40;44947:128;44902:173;:::o;28204:352::-;28361:28;28371:4;28377:2;28381:7;28361:9;:28::i;:::-;28422:48;28445:4;28451:2;28455:7;28464:5;28422:22;:48::i;:::-;28400:148;;;;-1:-1:-1;;;28400:148:0;;;;;;;:::i;45991:108::-;46051:13;46084:7;46077:14;;;;;:::i;8152:723::-;8208:13;8429:10;8425:53;;-1:-1:-1;;8456:10:0;;;;;;;;;;;;-1:-1:-1;;;8456:10:0;;;;;8152:723::o;8425:53::-;8503:5;8488:12;8544:78;8551:9;;8544:78;;8577:8;;;;:::i;:::-;;-1:-1:-1;8600:10:0;;-1:-1:-1;8608:2:0;8600:10;;:::i;:::-;;;8544:78;;;8632:19;8664:6;8654:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8654:17:0;;8632:39;;8682:154;8689:10;;8682:154;;8716:11;8726:1;8716:11;;:::i;:::-;;-1:-1:-1;8785:10:0;8793:2;8785:5;:10;:::i;:::-;8772:24;;:2;:24;:::i;:::-;8759:39;;8742:6;8749;8742:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8742:56:0;;;;;;;;-1:-1:-1;8813:11:0;8822:2;8813:11;;:::i;:::-;;;8682:154;;30294:321;30424:18;30430:2;30434:7;30424:5;:18::i;:::-;30475:54;30506:1;30510:2;30514:7;30523:5;30475:22;:54::i;:::-;30453:154;;;;-1:-1:-1;;;30453:154:0;;;;;;;:::i;38264:589::-;-1:-1:-1;;;;;38470:18:0;;38466:187;;38505:40;38537:7;39680:10;:17;;39653:24;;;;:15;:24;;;;;:44;;;39708:24;;;;;;;;;;;;39576:164;38505:40;38466:187;;;38575:2;-1:-1:-1;;;;;38567:10:0;:4;-1:-1:-1;;;;;38567:10:0;;38563:90;;38594:47;38627:4;38633:7;38594:32;:47::i;:::-;-1:-1:-1;;;;;38667:16:0;;38663:183;;38700:45;38737:7;38700:36;:45::i;38663:183::-;38773:4;-1:-1:-1;;;;;38767:10:0;:2;-1:-1:-1;;;;;38767:10:0;;38763:83;;38794:40;38822:2;38826:7;38794:27;:40::i;33731:980::-;33886:4;-1:-1:-1;;;;;33907:13:0;;11028:20;11076:8;33903:801;;33960:175;;-1:-1:-1;;;33960:175:0;;-1:-1:-1;;;;;33960:36:0;;;;;:175;;20887:10;;34054:4;;34081:7;;34111:5;;33960:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33960:175:0;;;;;;;;-1:-1:-1;;33960:175:0;;;;;;;;;;;;:::i;:::-;;;33939:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34318:13:0;;34314:320;;34361:108;;-1:-1:-1;;;34361:108:0;;;;;;;:::i;34314:320::-;34584:6;34578:13;34569:6;34565:2;34561:15;34554:38;33939:710;-1:-1:-1;;;;;;34199:51:0;-1:-1:-1;;;34199:51:0;;-1:-1:-1;34192:58:0;;33903:801;-1:-1:-1;34688:4:0;33731:980;;;;;;:::o;30951:382::-;-1:-1:-1;;;;;31031:16:0;;31023:61;;;;-1:-1:-1;;;31023:61:0;;15091:2:1;31023:61:0;;;15073:21:1;;;15110:18;;;15103:30;15169:34;15149:18;;;15142:62;15221:18;;31023:61:0;14889:356:1;31023:61:0;28934:4;28958:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28958:16:0;:30;31095:58;;;;-1:-1:-1;;;31095:58:0;;11561:2:1;31095:58:0;;;11543:21:1;11600:2;11580:18;;;11573:30;11639;11619:18;;;11612:58;11687:18;;31095:58:0;11359:352:1;31095:58:0;31166:45;31195:1;31199:2;31203:7;31166:20;:45::i;:::-;-1:-1:-1;;;;;31224:13:0;;;;;;:9;:13;;;;;:18;;31241:1;;31224:13;:18;;31241:1;;31224:18;:::i;:::-;;;;-1:-1:-1;;31253:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31253:21:0;-1:-1:-1;;;;;31253:21:0;;;;;;;;31292:33;;31253:16;;;31292:33;;31253:16;;31292:33;30951:382;;:::o;40367:1002::-;40647:22;40697:1;40672:22;40689:4;40672:16;:22::i;:::-;:26;;;;:::i;:::-;40709:18;40730:26;;;:17;:26;;;;;;40647:51;;-1:-1:-1;40863:28:0;;;40859:328;;-1:-1:-1;;;;;40930:18:0;;40908:19;40930:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40981:30;;;;;;:44;;;41098:30;;:17;:30;;;;;:43;;;40859:328;-1:-1:-1;41283:26:0;;;;:17;:26;;;;;;;;41276:33;;;-1:-1:-1;;;;;41327:18:0;;;;;:12;:18;;;;;:34;;;;;;;41320:41;40367:1002::o;41664:1079::-;41942:10;:17;41917:22;;41942:21;;41962:1;;41942:21;:::i;:::-;41974:18;41995:24;;;:15;:24;;;;;;42368:10;:26;;41917:46;;-1:-1:-1;41995:24:0;;41917:46;;42368:26;;;;;;:::i;:::-;;;;;;;;;42346:48;;42432:11;42407:10;42418;42407:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42512:28;;;:15;:28;;;;;;;:41;;;42684:24;;;;;42677:31;42719:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41735:1008;;;41664:1079;:::o;39154:221::-;39239:14;39256:20;39273:2;39256:16;:20::i;:::-;-1:-1:-1;;;;;39287:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39332:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39154:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;2434:18;2426:6;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:254::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;3052:2;3037:18;;;;3024:32;;-1:-1:-1;;;2808:254:1:o;3067:462::-;3153:6;3161;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3337:2;3326:9;3322:18;3309:32;3299:42;;3392:2;3381:9;3377:18;3364:32;3419:18;3411:6;3408:30;3405:50;;;3451:1;3448;3441:12;3405:50;3474:49;3515:7;3506:6;3495:9;3491:22;3474:49;:::i;:::-;3464:59;;;3067:462;;;;;:::o;3534:180::-;3590:6;3643:2;3631:9;3622:7;3618:23;3614:32;3611:52;;;3659:1;3656;3649:12;3611:52;3682:26;3698:9;3682:26;:::i;3719:388::-;3796:6;3804;3857:2;3845:9;3836:7;3832:23;3828:32;3825:52;;;3873:1;3870;3863:12;3825:52;3909:9;3896:23;3886:33;;3970:2;3959:9;3955:18;3942:32;3997:18;3989:6;3986:30;3983:50;;;4029:1;4026;4019:12;3983:50;4052:49;4093:7;4084:6;4073:9;4069:22;4052:49;:::i;:::-;4042:59;;;3719:388;;;;;:::o;4112:245::-;4170:6;4223:2;4211:9;4202:7;4198:23;4194:32;4191:52;;;4239:1;4236;4229:12;4191:52;4278:9;4265:23;4297:30;4321:5;4297:30;:::i;4362:249::-;4431:6;4484:2;4472:9;4463:7;4459:23;4455:32;4452:52;;;4500:1;4497;4490:12;4452:52;4532:9;4526:16;4551:30;4575:5;4551:30;:::i;4616:320::-;4684:6;4737:2;4725:9;4716:7;4712:23;4708:32;4705:52;;;4753:1;4750;4743:12;4705:52;4793:9;4780:23;4826:18;4818:6;4815:30;4812:50;;;4858:1;4855;4848:12;4812:50;4881:49;4922:7;4913:6;4902:9;4898:22;4881:49;:::i;4941:450::-;5010:6;5063:2;5051:9;5042:7;5038:23;5034:32;5031:52;;;5079:1;5076;5069:12;5031:52;5119:9;5106:23;5152:18;5144:6;5141:30;5138:50;;;5184:1;5181;5174:12;5138:50;5207:22;;5260:4;5252:13;;5248:27;-1:-1:-1;5238:55:1;;5289:1;5286;5279:12;5238:55;5312:73;5377:7;5372:2;5359:16;5354:2;5350;5346:11;5312:73;:::i;5396:180::-;5455:6;5508:2;5496:9;5487:7;5483:23;5479:32;5476:52;;;5524:1;5521;5514:12;5476:52;-1:-1:-1;5547:23:1;;5396:180;-1:-1:-1;5396:180:1:o;5581:257::-;5622:3;5660:5;5654:12;5687:6;5682:3;5675:19;5703:63;5759:6;5752:4;5747:3;5743:14;5736:4;5729:5;5725:16;5703:63;:::i;:::-;5820:2;5799:15;-1:-1:-1;;5795:29:1;5786:39;;;;5827:4;5782:50;;5581:257;-1:-1:-1;;5581:257:1:o;6077:1527::-;6301:3;6339:6;6333:13;6365:4;6378:51;6422:6;6417:3;6412:2;6404:6;6400:15;6378:51;:::i;:::-;6492:13;;6451:16;;;;6514:55;6492:13;6451:16;6536:15;;;6514:55;:::i;:::-;6658:13;;6591:20;;;6631:1;;6718;6740:18;;;;6793;;;;6820:93;;6898:4;6888:8;6884:19;6872:31;;6820:93;6961:2;6951:8;6948:16;6928:18;6925:40;6922:167;;;-1:-1:-1;;;6988:33:1;;7044:4;7041:1;7034:15;7074:4;6995:3;7062:17;6922:167;7105:18;7132:110;;;;7256:1;7251:328;;;;7098:481;;7132:110;-1:-1:-1;;7167:24:1;;7153:39;;7212:20;;;;-1:-1:-1;7132:110:1;;7251:328;20742:1;20735:14;;;20779:4;20766:18;;7346:1;7360:169;7374:8;7371:1;7368:15;7360:169;;;7456:14;;7441:13;;;7434:37;7499:16;;;;7391:10;;7360:169;;;7364:3;;7560:8;7553:5;7549:20;7542:27;;7098:481;-1:-1:-1;7595:3:1;;6077:1527;-1:-1:-1;;;;;;;;;;;6077:1527:1:o;7817:488::-;-1:-1:-1;;;;;8086:15:1;;;8068:34;;8138:15;;8133:2;8118:18;;8111:43;8185:2;8170:18;;8163:34;;;8233:3;8228:2;8213:18;;8206:31;;;8011:4;;8254:45;;8279:19;;8271:6;8254:45;:::i;:::-;8246:53;7817:488;-1:-1:-1;;;;;;7817:488:1:o;8310:632::-;8481:2;8533:21;;;8603:13;;8506:18;;;8625:22;;;8452:4;;8481:2;8704:15;;;;8678:2;8663:18;;;8452:4;8747:169;8761:6;8758:1;8755:13;8747:169;;;8822:13;;8810:26;;8891:15;;;;8856:12;;;;8783:1;8776:9;8747:169;;;-1:-1:-1;8933:3:1;;8310:632;-1:-1:-1;;;;;;8310:632:1:o;9542:219::-;9691:2;9680:9;9673:21;9654:4;9711:44;9751:2;9740:9;9736:18;9728:6;9711:44;:::i;10533:414::-;10735:2;10717:21;;;10774:2;10754:18;;;10747:30;10813:34;10808:2;10793:18;;10786:62;-1:-1:-1;;;10879:2:1;10864:18;;10857:48;10937:3;10922:19;;10533:414::o;14486:398::-;14688:2;14670:21;;;14727:2;14707:18;;;14700:30;14766:34;14761:2;14746:18;;14739:62;-1:-1:-1;;;14832:2:1;14817:18;;14810:32;14874:3;14859:19;;14486:398::o;15663:356::-;15865:2;15847:21;;;15884:18;;;15877:30;15943:34;15938:2;15923:18;;15916:62;16010:2;15995:18;;15663:356::o;17276:409::-;17478:2;17460:21;;;17517:2;17497:18;;;17490:30;17556:34;17551:2;17536:18;;17529:62;-1:-1:-1;;;17622:2:1;17607:18;;17600:43;17675:3;17660:19;;17276:409::o;18092:413::-;18294:2;18276:21;;;18333:2;18313:18;;;18306:30;18372:34;18367:2;18352:18;;18345:62;-1:-1:-1;;;18438:2:1;18423:18;;18416:47;18495:3;18480:19;;18092:413::o;18923:::-;19125:2;19107:21;;;19164:2;19144:18;;;19137:30;19203:34;19198:2;19183:18;;19176:62;-1:-1:-1;;;19269:2:1;19254:18;;19247:47;19326:3;19311:19;;18923:413::o;19341:400::-;19543:2;19525:21;;;19582:2;19562:18;;;19555:30;19621:34;19616:2;19601:18;;19594:62;-1:-1:-1;;;19687:2:1;19672:18;;19665:34;19731:3;19716:19;;19341:400::o;19746:405::-;19948:2;19930:21;;;19987:2;19967:18;;;19960:30;20026:34;20021:2;20006:18;;19999:62;-1:-1:-1;;;20092:2:1;20077:18;;20070:39;20141:3;20126:19;;19746:405::o;20795:128::-;20835:3;20866:1;20862:6;20859:1;20856:13;20853:39;;;20872:18;;:::i;:::-;-1:-1:-1;20908:9:1;;20795:128::o;20928:120::-;20968:1;20994;20984:35;;20999:18;;:::i;:::-;-1:-1:-1;21033:9:1;;20928:120::o;21053:168::-;21093:7;21159:1;21155;21151:6;21147:14;21144:1;21141:21;21136:1;21129:9;21122:17;21118:45;21115:71;;;21166:18;;:::i;:::-;-1:-1:-1;21206:9:1;;21053:168::o;21226:125::-;21266:4;21294:1;21291;21288:8;21285:34;;;21299:18;;:::i;:::-;-1:-1:-1;21336:9:1;;21226:125::o;21356:258::-;21428:1;21438:113;21452:6;21449:1;21446:13;21438:113;;;21528:11;;;21522:18;21509:11;;;21502:39;21474:2;21467:10;21438:113;;;21569:6;21566:1;21563:13;21560:48;;;-1:-1:-1;;21604:1:1;21586:16;;21579:27;21356:258::o;21619:380::-;21698:1;21694:12;;;;21741;;;21762:61;;21816:4;21808:6;21804:17;21794:27;;21762:61;21869:2;21861:6;21858:14;21838:18;21835:38;21832:161;;;21915:10;21910:3;21906:20;21903:1;21896:31;21950:4;21947:1;21940:15;21978:4;21975:1;21968:15;21832:161;;21619:380;;;:::o;22004:135::-;22043:3;-1:-1:-1;;22064:17:1;;22061:43;;;22084:18;;:::i;:::-;-1:-1:-1;22131:1:1;22120:13;;22004:135::o;22144:112::-;22176:1;22202;22192:35;;22207:18;;:::i;:::-;-1:-1:-1;22241:9:1;;22144:112::o;22261:127::-;22322:10;22317:3;22313:20;22310:1;22303:31;22353:4;22350:1;22343:15;22377:4;22374:1;22367:15;22393:127;22454:10;22449:3;22445:20;22442:1;22435:31;22485:4;22482:1;22475:15;22509:4;22506:1;22499:15;22525:127;22586:10;22581:3;22577:20;22574:1;22567:31;22617:4;22614:1;22607:15;22641:4;22638:1;22631:15;22657:127;22718:10;22713:3;22709:20;22706:1;22699:31;22749:4;22746:1;22739:15;22773:4;22770:1;22763:15;22789:127;22850:10;22845:3;22841:20;22838:1;22831:31;22881:4;22878:1;22871:15;22905:4;22902:1;22895:15;22921:131;-1:-1:-1;;;;;;22995:32:1;;22985:43;;22975:71;;23042:1;23039;23032:12

Swarm Source

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