ETH Price: $3,058.02 (+1.12%)
Gas: 4 Gwei

Token

XXD34DPUNK5 (DPUNK5)
 

Overview

Max Total Supply

3,333 DPUNK5

Holders

570

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
wortel.eth
Balance
10 DPUNK5
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-09
*/

// 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 an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        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 {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

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

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        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) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                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 (`_mint`),
     */
    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 {
        _mint(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 _mint(
        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 = 3333;    
    
    bool public revealed = true;

    uint256 public publicSaleCost = 0.002 ether;
    uint256 public max_per_wallet = 20;    
    uint256 public max_free_per_wallet = 1;    
    uint256 public max_per_txn = 10;
    uint256 public freeMintCount;  
    uint256 public freeMintCountLimit = 3333;

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

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("XXD34DPUNK5", "DPUNK5") {
     
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);   
    setRoyaltyInfo(owner(),500);
    contractURI = _contractURI;
    _mint(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 _mint(uint256 quantity) public payable nonContract {

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

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

            require(public_mint_status, "Holddd on"); 
            require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Gib other wallet balance");          
            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, "Not here...");

        _;

    }
  
    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":"uint256","name":"quantity","type":"uint256"}],"name":"_mint","outputs":[],"stateMutability":"payable","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":[],"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"}]

6080604052700100000000000000000000000000000001600055600d805461ffff1916610100179055610d05600e819055600f805460ff1916600190811790915566071afd498d00006010556014601155601255600a6013556015553480156200006857600080fd5b506040516200374f3803806200374f8339810160408190526200008b9162000cd4565b604080518082018252600b81526a58584433344450554e4b3560a81b6020808301918252835180850190945260068452654450554e4b3560d01b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000f491859162000b58565b5080516200010a90600290602084019062000b58565b5050506200012762000121620002d060201b60201c565b620002d4565b6daaeb6d7670e522a718067333cd4e3b156200026c578015620001ba57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200019b57600080fd5b505af1158015620001b0573d6000803e3d6000fd5b505050506200026c565b6001600160a01b038216156200020b5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000180565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025257600080fd5b505af115801562000267573d6000803e3d6000fd5b505050505b506200027a90508362000326565b620002858262000349565b620002a56200029c6007546001600160a01b031690565b6101f462000368565b8051620002ba90600c90602084019062000b58565b50620002c760016200037e565b50505062000e97565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000330620006aa565b80516200034590600a90602084019062000b58565b5050565b62000353620006aa565b80516200034590600b90602084019062000b58565b62000372620006aa565b62000345828262000708565b323314620003c15760405162461bcd60e51b815260206004820152600b60248201526a2737ba103432b93297171760a91b60448201526064015b60405180910390fd5b600e5481620003e86000546001600160801b03600160801b82048116918116919091031690565b620003f4919062000d7b565b1115620004445760405162461bcd60e51b815260206004820152601460248201527f4e6f204d6f7265204e46547320746f204d696e740000000000000000000000006044820152606401620003b8565b6007546001600160a01b031633146200069b57600d5460ff16620004975760405162461bcd60e51b81526020600482015260096024820152682437b63232321037b760b91b6044820152606401620003b8565b60115481620004a63362000809565b620004b2919062000d7b565b1115620005025760405162461bcd60e51b815260206004820152601860248201527f476962206f746865722077616c6c65742062616c616e636500000000000000006044820152606401620003b8565b601354811115620005565760405162461bcd60e51b815260206004820152601460248201527f4d6178207065722074786e2065786365656465640000000000000000000000006044820152606401620003b8565b6015548160145462000569919062000d7b565b1115620005cc5760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401620003b8565b33600090815260176020526040812054601254620005eb919062000d96565b9050620005f9818362000d96565b60105462000608919062000db0565b341015620006595760405162461bcd60e51b815260206004820152601360248201527f4e6f7420456e6f756768204554482053656e74000000000000000000000000006044820152606401620003b8565b336000908152601760205260409020546200067690829062000d7b565b336000908152601760205260409020556014546200069690829062000d7b565b601455505b620006a7338262000858565b50565b6007546001600160a01b03163314620007065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003b8565b565b6127106001600160601b0382161115620007785760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003b8565b6001600160a01b038216620007d05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003b8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b60006001600160a01b03821662000833576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b620003458282604051806020016040528060008152506200087a60201b60201c565b6200088983838360016200088e565b505050565b6000546001600160801b03166001600160a01b038516620008c157604051622e076360e81b815260040160405180910390fd5b83600003620008e35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015620009fa5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015620009ce5750620009cc600088848862000a30565b155b15620009ed576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910162000973565b50600080546001600160801b0319166001600160801b039290921691909117815562000a239050565b5050505050565b50505050565b600062000a51846001600160a01b031662000b5260201b620015451760201c565b1562000b4657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000a8b90339089908890889060040162000dd2565b6020604051808303816000875af192505050801562000ac9575060408051601f3d908101601f1916820190925262000ac69181019062000e28565b60015b62000b2b573d80801562000afa576040519150601f19603f3d011682016040523d82523d6000602084013e62000aff565b606091505b50805160000362000b23576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000b4a565b5060015b949350505050565b3b151590565b82805462000b669062000e5b565b90600052602060002090601f01602090048101928262000b8a576000855562000bd5565b82601f1062000ba557805160ff191683800117855562000bd5565b8280016001018555821562000bd5579182015b8281111562000bd557825182559160200191906001019062000bb8565b5062000be392915062000be7565b5090565b5b8082111562000be3576000815560010162000be8565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000c3157818101518382015260200162000c17565b8381111562000a2a5750506000910152565b600082601f83011262000c5557600080fd5b81516001600160401b038082111562000c725762000c7262000bfe565b604051601f8301601f19908116603f0116810190828211818310171562000c9d5762000c9d62000bfe565b8160405283815286602085880101111562000cb757600080fd5b62000cca84602083016020890162000c14565b9695505050505050565b60008060006060848603121562000cea57600080fd5b83516001600160401b038082111562000d0257600080fd5b62000d108783880162000c43565b9450602086015191508082111562000d2757600080fd5b62000d358783880162000c43565b9350604086015191508082111562000d4c57600080fd5b5062000d5b8682870162000c43565b9150509250925092565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000d915762000d9162000d65565b500190565b60008282101562000dab5762000dab62000d65565b500390565b600081600019048311821515161562000dcd5762000dcd62000d65565b500290565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000e118160a085016020870162000c14565b601f01601f19169190910160a00195945050505050565b60006020828403121562000e3b57600080fd5b81516001600160e01b03198116811462000e5457600080fd5b9392505050565b600181811c9082168062000e7057607f821691505b60208210810362000e9157634e487b7160e01b600052602260045260246000fd5b50919050565b6128a88062000ea76000396000f3fe6080604052600436106102e45760003560e01c80635b8ad42911610190578063aab3e3cf116100dc578063dcc7eb3511610095578063e985e9c51161006f578063e985e9c51461087e578063ec9496ba146108c7578063f2c4ce1e146108e7578063f2fde38b1461090757600080fd5b8063dcc7eb351461083e578063e55f58bb14610853578063e8a3d4851461086957600080fd5b8063aab3e3cf14610793578063ab53fcaa146107b3578063b88d4fde146107c9578063c87b56dd146107e9578063d1e1457714610809578063d685b6451461082857600080fd5b806381c4cede116101495780638dbb7c06116101235780638dbb7c061461071e578063938e3d7b1461073e57806395d89b411461075e578063a22cb4651461077357600080fd5b806381c4cede146106c6578063835d997e146106e05780638da5cb5b1461070057600080fd5b80635b8ad429146106295780636352211e1461063e578063672434821461065e5780636d1b9ebc1461067157806370a0823114610691578063715018a6146106b157600080fd5b80632c5261961161024f5780633ccfd60b11610208578063453afb0f116101e2578063453afb0f146105b95780634f6ccce7146105cf57806351830227146105ef57806355f804b31461060957600080fd5b80633ccfd60b1461056f57806341f434341461057757806342842e0e1461059957600080fd5b80632c526196146104ce5780632f745c59146104e157806332a825ce1461050157806332cb6b0c14610517578063389fcf061461052d57806339eea0131461055a57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf5780631015805b146103ef57806311f1eaee1461042a57806318160ddd1461044057806323b872dd1461046f5780632a55205a1461048f57600080fd5b806301ffc9a7146102e957806302fa7c471461031e578063040d19241461034057806306fdde0314610360578063081812fc14610382578063081c8c44146103ba575b600080fd5b3480156102f557600080fd5b506103096103043660046121ef565b610927565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e61033936600461222f565b610947565b005b34801561034c57600080fd5b5061033e61035b366004612272565b61095d565b34801561036c57600080fd5b5061037561096a565b60405161031591906122e3565b34801561038e57600080fd5b506103a261039d366004612272565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b50610375610a40565b3480156103db57600080fd5b5061033e6103ea3660046122f6565b610ace565b3480156103fb57600080fd5b5061041c61040a366004612320565b60166020526000908152604090205481565b604051908152602001610315565b34801561043657600080fd5b5061041c60155481565b34801561044c57600080fd5b5061041c6000546001600160801b03600160801b82048116918116919091031690565b34801561047b57600080fd5b5061033e61048a36600461233b565b610ae7565b34801561049b57600080fd5b506104af6104aa366004612377565b610b12565b604080516001600160a01b039093168352602083019190915201610315565b61033e6104dc366004612272565b610bc0565b3480156104ed57600080fd5b5061041c6104fc3660046122f6565b610ead565b34801561050d57600080fd5b5061041c60125481565b34801561052357600080fd5b5061041c600e5481565b34801561053957600080fd5b5061041c610548366004612320565b60176020526000908152604090205481565b34801561056657600080fd5b5061033e610fa7565b61033e610fe2565b34801561058357600080fd5b506103a26daaeb6d7670e522a718067333cd4e81565b3480156105a557600080fd5b5061033e6105b436600461233b565b61105b565b3480156105c557600080fd5b5061041c60105481565b3480156105db57600080fd5b5061041c6105ea366004612272565b611080565b3480156105fb57600080fd5b50600f546103099060ff1681565b34801561061557600080fd5b5061033e610624366004612424565b611129565b34801561063557600080fd5b5061033e611144565b34801561064a57600080fd5b506103a2610659366004612272565b611176565b61033e61066c3660046124b0565b611188565b34801561067d57600080fd5b5061033e61068c366004612272565b61124b565b34801561069d57600080fd5b5061041c6106ac366004612320565b611258565b3480156106bd57600080fd5b5061033e6112a6565b3480156106d257600080fd5b50600d546103099060ff1681565b3480156106ec57600080fd5b5061033e6106fb366004612272565b6112b8565b34801561070c57600080fd5b506007546001600160a01b03166103a2565b34801561072a57600080fd5b5061033e610739366004612272565b6112c5565b34801561074a57600080fd5b5061033e610759366004612424565b6112d2565b34801561076a57600080fd5b506103756112ed565b34801561077f57600080fd5b5061033e61078e366004612529565b6112fc565b34801561079f57600080fd5b5061033e6107ae366004612272565b611310565b3480156107bf57600080fd5b5061041c60115481565b3480156107d557600080fd5b5061033e6107e4366004612555565b61131d565b3480156107f557600080fd5b50610375610804366004612272565b611343565b34801561081557600080fd5b50600d5461030990610100900460ff1681565b34801561083457600080fd5b5061041c60135481565b34801561084a57600080fd5b5061033e611468565b34801561085f57600080fd5b5061041c60145481565b34801561087557600080fd5b5061037561149a565b34801561088a57600080fd5b506103096108993660046125d0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b5061033e6108e2366004612272565b6114a7565b3480156108f357600080fd5b5061033e610902366004612424565b6114b4565b34801561091357600080fd5b5061033e610922366004612320565b6114cf565b60006109328261154b565b806109415750610941826115b6565b92915050565b61094f6115db565b6109598282611635565b5050565b6109656115db565b601255565b60606001805461097990612603565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590612603565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a0782611732565b610a24576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610a4d90612603565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612603565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b81610ad881611766565b610ae2838361181f565b505050565b826001600160a01b0381163314610b0157610b0133611766565b610b0c8484846118a7565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b875750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba6906001600160601b031687612653565b610bb09190612688565b91519350909150505b9250929050565b323314610c025760405162461bcd60e51b815260206004820152600b60248201526a2737ba103432b93297171760a91b60448201526064015b60405180910390fd5b600e5481610c286000546001600160801b03600160801b82048116918116919091031690565b610c32919061269c565b1115610c775760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610bf9565b6007546001600160a01b03163314610ea057600d5460ff16610cc75760405162461bcd60e51b81526020600482015260096024820152682437b63232321037b760b91b6044820152606401610bf9565b60115481610cd433611258565b610cde919061269c565b1115610d2c5760405162461bcd60e51b815260206004820152601860248201527f476962206f746865722077616c6c65742062616c616e636500000000000000006044820152606401610bf9565b601354811115610d755760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610bf9565b60155481601454610d86919061269c565b1115610de75760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401610bf9565b33600090815260176020526040812054601254610e0491906126b4565b9050610e1081836126b4565b601054610e1d9190612653565b341015610e625760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610bf9565b33600090815260176020526040902054610e7d90829061269c565b33600090815260176020526040902055601454610e9b90829061269c565b601455505b610eaa33826118b2565b50565b6000610eb883611258565b8210610ed7576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610fa157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f4f5750610f99565b80516001600160a01b031615610f6457805192505b876001600160a01b0316836001600160a01b031603610f9757868403610f905750935061094192505050565b6001909301925b505b600101610ee8565b50600080fd5b610faf6115db565b600d54610100900460ff161515600003610fd457600d805461ff001916610100179055565b600d805461ff00191690555b565b610fea6115db565b6000610ffe6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611048576040519150601f19603f3d011682016040523d82523d6000602084013e61104d565b606091505b5050905080610eaa57600080fd5b826001600160a01b03811633146110755761107533611766565b610b0c8484846118cc565b600080546001600160801b031681805b8281101561110f57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611106578583036110ff5750949350505050565b6001909201915b50600101611090565b506040516329c8c00760e21b815260040160405180910390fd5b6111316115db565b805161095990600a906020840190612140565b61114c6115db565b600f5460ff16151560000361116a57600f805460ff19166001179055565b600f805460ff19169055565b6000611181826118e7565b5192915050565b6111906115db565b8281146111df5760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d6174636800000000006044820152606401610bf9565b60005b83811015611244576112328585838181106111ff576111ff6126cb565b90506020020160208101906112149190612320565b848484818110611226576112266126cb565b905060200201356118b2565b8061123c816126e1565b9150506111e2565b5050505050565b6112536115db565b601555565b60006001600160a01b038216611281576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6112ae6115db565b610fe06000611a09565b6112c06115db565b601155565b6112cd6115db565b601055565b6112da6115db565b805161095990600c906020840190612140565b60606002805461097990612603565b8161130681611766565b610ae28383611a5b565b6113186115db565b601355565b836001600160a01b03811633146113375761133733611766565b61124485858585611af0565b606061134e82611732565b61136b57604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361140c57600b805461138790612603565b80601f01602080910402602001604051908101604052809291908181526020018280546113b390612603565b80156114005780601f106113d557610100808354040283529160200191611400565b820191906000526020600020905b8154815290600101906020018083116113e357829003601f168201915b50505050509050919050565b600a805461141990612603565b90506000036114375760405180602001604052806000815250610941565b600a61144283611b24565b604051602001611453929190612716565b60405160208183030381529060405292915050565b6114706115db565b600d5460ff16151560000361148e57600d805460ff19166001179055565b600d805460ff19169055565b600c8054610a4d90612603565b6114af6115db565b600e55565b6114bc6115db565b805161095990600b906020840190612140565b6114d76115db565b6001600160a01b03811661153c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf9565b610eaa81611a09565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061157c57506001600160e01b03198216635b5e139f60e01b145b8061159757506001600160e01b0319821663780e9d6360e01b145b8061094157506301ffc9a760e01b6001600160e01b0319831614610941565b60006001600160e01b0319821663152a902d60e11b148061094157506109418261154b565b6007546001600160a01b03163314610fe05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6127106001600160601b03821611156116a35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610bf9565b6001600160a01b0382166116f95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610bf9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610941575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610eaa57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f791906127d0565b610eaa57604051633b79c77360e21b81526001600160a01b0382166004820152602401610bf9565b600061182a82611176565b9050806001600160a01b0316836001600160a01b03160361185e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061187e575061187c8133610899565b155b1561189c576040516367d9dca160e11b815260040160405180910390fd5b610ae2838383611c2f565b610ae2838383611c8b565b610959828260405180602001604052806000815250611ea5565b610ae28383836040518060200160405280600081525061131d565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156119f057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119ee5780516001600160a01b031615611985579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119e9579392505050565b611985565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611a845760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611afb848484611c8b565b611b0784848484611eb2565b610b0c576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b755780611b5f816126e1565b9150611b6e9050600a83612688565b9150611b4f565b6000816001600160401b03811115611b8f57611b8f612399565b6040519080825280601f01601f191660200182016040528015611bb9576020820181803683370190505b508593509050815b8315611c2657611bd2600a856127ed565b611bdd90603061269c565b60f81b82611bea83612801565b92508281518110611bfd57611bfd6126cb565b60200101906001600160f81b031916908160001a905350611c1f600a85612688565b9350611bc1565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c96826118e7565b80519091506000906001600160a01b0316336001600160a01b03161480611cc457508151611cc49033610899565b80611cdf575033611cd4846109fc565b6001600160a01b0316145b905080611cff57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d345760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d5b57604051633a954ecd60e21b815260040160405180910390fd5b611d6b6000848460000151611c2f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e5e576000546001600160801b0316811015611e5e57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611244565b610ae28383836001611fb5565b60006001600160a01b0384163b15611fa957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef6903390899088908890600401612818565b6020604051808303816000875af1925050508015611f31575060408051601f3d908101601f19168201909252611f2e91810190612855565b60015b611f8f573d808015611f5f576040519150601f19603f3d011682016040523d82523d6000602084013e611f64565b606091505b508051600003611f87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fad565b5060015b949350505050565b6000546001600160801b03166001600160a01b038516611fe757604051622e076360e81b815260040160405180910390fd5b836000036120085760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561211a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120f057506120ee6000888488611eb2565b155b1561210e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612099565b50600080546001600160801b0319166001600160801b0392909216919091179055611244565b82805461214c90612603565b90600052602060002090601f01602090048101928261216e57600085556121b4565b82601f1061218757805160ff19168380011785556121b4565b828001600101855582156121b4579182015b828111156121b4578251825591602001919060010190612199565b506121c09291506121c4565b5090565b5b808211156121c057600081556001016121c5565b6001600160e01b031981168114610eaa57600080fd5b60006020828403121561220157600080fd5b813561220c816121d9565b9392505050565b80356001600160a01b038116811461222a57600080fd5b919050565b6000806040838503121561224257600080fd5b61224b83612213565b915060208301356001600160601b038116811461226757600080fd5b809150509250929050565b60006020828403121561228457600080fd5b5035919050565b60005b838110156122a657818101518382015260200161228e565b83811115610b0c5750506000910152565b600081518084526122cf81602086016020860161228b565b601f01601f19169290920160200192915050565b60208152600061220c60208301846122b7565b6000806040838503121561230957600080fd5b61231283612213565b946020939093013593505050565b60006020828403121561233257600080fd5b61220c82612213565b60008060006060848603121561235057600080fd5b61235984612213565b925061236760208501612213565b9150604084013590509250925092565b6000806040838503121561238a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156123c9576123c9612399565b604051601f8501601f19908116603f011681019082821181831017156123f1576123f1612399565b8160405280935085815286868601111561240a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561243657600080fd5b81356001600160401b0381111561244c57600080fd5b8201601f8101841361245d57600080fd5b611fad848235602084016123af565b60008083601f84011261247e57600080fd5b5081356001600160401b0381111561249557600080fd5b6020830191508360208260051b8501011115610bb957600080fd5b600080600080604085870312156124c657600080fd5b84356001600160401b03808211156124dd57600080fd5b6124e98883890161246c565b9096509450602087013591508082111561250257600080fd5b5061250f8782880161246c565b95989497509550505050565b8015158114610eaa57600080fd5b6000806040838503121561253c57600080fd5b61254583612213565b915060208301356122678161251b565b6000806000806080858703121561256b57600080fd5b61257485612213565b935061258260208601612213565b92506040850135915060608501356001600160401b038111156125a457600080fd5b8501601f810187136125b557600080fd5b6125c4878235602084016123af565b91505092959194509250565b600080604083850312156125e357600080fd5b6125ec83612213565b91506125fa60208401612213565b90509250929050565b600181811c9082168061261757607f821691505b60208210810361263757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561266d5761266d61263d565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261269757612697612672565b500490565b600082198211156126af576126af61263d565b500190565b6000828210156126c6576126c661263d565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600182016126f3576126f361263d565b5060010190565b6000815161270c81856020860161228b565b9290920192915050565b600080845481600182811c91508083168061273257607f831692505b6020808410820361275157634e487b7160e01b86526022600452602486fd5b8180156127655760018114612776576127a3565b60ff198616895284890196506127a3565b60008b81526020902060005b8681101561279b5781548b820152908501908301612782565b505084890196505b5050505050506127c76127b682866126fa565b64173539b7b760d91b815260050190565b95945050505050565b6000602082840312156127e257600080fd5b815161220c8161251b565b6000826127fc576127fc612672565b500690565b6000816128105761281061263d565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284b908301846122b7565b9695505050505050565b60006020828403121561286757600080fd5b815161220c816121d956fea2646970667358221220ca857edfbfba7159879f86d79ce23fa5322b6547cec0310a7975832fa52f1cda64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696136636e7a6271366a373237626b6e7475717176376569377a7563657a6b6b7836337436616c676264733271617a67343770716500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80635b8ad42911610190578063aab3e3cf116100dc578063dcc7eb3511610095578063e985e9c51161006f578063e985e9c51461087e578063ec9496ba146108c7578063f2c4ce1e146108e7578063f2fde38b1461090757600080fd5b8063dcc7eb351461083e578063e55f58bb14610853578063e8a3d4851461086957600080fd5b8063aab3e3cf14610793578063ab53fcaa146107b3578063b88d4fde146107c9578063c87b56dd146107e9578063d1e1457714610809578063d685b6451461082857600080fd5b806381c4cede116101495780638dbb7c06116101235780638dbb7c061461071e578063938e3d7b1461073e57806395d89b411461075e578063a22cb4651461077357600080fd5b806381c4cede146106c6578063835d997e146106e05780638da5cb5b1461070057600080fd5b80635b8ad429146106295780636352211e1461063e578063672434821461065e5780636d1b9ebc1461067157806370a0823114610691578063715018a6146106b157600080fd5b80632c5261961161024f5780633ccfd60b11610208578063453afb0f116101e2578063453afb0f146105b95780634f6ccce7146105cf57806351830227146105ef57806355f804b31461060957600080fd5b80633ccfd60b1461056f57806341f434341461057757806342842e0e1461059957600080fd5b80632c526196146104ce5780632f745c59146104e157806332a825ce1461050157806332cb6b0c14610517578063389fcf061461052d57806339eea0131461055a57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf5780631015805b146103ef57806311f1eaee1461042a57806318160ddd1461044057806323b872dd1461046f5780632a55205a1461048f57600080fd5b806301ffc9a7146102e957806302fa7c471461031e578063040d19241461034057806306fdde0314610360578063081812fc14610382578063081c8c44146103ba575b600080fd5b3480156102f557600080fd5b506103096103043660046121ef565b610927565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e61033936600461222f565b610947565b005b34801561034c57600080fd5b5061033e61035b366004612272565b61095d565b34801561036c57600080fd5b5061037561096a565b60405161031591906122e3565b34801561038e57600080fd5b506103a261039d366004612272565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b50610375610a40565b3480156103db57600080fd5b5061033e6103ea3660046122f6565b610ace565b3480156103fb57600080fd5b5061041c61040a366004612320565b60166020526000908152604090205481565b604051908152602001610315565b34801561043657600080fd5b5061041c60155481565b34801561044c57600080fd5b5061041c6000546001600160801b03600160801b82048116918116919091031690565b34801561047b57600080fd5b5061033e61048a36600461233b565b610ae7565b34801561049b57600080fd5b506104af6104aa366004612377565b610b12565b604080516001600160a01b039093168352602083019190915201610315565b61033e6104dc366004612272565b610bc0565b3480156104ed57600080fd5b5061041c6104fc3660046122f6565b610ead565b34801561050d57600080fd5b5061041c60125481565b34801561052357600080fd5b5061041c600e5481565b34801561053957600080fd5b5061041c610548366004612320565b60176020526000908152604090205481565b34801561056657600080fd5b5061033e610fa7565b61033e610fe2565b34801561058357600080fd5b506103a26daaeb6d7670e522a718067333cd4e81565b3480156105a557600080fd5b5061033e6105b436600461233b565b61105b565b3480156105c557600080fd5b5061041c60105481565b3480156105db57600080fd5b5061041c6105ea366004612272565b611080565b3480156105fb57600080fd5b50600f546103099060ff1681565b34801561061557600080fd5b5061033e610624366004612424565b611129565b34801561063557600080fd5b5061033e611144565b34801561064a57600080fd5b506103a2610659366004612272565b611176565b61033e61066c3660046124b0565b611188565b34801561067d57600080fd5b5061033e61068c366004612272565b61124b565b34801561069d57600080fd5b5061041c6106ac366004612320565b611258565b3480156106bd57600080fd5b5061033e6112a6565b3480156106d257600080fd5b50600d546103099060ff1681565b3480156106ec57600080fd5b5061033e6106fb366004612272565b6112b8565b34801561070c57600080fd5b506007546001600160a01b03166103a2565b34801561072a57600080fd5b5061033e610739366004612272565b6112c5565b34801561074a57600080fd5b5061033e610759366004612424565b6112d2565b34801561076a57600080fd5b506103756112ed565b34801561077f57600080fd5b5061033e61078e366004612529565b6112fc565b34801561079f57600080fd5b5061033e6107ae366004612272565b611310565b3480156107bf57600080fd5b5061041c60115481565b3480156107d557600080fd5b5061033e6107e4366004612555565b61131d565b3480156107f557600080fd5b50610375610804366004612272565b611343565b34801561081557600080fd5b50600d5461030990610100900460ff1681565b34801561083457600080fd5b5061041c60135481565b34801561084a57600080fd5b5061033e611468565b34801561085f57600080fd5b5061041c60145481565b34801561087557600080fd5b5061037561149a565b34801561088a57600080fd5b506103096108993660046125d0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b5061033e6108e2366004612272565b6114a7565b3480156108f357600080fd5b5061033e610902366004612424565b6114b4565b34801561091357600080fd5b5061033e610922366004612320565b6114cf565b60006109328261154b565b806109415750610941826115b6565b92915050565b61094f6115db565b6109598282611635565b5050565b6109656115db565b601255565b60606001805461097990612603565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590612603565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a0782611732565b610a24576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610a4d90612603565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612603565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b81610ad881611766565b610ae2838361181f565b505050565b826001600160a01b0381163314610b0157610b0133611766565b610b0c8484846118a7565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b875750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba6906001600160601b031687612653565b610bb09190612688565b91519350909150505b9250929050565b323314610c025760405162461bcd60e51b815260206004820152600b60248201526a2737ba103432b93297171760a91b60448201526064015b60405180910390fd5b600e5481610c286000546001600160801b03600160801b82048116918116919091031690565b610c32919061269c565b1115610c775760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610bf9565b6007546001600160a01b03163314610ea057600d5460ff16610cc75760405162461bcd60e51b81526020600482015260096024820152682437b63232321037b760b91b6044820152606401610bf9565b60115481610cd433611258565b610cde919061269c565b1115610d2c5760405162461bcd60e51b815260206004820152601860248201527f476962206f746865722077616c6c65742062616c616e636500000000000000006044820152606401610bf9565b601354811115610d755760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610bf9565b60155481601454610d86919061269c565b1115610de75760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401610bf9565b33600090815260176020526040812054601254610e0491906126b4565b9050610e1081836126b4565b601054610e1d9190612653565b341015610e625760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610bf9565b33600090815260176020526040902054610e7d90829061269c565b33600090815260176020526040902055601454610e9b90829061269c565b601455505b610eaa33826118b2565b50565b6000610eb883611258565b8210610ed7576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610fa157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f4f5750610f99565b80516001600160a01b031615610f6457805192505b876001600160a01b0316836001600160a01b031603610f9757868403610f905750935061094192505050565b6001909301925b505b600101610ee8565b50600080fd5b610faf6115db565b600d54610100900460ff161515600003610fd457600d805461ff001916610100179055565b600d805461ff00191690555b565b610fea6115db565b6000610ffe6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611048576040519150601f19603f3d011682016040523d82523d6000602084013e61104d565b606091505b5050905080610eaa57600080fd5b826001600160a01b03811633146110755761107533611766565b610b0c8484846118cc565b600080546001600160801b031681805b8281101561110f57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611106578583036110ff5750949350505050565b6001909201915b50600101611090565b506040516329c8c00760e21b815260040160405180910390fd5b6111316115db565b805161095990600a906020840190612140565b61114c6115db565b600f5460ff16151560000361116a57600f805460ff19166001179055565b600f805460ff19169055565b6000611181826118e7565b5192915050565b6111906115db565b8281146111df5760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d6174636800000000006044820152606401610bf9565b60005b83811015611244576112328585838181106111ff576111ff6126cb565b90506020020160208101906112149190612320565b848484818110611226576112266126cb565b905060200201356118b2565b8061123c816126e1565b9150506111e2565b5050505050565b6112536115db565b601555565b60006001600160a01b038216611281576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6112ae6115db565b610fe06000611a09565b6112c06115db565b601155565b6112cd6115db565b601055565b6112da6115db565b805161095990600c906020840190612140565b60606002805461097990612603565b8161130681611766565b610ae28383611a5b565b6113186115db565b601355565b836001600160a01b03811633146113375761133733611766565b61124485858585611af0565b606061134e82611732565b61136b57604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361140c57600b805461138790612603565b80601f01602080910402602001604051908101604052809291908181526020018280546113b390612603565b80156114005780601f106113d557610100808354040283529160200191611400565b820191906000526020600020905b8154815290600101906020018083116113e357829003601f168201915b50505050509050919050565b600a805461141990612603565b90506000036114375760405180602001604052806000815250610941565b600a61144283611b24565b604051602001611453929190612716565b60405160208183030381529060405292915050565b6114706115db565b600d5460ff16151560000361148e57600d805460ff19166001179055565b600d805460ff19169055565b600c8054610a4d90612603565b6114af6115db565b600e55565b6114bc6115db565b805161095990600b906020840190612140565b6114d76115db565b6001600160a01b03811661153c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bf9565b610eaa81611a09565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061157c57506001600160e01b03198216635b5e139f60e01b145b8061159757506001600160e01b0319821663780e9d6360e01b145b8061094157506301ffc9a760e01b6001600160e01b0319831614610941565b60006001600160e01b0319821663152a902d60e11b148061094157506109418261154b565b6007546001600160a01b03163314610fe05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bf9565b6127106001600160601b03821611156116a35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610bf9565b6001600160a01b0382166116f95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610bf9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610941575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610eaa57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f791906127d0565b610eaa57604051633b79c77360e21b81526001600160a01b0382166004820152602401610bf9565b600061182a82611176565b9050806001600160a01b0316836001600160a01b03160361185e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061187e575061187c8133610899565b155b1561189c576040516367d9dca160e11b815260040160405180910390fd5b610ae2838383611c2f565b610ae2838383611c8b565b610959828260405180602001604052806000815250611ea5565b610ae28383836040518060200160405280600081525061131d565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156119f057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119ee5780516001600160a01b031615611985579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119e9579392505050565b611985565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611a845760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611afb848484611c8b565b611b0784848484611eb2565b610b0c576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b4b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b755780611b5f816126e1565b9150611b6e9050600a83612688565b9150611b4f565b6000816001600160401b03811115611b8f57611b8f612399565b6040519080825280601f01601f191660200182016040528015611bb9576020820181803683370190505b508593509050815b8315611c2657611bd2600a856127ed565b611bdd90603061269c565b60f81b82611bea83612801565b92508281518110611bfd57611bfd6126cb565b60200101906001600160f81b031916908160001a905350611c1f600a85612688565b9350611bc1565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c96826118e7565b80519091506000906001600160a01b0316336001600160a01b03161480611cc457508151611cc49033610899565b80611cdf575033611cd4846109fc565b6001600160a01b0316145b905080611cff57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d345760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d5b57604051633a954ecd60e21b815260040160405180910390fd5b611d6b6000848460000151611c2f565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e5e576000546001600160801b0316811015611e5e57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611244565b610ae28383836001611fb5565b60006001600160a01b0384163b15611fa957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef6903390899088908890600401612818565b6020604051808303816000875af1925050508015611f31575060408051601f3d908101601f19168201909252611f2e91810190612855565b60015b611f8f573d808015611f5f576040519150601f19603f3d011682016040523d82523d6000602084013e611f64565b606091505b508051600003611f87576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fad565b5060015b949350505050565b6000546001600160801b03166001600160a01b038516611fe757604051622e076360e81b815260040160405180910390fd5b836000036120085760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561211a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120f057506120ee6000888488611eb2565b155b1561210e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612099565b50600080546001600160801b0319166001600160801b0392909216919091179055611244565b82805461214c90612603565b90600052602060002090601f01602090048101928261216e57600085556121b4565b82601f1061218757805160ff19168380011785556121b4565b828001600101855582156121b4579182015b828111156121b4578251825591602001919060010190612199565b506121c09291506121c4565b5090565b5b808211156121c057600081556001016121c5565b6001600160e01b031981168114610eaa57600080fd5b60006020828403121561220157600080fd5b813561220c816121d9565b9392505050565b80356001600160a01b038116811461222a57600080fd5b919050565b6000806040838503121561224257600080fd5b61224b83612213565b915060208301356001600160601b038116811461226757600080fd5b809150509250929050565b60006020828403121561228457600080fd5b5035919050565b60005b838110156122a657818101518382015260200161228e565b83811115610b0c5750506000910152565b600081518084526122cf81602086016020860161228b565b601f01601f19169290920160200192915050565b60208152600061220c60208301846122b7565b6000806040838503121561230957600080fd5b61231283612213565b946020939093013593505050565b60006020828403121561233257600080fd5b61220c82612213565b60008060006060848603121561235057600080fd5b61235984612213565b925061236760208501612213565b9150604084013590509250925092565b6000806040838503121561238a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156123c9576123c9612399565b604051601f8501601f19908116603f011681019082821181831017156123f1576123f1612399565b8160405280935085815286868601111561240a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561243657600080fd5b81356001600160401b0381111561244c57600080fd5b8201601f8101841361245d57600080fd5b611fad848235602084016123af565b60008083601f84011261247e57600080fd5b5081356001600160401b0381111561249557600080fd5b6020830191508360208260051b8501011115610bb957600080fd5b600080600080604085870312156124c657600080fd5b84356001600160401b03808211156124dd57600080fd5b6124e98883890161246c565b9096509450602087013591508082111561250257600080fd5b5061250f8782880161246c565b95989497509550505050565b8015158114610eaa57600080fd5b6000806040838503121561253c57600080fd5b61254583612213565b915060208301356122678161251b565b6000806000806080858703121561256b57600080fd5b61257485612213565b935061258260208601612213565b92506040850135915060608501356001600160401b038111156125a457600080fd5b8501601f810187136125b557600080fd5b6125c4878235602084016123af565b91505092959194509250565b600080604083850312156125e357600080fd5b6125ec83612213565b91506125fa60208401612213565b90509250929050565b600181811c9082168061261757607f821691505b60208210810361263757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561266d5761266d61263d565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261269757612697612672565b500490565b600082198211156126af576126af61263d565b500190565b6000828210156126c6576126c661263d565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600182016126f3576126f361263d565b5060010190565b6000815161270c81856020860161228b565b9290920192915050565b600080845481600182811c91508083168061273257607f831692505b6020808410820361275157634e487b7160e01b86526022600452602486fd5b8180156127655760018114612776576127a3565b60ff198616895284890196506127a3565b60008b81526020902060005b8681101561279b5781548b820152908501908301612782565b505084890196505b5050505050506127c76127b682866126fa565b64173539b7b760d91b815260050190565b95945050505050565b6000602082840312156127e257600080fd5b815161220c8161251b565b6000826127fc576127fc612672565b500690565b6000816128105761281061263d565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284b908301846122b7565b9695505050505050565b60006020828403121561286757600080fd5b815161220c816121d956fea2646970667358221220ca857edfbfba7159879f86d79ce23fa5322b6547cec0310a7975832fa52f1cda64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696136636e7a6271366a373237626b6e7475717176376569377a7563657a6b6b7836337436616c676264733271617a67343770716500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [4] : 697066733a2f2f626166796265696136636e7a6271366a373237626b6e747571
Arg [5] : 7176376569377a7563657a6b6b7836337436616c676264733271617a67343770
Arg [6] : 7165000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 2c00000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56355:6480:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60157:487;;;;;;;;;;-1:-1:-1;60157:487:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60157:487:0;;;;;;;;60654:155;;;;;;;;;;-1:-1:-1;60654:155:0;;;;;:::i;:::-;;:::i;:::-;;62191:142;;;;;;;;;;-1:-1:-1;62191:142:0;;;;;:::i;:::-;;:::i;42456:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43967:204::-;;;;;;;;;;-1:-1:-1;43967:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2263:32:1;;;2245:51;;2233:2;2218:18;43967:204:0;2099:203:1;56492:28:0;;;;;;;;;;;;;:::i;59405:157::-;;;;;;;;;;-1:-1:-1;59405:157:0;;;;;:::i;:::-;;:::i;57003:47::-;;;;;;;;;;-1:-1:-1;57003:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2903:25:1;;;2891:2;2876:18;57003:47:0;2757:177:1;56954:40:0;;;;;;;;;;;;;;;;37083:280;;;;;;;;;;;;37136:7;37328:12;-1:-1:-1;;;;;;;;37328:12:0;;;;37312:13;;;:28;;;;37305:35;;37083:280;59570:163;;;;;;;;;;-1:-1:-1;59570:163:0;;;;;:::i;:::-;;:::i;24954:442::-;;;;;;;;;;-1:-1:-1;24954:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3717:32:1;;;3699:51;;3781:2;3766:18;;3759:34;;;;3672:18;24954:442:0;3525:274:1;57750:973:0;;;;;;:::i;:::-;;:::i;38669:1105::-;;;;;;;;;;-1:-1:-1;38669:1105:0;;;;;:::i;:::-;;:::i;56830:38::-;;;;;;;;;;;;;;;;56650:32;;;;;;;;;;;;;;;;57057:45;;;;;;;;;;-1:-1:-1;57057:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;61277:214;;;;;;;;;;;;;:::i;61766:157::-;;;:::i;2902:143::-;;;;;;;;;;;;3002:42;2902:143;;59741:171;;;;;;;;;;-1:-1:-1;59741:171:0;;;;;:::i;:::-;;:::i;56735:43::-;;;;;;;;;;;;;;;;37656:713;;;;;;;;;;-1:-1:-1;37656:713:0;;;;;:::i;:::-;;:::i;56699:27::-;;;;;;;;;;-1:-1:-1;56699:27:0;;;;;;;;62719:103;;;;;;;;;;-1:-1:-1;62719:103:0;;;;;:::i;:::-;;:::i;60847:179::-;;;;;;;;;;;;;:::i;42265:124::-;;;;;;;;;;-1:-1:-1;42265:124:0;;;;;:::i;:::-;;:::i;57431:311::-;;;;;;:::i;:::-;;:::i;62573:138::-;;;;;;;;;;-1:-1:-1;62573:138:0;;;;;:::i;:::-;;:::i;40282:206::-;;;;;;;;;;-1:-1:-1;40282:206:0;;;;;:::i;:::-;;:::i;10928:103::-;;;;;;;;;;;;;:::i;56561:38::-;;;;;;;;;;-1:-1:-1;56561:38:0;;;;;;;;62061:122;;;;;;;;;;-1:-1:-1;62061:122:0;;;;;:::i;:::-;;:::i;10280:87::-;;;;;;;;;;-1:-1:-1;10353:6:0;;-1:-1:-1;;;;;10353:6:0;10280:87;;61931:122;;;;;;;;;;-1:-1:-1;61931:122:0;;;;;:::i;:::-;;:::i;61639:116::-;;;;;;;;;;-1:-1:-1;61639:116:0;;;;;:::i;:::-;;:::i;42625:104::-;;;;;;;;;;;;;:::i;59221:176::-;;;;;;;;;;-1:-1:-1;59221:176:0;;;;;:::i;:::-;;:::i;62341:110::-;;;;;;;;;;-1:-1:-1;62341:110:0;;;;;:::i;:::-;;:::i;56785:34::-;;;;;;;;;;;;;;;;59920:228;;;;;;;;;;-1:-1:-1;59920:228:0;;;;;:::i;:::-;;:::i;58848:365::-;;;;;;;;;;-1:-1:-1;58848:365:0;;;;;:::i;:::-;;:::i;56606:35::-;;;;;;;;;;-1:-1:-1;56606:35:0;;;;;;;;;;;56879:31;;;;;;;;;;;;;;;;61045:222;;;;;;;;;;;;;:::i;56917:28::-;;;;;;;;;;;;;;;;56527:25;;;;;;;;;;;;;:::i;44601:164::-;;;;;;;;;;-1:-1:-1;44601:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44722:25:0;;;44698:4;44722:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44601:164;62459:106;;;;;;;;;;-1:-1:-1;62459:106:0;;;;;:::i;:::-;;:::i;61501:126::-;;;;;;;;;;-1:-1:-1;61501:126:0;;;;;:::i;:::-;;:::i;11186:201::-;;;;;;;;;;-1:-1:-1;11186:201:0;;;;;:::i;:::-;;:::i;60157:487::-;60305:4;60543:38;60569:11;60543:25;:38::i;:::-;:93;;;;60598:38;60624:11;60598:25;:38::i;:::-;60523:113;60157:487;-1:-1:-1;;60157:487:0:o;60654:155::-;10166:13;:11;:13::i;:::-;60752:49:::1;60771:9;60782:18;60752;:49::i;:::-;60654:155:::0;;:::o;62191:142::-;10166:13;:11;:13::i;:::-;62283:19:::1;:42:::0;62191:142::o;42456:100::-;42510:13;42543:5;42536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42456:100;:::o;43967:204::-;44035:7;44060:16;44068:7;44060;:16::i;:::-;44055:64;;44085:34;;-1:-1:-1;;;44085:34:0;;;;;;;;;;;44055:64;-1:-1:-1;44139:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44139:24:0;;43967:204::o;56492:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59405:157::-;59501:8;4423:30;4444:8;4423:20;:30::i;:::-;59522:32:::1;59536:8;59546:7;59522:13;:32::i;:::-;59405:157:::0;;;:::o;59570:163::-;59671:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;59688:37:::1;59707:4;59713:2;59717:7;59688:18;:37::i;:::-;59570:163:::0;;;;:::o;24954:442::-;25051:7;25109:27;;;:17;:27;;;;;;;;25080:56;;;;;;;;;-1:-1:-1;;;;;25080:56:0;;;;;-1:-1:-1;;;25080:56:0;;;-1:-1:-1;;;;;25080:56:0;;;;;;;;25051:7;;25149:92;;-1:-1:-1;25200:29:0;;;;;;;;;25210:19;25200:29;-1:-1:-1;;;;;25200:29:0;;;;-1:-1:-1;;;25200:29:0;;-1:-1:-1;;;;;25200:29:0;;;;;25149:92;25291:23;;;;25253:21;;25762:5;;25278:36;;-1:-1:-1;;;;;25278:36:0;:10;:36;:::i;:::-;25277:58;;;;:::i;:::-;25356:16;;;-1:-1:-1;25253:82:0;;-1:-1:-1;;24954:442:0;;;;;;:::o;57750:973::-;58775:9;58788:10;58775:23;58767:47;;;;-1:-1:-1;;;58767:47:0;;8947:2:1;58767:47:0;;;8929:21:1;8986:2;8966:18;;;8959:30;-1:-1:-1;;;9005:18:1;;;8998:41;9056:18;;58767:47:0;;;;;;;;;57863:10:::1;;57851:8;57835:13;37136:7:::0;37328:12;-1:-1:-1;;;;;;;;37328:12:0;;;;37312:13;;;:28;;;;37305:35;;37083:280;57835:13:::1;:24;;;;:::i;:::-;:38;;57827:70;;;::::0;-1:-1:-1;;;57827:70:0;;9420:2:1;57827:70:0::1;::::0;::::1;9402:21:1::0;9459:2;9439:18;;;9432:30;-1:-1:-1;;;9478:18:1;;;9471:50;9538:18;;57827:70:0::1;9218:344:1::0;57827:70:0::1;10353:6:::0;;-1:-1:-1;;;;;10353:6:0;57918:10:::1;:21;57914:748;;57966:18;::::0;::::1;;57958:40;;;::::0;-1:-1:-1;;;57958:40:0;;9769:2:1;57958:40:0::1;::::0;::::1;9751:21:1::0;9808:1;9788:18;;;9781:29;-1:-1:-1;;;9826:18:1;;;9819:39;9875:18;;57958:40:0::1;9567:332:1::0;57958:40:0::1;58058:14;;58046:8;58022:21;58032:10;58022:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;58014:87;;;::::0;-1:-1:-1;;;58014:87:0;;10106:2:1;58014:87:0::1;::::0;::::1;10088:21:1::0;10145:2;10125:18;;;10118:30;10184:26;10164:18;;;10157:54;10228:18;;58014:87:0::1;9904:348:1::0;58014:87:0::1;58146:11;;58134:8;:23;;58126:56;;;::::0;-1:-1:-1;;;58126:56:0;;10459:2:1;58126:56:0::1;::::0;::::1;10441:21:1::0;10498:2;10478:18;;;10471:30;-1:-1:-1;;;10517:18:1;;;10510:50;10577:18;;58126:56:0::1;10257:344:1::0;58126:56:0::1;58233:18;;58221:8;58205:13;;:24;;;;:::i;:::-;:46;;58197:101;;;::::0;-1:-1:-1;;;58197:101:0;;10808:2:1;58197:101:0::1;::::0;::::1;10790:21:1::0;10847:2;10827:18;;;10820:30;10886:34;10866:18;;;10859:62;-1:-1:-1;;;10937:18:1;;;10930:40;10987:19;;58197:101:0::1;10606:406:1::0;58197:101:0::1;58376:10;58317:23;58365:22:::0;;;:10:::1;:22;::::0;;;;;58343:19:::1;::::0;:44:::1;::::0;58365:22;58343:44:::1;:::i;:::-;58317:70:::0;-1:-1:-1;58442:26:0::1;58317:70:::0;58442:8;:26:::1;:::i;:::-;58424:14;;:45;;;;:::i;:::-;58410:9;:60;;58402:92;;;::::0;-1:-1:-1;;;58402:92:0;;11349:2:1;58402:92:0::1;::::0;::::1;11331:21:1::0;11388:2;11368:18;;;11361:30;-1:-1:-1;;;11407:18:1;;;11400:49;11466:18;;58402:92:0::1;11147:343:1::0;58402:92:0::1;58547:10;58536:22;::::0;;;:10:::1;:22;::::0;;;;;:40:::1;::::0;58561:15;;58536:40:::1;:::i;:::-;58522:10;58511:22;::::0;;;:10:::1;:22;::::0;;;;:65;58608:13:::1;::::0;:31:::1;::::0;58624:15;;58608:31:::1;:::i;:::-;58592:13;:47:::0;-1:-1:-1;57914:748:0::1;58674:31;58684:10;58696:8;58674:9;:31::i;:::-;57750:973:::0;:::o;38669:1105::-;38758:7;38791:16;38801:5;38791:9;:16::i;:::-;38782:5;:25;38778:61;;38816:23;;-1:-1:-1;;;38816:23:0;;;;;;;;;;;38778:61;38850:22;38875:13;;-1:-1:-1;;;;;38875:13:0;;38850:22;;39125:557;39145:14;39141:1;:18;39125:557;;;39185:31;39219:14;;;:11;:14;;;;;;;;;39185:48;;;;;;;;;-1:-1:-1;;;;;39185:48:0;;;;-1:-1:-1;;;39185:48:0;;-1:-1:-1;;;;;39185:48:0;;;;;;;;-1:-1:-1;;;39185:48:0;;;;;;;;;;;;;;;;39252:73;;39297:8;;;39252:73;39347:14;;-1:-1:-1;;;;;39347:28:0;;39343:111;;39420:14;;;-1:-1:-1;39343:111:0;39497:5;-1:-1:-1;;;;;39476:26:0;:17;-1:-1:-1;;;;;39476:26:0;;39472:195;;39546:5;39531:11;:20;39527:85;;-1:-1:-1;39587:1:0;-1:-1:-1;39580:8:0;;-1:-1:-1;;;39580:8:0;39527:85;39634:13;;;;;39472:195;39166:516;39125:557;39161:3;;39125:557;;;;39758:8;;;61277:214;10166:13;:11;:13::i;:::-;61355:16:::1;::::0;::::1;::::0;::::1;;;:23;;61373:5;61355:23:::0;61352:132:::1;;61394:16;:23:::0;;-1:-1:-1;;61394:23:0::1;;;::::0;;61277:214::o;61352:132::-:1;61448:16;:24:::0;;-1:-1:-1;;61448:24:0::1;::::0;;61352:132:::1;61277:214::o:0;61766:157::-;10166:13;:11;:13::i;:::-;61825:9:::1;61848:7;10353:6:::0;;-1:-1:-1;;;;;10353:6:0;;10280:87;61848:7:::1;-1:-1:-1::0;;;;;61840:21:0::1;61869;61840:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61824:71;;;61910:4;61902:13;;;::::0;::::1;59741:171:::0;59846:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;59863:41:::1;59886:4;59892:2;59896:7;59863:22;:41::i;37656:713::-:0;37723:7;37768:13;;-1:-1:-1;;;;;37768:13:0;37723:7;;37982:328;38002:14;37998:1;:18;37982:328;;;38042:31;38076:14;;;:11;:14;;;;;;;;;38042:48;;;;;;;;;-1:-1:-1;;;;;38042:48:0;;;;-1:-1:-1;;;38042:48:0;;-1:-1:-1;;;;;38042:48:0;;;;;;;;-1:-1:-1;;;38042:48:0;;;;;;;;;;;;;;38109:186;;38174:5;38159:11;:20;38155:85;;-1:-1:-1;38215:1:0;37656:713;-1:-1:-1;;;;37656:713:0:o;38155:85::-;38262:13;;;;;38109:186;-1:-1:-1;38018:3:0;;37982:328;;;;38338:23;;-1:-1:-1;;;38338:23:0;;;;;;;;;;;62719:103;10166:13;:11;:13::i;:::-;62794:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;60847:179::-:0;10166:13;:11;:13::i;:::-;60914:8:::1;::::0;::::1;;:15;;:8;:15:::0;60911:108:::1;;60945:8;:15:::0;;-1:-1:-1;;60945:15:0::1;60956:4;60945:15;::::0;;61277:214::o;60911:108::-:1;60991:8;:16:::0;;-1:-1:-1;;60991:16:0::1;::::0;;60847:179::o;42265:124::-;42329:7;42356:20;42368:7;42356:11;:20::i;:::-;:25;;42265:124;-1:-1:-1;;42265:124:0:o;57431:311::-;10166:13;:11;:13::i;:::-;57554:34;;::::1;57546:74;;;::::0;-1:-1:-1;;;57546:74:0;;11907:2:1;57546:74:0::1;::::0;::::1;11889:21:1::0;11946:2;11926:18;;;11919:30;11985:29;11965:18;;;11958:57;12032:18;;57546:74:0::1;11705:351:1::0;57546:74:0::1;57637:9;57633:102;57652:19:::0;;::::1;57633:102;;;57688:35;57698:8;;57707:1;57698:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57711:8;;57720:1;57711:11;;;;;;;:::i;:::-;;;;;;;57688:9;:35::i;:::-;57673:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57633:102;;;;57431:311:::0;;;;:::o;62573:138::-;10166:13;:11;:13::i;:::-;62663:18:::1;:40:::0;62573:138::o;40282:206::-;40346:7;-1:-1:-1;;;;;40370:19:0;;40366:60;;40398:28;;-1:-1:-1;;;40398:28:0;;;;;;;;;;;40366:60;-1:-1:-1;;;;;;40452:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40452:27:0;;40282:206::o;10928:103::-;10166:13;:11;:13::i;:::-;10993:30:::1;11020:1;10993:18;:30::i;62061:122::-:0;10166:13;:11;:13::i;:::-;62143:14:::1;:32:::0;62061:122::o;61931:::-;10166:13;:11;:13::i;:::-;62013:14:::1;:32:::0;61931:122::o;61639:116::-;10166:13;:11;:13::i;:::-;61721:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;42625:104::-:0;42681:13;42714:7;42707:14;;;;;:::i;59221:176::-;59325:8;4423:30;4444:8;4423:20;:30::i;:::-;59346:43:::1;59370:8;59380;59346:23;:43::i;62341:110::-:0;10166:13;:11;:13::i;:::-;62417:11:::1;:26:::0;62341:110::o;59920:228::-;60071:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;60093:47:::1;60116:4;60122:2;60126:7;60135:4;60093:22;:47::i;58848:365::-:0;58921:13;58952:16;58960:7;58952;:16::i;:::-;58947:59;;58977:29;;-1:-1:-1;;;58977:29:0;;;;;;;;;;;58947:59;59022:8;;;;:17;;:8;:17;59019:66;;59059:14;59052:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58848:365;;;:::o;59019:66::-;59116:7;59110:21;;;;;:::i;:::-;;;59135:1;59110:26;:95;;;;;;;;;;;;;;;;;59163:7;59172:18;:7;:16;:18::i;:::-;59146:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59103:102;58848:365;-1:-1:-1;;58848:365:0:o;61045:222::-;10166:13;:11;:13::i;:::-;61125:18:::1;::::0;::::1;;:25;;:18;:25:::0;61122:138:::1;;61166:18;:25:::0;;-1:-1:-1;;61166:25:0::1;61187:4;61166:25;::::0;;61277:214::o;61122:138::-:1;61222:18;:26:::0;;-1:-1:-1;;61222:26:0::1;::::0;;61045:222::o;56527:25::-;;;;;;;:::i;62459:106::-;10166:13;:11;:13::i;:::-;62533:10:::1;:24:::0;62459:106::o;61501:126::-;10166:13;:11;:13::i;:::-;61587:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11186:201::-:0;10166:13;:11;:13::i;:::-;-1:-1:-1;;;;;11275:22:0;::::1;11267:73;;;::::0;-1:-1:-1;;;11267:73:0;;14275:2:1;11267:73:0::1;::::0;::::1;14257:21:1::0;14314:2;14294:18;;;14287:30;14353:34;14333:18;;;14326:62;-1:-1:-1;;;14404:18:1;;;14397:36;14450:19;;11267:73:0::1;14073:402:1::0;11267:73:0::1;11351:28;11370:8;11351:18;:28::i;12479:422::-:0;12846:20;12885:8;;;12479:422::o;39846:372::-;39948:4;-1:-1:-1;;;;;;39985:40:0;;-1:-1:-1;;;39985:40:0;;:105;;-1:-1:-1;;;;;;;40042:48:0;;-1:-1:-1;;;40042:48:0;39985:105;:172;;;-1:-1:-1;;;;;;;40107:50:0;;-1:-1:-1;;;40107:50:0;39985:172;:225;;;-1:-1:-1;;;;;;;;;;23282:40:0;;;40174:36;23173:157;24684:215;24786:4;-1:-1:-1;;;;;;24810:41:0;;-1:-1:-1;;;24810:41:0;;:81;;;24855:36;24879:11;24855:23;:36::i;10445:132::-;10353:6;;-1:-1:-1;;;;;10353:6:0;8810:10;10509:23;10501:68;;;;-1:-1:-1;;;10501:68:0;;14682:2:1;10501:68:0;;;14664:21:1;;;14701:18;;;14694:30;14760:34;14740:18;;;14733:62;14812:18;;10501:68:0;14480:356:1;26046:332:0;25762:5;-1:-1:-1;;;;;26149:33:0;;;;26141:88;;;;-1:-1:-1;;;26141:88:0;;15043:2:1;26141:88:0;;;15025:21:1;15082:2;15062:18;;;15055:30;15121:34;15101:18;;;15094:62;-1:-1:-1;;;15172:18:1;;;15165:40;15222:19;;26141:88:0;14841:406:1;26141:88:0;-1:-1:-1;;;;;26248:22:0;;26240:60;;;;-1:-1:-1;;;26240:60:0;;15454:2:1;26240:60:0;;;15436:21:1;15493:2;15473:18;;;15466:30;15532:27;15512:18;;;15505:55;15577:18;;26240:60:0;15252:349:1;26240:60:0;26335:35;;;;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;;;;;-1:-1:-1;;;26313:57:0;;;;:19;:57;26046:332::o;45926:144::-;45983:4;46017:13;;-1:-1:-1;;;;;46017:13:0;46007:23;;:55;;;;-1:-1:-1;;46035:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46035:27:0;;;;46034:28;;45926:144::o;4481:419::-;3002:42;4672:45;:49;4668:225;;4743:67;;-1:-1:-1;;;4743:67:0;;4794:4;4743:67;;;15818:34:1;-1:-1:-1;;;;;15888:15:1;;15868:18;;;15861:43;3002:42:0;;4743;;15753:18:1;;4743:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4738:144;;4838:28;;-1:-1:-1;;;4838:28:0;;-1:-1:-1;;;;;2263:32:1;;4838:28:0;;;2245:51:1;2218:18;;4838:28:0;2099:203:1;43522:379:0;43603:13;43619:24;43635:7;43619:15;:24::i;:::-;43603:40;;43664:5;-1:-1:-1;;;;;43658:11:0;:2;-1:-1:-1;;;;;43658:11:0;;43654:48;;43678:24;;-1:-1:-1;;;43678:24:0;;;;;;;;;;;43654:48;8810:10;-1:-1:-1;;;;;43719:21:0;;;;;;:63;;-1:-1:-1;43745:37:0;43762:5;8810:10;44601:164;:::i;43745:37::-;43744:38;43719:63;43715:138;;;43806:35;;-1:-1:-1;;;43806:35:0;;;;;;;;;;;43715:138;43865:28;43874:2;43878:7;43887:5;43865:8;:28::i;44832:170::-;44966:28;44976:4;44982:2;44986:7;44966:9;:28::i;46078:104::-;46147:27;46157:2;46161:8;46147:27;;;;;;;;;;;;:9;:27::i;45073:185::-;45211:39;45228:4;45234:2;45238:7;45211:39;;;;;;;;;;;;:16;:39::i;41120:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;41286:13:0;;41230:7;;-1:-1:-1;;;;;41286:13:0;41279:20;;41275:861;;;41320:31;41354:17;;;:11;:17;;;;;;;;;41320:51;;;;;;;;;-1:-1:-1;;;;;41320:51:0;;;;-1:-1:-1;;;41320:51:0;;-1:-1:-1;;;;;41320:51:0;;;;;;;;-1:-1:-1;;;41320:51:0;;;;;;;;;;;;;;41390:731;;41440:14;;-1:-1:-1;;;;;41440:28:0;;41436:101;;41504:9;41120:1083;-1:-1:-1;;;41120:1083:0:o;41436:101::-;-1:-1:-1;;;41881:6:0;41926:17;;;;:11;:17;;;;;;;;;41914:29;;;;;;;;;-1:-1:-1;;;;;41914:29:0;;;;;-1:-1:-1;;;41914:29:0;;-1:-1:-1;;;;;41914:29:0;;;;;;;;-1:-1:-1;;;41914:29:0;;;;;;;;;;;;;41974:28;41970:109;;42042:9;41120:1083;-1:-1:-1;;;41120:1083:0:o;41970:109::-;41841:261;;;41301:835;41275:861;42164:31;;-1:-1:-1;;;42164:31:0;;;;;;;;;;;11547:191;11640:6;;;-1:-1:-1;;;;;11657:17:0;;;-1:-1:-1;;;;;;11657:17:0;;;;;;;11690:40;;11640:6;;;11657:17;11640:6;;11690:40;;11621:16;;11690:40;11610:128;11547:191;:::o;44243:287::-;8810:10;-1:-1:-1;;;;;44342:24:0;;;44338:54;;44375:17;;-1:-1:-1;;;44375:17:0;;;;;;;;;;;44338:54;8810:10;44405:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44405:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44405:53:0;;;;;;;;;;44474:48;;540:41:1;;;44405:42:0;;8810:10;44474:48;;513:18:1;44474:48:0;;;;;;;44243:287;;:::o;45329:342::-;45496:28;45506:4;45512:2;45516:7;45496:9;:28::i;:::-;45540:48;45563:4;45569:2;45573:7;45582:5;45540:22;:48::i;:::-;45535:129;;45612:40;;-1:-1:-1;;;45612:40:0;;;;;;;;;;;7374:751;7430:13;7651:5;7660:1;7651:10;7647:53;;-1:-1:-1;;7678:10:0;;;;;;;;;;;;-1:-1:-1;;;7678:10:0;;;;;7374:751::o;7647:53::-;7725:5;7710:12;7766:78;7773:9;;7766:78;;7799:8;;;;:::i;:::-;;-1:-1:-1;7822:10:0;;-1:-1:-1;7830:2:0;7822:10;;:::i;:::-;;;7766:78;;;7854:19;7886:6;-1:-1:-1;;;;;7876:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7876:17:0;-1:-1:-1;7944:5:0;;-1:-1:-1;7854:39:0;-1:-1:-1;7920:6:0;7960:126;7967:9;;7960:126;;8037:9;8044:2;8037:4;:9;:::i;:::-;8024:23;;:2;:23;:::i;:::-;8011:38;;7993:6;8000:7;;;:::i;:::-;;;;7993:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7993:56:0;;;;;;;;-1:-1:-1;8064:10:0;8072:2;8064:10;;:::i;:::-;;;7960:126;;;-1:-1:-1;8110:6:0;7374:751;-1:-1:-1;;;;7374:751:0:o;53142:196::-;53257:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53257:29:0;-1:-1:-1;;;;;53257:29:0;;;;;;;;;53302:28;;53257:24;;53302:28;;;;;;;53142:196;;;:::o;48643:2112::-;48758:35;48796:20;48808:7;48796:11;:20::i;:::-;48871:18;;48758:58;;-1:-1:-1;48829:22:0;;-1:-1:-1;;;;;48855:34:0;8810:10;-1:-1:-1;;;;;48855:34:0;;:101;;;-1:-1:-1;48923:18:0;;48906:50;;8810:10;44601:164;:::i;48906:50::-;48855:154;;;-1:-1:-1;8810:10:0;48973:20;48985:7;48973:11;:20::i;:::-;-1:-1:-1;;;;;48973:36:0;;48855:154;48829:181;;49028:17;49023:66;;49054:35;;-1:-1:-1;;;49054:35:0;;;;;;;;;;;49023:66;49126:4;-1:-1:-1;;;;;49104:26:0;:13;:18;;;-1:-1:-1;;;;;49104:26:0;;49100:67;;49139:28;;-1:-1:-1;;;49139:28:0;;;;;;;;;;;49100:67;-1:-1:-1;;;;;49182:16:0;;49178:52;;49207:23;;-1:-1:-1;;;49207:23:0;;;;;;;;;;;49178:52;49351:49;49368:1;49372:7;49381:13;:18;;;49351:8;:49::i;:::-;-1:-1:-1;;;;;49696:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49696:31:0;;;-1:-1:-1;;;;;49696:31:0;;;-1:-1:-1;;49696:31:0;;;;;;;49742:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49742:29:0;;;;;;;;;;;49788:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;49833:61:0;;;;-1:-1:-1;;;49878:15:0;49833:61;;;;;;;;;;;50168:11;;;50198:24;;;;;:29;50168:11;;50198:29;50194:445;;50423:13;;-1:-1:-1;;;;;50423:13:0;50409:27;;50405:219;;;50493:18;;;50461:24;;;:11;:24;;;;;;;;:50;;50576:28;;;;-1:-1:-1;;;;;50534:70:0;-1:-1:-1;;;50534:70:0;-1:-1:-1;;;;;;50534:70:0;;;-1:-1:-1;;;;;50461:50:0;;;50534:70;;;;;;;50405:219;49671:979;50686:7;50682:2;-1:-1:-1;;;;;50667:27:0;50676:4;-1:-1:-1;;;;;50667:27:0;;;;;;;;;;;50705:42;59570:163;46545;46668:32;46674:2;46678:8;46688:5;46695:4;46668:5;:32::i;53903:790::-;54058:4;-1:-1:-1;;;;;54079:13:0;;12846:20;12885:8;54075:611;;54115:72;;-1:-1:-1;;;54115:72:0;;-1:-1:-1;;;;;54115:36:0;;;;;:72;;8810:10;;54166:4;;54172:7;;54181:5;;54115:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54115:72:0;;;;;;;;-1:-1:-1;;54115:72:0;;;;;;;;;;;;:::i;:::-;;;54111:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54361:6;:13;54378:1;54361:18;54357:259;;54411:40;;-1:-1:-1;;;54411:40:0;;;;;;;;;;;54357:259;54566:6;54560:13;54551:6;54547:2;54543:15;54536:38;54111:520;-1:-1:-1;;;;;;54238:55:0;-1:-1:-1;;;54238:55:0;;-1:-1:-1;54231:62:0;;54075:611;-1:-1:-1;54670:4:0;54075:611;53903:790;;;;;;:::o;46967:1422::-;47106:20;47129:13;-1:-1:-1;;;;;47129:13:0;-1:-1:-1;;;;;47157:16:0;;47153:48;;47182:19;;-1:-1:-1;;;47182:19:0;;;;;;;;;;;47153:48;47216:8;47228:1;47216:13;47212:44;;47238:18;;-1:-1:-1;;;47238:18:0;;;;;;;;;;;47212:44;-1:-1:-1;;;;;47608:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;47667:49:0;;-1:-1:-1;;;;;47608:44:0;;;;;;;47667:49;;;;-1:-1:-1;;47608:44:0;;;;;;47667:49;;;;;;;;;;;;;;;;47733:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;47783:66:0;;;;-1:-1:-1;;;47833:15:0;47783:66;;;;;;;;;;;47733:25;;47918:328;47938:8;47934:1;:12;47918:328;;;47977:38;;48002:12;;-1:-1:-1;;;;;47977:38:0;;;47994:1;;47977:38;;47994:1;;47977:38;48038:4;:68;;;;;48047:59;48078:1;48082:2;48086:12;48100:5;48047:22;:59::i;:::-;48046:60;48038:68;48034:164;;;48138:40;;-1:-1:-1;;;48138:40:0;;;;;;;;;;;48034:164;48216:14;;;;;47948:3;47918:328;;;-1:-1:-1;48262:13:0;:37;;-1:-1:-1;;;;;;48262:37:0;-1:-1:-1;;;;;48262:37:0;;;;;;;;;;48321:60;59570: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;9085:128::-;9125:3;9156:1;9152:6;9149:1;9146:13;9143:39;;;9162:18;;:::i;:::-;-1:-1:-1;9198:9:1;;9085:128::o;11017:125::-;11057:4;11085:1;11082;11079:8;11076:34;;;11090:18;;:::i;:::-;-1:-1:-1;11127:9:1;;11017:125::o;12061:127::-;12122:10;12117:3;12113:20;12110:1;12103:31;12153:4;12150:1;12143:15;12177:4;12174:1;12167:15;12193:135;12232:3;12253:17;;;12250:43;;12273:18;;:::i;:::-;-1:-1:-1;12320:1:1;12309:13;;12193:135::o;12459:185::-;12501:3;12539:5;12533:12;12554:52;12599:6;12594:3;12587:4;12580:5;12576:16;12554:52;:::i;:::-;12622:16;;;;;12459:185;-1:-1:-1;;12459:185:1:o;12767:1301::-;13044:3;13073:1;13106:6;13100:13;13136:3;13158:1;13186:9;13182:2;13178:18;13168:28;;13246:2;13235:9;13231:18;13268;13258:61;;13312:4;13304:6;13300:17;13290:27;;13258:61;13338:2;13386;13378:6;13375:14;13355:18;13352:38;13349:165;;-1:-1:-1;;;13413:33:1;;13469:4;13466:1;13459:15;13499:4;13420:3;13487:17;13349:165;13530:18;13557:104;;;;13675:1;13670:320;;;;13523:467;;13557:104;-1:-1:-1;;13590:24:1;;13578:37;;13635:16;;;;-1:-1:-1;13557:104:1;;13670:320;12406:1;12399:14;;;12443:4;12430:18;;13765:1;13779:165;13793:6;13790:1;13787:13;13779:165;;;13871:14;;13858:11;;;13851:35;13914:16;;;;13808:10;;13779:165;;;13783:3;;13973:6;13968:3;13964:16;13957:23;;13523:467;;;;;;;14006:56;14031:30;14057:3;14049:6;14031:30;:::i;:::-;-1:-1:-1;;;12709:20:1;;12754:1;12745:11;;12649:113;14006:56;13999:63;12767:1301;-1:-1:-1;;;;;12767:1301:1:o;15915:245::-;15982:6;16035:2;16023:9;16014:7;16010:23;16006:32;16003:52;;;16051:1;16048;16041:12;16003:52;16083:9;16077:16;16102:28;16124:5;16102:28;:::i;16165:112::-;16197:1;16223;16213:35;;16228:18;;:::i;:::-;-1:-1:-1;16262:9:1;;16165:112::o;16282:136::-;16321:3;16349:5;16339:39;;16358:18;;:::i;:::-;-1:-1:-1;;;16394:18:1;;16282:136::o;16423:500::-;-1:-1:-1;;;;;16692:15:1;;;16674:34;;16744:15;;16739:2;16724:18;;16717:43;16791:2;16776:18;;16769:34;;;16839:3;16834:2;16819:18;;16812:31;;;16617:4;;16860:57;;16897:19;;16889:6;16860:57;:::i;:::-;16852:65;16423:500;-1:-1:-1;;;;;;16423:500:1:o;16928:249::-;16997:6;17050:2;17038:9;17029:7;17025:23;17021:32;17018:52;;;17066:1;17063;17056:12;17018:52;17098:9;17092:16;17117:30;17141:5;17117:30;:::i

Swarm Source

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