ETH Price: $3,071.56 (+1.52%)
Gas: 6 Gwei

Token

Outlaw Punks Official (OLPNKS)
 

Overview

Max Total Supply

382 OLPNKS

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wortel.eth
Balance
9 OLPNKS
0x1ad1d1023b660033ee6f1730e68efd6a9bd3ec9b
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:
NFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

// SPDX-License-Identifier: MIT
// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: MerkleProof.sol

// contracts/MerkleProofVerify.sol

// based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
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[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


/*

pragma solidity ^0.8.0;



contract MerkleProofVerify {
    function verify(bytes32[] calldata proof, bytes32 root)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(proof, root, leaf);
    }
}
*/
// File: Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits;
        temp = value;
        while (temp != 0) {
            buffer[--index] = bytes1(uint8(48 + uint256(temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

// File: 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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: Address.sol



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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.3._
     */
    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.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: 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: 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: IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}
// File: 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: ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}
// File: 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: 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: 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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex = 1;

    // The number of tokens burned.
    uint128 internal _burnCounter = 1;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). 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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 (`mintPunks`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        mintPunks(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function mintPunks(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @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);
    }

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}



pragma solidity ^0.8.4;

contract NFT is ERC721A, Ownable, ERC2981, DefaultOperatorFilterer {
    using Strings for uint256;

    string private baseURI;
    string public notRevealedUri;
    string public contractURI;

    bool public public_mint_status = false;
    bool public free_mint_status = true;

    uint256 public MAX_SUPPLY = 3696;    
    
    bool public revealed = true;

    uint256 public publicSaleCost = 0.0025 ether;
    uint256 public max_per_wallet = 21;    
    uint256 public max_free_per_wallet = 1;    
    uint256 public max_per_txn = 11;
    uint256 public freeMintCount;  
    uint256 public freeMintCountLimit = 3696;

    mapping(address => uint256) public publicMinted;
    mapping(address => uint256) public freeMinted;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("Outlaw Punks Official", "OLPNKS") {
     
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);   
    setRoyaltyInfo(owner(),490);
    contractURI = _contractURI;
    mintPunks(1);
    }

    function airdrop(address[] calldata receiver, uint256[] calldata quantity) public payable onlyOwner {
  
        require(receiver.length == quantity.length, "Airdrop data does not match");

        for(uint256 x = 0; x < receiver.length; x++){
        _safeMint(receiver[x], quantity[x]);
        }
    }

    function mintPunks(uint256 quantity) public payable nonContract {

            require(totalSupply() + quantity <= MAX_SUPPLY,"No More NFTs to Mint");

            if (msg.sender != owner()) {

            require(public_mint_status, "Public mint status is off"); 
            require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Per Wallet Limit Reached");          
            require(quantity <= max_per_txn, "Max per txn exceeded");
            require(freeMintCount + quantity <= freeMintCountLimit, "Maximum free mint for the contract reached");
  
            uint256 balanceFreeMint = max_free_per_wallet - freeMinted[msg.sender];
            require(msg.value >= (publicSaleCost * (quantity - balanceFreeMint)), "Not Enough ETH Sent");

            freeMinted[msg.sender] = freeMinted[msg.sender] + balanceFreeMint; 
            freeMintCount = freeMintCount + balanceFreeMint;           
        }

        _safeMint(msg.sender, quantity);
        
    }

    modifier nonContract() {

        require(tx.origin == msg.sender, "Contracts not allowed to mint");

        _;

    }
  
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(revealed == false) {
        return notRevealedUri;
        }
      
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : '';
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

     function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        // - IERC2981: 0x2a55205a
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

      function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
        _setDefaultRoyalty(_receiver, _royaltyFeesInBips);
    }

    //only owner      
    
    function toggleReveal() external onlyOwner {
        
        if(revealed==false){
            revealed = true;
        }else{
            revealed = false;
        }
    }   
        
    function toggle_public_mint_status() external onlyOwner {
        
        if(public_mint_status==false){
            public_mint_status = true;
        }else{
            public_mint_status = false;
        }
    }  

    function toggle_free_mint_status() external onlyOwner {
        
        if(free_mint_status==false){
            free_mint_status = true;
        }else{
            free_mint_status = false;
        }
    }  

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }
   
    function withdraw() external payable onlyOwner {
  
    (bool main, ) = payable(owner()).call{value: address(this).balance}("");
    require(main);
    }

    function setPublicSaleCost(uint256 _publicSaleCost) external onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    function setMax_per_wallet(uint256 _max_per_wallet) external onlyOwner {
        max_per_wallet = _max_per_wallet;
    }

    function setMax_free_per_wallet(uint256 _max_free_per_wallet) external onlyOwner {
        max_free_per_wallet = _max_free_per_wallet;
    }

    function setMax_per_txn(uint256 _max_per_txn) external onlyOwner {
        max_per_txn = _max_per_txn;
    }

    function setMAX_SUPPLY(uint256 _MAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function setfreeMintCountLimit(uint256 _freeMintCountLimit) external onlyOwner {
        freeMintCountLimit = _freeMintCountLimit;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receiver","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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_free_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPunks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_free_per_wallet","type":"uint256"}],"name":"setMax_free_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_txn","type":"uint256"}],"name":"setMax_per_txn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMax_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintCountLimit","type":"uint256"}],"name":"setfreeMintCountLimit","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_free_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_public_mint_status","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052700100000000000000000000000000000001600055600d805461ffff1916610100179055610e70600e819055600f805460ff191660019081179091556608e1bc9bf0400060105560156011819055601291909155600b601355553480156200006b57600080fd5b50604051620037b0380380620037b08339810160408190526200008e9162000d0f565b604080518082018252601581527f4f75746c61772050756e6b73204f6666696369616c00000000000000000000006020808301918252835180850190945260068452654f4c504e4b5360d01b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb6936001939290916200010991859162000b93565b5080516200011f90600290602084019062000b93565b5050506200013c62000136620002e560201b60201c565b620002e9565b6daaeb6d7670e522a718067333cd4e3b1562000281578015620001cf57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001b057600080fd5b505af1158015620001c5573d6000803e3d6000fd5b5050505062000281565b6001600160a01b03821615620002205760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000195565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200026757600080fd5b505af11580156200027c573d6000803e3d6000fd5b505050505b506200028f9050836200033b565b6200029a826200035e565b620002ba620002b16007546001600160a01b031690565b6101ea6200037d565b8051620002cf90600c90602084019062000b93565b50620002dc600162000393565b50505062000ed2565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000345620006e5565b80516200035a90600a90602084019062000b93565b5050565b62000368620006e5565b80516200035a90600b90602084019062000b93565b62000387620006e5565b6200035a828262000743565b323314620003e85760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e7400000060448201526064015b60405180910390fd5b600e54816200040f6000546001600160801b03600160801b82048116918116919091031690565b6200041b919062000db6565b11156200046b5760405162461bcd60e51b815260206004820152601460248201527f4e6f204d6f7265204e46547320746f204d696e740000000000000000000000006044820152606401620003df565b6007546001600160a01b03163314620006d657600d5460ff16620004d25760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401620003df565b60115481620004e13362000844565b620004ed919062000db6565b11156200053d5760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401620003df565b601354811115620005915760405162461bcd60e51b815260206004820152601460248201527f4d6178207065722074786e2065786365656465640000000000000000000000006044820152606401620003df565b60155481601454620005a4919062000db6565b1115620006075760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401620003df565b3360009081526017602052604081205460125462000626919062000dd1565b905062000634818362000dd1565b60105462000643919062000deb565b341015620006945760405162461bcd60e51b815260206004820152601360248201527f4e6f7420456e6f756768204554482053656e74000000000000000000000000006044820152606401620003df565b33600090815260176020526040902054620006b190829062000db6565b33600090815260176020526040902055601454620006d190829062000db6565b601455505b620006e2338262000893565b50565b6007546001600160a01b03163314620007415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003df565b565b6127106001600160601b0382161115620007b35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003df565b6001600160a01b0382166200080b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003df565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b60006001600160a01b0382166200086e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6200035a828260405180602001604052806000815250620008b560201b60201c565b620008c48383836001620008c9565b505050565b6000546001600160801b03166001600160a01b038516620008fc57604051622e076360e81b815260040160405180910390fd5b836000036200091e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101562000a355760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801562000a09575062000a07600088848862000a6b565b155b1562000a28576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101620009ae565b50600080546001600160801b0319166001600160801b039290921691909117815562000a5e9050565b5050505050565b50505050565b600062000a8c846001600160a01b031662000b8d60201b6200156b1760201c565b1562000b8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000ac690339089908890889060040162000e0d565b6020604051808303816000875af192505050801562000b04575060408051601f3d908101601f1916820190925262000b019181019062000e63565b60015b62000b66573d80801562000b35576040519150601f19603f3d011682016040523d82523d6000602084013e62000b3a565b606091505b50805160000362000b5e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000b85565b5060015b949350505050565b3b151590565b82805462000ba19062000e96565b90600052602060002090601f01602090048101928262000bc5576000855562000c10565b82601f1062000be057805160ff191683800117855562000c10565b8280016001018555821562000c10579182015b8281111562000c1057825182559160200191906001019062000bf3565b5062000c1e92915062000c22565b5090565b5b8082111562000c1e576000815560010162000c23565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000c6c57818101518382015260200162000c52565b8381111562000a655750506000910152565b600082601f83011262000c9057600080fd5b81516001600160401b038082111562000cad5762000cad62000c39565b604051601f8301601f19908116603f0116810190828211818310171562000cd85762000cd862000c39565b8160405283815286602085880101111562000cf257600080fd5b62000d0584602083016020890162000c4f565b9695505050505050565b60008060006060848603121562000d2557600080fd5b83516001600160401b038082111562000d3d57600080fd5b62000d4b8783880162000c7e565b9450602086015191508082111562000d6257600080fd5b62000d708783880162000c7e565b9350604086015191508082111562000d8757600080fd5b5062000d968682870162000c7e565b9150509250925092565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000dcc5762000dcc62000da0565b500190565b60008282101562000de65762000de662000da0565b500390565b600081600019048311821515161562000e085762000e0862000da0565b500290565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000e4c8160a085016020870162000c4f565b601f01601f19169190910160a00195945050505050565b60006020828403121562000e7657600080fd5b81516001600160e01b03198116811462000e8f57600080fd5b9392505050565b600181811c9082168062000eab57607f821691505b60208210810362000ecc57634e487b7160e01b600052602260045260246000fd5b50919050565b6128ce8062000ee26000396000f3fe6080604052600436106102e45760003560e01c80635b8ad42911610190578063aab3e3cf116100dc578063dcc7eb3511610095578063e985e9c51161006f578063e985e9c51461087e578063ec9496ba146108c7578063f2c4ce1e146108e7578063f2fde38b1461090757600080fd5b8063dcc7eb351461083e578063e55f58bb14610853578063e8a3d4851461086957600080fd5b8063aab3e3cf14610793578063ab53fcaa146107b3578063b88d4fde146107c9578063c87b56dd146107e9578063d1e1457714610809578063d685b6451461082857600080fd5b806381c4cede116101495780638dbb7c06116101235780638dbb7c061461071e578063938e3d7b1461073e57806395d89b411461075e578063a22cb4651461077357600080fd5b806381c4cede146106c6578063835d997e146106e05780638da5cb5b1461070057600080fd5b80635b8ad429146106295780636352211e1461063e578063672434821461065e5780636d1b9ebc1461067157806370a0823114610691578063715018a6146106b157600080fd5b80632f745c591161024f57806341f43434116102085780634f459936116101e25780634f459936146105bc5780634f6ccce7146105cf57806351830227146105ef57806355f804b31461060957600080fd5b806341f434341461056457806342842e0e14610586578063453afb0f146105a657600080fd5b80632f745c59146104ce57806332a825ce146104ee57806332cb6b0c14610504578063389fcf061461051a57806339eea013146105475780633ccfd60b1461055c57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf5780631015805b146103ef57806311f1eaee1461042a57806318160ddd1461044057806323b872dd1461046f5780632a55205a1461048f57600080fd5b806301ffc9a7146102e957806302fa7c471461031e578063040d19241461034057806306fdde0314610360578063081812fc14610382578063081c8c44146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612215565b610927565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612255565b610947565b005b34801561034c57600080fd5b5061033e61035b366004612298565b61095d565b34801561036c57600080fd5b5061037561096a565b6040516103159190612309565b34801561038e57600080fd5b506103a261039d366004612298565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b50610375610a40565b3480156103db57600080fd5b5061033e6103ea36600461231c565b610ace565b3480156103fb57600080fd5b5061041c61040a366004612346565b60166020526000908152604090205481565b604051908152602001610315565b34801561043657600080fd5b5061041c60155481565b34801561044c57600080fd5b5061041c6000546001600160801b03600160801b82048116918116919091031690565b34801561047b57600080fd5b5061033e61048a366004612361565b610ae7565b34801561049b57600080fd5b506104af6104aa36600461239d565b610b12565b604080516001600160a01b039093168352602083019190915201610315565b3480156104da57600080fd5b5061041c6104e936600461231c565b610bc0565b3480156104fa57600080fd5b5061041c60125481565b34801561051057600080fd5b5061041c600e5481565b34801561052657600080fd5b5061041c610535366004612346565b60176020526000908152604090205481565b34801561055357600080fd5b5061033e610cba565b61033e610cf5565b34801561057057600080fd5b506103a26daaeb6d7670e522a718067333cd4e81565b34801561059257600080fd5b5061033e6105a1366004612361565b610d71565b3480156105b257600080fd5b5061041c60105481565b61033e6105ca366004612298565b610d96565b3480156105db57600080fd5b5061041c6105ea366004612298565b6110a6565b3480156105fb57600080fd5b50600f546103099060ff1681565b34801561061557600080fd5b5061033e61062436600461244a565b61114f565b34801561063557600080fd5b5061033e61116a565b34801561064a57600080fd5b506103a2610659366004612298565b61119c565b61033e61066c3660046124d6565b6111ae565b34801561067d57600080fd5b5061033e61068c366004612298565b611271565b34801561069d57600080fd5b5061041c6106ac366004612346565b61127e565b3480156106bd57600080fd5b5061033e6112cc565b3480156106d257600080fd5b50600d546103099060ff1681565b3480156106ec57600080fd5b5061033e6106fb366004612298565b6112de565b34801561070c57600080fd5b506007546001600160a01b03166103a2565b34801561072a57600080fd5b5061033e610739366004612298565b6112eb565b34801561074a57600080fd5b5061033e61075936600461244a565b6112f8565b34801561076a57600080fd5b50610375611313565b34801561077f57600080fd5b5061033e61078e36600461254f565b611322565b34801561079f57600080fd5b5061033e6107ae366004612298565b611336565b3480156107bf57600080fd5b5061041c60115481565b3480156107d557600080fd5b5061033e6107e436600461257b565b611343565b3480156107f557600080fd5b50610375610804366004612298565b611369565b34801561081557600080fd5b50600d5461030990610100900460ff1681565b34801561083457600080fd5b5061041c60135481565b34801561084a57600080fd5b5061033e61148e565b34801561085f57600080fd5b5061041c60145481565b34801561087557600080fd5b506103756114c0565b34801561088a57600080fd5b506103096108993660046125f6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b5061033e6108e2366004612298565b6114cd565b3480156108f357600080fd5b5061033e61090236600461244a565b6114da565b34801561091357600080fd5b5061033e610922366004612346565b6114f5565b600061093282611571565b806109415750610941826115dc565b92915050565b61094f611601565b610959828261165b565b5050565b610965611601565b601255565b60606001805461097990612629565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590612629565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a0782611758565b610a24576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610a4d90612629565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612629565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b81610ad88161178c565b610ae28383611845565b505050565b826001600160a01b0381163314610b0157610b013361178c565b610b0c8484846118cd565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b875750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba6906001600160601b031687612679565b610bb091906126ae565b91519350909150505b9250929050565b6000610bcb8361127e565b8210610bea576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610cb457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c625750610cac565b80516001600160a01b031615610c7757805192505b876001600160a01b0316836001600160a01b031603610caa57868403610ca35750935061094192505050565b6001909301925b505b600101610bfb565b50600080fd5b610cc2611601565b600d54610100900460ff161515600003610ce757600d805461ff001916610100179055565b600d805461ff00191690555b565b610cfd611601565b6000610d116007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905080610d6e57600080fd5b50565b826001600160a01b0381163314610d8b57610d8b3361178c565b610b0c8484846118d8565b323314610dea5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e7400000060448201526064015b60405180910390fd5b600e5481610e106000546001600160801b03600160801b82048116918116919091031690565b610e1a91906126c2565b1115610e5f5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610de1565b6007546001600160a01b0316331461109c57600d5460ff16610ec35760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610de1565b60115481610ed03361127e565b610eda91906126c2565b1115610f285760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610de1565b601354811115610f715760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610de1565b60155481601454610f8291906126c2565b1115610fe35760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401610de1565b3360009081526017602052604081205460125461100091906126da565b905061100c81836126da565b6010546110199190612679565b34101561105e5760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610de1565b336000908152601760205260409020546110799082906126c2565b336000908152601760205260409020556014546110979082906126c2565b601455505b610d6e33826118f3565b600080546001600160801b031681805b8281101561113557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061112c578583036111255750949350505050565b6001909201915b506001016110b6565b506040516329c8c00760e21b815260040160405180910390fd5b611157611601565b805161095990600a906020840190612166565b611172611601565b600f5460ff16151560000361119057600f805460ff19166001179055565b600f805460ff19169055565b60006111a78261190d565b5192915050565b6111b6611601565b8281146112055760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d6174636800000000006044820152606401610de1565b60005b8381101561126a57611258858583818110611225576112256126f1565b905060200201602081019061123a9190612346565b84848481811061124c5761124c6126f1565b905060200201356118f3565b8061126281612707565b915050611208565b5050505050565b611279611601565b601555565b60006001600160a01b0382166112a7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6112d4611601565b610cf36000611a2f565b6112e6611601565b601155565b6112f3611601565b601055565b611300611601565b805161095990600c906020840190612166565b60606002805461097990612629565b8161132c8161178c565b610ae28383611a81565b61133e611601565b601355565b836001600160a01b038116331461135d5761135d3361178c565b61126a85858585611b16565b606061137482611758565b61139157604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361143257600b80546113ad90612629565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990612629565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b50505050509050919050565b600a805461143f90612629565b905060000361145d5760405180602001604052806000815250610941565b600a61146883611b4a565b60405160200161147992919061273c565b60405160208183030381529060405292915050565b611496611601565b600d5460ff1615156000036114b457600d805460ff19166001179055565b600d805460ff19169055565b600c8054610a4d90612629565b6114d5611601565b600e55565b6114e2611601565b805161095990600b906020840190612166565b6114fd611601565b6001600160a01b0381166115625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610de1565b610d6e81611a2f565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806115a257506001600160e01b03198216635b5e139f60e01b145b806115bd57506001600160e01b0319821663780e9d6360e01b145b8061094157506301ffc9a760e01b6001600160e01b0319831614610941565b60006001600160e01b0319821663152a902d60e11b1480610941575061094182611571565b6007546001600160a01b03163314610cf35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de1565b6127106001600160601b03821611156116c95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610de1565b6001600160a01b03821661171f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610de1565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610941575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610d6e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181d91906127f6565b610d6e57604051633b79c77360e21b81526001600160a01b0382166004820152602401610de1565b60006118508261119c565b9050806001600160a01b0316836001600160a01b0316036118845760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906118a457506118a28133610899565b155b156118c2576040516367d9dca160e11b815260040160405180910390fd5b610ae2838383611c55565b610ae2838383611cb1565b610ae283838360405180602001604052806000815250611343565b610959828260405180602001604052806000815250611ecb565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a1657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a145780516001600160a01b0316156119ab579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a0f579392505050565b6119ab565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611aaa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b21848484611cb1565b611b2d84848484611ed8565b610b0c576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b715750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b9b5780611b8581612707565b9150611b949050600a836126ae565b9150611b75565b6000816001600160401b03811115611bb557611bb56123bf565b6040519080825280601f01601f191660200182016040528015611bdf576020820181803683370190505b508593509050815b8315611c4c57611bf8600a85612813565b611c039060306126c2565b60f81b82611c1083612827565b92508281518110611c2357611c236126f1565b60200101906001600160f81b031916908160001a905350611c45600a856126ae565b9350611be7565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cbc8261190d565b80519091506000906001600160a01b0316336001600160a01b03161480611cea57508151611cea9033610899565b80611d05575033611cfa846109fc565b6001600160a01b0316145b905080611d2557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d5a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d8157604051633a954ecd60e21b815260040160405180910390fd5b611d916000848460000151611c55565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e84576000546001600160801b0316811015611e8457825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461126a565b610ae28383836001611fdb565b60006001600160a01b0384163b15611fcf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1c90339089908890889060040161283e565b6020604051808303816000875af1925050508015611f57575060408051601f3d908101601f19168201909252611f549181019061287b565b60015b611fb5573d808015611f85576040519150601f19603f3d011682016040523d82523d6000602084013e611f8a565b606091505b508051600003611fad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd3565b5060015b949350505050565b6000546001600160801b03166001600160a01b03851661200d57604051622e076360e81b815260040160405180910390fd5b8360000361202e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561211657506121146000888488611ed8565b155b15612134576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016120bf565b50600080546001600160801b0319166001600160801b039290921691909117905561126a565b82805461217290612629565b90600052602060002090601f01602090048101928261219457600085556121da565b82601f106121ad57805160ff19168380011785556121da565b828001600101855582156121da579182015b828111156121da5782518255916020019190600101906121bf565b506121e69291506121ea565b5090565b5b808211156121e657600081556001016121eb565b6001600160e01b031981168114610d6e57600080fd5b60006020828403121561222757600080fd5b8135612232816121ff565b9392505050565b80356001600160a01b038116811461225057600080fd5b919050565b6000806040838503121561226857600080fd5b61227183612239565b915060208301356001600160601b038116811461228d57600080fd5b809150509250929050565b6000602082840312156122aa57600080fd5b5035919050565b60005b838110156122cc5781810151838201526020016122b4565b83811115610b0c5750506000910152565b600081518084526122f58160208601602086016122b1565b601f01601f19169290920160200192915050565b60208152600061223260208301846122dd565b6000806040838503121561232f57600080fd5b61233883612239565b946020939093013593505050565b60006020828403121561235857600080fd5b61223282612239565b60008060006060848603121561237657600080fd5b61237f84612239565b925061238d60208501612239565b9150604084013590509250925092565b600080604083850312156123b057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156123ef576123ef6123bf565b604051601f8501601f19908116603f01168101908282118183101715612417576124176123bf565b8160405280935085815286868601111561243057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245c57600080fd5b81356001600160401b0381111561247257600080fd5b8201601f8101841361248357600080fd5b611fd3848235602084016123d5565b60008083601f8401126124a457600080fd5b5081356001600160401b038111156124bb57600080fd5b6020830191508360208260051b8501011115610bb957600080fd5b600080600080604085870312156124ec57600080fd5b84356001600160401b038082111561250357600080fd5b61250f88838901612492565b9096509450602087013591508082111561252857600080fd5b5061253587828801612492565b95989497509550505050565b8015158114610d6e57600080fd5b6000806040838503121561256257600080fd5b61256b83612239565b9150602083013561228d81612541565b6000806000806080858703121561259157600080fd5b61259a85612239565b93506125a860208601612239565b92506040850135915060608501356001600160401b038111156125ca57600080fd5b8501601f810187136125db57600080fd5b6125ea878235602084016123d5565b91505092959194509250565b6000806040838503121561260957600080fd5b61261283612239565b915061262060208401612239565b90509250929050565b600181811c9082168061263d57607f821691505b60208210810361265d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269357612693612663565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126bd576126bd612698565b500490565b600082198211156126d5576126d5612663565b500190565b6000828210156126ec576126ec612663565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161271957612719612663565b5060010190565b600081516127328185602086016122b1565b9290920192915050565b600080845481600182811c91508083168061275857607f831692505b6020808410820361277757634e487b7160e01b86526022600452602486fd5b81801561278b576001811461279c576127c9565b60ff198616895284890196506127c9565b60008b81526020902060005b868110156127c15781548b8201529085019083016127a8565b505084890196505b5050505050506127ed6127dc8286612720565b64173539b7b760d91b815260050190565b95945050505050565b60006020828403121561280857600080fd5b815161223281612541565b60008261282257612822612698565b500690565b60008161283657612836612663565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612871908301846122dd565b9695505050505050565b60006020828403121561288d57600080fd5b8151612232816121ff56fea2646970667358221220aa9928ffc0293c41e310a66a7ba5bc3dc6283f18e80592580ece20831eb3ee3d64736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80635b8ad42911610190578063aab3e3cf116100dc578063dcc7eb3511610095578063e985e9c51161006f578063e985e9c51461087e578063ec9496ba146108c7578063f2c4ce1e146108e7578063f2fde38b1461090757600080fd5b8063dcc7eb351461083e578063e55f58bb14610853578063e8a3d4851461086957600080fd5b8063aab3e3cf14610793578063ab53fcaa146107b3578063b88d4fde146107c9578063c87b56dd146107e9578063d1e1457714610809578063d685b6451461082857600080fd5b806381c4cede116101495780638dbb7c06116101235780638dbb7c061461071e578063938e3d7b1461073e57806395d89b411461075e578063a22cb4651461077357600080fd5b806381c4cede146106c6578063835d997e146106e05780638da5cb5b1461070057600080fd5b80635b8ad429146106295780636352211e1461063e578063672434821461065e5780636d1b9ebc1461067157806370a0823114610691578063715018a6146106b157600080fd5b80632f745c591161024f57806341f43434116102085780634f459936116101e25780634f459936146105bc5780634f6ccce7146105cf57806351830227146105ef57806355f804b31461060957600080fd5b806341f434341461056457806342842e0e14610586578063453afb0f146105a657600080fd5b80632f745c59146104ce57806332a825ce146104ee57806332cb6b0c14610504578063389fcf061461051a57806339eea013146105475780633ccfd60b1461055c57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf5780631015805b146103ef57806311f1eaee1461042a57806318160ddd1461044057806323b872dd1461046f5780632a55205a1461048f57600080fd5b806301ffc9a7146102e957806302fa7c471461031e578063040d19241461034057806306fdde0314610360578063081812fc14610382578063081c8c44146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612215565b610927565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612255565b610947565b005b34801561034c57600080fd5b5061033e61035b366004612298565b61095d565b34801561036c57600080fd5b5061037561096a565b6040516103159190612309565b34801561038e57600080fd5b506103a261039d366004612298565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b50610375610a40565b3480156103db57600080fd5b5061033e6103ea36600461231c565b610ace565b3480156103fb57600080fd5b5061041c61040a366004612346565b60166020526000908152604090205481565b604051908152602001610315565b34801561043657600080fd5b5061041c60155481565b34801561044c57600080fd5b5061041c6000546001600160801b03600160801b82048116918116919091031690565b34801561047b57600080fd5b5061033e61048a366004612361565b610ae7565b34801561049b57600080fd5b506104af6104aa36600461239d565b610b12565b604080516001600160a01b039093168352602083019190915201610315565b3480156104da57600080fd5b5061041c6104e936600461231c565b610bc0565b3480156104fa57600080fd5b5061041c60125481565b34801561051057600080fd5b5061041c600e5481565b34801561052657600080fd5b5061041c610535366004612346565b60176020526000908152604090205481565b34801561055357600080fd5b5061033e610cba565b61033e610cf5565b34801561057057600080fd5b506103a26daaeb6d7670e522a718067333cd4e81565b34801561059257600080fd5b5061033e6105a1366004612361565b610d71565b3480156105b257600080fd5b5061041c60105481565b61033e6105ca366004612298565b610d96565b3480156105db57600080fd5b5061041c6105ea366004612298565b6110a6565b3480156105fb57600080fd5b50600f546103099060ff1681565b34801561061557600080fd5b5061033e61062436600461244a565b61114f565b34801561063557600080fd5b5061033e61116a565b34801561064a57600080fd5b506103a2610659366004612298565b61119c565b61033e61066c3660046124d6565b6111ae565b34801561067d57600080fd5b5061033e61068c366004612298565b611271565b34801561069d57600080fd5b5061041c6106ac366004612346565b61127e565b3480156106bd57600080fd5b5061033e6112cc565b3480156106d257600080fd5b50600d546103099060ff1681565b3480156106ec57600080fd5b5061033e6106fb366004612298565b6112de565b34801561070c57600080fd5b506007546001600160a01b03166103a2565b34801561072a57600080fd5b5061033e610739366004612298565b6112eb565b34801561074a57600080fd5b5061033e61075936600461244a565b6112f8565b34801561076a57600080fd5b50610375611313565b34801561077f57600080fd5b5061033e61078e36600461254f565b611322565b34801561079f57600080fd5b5061033e6107ae366004612298565b611336565b3480156107bf57600080fd5b5061041c60115481565b3480156107d557600080fd5b5061033e6107e436600461257b565b611343565b3480156107f557600080fd5b50610375610804366004612298565b611369565b34801561081557600080fd5b50600d5461030990610100900460ff1681565b34801561083457600080fd5b5061041c60135481565b34801561084a57600080fd5b5061033e61148e565b34801561085f57600080fd5b5061041c60145481565b34801561087557600080fd5b506103756114c0565b34801561088a57600080fd5b506103096108993660046125f6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b5061033e6108e2366004612298565b6114cd565b3480156108f357600080fd5b5061033e61090236600461244a565b6114da565b34801561091357600080fd5b5061033e610922366004612346565b6114f5565b600061093282611571565b806109415750610941826115dc565b92915050565b61094f611601565b610959828261165b565b5050565b610965611601565b601255565b60606001805461097990612629565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590612629565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a0782611758565b610a24576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610a4d90612629565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612629565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b81610ad88161178c565b610ae28383611845565b505050565b826001600160a01b0381163314610b0157610b013361178c565b610b0c8484846118cd565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b875750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba6906001600160601b031687612679565b610bb091906126ae565b91519350909150505b9250929050565b6000610bcb8361127e565b8210610bea576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610cb457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c625750610cac565b80516001600160a01b031615610c7757805192505b876001600160a01b0316836001600160a01b031603610caa57868403610ca35750935061094192505050565b6001909301925b505b600101610bfb565b50600080fd5b610cc2611601565b600d54610100900460ff161515600003610ce757600d805461ff001916610100179055565b600d805461ff00191690555b565b610cfd611601565b6000610d116007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5b576040519150601f19603f3d011682016040523d82523d6000602084013e610d60565b606091505b5050905080610d6e57600080fd5b50565b826001600160a01b0381163314610d8b57610d8b3361178c565b610b0c8484846118d8565b323314610dea5760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e7400000060448201526064015b60405180910390fd5b600e5481610e106000546001600160801b03600160801b82048116918116919091031690565b610e1a91906126c2565b1115610e5f5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610de1565b6007546001600160a01b0316331461109c57600d5460ff16610ec35760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610de1565b60115481610ed03361127e565b610eda91906126c2565b1115610f285760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610de1565b601354811115610f715760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610de1565b60155481601454610f8291906126c2565b1115610fe35760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401610de1565b3360009081526017602052604081205460125461100091906126da565b905061100c81836126da565b6010546110199190612679565b34101561105e5760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610de1565b336000908152601760205260409020546110799082906126c2565b336000908152601760205260409020556014546110979082906126c2565b601455505b610d6e33826118f3565b600080546001600160801b031681805b8281101561113557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061112c578583036111255750949350505050565b6001909201915b506001016110b6565b506040516329c8c00760e21b815260040160405180910390fd5b611157611601565b805161095990600a906020840190612166565b611172611601565b600f5460ff16151560000361119057600f805460ff19166001179055565b600f805460ff19169055565b60006111a78261190d565b5192915050565b6111b6611601565b8281146112055760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d6174636800000000006044820152606401610de1565b60005b8381101561126a57611258858583818110611225576112256126f1565b905060200201602081019061123a9190612346565b84848481811061124c5761124c6126f1565b905060200201356118f3565b8061126281612707565b915050611208565b5050505050565b611279611601565b601555565b60006001600160a01b0382166112a7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6112d4611601565b610cf36000611a2f565b6112e6611601565b601155565b6112f3611601565b601055565b611300611601565b805161095990600c906020840190612166565b60606002805461097990612629565b8161132c8161178c565b610ae28383611a81565b61133e611601565b601355565b836001600160a01b038116331461135d5761135d3361178c565b61126a85858585611b16565b606061137482611758565b61139157604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361143257600b80546113ad90612629565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990612629565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b50505050509050919050565b600a805461143f90612629565b905060000361145d5760405180602001604052806000815250610941565b600a61146883611b4a565b60405160200161147992919061273c565b60405160208183030381529060405292915050565b611496611601565b600d5460ff1615156000036114b457600d805460ff19166001179055565b600d805460ff19169055565b600c8054610a4d90612629565b6114d5611601565b600e55565b6114e2611601565b805161095990600b906020840190612166565b6114fd611601565b6001600160a01b0381166115625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610de1565b610d6e81611a2f565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806115a257506001600160e01b03198216635b5e139f60e01b145b806115bd57506001600160e01b0319821663780e9d6360e01b145b8061094157506301ffc9a760e01b6001600160e01b0319831614610941565b60006001600160e01b0319821663152a902d60e11b1480610941575061094182611571565b6007546001600160a01b03163314610cf35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de1565b6127106001600160601b03821611156116c95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610de1565b6001600160a01b03821661171f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610de1565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610941575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610d6e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181d91906127f6565b610d6e57604051633b79c77360e21b81526001600160a01b0382166004820152602401610de1565b60006118508261119c565b9050806001600160a01b0316836001600160a01b0316036118845760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906118a457506118a28133610899565b155b156118c2576040516367d9dca160e11b815260040160405180910390fd5b610ae2838383611c55565b610ae2838383611cb1565b610ae283838360405180602001604052806000815250611343565b610959828260405180602001604052806000815250611ecb565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a1657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a145780516001600160a01b0316156119ab579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a0f579392505050565b6119ab565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611aaa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b21848484611cb1565b611b2d84848484611ed8565b610b0c576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b715750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b9b5780611b8581612707565b9150611b949050600a836126ae565b9150611b75565b6000816001600160401b03811115611bb557611bb56123bf565b6040519080825280601f01601f191660200182016040528015611bdf576020820181803683370190505b508593509050815b8315611c4c57611bf8600a85612813565b611c039060306126c2565b60f81b82611c1083612827565b92508281518110611c2357611c236126f1565b60200101906001600160f81b031916908160001a905350611c45600a856126ae565b9350611be7565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cbc8261190d565b80519091506000906001600160a01b0316336001600160a01b03161480611cea57508151611cea9033610899565b80611d05575033611cfa846109fc565b6001600160a01b0316145b905080611d2557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d5a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d8157604051633a954ecd60e21b815260040160405180910390fd5b611d916000848460000151611c55565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e84576000546001600160801b0316811015611e8457825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461126a565b610ae28383836001611fdb565b60006001600160a01b0384163b15611fcf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1c90339089908890889060040161283e565b6020604051808303816000875af1925050508015611f57575060408051601f3d908101601f19168201909252611f549181019061287b565b60015b611fb5573d808015611f85576040519150601f19603f3d011682016040523d82523d6000602084013e611f8a565b606091505b508051600003611fad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd3565b5060015b949350505050565b6000546001600160801b03166001600160a01b03851661200d57604051622e076360e81b815260040160405180910390fd5b8360000361202e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561211657506121146000888488611ed8565b155b15612134576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016120bf565b50600080546001600160801b0319166001600160801b039290921691909117905561126a565b82805461217290612629565b90600052602060002090601f01602090048101928261219457600085556121da565b82601f106121ad57805160ff19168380011785556121da565b828001600101855582156121da579182015b828111156121da5782518255916020019190600101906121bf565b506121e69291506121ea565b5090565b5b808211156121e657600081556001016121eb565b6001600160e01b031981168114610d6e57600080fd5b60006020828403121561222757600080fd5b8135612232816121ff565b9392505050565b80356001600160a01b038116811461225057600080fd5b919050565b6000806040838503121561226857600080fd5b61227183612239565b915060208301356001600160601b038116811461228d57600080fd5b809150509250929050565b6000602082840312156122aa57600080fd5b5035919050565b60005b838110156122cc5781810151838201526020016122b4565b83811115610b0c5750506000910152565b600081518084526122f58160208601602086016122b1565b601f01601f19169290920160200192915050565b60208152600061223260208301846122dd565b6000806040838503121561232f57600080fd5b61233883612239565b946020939093013593505050565b60006020828403121561235857600080fd5b61223282612239565b60008060006060848603121561237657600080fd5b61237f84612239565b925061238d60208501612239565b9150604084013590509250925092565b600080604083850312156123b057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156123ef576123ef6123bf565b604051601f8501601f19908116603f01168101908282118183101715612417576124176123bf565b8160405280935085815286868601111561243057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245c57600080fd5b81356001600160401b0381111561247257600080fd5b8201601f8101841361248357600080fd5b611fd3848235602084016123d5565b60008083601f8401126124a457600080fd5b5081356001600160401b038111156124bb57600080fd5b6020830191508360208260051b8501011115610bb957600080fd5b600080600080604085870312156124ec57600080fd5b84356001600160401b038082111561250357600080fd5b61250f88838901612492565b9096509450602087013591508082111561252857600080fd5b5061253587828801612492565b95989497509550505050565b8015158114610d6e57600080fd5b6000806040838503121561256257600080fd5b61256b83612239565b9150602083013561228d81612541565b6000806000806080858703121561259157600080fd5b61259a85612239565b93506125a860208601612239565b92506040850135915060608501356001600160401b038111156125ca57600080fd5b8501601f810187136125db57600080fd5b6125ea878235602084016123d5565b91505092959194509250565b6000806040838503121561260957600080fd5b61261283612239565b915061262060208401612239565b90509250929050565b600181811c9082168061263d57607f821691505b60208210810361265d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269357612693612663565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126bd576126bd612698565b500490565b600082198211156126d5576126d5612663565b500190565b6000828210156126ec576126ec612663565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161271957612719612663565b5060010190565b600081516127328185602086016122b1565b9290920192915050565b600080845481600182811c91508083168061275857607f831692505b6020808410820361277757634e487b7160e01b86526022600452602486fd5b81801561278b576001811461279c576127c9565b60ff198616895284890196506127c9565b60008b81526020902060005b868110156127c15781548b8201529085019083016127a8565b505084890196505b5050505050506127ed6127dc8286612720565b64173539b7b760d91b815260050190565b95945050505050565b60006020828403121561280857600080fd5b815161223281612541565b60008261282257612822612698565b500690565b60008161283657612836612663565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612871908301846122dd565b9695505050505050565b60006020828403121561288d57600080fd5b8151612232816121ff56fea2646970667358221220aa9928ffc0293c41e310a66a7ba5bc3dc6283f18e80592580ece20831eb3ee3d64736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealedUri (string):
Arg [2] : _contractURI (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55621:6533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59476:487;;;;;;;;;;-1:-1:-1;59476:487:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;59476:487:0;;;;;;;;59973:155;;;;;;;;;;-1:-1:-1;59973:155:0;;;;;:::i;:::-;;:::i;:::-;;61510:142;;;;;;;;;;-1:-1:-1;61510:142:0;;;;;:::i;:::-;;:::i;41710:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43221:204::-;;;;;;;;;;-1:-1:-1;43221:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2263:32:1;;;2245:51;;2233:2;2218:18;43221:204:0;2099:203:1;55758:28:0;;;;;;;;;;;;;:::i;58724:157::-;;;;;;;;;;-1:-1:-1;58724:157:0;;;;;:::i;:::-;;:::i;56270:47::-;;;;;;;;;;-1:-1:-1;56270:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2903:25:1;;;2891:2;2876:18;56270:47:0;2757:177:1;56221:40:0;;;;;;;;;;;;;;;;36337:280;;;;;;;;;;;;36390:7;36582:12;-1:-1:-1;;;;;;;;36582:12:0;;;;36566:13;;;:28;;;;36559:35;;36337:280;58889:163;;;;;;;;;;-1:-1:-1;58889:163:0;;;;;:::i;:::-;;:::i;24208:442::-;;;;;;;;;;-1:-1:-1;24208:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3717:32:1;;;3699:51;;3781:2;3766:18;;3759:34;;;;3672:18;24208:442:0;3525:274:1;37923:1105:0;;;;;;;;;;-1:-1:-1;37923:1105:0;;;;;:::i;:::-;;:::i;56097:38::-;;;;;;;;;;;;;;;;55916:32;;;;;;;;;;;;;;;;56324:45;;;;;;;;;;-1:-1:-1;56324:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;60596:214;;;;;;;;;;;;;:::i;61085:157::-;;;:::i;2902:143::-;;;;;;;;;;;;3002:42;2902:143;;59060:171;;;;;;;;;;-1:-1:-1;59060:171:0;;;;;:::i;:::-;;:::i;56001:44::-;;;;;;;;;;;;;;;;57031:993;;;;;;:::i;:::-;;:::i;36910:713::-;;;;;;;;;;-1:-1:-1;36910:713:0;;;;;:::i;:::-;;:::i;55965:27::-;;;;;;;;;;-1:-1:-1;55965:27:0;;;;;;;;62038:103;;;;;;;;;;-1:-1:-1;62038:103:0;;;;;:::i;:::-;;:::i;60166:179::-;;;;;;;;;;;;;:::i;41519:124::-;;;;;;;;;;-1:-1:-1;41519:124:0;;;;;:::i;:::-;;:::i;56712:311::-;;;;;;:::i;:::-;;:::i;61892:138::-;;;;;;;;;;-1:-1:-1;61892:138:0;;;;;:::i;:::-;;:::i;39536:206::-;;;;;;;;;;-1:-1:-1;39536:206:0;;;;;:::i;:::-;;:::i;10182:103::-;;;;;;;;;;;;;:::i;55827:38::-;;;;;;;;;;-1:-1:-1;55827:38:0;;;;;;;;61380:122;;;;;;;;;;-1:-1:-1;61380:122:0;;;;;:::i;:::-;;:::i;9534:87::-;;;;;;;;;;-1:-1:-1;9607:6:0;;-1:-1:-1;;;;;9607:6:0;9534:87;;61250:122;;;;;;;;;;-1:-1:-1;61250:122:0;;;;;:::i;:::-;;:::i;60958:116::-;;;;;;;;;;-1:-1:-1;60958:116:0;;;;;:::i;:::-;;:::i;41879:104::-;;;;;;;;;;;;;:::i;58540:176::-;;;;;;;;;;-1:-1:-1;58540:176:0;;;;;:::i;:::-;;:::i;61660:110::-;;;;;;;;;;-1:-1:-1;61660:110:0;;;;;:::i;:::-;;:::i;56052:34::-;;;;;;;;;;;;;;;;59239:228;;;;;;;;;;-1:-1:-1;59239:228:0;;;;;:::i;:::-;;:::i;58167:365::-;;;;;;;;;;-1:-1:-1;58167:365:0;;;;;:::i;:::-;;:::i;55872:35::-;;;;;;;;;;-1:-1:-1;55872:35:0;;;;;;;;;;;56146:31;;;;;;;;;;;;;;;;60364:222;;;;;;;;;;;;;:::i;56184:28::-;;;;;;;;;;;;;;;;55793:25;;;;;;;;;;;;;:::i;43855:164::-;;;;;;;;;;-1:-1:-1;43855:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43976:25:0;;;43952:4;43976:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43855:164;61778:106;;;;;;;;;;-1:-1:-1;61778:106:0;;;;;:::i;:::-;;:::i;60820:126::-;;;;;;;;;;-1:-1:-1;60820:126:0;;;;;:::i;:::-;;:::i;10440:201::-;;;;;;;;;;-1:-1:-1;10440:201:0;;;;;:::i;:::-;;:::i;59476:487::-;59624:4;59862:38;59888:11;59862:25;:38::i;:::-;:93;;;;59917:38;59943:11;59917:25;:38::i;:::-;59842:113;59476:487;-1:-1:-1;;59476:487:0:o;59973:155::-;9420:13;:11;:13::i;:::-;60071:49:::1;60090:9;60101:18;60071;:49::i;:::-;59973:155:::0;;:::o;61510:142::-;9420:13;:11;:13::i;:::-;61602:19:::1;:42:::0;61510:142::o;41710:100::-;41764:13;41797:5;41790:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41710:100;:::o;43221:204::-;43289:7;43314:16;43322:7;43314;:16::i;:::-;43309:64;;43339:34;;-1:-1:-1;;;43339:34:0;;;;;;;;;;;43309:64;-1:-1:-1;43393:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43393:24:0;;43221:204::o;55758:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58724:157::-;58820:8;3941:30;3962:8;3941:20;:30::i;:::-;58841:32:::1;58855:8;58865:7;58841:13;:32::i;:::-;58724:157:::0;;;:::o;58889:163::-;58990:4;-1:-1:-1;;;;;3761:18:0;;3769:10;3761:18;3757:83;;3796:32;3817:10;3796:20;:32::i;:::-;59007:37:::1;59026:4;59032:2;59036:7;59007:18;:37::i;:::-;58889:163:::0;;;;:::o;24208:442::-;24305:7;24363:27;;;:17;:27;;;;;;;;24334:56;;;;;;;;;-1:-1:-1;;;;;24334:56:0;;;;;-1:-1:-1;;;24334:56:0;;;-1:-1:-1;;;;;24334:56:0;;;;;;;;24305:7;;24403:92;;-1:-1:-1;24454:29:0;;;;;;;;;24464:19;24454:29;-1:-1:-1;;;;;24454:29:0;;;;-1:-1:-1;;;24454:29:0;;-1:-1:-1;;;;;24454:29:0;;;;;24403:92;24545:23;;;;24507:21;;25016:5;;24532:36;;-1:-1:-1;;;;;24532:36:0;:10;:36;:::i;:::-;24531:58;;;;:::i;:::-;24610:16;;;-1:-1:-1;24507:82:0;;-1:-1:-1;;24208:442:0;;;;;;:::o;37923:1105::-;38012:7;38045:16;38055:5;38045:9;:16::i;:::-;38036:5;:25;38032:61;;38070:23;;-1:-1:-1;;;38070:23:0;;;;;;;;;;;38032:61;38104:22;38129:13;;-1:-1:-1;;;;;38129:13:0;;38104:22;;38379:557;38399:14;38395:1;:18;38379:557;;;38439:31;38473:14;;;:11;:14;;;;;;;;;38439:48;;;;;;;;;-1:-1:-1;;;;;38439:48:0;;;;-1:-1:-1;;;38439:48:0;;-1:-1:-1;;;;;38439:48:0;;;;;;;;-1:-1:-1;;;38439:48:0;;;;;;;;;;;;;;;;38506:73;;38551:8;;;38506:73;38601:14;;-1:-1:-1;;;;;38601:28:0;;38597:111;;38674:14;;;-1:-1:-1;38597:111:0;38751:5;-1:-1:-1;;;;;38730:26:0;:17;-1:-1:-1;;;;;38730:26:0;;38726:195;;38800:5;38785:11;:20;38781:85;;-1:-1:-1;38841:1:0;-1:-1:-1;38834:8:0;;-1:-1:-1;;;38834:8:0;38781:85;38888:13;;;;;38726:195;38420:516;38379:557;38415:3;;38379:557;;;;39012:8;;;60596:214;9420:13;:11;:13::i;:::-;60674:16:::1;::::0;::::1;::::0;::::1;;;:23;;60692:5;60674:23:::0;60671:132:::1;;60713:16;:23:::0;;-1:-1:-1;;60713:23:0::1;;;::::0;;60596:214::o;60671:132::-:1;60767:16;:24:::0;;-1:-1:-1;;60767:24:0::1;::::0;;60671:132:::1;60596:214::o:0;61085:157::-;9420:13;:11;:13::i;:::-;61144:9:::1;61167:7;9607:6:::0;;-1:-1:-1;;;;;9607:6:0;;9534:87;61167:7:::1;-1:-1:-1::0;;;;;61159:21:0::1;61188;61159:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61143:71;;;61229:4;61221:13;;;::::0;::::1;;61132:110;61085:157::o:0;59060:171::-;59165:4;-1:-1:-1;;;;;3761:18:0;;3769:10;3761:18;3757:83;;3796:32;3817:10;3796:20;:32::i;:::-;59182:41:::1;59205:4;59211:2;59215:7;59182:22;:41::i;57031:993::-:0;58076:9;58089:10;58076:23;58068:65;;;;-1:-1:-1;;;58068:65:0;;9157:2:1;58068:65:0;;;9139:21:1;9196:2;9176:18;;;9169:30;9235:31;9215:18;;;9208:59;9284:18;;58068:65:0;;;;;;;;;57148:10:::1;;57136:8;57120:13;36390:7:::0;36582:12;-1:-1:-1;;;;;;;;36582:12:0;;;;36566:13;;;:28;;;;36559:35;;36337:280;57120:13:::1;:24;;;;:::i;:::-;:38;;57112:70;;;::::0;-1:-1:-1;;;57112:70:0;;9648:2:1;57112:70:0::1;::::0;::::1;9630:21:1::0;9687:2;9667:18;;;9660:30;-1:-1:-1;;;9706:18:1;;;9699:50;9766:18;;57112:70:0::1;9446:344:1::0;57112:70:0::1;9607:6:::0;;-1:-1:-1;;;;;9607:6:0;57203:10:::1;:21;57199:764;;57251:18;::::0;::::1;;57243:56;;;::::0;-1:-1:-1;;;57243:56:0;;9997:2:1;57243:56:0::1;::::0;::::1;9979:21:1::0;10036:2;10016:18;;;10009:30;10075:27;10055:18;;;10048:55;10120:18;;57243:56:0::1;9795:349:1::0;57243:56:0::1;57359:14;;57347:8;57323:21;57333:10;57323:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;57315:87;;;::::0;-1:-1:-1;;;57315:87:0;;10351:2:1;57315:87:0::1;::::0;::::1;10333:21:1::0;10390:2;10370:18;;;10363:30;10429:26;10409:18;;;10402:54;10473:18;;57315:87:0::1;10149:348:1::0;57315:87:0::1;57447:11;;57435:8;:23;;57427:56;;;::::0;-1:-1:-1;;;57427:56:0;;10704:2:1;57427:56:0::1;::::0;::::1;10686:21:1::0;10743:2;10723:18;;;10716:30;-1:-1:-1;;;10762:18:1;;;10755:50;10822:18;;57427:56:0::1;10502:344:1::0;57427:56:0::1;57534:18;;57522:8;57506:13;;:24;;;;:::i;:::-;:46;;57498:101;;;::::0;-1:-1:-1;;;57498:101:0;;11053:2:1;57498:101:0::1;::::0;::::1;11035:21:1::0;11092:2;11072:18;;;11065:30;11131:34;11111:18;;;11104:62;-1:-1:-1;;;11182:18:1;;;11175:40;11232:19;;57498:101:0::1;10851:406:1::0;57498:101:0::1;57677:10;57618:23;57666:22:::0;;;:10:::1;:22;::::0;;;;;57644:19:::1;::::0;:44:::1;::::0;57666:22;57644:44:::1;:::i;:::-;57618:70:::0;-1:-1:-1;57743:26:0::1;57618:70:::0;57743:8;:26:::1;:::i;:::-;57725:14;;:45;;;;:::i;:::-;57711:9;:60;;57703:92;;;::::0;-1:-1:-1;;;57703:92:0;;11594:2:1;57703:92:0::1;::::0;::::1;11576:21:1::0;11633:2;11613:18;;;11606:30;-1:-1:-1;;;11652:18:1;;;11645:49;11711:18;;57703:92:0::1;11392:343:1::0;57703:92:0::1;57848:10;57837:22;::::0;;;:10:::1;:22;::::0;;;;;:40:::1;::::0;57862:15;;57837:40:::1;:::i;:::-;57823:10;57812:22;::::0;;;:10:::1;:22;::::0;;;;:65;57909:13:::1;::::0;:31:::1;::::0;57925:15;;57909:31:::1;:::i;:::-;57893:13;:47:::0;-1:-1:-1;57199:764:0::1;57975:31;57985:10;57997:8;57975:9;:31::i;36910:713::-:0;36977:7;37022:13;;-1:-1:-1;;;;;37022:13:0;36977:7;;37236:328;37256:14;37252:1;:18;37236:328;;;37296:31;37330:14;;;:11;:14;;;;;;;;;37296:48;;;;;;;;;-1:-1:-1;;;;;37296:48:0;;;;-1:-1:-1;;;37296:48:0;;-1:-1:-1;;;;;37296:48:0;;;;;;;;-1:-1:-1;;;37296:48:0;;;;;;;;;;;;;;37363:186;;37428:5;37413:11;:20;37409:85;;-1:-1:-1;37469:1:0;36910:713;-1:-1:-1;;;;36910:713:0:o;37409:85::-;37516:13;;;;;37363:186;-1:-1:-1;37272:3:0;;37236:328;;;;37592:23;;-1:-1:-1;;;37592:23:0;;;;;;;;;;;62038:103;9420:13;:11;:13::i;:::-;62113:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;60166:179::-:0;9420:13;:11;:13::i;:::-;60233:8:::1;::::0;::::1;;:15;;:8;:15:::0;60230:108:::1;;60264:8;:15:::0;;-1:-1:-1;;60264:15:0::1;60275:4;60264:15;::::0;;60596:214::o;60230:108::-:1;60310:8;:16:::0;;-1:-1:-1;;60310:16:0::1;::::0;;60166:179::o;41519:124::-;41583:7;41610:20;41622:7;41610:11;:20::i;:::-;:25;;41519:124;-1:-1:-1;;41519:124:0:o;56712:311::-;9420:13;:11;:13::i;:::-;56835:34;;::::1;56827:74;;;::::0;-1:-1:-1;;;56827:74:0;;11942:2:1;56827:74:0::1;::::0;::::1;11924:21:1::0;11981:2;11961:18;;;11954:30;12020:29;12000:18;;;11993:57;12067:18;;56827:74:0::1;11740:351:1::0;56827:74:0::1;56918:9;56914:102;56933:19:::0;;::::1;56914:102;;;56969:35;56979:8;;56988:1;56979:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56992:8;;57001:1;56992:11;;;;;;;:::i;:::-;;;;;;;56969:9;:35::i;:::-;56954:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56914:102;;;;56712:311:::0;;;;:::o;61892:138::-;9420:13;:11;:13::i;:::-;61982:18:::1;:40:::0;61892:138::o;39536:206::-;39600:7;-1:-1:-1;;;;;39624:19:0;;39620:60;;39652:28;;-1:-1:-1;;;39652:28:0;;;;;;;;;;;39620:60;-1:-1:-1;;;;;;39706:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;39706:27:0;;39536:206::o;10182:103::-;9420:13;:11;:13::i;:::-;10247:30:::1;10274:1;10247:18;:30::i;61380:122::-:0;9420:13;:11;:13::i;:::-;61462:14:::1;:32:::0;61380:122::o;61250:::-;9420:13;:11;:13::i;:::-;61332:14:::1;:32:::0;61250:122::o;60958:116::-;9420:13;:11;:13::i;:::-;61040:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;41879:104::-:0;41935:13;41968:7;41961:14;;;;;:::i;58540:176::-;58644:8;3941:30;3962:8;3941:20;:30::i;:::-;58665:43:::1;58689:8;58699;58665:23;:43::i;61660:110::-:0;9420:13;:11;:13::i;:::-;61736:11:::1;:26:::0;61660:110::o;59239:228::-;59390:4;-1:-1:-1;;;;;3761:18:0;;3769:10;3761:18;3757:83;;3796:32;3817:10;3796:20;:32::i;:::-;59412:47:::1;59435:4;59441:2;59445:7;59454:4;59412:22;:47::i;58167:365::-:0;58240:13;58271:16;58279:7;58271;:16::i;:::-;58266:59;;58296:29;;-1:-1:-1;;;58296:29:0;;;;;;;;;;;58266:59;58341:8;;;;:17;;:8;:17;58338:66;;58378:14;58371:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58167:365;;;:::o;58338:66::-;58435:7;58429:21;;;;;:::i;:::-;;;58454:1;58429:26;:95;;;;;;;;;;;;;;;;;58482:7;58491:18;:7;:16;:18::i;:::-;58465:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58422:102;58167:365;-1:-1:-1;;58167:365:0:o;60364:222::-;9420:13;:11;:13::i;:::-;60444:18:::1;::::0;::::1;;:25;;:18;:25:::0;60441:138:::1;;60485:18;:25:::0;;-1:-1:-1;;60485:25:0::1;60506:4;60485:25;::::0;;60596:214::o;60441:138::-:1;60541:18;:26:::0;;-1:-1:-1;;60541:26:0::1;::::0;;60364:222::o;55793:25::-;;;;;;;:::i;61778:106::-;9420:13;:11;:13::i;:::-;61852:10:::1;:24:::0;61778:106::o;60820:126::-;9420:13;:11;:13::i;:::-;60906:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;10440:201::-:0;9420:13;:11;:13::i;:::-;-1:-1:-1;;;;;10529:22:0;::::1;10521:73;;;::::0;-1:-1:-1;;;10521:73:0;;14310:2:1;10521:73:0::1;::::0;::::1;14292:21:1::0;14349:2;14329:18;;;14322:30;14388:34;14368:18;;;14361:62;-1:-1:-1;;;14439:18:1;;;14432:36;14485:19;;10521:73:0::1;14108:402:1::0;10521:73:0::1;10605:28;10624:8;10605:18;:28::i;11733:422::-:0;12100:20;12139:8;;;11733:422::o;39100:372::-;39202:4;-1:-1:-1;;;;;;39239:40:0;;-1:-1:-1;;;39239:40:0;;:105;;-1:-1:-1;;;;;;;39296:48:0;;-1:-1:-1;;;39296:48:0;39239:105;:172;;;-1:-1:-1;;;;;;;39361:50:0;;-1:-1:-1;;;39361:50:0;39239:172;:225;;;-1:-1:-1;;;;;;;;;;22536:40:0;;;39428:36;22427:157;23938:215;24040:4;-1:-1:-1;;;;;;24064:41:0;;-1:-1:-1;;;24064:41:0;;:81;;;24109:36;24133:11;24109:23;:36::i;9699:132::-;9607:6;;-1:-1:-1;;;;;9607:6:0;8064:10;9763:23;9755:68;;;;-1:-1:-1;;;9755:68:0;;14717:2:1;9755:68:0;;;14699:21:1;;;14736:18;;;14729:30;14795:34;14775:18;;;14768:62;14847:18;;9755:68:0;14515:356:1;25300:332:0;25016:5;-1:-1:-1;;;;;25403:33:0;;;;25395:88;;;;-1:-1:-1;;;25395:88:0;;15078:2:1;25395:88:0;;;15060:21:1;15117:2;15097:18;;;15090:30;15156:34;15136:18;;;15129:62;-1:-1:-1;;;15207:18:1;;;15200:40;15257:19;;25395:88:0;14876:406:1;25395:88:0;-1:-1:-1;;;;;25502:22:0;;25494:60;;;;-1:-1:-1;;;25494:60:0;;15489:2:1;25494:60:0;;;15471:21:1;15528:2;15508:18;;;15501:30;15567:27;15547:18;;;15540:55;15612:18;;25494:60:0;15287:349:1;25494:60:0;25589:35;;;;;;;;;-1:-1:-1;;;;;25589:35:0;;;;;;-1:-1:-1;;;;;25589:35:0;;;;;;;;;;-1:-1:-1;;;25567:57:0;;;;:19;:57;25300:332::o;45184:144::-;45241:4;45275:13;;-1:-1:-1;;;;;45275:13:0;45265:23;;:55;;;;-1:-1:-1;;45293:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;45293:27:0;;;;45292:28;;45184:144::o;3999:313::-;3002:42;4084:45;:49;4080:225;;4155:67;;-1:-1:-1;;;4155:67:0;;4206:4;4155:67;;;15853:34:1;-1:-1:-1;;;;;15923:15:1;;15903:18;;;15896:43;3002:42:0;;4155;;15788:18:1;;4155:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4150:144;;4250:28;;-1:-1:-1;;;4250:28:0;;-1:-1:-1;;;;;2263:32:1;;4250:28:0;;;2245:51:1;2218:18;;4250:28:0;2099:203:1;42776:379:0;42857:13;42873:24;42889:7;42873:15;:24::i;:::-;42857:40;;42918:5;-1:-1:-1;;;;;42912:11:0;:2;-1:-1:-1;;;;;42912:11:0;;42908:48;;42932:24;;-1:-1:-1;;;42932:24:0;;;;;;;;;;;42908:48;8064:10;-1:-1:-1;;;;;42973:21:0;;;;;;:63;;-1:-1:-1;42999:37:0;43016:5;8064:10;43855:164;:::i;42999:37::-;42998:38;42973:63;42969:138;;;43060:35;;-1:-1:-1;;;43060:35:0;;;;;;;;;;;42969:138;43119:28;43128:2;43132:7;43141:5;43119:8;:28::i;44086:170::-;44220:28;44230:4;44236:2;44240:7;44220:9;:28::i;44327:185::-;44465:39;44482:4;44488:2;44492:7;44465:39;;;;;;;;;;;;:16;:39::i;45336:104::-;45405:27;45415:2;45419:8;45405:27;;;;;;;;;;;;:9;:27::i;40374:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;40540:13:0;;40484:7;;-1:-1:-1;;;;;40540:13:0;40533:20;;40529:861;;;40574:31;40608:17;;;:11;:17;;;;;;;;;40574:51;;;;;;;;;-1:-1:-1;;;;;40574:51:0;;;;-1:-1:-1;;;40574:51:0;;-1:-1:-1;;;;;40574:51:0;;;;;;;;-1:-1:-1;;;40574:51:0;;;;;;;;;;;;;;40644:731;;40694:14;;-1:-1:-1;;;;;40694:28:0;;40690:101;;40758:9;40374:1083;-1:-1:-1;;;40374:1083:0:o;40690:101::-;-1:-1:-1;;;41135:6:0;41180:17;;;;:11;:17;;;;;;;;;41168:29;;;;;;;;;-1:-1:-1;;;;;41168:29:0;;;;;-1:-1:-1;;;41168:29:0;;-1:-1:-1;;;;;41168:29:0;;;;;;;;-1:-1:-1;;;41168:29:0;;;;;;;;;;;;;41228:28;41224:109;;41296:9;40374:1083;-1:-1:-1;;;40374:1083:0:o;41224:109::-;41095:261;;;40555:835;40529:861;41418:31;;-1:-1:-1;;;41418:31:0;;;;;;;;;;;10801:191;10894:6;;;-1:-1:-1;;;;;10911:17:0;;;-1:-1:-1;;;;;;10911:17:0;;;;;;;10944:40;;10894:6;;;10911:17;10894:6;;10944:40;;10875:16;;10944:40;10864:128;10801:191;:::o;43497:287::-;8064:10;-1:-1:-1;;;;;43596:24:0;;;43592:54;;43629:17;;-1:-1:-1;;;43629:17:0;;;;;;;;;;;43592:54;8064:10;43659:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43659:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43659:53:0;;;;;;;;;;43728:48;;540:41:1;;;43659:42:0;;8064:10;43728:48;;513:18:1;43728:48:0;;;;;;;43497:287;;:::o;44583:342::-;44750:28;44760:4;44766:2;44770:7;44750:9;:28::i;:::-;44794:48;44817:4;44823:2;44827:7;44836:5;44794:22;:48::i;:::-;44789:129;;44866:40;;-1:-1:-1;;;44866:40:0;;;;;;;;;;;6628:751;6684:13;6905:5;6914:1;6905:10;6901:53;;-1:-1:-1;;6932:10:0;;;;;;;;;;;;-1:-1:-1;;;6932:10:0;;;;;6628:751::o;6901:53::-;6979:5;6964:12;7020:78;7027:9;;7020:78;;7053:8;;;;:::i;:::-;;-1:-1:-1;7076:10:0;;-1:-1:-1;7084:2:0;7076:10;;:::i;:::-;;;7020:78;;;7108:19;7140:6;-1:-1:-1;;;;;7130:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7130:17:0;-1:-1:-1;7198:5:0;;-1:-1:-1;7108:39:0;-1:-1:-1;7174:6:0;7214:126;7221:9;;7214:126;;7291:9;7298:2;7291:4;:9;:::i;:::-;7278:23;;:2;:23;:::i;:::-;7265:38;;7247:6;7254:7;;;:::i;:::-;;;;7247:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7247:56:0;;;;;;;;-1:-1:-1;7318:10:0;7326:2;7318:10;;:::i;:::-;;;7214:126;;;-1:-1:-1;7364:6:0;6628:751;-1:-1:-1;;;;6628:751:0:o;52408:196::-;52523:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52523:29:0;-1:-1:-1;;;;;52523:29:0;;;;;;;;;52568:28;;52523:24;;52568:28;;;;;;;52408:196;;;:::o;47909:2112::-;48024:35;48062:20;48074:7;48062:11;:20::i;:::-;48137:18;;48024:58;;-1:-1:-1;48095:22:0;;-1:-1:-1;;;;;48121:34:0;8064:10;-1:-1:-1;;;;;48121:34:0;;:101;;;-1:-1:-1;48189:18:0;;48172:50;;8064:10;43855:164;:::i;48172:50::-;48121:154;;;-1:-1:-1;8064:10:0;48239:20;48251:7;48239:11;:20::i;:::-;-1:-1:-1;;;;;48239:36:0;;48121:154;48095:181;;48294:17;48289:66;;48320:35;;-1:-1:-1;;;48320:35:0;;;;;;;;;;;48289:66;48392:4;-1:-1:-1;;;;;48370:26:0;:13;:18;;;-1:-1:-1;;;;;48370:26:0;;48366:67;;48405:28;;-1:-1:-1;;;48405:28:0;;;;;;;;;;;48366:67;-1:-1:-1;;;;;48448:16:0;;48444:52;;48473:23;;-1:-1:-1;;;48473:23:0;;;;;;;;;;;48444:52;48617:49;48634:1;48638:7;48647:13;:18;;;48617:8;:49::i;:::-;-1:-1:-1;;;;;48962:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48962:31:0;;;-1:-1:-1;;;;;48962:31:0;;;-1:-1:-1;;48962:31:0;;;;;;;49008:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49008:29:0;;;;;;;;;;;49054:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;49099:61:0;;;;-1:-1:-1;;;49144:15:0;49099:61;;;;;;;;;;;49434:11;;;49464:24;;;;;:29;49434:11;;49464:29;49460:445;;49689:13;;-1:-1:-1;;;;;49689:13:0;49675:27;;49671:219;;;49759:18;;;49727:24;;;:11;:24;;;;;;;;:50;;49842:28;;;;-1:-1:-1;;;;;49800:70:0;-1:-1:-1;;;49800:70:0;-1:-1:-1;;;;;;49800:70:0;;;-1:-1:-1;;;;;49727:50:0;;;49800:70;;;;;;;49671:219;48937:979;49952:7;49948:2;-1:-1:-1;;;;;49933:27:0;49942:4;-1:-1:-1;;;;;49933:27:0;;;;;;;;;;;49971:42;58889:163;45803:167;45926:36;45936:2;45940:8;45950:5;45957:4;45926:9;:36::i;53169:790::-;53324:4;-1:-1:-1;;;;;53345:13:0;;12100:20;12139:8;53341:611;;53381:72;;-1:-1:-1;;;53381:72:0;;-1:-1:-1;;;;;53381:36:0;;;;;:72;;8064:10;;53432:4;;53438:7;;53447:5;;53381:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53381:72:0;;;;;;;;-1:-1:-1;;53381:72:0;;;;;;;;;;;;:::i;:::-;;;53377:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53627:6;:13;53644:1;53627:18;53623:259;;53677:40;;-1:-1:-1;;;53677:40:0;;;;;;;;;;;53623:259;53832:6;53826:13;53817:6;53813:2;53809:15;53802:38;53377:520;-1:-1:-1;;;;;;53504:55:0;-1:-1:-1;;;53504:55:0;;-1:-1:-1;53497:62:0;;53341:611;-1:-1:-1;53936:4:0;53341:611;53169:790;;;;;;:::o;46229:1426::-;46372:20;46395:13;-1:-1:-1;;;;;46395:13:0;-1:-1:-1;;;;;46423:16:0;;46419:48;;46448:19;;-1:-1:-1;;;46448:19:0;;;;;;;;;;;46419:48;46482:8;46494:1;46482:13;46478:44;;46504:18;;-1:-1:-1;;;46504:18:0;;;;;;;;;;;46478:44;-1:-1:-1;;;;;46874:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;46933:49:0;;-1:-1:-1;;;;;46874:44:0;;;;;;;46933:49;;;;-1:-1:-1;;46874:44:0;;;;;;46933:49;;;;;;;;;;;;;;;;46999:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;47049:66:0;;;;-1:-1:-1;;;47099:15:0;47049:66;;;;;;;;;;;46999:25;;47184:328;47204:8;47200:1;:12;47184:328;;;47243:38;;47268:12;;-1:-1:-1;;;;;47243:38:0;;;47260:1;;47243:38;;47260:1;;47243:38;47304:4;:68;;;;;47313:59;47344:1;47348:2;47352:12;47366:5;47313:22;:59::i;:::-;47312:60;47304:68;47300:164;;;47404:40;;-1:-1:-1;;;47404:40:0;;;;;;;;;;;47300:164;47482:14;;;;;47214:3;47184:328;;;-1:-1:-1;47528:13:0;:37;;-1:-1:-1;;;;;;47528:37:0;-1:-1:-1;;;;;47528:37:0;;;;;;;;;;47587:60;58889:163;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:180::-;1200:6;1253:2;1241:9;1232:7;1228:23;1224:32;1221:52;;;1269:1;1266;1259:12;1221:52;-1:-1:-1;1292:23:1;;1141:180;-1:-1:-1;1141:180:1:o;1326:258::-;1398:1;1408:113;1422:6;1419:1;1416:13;1408:113;;;1498:11;;;1492:18;1479:11;;;1472:39;1444:2;1437:10;1408:113;;;1539:6;1536:1;1533:13;1530:48;;;-1:-1:-1;;1574:1:1;1556:16;;1549:27;1326:258::o;1589:269::-;1642:3;1680:5;1674:12;1707:6;1702:3;1695:19;1723:63;1779:6;1772:4;1767:3;1763:14;1756:4;1749:5;1745:16;1723:63;:::i;:::-;1840:2;1819:15;-1:-1:-1;;1815:29:1;1806:39;;;;1847:4;1802:50;;1589:269;-1:-1:-1;;1589:269:1:o;1863:231::-;2012:2;2001:9;1994:21;1975:4;2032:56;2084:2;2073:9;2069:18;2061:6;2032:56;:::i;2307:254::-;2375:6;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;2551:2;2536:18;;;;2523:32;;-1:-1:-1;;;2307:254:1:o;2566:186::-;2625:6;2678:2;2666:9;2657:7;2653:23;2649:32;2646:52;;;2694:1;2691;2684:12;2646:52;2717:29;2736:9;2717:29;:::i;2939:328::-;3016:6;3024;3032;3085:2;3073:9;3064:7;3060:23;3056:32;3053:52;;;3101:1;3098;3091:12;3053:52;3124:29;3143:9;3124:29;:::i;:::-;3114:39;;3172:38;3206:2;3195:9;3191:18;3172:38;:::i;:::-;3162:48;;3257:2;3246:9;3242:18;3229:32;3219:42;;2939:328;;;;;:::o;3272:248::-;3340:6;3348;3401:2;3389:9;3380:7;3376:23;3372:32;3369:52;;;3417:1;3414;3407:12;3369:52;-1:-1:-1;;3440:23:1;;;3510:2;3495:18;;;3482:32;;-1:-1:-1;3272:248:1:o;4043:127::-;4104:10;4099:3;4095:20;4092:1;4085:31;4135:4;4132:1;4125:15;4159:4;4156:1;4149:15;4175:632;4240:5;-1:-1:-1;;;;;4311:2:1;4303:6;4300:14;4297:40;;;4317:18;;:::i;:::-;4392:2;4386:9;4360:2;4446:15;;-1:-1:-1;;4442:24:1;;;4468:2;4438:33;4434:42;4422:55;;;4492:18;;;4512:22;;;4489:46;4486:72;;;4538:18;;:::i;:::-;4578:10;4574:2;4567:22;4607:6;4598:15;;4637:6;4629;4622:22;4677:3;4668:6;4663:3;4659:16;4656:25;4653:45;;;4694:1;4691;4684:12;4653:45;4744:6;4739:3;4732:4;4724:6;4720:17;4707:44;4799:1;4792:4;4783:6;4775;4771:19;4767:30;4760:41;;;;4175:632;;;;;:::o;4812:451::-;4881:6;4934:2;4922:9;4913:7;4909:23;4905:32;4902:52;;;4950:1;4947;4940:12;4902:52;4990:9;4977:23;-1:-1:-1;;;;;5015:6:1;5012:30;5009:50;;;5055:1;5052;5045:12;5009:50;5078:22;;5131:4;5123:13;;5119:27;-1:-1:-1;5109:55:1;;5160:1;5157;5150:12;5109:55;5183:74;5249:7;5244:2;5231:16;5226:2;5222;5218:11;5183:74;:::i;5268:367::-;5331:8;5341:6;5395:3;5388:4;5380:6;5376:17;5372:27;5362:55;;5413:1;5410;5403:12;5362:55;-1:-1:-1;5436:20:1;;-1:-1:-1;;;;;5468:30:1;;5465:50;;;5511:1;5508;5501:12;5465:50;5548:4;5540:6;5536:17;5524:29;;5608:3;5601:4;5591:6;5588:1;5584:14;5576:6;5572:27;5568:38;5565:47;5562:67;;;5625:1;5622;5615:12;5640:773;5762:6;5770;5778;5786;5839:2;5827:9;5818:7;5814:23;5810:32;5807:52;;;5855:1;5852;5845:12;5807:52;5895:9;5882:23;-1:-1:-1;;;;;5965:2:1;5957:6;5954:14;5951:34;;;5981:1;5978;5971:12;5951:34;6020:70;6082:7;6073:6;6062:9;6058:22;6020:70;:::i;:::-;6109:8;;-1:-1:-1;5994:96:1;-1:-1:-1;6197:2:1;6182:18;;6169:32;;-1:-1:-1;6213:16:1;;;6210:36;;;6242:1;6239;6232:12;6210:36;;6281:72;6345:7;6334:8;6323:9;6319:24;6281:72;:::i;:::-;5640:773;;;;-1:-1:-1;6372:8:1;-1:-1:-1;;;;5640:773:1:o;6418:118::-;6504:5;6497:13;6490:21;6483:5;6480:32;6470:60;;6526:1;6523;6516:12;6541:315;6606:6;6614;6667:2;6655:9;6646:7;6642:23;6638:32;6635:52;;;6683:1;6680;6673:12;6635:52;6706:29;6725:9;6706:29;:::i;:::-;6696:39;;6785:2;6774:9;6770:18;6757:32;6798:28;6820:5;6798:28;:::i;6861:667::-;6956:6;6964;6972;6980;7033:3;7021:9;7012:7;7008:23;7004:33;7001:53;;;7050:1;7047;7040:12;7001:53;7073:29;7092:9;7073:29;:::i;:::-;7063:39;;7121:38;7155:2;7144:9;7140:18;7121:38;:::i;:::-;7111:48;;7206:2;7195:9;7191:18;7178:32;7168:42;;7261:2;7250:9;7246:18;7233:32;-1:-1:-1;;;;;7280:6:1;7277:30;7274:50;;;7320:1;7317;7310:12;7274:50;7343:22;;7396:4;7388:13;;7384:27;-1:-1:-1;7374:55:1;;7425:1;7422;7415:12;7374:55;7448:74;7514:7;7509:2;7496:16;7491:2;7487;7483:11;7448:74;:::i;:::-;7438:84;;;6861:667;;;;;;;:::o;7533:260::-;7601:6;7609;7662:2;7650:9;7641:7;7637:23;7633:32;7630:52;;;7678:1;7675;7668:12;7630:52;7701:29;7720:9;7701:29;:::i;:::-;7691:39;;7749:38;7783:2;7772:9;7768:18;7749:38;:::i;:::-;7739:48;;7533:260;;;;;:::o;7798:380::-;7877:1;7873:12;;;;7920;;;7941:61;;7995:4;7987:6;7983:17;7973:27;;7941:61;8048:2;8040:6;8037:14;8017:18;8014:38;8011:161;;8094:10;8089:3;8085:20;8082:1;8075:31;8129:4;8126:1;8119:15;8157:4;8154:1;8147:15;8011:161;;7798:380;;;:::o;8183:127::-;8244:10;8239:3;8235:20;8232:1;8225:31;8275:4;8272:1;8265:15;8299:4;8296:1;8289:15;8315:168;8355:7;8421:1;8417;8413:6;8409:14;8406:1;8403:21;8398:1;8391:9;8384:17;8380:45;8377:71;;;8428:18;;:::i;:::-;-1:-1:-1;8468:9:1;;8315:168::o;8488:127::-;8549:10;8544:3;8540:20;8537:1;8530:31;8580:4;8577:1;8570:15;8604:4;8601:1;8594:15;8620:120;8660:1;8686;8676:35;;8691:18;;:::i;:::-;-1:-1:-1;8725:9:1;;8620:120::o;9313:128::-;9353:3;9384:1;9380:6;9377:1;9374:13;9371:39;;;9390:18;;:::i;:::-;-1:-1:-1;9426:9:1;;9313:128::o;11262:125::-;11302:4;11330:1;11327;11324:8;11321:34;;;11335:18;;:::i;:::-;-1:-1:-1;11372:9:1;;11262:125::o;12096:127::-;12157:10;12152:3;12148:20;12145:1;12138:31;12188:4;12185:1;12178:15;12212:4;12209:1;12202:15;12228:135;12267:3;12288:17;;;12285:43;;12308:18;;:::i;:::-;-1:-1:-1;12355:1:1;12344:13;;12228:135::o;12494:185::-;12536:3;12574:5;12568:12;12589:52;12634:6;12629:3;12622:4;12615:5;12611:16;12589:52;:::i;:::-;12657:16;;;;;12494:185;-1:-1:-1;;12494:185:1:o;12802:1301::-;13079:3;13108:1;13141:6;13135:13;13171:3;13193:1;13221:9;13217:2;13213:18;13203:28;;13281:2;13270:9;13266:18;13303;13293:61;;13347:4;13339:6;13335:17;13325:27;;13293:61;13373:2;13421;13413:6;13410:14;13390:18;13387:38;13384:165;;-1:-1:-1;;;13448:33:1;;13504:4;13501:1;13494:15;13534:4;13455:3;13522:17;13384:165;13565:18;13592:104;;;;13710:1;13705:320;;;;13558:467;;13592:104;-1:-1:-1;;13625:24:1;;13613:37;;13670:16;;;;-1:-1:-1;13592:104:1;;13705:320;12441:1;12434:14;;;12478:4;12465:18;;13800:1;13814:165;13828:6;13825:1;13822:13;13814:165;;;13906:14;;13893:11;;;13886:35;13949:16;;;;13843:10;;13814:165;;;13818:3;;14008:6;14003:3;13999:16;13992:23;;13558:467;;;;;;;14041:56;14066:30;14092:3;14084:6;14066:30;:::i;:::-;-1:-1:-1;;;12744:20:1;;12789:1;12780:11;;12684:113;14041:56;14034:63;12802:1301;-1:-1:-1;;;;;12802:1301:1:o;15950:245::-;16017:6;16070:2;16058:9;16049:7;16045:23;16041:32;16038:52;;;16086:1;16083;16076:12;16038:52;16118:9;16112:16;16137:28;16159:5;16137:28;:::i;16200:112::-;16232:1;16258;16248:35;;16263:18;;:::i;:::-;-1:-1:-1;16297:9:1;;16200:112::o;16317:136::-;16356:3;16384:5;16374:39;;16393:18;;:::i;:::-;-1:-1:-1;;;16429:18:1;;16317:136::o;16458:500::-;-1:-1:-1;;;;;16727:15:1;;;16709:34;;16779:15;;16774:2;16759:18;;16752:43;16826:2;16811:18;;16804:34;;;16874:3;16869:2;16854:18;;16847:31;;;16652:4;;16895:57;;16932:19;;16924:6;16895:57;:::i;:::-;16887:65;16458:500;-1:-1:-1;;;;;;16458:500:1:o;16963:249::-;17032:6;17085:2;17073:9;17064:7;17060:23;17056:32;17053:52;;;17101:1;17098;17091:12;17053:52;17133:9;17127:16;17152:30;17176:5;17152:30;:::i

Swarm Source

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