ETH Price: $3,274.11 (-4.00%)
Gas: 9 Gwei

Token

punk remix wtf (PUNX)
 

Overview

Max Total Supply

10,000 PUNX

Holders

959

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 PUNX
0x0df5617c752faf760d504516e19b48571a5bf42e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
punksremix

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
//

//-__ /\\              ,,         -__ /\                                       ,    /\ 
//  ||  \\             ||           || \,                  ' ,        ;       ||   ||  
// /||__|| \\ \\ \\/\\ ||/\  _-_,  /|| /    _-_  \\/\\/\\ \\ \\ /`    \\/\/\ =||= =||= 
// \||__|| || || || || ||_< ||_.   \||/-   || \\ || || || ||  \\      || | |  ||   ||  
//  ||  |, || || || || || |  ~ ||   ||  \  ||/   || || || ||  /\\     || | |  ||   ||  
//_-||-_/  \\/\\ \\ \\ \\,\ ,-_-  _---_-|, \\,/  \\ \\ \\ \\ /  \; <> \\/\\/  \\,  \\, 
//  ||

//2022

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


pragma solidity ^0.8.0;


/**ERC721A import
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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(),".json"))
        : "";
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

library OpenSeaGasFreeListing {
    /**
    @notice Returns whether the operator is an OpenSea proxy for the owner, thus
    allowing it to list without the token owner paying gas.
    @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
    this function returns true.
     */
    function isApprovedForAll(address owner, address operator) internal view returns (bool) {
        ProxyRegistry registry;
        assembly {
            switch chainid()
            case 1 {
                // mainnet
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 4 {
                // rinkeby
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
        }

        return address(registry) != address(0) && (address(registry.proxies(owner)) == operator);
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}


contract punksremix is Ownable, ERC721A, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;

    //punks team need punks
    uint256 public max_punks_team = 150;
    //only 10k punks
    uint256 public immutable max_punks;
    //limits the number of punks per punk address
    uint256 public max_punks_per_owner = 20;
    //token price
    uint256 public TOKEN_PRICE = 0.00 ether;
    //max mints per tx
    uint256 public MAX_MINTS_PER_TX = 10;

    bool public punksale = false;

    string public punkyprovenance;

    //tracks number of punks per owner
    mapping (address => uint) public PunksMinted;

    constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 maxTOKENS_
  ) ERC721A("punk remix wtf","PUNX", maxBatchSize_,collectionSize_) {
    MAX_MINTS_PER_TX = maxBatchSize_;
    max_punks = maxTOKENS_;
    require(
        maxTOKENS_ <= collectionSize_,
        "larger collection size needed"
    );   
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

//mint punks
    function mint_punks(uint256 quantity) external payable callerIsUser nonReentrant {
        require(punksale, "public sale is not live");
        require(totalSupply() + quantity <= max_punks, "invalid quantity: would exceed max supply");
        _checkMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= max_punks_per_owner, "invalid quantity: too many punks");
        require(quantity > 0 && quantity <= MAX_MINTS_PER_TX, "invalid quantity: too many punks");
        require(msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent");
        PunksMinted[msg.sender] = PunksMinted[msg.sender] + quantity;
        require(PunksMinted[msg.sender] <= max_punks_per_owner, "you trying to mint too many punks");

    }
//admin minting function for team tokens
    function teamMint(uint256 quantity) public onlyOwner {
        require(quantity <= max_punks_team, "Can't reserve more than set amount" );
        max_punks_team -= quantity;
        require(totalSupply() + quantity <= max_punks, "invalid quantity: would exceed max supply");
        _safeMint(msg.sender, quantity);
    }

    function togglepunksale() public onlyOwner {
        punksale = !punksale;
    }

    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

    // // metadata URI
    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  } 

    function set_max_punks_per_owner(uint256 _max_punks_per_owner) public onlyOwner() {
    max_punks_per_owner = _max_punks_per_owner;
    }

    function setMAX_MINTS_PER_TX(uint256 _MAX_MINTS_PER_TX) public onlyOwner() {
    MAX_MINTS_PER_TX = _MAX_MINTS_PER_TX;
    }

    function setTOKEN_PRICE(uint256 _TOKEN_PRICE) public onlyOwner() {
    TOKEN_PRICE = _TOKEN_PRICE;
    }

    function set_punky_provenance(string memory provenanceHash) external onlyOwner {
        punkyprovenance = provenanceHash;
    }

    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        return OpenSeaGasFreeListing.isApprovedForAll(owner, operator) || super.isApprovedForAll(owner, operator);
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"maxTOKENS_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PunksMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_punks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_punks_per_owner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_punks_team","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint_punks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"punksale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"punkyprovenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINTS_PER_TX","type":"uint256"}],"name":"setMAX_MINTS_PER_TX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TOKEN_PRICE","type":"uint256"}],"name":"setTOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_punks_per_owner","type":"uint256"}],"name":"set_max_punks_per_owner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"set_punky_provenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglepunksale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000600181905560088190556096600a9081556014600b55600c91909155600d55600e805460ff191690553480156200003c57600080fd5b50604051620030ce380380620030ce8339810160408190526200005f9162000329565b6040518060400160405280600e81526020016d383ab735903932b6b4bc103bba3360911b815250604051806040016040528060048152602001630a0aa9cb60e31b8152508484620000bf620000b96200022f60201b60201c565b62000233565b600081116200012c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200018e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000123565b8351620001a390600290602087019062000283565b508251620001b990600390602086019062000283565b5060a09190915260805250506001600955600d83905560c081905281811115620002265760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000123565b50505062000395565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002919062000358565b90600052602060002090601f016020900481019282620002b5576000855562000300565b82601f10620002d057805160ff191683800117855562000300565b8280016001018555821562000300579182015b8281111562000300578251825591602001919060010190620002e3565b506200030e92915062000312565b5090565b5b808211156200030e576000815560010162000313565b6000806000606084860312156200033f57600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200036d57607f821691505b602082108114156200038f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051612ce6620003e86000396000818161056401528181610c6e0152611326015260008181611b4b01528181611b7501526122ca01526000818161193601526119680152612ce66000f3fe60806040526004361061023b5760003560e01c80638e26b72e1161012e578063c6a91b42116100ab578063de8423001161006f578063de842300146106b9578063e985e9c5146106cc578063e9db1ecc146106ec578063ea007a1114610701578063f2fde38b1461072157600080fd5b8063c6a91b4214610637578063c87b56dd1461064d578063d2d8cb671461066d578063d7224ba014610683578063dc33e6811461069957600080fd5b8063a5920d37116100f2578063a5920d37146105a6578063ac446002146105bb578063acaaaaa3146105d0578063b88d4fde146105ea578063c19d7cc01461060a57600080fd5b80638e26b72e146104d95780639231ab2a146104ef57806395d89b411461053d5780639ac0741f14610552578063a22cb4651461058657600080fd5b806342842e0e116101bc57806364be52871161018057806364be52871461044657806370a0823114610466578063715018a6146104865780637c66b7891461049b5780638da5cb5b146104bb57600080fd5b806342842e0e146103a65780634f4342e2146103c65780634f6ccce7146103e657806355f804b3146104065780636352211e1461042657600080fd5b806323b872dd1161020357806323b872dd1461031057806324eb3426146103305780632d20fb60146103465780632f745c59146103665780632fbba1151461038657600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046127dd565b610741565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107ae565b60405161026c91906129b0565b3480156102a357600080fd5b506102b76102b23660046128ef565b610840565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046127b1565b6108d0565b005b3480156102fd57600080fd5b506001545b60405190815260200161026c565b34801561031c57600080fd5b506102ef61032b3660046126bd565b6109e8565b34801561033c57600080fd5b50610302600a5481565b34801561035257600080fd5b506102ef6103613660046128ef565b6109f3565b34801561037257600080fd5b506103026103813660046127b1565b610a56565b34801561039257600080fd5b506102ef6103a13660046128ef565b610bcf565b3480156103b257600080fd5b506102ef6103c13660046126bd565b610cce565b3480156103d257600080fd5b506102ef6103e13660046128ef565b610ce9565b3480156103f257600080fd5b506103026104013660046128ef565b610d18565b34801561041257600080fd5b506102ef610421366004612834565b610d81565b34801561043257600080fd5b506102b76104413660046128ef565b610db7565b34801561045257600080fd5b506102ef6104613660046128ef565b610dc9565b34801561047257600080fd5b50610302610481366004612667565b610df8565b34801561049257600080fd5b506102ef610e89565b3480156104a757600080fd5b506102ef6104b63660046128ef565b610ebf565b3480156104c757600080fd5b506000546001600160a01b03166102b7565b3480156104e557600080fd5b50610302600b5481565b3480156104fb57600080fd5b5061050f61050a3660046128ef565b610eee565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161026c565b34801561054957600080fd5b5061028a610f0b565b34801561055e57600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000000081565b34801561059257600080fd5b506102ef6105a136600461277e565b610f1a565b3480156105b257600080fd5b5061028a610fdf565b3480156105c757600080fd5b506102ef61106d565b3480156105dc57600080fd5b50600e546102609060ff1681565b3480156105f657600080fd5b506102ef6106053660046126fe565b61114a565b34801561061657600080fd5b50610302610625366004612667565b60106020526000908152604090205481565b34801561064357600080fd5b50610302600d5481565b34801561065957600080fd5b5061028a6106683660046128ef565b611183565b34801561067957600080fd5b50610302600c5481565b34801561068f57600080fd5b5061030260085481565b3480156106a557600080fd5b506103026106b4366004612667565b611250565b6102ef6106c73660046128ef565b61125b565b3480156106d857600080fd5b506102606106e7366004612684565b61138a565b3480156106f857600080fd5b506102ef6113ca565b34801561070d57600080fd5b506102ef61071c3660046128a6565b611408565b34801561072d57600080fd5b506102ef61073c366004612667565b611449565b60006001600160e01b031982166380ac58cd60e01b148061077257506001600160e01b03198216635b5e139f60e01b145b8061078d57506001600160e01b0319821663780e9d6360e01b145b806107a857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107bd90612bc3565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612bc3565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084d826001541190565b6108b45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108db82610db7565b9050806001600160a01b0316836001600160a01b0316141561094a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108ab565b336001600160a01b03821614806109665750610966813361138a565b6109d85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108ab565b6109e38383836114e1565b505050565b6109e383838361153d565b6000546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016108ab90612a0c565b60026009541415610a405760405162461bcd60e51b81526004016108ab90612a94565b6002600955610a4e816118c5565b506001600955565b6000610a6183610df8565b8210610aba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108ab565b6000610ac560015490565b905060008060005b83811015610b6f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b2057805192505b876001600160a01b0316836001600160a01b03161415610b5c5786841415610b4e575093506107a892505050565b83610b5881612bfe565b9450505b5080610b6781612bfe565b915050610acd565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108ab565b6000546001600160a01b03163314610bf95760405162461bcd60e51b81526004016108ab90612a0c565b600a54811115610c565760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b60648201526084016108ab565b80600a6000828254610c689190612b69565b909155507f0000000000000000000000000000000000000000000000000000000000000000905081610c9960015490565b610ca39190612af6565b1115610cc15760405162461bcd60e51b81526004016108ab906129c3565b610ccb3382611aaf565b50565b6109e38383836040518060200160405280600081525061114a565b6000546001600160a01b03163314610d135760405162461bcd60e51b81526004016108ab90612a0c565b600d55565b6000610d2360015490565b8210610d7d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108ab565b5090565b6000546001600160a01b03163314610dab5760405162461bcd60e51b81526004016108ab90612a0c565b6109e3601183836124e8565b6000610dc282611ac9565b5192915050565b6000546001600160a01b03163314610df35760405162461bcd60e51b81526004016108ab90612a0c565b600c55565b60006001600160a01b038216610e645760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108ab565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610eb35760405162461bcd60e51b81526004016108ab90612a0c565b610ebd6000611c73565b565b6000546001600160a01b03163314610ee95760405162461bcd60e51b81526004016108ab90612a0c565b600b55565b60408051808201909152600080825260208201526107a882611ac9565b6060600380546107bd90612bc3565b6001600160a01b038216331415610f735760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108ab565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f8054610fec90612bc3565b80601f016020809104026020016040519081016040528092919081815260200182805461101890612bc3565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b505050505081565b6000546001600160a01b031633146110975760405162461bcd60e51b81526004016108ab90612a0c565b600260095414156110ba5760405162461bcd60e51b81526004016108ab90612a94565b6002600955604051600090339047908381818185875af1925050503d8060008114611101576040519150601f19603f3d011682016040523d82523d6000602084013e611106565b606091505b5050905080610a4e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108ab565b61115584848461153d565b61116184848484611cc3565b61117d5760405162461bcd60e51b81526004016108ab90612a41565b50505050565b6060611190826001541190565b6111f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ab565b60006111fe611dd1565b9050600081511161121e5760405180602001604052806000815250611249565b8061122884611de0565b604051602001611239929190612934565b6040516020818303038152906040525b9392505050565b60006107a882611ede565b3233146112aa5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108ab565b600260095414156112cd5760405162461bcd60e51b81526004016108ab90612a94565b6002600955600e5460ff166113245760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c69766500000000000000000060448201526064016108ab565b7f00000000000000000000000000000000000000000000000000000000000000008161134f60015490565b6113599190612af6565b11156113775760405162461bcd60e51b81526004016108ab906129c3565b61138081611f7c565b610a4e3382611aaf565b6000611396838361211c565b8061124957506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611249565b6000546001600160a01b031633146113f45760405162461bcd60e51b81526004016108ab90612a0c565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146114325760405162461bcd60e51b81526004016108ab90612a0c565b805161144590600f906020840190612568565b5050565b6000546001600160a01b031633146114735760405162461bcd60e51b81526004016108ab90612a0c565b6001600160a01b0381166114d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ab565b610ccb81611c73565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061154882611ac9565b80519091506000906001600160a01b0316336001600160a01b0316148061157f57503361157484610840565b6001600160a01b0316145b8061159157508151611591903361138a565b9050806115fb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108ab565b846001600160a01b031682600001516001600160a01b03161461166f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108ab565b6001600160a01b0384166116d35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108ab565b6116e360008484600001516114e1565b6001600160a01b03851660009081526005602052604081208054600192906117159084906001600160801b0316612b41565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261176191859116612acb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117e9846001612af6565b6000818152600460205260409020549091506001600160a01b031661187b57611813816001541190565b1561187b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816119155760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108ab565b600060016119238484612af6565b61192d9190612b69565b905061195a60017f0000000000000000000000000000000000000000000000000000000000000000612b69565b81111561198f5761198c60017f0000000000000000000000000000000000000000000000000000000000000000612b69565b90505b61199a816001541190565b6119f55760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108ab565b815b818111611a9b576000818152600460205260409020546001600160a01b0316611a89576000611a2582611ac9565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611a9381612bfe565b9150506119f7565b50611aa7816001612af6565b600855505050565b61144582826040518060200160405280600081525061220d565b6040805180820190915260008082526020820152611ae8826001541190565b611b475760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ab565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ba857611b9a7f000000000000000000000000000000000000000000000000000000000000000084612b69565b611ba5906001612af6565b90505b825b818110611c12576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bff57949350505050565b5080611c0a81612bac565b915050611baa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108ab565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d07903390899088908890600401612973565b602060405180830381600087803b158015611d2157600080fd5b505af1925050508015611d51575060408051601f3d908101601f19168201909252611d4e918101906127fa565b60015b611dab573d808015611d7f576040519150601f19603f3d011682016040523d82523d6000602084013e611d84565b606091505b508051611da35760405162461bcd60e51b81526004016108ab90612a41565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc9565b5060015b949350505050565b6060601180546107bd90612bc3565b606081611e045750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e2e5780611e1881612bfe565b9150611e279050600a83612b0e565b9150611e08565b60008167ffffffffffffffff811115611e4957611e49612c6f565b6040519080825280601f01601f191660200182016040528015611e73576020820181803683370190505b5090505b8415611dc957611e88600183612b69565b9150611e95600a86612c19565b611ea0906030612af6565b60f81b818381518110611eb557611eb5612c59565b60200101906001600160f81b031916908160001a905350611ed7600a86612b0e565b9450611e77565b60006001600160a01b038216611f505760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108ab565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081118015611f8e5750600b548111155b611fda5760405162461bcd60e51b815260206004820181905260248201527f696e76616c6964207175616e746974793a20746f6f206d616e792070756e6b7360448201526064016108ab565b600081118015611fec5750600d548111155b6120385760405162461bcd60e51b815260206004820181905260248201527f696e76616c6964207175616e746974793a20746f6f206d616e792070756e6b7360448201526064016108ab565b80600c546120469190612b22565b34146120945760405162461bcd60e51b815260206004820152601a60248201527f77726f6e6720616d6f756e74206f662065746865722073656e7400000000000060448201526064016108ab565b336000908152601060205260409020546120af908290612af6565b336000908152601060205260409020819055600b541015610ccb5760405162461bcd60e51b815260206004820152602160248201527f796f7520747279696e6720746f206d696e7420746f6f206d616e792070756e6b6044820152607360f81b60648201526084016108ab565b6000804660018114612135576004811461215157612169565b73a5409ec958c83c3f309868babaca7c86dcb077c19150612169565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590611dc9575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b1580156121c357600080fd5b505afa1580156121d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121fb9190612817565b6001600160a01b031614949350505050565b6001546001600160a01b0384166122705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108ab565b61227b816001541190565b156122c85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108ab565b7f00000000000000000000000000000000000000000000000000000000000000008311156123435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108ab565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061239f908790612acb565b6001600160801b031681526020018583602001516123bd9190612acb565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124dd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124a16000888488611cc3565b6124bd5760405162461bcd60e51b81526004016108ab90612a41565b816124c781612bfe565b92505080806124d590612bfe565b915050612454565b5060018190556118bd565b8280546124f490612bc3565b90600052602060002090601f016020900481019282612516576000855561255c565b82601f1061252f5782800160ff1982351617855561255c565b8280016001018555821561255c579182015b8281111561255c578235825591602001919060010190612541565b50610d7d9291506125dc565b82805461257490612bc3565b90600052602060002090601f016020900481019282612596576000855561255c565b82601f106125af57805160ff191683800117855561255c565b8280016001018555821561255c579182015b8281111561255c5782518255916020019190600101906125c1565b5b80821115610d7d57600081556001016125dd565b600067ffffffffffffffff8084111561260c5761260c612c6f565b604051601f8501601f19908116603f0116810190828211818310171561263457612634612c6f565b8160405280935085815286868601111561264d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561267957600080fd5b813561124981612c85565b6000806040838503121561269757600080fd5b82356126a281612c85565b915060208301356126b281612c85565b809150509250929050565b6000806000606084860312156126d257600080fd5b83356126dd81612c85565b925060208401356126ed81612c85565b929592945050506040919091013590565b6000806000806080858703121561271457600080fd5b843561271f81612c85565b9350602085013561272f81612c85565b925060408501359150606085013567ffffffffffffffff81111561275257600080fd5b8501601f8101871361276357600080fd5b612772878235602084016125f1565b91505092959194509250565b6000806040838503121561279157600080fd5b823561279c81612c85565b9150602083013580151581146126b257600080fd5b600080604083850312156127c457600080fd5b82356127cf81612c85565b946020939093013593505050565b6000602082840312156127ef57600080fd5b813561124981612c9a565b60006020828403121561280c57600080fd5b815161124981612c9a565b60006020828403121561282957600080fd5b815161124981612c85565b6000806020838503121561284757600080fd5b823567ffffffffffffffff8082111561285f57600080fd5b818501915085601f83011261287357600080fd5b81358181111561288257600080fd5b86602082850101111561289457600080fd5b60209290920196919550909350505050565b6000602082840312156128b857600080fd5b813567ffffffffffffffff8111156128cf57600080fd5b8201601f810184136128e057600080fd5b611dc9848235602084016125f1565b60006020828403121561290157600080fd5b5035919050565b60008151808452612920816020860160208601612b80565b601f01601f19169290920160200192915050565b60008351612946818460208801612b80565b83519083019061295a818360208801612b80565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129a690830184612908565b9695505050505050565b6020815260006112496020830184612908565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b03808316818516808303821115612aed57612aed612c2d565b01949350505050565b60008219821115612b0957612b09612c2d565b500190565b600082612b1d57612b1d612c43565b500490565b6000816000190483118215151615612b3c57612b3c612c2d565b500290565b60006001600160801b0383811690831681811015612b6157612b61612c2d565b039392505050565b600082821015612b7b57612b7b612c2d565b500390565b60005b83811015612b9b578181015183820152602001612b83565b8381111561117d5750506000910152565b600081612bbb57612bbb612c2d565b506000190190565b600181811c90821680612bd757607f821691505b60208210811415612bf857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c1257612c12612c2d565b5060010190565b600082612c2857612c28612c43565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ccb57600080fd5b6001600160e01b031981168114610ccb57600080fdfea2646970667358221220ae6b9eb988b0aae2a185418ada0edc3c55fe6630e915d5359651fdfd3946cda864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80638e26b72e1161012e578063c6a91b42116100ab578063de8423001161006f578063de842300146106b9578063e985e9c5146106cc578063e9db1ecc146106ec578063ea007a1114610701578063f2fde38b1461072157600080fd5b8063c6a91b4214610637578063c87b56dd1461064d578063d2d8cb671461066d578063d7224ba014610683578063dc33e6811461069957600080fd5b8063a5920d37116100f2578063a5920d37146105a6578063ac446002146105bb578063acaaaaa3146105d0578063b88d4fde146105ea578063c19d7cc01461060a57600080fd5b80638e26b72e146104d95780639231ab2a146104ef57806395d89b411461053d5780639ac0741f14610552578063a22cb4651461058657600080fd5b806342842e0e116101bc57806364be52871161018057806364be52871461044657806370a0823114610466578063715018a6146104865780637c66b7891461049b5780638da5cb5b146104bb57600080fd5b806342842e0e146103a65780634f4342e2146103c65780634f6ccce7146103e657806355f804b3146104065780636352211e1461042657600080fd5b806323b872dd1161020357806323b872dd1461031057806324eb3426146103305780632d20fb60146103465780632f745c59146103665780632fbba1151461038657600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b3660046127dd565b610741565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a6107ae565b60405161026c91906129b0565b3480156102a357600080fd5b506102b76102b23660046128ef565b610840565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046127b1565b6108d0565b005b3480156102fd57600080fd5b506001545b60405190815260200161026c565b34801561031c57600080fd5b506102ef61032b3660046126bd565b6109e8565b34801561033c57600080fd5b50610302600a5481565b34801561035257600080fd5b506102ef6103613660046128ef565b6109f3565b34801561037257600080fd5b506103026103813660046127b1565b610a56565b34801561039257600080fd5b506102ef6103a13660046128ef565b610bcf565b3480156103b257600080fd5b506102ef6103c13660046126bd565b610cce565b3480156103d257600080fd5b506102ef6103e13660046128ef565b610ce9565b3480156103f257600080fd5b506103026104013660046128ef565b610d18565b34801561041257600080fd5b506102ef610421366004612834565b610d81565b34801561043257600080fd5b506102b76104413660046128ef565b610db7565b34801561045257600080fd5b506102ef6104613660046128ef565b610dc9565b34801561047257600080fd5b50610302610481366004612667565b610df8565b34801561049257600080fd5b506102ef610e89565b3480156104a757600080fd5b506102ef6104b63660046128ef565b610ebf565b3480156104c757600080fd5b506000546001600160a01b03166102b7565b3480156104e557600080fd5b50610302600b5481565b3480156104fb57600080fd5b5061050f61050a3660046128ef565b610eee565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161026c565b34801561054957600080fd5b5061028a610f0b565b34801561055e57600080fd5b506103027f000000000000000000000000000000000000000000000000000000000000271081565b34801561059257600080fd5b506102ef6105a136600461277e565b610f1a565b3480156105b257600080fd5b5061028a610fdf565b3480156105c757600080fd5b506102ef61106d565b3480156105dc57600080fd5b50600e546102609060ff1681565b3480156105f657600080fd5b506102ef6106053660046126fe565b61114a565b34801561061657600080fd5b50610302610625366004612667565b60106020526000908152604090205481565b34801561064357600080fd5b50610302600d5481565b34801561065957600080fd5b5061028a6106683660046128ef565b611183565b34801561067957600080fd5b50610302600c5481565b34801561068f57600080fd5b5061030260085481565b3480156106a557600080fd5b506103026106b4366004612667565b611250565b6102ef6106c73660046128ef565b61125b565b3480156106d857600080fd5b506102606106e7366004612684565b61138a565b3480156106f857600080fd5b506102ef6113ca565b34801561070d57600080fd5b506102ef61071c3660046128a6565b611408565b34801561072d57600080fd5b506102ef61073c366004612667565b611449565b60006001600160e01b031982166380ac58cd60e01b148061077257506001600160e01b03198216635b5e139f60e01b145b8061078d57506001600160e01b0319821663780e9d6360e01b145b806107a857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107bd90612bc3565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612bc3565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084d826001541190565b6108b45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108db82610db7565b9050806001600160a01b0316836001600160a01b0316141561094a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108ab565b336001600160a01b03821614806109665750610966813361138a565b6109d85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108ab565b6109e38383836114e1565b505050565b6109e383838361153d565b6000546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016108ab90612a0c565b60026009541415610a405760405162461bcd60e51b81526004016108ab90612a94565b6002600955610a4e816118c5565b506001600955565b6000610a6183610df8565b8210610aba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108ab565b6000610ac560015490565b905060008060005b83811015610b6f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b2057805192505b876001600160a01b0316836001600160a01b03161415610b5c5786841415610b4e575093506107a892505050565b83610b5881612bfe565b9450505b5080610b6781612bfe565b915050610acd565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108ab565b6000546001600160a01b03163314610bf95760405162461bcd60e51b81526004016108ab90612a0c565b600a54811115610c565760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b60648201526084016108ab565b80600a6000828254610c689190612b69565b909155507f0000000000000000000000000000000000000000000000000000000000002710905081610c9960015490565b610ca39190612af6565b1115610cc15760405162461bcd60e51b81526004016108ab906129c3565b610ccb3382611aaf565b50565b6109e38383836040518060200160405280600081525061114a565b6000546001600160a01b03163314610d135760405162461bcd60e51b81526004016108ab90612a0c565b600d55565b6000610d2360015490565b8210610d7d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108ab565b5090565b6000546001600160a01b03163314610dab5760405162461bcd60e51b81526004016108ab90612a0c565b6109e3601183836124e8565b6000610dc282611ac9565b5192915050565b6000546001600160a01b03163314610df35760405162461bcd60e51b81526004016108ab90612a0c565b600c55565b60006001600160a01b038216610e645760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108ab565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610eb35760405162461bcd60e51b81526004016108ab90612a0c565b610ebd6000611c73565b565b6000546001600160a01b03163314610ee95760405162461bcd60e51b81526004016108ab90612a0c565b600b55565b60408051808201909152600080825260208201526107a882611ac9565b6060600380546107bd90612bc3565b6001600160a01b038216331415610f735760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108ab565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f8054610fec90612bc3565b80601f016020809104026020016040519081016040528092919081815260200182805461101890612bc3565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b505050505081565b6000546001600160a01b031633146110975760405162461bcd60e51b81526004016108ab90612a0c565b600260095414156110ba5760405162461bcd60e51b81526004016108ab90612a94565b6002600955604051600090339047908381818185875af1925050503d8060008114611101576040519150601f19603f3d011682016040523d82523d6000602084013e611106565b606091505b5050905080610a4e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108ab565b61115584848461153d565b61116184848484611cc3565b61117d5760405162461bcd60e51b81526004016108ab90612a41565b50505050565b6060611190826001541190565b6111f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ab565b60006111fe611dd1565b9050600081511161121e5760405180602001604052806000815250611249565b8061122884611de0565b604051602001611239929190612934565b6040516020818303038152906040525b9392505050565b60006107a882611ede565b3233146112aa5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108ab565b600260095414156112cd5760405162461bcd60e51b81526004016108ab90612a94565b6002600955600e5460ff166113245760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c69766500000000000000000060448201526064016108ab565b7f00000000000000000000000000000000000000000000000000000000000027108161134f60015490565b6113599190612af6565b11156113775760405162461bcd60e51b81526004016108ab906129c3565b61138081611f7c565b610a4e3382611aaf565b6000611396838361211c565b8061124957506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611249565b6000546001600160a01b031633146113f45760405162461bcd60e51b81526004016108ab90612a0c565b600e805460ff19811660ff90911615179055565b6000546001600160a01b031633146114325760405162461bcd60e51b81526004016108ab90612a0c565b805161144590600f906020840190612568565b5050565b6000546001600160a01b031633146114735760405162461bcd60e51b81526004016108ab90612a0c565b6001600160a01b0381166114d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ab565b610ccb81611c73565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061154882611ac9565b80519091506000906001600160a01b0316336001600160a01b0316148061157f57503361157484610840565b6001600160a01b0316145b8061159157508151611591903361138a565b9050806115fb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108ab565b846001600160a01b031682600001516001600160a01b03161461166f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108ab565b6001600160a01b0384166116d35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108ab565b6116e360008484600001516114e1565b6001600160a01b03851660009081526005602052604081208054600192906117159084906001600160801b0316612b41565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261176191859116612acb565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117e9846001612af6565b6000818152600460205260409020549091506001600160a01b031661187b57611813816001541190565b1561187b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816119155760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108ab565b600060016119238484612af6565b61192d9190612b69565b905061195a60017f0000000000000000000000000000000000000000000000000000000000002710612b69565b81111561198f5761198c60017f0000000000000000000000000000000000000000000000000000000000002710612b69565b90505b61199a816001541190565b6119f55760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108ab565b815b818111611a9b576000818152600460205260409020546001600160a01b0316611a89576000611a2582611ac9565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611a9381612bfe565b9150506119f7565b50611aa7816001612af6565b600855505050565b61144582826040518060200160405280600081525061220d565b6040805180820190915260008082526020820152611ae8826001541190565b611b475760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ab565b60007f00000000000000000000000000000000000000000000000000000000000000328310611ba857611b9a7f000000000000000000000000000000000000000000000000000000000000003284612b69565b611ba5906001612af6565b90505b825b818110611c12576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611bff57949350505050565b5080611c0a81612bac565b915050611baa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108ab565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d07903390899088908890600401612973565b602060405180830381600087803b158015611d2157600080fd5b505af1925050508015611d51575060408051601f3d908101601f19168201909252611d4e918101906127fa565b60015b611dab573d808015611d7f576040519150601f19603f3d011682016040523d82523d6000602084013e611d84565b606091505b508051611da35760405162461bcd60e51b81526004016108ab90612a41565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc9565b5060015b949350505050565b6060601180546107bd90612bc3565b606081611e045750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e2e5780611e1881612bfe565b9150611e279050600a83612b0e565b9150611e08565b60008167ffffffffffffffff811115611e4957611e49612c6f565b6040519080825280601f01601f191660200182016040528015611e73576020820181803683370190505b5090505b8415611dc957611e88600183612b69565b9150611e95600a86612c19565b611ea0906030612af6565b60f81b818381518110611eb557611eb5612c59565b60200101906001600160f81b031916908160001a905350611ed7600a86612b0e565b9450611e77565b60006001600160a01b038216611f505760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108ab565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081118015611f8e5750600b548111155b611fda5760405162461bcd60e51b815260206004820181905260248201527f696e76616c6964207175616e746974793a20746f6f206d616e792070756e6b7360448201526064016108ab565b600081118015611fec5750600d548111155b6120385760405162461bcd60e51b815260206004820181905260248201527f696e76616c6964207175616e746974793a20746f6f206d616e792070756e6b7360448201526064016108ab565b80600c546120469190612b22565b34146120945760405162461bcd60e51b815260206004820152601a60248201527f77726f6e6720616d6f756e74206f662065746865722073656e7400000000000060448201526064016108ab565b336000908152601060205260409020546120af908290612af6565b336000908152601060205260409020819055600b541015610ccb5760405162461bcd60e51b815260206004820152602160248201527f796f7520747279696e6720746f206d696e7420746f6f206d616e792070756e6b6044820152607360f81b60648201526084016108ab565b6000804660018114612135576004811461215157612169565b73a5409ec958c83c3f309868babaca7c86dcb077c19150612169565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590611dc9575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b1580156121c357600080fd5b505afa1580156121d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121fb9190612817565b6001600160a01b031614949350505050565b6001546001600160a01b0384166122705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108ab565b61227b816001541190565b156122c85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108ab565b7f00000000000000000000000000000000000000000000000000000000000000328311156123435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108ab565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061239f908790612acb565b6001600160801b031681526020018583602001516123bd9190612acb565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124dd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124a16000888488611cc3565b6124bd5760405162461bcd60e51b81526004016108ab90612a41565b816124c781612bfe565b92505080806124d590612bfe565b915050612454565b5060018190556118bd565b8280546124f490612bc3565b90600052602060002090601f016020900481019282612516576000855561255c565b82601f1061252f5782800160ff1982351617855561255c565b8280016001018555821561255c579182015b8281111561255c578235825591602001919060010190612541565b50610d7d9291506125dc565b82805461257490612bc3565b90600052602060002090601f016020900481019282612596576000855561255c565b82601f106125af57805160ff191683800117855561255c565b8280016001018555821561255c579182015b8281111561255c5782518255916020019190600101906125c1565b5b80821115610d7d57600081556001016125dd565b600067ffffffffffffffff8084111561260c5761260c612c6f565b604051601f8501601f19908116603f0116810190828211818310171561263457612634612c6f565b8160405280935085815286868601111561264d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561267957600080fd5b813561124981612c85565b6000806040838503121561269757600080fd5b82356126a281612c85565b915060208301356126b281612c85565b809150509250929050565b6000806000606084860312156126d257600080fd5b83356126dd81612c85565b925060208401356126ed81612c85565b929592945050506040919091013590565b6000806000806080858703121561271457600080fd5b843561271f81612c85565b9350602085013561272f81612c85565b925060408501359150606085013567ffffffffffffffff81111561275257600080fd5b8501601f8101871361276357600080fd5b612772878235602084016125f1565b91505092959194509250565b6000806040838503121561279157600080fd5b823561279c81612c85565b9150602083013580151581146126b257600080fd5b600080604083850312156127c457600080fd5b82356127cf81612c85565b946020939093013593505050565b6000602082840312156127ef57600080fd5b813561124981612c9a565b60006020828403121561280c57600080fd5b815161124981612c9a565b60006020828403121561282957600080fd5b815161124981612c85565b6000806020838503121561284757600080fd5b823567ffffffffffffffff8082111561285f57600080fd5b818501915085601f83011261287357600080fd5b81358181111561288257600080fd5b86602082850101111561289457600080fd5b60209290920196919550909350505050565b6000602082840312156128b857600080fd5b813567ffffffffffffffff8111156128cf57600080fd5b8201601f810184136128e057600080fd5b611dc9848235602084016125f1565b60006020828403121561290157600080fd5b5035919050565b60008151808452612920816020860160208601612b80565b601f01601f19169290920160200192915050565b60008351612946818460208801612b80565b83519083019061295a818360208801612b80565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129a690830184612908565b9695505050505050565b6020815260006112496020830184612908565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b03808316818516808303821115612aed57612aed612c2d565b01949350505050565b60008219821115612b0957612b09612c2d565b500190565b600082612b1d57612b1d612c43565b500490565b6000816000190483118215151615612b3c57612b3c612c2d565b500290565b60006001600160801b0383811690831681811015612b6157612b61612c2d565b039392505050565b600082821015612b7b57612b7b612c2d565b500390565b60005b83811015612b9b578181015183820152602001612b83565b8381111561117d5750506000910152565b600081612bbb57612bbb612c2d565b506000190190565b600181811c90821680612bd757607f821691505b60208210811415612bf857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c1257612c12612c2d565b5060010190565b600082612c2857612c28612c43565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ccb57600080fd5b6001600160e01b031981168114610ccb57600080fdfea2646970667358221220ae6b9eb988b0aae2a185418ada0edc3c55fe6630e915d5359651fdfd3946cda864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 50
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : maxTOKENS_ (uint256): 10000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710


Deployed Bytecode Sourcemap

46566:4117:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33242:370;;;;;;;;;;-1:-1:-1;33242:370:0;;;;;:::i;:::-;;:::i;:::-;;;7302:14:1;;7295:22;7277:41;;7265:2;7250:18;33242:370:0;;;;;;;;34968:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36501:204::-;;;;;;;;;;-1:-1:-1;36501:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6600:32:1;;;6582:51;;6570:2;6555:18;36501:204:0;6436:203:1;36064:379:0;;;;;;;;;;-1:-1:-1;36064:379:0;;;;;:::i;:::-;;:::i;:::-;;31803:94;;;;;;;;;;-1:-1:-1;31879:12:0;;31803:94;;;20647:25:1;;;20635:2;20620:18;31803:94:0;20501:177:1;37351:142:0;;;;;;;;;;-1:-1:-1;37351:142:0;;;;;:::i;:::-;;:::i;46727:35::-;;;;;;;;;;;;;;;;49172:118;;;;;;;;;;-1:-1:-1;49172:118:0;;;;;:::i;:::-;;:::i;32434:744::-;;;;;;;;;;-1:-1:-1;32434:744:0;;;;;:::i;:::-;;:::i;48632:327::-;;;;;;;;;;-1:-1:-1;48632:327:0;;;;;:::i;:::-;;:::i;37556:157::-;;;;;;;;;;-1:-1:-1;37556:157:0;;;;;:::i;:::-;;:::i;49731:126::-;;;;;;;;;;-1:-1:-1;49731:126:0;;;;;:::i;:::-;;:::i;31966:177::-;;;;;;;;;;-1:-1:-1;31966:177:0;;;;;:::i;:::-;;:::i;49475:100::-;;;;;;;;;;-1:-1:-1;49475:100:0;;;;;:::i;:::-;;:::i;34791:118::-;;;;;;;;;;-1:-1:-1;34791:118:0;;;;;:::i;:::-;;:::i;49865:106::-;;;;;;;;;;-1:-1:-1;49865:106:0;;;;;:::i;:::-;;:::i;33668:211::-;;;;;;;;;;-1:-1:-1;33668:211:0;;;;;:::i;:::-;;:::i;25947:103::-;;;;;;;;;;;;;:::i;49584:139::-;;;;;;;;;;-1:-1:-1;49584:139:0;;;;;:::i;:::-;;:::i;25296:87::-;;;;;;;;;;-1:-1:-1;25342:7:0;25369:6;-1:-1:-1;;;;;25369:6:0;25296:87;;46883:39;;;;;;;;;;;;;;;;50344:147;;;;;;;;;;-1:-1:-1;50344:147:0;;;;;:::i;:::-;;:::i;:::-;;;;20366:13:1;;-1:-1:-1;;;;;20362:39:1;20344:58;;20462:4;20450:17;;;20444:24;20470:18;20440:49;20418:20;;;20411:79;;;;20317:18;50344:147:0;20136:360:1;35123:98:0;;;;;;;;;;;;;:::i;46791:34::-;;;;;;;;;;;;;;;36769:274;;;;;;;;;;-1:-1:-1;36769:274:0;;;;;:::i;:::-;;:::i;47100:29::-;;;;;;;;;;;;;:::i;50497:181::-;;;;;;;;;;;;;:::i;47063:28::-;;;;;;;;;;-1:-1:-1;47063:28:0;;;;;;;;37776:311;;;;;;;;;;-1:-1:-1;37776:311:0;;;;;:::i;:::-;;:::i;47178:44::-;;;;;;;;;;-1:-1:-1;47178:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;47018:36;;;;;;;;;;;;;;;;35284:402;;;;;;;;;;-1:-1:-1;35284:402:0;;;;;:::i;:::-;;:::i;46948:39::-;;;;;;;;;;;;;;;;42191:43;;;;;;;;;;;;;;;;49057:107;;;;;;;;;;-1:-1:-1;49057:107:0;;;;;:::i;:::-;;:::i;47714:331::-;;;;;;:::i;:::-;;:::i;50117:219::-;;;;;;;;;;-1:-1:-1;50117:219:0;;;;;:::i;:::-;;:::i;48967:82::-;;;;;;;;;;;;;:::i;49979:130::-;;;;;;;;;;-1:-1:-1;49979:130:0;;;;;:::i;:::-;;:::i;26205:201::-;;;;;;;;;;-1:-1:-1;26205:201:0;;;;;:::i;:::-;;:::i;33242:370::-;33369:4;-1:-1:-1;;;;;;33399:40:0;;-1:-1:-1;;;33399:40:0;;:99;;-1:-1:-1;;;;;;;33450:48:0;;-1:-1:-1;;;33450:48:0;33399:99;:160;;;-1:-1:-1;;;;;;;33509:50:0;;-1:-1:-1;;;33509:50:0;33399:160;:207;;;-1:-1:-1;;;;;;;;;;12018:40:0;;;33570:36;33385:221;33242:370;-1:-1:-1;;33242:370:0:o;34968:94::-;35022:13;35051:5;35044:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34968:94;:::o;36501:204::-;36569:7;36593:16;36601:7;38413:12;;-1:-1:-1;38403:22:0;38326:105;36593:16;36585:74;;;;-1:-1:-1;;;36585:74:0;;19521:2:1;36585:74:0;;;19503:21:1;19560:2;19540:18;;;19533:30;19599:34;19579:18;;;19572:62;-1:-1:-1;;;19650:18:1;;;19643:43;19703:19;;36585:74:0;;;;;;;;;-1:-1:-1;36675:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36675:24:0;;36501:204::o;36064:379::-;36133:13;36149:24;36165:7;36149:15;:24::i;:::-;36133:40;;36194:5;-1:-1:-1;;;;;36188:11:0;:2;-1:-1:-1;;;;;36188:11:0;;;36180:58;;;;-1:-1:-1;;;36180:58:0;;15238:2:1;36180:58:0;;;15220:21:1;15277:2;15257:18;;;15250:30;15316:34;15296:18;;;15289:62;-1:-1:-1;;;15367:18:1;;;15360:32;15409:19;;36180:58:0;15036:398:1;36180:58:0;24100:10;-1:-1:-1;;;;;36263:21:0;;;;:62;;-1:-1:-1;36288:37:0;36305:5;24100:10;50117:219;:::i;36288:37::-;36247:153;;;;-1:-1:-1;;;36247:153:0;;11276:2:1;36247:153:0;;;11258:21:1;11315:2;11295:18;;;11288:30;11354:34;11334:18;;;11327:62;11425:27;11405:18;;;11398:55;11470:19;;36247:153:0;11074:421:1;36247:153:0;36409:28;36418:2;36422:7;36431:5;36409:8;:28::i;:::-;36126:317;36064:379;;:::o;37351:142::-;37459:28;37469:4;37475:2;37479:7;37459:9;:28::i;49172:118::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;28576:1:::1;29174:7;;:19;;29166:63;;;;-1:-1:-1::0;;;29166:63:0::1;;;;;;;:::i;:::-;28576:1;29307:7;:18:::0;49256:28:::2;49275:8:::0;49256:18:::2;:28::i;:::-;-1:-1:-1::0;28532:1:0::1;29486:7;:22:::0;49172:118::o;32434:744::-;32543:7;32578:16;32588:5;32578:9;:16::i;:::-;32570:5;:24;32562:71;;;;-1:-1:-1;;;32562:71:0;;7755:2:1;32562:71:0;;;7737:21:1;7794:2;7774:18;;;7767:30;7833:34;7813:18;;;7806:62;-1:-1:-1;;;7884:18:1;;;7877:32;7926:19;;32562:71:0;7553:398:1;32562:71:0;32640:22;32665:13;31879:12;;;31803:94;32665:13;32640:38;;32685:19;32715:25;32765:9;32760:350;32784:14;32780:1;:18;32760:350;;;32814:31;32848:14;;;:11;:14;;;;;;;;;32814:48;;;;;;;;;-1:-1:-1;;;;;32814:48:0;;;;;-1:-1:-1;;;32814:48:0;;;;;;;;;;;;32875:28;32871:89;;32936:14;;;-1:-1:-1;32871:89:0;32993:5;-1:-1:-1;;;;;32972:26:0;:17;-1:-1:-1;;;;;32972:26:0;;32968:135;;;33030:5;33015:11;:20;33011:59;;;-1:-1:-1;33057:1:0;-1:-1:-1;33050:8:0;;-1:-1:-1;;;33050:8:0;33011:59;33080:13;;;;:::i;:::-;;;;32968:135;-1:-1:-1;32800:3:0;;;;:::i;:::-;;;;32760:350;;;-1:-1:-1;33116:56:0;;-1:-1:-1;;;33116:56:0;;17568:2:1;33116:56:0;;;17550:21:1;17607:2;17587:18;;;17580:30;17646:34;17626:18;;;17619:62;-1:-1:-1;;;17697:18:1;;;17690:44;17751:19;;33116:56:0;17366:410:1;48632:327:0;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;48716:14:::1;;48704:8;:26;;48696:74;;;::::0;-1:-1:-1;;;48696:74:0;;13284:2:1;48696:74:0::1;::::0;::::1;13266:21:1::0;13323:2;13303:18;;;13296:30;13362:34;13342:18;;;13335:62;-1:-1:-1;;;13413:18:1;;;13406:32;13455:19;;48696:74:0::1;13082:398:1::0;48696:74:0::1;48799:8;48781:14;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48854:9:0::1;::::0;-1:-1:-1;48842:8:0;48826:13:::1;31879:12:::0;;;31803:94;48826:13:::1;:24;;;;:::i;:::-;:37;;48818:91;;;;-1:-1:-1::0;;;48818:91:0::1;;;;;;;:::i;:::-;48920:31;48930:10;48942:8;48920:9;:31::i;:::-;48632:327:::0;:::o;37556:157::-;37668:39;37685:4;37691:2;37695:7;37668:39;;;;;;;;;;;;:16;:39::i;49731:126::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;49813:16:::1;:36:::0;49731:126::o;31966:177::-;32033:7;32065:13;31879:12;;;31803:94;32065:13;32057:5;:21;32049:69;;;;-1:-1:-1;;;32049:69:0;;9689:2:1;32049:69:0;;;9671:21:1;9728:2;9708:18;;;9701:30;9767:34;9747:18;;;9740:62;-1:-1:-1;;;9818:18:1;;;9811:33;9861:19;;32049:69:0;9487:399:1;32049:69:0;-1:-1:-1;32132:5:0;31966:177::o;49475:100::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;49546:23:::1;:13;49562:7:::0;;49546:23:::1;:::i;34791:118::-:0;34855:7;34878:20;34890:7;34878:11;:20::i;:::-;:25;;34791:118;-1:-1:-1;;34791:118:0:o;49865:106::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;49937:11:::1;:26:::0;49865:106::o;33668:211::-;33732:7;-1:-1:-1;;;;;33756:19:0;;33748:75;;;;-1:-1:-1;;;33748:75:0;;12465:2:1;33748:75:0;;;12447:21:1;12504:2;12484:18;;;12477:30;12543:34;12523:18;;;12516:62;-1:-1:-1;;;12594:18:1;;;12587:41;12645:19;;33748:75:0;12263:407:1;33748:75:0;-1:-1:-1;;;;;;33845:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33845:27:0;;33668:211::o;25947:103::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;26012:30:::1;26039:1;26012:18;:30::i;:::-;25947:103::o:0;49584:139::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;49673:19:::1;:42:::0;49584:139::o;50344:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;50465:20:0;50477:7;50465:11;:20::i;35123:98::-;35179:13;35208:7;35201:14;;;;;:::i;36769:274::-;-1:-1:-1;;;;;36860:24:0;;24100:10;36860:24;;36852:63;;;;-1:-1:-1;;;36852:63:0;;14464:2:1;36852:63:0;;;14446:21:1;14503:2;14483:18;;;14476:30;14542:28;14522:18;;;14515:56;14588:18;;36852:63:0;14262:350:1;36852:63:0;24100:10;36924:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36924:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36924:53:0;;;;;;;;;;36989:48;;7277:41:1;;;36924:42:0;;24100:10;36989:48;;7250:18:1;36989:48:0;;;;;;;36769:274;;:::o;47100:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50497:181::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;28576:1:::1;29174:7;;:19;;29166:63;;;;-1:-1:-1::0;;;29166:63:0::1;;;;;;;:::i;:::-;28576:1;29307:7;:18:::0;50580:49:::2;::::0;50562:12:::2;::::0;50580:10:::2;::::0;50603:21:::2;::::0;50562:12;50580:49;50562:12;50580:49;50603:21;50580:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50561:68;;;50644:7;50636:36;;;::::0;-1:-1:-1;;;50636:36:0;;15641:2:1;50636:36:0::2;::::0;::::2;15623:21:1::0;15680:2;15660:18;;;15653:30;-1:-1:-1;;;15699:18:1;;;15692:46;15755:18;;50636:36:0::2;15439:340:1::0;37776:311:0;37913:28;37923:4;37929:2;37933:7;37913:9;:28::i;:::-;37964:48;37987:4;37993:2;37997:7;38006:5;37964:22;:48::i;:::-;37948:133;;;;-1:-1:-1;;;37948:133:0;;;;;;;:::i;:::-;37776:311;;;;:::o;35284:402::-;35382:13;35423:16;35431:7;38413:12;;-1:-1:-1;38403:22:0;38326:105;35423:16;35407:97;;;;-1:-1:-1;;;35407:97:0;;14048:2:1;35407:97:0;;;14030:21:1;14087:2;14067:18;;;14060:30;14126:34;14106:18;;;14099:62;-1:-1:-1;;;14177:18:1;;;14170:45;14232:19;;35407:97:0;13846:411:1;35407:97:0;35513:21;35537:10;:8;:10::i;:::-;35513:34;;35592:1;35574:7;35568:21;:25;:112;;;;;;;;;;;;;;;;;35629:7;35638:18;:7;:16;:18::i;:::-;35612:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35568:112;35554:126;35284:402;-1:-1:-1;;;35284:402:0:o;49057:107::-;49115:7;49138:20;49152:5;49138:13;:20::i;47714:331::-;47620:9;47633:10;47620:23;47612:66;;;;-1:-1:-1;;;47612:66:0;;10917:2:1;47612:66:0;;;10899:21:1;10956:2;10936:18;;;10929:30;10995:32;10975:18;;;10968:60;11045:18;;47612:66:0;10715:354:1;47612:66:0;28576:1:::1;29174:7;;:19;;29166:63;;;;-1:-1:-1::0;;;29166:63:0::1;;;;;;;:::i;:::-;28576:1;29307:7;:18:::0;47814:8:::2;::::0;::::2;;47806:44;;;::::0;-1:-1:-1;;;47806:44:0;;8158:2:1;47806:44:0::2;::::0;::::2;8140:21:1::0;8197:2;8177:18;;;8170:30;8236:25;8216:18;;;8209:53;8279:18;;47806:44:0::2;7956:347:1::0;47806:44:0::2;47897:9;47885:8;47869:13;31879:12:::0;;;31803:94;47869:13:::2;:24;;;;:::i;:::-;:37;;47861:91;;;;-1:-1:-1::0;;;47861:91:0::2;;;;;;;:::i;:::-;47963:32;47986:8;47963:22;:32::i;:::-;48006:31;48016:10;48028:8;48006:9;:31::i;50117:219::-:0;50206:4;50230:55;50269:5;50276:8;50230:38;:55::i;:::-;:98;;;-1:-1:-1;;;;;;37251:25:0;;;37228:4;37251:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50289:39;37106:186;48967:82;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;49033:8:::1;::::0;;-1:-1:-1;;49021:20:0;::::1;49033:8;::::0;;::::1;49032:9;49021:20;::::0;;48967:82::o;49979:130::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;50069:32;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49979:130:::0;:::o;26205:201::-;25342:7;25369:6;-1:-1:-1;;;;;25369:6:0;24100:10;25516:23;25508:68;;;;-1:-1:-1;;;25508:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26294:22:0;::::1;26286:73;;;::::0;-1:-1:-1;;;26286:73:0;;8871:2:1;26286:73:0::1;::::0;::::1;8853:21:1::0;8910:2;8890:18;;;8883:30;8949:34;8929:18;;;8922:62;-1:-1:-1;;;9000:18:1;;;8993:36;9046:19;;26286:73:0::1;8669:402:1::0;26286:73:0::1;26370:28;26389:8;26370:18;:28::i;42013:172::-:0;42110:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42110:29:0;-1:-1:-1;;;;;42110:29:0;;;;;;;;;42151:28;;42110:24;;42151:28;;;;;;;42013:172;;;:::o;40378:1529::-;40475:35;40513:20;40525:7;40513:11;:20::i;:::-;40584:18;;40475:58;;-1:-1:-1;40542:22:0;;-1:-1:-1;;;;;40568:34:0;24100:10;-1:-1:-1;;;;;40568:34:0;;:81;;;-1:-1:-1;24100:10:0;40613:20;40625:7;40613:11;:20::i;:::-;-1:-1:-1;;;;;40613:36:0;;40568:81;:142;;;-1:-1:-1;40677:18:0;;40660:50;;24100:10;50117:219;:::i;40660:50::-;40542:169;;40736:17;40720:101;;;;-1:-1:-1;;;40720:101:0;;14819:2:1;40720:101:0;;;14801:21:1;14858:2;14838:18;;;14831:30;14897:34;14877:18;;;14870:62;-1:-1:-1;;;14948:18:1;;;14941:48;15006:19;;40720:101:0;14617:414:1;40720:101:0;40868:4;-1:-1:-1;;;;;40846:26:0;:13;:18;;;-1:-1:-1;;;;;40846:26:0;;40830:98;;;;-1:-1:-1;;;40830:98:0;;12877:2:1;40830:98:0;;;12859:21:1;12916:2;12896:18;;;12889:30;12955:34;12935:18;;;12928:62;-1:-1:-1;;;13006:18:1;;;12999:36;13052:19;;40830:98:0;12675:402:1;40830:98:0;-1:-1:-1;;;;;40943:16:0;;40935:66;;;;-1:-1:-1;;;40935:66:0;;10093:2:1;40935:66:0;;;10075:21:1;10132:2;10112:18;;;10105:30;10171:34;10151:18;;;10144:62;-1:-1:-1;;;10222:18:1;;;10215:35;10267:19;;40935:66:0;9891:401:1;40935:66:0;41110:49;41127:1;41131:7;41140:13;:18;;;41110:8;:49::i;:::-;-1:-1:-1;;;;;41168:18:0;;;;;;:12;:18;;;;;:31;;41198:1;;41168:18;:31;;41198:1;;-1:-1:-1;;;;;41168:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;41168:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41206:16:0;;-1:-1:-1;41206:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;41206:16:0;;:29;;-1:-1:-1;;41206:29:0;;:::i;:::-;;;-1:-1:-1;;;;;41206:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41265:43:0;;;;;;;;-1:-1:-1;;;;;41265:43:0;;;;;;41291:15;41265:43;;;;;;;;;-1:-1:-1;41242:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;41242:66:0;-1:-1:-1;;;;;;41242:66:0;;;;;;;;;;;41558:11;41254:7;-1:-1:-1;41558:11:0;:::i;:::-;41621:1;41580:24;;;:11;:24;;;;;:29;41536:33;;-1:-1:-1;;;;;;41580:29:0;41576:236;;41638:20;41646:11;38413:12;;-1:-1:-1;38403:22:0;38326:105;41638:20;41634:171;;;41698:97;;;;;;;;41725:18;;-1:-1:-1;;;;;41698:97:0;;;;;;41756:28;;;;41698:97;;;;;;;;;;-1:-1:-1;41671:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41671:124:0;-1:-1:-1;;;;;;41671:124:0;;;;;;;;;;;;41634:171;41844:7;41840:2;-1:-1:-1;;;;;41825:27:0;41834:4;-1:-1:-1;;;;;41825:27:0;;;;;;;;;;;41859:42;40468:1439;;;40378:1529;;;:::o;42339:846::-;42429:24;;42468:12;42460:49;;;;-1:-1:-1;;;42460:49:0;;11702:2:1;42460:49:0;;;11684:21:1;11741:2;11721:18;;;11714:30;11780:26;11760:18;;;11753:54;11824:18;;42460:49:0;11500:348:1;42460:49:0;42516:16;42566:1;42535:28;42555:8;42535:17;:28;:::i;:::-;:32;;;;:::i;:::-;42516:51;-1:-1:-1;42589:18:0;42606:1;42589:14;:18;:::i;:::-;42578:8;:29;42574:81;;;42629:18;42646:1;42629:14;:18;:::i;:::-;42618:29;;42574:81;42770:17;42778:8;38413:12;;-1:-1:-1;38403:22:0;38326:105;42770:17;42762:68;;;;-1:-1:-1;;;42762:68:0;;17983:2:1;42762:68:0;;;17965:21:1;18022:2;18002:18;;;17995:30;18061:34;18041:18;;;18034:62;-1:-1:-1;;;18112:18:1;;;18105:36;18158:19;;42762:68:0;17781:402:1;42762:68:0;42854:17;42837:297;42878:8;42873:1;:13;42837:297;;42937:1;42906:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;42906:19:0;42902:225;;42952:31;42986:14;42998:1;42986:11;:14::i;:::-;43028:89;;;;;;;;43055:14;;-1:-1:-1;;;;;43028:89:0;;;;;;43082:24;;;;43028:89;;;;;;;;;;-1:-1:-1;43011:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;43011:106:0;-1:-1:-1;;;;;;43011:106:0;;;;;;;;;;;;-1:-1:-1;42902:225:0;42888:3;;;;:::i;:::-;;;;42837:297;;;-1:-1:-1;43167:12:0;:8;43178:1;43167:12;:::i;:::-;43140:24;:39;-1:-1:-1;;;42339:846:0:o;38437:98::-;38502:27;38512:2;38516:8;38502:27;;;;;;;;;;;;:9;:27::i;34131:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;34248:16:0;34256:7;38413:12;;-1:-1:-1;38403:22:0;38326:105;34248:16;34240:71;;;;-1:-1:-1;;;34240:71:0;;9278:2:1;34240:71:0;;;9260:21:1;9317:2;9297:18;;;9290:30;9356:34;9336:18;;;9329:62;-1:-1:-1;;;9407:18:1;;;9400:40;9457:19;;34240:71:0;9076:406:1;34240:71:0;34320:26;34368:12;34357:7;:23;34353:93;;34412:22;34422:12;34412:7;:22;:::i;:::-;:26;;34437:1;34412:26;:::i;:::-;34391:47;;34353:93;34474:7;34454:212;34491:18;34483:4;:26;34454:212;;34528:31;34562:17;;;:11;:17;;;;;;;;;34528:51;;;;;;;;;-1:-1:-1;;;;;34528:51:0;;;;;-1:-1:-1;;;34528:51:0;;;;;;;;;;;;34592:28;34588:71;;34640:9;34131:606;-1:-1:-1;;;;34131:606:0:o;34588:71::-;-1:-1:-1;34511:6:0;;;;:::i;:::-;;;;34454:212;;;-1:-1:-1;34674:57:0;;-1:-1:-1;;;34674:57:0;;19105:2:1;34674:57:0;;;19087:21:1;19144:2;19124:18;;;19117:30;19183:34;19163:18;;;19156:62;-1:-1:-1;;;19234:18:1;;;19227:45;19289:19;;34674:57:0;18903:411:1;26566:191:0;26640:16;26659:6;;-1:-1:-1;;;;;26676:17:0;;;-1:-1:-1;;;;;;26676:17:0;;;;;;26709:40;;26659:6;;;;;;;26709:40;;26640:16;26709:40;26629:128;26566:191;:::o;43728:690::-;43865:4;-1:-1:-1;;;;;43882:13:0;;2121:19;:23;43878:535;;43921:72;;-1:-1:-1;;;43921:72:0;;-1:-1:-1;;;;;43921:36:0;;;;;:72;;24100:10;;43972:4;;43978:7;;43987:5;;43921:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43921:72:0;;;;;;;;-1:-1:-1;;43921:72:0;;;;;;;;;;;;:::i;:::-;;;43908:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44152:13:0;;44148:215;;44185:61;;-1:-1:-1;;;44185:61:0;;;;;;;:::i;44148:215::-;44331:6;44325:13;44316:6;44312:2;44308:15;44301:38;43908:464;-1:-1:-1;;;;;;44043:55:0;-1:-1:-1;;;44043:55:0;;-1:-1:-1;44036:62:0;;43878:535;-1:-1:-1;44401:4:0;43878:535;43728:690;;;;;;:::o;49359:108::-;49419:13;49448;49441:20;;;;;:::i;19193:723::-;19249:13;19470:10;19466:53;;-1:-1:-1;;19497:10:0;;;;;;;;;;;;-1:-1:-1;;;19497:10:0;;;;;19193:723::o;19466:53::-;19544:5;19529:12;19585:78;19592:9;;19585:78;;19618:8;;;;:::i;:::-;;-1:-1:-1;19641:10:0;;-1:-1:-1;19649:2:0;19641:10;;:::i;:::-;;;19585:78;;;19673:19;19705:6;19695:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19695:17:0;;19673:39;;19723:154;19730:10;;19723:154;;19757:11;19767:1;19757:11;;:::i;:::-;;-1:-1:-1;19826:10:0;19834:2;19826:5;:10;:::i;:::-;19813:24;;:2;:24;:::i;:::-;19800:39;;19783:6;19790;19783:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19783:56:0;;;;;;;;-1:-1:-1;19854:11:0;19863:2;19854:11;;:::i;:::-;;;19723:154;;33885:240;33946:7;-1:-1:-1;;;;;33978:19:0;;33962:102;;;;-1:-1:-1;;;33962:102:0;;10499:2:1;33962:102:0;;;10481:21:1;10538:2;10518:18;;;10511:30;10577:34;10557:18;;;10550:62;-1:-1:-1;;;10628:18:1;;;10621:47;10685:19;;33962:102:0;10297:413:1;33962:102:0;-1:-1:-1;;;;;;34086:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;34086:32:0;;-1:-1:-1;;;;;34086:32:0;;33885:240::o;48053:531::-;48142:1;48131:8;:12;:47;;;;;48159:19;;48147:8;:31;;48131:47;48123:92;;;;-1:-1:-1;;;48123:92:0;;8510:2:1;48123:92:0;;;8492:21:1;;;8529:18;;;8522:30;8588:34;8568:18;;;8561:62;8640:18;;48123:92:0;8308:356:1;48123:92:0;48245:1;48234:8;:12;:44;;;;;48262:16;;48250:8;:28;;48234:44;48226:89;;;;-1:-1:-1;;;48226:89:0;;8510:2:1;48226:89:0;;;8492:21:1;;;8529:18;;;8522:30;8588:34;8568:18;;;8561:62;8640:18;;48226:89:0;8308:356:1;48226:89:0;48361:8;48347:11;;:22;;;;:::i;:::-;48334:9;:35;48326:74;;;;-1:-1:-1;;;48326:74:0;;18750:2:1;48326:74:0;;;18732:21:1;18789:2;18769:18;;;18762:30;18828:28;18808:18;;;18801:56;18874:18;;48326:74:0;18548:350:1;48326:74:0;48449:10;48437:23;;;;:11;:23;;;;;;:34;;48463:8;;48437:34;:::i;:::-;48423:10;48411:23;;;;:11;:23;;;;;:60;;;48517:19;;-1:-1:-1;48490:46:0;48482:92;;;;-1:-1:-1;;;48482:92:0;;17166:2:1;48482:92:0;;;17148:21:1;17205:2;17185:18;;;17178:30;17244:34;17224:18;;;17217:62;-1:-1:-1;;;17295:18:1;;;17288:31;17336:19;;48482:92:0;16964:397:1;45863:565:0;45945:4;45962:22;46026:9;46054:1;46049:123;;;;46191:1;46186:123;;;;46019:290;;46049:123;46115:42;46103:54;;46049:123;;46186;46252:42;46240:54;;46019:290;-1:-1:-1;;;;;;46339:31:0;;;;;;:81;;-1:-1:-1;46383:23:0;;-1:-1:-1;;;46383:23:0;;-1:-1:-1;;;;;6600:32:1;;;46383:23:0;;;6582:51:1;46375:44:0;;;;46383:16;;;;;;6555:18:1;;46383:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46375:44:0;;46332:88;45863:565;-1:-1:-1;;;;45863:565:0:o;38874:1272::-;39002:12;;-1:-1:-1;;;;;39029:16:0;;39021:62;;;;-1:-1:-1;;;39021:62:0;;16764:2:1;39021:62:0;;;16746:21:1;16803:2;16783:18;;;16776:30;16842:34;16822:18;;;16815:62;-1:-1:-1;;;16893:18:1;;;16886:31;16934:19;;39021:62:0;16562:397:1;39021:62:0;39220:21;39228:12;38413;;-1:-1:-1;38403:22:0;38326:105;39220:21;39219:22;39211:64;;;;-1:-1:-1;;;39211:64:0;;16406:2:1;39211:64:0;;;16388:21:1;16445:2;16425:18;;;16418:30;16484:31;16464:18;;;16457:59;16533:18;;39211:64:0;16204:353:1;39211:64:0;39302:12;39290:8;:24;;39282:71;;;;-1:-1:-1;;;39282:71:0;;19935:2:1;39282:71:0;;;19917:21:1;19974:2;19954:18;;;19947:30;20013:34;19993:18;;;19986:62;-1:-1:-1;;;20064:18:1;;;20057:32;20106:19;;39282:71:0;19733:398:1;39282:71:0;-1:-1:-1;;;;;39465:16:0;;39432:30;39465:16;;;:12;:16;;;;;;;;;39432:49;;;;;;;;;-1:-1:-1;;;;;39432:49:0;;;;;-1:-1:-1;;;39432:49:0;;;;;;;;;;;39507:119;;;;;;;;39527:19;;39432:49;;39507:119;;;39527:39;;39557:8;;39527:39;:::i;:::-;-1:-1:-1;;;;;39507:119:0;;;;;39610:8;39575:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;39507:119:0;;;;;;-1:-1:-1;;;;;39488:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;39488:138:0;;;;;;;;;;;;39661:43;;;;;;;;;;;39687:15;39661:43;;;;;;;;39633:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39633:71:0;-1:-1:-1;;;;;;39633:71:0;;;;;;;;;;;;;;;;;;39645:12;;39757:281;39781:8;39777:1;:12;39757:281;;;39810:38;;39835:12;;-1:-1:-1;;;;;39810:38:0;;;39827:1;;39810:38;;39827:1;;39810:38;39875:59;39906:1;39910:2;39914:12;39928:5;39875:22;:59::i;:::-;39857:150;;;;-1:-1:-1;;;39857:150:0;;;;;;;:::i;:::-;40016:14;;;;:::i;:::-;;;;39791:3;;;;;:::i;:::-;;;;39757:281;;;-1:-1:-1;40046:12:0;:27;;;40080:60;37776:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:245::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:30;3505:5;3481:30;:::i;3546:249::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3716:9;3710:16;3735:30;3759:5;3735:30;:::i;3800:280::-;3899:6;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;4000:9;3994:16;4019:31;4044:5;4019:31;:::i;4085:592::-;4156:6;4164;4217:2;4205:9;4196:7;4192:23;4188:32;4185:52;;;4233:1;4230;4223:12;4185:52;4273:9;4260:23;4302:18;4343:2;4335:6;4332:14;4329:34;;;4359:1;4356;4349:12;4329:34;4397:6;4386:9;4382:22;4372:32;;4442:7;4435:4;4431:2;4427:13;4423:27;4413:55;;4464:1;4461;4454:12;4413:55;4504:2;4491:16;4530:2;4522:6;4519:14;4516:34;;;4546:1;4543;4536:12;4516:34;4591:7;4586:2;4577:6;4573:2;4569:15;4565:24;4562:37;4559:57;;;4612:1;4609;4602:12;4559:57;4643:2;4635:11;;;;;4665:6;;-1:-1:-1;4085:592:1;;-1:-1:-1;;;;4085:592:1:o;4682:450::-;4751:6;4804:2;4792:9;4783:7;4779:23;4775:32;4772:52;;;4820:1;4817;4810:12;4772:52;4860:9;4847:23;4893:18;4885:6;4882:30;4879:50;;;4925:1;4922;4915:12;4879:50;4948:22;;5001:4;4993:13;;4989:27;-1:-1:-1;4979:55:1;;5030:1;5027;5020:12;4979:55;5053:73;5118:7;5113:2;5100:16;5095:2;5091;5087:11;5053:73;:::i;5137:180::-;5196:6;5249:2;5237:9;5228:7;5224:23;5220:32;5217:52;;;5265:1;5262;5255:12;5217:52;-1:-1:-1;5288:23:1;;5137:180;-1:-1:-1;5137:180:1:o;5322:257::-;5363:3;5401:5;5395:12;5428:6;5423:3;5416:19;5444:63;5500:6;5493:4;5488:3;5484:14;5477:4;5470:5;5466:16;5444:63;:::i;:::-;5561:2;5540:15;-1:-1:-1;;5536:29:1;5527:39;;;;5568:4;5523:50;;5322:257;-1:-1:-1;;5322:257:1:o;5584:637::-;5864:3;5902:6;5896:13;5918:53;5964:6;5959:3;5952:4;5944:6;5940:17;5918:53;:::i;:::-;6034:13;;5993:16;;;;6056:57;6034:13;5993:16;6090:4;6078:17;;6056:57;:::i;:::-;-1:-1:-1;;;6135:20:1;;6164:22;;;6213:1;6202:13;;5584:637;-1:-1:-1;;;;5584:637:1:o;6644:488::-;-1:-1:-1;;;;;6913:15:1;;;6895:34;;6965:15;;6960:2;6945:18;;6938:43;7012:2;6997:18;;6990:34;;;7060:3;7055:2;7040:18;;7033:31;;;6838:4;;7081:45;;7106:19;;7098:6;7081:45;:::i;:::-;7073:53;6644:488;-1:-1:-1;;;;;;6644:488:1:o;7329:219::-;7478:2;7467:9;7460:21;7441:4;7498:44;7538:2;7527:9;7523:18;7515:6;7498:44;:::i;11853:405::-;12055:2;12037:21;;;12094:2;12074:18;;;12067:30;12133:34;12128:2;12113:18;;12106:62;-1:-1:-1;;;12199:2:1;12184:18;;12177:39;12248:3;12233:19;;11853:405::o;13485:356::-;13687:2;13669:21;;;13706:18;;;13699:30;13765:34;13760:2;13745:18;;13738:62;13832:2;13817:18;;13485:356::o;15784:415::-;15986:2;15968:21;;;16025:2;16005:18;;;15998:30;16064:34;16059:2;16044:18;;16037:62;-1:-1:-1;;;16130:2:1;16115:18;;16108:49;16189:3;16174:19;;15784:415::o;18188:355::-;18390:2;18372:21;;;18429:2;18409:18;;;18402:30;18468:33;18463:2;18448:18;;18441:61;18534:2;18519:18;;18188:355::o;20683:253::-;20723:3;-1:-1:-1;;;;;20812:2:1;20809:1;20805:10;20842:2;20839:1;20835:10;20873:3;20869:2;20865:12;20860:3;20857:21;20854:47;;;20881:18;;:::i;:::-;20917:13;;20683:253;-1:-1:-1;;;;20683:253:1:o;20941:128::-;20981:3;21012:1;21008:6;21005:1;21002:13;20999:39;;;21018:18;;:::i;:::-;-1:-1:-1;21054:9:1;;20941:128::o;21074:120::-;21114:1;21140;21130:35;;21145:18;;:::i;:::-;-1:-1:-1;21179:9:1;;21074:120::o;21199:168::-;21239:7;21305:1;21301;21297:6;21293:14;21290:1;21287:21;21282:1;21275:9;21268:17;21264:45;21261:71;;;21312:18;;:::i;:::-;-1:-1:-1;21352:9:1;;21199:168::o;21372:246::-;21412:4;-1:-1:-1;;;;;21525:10:1;;;;21495;;21547:12;;;21544:38;;;21562:18;;:::i;:::-;21599:13;;21372:246;-1:-1:-1;;;21372:246:1:o;21623:125::-;21663:4;21691:1;21688;21685:8;21682:34;;;21696:18;;:::i;:::-;-1:-1:-1;21733:9:1;;21623:125::o;21753:258::-;21825:1;21835:113;21849:6;21846:1;21843:13;21835:113;;;21925:11;;;21919:18;21906:11;;;21899:39;21871:2;21864:10;21835:113;;;21966:6;21963:1;21960:13;21957:48;;;-1:-1:-1;;22001:1:1;21983:16;;21976:27;21753:258::o;22016:136::-;22055:3;22083:5;22073:39;;22092:18;;:::i;:::-;-1:-1:-1;;;22128:18:1;;22016:136::o;22157:380::-;22236:1;22232:12;;;;22279;;;22300:61;;22354:4;22346:6;22342:17;22332:27;;22300:61;22407:2;22399:6;22396:14;22376:18;22373:38;22370:161;;;22453:10;22448:3;22444:20;22441:1;22434:31;22488:4;22485:1;22478:15;22516:4;22513:1;22506:15;22370:161;;22157:380;;;:::o;22542:135::-;22581:3;-1:-1:-1;;22602:17:1;;22599:43;;;22622:18;;:::i;:::-;-1:-1:-1;22669:1:1;22658:13;;22542:135::o;22682:112::-;22714:1;22740;22730:35;;22745:18;;:::i;:::-;-1:-1:-1;22779:9:1;;22682:112::o;22799:127::-;22860:10;22855:3;22851:20;22848:1;22841:31;22891:4;22888:1;22881:15;22915:4;22912:1;22905:15;22931:127;22992:10;22987:3;22983:20;22980:1;22973:31;23023:4;23020:1;23013:15;23047:4;23044:1;23037:15;23063:127;23124:10;23119:3;23115:20;23112:1;23105:31;23155:4;23152:1;23145:15;23179:4;23176:1;23169:15;23195:127;23256:10;23251:3;23247:20;23244:1;23237:31;23287:4;23284:1;23277:15;23311:4;23308:1;23301:15;23327:131;-1:-1:-1;;;;;23402:31:1;;23392:42;;23382:70;;23448:1;23445;23438:12;23463:131;-1:-1:-1;;;;;;23537:32:1;;23527:43;;23517:71;;23584:1;23581;23574:12

Swarm Source

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