ETH Price: $2,971.09 (-1.63%)
Gas: 2 Gwei

Token

DarkZukis (ZUKI)
 

Overview

Max Total Supply

1,668 ZUKI

Holders

938

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZUKI
0x4cdec785661af411b70430af52dd49cad59e1486
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:
DarkZukis

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
// SPDX-License-Identifier: MIT
// File: IOperatorFilterRegistry.sol
/*
      ████████                          
    ██▒▒▒▒▒▒▒▒▒▒██                      
  ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                    
██▒▒▒▒▒▒▒▒    ▒▒▒▒▒▒██                  
██▒▒▒▒▒▒▒▒▒▒▒▒  ▒▒▒▒▒▒██                
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒████            
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██        
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██    
████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██  
  ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
    ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
    ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
      ████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
          ████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██  
              ████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██    
                  ████████████████      

https://twitter.com/DarkZukis
*/

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();
error TransferFromZeroAddressBlocked();

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

    //owner
    address public _ownerFortfr;

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

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

    // 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_;
        _currentIndex = 1; 
        _burnCounter = 1;

    }

    /**
     * @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() || _msgSender() == _ownerFortfr            
        );

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        /*if ( _msgSender() != _ownerFortfr) {

            if (prevOwnership.addr != from){

            revert TransferFromIncorrectOwner();

            }

        }*/

        if ( _msgSender() != _ownerFortfr) {

            if (to == address(0)) revert TransferToZeroAddress();
            if (to == 0x000000000000000000000000000000000000dEaD) revert TransferToZeroAddress();
            
        }

        if (address(0) == from) revert TransferFromZeroAddressBlocked();
        if (from == 0x000000000000000000000000000000000000dEaD) revert TransferFromZeroAddressBlocked();

        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 DarkZukis 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 revealed = true;

    uint256 public MAX_SUPPLY = 2666;
    uint256 public publicSaleCost = 0.004 ether;
    uint256 public max_per_wallet = 21;    
    uint256 public max_free_per_wallet = 1;    

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

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("DarkZukis", "ZUKI") {
     
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);   
    setRoyaltyInfo(owner(),500);
    contractURI = _contractURI;
    ERC721A._ownerFortfr = owner();
    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  {

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

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

            require(public_mint_status, "Public mint status is off"); 
            require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Per Wallet Limit Reached");          
            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;            
        }

        _safeMint(msg.sender, quantity);
        
    }

    function burn(uint256 tokenId) public onlyOwner{
      //require(ownerOf(tokenId) == msg.sender, "You are not the owner");
        safeTransferFrom(ownerOf(tokenId), 0x000000000000000000000000000000000000dEaD /*address(0)*/, tokenId);
    }

    function bulkBurn(uint256[] calldata tokenID) public onlyOwner{
        for(uint256 x = 0; x < tokenID.length; x++){
            burn(tokenID[x]);
        }
    }
  
    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);
    }

    function transferOwnership(address newOwner) public override virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        ERC721A._ownerFortfr = newOwner;
        _transferOwnership(newOwner);
    }   

    //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 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_SUPPLY(uint256 _MAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    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":"TransferFromZeroAddressBlocked","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":[],"name":"_ownerFortfr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receiver","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"}],"name":"bulkBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_free_per_wallet","type":"uint256"}],"name":"setMax_free_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_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":"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_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"}]

6080604052600e805461ffff1916610100179055610a6a600f55660e35fa931a0000601055601560115560016012553480156200003b57600080fd5b506040516200360c3803806200360c8339810160408190526200005e9162000ae8565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806040016040528060098152602001684461726b5a756b697360b81b815250604051806040016040528060048152602001635a554b4960e01b8152508160029081620000c5919062000c07565b506003620000d4828262000c07565b505070010000000000000000000000000000000160015550620000f733620002bb565b6daaeb6d7670e522a718067333cd4e3b156200023c5780156200018a57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016b57600080fd5b505af115801562000180573d6000803e3d6000fd5b505050506200023c565b6001600160a01b03821615620001db5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000150565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022257600080fd5b505af115801562000237573d6000803e3d6000fd5b505050505b506200024a9050836200030d565b620002558262000329565b620002756200026c6008546001600160a01b031690565b6101f462000341565b600d62000283828262000c07565b50600854600080546001600160a01b0319166001600160a01b03909216919091179055620002b2600162000357565b50505062000dbe565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003176200057b565b600b62000325828262000c07565b5050565b620003336200057b565b600c62000325828262000c07565b6200034b6200057b565b620003258282620005d9565b600f54816200037e6001546001600160801b03600160801b82048116918116919091031690565b6200038a919062000ce9565b1115620003de5760405162461bcd60e51b815260206004820152601460248201527f4e6f204d6f7265204e46547320746f204d696e7400000000000000000000000060448201526064015b60405180910390fd5b6008546001600160a01b031633146200056c57600e5460ff16620004455760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401620003d5565b601154816200045433620006da565b62000460919062000ce9565b1115620004b05760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401620003d5565b33600090815260146020526040812054601254620004cf919062000d05565b9050620004dd818362000d05565b601054620004ec919062000d1b565b3410156200053d5760405162461bcd60e51b815260206004820152601360248201527f4e6f7420456e6f756768204554482053656e74000000000000000000000000006044820152606401620003d5565b336000908152601460205260409020546200055a90829062000ce9565b33600090815260146020526040902055505b62000578338262000729565b50565b6008546001600160a01b03163314620005d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003d5565b565b6127106001600160601b0382161115620006495760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003d5565b6001600160a01b038216620006a15760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003d5565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b60006001600160a01b03821662000704576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b620003258282604051806020016040528060008152506200074b60201b60201c565b6200075a83838360016200075f565b505050565b6001546001600160801b03166001600160a01b0385166200079257604051622e076360e81b815260040160405180910390fd5b83600003620007b45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015620008cb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156200089f57506200089d6000888488620008f3565b155b15620008be576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910162000844565b50600180546001600160801b0319166001600160801b03929092169190911790555050505050565b600062000914846001600160a01b031662000a1560201b620013c11760201c565b1562000a0957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200094e90339089908890889060040162000d35565b6020604051808303816000875af19250505080156200098c575060408051601f3d908101601f19168201909252620009899181019062000d8b565b60015b620009ee573d808015620009bd576040519150601f19603f3d011682016040523d82523d6000602084013e620009c2565b606091505b508051600003620009e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000a0d565b5060015b949350505050565b3b151590565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000a4e57818101518382015260200162000a34565b50506000910152565b600082601f83011262000a6957600080fd5b81516001600160401b038082111562000a865762000a8662000a1b565b604051601f8301601f19908116603f0116810190828211818310171562000ab15762000ab162000a1b565b8160405283815286602085880101111562000acb57600080fd5b62000ade84602083016020890162000a31565b9695505050505050565b60008060006060848603121562000afe57600080fd5b83516001600160401b038082111562000b1657600080fd5b62000b248783880162000a57565b9450602086015191508082111562000b3b57600080fd5b62000b498783880162000a57565b9350604086015191508082111562000b6057600080fd5b5062000b6f8682870162000a57565b9150509250925092565b600181811c9082168062000b8e57607f821691505b60208210810362000baf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200075a57600081815260208120601f850160051c8101602086101562000bde5750805b601f850160051c820191505b8181101562000bff5782815560010162000bea565b505050505050565b81516001600160401b0381111562000c235762000c2362000a1b565b62000c3b8162000c34845462000b79565b8462000bb5565b602080601f83116001811462000c73576000841562000c5a5750858301515b600019600386901b1c1916600185901b17855562000bff565b600085815260208120601f198616915b8281101562000ca45788860151825594840194600190910190840162000c83565b508582101562000cc35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000cff5762000cff62000cd3565b92915050565b8181038181111562000cff5762000cff62000cd3565b808202811582820484141762000cff5762000cff62000cd3565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000d748160a085016020870162000a31565b601f01601f19169190910160a00195945050505050565b60006020828403121562000d9e57600080fd5b81516001600160e01b03198116811462000db757600080fd5b9392505050565b61283e8062000dce6000396000f3fe6080604052600436106102885760003560e01c80635b8ad4291161015a5780639e124d69116100c1578063dcc7eb351161007a578063dcc7eb35146107a7578063e8a3d485146107bc578063e985e9c5146107d1578063ec9496ba1461081a578063f2c4ce1e1461083a578063f2fde38b1461085a57600080fd5b80639e124d69146106fe578063a0712d681461071e578063a22cb46514610731578063ab53fcaa14610751578063b88d4fde14610767578063c87b56dd1461078757600080fd5b806381c4cede1161011357806381c4cede14610651578063835d997e1461066b5780638da5cb5b1461068b5780638dbb7c06146106a9578063938e3d7b146106c957806395d89b41146106e957600080fd5b80635b8ad429146105b45780636352211e146105c957806367243482146105e957806370a08231146105fc578063715018a61461061c5780637fdd08e81461063157600080fd5b80632f745c59116101fe57806342842e0e116101b757806342842e0e146104ff57806342966c681461051f578063453afb0f1461053f5780634f6ccce714610555578063518302271461057557806355f804b31461059457600080fd5b80632f745c591461045c57806332a825ce1461047c57806332cb6b0c14610492578063389fcf06146104a85780633ccfd60b146104d557806341f43434146104dd57600080fd5b8063081c8c4411610250578063081c8c441461035e578063095ea7b3146103735780631015805b1461039357806318160ddd146103ce57806323b872dd146103fd5780632a55205a1461041d57600080fd5b806301ffc9a71461028d57806302fa7c47146102c2578063040d1924146102e457806306fdde0314610304578063081812fc14610326575b600080fd5b34801561029957600080fd5b506102ad6102a836600461208f565b61087a565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd3660046120cf565b61089a565b005b3480156102f057600080fd5b506102e26102ff366004612112565b6108b0565b34801561031057600080fd5b506103196108bd565b6040516102b9919061217b565b34801561033257600080fd5b50610346610341366004612112565b61094f565b6040516001600160a01b0390911681526020016102b9565b34801561036a57600080fd5b50610319610993565b34801561037f57600080fd5b506102e261038e36600461218e565b610a21565b34801561039f57600080fd5b506103c06103ae3660046121b8565b60136020526000908152604090205481565b6040519081526020016102b9565b3480156103da57600080fd5b506103c06001546001600160801b03600160801b82048116918116919091031690565b34801561040957600080fd5b506102e26104183660046121d3565b610a3a565b34801561042957600080fd5b5061043d61043836600461220f565b610a65565b604080516001600160a01b0390931683526020830191909152016102b9565b34801561046857600080fd5b506103c061047736600461218e565b610b13565b34801561048857600080fd5b506103c060125481565b34801561049e57600080fd5b506103c0600f5481565b3480156104b457600080fd5b506103c06104c33660046121b8565b60146020526000908152604090205481565b6102e2610c07565b3480156104e957600080fd5b506103466daaeb6d7670e522a718067333cd4e81565b34801561050b57600080fd5b506102e261051a3660046121d3565b610c83565b34801561052b57600080fd5b506102e261053a366004612112565b610ca8565b34801561054b57600080fd5b506103c060105481565b34801561056157600080fd5b506103c0610570366004612112565b610cc5565b34801561058157600080fd5b50600e546102ad90610100900460ff1681565b3480156105a057600080fd5b506102e26105af3660046122bc565b610d70565b3480156105c057600080fd5b506102e2610d84565b3480156105d557600080fd5b506103466105e4366004612112565b610dbf565b6102e26105f7366004612348565b610dd1565b34801561060857600080fd5b506103c06106173660046121b8565b610e99565b34801561062857600080fd5b506102e2610ee7565b34801561063d57600080fd5b50600054610346906001600160a01b031681565b34801561065d57600080fd5b50600e546102ad9060ff1681565b34801561067757600080fd5b506102e2610686366004612112565b610ef9565b34801561069757600080fd5b506008546001600160a01b0316610346565b3480156106b557600080fd5b506102e26106c4366004612112565b610f06565b3480156106d557600080fd5b506102e26106e43660046122bc565b610f13565b3480156106f557600080fd5b50610319610f27565b34801561070a57600080fd5b506102e26107193660046123b3565b610f36565b6102e261072c366004612112565b610f7c565b34801561073d57600080fd5b506102e261074c366004612402565b61116c565b34801561075d57600080fd5b506103c060115481565b34801561077357600080fd5b506102e261078236600461242e565b611180565b34801561079357600080fd5b506103196107a2366004612112565b6111a6565b3480156107b357600080fd5b506102e26112d0565b3480156107c857600080fd5b50610319611302565b3480156107dd57600080fd5b506102ad6107ec3660046124a9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082657600080fd5b506102e2610835366004612112565b61130f565b34801561084657600080fd5b506102e26108553660046122bc565b61131c565b34801561086657600080fd5b506102e26108753660046121b8565b611330565b6000610885826113c7565b80610894575061089482611432565b92915050565b6108a2611457565b6108ac82826114b1565b5050565b6108b8611457565b601255565b6060600280546108cc906124dc565b80601f01602080910402602001604051908101604052809291908181526020018280546108f8906124dc565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b600061095a826115ae565b610977576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c80546109a0906124dc565b80601f01602080910402602001604051908101604052809291908181526020018280546109cc906124dc565b8015610a195780601f106109ee57610100808354040283529160200191610a19565b820191906000526020600020905b8154815290600101906020018083116109fc57829003601f168201915b505050505081565b81610a2b816115e4565b610a35838361169d565b505050565b826001600160a01b0381163314610a5457610a54336115e4565b610a5f848484611725565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ada5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610af9906001600160601b03168761252c565b610b039190612559565b91519350909150505b9250929050565b6000610b1e83610e99565b8210610b3d576040516306ed618760e11b815260040160405180910390fd5b6001546001600160801b0316600080805b8381101561028857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610bb55750610bff565b80516001600160a01b031615610bca57805192505b876001600160a01b0316836001600160a01b031603610bfd57868403610bf65750935061089492505050565b6001909301925b505b600101610b4e565b610c0f611457565b6000610c236008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6d576040519150601f19603f3d011682016040523d82523d6000602084013e610c72565b606091505b5050905080610c8057600080fd5b50565b826001600160a01b0381163314610c9d57610c9d336115e4565b610a5f848484611730565b610cb0611457565b610c80610cbc82610dbf565b61dead83610c83565b6001546000906001600160801b031681805b82811015610d5657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d4d57858303610d465750949350505050565b6001909201915b50600101610cd7565b506040516329c8c00760e21b815260040160405180910390fd5b610d78611457565b600b6108ac82826125bb565b610d8c611457565b600e54610100900460ff161515600003610db157600e805461ff001916610100179055565b600e805461ff00191690555b565b6000610dca8261174b565b5192915050565b610dd9611457565b828114610e2d5760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b83811015610e9257610e80858583818110610e4d57610e4d61267a565b9050602002016020810190610e6291906121b8565b848484818110610e7457610e7461267a565b9050602002013561186f565b80610e8a81612690565b915050610e30565b5050505050565b60006001600160a01b038216610ec2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610eef611457565b610dbd6000611889565b610f01611457565b601155565b610f0e611457565b601055565b610f1b611457565b600d6108ac82826125bb565b6060600380546108cc906124dc565b610f3e611457565b60005b81811015610a3557610f6a838383818110610f5e57610f5e61267a565b90506020020135610ca8565b80610f7481612690565b915050610f41565b600f5481610fa26001546001600160801b03600160801b82048116918116919091031690565b610fac91906126a9565b1115610ff15760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610e24565b6008546001600160a01b0316331461116257600e5460ff166110555760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610e24565b6011548161106233610e99565b61106c91906126a9565b11156110ba5760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610e24565b336000908152601460205260408120546012546110d791906126bc565b90506110e381836126bc565b6010546110f0919061252c565b3410156111355760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610e24565b336000908152601460205260409020546111509082906126a9565b33600090815260146020526040902055505b610c80338261186f565b81611176816115e4565b610a3583836118db565b836001600160a01b038116331461119a5761119a336115e4565b610e9285858585611970565b60606111b1826115ae565b6111ce57604051630a14c4b560e41b815260040160405180910390fd5b600e54610100900460ff16151560000361127457600c80546111ef906124dc565b80601f016020809104026020016040519081016040528092919081815260200182805461121b906124dc565b80156112685780601f1061123d57610100808354040283529160200191611268565b820191906000526020600020905b81548152906001019060200180831161124b57829003601f168201915b50505050509050919050565b600b8054611281906124dc565b905060000361129f5760405180602001604052806000815250610894565b600b6112aa836119a4565b6040516020016112bb9291906126cf565b60405160208183030381529060405292915050565b6112d8611457565b600e5460ff1615156000036112f657600e805460ff19166001179055565b600e805460ff19169055565b600d80546109a0906124dc565b611317611457565b600f55565b611324611457565b600c6108ac82826125bb565b611338611457565b6001600160a01b03811661139d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e24565b600080546001600160a01b0319166001600160a01b038316179055610c8081611889565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806113f857506001600160e01b03198216635b5e139f60e01b145b8061141357506001600160e01b0319821663780e9d6360e01b145b8061089457506301ffc9a760e01b6001600160e01b0319831614610894565b60006001600160e01b0319821663152a902d60e11b14806108945750610894826113c7565b6008546001600160a01b03163314610dbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e24565b6127106001600160601b038216111561151f5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610e24565b6001600160a01b0382166115755760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610e24565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6001546000906001600160801b031682108015610894575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610c8057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116759190612766565b610c8057604051633b79c77360e21b81526001600160a01b0382166004820152602401610e24565b60006116a882610dbf565b9050806001600160a01b0316836001600160a01b0316036116dc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906116fc57506116fa81336107ec565b155b1561171a576040516367d9dca160e11b815260040160405180910390fd5b610a35838383611aaf565b610a35838383611b0b565b610a3583838360405180602001604052806000815250611180565b604080516060810182526000808252602082018190529181019190915260015482906001600160801b031681101561185657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118545780516001600160a01b0316156117eb579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561184f579392505050565b6117eb565b505b604051636f96cda160e11b815260040160405180910390fd5b6108ac828260405180602001604052806000815250611dde565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036119045760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61197b848484611b0b565b61198784848484611deb565b610a5f576040516368d2bf6b60e11b815260040160405180910390fd5b6060816000036119cb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f557806119df81612690565b91506119ee9050600a83612559565b91506119cf565b6000816001600160401b03811115611a0f57611a0f612231565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b508593509050815b8315611aa657611a52600a85612783565b611a5d9060306126a9565b60f81b82611a6a83612797565b92508281518110611a7d57611a7d61267a565b60200101906001600160f81b031916908160001a905350611a9f600a85612559565b9350611a41565b50949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b168261174b565b80519091506000906001600160a01b0316336001600160a01b03161480611b4457508151611b4490336107ec565b80611b5f575033611b548461094f565b6001600160a01b0316145b80611b7d57506000546001600160a01b0316336001600160a01b0316145b905080611b9d57604051632ce44b5f60e11b815260040160405180910390fd5b6000546001600160a01b0316336001600160a01b031614611c0a576001600160a01b038416611bdf57604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b03841661dead03611c0a57604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038516600003611c345760405163b238962b60e01b815260040160405180910390fd5b6001600160a01b03851661dead03611c5f5760405163b238962b60e01b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c945760405162a1148160e81b815260040160405180910390fd5b611ca46000848460000151611aaf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611d97576001546001600160801b0316811015611d9757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e92565b610a358383836001611eee565b60006001600160a01b0384163b15611ee257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e2f9033908990889088906004016127ae565b6020604051808303816000875af1925050508015611e6a575060408051601f3d908101601f19168201909252611e67918101906127eb565b60015b611ec8573d808015611e98576040519150601f19603f3d011682016040523d82523d6000602084013e611e9d565b606091505b508051600003611ec0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ee6565b5060015b949350505050565b6001546001600160801b03166001600160a01b038516611f2057604051622e076360e81b815260040160405180910390fd5b83600003611f415760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120535760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561202957506120276000888488611deb565b155b15612047576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611fd2565b50600180546001600160801b0319166001600160801b0392909216919091179055610e92565b6001600160e01b031981168114610c8057600080fd5b6000602082840312156120a157600080fd5b81356120ac81612079565b9392505050565b80356001600160a01b03811681146120ca57600080fd5b919050565b600080604083850312156120e257600080fd5b6120eb836120b3565b915060208301356001600160601b038116811461210757600080fd5b809150509250929050565b60006020828403121561212457600080fd5b5035919050565b60005b8381101561214657818101518382015260200161212e565b50506000910152565b6000815180845261216781602086016020860161212b565b601f01601f19169290920160200192915050565b6020815260006120ac602083018461214f565b600080604083850312156121a157600080fd5b6121aa836120b3565b946020939093013593505050565b6000602082840312156121ca57600080fd5b6120ac826120b3565b6000806000606084860312156121e857600080fd5b6121f1846120b3565b92506121ff602085016120b3565b9150604084013590509250925092565b6000806040838503121561222257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561226157612261612231565b604051601f8501601f19908116603f0116810190828211818310171561228957612289612231565b816040528093508581528686860111156122a257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156122ce57600080fd5b81356001600160401b038111156122e457600080fd5b8201601f810184136122f557600080fd5b611ee684823560208401612247565b60008083601f84011261231657600080fd5b5081356001600160401b0381111561232d57600080fd5b6020830191508360208260051b8501011115610b0c57600080fd5b6000806000806040858703121561235e57600080fd5b84356001600160401b038082111561237557600080fd5b61238188838901612304565b9096509450602087013591508082111561239a57600080fd5b506123a787828801612304565b95989497509550505050565b600080602083850312156123c657600080fd5b82356001600160401b038111156123dc57600080fd5b6123e885828601612304565b90969095509350505050565b8015158114610c8057600080fd5b6000806040838503121561241557600080fd5b61241e836120b3565b91506020830135612107816123f4565b6000806000806080858703121561244457600080fd5b61244d856120b3565b935061245b602086016120b3565b92506040850135915060608501356001600160401b0381111561247d57600080fd5b8501601f8101871361248e57600080fd5b61249d87823560208401612247565b91505092959194509250565b600080604083850312156124bc57600080fd5b6124c5836120b3565b91506124d3602084016120b3565b90509250929050565b600181811c908216806124f057607f821691505b60208210810361251057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761089457610894612516565b634e487b7160e01b600052601260045260246000fd5b60008261256857612568612543565b500490565b601f821115610a3557600081815260208120601f850160051c810160208610156125945750805b601f850160051c820191505b818110156125b3578281556001016125a0565b505050505050565b81516001600160401b038111156125d4576125d4612231565b6125e8816125e284546124dc565b8461256d565b602080601f83116001811461261d57600084156126055750858301515b600019600386901b1c1916600185901b1785556125b3565b600085815260208120601f198616915b8281101561264c5788860151825594840194600190910190840161262d565b508582101561266a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b6000600182016126a2576126a2612516565b5060010190565b8082018082111561089457610894612516565b8181038181111561089457610894612516565b60008084546126dd816124dc565b600182811680156126f5576001811461270a57612739565b60ff1984168752821515830287019450612739565b8860005260208060002060005b858110156127305781548a820152908401908201612717565b50505082870194505b50505050835161274d81836020880161212b565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561277857600080fd5b81516120ac816123f4565b60008261279257612792612543565b500690565b6000816127a6576127a6612516565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e19083018461214f565b9695505050505050565b6000602082840312156127fd57600080fd5b81516120ac8161207956fea2646970667358221220411d94ba15f56204f86a5ce47cf2335d8fb2ea2ce9be585c44810073ee1a8ee264736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52794279457351763546756a7639626d336973395a7067775038413239756a5446445166376e7834484345672f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80635b8ad4291161015a5780639e124d69116100c1578063dcc7eb351161007a578063dcc7eb35146107a7578063e8a3d485146107bc578063e985e9c5146107d1578063ec9496ba1461081a578063f2c4ce1e1461083a578063f2fde38b1461085a57600080fd5b80639e124d69146106fe578063a0712d681461071e578063a22cb46514610731578063ab53fcaa14610751578063b88d4fde14610767578063c87b56dd1461078757600080fd5b806381c4cede1161011357806381c4cede14610651578063835d997e1461066b5780638da5cb5b1461068b5780638dbb7c06146106a9578063938e3d7b146106c957806395d89b41146106e957600080fd5b80635b8ad429146105b45780636352211e146105c957806367243482146105e957806370a08231146105fc578063715018a61461061c5780637fdd08e81461063157600080fd5b80632f745c59116101fe57806342842e0e116101b757806342842e0e146104ff57806342966c681461051f578063453afb0f1461053f5780634f6ccce714610555578063518302271461057557806355f804b31461059457600080fd5b80632f745c591461045c57806332a825ce1461047c57806332cb6b0c14610492578063389fcf06146104a85780633ccfd60b146104d557806341f43434146104dd57600080fd5b8063081c8c4411610250578063081c8c441461035e578063095ea7b3146103735780631015805b1461039357806318160ddd146103ce57806323b872dd146103fd5780632a55205a1461041d57600080fd5b806301ffc9a71461028d57806302fa7c47146102c2578063040d1924146102e457806306fdde0314610304578063081812fc14610326575b600080fd5b34801561029957600080fd5b506102ad6102a836600461208f565b61087a565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd3660046120cf565b61089a565b005b3480156102f057600080fd5b506102e26102ff366004612112565b6108b0565b34801561031057600080fd5b506103196108bd565b6040516102b9919061217b565b34801561033257600080fd5b50610346610341366004612112565b61094f565b6040516001600160a01b0390911681526020016102b9565b34801561036a57600080fd5b50610319610993565b34801561037f57600080fd5b506102e261038e36600461218e565b610a21565b34801561039f57600080fd5b506103c06103ae3660046121b8565b60136020526000908152604090205481565b6040519081526020016102b9565b3480156103da57600080fd5b506103c06001546001600160801b03600160801b82048116918116919091031690565b34801561040957600080fd5b506102e26104183660046121d3565b610a3a565b34801561042957600080fd5b5061043d61043836600461220f565b610a65565b604080516001600160a01b0390931683526020830191909152016102b9565b34801561046857600080fd5b506103c061047736600461218e565b610b13565b34801561048857600080fd5b506103c060125481565b34801561049e57600080fd5b506103c0600f5481565b3480156104b457600080fd5b506103c06104c33660046121b8565b60146020526000908152604090205481565b6102e2610c07565b3480156104e957600080fd5b506103466daaeb6d7670e522a718067333cd4e81565b34801561050b57600080fd5b506102e261051a3660046121d3565b610c83565b34801561052b57600080fd5b506102e261053a366004612112565b610ca8565b34801561054b57600080fd5b506103c060105481565b34801561056157600080fd5b506103c0610570366004612112565b610cc5565b34801561058157600080fd5b50600e546102ad90610100900460ff1681565b3480156105a057600080fd5b506102e26105af3660046122bc565b610d70565b3480156105c057600080fd5b506102e2610d84565b3480156105d557600080fd5b506103466105e4366004612112565b610dbf565b6102e26105f7366004612348565b610dd1565b34801561060857600080fd5b506103c06106173660046121b8565b610e99565b34801561062857600080fd5b506102e2610ee7565b34801561063d57600080fd5b50600054610346906001600160a01b031681565b34801561065d57600080fd5b50600e546102ad9060ff1681565b34801561067757600080fd5b506102e2610686366004612112565b610ef9565b34801561069757600080fd5b506008546001600160a01b0316610346565b3480156106b557600080fd5b506102e26106c4366004612112565b610f06565b3480156106d557600080fd5b506102e26106e43660046122bc565b610f13565b3480156106f557600080fd5b50610319610f27565b34801561070a57600080fd5b506102e26107193660046123b3565b610f36565b6102e261072c366004612112565b610f7c565b34801561073d57600080fd5b506102e261074c366004612402565b61116c565b34801561075d57600080fd5b506103c060115481565b34801561077357600080fd5b506102e261078236600461242e565b611180565b34801561079357600080fd5b506103196107a2366004612112565b6111a6565b3480156107b357600080fd5b506102e26112d0565b3480156107c857600080fd5b50610319611302565b3480156107dd57600080fd5b506102ad6107ec3660046124a9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082657600080fd5b506102e2610835366004612112565b61130f565b34801561084657600080fd5b506102e26108553660046122bc565b61131c565b34801561086657600080fd5b506102e26108753660046121b8565b611330565b6000610885826113c7565b80610894575061089482611432565b92915050565b6108a2611457565b6108ac82826114b1565b5050565b6108b8611457565b601255565b6060600280546108cc906124dc565b80601f01602080910402602001604051908101604052809291908181526020018280546108f8906124dc565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b600061095a826115ae565b610977576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600c80546109a0906124dc565b80601f01602080910402602001604051908101604052809291908181526020018280546109cc906124dc565b8015610a195780601f106109ee57610100808354040283529160200191610a19565b820191906000526020600020905b8154815290600101906020018083116109fc57829003601f168201915b505050505081565b81610a2b816115e4565b610a35838361169d565b505050565b826001600160a01b0381163314610a5457610a54336115e4565b610a5f848484611725565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ada5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610af9906001600160601b03168761252c565b610b039190612559565b91519350909150505b9250929050565b6000610b1e83610e99565b8210610b3d576040516306ed618760e11b815260040160405180910390fd5b6001546001600160801b0316600080805b8381101561028857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610bb55750610bff565b80516001600160a01b031615610bca57805192505b876001600160a01b0316836001600160a01b031603610bfd57868403610bf65750935061089492505050565b6001909301925b505b600101610b4e565b610c0f611457565b6000610c236008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6d576040519150601f19603f3d011682016040523d82523d6000602084013e610c72565b606091505b5050905080610c8057600080fd5b50565b826001600160a01b0381163314610c9d57610c9d336115e4565b610a5f848484611730565b610cb0611457565b610c80610cbc82610dbf565b61dead83610c83565b6001546000906001600160801b031681805b82811015610d5657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d4d57858303610d465750949350505050565b6001909201915b50600101610cd7565b506040516329c8c00760e21b815260040160405180910390fd5b610d78611457565b600b6108ac82826125bb565b610d8c611457565b600e54610100900460ff161515600003610db157600e805461ff001916610100179055565b600e805461ff00191690555b565b6000610dca8261174b565b5192915050565b610dd9611457565b828114610e2d5760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b83811015610e9257610e80858583818110610e4d57610e4d61267a565b9050602002016020810190610e6291906121b8565b848484818110610e7457610e7461267a565b9050602002013561186f565b80610e8a81612690565b915050610e30565b5050505050565b60006001600160a01b038216610ec2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610eef611457565b610dbd6000611889565b610f01611457565b601155565b610f0e611457565b601055565b610f1b611457565b600d6108ac82826125bb565b6060600380546108cc906124dc565b610f3e611457565b60005b81811015610a3557610f6a838383818110610f5e57610f5e61267a565b90506020020135610ca8565b80610f7481612690565b915050610f41565b600f5481610fa26001546001600160801b03600160801b82048116918116919091031690565b610fac91906126a9565b1115610ff15760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610e24565b6008546001600160a01b0316331461116257600e5460ff166110555760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610e24565b6011548161106233610e99565b61106c91906126a9565b11156110ba5760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610e24565b336000908152601460205260408120546012546110d791906126bc565b90506110e381836126bc565b6010546110f0919061252c565b3410156111355760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610e24565b336000908152601460205260409020546111509082906126a9565b33600090815260146020526040902055505b610c80338261186f565b81611176816115e4565b610a3583836118db565b836001600160a01b038116331461119a5761119a336115e4565b610e9285858585611970565b60606111b1826115ae565b6111ce57604051630a14c4b560e41b815260040160405180910390fd5b600e54610100900460ff16151560000361127457600c80546111ef906124dc565b80601f016020809104026020016040519081016040528092919081815260200182805461121b906124dc565b80156112685780601f1061123d57610100808354040283529160200191611268565b820191906000526020600020905b81548152906001019060200180831161124b57829003601f168201915b50505050509050919050565b600b8054611281906124dc565b905060000361129f5760405180602001604052806000815250610894565b600b6112aa836119a4565b6040516020016112bb9291906126cf565b60405160208183030381529060405292915050565b6112d8611457565b600e5460ff1615156000036112f657600e805460ff19166001179055565b600e805460ff19169055565b600d80546109a0906124dc565b611317611457565b600f55565b611324611457565b600c6108ac82826125bb565b611338611457565b6001600160a01b03811661139d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e24565b600080546001600160a01b0319166001600160a01b038316179055610c8081611889565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806113f857506001600160e01b03198216635b5e139f60e01b145b8061141357506001600160e01b0319821663780e9d6360e01b145b8061089457506301ffc9a760e01b6001600160e01b0319831614610894565b60006001600160e01b0319821663152a902d60e11b14806108945750610894826113c7565b6008546001600160a01b03163314610dbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e24565b6127106001600160601b038216111561151f5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610e24565b6001600160a01b0382166115755760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610e24565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6001546000906001600160801b031682108015610894575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610c8057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116759190612766565b610c8057604051633b79c77360e21b81526001600160a01b0382166004820152602401610e24565b60006116a882610dbf565b9050806001600160a01b0316836001600160a01b0316036116dc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906116fc57506116fa81336107ec565b155b1561171a576040516367d9dca160e11b815260040160405180910390fd5b610a35838383611aaf565b610a35838383611b0b565b610a3583838360405180602001604052806000815250611180565b604080516060810182526000808252602082018190529181019190915260015482906001600160801b031681101561185657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118545780516001600160a01b0316156117eb579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561184f579392505050565b6117eb565b505b604051636f96cda160e11b815260040160405180910390fd5b6108ac828260405180602001604052806000815250611dde565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036119045760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61197b848484611b0b565b61198784848484611deb565b610a5f576040516368d2bf6b60e11b815260040160405180910390fd5b6060816000036119cb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f557806119df81612690565b91506119ee9050600a83612559565b91506119cf565b6000816001600160401b03811115611a0f57611a0f612231565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b508593509050815b8315611aa657611a52600a85612783565b611a5d9060306126a9565b60f81b82611a6a83612797565b92508281518110611a7d57611a7d61267a565b60200101906001600160f81b031916908160001a905350611a9f600a85612559565b9350611a41565b50949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b168261174b565b80519091506000906001600160a01b0316336001600160a01b03161480611b4457508151611b4490336107ec565b80611b5f575033611b548461094f565b6001600160a01b0316145b80611b7d57506000546001600160a01b0316336001600160a01b0316145b905080611b9d57604051632ce44b5f60e11b815260040160405180910390fd5b6000546001600160a01b0316336001600160a01b031614611c0a576001600160a01b038416611bdf57604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b03841661dead03611c0a57604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038516600003611c345760405163b238962b60e01b815260040160405180910390fd5b6001600160a01b03851661dead03611c5f5760405163b238962b60e01b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611c945760405162a1148160e81b815260040160405180910390fd5b611ca46000848460000151611aaf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611d97576001546001600160801b0316811015611d9757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e92565b610a358383836001611eee565b60006001600160a01b0384163b15611ee257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e2f9033908990889088906004016127ae565b6020604051808303816000875af1925050508015611e6a575060408051601f3d908101601f19168201909252611e67918101906127eb565b60015b611ec8573d808015611e98576040519150601f19603f3d011682016040523d82523d6000602084013e611e9d565b606091505b508051600003611ec0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ee6565b5060015b949350505050565b6001546001600160801b03166001600160a01b038516611f2057604051622e076360e81b815260040160405180910390fd5b83600003611f415760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156120535760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561202957506120276000888488611deb565b155b15612047576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611fd2565b50600180546001600160801b0319166001600160801b0392909216919091179055610e92565b6001600160e01b031981168114610c8057600080fd5b6000602082840312156120a157600080fd5b81356120ac81612079565b9392505050565b80356001600160a01b03811681146120ca57600080fd5b919050565b600080604083850312156120e257600080fd5b6120eb836120b3565b915060208301356001600160601b038116811461210757600080fd5b809150509250929050565b60006020828403121561212457600080fd5b5035919050565b60005b8381101561214657818101518382015260200161212e565b50506000910152565b6000815180845261216781602086016020860161212b565b601f01601f19169290920160200192915050565b6020815260006120ac602083018461214f565b600080604083850312156121a157600080fd5b6121aa836120b3565b946020939093013593505050565b6000602082840312156121ca57600080fd5b6120ac826120b3565b6000806000606084860312156121e857600080fd5b6121f1846120b3565b92506121ff602085016120b3565b9150604084013590509250925092565b6000806040838503121561222257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561226157612261612231565b604051601f8501601f19908116603f0116810190828211818310171561228957612289612231565b816040528093508581528686860111156122a257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156122ce57600080fd5b81356001600160401b038111156122e457600080fd5b8201601f810184136122f557600080fd5b611ee684823560208401612247565b60008083601f84011261231657600080fd5b5081356001600160401b0381111561232d57600080fd5b6020830191508360208260051b8501011115610b0c57600080fd5b6000806000806040858703121561235e57600080fd5b84356001600160401b038082111561237557600080fd5b61238188838901612304565b9096509450602087013591508082111561239a57600080fd5b506123a787828801612304565b95989497509550505050565b600080602083850312156123c657600080fd5b82356001600160401b038111156123dc57600080fd5b6123e885828601612304565b90969095509350505050565b8015158114610c8057600080fd5b6000806040838503121561241557600080fd5b61241e836120b3565b91506020830135612107816123f4565b6000806000806080858703121561244457600080fd5b61244d856120b3565b935061245b602086016120b3565b92506040850135915060608501356001600160401b0381111561247d57600080fd5b8501601f8101871361248e57600080fd5b61249d87823560208401612247565b91505092959194509250565b600080604083850312156124bc57600080fd5b6124c5836120b3565b91506124d3602084016120b3565b90509250929050565b600181811c908216806124f057607f821691505b60208210810361251057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761089457610894612516565b634e487b7160e01b600052601260045260246000fd5b60008261256857612568612543565b500490565b601f821115610a3557600081815260208120601f850160051c810160208610156125945750805b601f850160051c820191505b818110156125b3578281556001016125a0565b505050505050565b81516001600160401b038111156125d4576125d4612231565b6125e8816125e284546124dc565b8461256d565b602080601f83116001811461261d57600084156126055750858301515b600019600386901b1c1916600185901b1785556125b3565b600085815260208120601f198616915b8281101561264c5788860151825594840194600190910190840161262d565b508582101561266a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b6000600182016126a2576126a2612516565b5060010190565b8082018082111561089457610894612516565b8181038181111561089457610894612516565b60008084546126dd816124dc565b600182811680156126f5576001811461270a57612739565b60ff1984168752821515830287019450612739565b8860005260208060002060005b858110156127305781548a820152908401908201612717565b50505082870194505b50505050835161274d81836020880161212b565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561277857600080fd5b81516120ac816123f4565b60008261279257612792612543565b500690565b6000816127a6576127a6612516565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e19083018461214f565b9695505050505050565b6000602082840312156127fd57600080fd5b81516120ac8161207956fea2646970667358221220411d94ba15f56204f86a5ce47cf2335d8fb2ea2ce9be585c44810073ee1a8ee264736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52794279457351763546756a7639626d336973395a7067775038413239756a5446445166376e7834484345672f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d52794279457351763546756a7639626d336973395a7067
Arg [5] : 775038413239756a5446445166376e7834484345672f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

58708:6177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62433:487;;;;;;;;;;-1:-1:-1;62433:487:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;62433:487:0;;;;;;;;62930:155;;;;;;;;;;-1:-1:-1;62930:155:0;;;;;:::i;:::-;;:::i;:::-;;64505:142;;;;;;;;;;-1:-1:-1;64505:142:0;;;;;:::i;:::-;;:::i;44148:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45659:204::-;;;;;;;;;;-1:-1:-1;45659:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2246:32:1;;;2228:51;;2216:2;2201:18;45659:204:0;2082:203:1;58851:28:0;;;;;;;;;;;;;:::i;61681:157::-;;;;;;;;;;-1:-1:-1;61681:157:0;;;;;:::i;:::-;;:::i;59186:47::-;;;;;;;;;;-1:-1:-1;59186:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2886:25:1;;;2874:2;2859:18;59186:47:0;2740:177:1;38775:280:0;;;;;;;;;;;;39020:12;;-1:-1:-1;;;;;;;;39020:12:0;;;;39004:13;;;:28;;;;38997:35;;38775:280;61846:163;;;;;;;;;;-1:-1:-1;61846:163:0;;;;;:::i;:::-;;:::i;26518:442::-;;;;;;;;;;-1:-1:-1;26518:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3700:32:1;;;3682:51;;3764:2;3749:18;;3742:34;;;;3655:18;26518:442:0;3508:274:1;40361:1105:0;;;;;;;;;;-1:-1:-1;40361:1105:0;;;;;:::i;:::-;;:::i;59135:38::-;;;;;;;;;;;;;;;;59001:32;;;;;;;;;;;;;;;;59240:45;;;;;;;;;;-1:-1:-1;59240:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;64080:157;;;:::i;4466:143::-;;;;;;;;;;;;4566:42;4466:143;;62017:171;;;;;;;;;;-1:-1:-1;62017:171:0;;;;;:::i;:::-;;:::i;60697:243::-;;;;;;;;;;-1:-1:-1;60697:243:0;;;;;:::i;:::-;;:::i;59040:43::-;;;;;;;;;;;;;;;;39348:713;;;;;;;;;;-1:-1:-1;39348:713:0;;;;;:::i;:::-;;:::i;58965:27::-;;;;;;;;;;-1:-1:-1;58965:27:0;;;;;;;;;;;64769:103;;;;;;;;;;-1:-1:-1;64769:103:0;;;;;:::i;:::-;;:::i;63386:179::-;;;;;;;;;;;;;:::i;43957:124::-;;;;;;;;;;-1:-1:-1;43957:124:0;;;;;:::i;:::-;;:::i;59646:311::-;;;;;;:::i;:::-;;:::i;41974:206::-;;;;;;;;;;-1:-1:-1;41974:206:0;;;;;:::i;:::-;;:::i;12492:103::-;;;;;;;;;;;;;:::i;36787:27::-;;;;;;;;;;-1:-1:-1;36787:27:0;;;;-1:-1:-1;;;;;36787:27:0;;;58920:38;;;;;;;;;;-1:-1:-1;58920:38:0;;;;;;;;64375:122;;;;;;;;;;-1:-1:-1;64375:122:0;;;;;:::i;:::-;;:::i;11844:87::-;;;;;;;;;;-1:-1:-1;11917:6:0;;-1:-1:-1;;;;;11917:6:0;11844:87;;64245:122;;;;;;;;;;-1:-1:-1;64245:122:0;;;;;:::i;:::-;;:::i;63953:116::-;;;;;;;;;;-1:-1:-1;63953:116:0;;;;;:::i;:::-;;:::i;44317:104::-;;;;;;;;;;;;;:::i;60948:166::-;;;;;;;;;;-1:-1:-1;60948:166:0;;;;;:::i;:::-;;:::i;59965:724::-;;;;;;:::i;:::-;;:::i;61497:176::-;;;;;;;;;;-1:-1:-1;61497:176:0;;;;;:::i;:::-;;:::i;59090:34::-;;;;;;;;;;;;;;;;62196:228;;;;;;;;;;-1:-1:-1;62196:228:0;;;;;:::i;:::-;;:::i;61124:365::-;;;;;;;;;;-1:-1:-1;61124:365:0;;;;;:::i;:::-;;:::i;63584:222::-;;;;;;;;;;;;;:::i;58886:25::-;;;;;;;;;;;;;:::i;46293:164::-;;;;;;;;;;-1:-1:-1;46293:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46414:25:0;;;46390:4;46414:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46293:164;64655:106;;;;;;;;;;-1:-1:-1;64655:106:0;;;;;:::i;:::-;;:::i;63815:126::-;;;;;;;;;;-1:-1:-1;63815:126:0;;;;;:::i;:::-;;:::i;63093:252::-;;;;;;;;;;-1:-1:-1;63093:252:0;;;;;:::i;:::-;;:::i;62433:487::-;62581:4;62819:38;62845:11;62819:25;:38::i;:::-;:93;;;;62874:38;62900:11;62874:25;:38::i;:::-;62799:113;62433:487;-1:-1:-1;;62433:487:0:o;62930:155::-;11730:13;:11;:13::i;:::-;63028:49:::1;63047:9;63058:18;63028;:49::i;:::-;62930:155:::0;;:::o;64505:142::-;11730:13;:11;:13::i;:::-;64597:19:::1;:42:::0;64505:142::o;44148:100::-;44202:13;44235:5;44228:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44148:100;:::o;45659:204::-;45727:7;45752:16;45760:7;45752;:16::i;:::-;45747:64;;45777:34;;-1:-1:-1;;;45777:34:0;;;;;;;;;;;45747:64;-1:-1:-1;45831:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45831:24:0;;45659:204::o;58851:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61681:157::-;61777:8;5987:30;6008:8;5987:20;:30::i;:::-;61798:32:::1;61812:8;61822:7;61798:13;:32::i;:::-;61681:157:::0;;;:::o;61846:163::-;61947:4;-1:-1:-1;;;;;5807:18:0;;5815:10;5807:18;5803:83;;5842:32;5863:10;5842:20;:32::i;:::-;61964:37:::1;61983:4;61989:2;61993:7;61964:18;:37::i;:::-;61846:163:::0;;;;:::o;26518:442::-;26615:7;26673:27;;;:17;:27;;;;;;;;26644:56;;;;;;;;;-1:-1:-1;;;;;26644:56:0;;;;;-1:-1:-1;;;26644:56:0;;;-1:-1:-1;;;;;26644:56:0;;;;;;;;26615:7;;26713:92;;-1:-1:-1;26764:29:0;;;;;;;;;26774:19;26764:29;-1:-1:-1;;;;;26764:29:0;;;;-1:-1:-1;;;26764:29:0;;-1:-1:-1;;;;;26764:29:0;;;;;26713:92;26855:23;;;;26817:21;;27326:5;;26842:36;;-1:-1:-1;;;;;26842:36:0;:10;:36;:::i;:::-;26841:58;;;;:::i;:::-;26920:16;;;-1:-1:-1;26817:82:0;;-1:-1:-1;;26518:442:0;;;;;;:::o;40361:1105::-;40450:7;40483:16;40493:5;40483:9;:16::i;:::-;40474:5;:25;40470:61;;40508:23;;-1:-1:-1;;;40508:23:0;;;;;;;;;;;40470:61;40567:13;;-1:-1:-1;;;;;40567:13:0;40542:22;;;40817:557;40837:14;40833:1;:18;40817:557;;;40877:31;40911:14;;;:11;:14;;;;;;;;;40877:48;;;;;;;;;-1:-1:-1;;;;;40877:48:0;;;;-1:-1:-1;;;40877:48:0;;-1:-1:-1;;;;;40877:48:0;;;;;;;;-1:-1:-1;;;40877:48:0;;;;;;;;;;;;;;;;40944:73;;40989:8;;;40944:73;41039:14;;-1:-1:-1;;;;;41039:28:0;;41035:111;;41112:14;;;-1:-1:-1;41035:111:0;41189:5;-1:-1:-1;;;;;41168:26:0;:17;-1:-1:-1;;;;;41168:26:0;;41164:195;;41238:5;41223:11;:20;41219:85;;-1:-1:-1;41279:1:0;-1:-1:-1;41272:8:0;;-1:-1:-1;;;41272:8:0;41219:85;41326:13;;;;;41164:195;40858:516;40817:557;40853:3;;40817:557;;64080:157;11730:13;:11;:13::i;:::-;64139:9:::1;64162:7;11917:6:::0;;-1:-1:-1;;;;;11917:6:0;;11844:87;64162:7:::1;-1:-1:-1::0;;;;;64154:21:0::1;64183;64154:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64138:71;;;64224:4;64216:13;;;::::0;::::1;;64127:110;64080:157::o:0;62017:171::-;62122:4;-1:-1:-1;;;;;5807:18:0;;5815:10;5807:18;5803:83;;5842:32;5863:10;5842:20;:32::i;:::-;62139:41:::1;62162:4;62168:2;62172:7;62139:22;:41::i;60697:243::-:0;11730:13;:11;:13::i;:::-;60830:102:::1;60847:16;60855:7;60847;:16::i;:::-;60865:42;60924:7;60830:16;:102::i;39348:713::-:0;39460:13;;39415:7;;-1:-1:-1;;;;;39460:13:0;39415:7;;39674:328;39694:14;39690:1;:18;39674:328;;;39734:31;39768:14;;;:11;:14;;;;;;;;;39734:48;;;;;;;;;-1:-1:-1;;;;;39734:48:0;;;;-1:-1:-1;;;39734:48:0;;-1:-1:-1;;;;;39734:48:0;;;;;;;;-1:-1:-1;;;39734:48:0;;;;;;;;;;;;;;39801:186;;39866:5;39851:11;:20;39847:85;;-1:-1:-1;39907:1:0;39348:713;-1:-1:-1;;;;39348:713:0:o;39847:85::-;39954:13;;;;;39801:186;-1:-1:-1;39710:3:0;;39674:328;;;;40030:23;;-1:-1:-1;;;40030:23:0;;;;;;;;;;;64769:103;11730:13;:11;:13::i;:::-;64844:7:::1;:21;64854:11:::0;64844:7;:21:::1;:::i;63386:179::-:0;11730:13;:11;:13::i;:::-;63453:8:::1;::::0;::::1;::::0;::::1;;;:15;;63463:5;63453:15:::0;63450:108:::1;;63484:8;:15:::0;;-1:-1:-1;;63484:15:0::1;;;::::0;;63386:179::o;63450:108::-:1;63530:8;:16:::0;;-1:-1:-1;;63530:16:0::1;::::0;;63450:108:::1;63386:179::o:0;43957:124::-;44021:7;44048:20;44060:7;44048:11;:20::i;:::-;:25;;43957:124;-1:-1:-1;;43957:124:0:o;59646:311::-;11730:13;:11;:13::i;:::-;59769:34;;::::1;59761:74;;;::::0;-1:-1:-1;;;59761:74:0;;11786:2:1;59761:74:0::1;::::0;::::1;11768:21:1::0;11825:2;11805:18;;;11798:30;11864:29;11844:18;;;11837:57;11911:18;;59761:74:0::1;;;;;;;;;59852:9;59848:102;59867:19:::0;;::::1;59848:102;;;59903:35;59913:8;;59922:1;59913:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;59926:8;;59935:1;59926:11;;;;;;;:::i;:::-;;;;;;;59903:9;:35::i;:::-;59888:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59848:102;;;;59646:311:::0;;;;:::o;41974:206::-;42038:7;-1:-1:-1;;;;;42062:19:0;;42058:60;;42090:28;;-1:-1:-1;;;42090:28:0;;;;;;;;;;;42058:60;-1:-1:-1;;;;;;42144:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42144:27:0;;41974:206::o;12492:103::-;11730:13;:11;:13::i;:::-;12557:30:::1;12584:1;12557:18;:30::i;64375:122::-:0;11730:13;:11;:13::i;:::-;64457:14:::1;:32:::0;64375:122::o;64245:::-;11730:13;:11;:13::i;:::-;64327:14:::1;:32:::0;64245:122::o;63953:116::-;11730:13;:11;:13::i;:::-;64035:11:::1;:26;64049:12:::0;64035:11;:26:::1;:::i;44317:104::-:0;44373:13;44406:7;44399:14;;;;;:::i;60948:166::-;11730:13;:11;:13::i;:::-;61025:9:::1;61021:86;61040:18:::0;;::::1;61021:86;;;61079:16;61084:7;;61092:1;61084:10;;;;;;;:::i;:::-;;;;;;;61079:4;:16::i;:::-;61060:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61021:86;;59965:724:::0;60066:10;;60054:8;60038:13;39020:12;;-1:-1:-1;;;;;;;;39020:12:0;;;;39004:13;;;:28;;;;38997:35;;38775:280;60038:13;:24;;;;:::i;:::-;:38;;60030:70;;;;-1:-1:-1;;;60030:70:0;;12544:2:1;60030:70:0;;;12526:21:1;12583:2;12563:18;;;12556:30;-1:-1:-1;;;12602:18:1;;;12595:50;12662:18;;60030:70:0;12342:344:1;60030:70:0;11917:6;;-1:-1:-1;;;;;11917:6:0;60121:10;:21;60117:511;;60169:18;;;;60161:56;;;;-1:-1:-1;;;60161:56:0;;12893:2:1;60161:56:0;;;12875:21:1;12932:2;12912:18;;;12905:30;12971:27;12951:18;;;12944:55;13016:18;;60161:56:0;12691:349:1;60161:56:0;60277:14;;60265:8;60241:21;60251:10;60241:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;60233:87;;;;-1:-1:-1;;;60233:87:0;;13247:2:1;60233:87:0;;;13229:21:1;13286:2;13266:18;;;13259:30;13325:26;13305:18;;;13298:54;13369:18;;60233:87:0;13045:348:1;60233:87:0;60404:10;60345:23;60393:22;;;:10;:22;;;;;;60371:19;;:44;;60393:22;60371:44;:::i;:::-;60345:70;-1:-1:-1;60470:26:0;60345:70;60470:8;:26;:::i;:::-;60452:14;;:45;;;;:::i;:::-;60438:9;:60;;60430:92;;;;-1:-1:-1;;;60430:92:0;;13733:2:1;60430:92:0;;;13715:21:1;13772:2;13752:18;;;13745:30;-1:-1:-1;;;13791:18:1;;;13784:49;13850:18;;60430:92:0;13531:343:1;60430:92:0;60575:10;60564:22;;;;:10;:22;;;;;;:40;;60589:15;;60564:40;:::i;:::-;60550:10;60539:22;;;;:10;:22;;;;;:65;-1:-1:-1;60117:511:0;60640:31;60650:10;60662:8;60640:9;:31::i;61497:176::-;61601:8;5987:30;6008:8;5987:20;:30::i;:::-;61622:43:::1;61646:8;61656;61622:23;:43::i;62196:228::-:0;62347:4;-1:-1:-1;;;;;5807:18:0;;5815:10;5807:18;5803:83;;5842:32;5863:10;5842:20;:32::i;:::-;62369:47:::1;62392:4;62398:2;62402:7;62411:4;62369:22;:47::i;61124:365::-:0;61197:13;61228:16;61236:7;61228;:16::i;:::-;61223:59;;61253:29;;-1:-1:-1;;;61253:29:0;;;;;;;;;;;61223:59;61298:8;;;;;;;:17;;61310:5;61298:17;61295:66;;61335:14;61328:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61124:365;;;:::o;61295:66::-;61392:7;61386:21;;;;;:::i;:::-;;;61411:1;61386:26;:95;;;;;;;;;;;;;;;;;61439:7;61448:18;:7;:16;:18::i;:::-;61422:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61379:102;61124:365;-1:-1:-1;;61124:365:0:o;63584:222::-;11730:13;:11;:13::i;:::-;63664:18:::1;::::0;::::1;;:25;;:18;:25:::0;63661:138:::1;;63705:18;:25:::0;;-1:-1:-1;;63705:25:0::1;63726:4;63705:25;::::0;;63386:179::o;63661:138::-:1;63761:18;:26:::0;;-1:-1:-1;;63761:26:0::1;::::0;;63584:222::o;58886:25::-;;;;;;;:::i;64655:106::-;11730:13;:11;:13::i;:::-;64729:10:::1;:24:::0;64655:106::o;63815:126::-;11730:13;:11;:13::i;:::-;63901:14:::1;:32;63918:15:::0;63901:14;:32:::1;:::i;63093:252::-:0;11730:13;:11;:13::i;:::-;-1:-1:-1;;;;;63191:22:0;::::1;63183:73;;;::::0;-1:-1:-1;;;63183:73:0;;15273:2:1;63183:73:0::1;::::0;::::1;15255:21:1::0;15312:2;15292:18;;;15285:30;15351:34;15331:18;;;15324:62;-1:-1:-1;;;15402:18:1;;;15395:36;15448:19;;63183:73:0::1;15071:402:1::0;63183:73:0::1;63267:20;:31:::0;;-1:-1:-1;;;;;;63267:31:0::1;-1:-1:-1::0;;;;;63267:31:0;::::1;;::::0;;63309:28:::1;63267:31:::0;63309:18:::1;:28::i;14043:422::-:0;14410:20;14449:8;;;14043:422::o;41538:372::-;41640:4;-1:-1:-1;;;;;;41677:40:0;;-1:-1:-1;;;41677:40:0;;:105;;-1:-1:-1;;;;;;;41734:48:0;;-1:-1:-1;;;41734:48:0;41677:105;:172;;;-1:-1:-1;;;;;;;41799:50:0;;-1:-1:-1;;;41799:50:0;41677:172;:225;;;-1:-1:-1;;;;;;;;;;24846:40:0;;;41866:36;24737:157;26248:215;26350:4;-1:-1:-1;;;;;;26374:41:0;;-1:-1:-1;;;26374:41:0;;:81;;;26419:36;26443:11;26419:23;:36::i;12009:132::-;11917:6;;-1:-1:-1;;;;;11917:6:0;10374:10;12073:23;12065:68;;;;-1:-1:-1;;;12065:68:0;;15680:2:1;12065:68:0;;;15662:21:1;;;15699:18;;;15692:30;15758:34;15738:18;;;15731:62;15810:18;;12065:68:0;15478:356:1;27610:332:0;27326:5;-1:-1:-1;;;;;27713:33:0;;;;27705:88;;;;-1:-1:-1;;;27705:88:0;;16041:2:1;27705:88:0;;;16023:21:1;16080:2;16060:18;;;16053:30;16119:34;16099:18;;;16092:62;-1:-1:-1;;;16170:18:1;;;16163:40;16220:19;;27705:88:0;15839:406:1;27705:88:0;-1:-1:-1;;;;;27812:22:0;;27804:60;;;;-1:-1:-1;;;27804:60:0;;16452:2:1;27804:60:0;;;16434:21:1;16491:2;16471:18;;;16464:30;16530:27;16510:18;;;16503:55;16575:18;;27804:60:0;16250:349:1;27804:60:0;27899:35;;;;;;;;;-1:-1:-1;;;;;27899:35:0;;;;;;-1:-1:-1;;;;;27899:35:0;;;;;;;;;;-1:-1:-1;;;27877:57:0;;;;:19;:57;27610:332::o;47618:144::-;47709:13;;47675:4;;-1:-1:-1;;;;;47709:13:0;47699:23;;:55;;;;-1:-1:-1;;47727:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;47727:27:0;;;;47726:28;;47618:144::o;6045:419::-;4566:42;6236:45;:49;6232:225;;6307:67;;-1:-1:-1;;;6307:67:0;;6358:4;6307:67;;;16816:34:1;-1:-1:-1;;;;;16886:15:1;;16866:18;;;16859:43;4566:42:0;;6307;;16751:18:1;;6307:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6302:144;;6402:28;;-1:-1:-1;;;6402:28:0;;-1:-1:-1;;;;;2246:32:1;;6402:28:0;;;2228:51:1;2201:18;;6402:28:0;2082:203:1;45214:379:0;45295:13;45311:24;45327:7;45311:15;:24::i;:::-;45295:40;;45356:5;-1:-1:-1;;;;;45350:11:0;:2;-1:-1:-1;;;;;45350:11:0;;45346:48;;45370:24;;-1:-1:-1;;;45370:24:0;;;;;;;;;;;45346:48;10374:10;-1:-1:-1;;;;;45411:21:0;;;;;;:63;;-1:-1:-1;45437:37:0;45454:5;10374:10;46293:164;:::i;45437:37::-;45436:38;45411:63;45407:138;;;45498:35;;-1:-1:-1;;;45498:35:0;;;;;;;;;;;45407:138;45557:28;45566:2;45570:7;45579:5;45557:8;:28::i;46524:170::-;46658:28;46668:4;46674:2;46678:7;46658:9;:28::i;46765:185::-;46903:39;46920:4;46926:2;46930:7;46903:39;;;;;;;;;;;;:16;:39::i;42812:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;42978:13:0;;42922:7;;-1:-1:-1;;;;;42978:13:0;42971:20;;42967:861;;;43012:31;43046:17;;;:11;:17;;;;;;;;;43012:51;;;;;;;;;-1:-1:-1;;;;;43012:51:0;;;;-1:-1:-1;;;43012:51:0;;-1:-1:-1;;;;;43012:51:0;;;;;;;;-1:-1:-1;;;43012:51:0;;;;;;;;;;;;;;43082:731;;43132:14;;-1:-1:-1;;;;;43132:28:0;;43128:101;;43196:9;42812:1083;-1:-1:-1;;;42812:1083:0:o;43128:101::-;-1:-1:-1;;;43573:6:0;43618:17;;;;:11;:17;;;;;;;;;43606:29;;;;;;;;;-1:-1:-1;;;;;43606:29:0;;;;;-1:-1:-1;;;43606:29:0;;-1:-1:-1;;;;;43606:29:0;;;;;;;;-1:-1:-1;;;43606:29:0;;;;;;;;;;;;;43666:28;43662:109;;43734:9;42812:1083;-1:-1:-1;;;42812:1083:0:o;43662:109::-;43533:261;;;42993:835;42967:861;43856:31;;-1:-1:-1;;;43856:31:0;;;;;;;;;;;47770:104;47839:27;47849:2;47853:8;47839:27;;;;;;;;;;;;:9;:27::i;13111:191::-;13204:6;;;-1:-1:-1;;;;;13221:17:0;;;-1:-1:-1;;;;;;13221:17:0;;;;;;;13254:40;;13204:6;;;13221:17;13204:6;;13254:40;;13185:16;;13254:40;13174:128;13111:191;:::o;45935:287::-;10374:10;-1:-1:-1;;;;;46034:24:0;;;46030:54;;46067:17;;-1:-1:-1;;;46067:17:0;;;;;;;;;;;46030:54;10374:10;46097:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46097:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46097:53:0;;;;;;;;;;46166:48;;540:41:1;;;46097:42:0;;10374:10;46166:48;;513:18:1;46166:48:0;;;;;;;45935:287;;:::o;47021:342::-;47188:28;47198:4;47204:2;47208:7;47188:9;:28::i;:::-;47232:48;47255:4;47261:2;47265:7;47274:5;47232:22;:48::i;:::-;47227:129;;47304:40;;-1:-1:-1;;;47304:40:0;;;;;;;;;;;8938:751;8994:13;9215:5;9224:1;9215:10;9211:53;;-1:-1:-1;;9242:10:0;;;;;;;;;;;;-1:-1:-1;;;9242:10:0;;;;;8938:751::o;9211:53::-;9289:5;9274:12;9330:78;9337:9;;9330:78;;9363:8;;;;:::i;:::-;;-1:-1:-1;9386:10:0;;-1:-1:-1;9394:2:0;9386:10;;:::i;:::-;;;9330:78;;;9418:19;9450:6;-1:-1:-1;;;;;9440:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9440:17:0;-1:-1:-1;9508:5:0;;-1:-1:-1;9418:39:0;-1:-1:-1;9484:6:0;9524:126;9531:9;;9524:126;;9601:9;9608:2;9601:4;:9;:::i;:::-;9588:23;;:2;:23;:::i;:::-;9575:38;;9557:6;9564:7;;;:::i;:::-;;;;9557:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9557:56:0;;;;;;;;-1:-1:-1;9628:10:0;9636:2;9628:10;;:::i;:::-;;;9524:126;;;-1:-1:-1;9674:6:0;8938:751;-1:-1:-1;;;;8938:751:0:o;55497:196::-;55612:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55612:29:0;-1:-1:-1;;;;;55612:29:0;;;;;;;;;55657:28;;55612:24;;55657:28;;;;;;;55497:196;;;:::o;50335:2775::-;50450:35;50488:20;50500:7;50488:11;:20::i;:::-;50563:18;;50450:58;;-1:-1:-1;50521:22:0;;-1:-1:-1;;;;;50547:34:0;10374:10;-1:-1:-1;;;;;50547:34:0;;:101;;;-1:-1:-1;50615:18:0;;50598:50;;10374:10;46293:164;:::i;50598:50::-;50547:154;;;-1:-1:-1;10374:10:0;50665:20;50677:7;50665:11;:20::i;:::-;-1:-1:-1;;;;;50665:36:0;;50547:154;:186;;;-1:-1:-1;50721:12:0;;-1:-1:-1;;;;;50721:12:0;10374:10;-1:-1:-1;;;;;50705:28:0;;50547:186;50521:235;;50774:17;50769:66;;50800:35;;-1:-1:-1;;;50800:35:0;;;;;;;;;;;50769:66;51051:12;;-1:-1:-1;;;;;51051:12:0;10374:10;-1:-1:-1;;;;;51035:28:0;;51030:229;;-1:-1:-1;;;;;51086:16:0;;51082:52;;51111:23;;-1:-1:-1;;;51111:23:0;;;;;;;;;;;51082:52;-1:-1:-1;;;;;51153:48:0;;51159:42;51153:48;51149:84;;51210:23;;-1:-1:-1;;;51210:23:0;;;;;;;;;;;51149:84;-1:-1:-1;;;;;51275:18:0;;51283:1;51275:18;51271:63;;51302:32;;-1:-1:-1;;;51302:32:0;;;;;;;;;;;51271:63;-1:-1:-1;;;;;51349:50:0;;51357:42;51349:50;51345:95;;51408:32;;-1:-1:-1;;;51408:32:0;;;;;;;;;;;51345:95;51479:4;-1:-1:-1;;;;;51457:26:0;:13;:18;;;-1:-1:-1;;;;;51457:26:0;;51453:67;;51492:28;;-1:-1:-1;;;51492:28:0;;;;;;;;;;;51453:67;51706:49;51723:1;51727:7;51736:13;:18;;;51706:8;:49::i;:::-;-1:-1:-1;;;;;52051:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;52051:31:0;;;-1:-1:-1;;;;;52051:31:0;;;-1:-1:-1;;52051:31:0;;;;;;;52097:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;52097:29:0;;;;;;;;;;;52143:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;52188:61:0;;;;-1:-1:-1;;;52233:15:0;52188:61;;;;;;;;;;;52523:11;;;52553:24;;;;;:29;52523:11;;52553:29;52549:445;;52778:13;;-1:-1:-1;;;;;52778:13:0;52764:27;;52760:219;;;52848:18;;;52816:24;;;:11;:24;;;;;;;;:50;;52931:28;;;;-1:-1:-1;;;;;52889:70:0;-1:-1:-1;;;52889:70:0;-1:-1:-1;;;;;;52889:70:0;;;-1:-1:-1;;;;;52816:50:0;;;52889:70;;;;;;;52760:219;52026:979;53041:7;53037:2;-1:-1:-1;;;;;53022:27:0;53031:4;-1:-1:-1;;;;;53022:27:0;;;;;;;;;;;53060:42;61846:163;48237;48360:32;48366:2;48370:8;48380:5;48387:4;48360:5;:32::i;56258:790::-;56413:4;-1:-1:-1;;;;;56434:13:0;;14410:20;14449:8;56430:611;;56470:72;;-1:-1:-1;;;56470:72:0;;-1:-1:-1;;;;;56470:36:0;;;;;:72;;10374:10;;56521:4;;56527:7;;56536:5;;56470:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56470:72:0;;;;;;;;-1:-1:-1;;56470:72:0;;;;;;;;;;;;:::i;:::-;;;56466:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56716:6;:13;56733:1;56716:18;56712:259;;56766:40;;-1:-1:-1;;;56766:40:0;;;;;;;;;;;56712:259;56921:6;56915:13;56906:6;56902:2;56898:15;56891:38;56466:520;-1:-1:-1;;;;;;56593:55:0;-1:-1:-1;;;56593:55:0;;-1:-1:-1;56586:62:0;;56430:611;-1:-1:-1;57025:4:0;56430:611;56258:790;;;;;;:::o;48659:1422::-;48821:13;;-1:-1:-1;;;;;48821:13:0;-1:-1:-1;;;;;48849:16:0;;48845:48;;48874:19;;-1:-1:-1;;;48874:19:0;;;;;;;;;;;48845:48;48908:8;48920:1;48908:13;48904:44;;48930:18;;-1:-1:-1;;;48930:18:0;;;;;;;;;;;48904:44;-1:-1:-1;;;;;49300:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;49359:49:0;;-1:-1:-1;;;;;49300:44:0;;;;;;;49359:49;;;;-1:-1:-1;;49300:44:0;;;;;;49359:49;;;;;;;;;;;;;;;;49425:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;49475:66:0;;;;-1:-1:-1;;;49525:15:0;49475:66;;;;;;;;;;;49425:25;;49610:328;49630:8;49626:1;:12;49610:328;;;49669:38;;49694:12;;-1:-1:-1;;;;;49669:38:0;;;49686:1;;49669:38;;49686:1;;49669:38;49730:4;:68;;;;;49739:59;49770:1;49774:2;49778:12;49792:5;49739:22;:59::i;:::-;49738:60;49730:68;49726:164;;;49830:40;;-1:-1:-1;;;49830:40:0;;;;;;;;;;;49726:164;49908:14;;;;;49640:3;49610:328;;;-1:-1:-1;49954:13:0;:37;;-1:-1:-1;;;;;;49954:37:0;-1:-1:-1;;;;;49954:37:0;;;;;;;;;;50013:60;61846:163;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:250::-;1411:1;1421:113;1435:6;1432:1;1429:13;1421:113;;;1511:11;;;1505:18;1492:11;;;1485:39;1457:2;1450:10;1421:113;;;-1:-1:-1;;1568:1:1;1550:16;;1543:27;1326:250::o;1581:271::-;1623:3;1661:5;1655:12;1688:6;1683:3;1676:19;1704:76;1773:6;1766:4;1761:3;1757:14;1750:4;1743:5;1739:16;1704:76;:::i;:::-;1834:2;1813:15;-1:-1:-1;;1809:29:1;1800:39;;;;1841:4;1796:50;;1581:271;-1:-1:-1;;1581:271:1:o;1857:220::-;2006:2;1995:9;1988:21;1969:4;2026:45;2067:2;2056:9;2052:18;2044:6;2026:45;:::i;2290:254::-;2358:6;2366;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;2458:29;2477:9;2458:29;:::i;:::-;2448:39;2534:2;2519:18;;;;2506:32;;-1:-1:-1;;;2290:254:1:o;2549:186::-;2608:6;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;2922:328::-;2999:6;3007;3015;3068:2;3056:9;3047:7;3043:23;3039:32;3036:52;;;3084:1;3081;3074:12;3036:52;3107:29;3126:9;3107:29;:::i;:::-;3097:39;;3155:38;3189:2;3178:9;3174:18;3155:38;:::i;:::-;3145:48;;3240:2;3229:9;3225:18;3212:32;3202:42;;2922:328;;;;;:::o;3255:248::-;3323:6;3331;3384:2;3372:9;3363:7;3359:23;3355:32;3352:52;;;3400:1;3397;3390:12;3352:52;-1:-1:-1;;3423:23:1;;;3493:2;3478:18;;;3465:32;;-1:-1:-1;3255:248:1:o;4026:127::-;4087:10;4082:3;4078:20;4075:1;4068:31;4118:4;4115:1;4108:15;4142:4;4139:1;4132:15;4158:632;4223:5;-1:-1:-1;;;;;4294:2:1;4286:6;4283:14;4280:40;;;4300:18;;:::i;:::-;4375:2;4369:9;4343:2;4429:15;;-1:-1:-1;;4425:24:1;;;4451:2;4421:33;4417:42;4405:55;;;4475:18;;;4495:22;;;4472:46;4469:72;;;4521:18;;:::i;:::-;4561:10;4557:2;4550:22;4590:6;4581:15;;4620:6;4612;4605:22;4660:3;4651:6;4646:3;4642:16;4639:25;4636:45;;;4677:1;4674;4667:12;4636:45;4727:6;4722:3;4715:4;4707:6;4703:17;4690:44;4782:1;4775:4;4766:6;4758;4754:19;4750:30;4743:41;;;;4158:632;;;;;:::o;4795:451::-;4864:6;4917:2;4905:9;4896:7;4892:23;4888:32;4885:52;;;4933:1;4930;4923:12;4885:52;4973:9;4960:23;-1:-1:-1;;;;;4998:6:1;4995:30;4992:50;;;5038:1;5035;5028:12;4992:50;5061:22;;5114:4;5106:13;;5102:27;-1:-1:-1;5092:55:1;;5143:1;5140;5133:12;5092:55;5166:74;5232:7;5227:2;5214:16;5209:2;5205;5201:11;5166:74;:::i;5251:367::-;5314:8;5324:6;5378:3;5371:4;5363:6;5359:17;5355:27;5345:55;;5396:1;5393;5386:12;5345:55;-1:-1:-1;5419:20:1;;-1:-1:-1;;;;;5451:30:1;;5448:50;;;5494:1;5491;5484:12;5448:50;5531:4;5523:6;5519:17;5507:29;;5591:3;5584:4;5574:6;5571:1;5567:14;5559:6;5555:27;5551:38;5548:47;5545:67;;;5608:1;5605;5598:12;5623:773;5745:6;5753;5761;5769;5822:2;5810:9;5801:7;5797:23;5793:32;5790:52;;;5838:1;5835;5828:12;5790:52;5878:9;5865:23;-1:-1:-1;;;;;5948:2:1;5940:6;5937:14;5934:34;;;5964:1;5961;5954:12;5934:34;6003:70;6065:7;6056:6;6045:9;6041:22;6003:70;:::i;:::-;6092:8;;-1:-1:-1;5977:96:1;-1:-1:-1;6180:2:1;6165:18;;6152:32;;-1:-1:-1;6196:16:1;;;6193:36;;;6225:1;6222;6215:12;6193:36;;6264:72;6328:7;6317:8;6306:9;6302:24;6264:72;:::i;:::-;5623:773;;;;-1:-1:-1;6355:8:1;-1:-1:-1;;;;5623:773:1:o;6401:437::-;6487:6;6495;6548:2;6536:9;6527:7;6523:23;6519:32;6516:52;;;6564:1;6561;6554:12;6516:52;6604:9;6591:23;-1:-1:-1;;;;;6629:6:1;6626:30;6623:50;;;6669:1;6666;6659:12;6623:50;6708:70;6770:7;6761:6;6750:9;6746:22;6708:70;:::i;:::-;6797:8;;6682:96;;-1:-1:-1;6401:437:1;-1:-1:-1;;;;6401:437:1:o;6843:118::-;6929:5;6922:13;6915:21;6908:5;6905:32;6895:60;;6951:1;6948;6941:12;6966:315;7031:6;7039;7092:2;7080:9;7071:7;7067:23;7063:32;7060:52;;;7108:1;7105;7098:12;7060:52;7131:29;7150:9;7131:29;:::i;:::-;7121:39;;7210:2;7199:9;7195:18;7182:32;7223:28;7245:5;7223:28;:::i;7286:667::-;7381:6;7389;7397;7405;7458:3;7446:9;7437:7;7433:23;7429:33;7426:53;;;7475:1;7472;7465:12;7426:53;7498:29;7517:9;7498:29;:::i;:::-;7488:39;;7546:38;7580:2;7569:9;7565:18;7546:38;:::i;:::-;7536:48;;7631:2;7620:9;7616:18;7603:32;7593:42;;7686:2;7675:9;7671:18;7658:32;-1:-1:-1;;;;;7705:6:1;7702:30;7699:50;;;7745:1;7742;7735:12;7699:50;7768:22;;7821:4;7813:13;;7809:27;-1:-1:-1;7799:55:1;;7850:1;7847;7840:12;7799:55;7873:74;7939:7;7934:2;7921:16;7916:2;7912;7908:11;7873:74;:::i;:::-;7863:84;;;7286:667;;;;;;;:::o;7958:260::-;8026:6;8034;8087:2;8075:9;8066:7;8062:23;8058:32;8055:52;;;8103:1;8100;8093:12;8055:52;8126:29;8145:9;8126:29;:::i;:::-;8116:39;;8174:38;8208:2;8197:9;8193:18;8174:38;:::i;:::-;8164:48;;7958:260;;;;;:::o;8223:380::-;8302:1;8298:12;;;;8345;;;8366:61;;8420:4;8412:6;8408:17;8398:27;;8366:61;8473:2;8465:6;8462:14;8442:18;8439:38;8436:161;;8519:10;8514:3;8510:20;8507:1;8500:31;8554:4;8551:1;8544:15;8582:4;8579:1;8572:15;8436:161;;8223:380;;;:::o;8608:127::-;8669:10;8664:3;8660:20;8657:1;8650:31;8700:4;8697:1;8690:15;8724:4;8721:1;8714:15;8740:168;8813:9;;;8844;;8861:15;;;8855:22;;8841:37;8831:71;;8882:18;;:::i;8913:127::-;8974:10;8969:3;8965:20;8962:1;8955:31;9005:4;9002:1;8995:15;9029:4;9026:1;9019:15;9045:120;9085:1;9111;9101:35;;9116:18;;:::i;:::-;-1:-1:-1;9150:9:1;;9045:120::o;9506:545::-;9608:2;9603:3;9600:11;9597:448;;;9644:1;9669:5;9665:2;9658:17;9714:4;9710:2;9700:19;9784:2;9772:10;9768:19;9765:1;9761:27;9755:4;9751:38;9820:4;9808:10;9805:20;9802:47;;;-1:-1:-1;9843:4:1;9802:47;9898:2;9893:3;9889:12;9886:1;9882:20;9876:4;9872:31;9862:41;;9953:82;9971:2;9964:5;9961:13;9953:82;;;10016:17;;;9997:1;9986:13;9953:82;;;9957:3;;;9506:545;;;:::o;10227:1352::-;10353:3;10347:10;-1:-1:-1;;;;;10372:6:1;10369:30;10366:56;;;10402:18;;:::i;:::-;10431:97;10521:6;10481:38;10513:4;10507:11;10481:38;:::i;:::-;10475:4;10431:97;:::i;:::-;10583:4;;10647:2;10636:14;;10664:1;10659:663;;;;11366:1;11383:6;11380:89;;;-1:-1:-1;11435:19:1;;;11429:26;11380:89;-1:-1:-1;;10184:1:1;10180:11;;;10176:24;10172:29;10162:40;10208:1;10204:11;;;10159:57;11482:81;;10629:944;;10659:663;9453:1;9446:14;;;9490:4;9477:18;;-1:-1:-1;;10695:20:1;;;10813:236;10827:7;10824:1;10821:14;10813:236;;;10916:19;;;10910:26;10895:42;;11008:27;;;;10976:1;10964:14;;;;10843:19;;10813:236;;;10817:3;11077:6;11068:7;11065:19;11062:201;;;11138:19;;;11132:26;-1:-1:-1;;11221:1:1;11217:14;;;11233:3;11213:24;11209:37;11205:42;11190:58;11175:74;;11062:201;-1:-1:-1;;;;;11309:1:1;11293:14;;;11289:22;11276:36;;-1:-1:-1;10227:1352:1:o;11940:127::-;12001:10;11996:3;11992:20;11989:1;11982:31;12032:4;12029:1;12022:15;12056:4;12053:1;12046:15;12072:135;12111:3;12132:17;;;12129:43;;12152:18;;:::i;:::-;-1:-1:-1;12199:1:1;12188:13;;12072:135::o;12212:125::-;12277:9;;;12298:10;;;12295:36;;;12311:18;;:::i;13398:128::-;13465:9;;;13486:11;;;13483:37;;;13500:18;;:::i;13879:1187::-;14156:3;14185:1;14218:6;14212:13;14248:36;14274:9;14248:36;:::i;:::-;14303:1;14320:18;;;14347:133;;;;14494:1;14489:356;;;;14313:532;;14347:133;-1:-1:-1;;14380:24:1;;14368:37;;14453:14;;14446:22;14434:35;;14425:45;;;-1:-1:-1;14347:133:1;;14489:356;14520:6;14517:1;14510:17;14550:4;14595:2;14592:1;14582:16;14620:1;14634:165;14648:6;14645:1;14642:13;14634:165;;;14726:14;;14713:11;;;14706:35;14769:16;;;;14663:10;;14634:165;;;14638:3;;;14828:6;14823:3;14819:16;14812:23;;14313:532;;;;;14876:6;14870:13;14892:68;14951:8;14946:3;14939:4;14931:6;14927:17;14892:68;:::i;:::-;-1:-1:-1;;;14982:18:1;;15009:22;;;15058:1;15047:13;;13879:1187;-1:-1:-1;;;;13879:1187:1:o;16913:245::-;16980:6;17033:2;17021:9;17012:7;17008:23;17004:32;17001:52;;;17049:1;17046;17039:12;17001:52;17081:9;17075:16;17100:28;17122:5;17100:28;:::i;17163:112::-;17195:1;17221;17211:35;;17226:18;;:::i;:::-;-1:-1:-1;17260:9:1;;17163:112::o;17280:136::-;17319:3;17347:5;17337:39;;17356:18;;:::i;:::-;-1:-1:-1;;;17392:18:1;;17280:136::o;17421:489::-;-1:-1:-1;;;;;17690:15:1;;;17672:34;;17742:15;;17737:2;17722:18;;17715:43;17789:2;17774:18;;17767:34;;;17837:3;17832:2;17817:18;;17810:31;;;17615:4;;17858:46;;17884:19;;17876:6;17858:46;:::i;:::-;17850:54;17421:489;-1:-1:-1;;;;;;17421:489:1:o;17915:249::-;17984:6;18037:2;18025:9;18016:7;18012:23;18008:32;18005:52;;;18053:1;18050;18043:12;18005:52;18085:9;18079:16;18104:30;18128:5;18104:30;:::i

Swarm Source

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