ETH Price: $2,412.23 (+6.38%)

Transaction Decoder

Block:
15469778 at Sep-04-2022 05:18:31 AM +UTC
Transaction Fee:
0.000727386840275712 ETH $1.75
Gas Used:
139,764 Gas / 5.204393408 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xd967F16f...78D4F3063
0.236093232864755319 Eth
Nonce: 15
0.235365846024479607 Eth
Nonce: 16
0.000727386840275712
(Ethermine)
1,047.614511126255222291 Eth1,047.614720772255222291 Eth0.000209646

Execution Trace

ETH 0.025 GemSwap.batchBuyWithETH( tradeDetails= )
  • MarketRegistry.markets( 14 ) => ( proxy=0xAeB21626259f7980F5dBD08701FBC555265C7b6a, isLib=True, isActive=True )
  • ETH 0.025 0xaeb21626259f7980f5dbd08701fbc555265c7b6a.bcb00e2a( )
    • ETH 0.025 TransparentUpgradeableProxy.357a150b( )
      • ETH 0.025 X2Y2_r1.run( input=[{name:orders, type:tuple[], order:1, indexed:false}, {name:details, type:tuple[], order:2, indexed:false}, {name:shared, type:tuple, order:3, indexed:false, value:[{name:salt, type:uint256, order:1, indexed:false, value:234319874742151, valueString:234319874742151}, {name:deadline, type:uint256, order:2, indexed:false, value:1662279435, valueString:1662279435}, {name:amountToEth, type:uint256, order:3, indexed:false, value:0, valueString:0}, {name:amountToWeth, type:uint256, order:4, indexed:false, value:0, valueString:0}, {name:user, type:address, order:5, indexed:false, value:0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2, valueString:0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2}, {name:canFail, type:bool, order:6, indexed:false, value:false, valueString:False}], valueString:[{name:salt, type:uint256, order:1, indexed:false, value:234319874742151, valueString:234319874742151}, {name:deadline, type:uint256, order:2, indexed:false, value:1662279435, valueString:1662279435}, {name:amountToEth, type:uint256, order:3, indexed:false, value:0, valueString:0}, {name:amountToWeth, type:uint256, order:4, indexed:false, value:0, valueString:0}, {name:user, type:address, order:5, indexed:false, value:0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2, valueString:0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2}, {name:canFail, type:bool, order:6, indexed:false, value:false, valueString:False}]}, {name:r, type:bytes32, order:4, indexed:false, value:38DEC9442B77FDF8F176B2027D33DF16D2F37336E77FBC3342BA86C5FC6E8F8E, valueString:38DEC9442B77FDF8F176B2027D33DF16D2F37336E77FBC3342BA86C5FC6E8F8E}, {name:s, type:bytes32, order:5, indexed:false, value:626B0EBBDB29D7D80BF9591E43A461FDA186796D077B49F3E48D0F7EC43D2956, valueString:626B0EBBDB29D7D80BF9591E43A461FDA186796D077B49F3E48D0F7EC43D2956}, {name:v, type:uint8, order:6, indexed:false, value:27, valueString:27}] )
        • Null: 0x000...001.61369513( )
        • Null: 0x000...001.cfbaf2e5( )
        • ERC721Delegate.STATICCALL( )
        • ERC721Delegate.executeSell( seller=0xDbEE45aD97ab3F2779043F93a0ff29f89AdaF144, buyer=0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2, data=0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000002C0D708C6E82DC6C427CE6A96BA5FF2EA09BE27200000000000000000000000000000000000000000000000000000000000003F4 )
          • Delusion.safeTransferFrom( from=0xDbEE45aD97ab3F2779043F93a0ff29f89AdaF144, to=0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2, tokenId=1012 )
          • ETH 0.025 0xd967f16fdf5fff7297db5a716f70cec78d4f3063.CALL( )
            File 1 of 6: GemSwap
            // SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            import "@openzeppelin/contracts/access/Ownable.sol";
            import "./utils/ReentrancyGuard.sol";
            import "./markets/MarketRegistry.sol";
            import "./SpecialTransferHelper.sol";
            import "../../interfaces/markets/tokens/IERC20.sol";
            import "../../interfaces/markets/tokens/IERC721.sol";
            import "../../interfaces/markets/tokens/IERC1155.sol";
            contract GemSwap is SpecialTransferHelper, Ownable, ReentrancyGuard {
                struct OpenseaTrades {
                    uint256 value;
                    bytes tradeData;
                }
                struct ERC20Details {
                    address[] tokenAddrs;
                    uint256[] amounts;
                }
                struct ERC1155Details {
                    address tokenAddr;
                    uint256[] ids;
                    uint256[] amounts;
                }
                struct ConverstionDetails {
                    bytes conversionData;
                }
                struct AffiliateDetails {
                    address affiliate;
                    bool isActive;
                }
                struct SponsoredMarket {
                    uint256 marketId;
                    bool isActive;
                }
                address public constant GOV = 0x83d841bC0450D5Ac35DCAd8d05Db53EbA29978c2;
                address public guardian;
                address public converter;
                address public punkProxy;
                uint256 public baseFees;
                bool public openForTrades;
                bool public openForFreeTrades;
                MarketRegistry public marketRegistry;
                AffiliateDetails[] public affiliates;
                SponsoredMarket[] public sponsoredMarkets;
                modifier isOpenForTrades() {
                    require(openForTrades, "trades not allowed");
                    _;
                }
                modifier isOpenForFreeTrades() {
                    require(openForFreeTrades, "free trades not allowed");
                    _;
                }
                constructor(address _marketRegistry, address _converter, address _guardian) {
                    marketRegistry = MarketRegistry(_marketRegistry);
                    converter = _converter;
                    guardian = _guardian;
                    baseFees = 0;
                    openForTrades = true;
                    openForFreeTrades = true;
                    affiliates.push(AffiliateDetails(GOV, true));
                }
                function setUp() external onlyOwner {
                    // Create CryptoPunk Proxy
                    IWrappedPunk(0xb7F7F6C52F2e2fdb1963Eab30438024864c313F6).registerProxy();
                    punkProxy = IWrappedPunk(0xb7F7F6C52F2e2fdb1963Eab30438024864c313F6).proxyInfo(address(this));
                    // approve wrapped mooncats rescue to Acclimated​MoonCats contract
                    IERC721(0x7C40c393DC0f283F318791d746d894DdD3693572).setApprovalForAll(0xc3f733ca98E0daD0386979Eb96fb1722A1A05E69, true);
                }
                // @audit This function is used to approve specific tokens to specific market contracts with high volume.
                // This is done in very rare cases for the gas optimization purposes. 
                function setOneTimeApproval(IERC20 token, address operator, uint256 amount) external onlyOwner {
                    token.approve(operator, amount);
                }
                function updateGuardian(address _guardian) external onlyOwner {
                    guardian = _guardian;
                }
                function addAffiliate(address _affiliate) external onlyOwner {
                    affiliates.push(AffiliateDetails(_affiliate, true));
                }
                function updateAffiliate(uint256 _affiliateIndex, address _affiliate, bool _IsActive) external onlyOwner {
                    affiliates[_affiliateIndex] = AffiliateDetails(_affiliate, _IsActive);
                }
                function addSponsoredMarket(uint256 _marketId) external onlyOwner {
                    sponsoredMarkets.push(SponsoredMarket(_marketId, true));
                }
                function updateSponsoredMarket(uint256 _marketIndex, uint256 _marketId, bool _isActive) external onlyOwner {
                    sponsoredMarkets[_marketIndex] = SponsoredMarket(_marketId, _isActive);
                }
                function setBaseFees(uint256 _baseFees) external onlyOwner {
                    baseFees = _baseFees;
                }
                function setOpenForTrades(bool _openForTrades) external onlyOwner {
                    openForTrades = _openForTrades;
                }
                function setOpenForFreeTrades(bool _openForFreeTrades) external onlyOwner {
                    openForFreeTrades = _openForFreeTrades;
                }
                // @audit we will setup a system that will monitor the contract for any leftover
                // assets. In case any asset is leftover, the system should be able to trigger this
                // function to close all the trades until the leftover assets are rescued.
                function closeAllTrades() external {
                    require(_msgSender() == guardian);
                    openForTrades = false;
                    openForFreeTrades = false;
                }
                function setConverter(address _converter) external onlyOwner {
                    converter = _converter;
                }
                function setMarketRegistry(MarketRegistry _marketRegistry) external onlyOwner {
                    marketRegistry = _marketRegistry;
                }
                function _transferEth(address _to, uint256 _amount) internal {
                    bool callStatus;
                    assembly {
                        // Transfer the ETH and store if it succeeded or not.
                        callStatus := call(gas(), _to, _amount, 0, 0, 0, 0)
                    }
                    require(callStatus, "_transferEth: Eth transfer failed");
                }
                function _collectFee(uint256[2] memory feeDetails) internal {
                    require(feeDetails[1] >= baseFees, "Insufficient fee");
                    if (feeDetails[1] > 0) {
                        AffiliateDetails memory affiliateDetails = affiliates[feeDetails[0]];
                        affiliateDetails.isActive
                            ? _transferEth(affiliateDetails.affiliate, feeDetails[1])
                            : _transferEth(GOV, feeDetails[1]);
                    }
                }
                function _checkCallResult(bool _success) internal pure {
                    if (!_success) {
                        // Copy revert reason from call
                        assembly {
                            returndatacopy(0, 0, returndatasize())
                            revert(0, returndatasize())
                        }
                    }
                }
                function _transferFromHelper(
                    ERC20Details memory erc20Details,
                    SpecialTransferHelper.ERC721Details[] memory erc721Details,
                    ERC1155Details[] memory erc1155Details
                ) internal {
                    // transfer ERC20 tokens from the sender to this contract
                    for (uint256 i = 0; i < erc20Details.tokenAddrs.length; i++) {
                        erc20Details.tokenAddrs[i].call(abi.encodeWithSelector(0x23b872dd, msg.sender, address(this), erc20Details.amounts[i]));
                    }
                    // transfer ERC721 tokens from the sender to this contract
                    for (uint256 i = 0; i < erc721Details.length; i++) {
                        // accept CryptoPunks
                        if (erc721Details[i].tokenAddr == 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB) {
                            _acceptCryptoPunk(erc721Details[i]);
                        }
                        // accept Mooncat
                        else if (erc721Details[i].tokenAddr == 0x60cd862c9C687A9dE49aecdC3A99b74A4fc54aB6) {
                            _acceptMoonCat(erc721Details[i]);
                        }
                        // default
                        else {
                            for (uint256 j = 0; j < erc721Details[i].ids.length; j++) {
                                IERC721(erc721Details[i].tokenAddr).transferFrom(
                                    _msgSender(),
                                    address(this),
                                    erc721Details[i].ids[j]
                                );
                            }
                        }
                    }
                    // transfer ERC1155 tokens from the sender to this contract
                    for (uint256 i = 0; i < erc1155Details.length; i++) {
                        IERC1155(erc1155Details[i].tokenAddr).safeBatchTransferFrom(
                            _msgSender(),
                            address(this),
                            erc1155Details[i].ids,
                            erc1155Details[i].amounts,
                            ""
                        );
                    }
                }
                function _conversionHelper(
                    ConverstionDetails[] memory _converstionDetails
                ) internal {
                    for (uint256 i = 0; i < _converstionDetails.length; i++) {
                        // convert to desired asset
                        (bool success, ) = converter.delegatecall(_converstionDetails[i].conversionData);
                        // check if the call passed successfully
                        _checkCallResult(success);
                    }
                }
                function _trade(
                    MarketRegistry.TradeDetails[] memory _tradeDetails
                ) internal {
                    for (uint256 i = 0; i < _tradeDetails.length; i++) {
                        // get market details
                        (address _proxy, bool _isLib, bool _isActive) = marketRegistry.markets(_tradeDetails[i].marketId);
                        // market should be active
                        require(_isActive, "_trade: InActive Market");
                        // execute trade
                        if (_proxy == 0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b || _proxy == 0x7f268357A8c2552623316e2562D90e642bB538E5) {
                            _proxy.call{value:_tradeDetails[i].value}(_tradeDetails[i].tradeData);
                        } else {
                            (bool success, ) = _isLib
                                ? _proxy.delegatecall(_tradeDetails[i].tradeData)
                                : _proxy.call{value:_tradeDetails[i].value}(_tradeDetails[i].tradeData);
                            // check if the call passed successfully
                            _checkCallResult(success);
                        }
                    }
                }
                // function _tradeSponsored(
                //     MarketRegistry.TradeDetails[] memory _tradeDetails,
                //     uint256 sponsoredMarketId
                // ) internal returns (bool isSponsored) {
                //     for (uint256 i = 0; i < _tradeDetails.length; i++) {
                //         // check if the trade is for the sponsored market
                //         if (_tradeDetails[i].marketId == sponsoredMarketId) {
                //             isSponsored = true;
                //         }
                //         // get market details
                //         (address _proxy, bool _isLib, bool _isActive) = marketRegistry.markets(_tradeDetails[i].marketId);
                //         // market should be active
                //         require(_isActive, "_trade: InActive Market");
                //         // execute trade
                //         if (_proxy == 0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b) {
                //             _proxy.call{value:_tradeDetails[i].value}(_tradeDetails[i].tradeData);
                //         } else {
                //             (bool success, ) = _isLib
                //                 ? _proxy.delegatecall(_tradeDetails[i].tradeData)
                //                 : _proxy.call{value:_tradeDetails[i].value}(_tradeDetails[i].tradeData);
                //             // check if the call passed successfully
                //             _checkCallResult(success);
                //         }
                //     }
                // }
                function _returnDust(address[] memory _tokens) internal {
                    // return remaining ETH (if any)
                    assembly {
                        if gt(selfbalance(), 0) {
                            let callStatus := call(
                                gas(),
                                caller(),
                                selfbalance(),
                                0,
                                0,
                                0,
                                0
                            )
                        }
                    }
                    // return remaining tokens (if any)
                    for (uint256 i = 0; i < _tokens.length; i++) {
                        if (IERC20(_tokens[i]).balanceOf(address(this)) > 0) {
                            _tokens[i].call(abi.encodeWithSelector(0xa9059cbb, msg.sender, IERC20(_tokens[i]).balanceOf(address(this))));
                        }
                    }
                }
                function batchBuyFromOpenSea(
                    OpenseaTrades[] memory openseaTrades
                ) payable external nonReentrant {
                    // execute trades
                    for (uint256 i = 0; i < openseaTrades.length; i++) {
                        // execute trade
                        address(0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b).call{value:openseaTrades[i].value}(openseaTrades[i].tradeData);
                    }
                    // return remaining ETH (if any)
                    assembly {
                        if gt(selfbalance(), 0) {
                            let callStatus := call(
                                gas(),
                                caller(),
                                selfbalance(),
                                0,
                                0,
                                0,
                                0
                            )
                        }
                    }
                }
                
                function batchBuyWithETH(
                    MarketRegistry.TradeDetails[] memory tradeDetails
                ) payable external nonReentrant {
                    // execute trades
                    _trade(tradeDetails);
                    // return remaining ETH (if any)
                    assembly {
                        if gt(selfbalance(), 0) {
                            let callStatus := call(
                                gas(),
                                caller(),
                                selfbalance(),
                                0,
                                0,
                                0,
                                0
                            )
                        }
                    }
                }
                function batchBuyWithERC20s(
                    ERC20Details memory erc20Details,
                    MarketRegistry.TradeDetails[] memory tradeDetails,
                    ConverstionDetails[] memory converstionDetails,
                    address[] memory dustTokens
                ) payable external nonReentrant {
                    // transfer ERC20 tokens from the sender to this contract
                    for (uint256 i = 0; i < erc20Details.tokenAddrs.length; i++) {
                        erc20Details.tokenAddrs[i].call(abi.encodeWithSelector(0x23b872dd, msg.sender, address(this), erc20Details.amounts[i]));
                    }
                    // Convert any assets if needed
                    _conversionHelper(converstionDetails);
                    // execute trades
                    _trade(tradeDetails);
                    // return dust tokens (if any)
                    _returnDust(dustTokens);
                }
                // swaps any combination of ERC-20/721/1155
                // User needs to approve assets before invoking swap
                // WARNING: DO NOT SEND TOKENS TO THIS FUNCTION DIRECTLY!!!
                function multiAssetSwap(
                    ERC20Details memory erc20Details,
                    SpecialTransferHelper.ERC721Details[] memory erc721Details,
                    ERC1155Details[] memory erc1155Details,
                    ConverstionDetails[] memory converstionDetails,
                    MarketRegistry.TradeDetails[] memory tradeDetails,
                    address[] memory dustTokens,
                    uint256[2] memory feeDetails    // [affiliateIndex, ETH fee in Wei]
                ) payable external isOpenForTrades nonReentrant {
                    // collect fees
                    _collectFee(feeDetails);
                    // transfer all tokens
                    _transferFromHelper(
                        erc20Details,
                        erc721Details,
                        erc1155Details
                    );
                    // Convert any assets if needed
                    _conversionHelper(converstionDetails);
                    // execute trades
                    _trade(tradeDetails);
                    // return dust tokens (if any)
                    _returnDust(dustTokens);
                }
                // Utility function that is used for free swaps for sponsored markets
                // WARNING: DO NOT SEND TOKENS TO THIS FUNCTION DIRECTLY!!! 
                // function multiAssetSwapWithoutFee(
                //     ERC20Details memory erc20Details,
                //     SpecialTransferHelper.ERC721Details[] memory erc721Details,
                //     ERC1155Details[] memory erc1155Details,
                //     ConverstionDetails[] memory converstionDetails,
                //     MarketRegistry.TradeDetails[] memory tradeDetails,
                //     address[] memory dustTokens,
                //     uint256 sponsoredMarketIndex
                // ) payable external isOpenForFreeTrades nonReentrant {
                //     // fetch the marketId of the sponsored market
                //     SponsoredMarket memory sponsoredMarket = sponsoredMarkets[sponsoredMarketIndex];
                //     // check if the market is active
                //     require(sponsoredMarket.isActive, "multiAssetSwapWithoutFee: InActive sponsored market");
            // 
                //     // transfer all tokens
                //     _transferFromHelper(
                //         erc20Details,
                //         erc721Details,
                //         erc1155Details
                //     );
            // 
                //     // Convert any assets if needed
                //     _conversionHelper(converstionDetails);
            // 
                //     // execute trades
                //     bool isSponsored = _tradeSponsored(tradeDetails, sponsoredMarket.marketId);
            // 
                //     // check if the trades include the sponsored market
                //     require(isSponsored, "multiAssetSwapWithoutFee: trades do not include sponsored market");
            // 
                //     // return dust tokens (if any)
                //     _returnDust(dustTokens);
                // }
                function onERC1155Received(
                    address,
                    address,
                    uint256,
                    uint256,
                    bytes calldata
                ) public virtual returns (bytes4) {
                    return this.onERC1155Received.selector;
                }
                function onERC1155BatchReceived(
                    address,
                    address,
                    uint256[] calldata,
                    uint256[] calldata,
                    bytes calldata
                ) public virtual returns (bytes4) {
                    return this.onERC1155BatchReceived.selector;
                }
                function onERC721Received(
                    address,
                    address,
                    uint256,
                    bytes calldata
                ) external virtual returns (bytes4) {
                    return 0x150b7a02;
                }
                // Used by ERC721BasicToken.sol
                function onERC721Received(
                    address,
                    uint256,
                    bytes calldata
                ) external virtual returns (bytes4) {
                    return 0xf0b9e5ba;
                }
                function supportsInterface(bytes4 interfaceId)
                    external
                    virtual
                    view
                    returns (bool)
                {
                    return interfaceId == this.supportsInterface.selector;
                }
                receive() external payable {}
                // Emergency function: In case any ETH get stuck in the contract unintentionally
                // Only owner can retrieve the asset balance to a recipient address
                function rescueETH(address recipient) onlyOwner external {
                    _transferEth(recipient, address(this).balance);
                }
                // Emergency function: In case any ERC20 tokens get stuck in the contract unintentionally
                // Only owner can retrieve the asset balance to a recipient address
                function rescueERC20(address asset, address recipient) onlyOwner external { 
                    asset.call(abi.encodeWithSelector(0xa9059cbb, recipient, IERC20(asset).balanceOf(address(this))));
                }
                // Emergency function: In case any ERC721 tokens get stuck in the contract unintentionally
                // Only owner can retrieve the asset balance to a recipient address
                function rescueERC721(address asset, uint256[] calldata ids, address recipient) onlyOwner external {
                    for (uint256 i = 0; i < ids.length; i++) {
                        IERC721(asset).transferFrom(address(this), recipient, ids[i]);
                    }
                }
                // Emergency function: In case any ERC1155 tokens get stuck in the contract unintentionally
                // Only owner can retrieve the asset balance to a recipient address
                function rescueERC1155(address asset, uint256[] calldata ids, uint256[] calldata amounts, address recipient) onlyOwner external {
                    for (uint256 i = 0; i < ids.length; i++) {
                        IERC1155(asset).safeTransferFrom(address(this), recipient, ids[i], amounts[i], "");
                    }
                }
            }// SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            import "../utils/Context.sol";
            /**
             * @dev Contract module which provides a basic access control mechanism, where
             * there is an account (an owner) that can be granted exclusive access to
             * specific functions.
             *
             * By default, the owner account will be the one that deploys the contract. This
             * can later be changed with {transferOwnership}.
             *
             * This module is used through inheritance. It will make available the modifier
             * `onlyOwner`, which can be applied to your functions to restrict their use to
             * the owner.
             */
            abstract contract Ownable is Context {
                address private _owner;
                event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
                /**
                 * @dev Initializes the contract setting the deployer as the initial owner.
                 */
                constructor() {
                    _setOwner(_msgSender());
                }
                /**
                 * @dev Returns the address of the current owner.
                 */
                function owner() public view virtual returns (address) {
                    return _owner;
                }
                /**
                 * @dev Throws if called by any account other than the owner.
                 */
                modifier onlyOwner() {
                    require(owner() == _msgSender(), "Ownable: caller is not the owner");
                    _;
                }
                /**
                 * @dev Leaves the contract without owner. It will not be possible to call
                 * `onlyOwner` functions anymore. Can only be called by the current owner.
                 *
                 * NOTE: Renouncing ownership will leave the contract without an owner,
                 * thereby removing any functionality that is only available to the owner.
                 */
                function renounceOwnership() public virtual onlyOwner {
                    _setOwner(address(0));
                }
                /**
                 * @dev Transfers ownership of the contract to a new account (`newOwner`).
                 * Can only be called by the current owner.
                 */
                function transferOwnership(address newOwner) public virtual onlyOwner {
                    require(newOwner != address(0), "Ownable: new owner is the zero address");
                    _setOwner(newOwner);
                }
                function _setOwner(address newOwner) private {
                    address oldOwner = _owner;
                    _owner = newOwner;
                    emit OwnershipTransferred(oldOwner, newOwner);
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            /// @notice Gas optimized reentrancy protection for smart contracts.
            /// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol)
            abstract contract ReentrancyGuard {
                uint256 private reentrancyStatus = 1;
                modifier nonReentrant() {
                    require(reentrancyStatus == 1, "REENTRANCY");
                    reentrancyStatus = 2;
                    _;
                    reentrancyStatus = 1;
                }
            }// SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            import "@openzeppelin/contracts/access/Ownable.sol";
            contract MarketRegistry is Ownable {
                struct TradeDetails {
                    uint256 marketId;
                    uint256 value;
                    bytes tradeData;
                }
                struct Market {
                    address proxy;
                    bool isLib;
                    bool isActive;
                }
                Market[] public markets;
                constructor(address[] memory proxies, bool[] memory isLibs) {
                    for (uint256 i = 0; i < proxies.length; i++) {
                        markets.push(Market(proxies[i], isLibs[i], true));
                    }
                }
                function addMarket(address proxy, bool isLib) external onlyOwner {
                    markets.push(Market(proxy, isLib, true));
                }
                function setMarketStatus(uint256 marketId, bool newStatus) external onlyOwner {
                    Market storage market = markets[marketId];
                    market.isActive = newStatus;
                }
                function setMarketProxy(uint256 marketId, address newProxy, bool isLib) external onlyOwner {
                    Market storage market = markets[marketId];
                    market.proxy = newProxy;
                    market.isLib = isLib;
                }
            }// SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            import "@openzeppelin/contracts/utils/Context.sol";
            import "../../interfaces/punks/ICryptoPunks.sol";
            import "../../interfaces/punks/IWrappedPunk.sol";
            import "../../interfaces/mooncats/IMoonCatsRescue.sol";
            contract SpecialTransferHelper is Context {
                struct ERC721Details {
                    address tokenAddr;
                    address[] to;
                    uint256[] ids;
                }
                function _uintToBytes5(uint256 id)
                    internal
                    pure
                    returns (bytes5 slicedDataBytes5)
                {
                    bytes memory _bytes = new bytes(32);
                    assembly {
                        mstore(add(_bytes, 32), id)
                    }
                    bytes memory tempBytes;
                    assembly {
                        // Get a location of some free memory and store it in tempBytes as
                        // Solidity does for memory variables.
                        tempBytes := mload(0x40)
                        // The first word of the slice result is potentially a partial
                        // word read from the original array. To read it, we calculate
                        // the length of that partial word and start copying that many
                        // bytes into the array. The first word we copy will start with
                        // data we don't care about, but the last `lengthmod` bytes will
                        // land at the beginning of the contents of the new array. When
                        // we're done copying, we overwrite the full first word with
                        // the actual length of the slice.
                        let lengthmod := and(5, 31)
                        // The multiplication in the next line is necessary
                        // because when slicing multiples of 32 bytes (lengthmod == 0)
                        // the following copy loop was copying the origin's length
                        // and then ending prematurely not copying everything it should.
                        let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                        let end := add(mc, 5)
                        for {
                            // The multiplication in the next line has the same exact purpose
                            // as the one above.
                            let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), 27)
                        } lt(mc, end) {
                            mc := add(mc, 0x20)
                            cc := add(cc, 0x20)
                        } {
                            mstore(mc, mload(cc))
                        }
                        mstore(tempBytes, 5)
                        //update free-memory pointer
                        //allocating the array padded to 32 bytes like the compiler does now
                        mstore(0x40, and(add(mc, 31), not(31)))
                    }
                    assembly {
                        slicedDataBytes5 := mload(add(tempBytes, 32))
                    }
                }
                function _acceptMoonCat(ERC721Details memory erc721Details) internal {
                    for (uint256 i = 0; i < erc721Details.ids.length; i++) {
                        bytes5 catId = _uintToBytes5(erc721Details.ids[i]);
                        address owner = IMoonCatsRescue(erc721Details.tokenAddr).catOwners(catId);
                        require(owner == _msgSender(), "_acceptMoonCat: invalid mooncat owner");
                        IMoonCatsRescue(erc721Details.tokenAddr).acceptAdoptionOffer(catId);
                    }
                }
                function _transferMoonCat(ERC721Details memory erc721Details) internal {
                    for (uint256 i = 0; i < erc721Details.ids.length; i++) {
                        IMoonCatsRescue(erc721Details.tokenAddr).giveCat(_uintToBytes5(erc721Details.ids[i]), erc721Details.to[i]);
                    }
                }
                function _acceptCryptoPunk(ERC721Details memory erc721Details) internal {
                    for (uint256 i = 0; i < erc721Details.ids.length; i++) {    
                        address owner = ICryptoPunks(erc721Details.tokenAddr).punkIndexToAddress(erc721Details.ids[i]);
                        require(owner == _msgSender(), "_acceptCryptoPunk: invalid punk owner");
                        ICryptoPunks(erc721Details.tokenAddr).buyPunk(erc721Details.ids[i]);
                    }
                }
                function _transferCryptoPunk(ERC721Details memory erc721Details) internal {
                    for (uint256 i = 0; i < erc721Details.ids.length; i++) {
                        ICryptoPunks(erc721Details.tokenAddr).transferPunk(erc721Details.to[i], erc721Details.ids[i]);
                    }
                }
            }// SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            interface IERC20 {
                /**
                    * @dev Returns the amount of tokens owned by `account`.
                    */
                function balanceOf(address account) external view returns (uint256);
                /**
                    * @dev Moves `amount` tokens from the caller's account to `recipient`.
                    *
                    * Returns a boolean value indicating whether the operation succeeded.
                    *
                    * Emits a {Transfer} event.
                    */
                function transfer(address recipient, uint256 amount) external returns (bool);
                /**
                 * @dev Moves `amount` tokens from `sender` to `recipient` using the
                 * allowance mechanism. `amount` is then deducted from the caller's
                 * allowance.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * Emits a {Transfer} event.
                 */
                function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
                /**
                 * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * IMPORTANT: Beware that changing an allowance with this method brings the risk
                 * that someone may use both the old and the new allowance by unfortunate
                 * transaction ordering. One possible solution to mitigate this race
                 * condition is to first reduce the spender's allowance to 0 and set the
                 * desired value afterwards:
                 * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
                 *
                 * Emits an {Approval} event.
                 */
                function approve(address spender, uint256 amount) external returns (bool);
                /**
                 * @dev Returns the remaining number of tokens that `spender` will be
                 * allowed to spend on behalf of `owner` through {transferFrom}. This is
                 * zero by default.
                 *
                 * This value changes when {approve} or {transferFrom} are called.
                 */
                function allowance(address owner, address spender) external view returns (uint256);
            }// SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            interface IERC721 {
                /// @notice Transfer ownership of an NFT -- THE CALLER IS RESPONSIBLE
                ///  TO CONFIRM THAT `_to` IS CAPABLE OF RECEIVING NFTS OR ELSE
                ///  THEY MAY BE PERMANENTLY LOST
                /// @dev Throws unless `msg.sender` is the current owner, an authorized
                ///  operator, or the approved address for this NFT. Throws if `_from` is
                ///  not the current owner. Throws if `_to` is the zero address. Throws if
                ///  `_tokenId` is not a valid NFT.
                /// @param _from The current owner of the NFT
                /// @param _to The new owner
                /// @param _tokenId The NFT to transfer
                function transferFrom(address _from, address _to, uint256 _tokenId) external payable;
                function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) external;
                
                function setApprovalForAll(address operator, bool approved) external;
                function approve(address to, uint256 tokenId) external;
                
                function isApprovedForAll(address owner, address operator) external view returns (bool);
                function balanceOf(address _owner) external view returns (uint256);
            }// SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            interface IERC1155 {
                function safeTransferFrom(
                    address from,
                    address to,
                    uint256 id,
                    uint256 amount,
                    bytes memory data
                ) external;
                function safeBatchTransferFrom(
                    address from,
                    address to,
                    uint256[] memory ids,
                    uint256[] memory amounts,
                    bytes memory data
                ) external;
                function balanceOf(address _owner, uint256 _id) external view returns (uint256);
            }// SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            /**
             * @dev Provides information about the current execution context, including the
             * sender of the transaction and its data. While these are generally available
             * via msg.sender and msg.data, they should not be accessed in such a direct
             * manner, since when dealing with meta-transactions the account sending and
             * paying for execution may not be the actual sender (as far as an application
             * is concerned).
             *
             * This contract is only required for intermediate, library-like contracts.
             */
            abstract contract Context {
                function _msgSender() internal view virtual returns (address) {
                    return msg.sender;
                }
                function _msgData() internal view virtual returns (bytes calldata) {
                    return msg.data;
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            interface ICryptoPunks {
                function punkIndexToAddress(uint index) external view returns(address owner);
                function offerPunkForSaleToAddress(uint punkIndex, uint minSalePriceInWei, address toAddress) external;
                function buyPunk(uint punkIndex) external payable;
                function transferPunk(address to, uint punkIndex) external;
            }// SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            interface IWrappedPunk {
                /**
                 * @dev Mints a wrapped punk
                 */
                function mint(uint256 punkIndex) external;
                /**
                 * @dev Burns a specific wrapped punk
                 */
                function burn(uint256 punkIndex) external;
                
                /**
                 * @dev Registers proxy
                 */
                function registerProxy() external;
                /**
                 * @dev Gets proxy address
                 */
                function proxyInfo(address user) external view returns (address);
            }// SPDX-License-Identifier: MIT
            pragma solidity 0.8.11;
            interface IMoonCatsRescue {
                function acceptAdoptionOffer(bytes5 catId) payable external;
                function makeAdoptionOfferToAddress(bytes5 catId, uint price, address to) external;
                function giveCat(bytes5 catId, address to) external;
                function catOwners(bytes5 catId) external view returns(address);
                function rescueOrder(uint256 rescueIndex) external view returns(bytes5 catId);
            }

            File 2 of 6: MarketRegistry
            // SPDX-License-Identifier: MIT
            
            pragma solidity 0.8.11;
            
            abstract contract Context {
                function _msgSender() internal view virtual returns (address) {
                    return msg.sender;
                }
            
                function _msgData() internal view virtual returns (bytes calldata) {
                    return msg.data;
                }
            }
            
            abstract contract Ownable is Context {
                address private _owner;
            
                event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
            
                /**
                 * @dev Initializes the contract setting the deployer as the initial owner.
                 */
                constructor() {
                    _transferOwnership(_msgSender());
                }
            
                /**
                 * @dev Returns the address of the current owner.
                 */
                function owner() public view virtual returns (address) {
                    return _owner;
                }
            
                /**
                 * @dev Throws if called by any account other than the owner.
                 */
                modifier onlyOwner() {
                    require(owner() == _msgSender(), "Ownable: caller is not the owner");
                    _;
                }
            
                /**
                 * @dev Leaves the contract without owner. It will not be possible to call
                 * `onlyOwner` functions anymore. Can only be called by the current owner.
                 *
                 * NOTE: Renouncing ownership will leave the contract without an owner,
                 * thereby removing any functionality that is only available to the owner.
                 */
                function renounceOwnership() public virtual onlyOwner {
                    _transferOwnership(address(0));
                }
            
                /**
                 * @dev Transfers ownership of the contract to a new account (`newOwner`).
                 * Can only be called by the current owner.
                 */
                function transferOwnership(address newOwner) public virtual onlyOwner {
                    require(newOwner != address(0), "Ownable: new owner is the zero address");
                    _transferOwnership(newOwner);
                }
            
                /**
                 * @dev Transfers ownership of the contract to a new account (`newOwner`).
                 * Internal function without access restriction.
                 */
                function _transferOwnership(address newOwner) internal virtual {
                    address oldOwner = _owner;
                    _owner = newOwner;
                    emit OwnershipTransferred(oldOwner, newOwner);
                }
            }
            
            contract MarketRegistry is Ownable {
            
                struct TradeDetails {
                    uint256 marketId;
                    uint256 value;
                    bytes tradeData;
                }
            
                struct Market {
                    address proxy;
                    bool isLib;
                    bool isActive;
                }
            
                Market[] public markets;
            
                constructor(address[] memory proxies, bool[] memory isLibs) {
                    for (uint256 i = 0; i < proxies.length; i++) {
                        markets.push(Market(proxies[i], isLibs[i], true));
                    }
                }
            
                function addMarket(address proxy, bool isLib) external onlyOwner {
                    markets.push(Market(proxy, isLib, true));
                }
            
                function setMarketStatus(uint256 marketId, bool newStatus) external onlyOwner {
                    Market storage market = markets[marketId];
                    market.isActive = newStatus;
                }
            
                function setMarketProxy(uint256 marketId, address newProxy, bool isLib) external onlyOwner {
                    Market storage market = markets[marketId];
                    market.proxy = newProxy;
                    market.isLib = isLib;
                }
            }

            File 3 of 6: TransparentUpgradeableProxy
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
            import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
            import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
            // Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.
            contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {
                constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            import "../Proxy.sol";
            import "./ERC1967Upgrade.sol";
            /**
             * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
             * implementation address that can be changed. This address is stored in storage in the location specified by
             * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
             * implementation behind the proxy.
             */
            contract ERC1967Proxy is Proxy, ERC1967Upgrade {
                /**
                 * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
                 *
                 * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
                 * function call, and allows initializating the storage of the proxy like a Solidity constructor.
                 */
                constructor(address _logic, bytes memory _data) payable {
                    assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
                    _upgradeToAndCall(_logic, _data, false);
                }
                /**
                 * @dev Returns the current implementation address.
                 */
                function _implementation() internal view virtual override returns (address impl) {
                    return ERC1967Upgrade._getImplementation();
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            import "../ERC1967/ERC1967Proxy.sol";
            /**
             * @dev This contract implements a proxy that is upgradeable by an admin.
             *
             * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
             * clashing], which can potentially be used in an attack, this contract uses the
             * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
             * things that go hand in hand:
             *
             * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
             * that call matches one of the admin functions exposed by the proxy itself.
             * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the
             * implementation. If the admin tries to call a function on the implementation it will fail with an error that says
             * "admin cannot fallback to proxy target".
             *
             * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing
             * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due
             * to sudden errors when trying to call a function from the proxy implementation.
             *
             * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,
             * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.
             */
            contract TransparentUpgradeableProxy is ERC1967Proxy {
                /**
                 * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
                 * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.
                 */
                constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) {
                    assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1));
                    _changeAdmin(admin_);
                }
                /**
                 * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
                 */
                modifier ifAdmin() {
                    if (msg.sender == _getAdmin()) {
                        _;
                    } else {
                        _fallback();
                    }
                }
                /**
                 * @dev Returns the current admin.
                 *
                 * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}.
                 *
                 * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
                 * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
                 * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
                 */
                function admin() external ifAdmin returns (address admin_) {
                    admin_ = _getAdmin();
                }
                /**
                 * @dev Returns the current implementation.
                 *
                 * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}.
                 *
                 * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
                 * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
                 * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
                 */
                function implementation() external ifAdmin returns (address implementation_) {
                    implementation_ = _implementation();
                }
                /**
                 * @dev Changes the admin of the proxy.
                 *
                 * Emits an {AdminChanged} event.
                 *
                 * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}.
                 */
                function changeAdmin(address newAdmin) external virtual ifAdmin {
                    _changeAdmin(newAdmin);
                }
                /**
                 * @dev Upgrade the implementation of the proxy.
                 *
                 * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.
                 */
                function upgradeTo(address newImplementation) external ifAdmin {
                    _upgradeToAndCall(newImplementation, bytes(""), false);
                }
                /**
                 * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified
                 * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the
                 * proxied contract.
                 *
                 * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.
                 */
                function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {
                    _upgradeToAndCall(newImplementation, data, true);
                }
                /**
                 * @dev Returns the current admin.
                 */
                function _admin() internal view virtual returns (address) {
                    return _getAdmin();
                }
                /**
                 * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}.
                 */
                function _beforeFallback() internal virtual override {
                    require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target");
                    super._beforeFallback();
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            import "./TransparentUpgradeableProxy.sol";
            import "../../access/Ownable.sol";
            /**
             * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an
             * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.
             */
            contract ProxyAdmin is Ownable {
                /**
                 * @dev Returns the current implementation of `proxy`.
                 *
                 * Requirements:
                 *
                 * - This contract must be the admin of `proxy`.
                 */
                function getProxyImplementation(TransparentUpgradeableProxy proxy) public view virtual returns (address) {
                    // We need to manually run the static call since the getter cannot be flagged as view
                    // bytes4(keccak256("implementation()")) == 0x5c60da1b
                    (bool success, bytes memory returndata) = address(proxy).staticcall(hex"5c60da1b");
                    require(success);
                    return abi.decode(returndata, (address));
                }
                /**
                 * @dev Returns the current admin of `proxy`.
                 *
                 * Requirements:
                 *
                 * - This contract must be the admin of `proxy`.
                 */
                function getProxyAdmin(TransparentUpgradeableProxy proxy) public view virtual returns (address) {
                    // We need to manually run the static call since the getter cannot be flagged as view
                    // bytes4(keccak256("admin()")) == 0xf851a440
                    (bool success, bytes memory returndata) = address(proxy).staticcall(hex"f851a440");
                    require(success);
                    return abi.decode(returndata, (address));
                }
                /**
                 * @dev Changes the admin of `proxy` to `newAdmin`.
                 *
                 * Requirements:
                 *
                 * - This contract must be the current admin of `proxy`.
                 */
                function changeProxyAdmin(TransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner {
                    proxy.changeAdmin(newAdmin);
                }
                /**
                 * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}.
                 *
                 * Requirements:
                 *
                 * - This contract must be the admin of `proxy`.
                 */
                function upgrade(TransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner {
                    proxy.upgradeTo(implementation);
                }
                /**
                 * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See
                 * {TransparentUpgradeableProxy-upgradeToAndCall}.
                 *
                 * Requirements:
                 *
                 * - This contract must be the admin of `proxy`.
                 */
                function upgradeAndCall(TransparentUpgradeableProxy proxy, address implementation, bytes memory data) public payable virtual onlyOwner {
                    proxy.upgradeToAndCall{value: msg.value}(implementation, data);
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            /**
             * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
             * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
             * be specified by overriding the virtual {_implementation} function.
             *
             * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
             * different contract through the {_delegate} function.
             *
             * The success and return data of the delegated call will be returned back to the caller of the proxy.
             */
            abstract contract Proxy {
                /**
                 * @dev Delegates the current call to `implementation`.
                 *
                 * This function does not return to its internall call site, it will return directly to the external caller.
                 */
                function _delegate(address implementation) internal virtual {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        // Copy msg.data. We take full control of memory in this inline assembly
                        // block because it will not return to Solidity code. We overwrite the
                        // Solidity scratch pad at memory position 0.
                        calldatacopy(0, 0, calldatasize())
                        // Call the implementation.
                        // out and outsize are 0 because we don't know the size yet.
                        let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
                        // Copy the returned data.
                        returndatacopy(0, 0, returndatasize())
                        switch result
                        // delegatecall returns 0 on error.
                        case 0 { revert(0, returndatasize()) }
                        default { return(0, returndatasize()) }
                    }
                }
                /**
                 * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
                 * and {_fallback} should delegate.
                 */
                function _implementation() internal view virtual returns (address);
                /**
                 * @dev Delegates the current call to the address returned by `_implementation()`.
                 *
                 * This function does not return to its internall call site, it will return directly to the external caller.
                 */
                function _fallback() internal virtual {
                    _beforeFallback();
                    _delegate(_implementation());
                }
                /**
                 * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
                 * function in the contract matches the call data.
                 */
                fallback () external payable virtual {
                    _fallback();
                }
                /**
                 * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
                 * is empty.
                 */
                receive () external payable virtual {
                    _fallback();
                }
                /**
                 * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
                 * call, or as part of the Solidity `fallback` or `receive` functions.
                 *
                 * If overriden should call `super._beforeFallback()`.
                 */
                function _beforeFallback() internal virtual {
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.2;
            import "../beacon/IBeacon.sol";
            import "../../utils/Address.sol";
            import "../../utils/StorageSlot.sol";
            /**
             * @dev This abstract contract provides getters and event emitting update functions for
             * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
             *
             * _Available since v4.1._
             *
             * @custom:oz-upgrades-unsafe-allow delegatecall
             */
            abstract contract ERC1967Upgrade {
                // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
                bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;
                /**
                 * @dev Storage slot with the address of the current implementation.
                 * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
                 * validated in the constructor.
                 */
                bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
                /**
                 * @dev Emitted when the implementation is upgraded.
                 */
                event Upgraded(address indexed implementation);
                /**
                 * @dev Returns the current implementation address.
                 */
                function _getImplementation() internal view returns (address) {
                    return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
                }
                /**
                 * @dev Stores a new address in the EIP1967 implementation slot.
                 */
                function _setImplementation(address newImplementation) private {
                    require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
                    StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
                }
                /**
                 * @dev Perform implementation upgrade
                 *
                 * Emits an {Upgraded} event.
                 */
                function _upgradeTo(address newImplementation) internal {
                    _setImplementation(newImplementation);
                    emit Upgraded(newImplementation);
                }
                /**
                 * @dev Perform implementation upgrade with additional setup call.
                 *
                 * Emits an {Upgraded} event.
                 */
                function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {
                    _setImplementation(newImplementation);
                    emit Upgraded(newImplementation);
                    if (data.length > 0 || forceCall) {
                        Address.functionDelegateCall(newImplementation, data);
                    }
                }
                /**
                 * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
                 *
                 * Emits an {Upgraded} event.
                 */
                function _upgradeToAndCallSecure(address newImplementation, bytes memory data, bool forceCall) internal {
                    address oldImplementation = _getImplementation();
                    // Initial upgrade and setup call
                    _setImplementation(newImplementation);
                    if (data.length > 0 || forceCall) {
                        Address.functionDelegateCall(newImplementation, data);
                    }
                    // Perform rollback test if not already in progress
                    StorageSlot.BooleanSlot storage rollbackTesting = StorageSlot.getBooleanSlot(_ROLLBACK_SLOT);
                    if (!rollbackTesting.value) {
                        // Trigger rollback using upgradeTo from the new implementation
                        rollbackTesting.value = true;
                        Address.functionDelegateCall(
                            newImplementation,
                            abi.encodeWithSignature(
                                "upgradeTo(address)",
                                oldImplementation
                            )
                        );
                        rollbackTesting.value = false;
                        // Check rollback was effective
                        require(oldImplementation == _getImplementation(), "ERC1967Upgrade: upgrade breaks further upgrades");
                        // Finally reset to the new implementation and log the upgrade
                        _setImplementation(newImplementation);
                        emit Upgraded(newImplementation);
                    }
                }
                /**
                 * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
                 * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
                 *
                 * Emits a {BeaconUpgraded} event.
                 */
                function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {
                    _setBeacon(newBeacon);
                    emit BeaconUpgraded(newBeacon);
                    if (data.length > 0 || forceCall) {
                        Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
                    }
                }
                /**
                 * @dev Storage slot with the admin of the contract.
                 * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
                 * validated in the constructor.
                 */
                bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
                /**
                 * @dev Emitted when the admin account has changed.
                 */
                event AdminChanged(address previousAdmin, address newAdmin);
                /**
                 * @dev Returns the current admin.
                 */
                function _getAdmin() internal view returns (address) {
                    return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;
                }
                /**
                 * @dev Stores a new address in the EIP1967 admin slot.
                 */
                function _setAdmin(address newAdmin) private {
                    require(newAdmin != address(0), "ERC1967: new admin is the zero address");
                    StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
                }
                /**
                 * @dev Changes the admin of the proxy.
                 *
                 * Emits an {AdminChanged} event.
                 */
                function _changeAdmin(address newAdmin) internal {
                    emit AdminChanged(_getAdmin(), newAdmin);
                    _setAdmin(newAdmin);
                }
                /**
                 * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
                 * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
                 */
                bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
                /**
                 * @dev Emitted when the beacon is upgraded.
                 */
                event BeaconUpgraded(address indexed beacon);
                /**
                 * @dev Returns the current beacon.
                 */
                function _getBeacon() internal view returns (address) {
                    return StorageSlot.getAddressSlot(_BEACON_SLOT).value;
                }
                /**
                 * @dev Stores a new beacon in the EIP1967 beacon slot.
                 */
                function _setBeacon(address newBeacon) private {
                    require(
                        Address.isContract(newBeacon),
                        "ERC1967: new beacon is not a contract"
                    );
                    require(
                        Address.isContract(IBeacon(newBeacon).implementation()),
                        "ERC1967: beacon implementation is not a contract"
                    );
                    StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            /**
             * @dev This is the interface that {BeaconProxy} expects of its beacon.
             */
            interface IBeacon {
                /**
                 * @dev Must return an address that can be used as a delegate call target.
                 *
                 * {BeaconProxy} will check that this address is a contract.
                 */
                function implementation() external view returns (address);
            }
            // SPDX-License-Identifier: MIT
            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.4._
                 */
                function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionDelegateCall(target, data, "Address: low-level delegate call failed");
                }
                /**
                 * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
                 * but performing a delegate call.
                 *
                 * _Available since v3.4._
                 */
                function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
                    require(isContract(target), "Address: delegate call to non-contract");
                    // 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);
                        }
                    }
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            /**
             * @dev Library for reading and writing primitive types to specific storage slots.
             *
             * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
             * This library helps with reading and writing to such slots without the need for inline assembly.
             *
             * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
             *
             * Example usage to set ERC1967 implementation slot:
             * ```
             * contract ERC1967 {
             *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
             *
             *     function _getImplementation() internal view returns (address) {
             *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
             *     }
             *
             *     function _setImplementation(address newImplementation) internal {
             *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
             *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
             *     }
             * }
             * ```
             *
             * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
             */
            library StorageSlot {
                struct AddressSlot {
                    address value;
                }
                struct BooleanSlot {
                    bool value;
                }
                struct Bytes32Slot {
                    bytes32 value;
                }
                struct Uint256Slot {
                    uint256 value;
                }
                /**
                 * @dev Returns an `AddressSlot` with member `value` located at `slot`.
                 */
                function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
                    assembly {
                        r.slot := slot
                    }
                }
                /**
                 * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
                 */
                function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
                    assembly {
                        r.slot := slot
                    }
                }
                /**
                 * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
                 */
                function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
                    assembly {
                        r.slot := slot
                    }
                }
                /**
                 * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
                 */
                function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
                    assembly {
                        r.slot := slot
                    }
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            import "../utils/Context.sol";
            /**
             * @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 () {
                    address msgSender = _msgSender();
                    _owner = msgSender;
                    emit OwnershipTransferred(address(0), msgSender);
                }
                /**
                 * @dev Returns the address of the current owner.
                 */
                function owner() public view virtual returns (address) {
                    return _owner;
                }
                /**
                 * @dev Throws if called by any account other than the owner.
                 */
                modifier onlyOwner() {
                    require(owner() == _msgSender(), "Ownable: caller is not the owner");
                    _;
                }
                /**
                 * @dev Leaves the contract without owner. It will not be possible to call
                 * `onlyOwner` functions anymore. Can only be called by the current owner.
                 *
                 * NOTE: Renouncing ownership will leave the contract without an owner,
                 * thereby removing any functionality that is only available to the owner.
                 */
                function renounceOwnership() public virtual onlyOwner {
                    emit OwnershipTransferred(_owner, address(0));
                    _owner = 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");
                    emit OwnershipTransferred(_owner, newOwner);
                    _owner = newOwner;
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            /*
             * @dev Provides information about the current execution context, including the
             * sender of the transaction and its data. While these are generally available
             * via msg.sender and msg.data, they should not be accessed in such a direct
             * manner, since when dealing with meta-transactions the account sending and
             * paying for execution may not be the actual sender (as far as an application
             * is concerned).
             *
             * This contract is only required for intermediate, library-like contracts.
             */
            abstract contract Context {
                function _msgSender() internal view virtual returns (address) {
                    return msg.sender;
                }
                function _msgData() internal view virtual returns (bytes calldata) {
                    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                    return msg.data;
                }
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.0;
            import "../ERC1967/ERC1967Upgrade.sol";
            /**
             * @dev Base contract for building openzeppelin-upgrades compatible implementations for the {ERC1967Proxy}. It includes
             * publicly available upgrade functions that are called by the plugin and by the secure upgrade mechanism to verify
             * continuation of the upgradability.
             *
             * The {_authorizeUpgrade} function MUST be overridden to include access restriction to the upgrade mechanism.
             *
             * _Available since v4.1._
             */
            abstract contract UUPSUpgradeable is ERC1967Upgrade {
                function upgradeTo(address newImplementation) external virtual {
                    _authorizeUpgrade(newImplementation);
                    _upgradeToAndCallSecure(newImplementation, bytes(""), false);
                }
                function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual {
                    _authorizeUpgrade(newImplementation);
                    _upgradeToAndCallSecure(newImplementation, data, true);
                }
                function _authorizeUpgrade(address newImplementation) internal virtual;
            }
            // SPDX-License-Identifier: MIT
            pragma solidity ^0.8.2;
            import "@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol";
            abstract contract Proxiable is UUPSUpgradeable {
                function _authorizeUpgrade(address newImplementation) internal override {
                    _beforeUpgrade(newImplementation);
                }
                function _beforeUpgrade(address newImplementation) internal virtual;
            }
            contract ChildOfProxiable is Proxiable {
                function _beforeUpgrade(address newImplementation) internal virtual override {}
            }
            

            File 4 of 6: X2Y2_r1
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            import './IDelegate.sol';
            import './IWETHUpgradable.sol';
            import './MarketConsts.sol';
            import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol';
            import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
            import '@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol';
            import '@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol';
            import '@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol';
            import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';
            interface IX2Y2Run {
                function run1(
                    Market.Order memory order,
                    Market.SettleShared memory shared,
                    Market.SettleDetail memory detail
                ) external returns (uint256);
            }
            contract X2Y2_r1 is
                Initializable,
                ReentrancyGuardUpgradeable,
                OwnableUpgradeable,
                PausableUpgradeable,
                IX2Y2Run
            {
                using SafeERC20Upgradeable for IERC20Upgradeable;
                event EvProfit(bytes32 itemHash, address currency, address to, uint256 amount);
                event EvAuctionRefund(
                    bytes32 indexed itemHash,
                    address currency,
                    address to,
                    uint256 amount,
                    uint256 incentive
                );
                event EvInventory(
                    bytes32 indexed itemHash,
                    address maker,
                    address taker,
                    uint256 orderSalt,
                    uint256 settleSalt,
                    uint256 intent,
                    uint256 delegateType,
                    uint256 deadline,
                    IERC20Upgradeable currency,
                    bytes dataMask,
                    Market.OrderItem item,
                    Market.SettleDetail detail
                );
                event EvSigner(address signer, bool isRemoval);
                event EvDelegate(address delegate, bool isRemoval);
                event EvFeeCapUpdate(uint256 newValue);
                event EvCancel(bytes32 indexed itemHash);
                event EvFailure(uint256 index, bytes error);
                mapping(address => bool) public delegates;
                mapping(address => bool) public signers;
                mapping(bytes32 => Market.InvStatus) public inventoryStatus;
                mapping(bytes32 => Market.OngoingAuction) public ongoingAuctions;
                uint256 public constant RATE_BASE = 1e6;
                uint256 public feeCapPct;
                IWETHUpgradable public weth;
                receive() external payable {}
                function pause() public onlyOwner {
                    _pause();
                }
                function unpause() public onlyOwner {
                    _unpause();
                }
                function initialize(uint256 feeCapPct_, address weth_) public initializer {
                    feeCapPct = feeCapPct_;
                    weth = IWETHUpgradable(weth_);
                    __ReentrancyGuard_init_unchained();
                    __Pausable_init_unchained();
                    __Ownable_init_unchained();
                }
                function updateFeeCap(uint256 val) public virtual onlyOwner {
                    feeCapPct = val;
                    emit EvFeeCapUpdate(val);
                }
                function updateSigners(address[] memory toAdd, address[] memory toRemove)
                    public
                    virtual
                    onlyOwner
                {
                    for (uint256 i = 0; i < toAdd.length; i++) {
                        signers[toAdd[i]] = true;
                        emit EvSigner(toAdd[i], false);
                    }
                    for (uint256 i = 0; i < toRemove.length; i++) {
                        delete signers[toRemove[i]];
                        emit EvSigner(toRemove[i], true);
                    }
                }
                function updateDelegates(address[] memory toAdd, address[] memory toRemove)
                    public
                    virtual
                    onlyOwner
                {
                    for (uint256 i = 0; i < toAdd.length; i++) {
                        delegates[toAdd[i]] = true;
                        emit EvDelegate(toAdd[i], false);
                    }
                    for (uint256 i = 0; i < toRemove.length; i++) {
                        delete delegates[toRemove[i]];
                        emit EvDelegate(toRemove[i], true);
                    }
                }
                function cancel(
                    bytes32[] memory itemHashes,
                    uint256 deadline,
                    uint8 v,
                    bytes32 r,
                    bytes32 s
                ) public virtual nonReentrant whenNotPaused {
                    require(deadline > block.timestamp, 'deadline reached');
                    bytes32 hash = keccak256(abi.encode(itemHashes.length, itemHashes, deadline));
                    address signer = ECDSA.recover(hash, v, r, s);
                    require(signers[signer], 'Input signature error');
                    for (uint256 i = 0; i < itemHashes.length; i++) {
                        bytes32 h = itemHashes[i];
                        if (inventoryStatus[h] == Market.InvStatus.NEW) {
                            inventoryStatus[h] = Market.InvStatus.CANCELLED;
                            emit EvCancel(h);
                        }
                    }
                }
                function run(Market.RunInput memory input) public payable virtual nonReentrant whenNotPaused {
                    require(input.shared.deadline > block.timestamp, 'input deadline reached');
                    require(msg.sender == input.shared.user, 'sender does not match');
                    _verifyInputSignature(input);
                    uint256 amountEth = msg.value;
                    if (input.shared.amountToWeth > 0) {
                        uint256 amt = input.shared.amountToWeth;
                        weth.deposit{value: amt}();
                        SafeERC20Upgradeable.safeTransfer(weth, msg.sender, amt);
                        amountEth -= amt;
                    }
                    if (input.shared.amountToEth > 0) {
                        uint256 amt = input.shared.amountToEth;
                        SafeERC20Upgradeable.safeTransferFrom(weth, msg.sender, address(this), amt);
                        weth.withdraw(amt);
                        amountEth += amt;
                    }
                    for (uint256 i = 0; i < input.orders.length; i++) {
                        _verifyOrderSignature(input.orders[i]);
                    }
                    for (uint256 i = 0; i < input.details.length; i++) {
                        Market.SettleDetail memory detail = input.details[i];
                        Market.Order memory order = input.orders[detail.orderIdx];
                        if (input.shared.canFail) {
                            try IX2Y2Run(address(this)).run1(order, input.shared, detail) returns (
                                uint256 ethPayment
                            ) {
                                amountEth -= ethPayment;
                            } catch Error(string memory _err) {
                                emit EvFailure(i, bytes(_err));
                            } catch (bytes memory _err) {
                                emit EvFailure(i, _err);
                            }
                        } else {
                            amountEth -= _run(order, input.shared, detail);
                        }
                    }
                    if (amountEth > 0) {
                        payable(msg.sender).transfer(amountEth);
                    }
                }
                function run1(
                    Market.Order memory order,
                    Market.SettleShared memory shared,
                    Market.SettleDetail memory detail
                ) external virtual returns (uint256) {
                    require(msg.sender == address(this), 'unsafe call');
                    return _run(order, shared, detail);
                }
                function _hashItem(Market.Order memory order, Market.OrderItem memory item)
                    internal
                    view
                    virtual
                    returns (bytes32)
                {
                    return
                        keccak256(
                            abi.encode(
                                order.salt,
                                order.user,
                                order.network,
                                order.intent,
                                order.delegateType,
                                order.deadline,
                                order.currency,
                                order.dataMask,
                                item
                            )
                        );
                }
                function _emitInventory(
                    bytes32 itemHash,
                    Market.Order memory order,
                    Market.OrderItem memory item,
                    Market.SettleShared memory shared,
                    Market.SettleDetail memory detail
                ) internal virtual {
                    emit EvInventory(
                        itemHash,
                        order.user,
                        shared.user,
                        order.salt,
                        shared.salt,
                        order.intent,
                        order.delegateType,
                        order.deadline,
                        order.currency,
                        order.dataMask,
                        item,
                        detail
                    );
                }
                function _run(
                    Market.Order memory order,
                    Market.SettleShared memory shared,
                    Market.SettleDetail memory detail
                ) internal virtual returns (uint256) {
                    uint256 nativeAmount = 0;
                    Market.OrderItem memory item = order.items[detail.itemIdx];
                    bytes32 itemHash = _hashItem(order, item);
                    {
                        require(itemHash == detail.itemHash, 'item hash does not match');
                        require(order.network == block.chainid, 'wrong network');
                        require(
                            address(detail.executionDelegate) != address(0) &&
                                delegates[address(detail.executionDelegate)],
                            'unknown delegate'
                        );
                    }
                    bytes memory data = item.data;
                    {
                        if (order.dataMask.length > 0 && detail.dataReplacement.length > 0) {
                            _arrayReplace(data, detail.dataReplacement, order.dataMask);
                        }
                    }
                    if (detail.op == Market.Op.COMPLETE_SELL_OFFER) {
                        require(inventoryStatus[itemHash] == Market.InvStatus.NEW, 'order already exists');
                        require(order.intent == Market.INTENT_SELL, 'intent != sell');
                        _assertDelegation(order, detail);
                        require(order.deadline > block.timestamp, 'deadline reached');
                        require(detail.price >= item.price, 'underpaid');
                        nativeAmount = _takePayment(itemHash, order.currency, shared.user, detail.price);
                        require(
                            detail.executionDelegate.executeSell(order.user, shared.user, data),
                            'delegation error'
                        );
                        _distributeFeeAndProfit(
                            itemHash,
                            order.user,
                            order.currency,
                            detail,
                            detail.price,
                            detail.price
                        );
                        inventoryStatus[itemHash] = Market.InvStatus.COMPLETE;
                    } else if (detail.op == Market.Op.COMPLETE_BUY_OFFER) {
                        require(inventoryStatus[itemHash] == Market.InvStatus.NEW, 'order already exists');
                        require(order.intent == Market.INTENT_BUY, 'intent != buy');
                        _assertDelegation(order, detail);
                        require(order.deadline > block.timestamp, 'deadline reached');
                        require(item.price == detail.price, 'price not match');
                        require(!_isNative(order.currency), 'native token not supported');
                        nativeAmount = _takePayment(itemHash, order.currency, order.user, detail.price);
                        require(
                            detail.executionDelegate.executeBuy(shared.user, order.user, data),
                            'delegation error'
                        );
                        _distributeFeeAndProfit(
                            itemHash,
                            shared.user,
                            order.currency,
                            detail,
                            detail.price,
                            detail.price
                        );
                        inventoryStatus[itemHash] = Market.InvStatus.COMPLETE;
                    } else if (detail.op == Market.Op.CANCEL_OFFER) {
                        require(inventoryStatus[itemHash] == Market.InvStatus.NEW, 'unable to cancel');
                        require(order.deadline > block.timestamp, 'deadline reached');
                        inventoryStatus[itemHash] = Market.InvStatus.CANCELLED;
                        emit EvCancel(itemHash);
                    } else if (detail.op == Market.Op.BID) {
                        require(order.intent == Market.INTENT_AUCTION, 'intent != auction');
                        _assertDelegation(order, detail);
                        bool firstBid = false;
                        if (ongoingAuctions[itemHash].bidder == address(0)) {
                            require(inventoryStatus[itemHash] == Market.InvStatus.NEW, 'order already exists');
                            require(order.deadline > block.timestamp, 'auction ended');
                            require(detail.price >= item.price, 'underpaid');
                            firstBid = true;
                            ongoingAuctions[itemHash] = Market.OngoingAuction({
                                price: detail.price,
                                netPrice: detail.price,
                                bidder: shared.user,
                                endAt: order.deadline
                            });
                            inventoryStatus[itemHash] = Market.InvStatus.AUCTION;
                            require(
                                detail.executionDelegate.executeBid(order.user, address(0), shared.user, data),
                                'delegation error'
                            );
                        }
                        Market.OngoingAuction storage auc = ongoingAuctions[itemHash];
                        require(auc.endAt > block.timestamp, 'auction ended');
                        nativeAmount = _takePayment(itemHash, order.currency, shared.user, detail.price);
                        if (!firstBid) {
                            require(
                                inventoryStatus[itemHash] == Market.InvStatus.AUCTION,
                                'order is not auction'
                            );
                            require(
                                detail.price - auc.price >= (auc.price * detail.aucMinIncrementPct) / RATE_BASE,
                                'underbid'
                            );
                            uint256 bidRefund = auc.netPrice;
                            uint256 incentive = (detail.price * detail.bidIncentivePct) / RATE_BASE;
                            if (bidRefund + incentive > 0) {
                                _transferTo(order.currency, auc.bidder, bidRefund + incentive);
                                emit EvAuctionRefund(
                                    itemHash,
                                    address(order.currency),
                                    auc.bidder,
                                    bidRefund,
                                    incentive
                                );
                            }
                            require(
                                detail.executionDelegate.executeBid(order.user, auc.bidder, shared.user, data),
                                'delegation error'
                            );
                            auc.price = detail.price;
                            auc.netPrice = detail.price - incentive;
                            auc.bidder = shared.user;
                        }
                        if (block.timestamp + detail.aucIncDurationSecs > auc.endAt) {
                            auc.endAt += detail.aucIncDurationSecs;
                        }
                    } else if (
                        detail.op == Market.Op.REFUND_AUCTION ||
                        detail.op == Market.Op.REFUND_AUCTION_STUCK_ITEM
                    ) {
                        require(
                            inventoryStatus[itemHash] == Market.InvStatus.AUCTION,
                            'cannot cancel non-auction order'
                        );
                        Market.OngoingAuction storage auc = ongoingAuctions[itemHash];
                        if (auc.netPrice > 0) {
                            _transferTo(order.currency, auc.bidder, auc.netPrice);
                            emit EvAuctionRefund(
                                itemHash,
                                address(order.currency),
                                auc.bidder,
                                auc.netPrice,
                                0
                            );
                        }
                        _assertDelegation(order, detail);
                        if (detail.op == Market.Op.REFUND_AUCTION) {
                            require(
                                detail.executionDelegate.executeAuctionRefund(order.user, auc.bidder, data),
                                'delegation error'
                            );
                        }
                        delete ongoingAuctions[itemHash];
                        inventoryStatus[itemHash] = Market.InvStatus.REFUNDED;
                    } else if (detail.op == Market.Op.COMPLETE_AUCTION) {
                        require(
                            inventoryStatus[itemHash] == Market.InvStatus.AUCTION,
                            'cannot complete non-auction order'
                        );
                        _assertDelegation(order, detail);
                        Market.OngoingAuction storage auc = ongoingAuctions[itemHash];
                        require(block.timestamp >= auc.endAt, 'auction not finished yet');
                        require(
                            detail.executionDelegate.executeAuctionComplete(order.user, auc.bidder, data),
                            'delegation error'
                        );
                        _distributeFeeAndProfit(
                            itemHash,
                            order.user,
                            order.currency,
                            detail,
                            auc.price,
                            auc.netPrice
                        );
                        inventoryStatus[itemHash] = Market.InvStatus.COMPLETE;
                        delete ongoingAuctions[itemHash];
                    } else {
                        revert('unknown op');
                    }
                    _emitInventory(itemHash, order, item, shared, detail);
                    return nativeAmount;
                }
                function _assertDelegation(Market.Order memory order, Market.SettleDetail memory detail)
                    internal
                    view
                    virtual
                {
                    require(
                        detail.executionDelegate.delegateType() == order.delegateType,
                        'delegation type error'
                    );
                }
                // modifies `src`
                function _arrayReplace(
                    bytes memory src,
                    bytes memory replacement,
                    bytes memory mask
                ) internal view virtual {
                    require(src.length == replacement.length);
                    require(src.length == mask.length);
                    for (uint256 i = 0; i < src.length; i++) {
                        if (mask[i] != 0) {
                            src[i] = replacement[i];
                        }
                    }
                }
                function _verifyInputSignature(Market.RunInput memory input) internal view virtual {
                    bytes32 hash = keccak256(abi.encode(input.shared, input.details.length, input.details));
                    address signer = ECDSA.recover(hash, input.v, input.r, input.s);
                    require(signers[signer], 'Input signature error');
                }
                function _verifyOrderSignature(Market.Order memory order) internal view virtual {
                    address orderSigner;
                    if (order.signVersion == Market.SIGN_V1) {
                        bytes32 orderHash = keccak256(
                            abi.encode(
                                order.salt,
                                order.user,
                                order.network,
                                order.intent,
                                order.delegateType,
                                order.deadline,
                                order.currency,
                                order.dataMask,
                                order.items.length,
                                order.items
                            )
                        );
                        orderSigner = ECDSA.recover(
                            ECDSA.toEthSignedMessageHash(orderHash),
                            order.v,
                            order.r,
                            order.s
                        );
                    } else {
                        revert('unknown signature version');
                    }
                    require(orderSigner == order.user, 'Order signature does not match');
                }
                function _isNative(IERC20Upgradeable currency) internal view virtual returns (bool) {
                    return address(currency) == address(0);
                }
                function _takePayment(
                    bytes32 itemHash,
                    IERC20Upgradeable currency,
                    address from,
                    uint256 amount
                ) internal virtual returns (uint256) {
                    if (amount > 0) {
                        if (_isNative(currency)) {
                            return amount;
                        } else {
                            currency.safeTransferFrom(from, address(this), amount);
                        }
                    }
                    return 0;
                }
                function _transferTo(
                    IERC20Upgradeable currency,
                    address to,
                    uint256 amount
                ) internal virtual {
                    if (amount > 0) {
                        if (_isNative(currency)) {
                            AddressUpgradeable.sendValue(payable(to), amount);
                        } else {
                            currency.safeTransfer(to, amount);
                        }
                    }
                }
                function _distributeFeeAndProfit(
                    bytes32 itemHash,
                    address seller,
                    IERC20Upgradeable currency,
                    Market.SettleDetail memory sd,
                    uint256 price,
                    uint256 netPrice
                ) internal virtual {
                    require(price >= netPrice, 'price error');
                    uint256 payment = netPrice;
                    uint256 totalFeePct;
                    for (uint256 i = 0; i < sd.fees.length; i++) {
                        Market.Fee memory fee = sd.fees[i];
                        totalFeePct += fee.percentage;
                        uint256 amount = (price * fee.percentage) / RATE_BASE;
                        payment -= amount;
                        _transferTo(currency, fee.to, amount);
                    }
                    require(feeCapPct >= totalFeePct, 'total fee cap exceeded');
                    _transferTo(currency, seller, payment);
                    emit EvProfit(itemHash, address(currency), seller, payment);
                }
            }
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            interface IDelegate {
                function delegateType() external view returns (uint256);
                function executeSell(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external returns (bool);
                function executeBuy(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external returns (bool);
                function executeBid(
                    address seller,
                    address previousBidder,
                    address bidder,
                    bytes calldata data
                ) external returns (bool);
                function executeAuctionComplete(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external returns (bool);
                function executeAuctionRefund(
                    address seller,
                    address lastBidder,
                    bytes calldata data
                ) external returns (bool);
            }
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            import '@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol';
            interface IWETHUpgradable is IERC20Upgradeable {
                function deposit() external payable;
                function withdraw(uint256 wad) external;
            }
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            import './IDelegate.sol';
            import './IWETHUpgradable.sol';
            library Market {
                uint256 constant INTENT_SELL = 1;
                uint256 constant INTENT_AUCTION = 2;
                uint256 constant INTENT_BUY = 3;
                uint8 constant SIGN_V1 = 1;
                uint8 constant SIGN_V3 = 3;
                struct OrderItem {
                    uint256 price;
                    bytes data;
                }
                struct Order {
                    uint256 salt;
                    address user;
                    uint256 network;
                    uint256 intent;
                    uint256 delegateType;
                    uint256 deadline;
                    IERC20Upgradeable currency;
                    bytes dataMask;
                    OrderItem[] items;
                    // signature
                    bytes32 r;
                    bytes32 s;
                    uint8 v;
                    uint8 signVersion;
                }
                struct Fee {
                    uint256 percentage;
                    address to;
                }
                struct SettleDetail {
                    Market.Op op;
                    uint256 orderIdx;
                    uint256 itemIdx;
                    uint256 price;
                    bytes32 itemHash;
                    IDelegate executionDelegate;
                    bytes dataReplacement;
                    uint256 bidIncentivePct;
                    uint256 aucMinIncrementPct;
                    uint256 aucIncDurationSecs;
                    Fee[] fees;
                }
                struct SettleShared {
                    uint256 salt;
                    uint256 deadline;
                    uint256 amountToEth;
                    uint256 amountToWeth;
                    address user;
                    bool canFail;
                }
                struct RunInput {
                    Order[] orders;
                    SettleDetail[] details;
                    SettleShared shared;
                    // signature
                    bytes32 r;
                    bytes32 s;
                    uint8 v;
                }
                struct OngoingAuction {
                    uint256 price;
                    uint256 netPrice;
                    uint256 endAt;
                    address bidder;
                }
                enum InvStatus {
                    NEW,
                    AUCTION,
                    COMPLETE,
                    CANCELLED,
                    REFUNDED
                }
                enum Op {
                    INVALID,
                    // off-chain
                    COMPLETE_SELL_OFFER,
                    COMPLETE_BUY_OFFER,
                    CANCEL_OFFER,
                    // auction
                    BID,
                    COMPLETE_AUCTION,
                    REFUND_AUCTION,
                    REFUND_AUCTION_STUCK_ITEM
                }
                enum DelegationType {
                    INVALID,
                    ERC721,
                    ERC1155
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
            pragma solidity ^0.8.0;
            import "../utils/ContextUpgradeable.sol";
            import "../proxy/utils/Initializable.sol";
            /**
             * @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 OwnableUpgradeable is Initializable, ContextUpgradeable {
                address private _owner;
                event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
                /**
                 * @dev Initializes the contract setting the deployer as the initial owner.
                 */
                function __Ownable_init() internal onlyInitializing {
                    __Context_init_unchained();
                    __Ownable_init_unchained();
                }
                function __Ownable_init_unchained() internal onlyInitializing {
                    _transferOwnership(_msgSender());
                }
                /**
                 * @dev Returns the address of the current owner.
                 */
                function owner() public view virtual returns (address) {
                    return _owner;
                }
                /**
                 * @dev Throws if called by any account other than the owner.
                 */
                modifier onlyOwner() {
                    require(owner() == _msgSender(), "Ownable: caller is not the owner");
                    _;
                }
                /**
                 * @dev Leaves the contract without owner. It will not be possible to call
                 * `onlyOwner` functions anymore. Can only be called by the current owner.
                 *
                 * NOTE: Renouncing ownership will leave the contract without an owner,
                 * thereby removing any functionality that is only available to the owner.
                 */
                function renounceOwnership() public virtual onlyOwner {
                    _transferOwnership(address(0));
                }
                /**
                 * @dev Transfers ownership of the contract to a new account (`newOwner`).
                 * Can only be called by the current owner.
                 */
                function transferOwnership(address newOwner) public virtual onlyOwner {
                    require(newOwner != address(0), "Ownable: new owner is the zero address");
                    _transferOwnership(newOwner);
                }
                /**
                 * @dev Transfers ownership of the contract to a new account (`newOwner`).
                 * Internal function without access restriction.
                 */
                function _transferOwnership(address newOwner) internal virtual {
                    address oldOwner = _owner;
                    _owner = newOwner;
                    emit OwnershipTransferred(oldOwner, newOwner);
                }
                uint256[49] private __gap;
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)
            pragma solidity ^0.8.0;
            import "../../utils/AddressUpgradeable.sol";
            /**
             * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
             * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
             * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
             * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
             *
             * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
             * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
             *
             * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
             * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
             *
             * [CAUTION]
             * ====
             * Avoid leaving a contract uninitialized.
             *
             * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
             * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
             * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
             *
             * [.hljs-theme-light.nopadding]
             * ```
             * /// @custom:oz-upgrades-unsafe-allow constructor
             * constructor() initializer {}
             * ```
             * ====
             */
            abstract contract Initializable {
                /**
                 * @dev Indicates that the contract has been initialized.
                 */
                bool private _initialized;
                /**
                 * @dev Indicates that the contract is in the process of being initialized.
                 */
                bool private _initializing;
                /**
                 * @dev Modifier to protect an initializer function from being invoked twice.
                 */
                modifier initializer() {
                    // If the contract is initializing we ignore whether _initialized is set in order to support multiple
                    // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
                    // contract may have been reentered.
                    require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");
                    bool isTopLevelCall = !_initializing;
                    if (isTopLevelCall) {
                        _initializing = true;
                        _initialized = true;
                    }
                    _;
                    if (isTopLevelCall) {
                        _initializing = false;
                    }
                }
                /**
                 * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
                 * {initializer} modifier, directly or indirectly.
                 */
                modifier onlyInitializing() {
                    require(_initializing, "Initializable: contract is not initializing");
                    _;
                }
                function _isConstructor() private view returns (bool) {
                    return !AddressUpgradeable.isContract(address(this));
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
            pragma solidity ^0.8.0;
            import "../utils/ContextUpgradeable.sol";
            import "../proxy/utils/Initializable.sol";
            /**
             * @dev Contract module which allows children to implement an emergency stop
             * mechanism that can be triggered by an authorized account.
             *
             * This module is used through inheritance. It will make available the
             * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
             * the functions of your contract. Note that they will not be pausable by
             * simply including this module, only once the modifiers are put in place.
             */
            abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
                /**
                 * @dev Emitted when the pause is triggered by `account`.
                 */
                event Paused(address account);
                /**
                 * @dev Emitted when the pause is lifted by `account`.
                 */
                event Unpaused(address account);
                bool private _paused;
                /**
                 * @dev Initializes the contract in unpaused state.
                 */
                function __Pausable_init() internal onlyInitializing {
                    __Context_init_unchained();
                    __Pausable_init_unchained();
                }
                function __Pausable_init_unchained() internal onlyInitializing {
                    _paused = false;
                }
                /**
                 * @dev Returns true if the contract is paused, and false otherwise.
                 */
                function paused() public view virtual returns (bool) {
                    return _paused;
                }
                /**
                 * @dev Modifier to make a function callable only when the contract is not paused.
                 *
                 * Requirements:
                 *
                 * - The contract must not be paused.
                 */
                modifier whenNotPaused() {
                    require(!paused(), "Pausable: paused");
                    _;
                }
                /**
                 * @dev Modifier to make a function callable only when the contract is paused.
                 *
                 * Requirements:
                 *
                 * - The contract must be paused.
                 */
                modifier whenPaused() {
                    require(paused(), "Pausable: not paused");
                    _;
                }
                /**
                 * @dev Triggers stopped state.
                 *
                 * Requirements:
                 *
                 * - The contract must not be paused.
                 */
                function _pause() internal virtual whenNotPaused {
                    _paused = true;
                    emit Paused(_msgSender());
                }
                /**
                 * @dev Returns to normal state.
                 *
                 * Requirements:
                 *
                 * - The contract must be paused.
                 */
                function _unpause() internal virtual whenPaused {
                    _paused = false;
                    emit Unpaused(_msgSender());
                }
                uint256[49] private __gap;
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
            pragma solidity ^0.8.0;
            import "../proxy/utils/Initializable.sol";
            /**
             * @dev Contract module that helps prevent reentrant calls to a function.
             *
             * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
             * available, which can be applied to functions to make sure there are no nested
             * (reentrant) calls to them.
             *
             * Note that because there is a single `nonReentrant` guard, functions marked as
             * `nonReentrant` may not call one another. This can be worked around by making
             * those functions `private`, and then adding `external` `nonReentrant` entry
             * points to them.
             *
             * TIP: If you would like to learn more about reentrancy and alternative ways
             * to protect against it, check out our blog post
             * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
             */
            abstract contract ReentrancyGuardUpgradeable is Initializable {
                // Booleans are more expensive than uint256 or any type that takes up a full
                // word because each write operation emits an extra SLOAD to first read the
                // slot's contents, replace the bits taken up by the boolean, and then write
                // back. This is the compiler's defense against contract upgrades and
                // pointer aliasing, and it cannot be disabled.
                // The values being non-zero value makes deployment a bit more expensive,
                // but in exchange the refund on every call to nonReentrant will be lower in
                // amount. Since refunds are capped to a percentage of the total
                // transaction's gas, it is best to keep them low in cases like this one, to
                // increase the likelihood of the full refund coming into effect.
                uint256 private constant _NOT_ENTERED = 1;
                uint256 private constant _ENTERED = 2;
                uint256 private _status;
                function __ReentrancyGuard_init() internal onlyInitializing {
                    __ReentrancyGuard_init_unchained();
                }
                function __ReentrancyGuard_init_unchained() internal onlyInitializing {
                    _status = _NOT_ENTERED;
                }
                /**
                 * @dev Prevents a contract from calling itself, directly or indirectly.
                 * Calling a `nonReentrant` function from another `nonReentrant`
                 * function is not supported. It is possible to prevent this from happening
                 * by making the `nonReentrant` function external, and making it call a
                 * `private` function that does the actual work.
                 */
                modifier nonReentrant() {
                    // On the first call to nonReentrant, _notEntered will be true
                    require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
                    // Any calls to nonReentrant after this point will fail
                    _status = _ENTERED;
                    _;
                    // By storing the original value once again, a refund is triggered (see
                    // https://eips.ethereum.org/EIPS/eip-2200)
                    _status = _NOT_ENTERED;
                }
                uint256[49] private __gap;
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
            pragma solidity ^0.8.0;
            import "../IERC20Upgradeable.sol";
            import "../../../utils/AddressUpgradeable.sol";
            /**
             * @title SafeERC20
             * @dev Wrappers around ERC20 operations that throw on failure (when the token
             * contract returns false). Tokens that return no value (and instead revert or
             * throw on failure) are also supported, non-reverting calls are assumed to be
             * successful.
             * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
             * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
             */
            library SafeERC20Upgradeable {
                using AddressUpgradeable for address;
                function safeTransfer(
                    IERC20Upgradeable token,
                    address to,
                    uint256 value
                ) internal {
                    _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
                }
                function safeTransferFrom(
                    IERC20Upgradeable token,
                    address from,
                    address to,
                    uint256 value
                ) internal {
                    _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
                }
                /**
                 * @dev Deprecated. This function has issues similar to the ones found in
                 * {IERC20-approve}, and its usage is discouraged.
                 *
                 * Whenever possible, use {safeIncreaseAllowance} and
                 * {safeDecreaseAllowance} instead.
                 */
                function safeApprove(
                    IERC20Upgradeable token,
                    address spender,
                    uint256 value
                ) internal {
                    // safeApprove should only be called when setting an initial allowance,
                    // or when resetting it to zero. To increase and decrease it, use
                    // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
                    require(
                        (value == 0) || (token.allowance(address(this), spender) == 0),
                        "SafeERC20: approve from non-zero to non-zero allowance"
                    );
                    _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
                }
                function safeIncreaseAllowance(
                    IERC20Upgradeable token,
                    address spender,
                    uint256 value
                ) internal {
                    uint256 newAllowance = token.allowance(address(this), spender) + value;
                    _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
                }
                function safeDecreaseAllowance(
                    IERC20Upgradeable token,
                    address spender,
                    uint256 value
                ) internal {
                    unchecked {
                        uint256 oldAllowance = token.allowance(address(this), spender);
                        require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
                        uint256 newAllowance = oldAllowance - value;
                        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
                    }
                }
                /**
                 * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
                 * on the return value: the return value is optional (but if data is returned, it must not be false).
                 * @param token The token targeted by the call.
                 * @param data The call data (encoded using abi.encode or one of its variants).
                 */
                function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
                    // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
                    // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
                    // the target address contains contract code and also asserts for success in the low-level call.
                    bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
                    if (returndata.length > 0) {
                        // Return data is optional
                        require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
                    }
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)
            pragma solidity ^0.8.0;
            import "../Strings.sol";
            /**
             * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
             *
             * These functions can be used to verify that a message was signed by the holder
             * of the private keys of a given address.
             */
            library ECDSA {
                enum RecoverError {
                    NoError,
                    InvalidSignature,
                    InvalidSignatureLength,
                    InvalidSignatureS,
                    InvalidSignatureV
                }
                function _throwError(RecoverError error) private pure {
                    if (error == RecoverError.NoError) {
                        return; // no error: do nothing
                    } else if (error == RecoverError.InvalidSignature) {
                        revert("ECDSA: invalid signature");
                    } else if (error == RecoverError.InvalidSignatureLength) {
                        revert("ECDSA: invalid signature length");
                    } else if (error == RecoverError.InvalidSignatureS) {
                        revert("ECDSA: invalid signature 's' value");
                    } else if (error == RecoverError.InvalidSignatureV) {
                        revert("ECDSA: invalid signature 'v' value");
                    }
                }
                /**
                 * @dev Returns the address that signed a hashed message (`hash`) with
                 * `signature` or error string. This address can then be used for verification purposes.
                 *
                 * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
                 * this function rejects them by requiring the `s` value to be in the lower
                 * half order, and the `v` value to be either 27 or 28.
                 *
                 * IMPORTANT: `hash` _must_ be the result of a hash operation for the
                 * verification to be secure: it is possible to craft signatures that
                 * recover to arbitrary addresses for non-hashed data. A safe way to ensure
                 * this is by receiving a hash of the original message (which may otherwise
                 * be too long), and then calling {toEthSignedMessageHash} on it.
                 *
                 * Documentation for signature generation:
                 * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
                 * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
                 *
                 * _Available since v4.3._
                 */
                function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
                    // Check the signature length
                    // - case 65: r,s,v signature (standard)
                    // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
                    if (signature.length == 65) {
                        bytes32 r;
                        bytes32 s;
                        uint8 v;
                        // ecrecover takes the signature parameters, and the only way to get them
                        // currently is to use assembly.
                        assembly {
                            r := mload(add(signature, 0x20))
                            s := mload(add(signature, 0x40))
                            v := byte(0, mload(add(signature, 0x60)))
                        }
                        return tryRecover(hash, v, r, s);
                    } else if (signature.length == 64) {
                        bytes32 r;
                        bytes32 vs;
                        // ecrecover takes the signature parameters, and the only way to get them
                        // currently is to use assembly.
                        assembly {
                            r := mload(add(signature, 0x20))
                            vs := mload(add(signature, 0x40))
                        }
                        return tryRecover(hash, r, vs);
                    } else {
                        return (address(0), RecoverError.InvalidSignatureLength);
                    }
                }
                /**
                 * @dev Returns the address that signed a hashed message (`hash`) with
                 * `signature`. This address can then be used for verification purposes.
                 *
                 * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
                 * this function rejects them by requiring the `s` value to be in the lower
                 * half order, and the `v` value to be either 27 or 28.
                 *
                 * IMPORTANT: `hash` _must_ be the result of a hash operation for the
                 * verification to be secure: it is possible to craft signatures that
                 * recover to arbitrary addresses for non-hashed data. A safe way to ensure
                 * this is by receiving a hash of the original message (which may otherwise
                 * be too long), and then calling {toEthSignedMessageHash} on it.
                 */
                function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
                    (address recovered, RecoverError error) = tryRecover(hash, signature);
                    _throwError(error);
                    return recovered;
                }
                /**
                 * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
                 *
                 * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
                 *
                 * _Available since v4.3._
                 */
                function tryRecover(
                    bytes32 hash,
                    bytes32 r,
                    bytes32 vs
                ) internal pure returns (address, RecoverError) {
                    bytes32 s;
                    uint8 v;
                    assembly {
                        s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                        v := add(shr(255, vs), 27)
                    }
                    return tryRecover(hash, v, r, s);
                }
                /**
                 * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
                 *
                 * _Available since v4.2._
                 */
                function recover(
                    bytes32 hash,
                    bytes32 r,
                    bytes32 vs
                ) internal pure returns (address) {
                    (address recovered, RecoverError error) = tryRecover(hash, r, vs);
                    _throwError(error);
                    return recovered;
                }
                /**
                 * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
                 * `r` and `s` signature fields separately.
                 *
                 * _Available since v4.3._
                 */
                function tryRecover(
                    bytes32 hash,
                    uint8 v,
                    bytes32 r,
                    bytes32 s
                ) internal pure returns (address, RecoverError) {
                    // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
                    // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
                    // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
                    // signatures from current libraries generate a unique signature with an s-value in the lower half order.
                    //
                    // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
                    // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
                    // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
                    // these malleable signatures as well.
                    if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
                        return (address(0), RecoverError.InvalidSignatureS);
                    }
                    if (v != 27 && v != 28) {
                        return (address(0), RecoverError.InvalidSignatureV);
                    }
                    // If the signature is valid (and not malleable), return the signer address
                    address signer = ecrecover(hash, v, r, s);
                    if (signer == address(0)) {
                        return (address(0), RecoverError.InvalidSignature);
                    }
                    return (signer, RecoverError.NoError);
                }
                /**
                 * @dev Overload of {ECDSA-recover} that receives the `v`,
                 * `r` and `s` signature fields separately.
                 */
                function recover(
                    bytes32 hash,
                    uint8 v,
                    bytes32 r,
                    bytes32 s
                ) internal pure returns (address) {
                    (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
                    _throwError(error);
                    return recovered;
                }
                /**
                 * @dev Returns an Ethereum Signed Message, created from a `hash`. This
                 * produces hash corresponding to the one signed with the
                 * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
                 * JSON-RPC method as part of EIP-191.
                 *
                 * See {recover}.
                 */
                function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
                    // 32 is the length in bytes of hash,
                    // enforced by the type signature above
                    return keccak256(abi.encodePacked("\\x19Ethereum Signed Message:\
            32", hash));
                }
                /**
                 * @dev Returns an Ethereum Signed Message, created from `s`. This
                 * produces hash corresponding to the one signed with the
                 * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
                 * JSON-RPC method as part of EIP-191.
                 *
                 * See {recover}.
                 */
                function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
                    return keccak256(abi.encodePacked("\\x19Ethereum Signed Message:\
            ", Strings.toString(s.length), s));
                }
                /**
                 * @dev Returns an Ethereum Signed Typed Data, created from a
                 * `domainSeparator` and a `structHash`. This produces hash corresponding
                 * to the one signed with the
                 * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
                 * JSON-RPC method as part of EIP-712.
                 *
                 * See {recover}.
                 */
                function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
                    return keccak256(abi.encodePacked("\\x19\\x01", domainSeparator, structHash));
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev Interface of the ERC20 standard as defined in the EIP.
             */
            interface IERC20Upgradeable {
                /**
                 * @dev Returns the amount of tokens in existence.
                 */
                function totalSupply() external view returns (uint256);
                /**
                 * @dev Returns the amount of tokens owned by `account`.
                 */
                function balanceOf(address account) external view returns (uint256);
                /**
                 * @dev Moves `amount` tokens from the caller's account to `recipient`.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * Emits a {Transfer} event.
                 */
                function transfer(address recipient, uint256 amount) external returns (bool);
                /**
                 * @dev Returns the remaining number of tokens that `spender` will be
                 * allowed to spend on behalf of `owner` through {transferFrom}. This is
                 * zero by default.
                 *
                 * This value changes when {approve} or {transferFrom} are called.
                 */
                function allowance(address owner, address spender) external view returns (uint256);
                /**
                 * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * IMPORTANT: Beware that changing an allowance with this method brings the risk
                 * that someone may use both the old and the new allowance by unfortunate
                 * transaction ordering. One possible solution to mitigate this race
                 * condition is to first reduce the spender's allowance to 0 and set the
                 * desired value afterwards:
                 * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
                 *
                 * Emits an {Approval} event.
                 */
                function approve(address spender, uint256 amount) external returns (bool);
                /**
                 * @dev Moves `amount` tokens from `sender` to `recipient` using the
                 * allowance mechanism. `amount` is then deducted from the caller's
                 * allowance.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * Emits a {Transfer} event.
                 */
                function transferFrom(
                    address sender,
                    address recipient,
                    uint256 amount
                ) external returns (bool);
                /**
                 * @dev Emitted when `value` tokens are moved from one account (`from`) to
                 * another (`to`).
                 *
                 * Note that `value` may be zero.
                 */
                event Transfer(address indexed from, address indexed to, uint256 value);
                /**
                 * @dev Emitted when the allowance of a `spender` for an `owner` is set by
                 * a call to {approve}. `value` is the new allowance.
                 */
                event Approval(address indexed owner, address indexed spender, uint256 value);
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
            pragma solidity ^0.8.0;
            import "../proxy/utils/Initializable.sol";
            /**
             * @dev Provides information about the current execution context, including the
             * sender of the transaction and its data. While these are generally available
             * via msg.sender and msg.data, they should not be accessed in such a direct
             * manner, since when dealing with meta-transactions the account sending and
             * paying for execution may not be the actual sender (as far as an application
             * is concerned).
             *
             * This contract is only required for intermediate, library-like contracts.
             */
            abstract contract ContextUpgradeable is Initializable {
                function __Context_init() internal onlyInitializing {
                    __Context_init_unchained();
                }
                function __Context_init_unchained() internal onlyInitializing {
                }
                function _msgSender() internal view virtual returns (address) {
                    return msg.sender;
                }
                function _msgData() internal view virtual returns (bytes calldata) {
                    return msg.data;
                }
                uint256[50] private __gap;
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev Collection of functions related to the address type
             */
            library AddressUpgradeable {
                /**
                 * @dev Returns true if `account` is a contract.
                 *
                 * [IMPORTANT]
                 * ====
                 * It is unsafe to assume that an address for which this function returns
                 * false is an externally-owned account (EOA) and not a contract.
                 *
                 * Among others, `isContract` will return false for the following
                 * types of addresses:
                 *
                 *  - an externally-owned account
                 *  - a contract in construction
                 *  - an address where a contract will be created
                 *  - an address where a contract lived, but was destroyed
                 * ====
                 */
                function isContract(address account) internal view returns (bool) {
                    // This method relies on extcodesize, which returns 0 for contracts in
                    // construction, since the code is only stored at the end of the
                    // constructor execution.
                    uint256 size;
                    assembly {
                        size := extcodesize(account)
                    }
                    return size > 0;
                }
                /**
                 * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
                 * `recipient`, forwarding all available gas and reverting on errors.
                 *
                 * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
                 * of certain opcodes, possibly making contracts go over the 2300 gas limit
                 * imposed by `transfer`, making them unable to receive funds via
                 * `transfer`. {sendValue} removes this limitation.
                 *
                 * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
                 *
                 * IMPORTANT: because control is transferred to `recipient`, care must be
                 * taken to not create reentrancy vulnerabilities. Consider using
                 * {ReentrancyGuard} or the
                 * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
                 */
                function sendValue(address payable recipient, uint256 amount) internal {
                    require(address(this).balance >= amount, "Address: insufficient balance");
                    (bool success, ) = recipient.call{value: amount}("");
                    require(success, "Address: unable to send value, recipient may have reverted");
                }
                /**
                 * @dev Performs a Solidity function call using a low level `call`. A
                 * plain `call` is an unsafe replacement for a function call: use this
                 * function instead.
                 *
                 * If `target` reverts with a revert reason, it is bubbled up by this
                 * function (like regular Solidity function calls).
                 *
                 * Returns the raw returned data. To convert to the expected return value,
                 * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
                 *
                 * Requirements:
                 *
                 * - `target` must be a contract.
                 * - calling `target` with `data` must not revert.
                 *
                 * _Available since v3.1._
                 */
                function functionCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionCall(target, data, "Address: low-level call failed");
                }
                /**
                 * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
                 * `errorMessage` as a fallback revert reason when `target` reverts.
                 *
                 * _Available since v3.1._
                 */
                function functionCall(
                    address target,
                    bytes memory data,
                    string memory errorMessage
                ) internal returns (bytes memory) {
                    return functionCallWithValue(target, data, 0, errorMessage);
                }
                /**
                 * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                 * but also transferring `value` wei to `target`.
                 *
                 * Requirements:
                 *
                 * - the calling contract must have an ETH balance of at least `value`.
                 * - the called Solidity function must be `payable`.
                 *
                 * _Available since v3.1._
                 */
                function functionCallWithValue(
                    address target,
                    bytes memory data,
                    uint256 value
                ) internal returns (bytes memory) {
                    return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
                }
                /**
                 * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
                 * with `errorMessage` as a fallback revert reason when `target` reverts.
                 *
                 * _Available since v3.1._
                 */
                function functionCallWithValue(
                    address target,
                    bytes memory data,
                    uint256 value,
                    string memory errorMessage
                ) internal returns (bytes memory) {
                    require(address(this).balance >= value, "Address: insufficient balance for call");
                    require(isContract(target), "Address: call to non-contract");
                    (bool success, bytes memory returndata) = target.call{value: value}(data);
                    return verifyCallResult(success, returndata, errorMessage);
                }
                /**
                 * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                 * but performing a static call.
                 *
                 * _Available since v3.3._
                 */
                function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
                    return functionStaticCall(target, data, "Address: low-level static call failed");
                }
                /**
                 * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
                 * but performing a static call.
                 *
                 * _Available since v3.3._
                 */
                function functionStaticCall(
                    address target,
                    bytes memory data,
                    string memory errorMessage
                ) internal view returns (bytes memory) {
                    require(isContract(target), "Address: static call to non-contract");
                    (bool success, bytes memory returndata) = target.staticcall(data);
                    return verifyCallResult(success, returndata, errorMessage);
                }
                /**
                 * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
                 * revert reason using the provided one.
                 *
                 * _Available since v4.3._
                 */
                function verifyCallResult(
                    bool success,
                    bytes memory returndata,
                    string memory errorMessage
                ) internal pure returns (bytes memory) {
                    if (success) {
                        return returndata;
                    } else {
                        // Look for revert reason and bubble it up if present
                        if (returndata.length > 0) {
                            // The easiest way to bubble the revert reason is using memory via assembly
                            assembly {
                                let returndata_size := mload(returndata)
                                revert(add(32, returndata), returndata_size)
                            }
                        } else {
                            revert(errorMessage);
                        }
                    }
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev String operations.
             */
            library Strings {
                bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
                /**
                 * @dev Converts a `uint256` to its ASCII `string` decimal representation.
                 */
                function toString(uint256 value) internal pure returns (string memory) {
                    // Inspired by OraclizeAPI's implementation - MIT licence
                    // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
                    if (value == 0) {
                        return "0";
                    }
                    uint256 temp = value;
                    uint256 digits;
                    while (temp != 0) {
                        digits++;
                        temp /= 10;
                    }
                    bytes memory buffer = new bytes(digits);
                    while (value != 0) {
                        digits -= 1;
                        buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
                        value /= 10;
                    }
                    return string(buffer);
                }
                /**
                 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
                 */
                function toHexString(uint256 value) internal pure returns (string memory) {
                    if (value == 0) {
                        return "0x00";
                    }
                    uint256 temp = value;
                    uint256 length = 0;
                    while (temp != 0) {
                        length++;
                        temp >>= 8;
                    }
                    return toHexString(value, length);
                }
                /**
                 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
                 */
                function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
                    bytes memory buffer = new bytes(2 * length + 2);
                    buffer[0] = "0";
                    buffer[1] = "x";
                    for (uint256 i = 2 * length + 1; i > 1; --i) {
                        buffer[i] = _HEX_SYMBOLS[value & 0xf];
                        value >>= 4;
                    }
                    require(value == 0, "Strings: hex length insufficient");
                    return string(buffer);
                }
            }
            

            File 5 of 6: ERC721Delegate
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
            import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
            import '@openzeppelin/contracts/access/AccessControl.sol';
            import './MarketConsts.sol';
            import './IDelegate.sol';
            contract ERC721Delegate is IDelegate, AccessControl, IERC721Receiver {
                bytes32 public constant DELEGATION_CALLER = keccak256('DELEGATION_CALLER');
                struct Pair {
                    IERC721 token;
                    uint256 tokenId;
                }
                constructor() {
                    _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
                }
                function onERC721Received(
                    address,
                    address,
                    uint256,
                    bytes calldata
                ) external override returns (bytes4) {
                    return this.onERC721Received.selector;
                }
                function decode(bytes calldata data) internal pure returns (Pair[] memory) {
                    return abi.decode(data, (Pair[]));
                }
                function delegateType() external view returns (uint256) {
                    // return uint256(Market.DelegationType.ERC721);
                    return 1;
                }
                function executeSell(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external onlyRole(DELEGATION_CALLER) returns (bool) {
                    Pair[] memory pairs = decode(data);
                    for (uint256 i = 0; i < pairs.length; i++) {
                        Pair memory p = pairs[i];
                        p.token.safeTransferFrom(seller, buyer, p.tokenId);
                    }
                    return true;
                }
                function executeBuy(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external onlyRole(DELEGATION_CALLER) returns (bool) {
                    Pair[] memory pairs = decode(data);
                    for (uint256 i = 0; i < pairs.length; i++) {
                        Pair memory p = pairs[i];
                        p.token.safeTransferFrom(seller, buyer, p.tokenId);
                    }
                    return true;
                }
                function executeBid(
                    address seller,
                    address previousBidder,
                    address, // bidder,
                    bytes calldata data
                ) external onlyRole(DELEGATION_CALLER) returns (bool) {
                    if (previousBidder == address(0)) {
                        Pair[] memory pairs = decode(data);
                        for (uint256 i = 0; i < pairs.length; i++) {
                            Pair memory p = pairs[i];
                            p.token.safeTransferFrom(seller, address(this), p.tokenId);
                        }
                    }
                    return true;
                }
                function executeAuctionComplete(
                    address, // seller,
                    address buyer,
                    bytes calldata data
                ) external onlyRole(DELEGATION_CALLER) returns (bool) {
                    Pair[] memory pairs = decode(data);
                    for (uint256 i = 0; i < pairs.length; i++) {
                        Pair memory p = pairs[i];
                        p.token.safeTransferFrom(address(this), buyer, p.tokenId);
                    }
                    return true;
                }
                function executeAuctionRefund(
                    address seller,
                    address, // lastBidder,
                    bytes calldata data
                ) external onlyRole(DELEGATION_CALLER) returns (bool) {
                    Pair[] memory pairs = decode(data);
                    for (uint256 i = 0; i < pairs.length; i++) {
                        Pair memory p = pairs[i];
                        p.token.safeTransferFrom(address(this), seller, p.tokenId);
                    }
                    return true;
                }
                function transferBatch(Pair[] memory pairs, address to) public {
                    for (uint256 i = 0; i < pairs.length; i++) {
                        Pair memory p = pairs[i];
                        p.token.safeTransferFrom(msg.sender, to, p.tokenId);
                    }
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
            pragma solidity ^0.8.0;
            import "../../utils/introspection/IERC165.sol";
            /**
             * @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;
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
            pragma solidity ^0.8.0;
            /**
             * @title ERC721 token receiver interface
             * @dev Interface for any contract that wants to support safeTransfers
             * from ERC721 asset contracts.
             */
            interface IERC721Receiver {
                /**
                 * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
                 * by `operator` from `from`, this function is called.
                 *
                 * It must return its Solidity selector to confirm the token transfer.
                 * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
                 *
                 * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
                 */
                function onERC721Received(
                    address operator,
                    address from,
                    uint256 tokenId,
                    bytes calldata data
                ) external returns (bytes4);
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)
            pragma solidity ^0.8.0;
            import "./IAccessControl.sol";
            import "../utils/Context.sol";
            import "../utils/Strings.sol";
            import "../utils/introspection/ERC165.sol";
            /**
             * @dev Contract module that allows children to implement role-based access
             * control mechanisms. This is a lightweight version that doesn't allow enumerating role
             * members except through off-chain means by accessing the contract event logs. Some
             * applications may benefit from on-chain enumerability, for those cases see
             * {AccessControlEnumerable}.
             *
             * Roles are referred to by their `bytes32` identifier. These should be exposed
             * in the external API and be unique. The best way to achieve this is by
             * using `public constant` hash digests:
             *
             * ```
             * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
             * ```
             *
             * Roles can be used to represent a set of permissions. To restrict access to a
             * function call, use {hasRole}:
             *
             * ```
             * function foo() public {
             *     require(hasRole(MY_ROLE, msg.sender));
             *     ...
             * }
             * ```
             *
             * Roles can be granted and revoked dynamically via the {grantRole} and
             * {revokeRole} functions. Each role has an associated admin role, and only
             * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
             *
             * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
             * that only accounts with this role will be able to grant or revoke other
             * roles. More complex role relationships can be created by using
             * {_setRoleAdmin}.
             *
             * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
             * grant and revoke this role. Extra precautions should be taken to secure
             * accounts that have been granted it.
             */
            abstract contract AccessControl is Context, IAccessControl, ERC165 {
                struct RoleData {
                    mapping(address => bool) members;
                    bytes32 adminRole;
                }
                mapping(bytes32 => RoleData) private _roles;
                bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
                /**
                 * @dev Modifier that checks that an account has a specific role. Reverts
                 * with a standardized message including the required role.
                 *
                 * The format of the revert reason is given by the following regular expression:
                 *
                 *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
                 *
                 * _Available since v4.1._
                 */
                modifier onlyRole(bytes32 role) {
                    _checkRole(role, _msgSender());
                    _;
                }
                /**
                 * @dev See {IERC165-supportsInterface}.
                 */
                function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
                    return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
                }
                /**
                 * @dev Returns `true` if `account` has been granted `role`.
                 */
                function hasRole(bytes32 role, address account) public view override returns (bool) {
                    return _roles[role].members[account];
                }
                /**
                 * @dev Revert with a standard message if `account` is missing `role`.
                 *
                 * The format of the revert reason is given by the following regular expression:
                 *
                 *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
                 */
                function _checkRole(bytes32 role, address account) internal view {
                    if (!hasRole(role, account)) {
                        revert(
                            string(
                                abi.encodePacked(
                                    "AccessControl: account ",
                                    Strings.toHexString(uint160(account), 20),
                                    " is missing role ",
                                    Strings.toHexString(uint256(role), 32)
                                )
                            )
                        );
                    }
                }
                /**
                 * @dev Returns the admin role that controls `role`. See {grantRole} and
                 * {revokeRole}.
                 *
                 * To change a role's admin, use {_setRoleAdmin}.
                 */
                function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
                    return _roles[role].adminRole;
                }
                /**
                 * @dev Grants `role` to `account`.
                 *
                 * If `account` had not been already granted `role`, emits a {RoleGranted}
                 * event.
                 *
                 * Requirements:
                 *
                 * - the caller must have ``role``'s admin role.
                 */
                function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
                    _grantRole(role, account);
                }
                /**
                 * @dev Revokes `role` from `account`.
                 *
                 * If `account` had been granted `role`, emits a {RoleRevoked} event.
                 *
                 * Requirements:
                 *
                 * - the caller must have ``role``'s admin role.
                 */
                function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
                    _revokeRole(role, account);
                }
                /**
                 * @dev Revokes `role` from the calling account.
                 *
                 * Roles are often managed via {grantRole} and {revokeRole}: this function's
                 * purpose is to provide a mechanism for accounts to lose their privileges
                 * if they are compromised (such as when a trusted device is misplaced).
                 *
                 * If the calling account had been revoked `role`, emits a {RoleRevoked}
                 * event.
                 *
                 * Requirements:
                 *
                 * - the caller must be `account`.
                 */
                function renounceRole(bytes32 role, address account) public virtual override {
                    require(account == _msgSender(), "AccessControl: can only renounce roles for self");
                    _revokeRole(role, account);
                }
                /**
                 * @dev Grants `role` to `account`.
                 *
                 * If `account` had not been already granted `role`, emits a {RoleGranted}
                 * event. Note that unlike {grantRole}, this function doesn't perform any
                 * checks on the calling account.
                 *
                 * [WARNING]
                 * ====
                 * This function should only be called from the constructor when setting
                 * up the initial roles for the system.
                 *
                 * Using this function in any other way is effectively circumventing the admin
                 * system imposed by {AccessControl}.
                 * ====
                 *
                 * NOTE: This function is deprecated in favor of {_grantRole}.
                 */
                function _setupRole(bytes32 role, address account) internal virtual {
                    _grantRole(role, account);
                }
                /**
                 * @dev Sets `adminRole` as ``role``'s admin role.
                 *
                 * Emits a {RoleAdminChanged} event.
                 */
                function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
                    bytes32 previousAdminRole = getRoleAdmin(role);
                    _roles[role].adminRole = adminRole;
                    emit RoleAdminChanged(role, previousAdminRole, adminRole);
                }
                /**
                 * @dev Grants `role` to `account`.
                 *
                 * Internal function without access restriction.
                 */
                function _grantRole(bytes32 role, address account) internal virtual {
                    if (!hasRole(role, account)) {
                        _roles[role].members[account] = true;
                        emit RoleGranted(role, account, _msgSender());
                    }
                }
                /**
                 * @dev Revokes `role` from `account`.
                 *
                 * Internal function without access restriction.
                 */
                function _revokeRole(bytes32 role, address account) internal virtual {
                    if (hasRole(role, account)) {
                        _roles[role].members[account] = false;
                        emit RoleRevoked(role, account, _msgSender());
                    }
                }
            }
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            import './IDelegate.sol';
            import './IWETHUpgradable.sol';
            library Market {
                uint256 constant INTENT_SELL = 1;
                uint256 constant INTENT_AUCTION = 2;
                uint256 constant INTENT_BUY = 3;
                uint8 constant SIGN_V1 = 1;
                uint8 constant SIGN_V3 = 3;
                struct OrderItem {
                    uint256 price;
                    bytes data;
                }
                struct Order {
                    uint256 salt;
                    address user;
                    uint256 network;
                    uint256 intent;
                    uint256 delegateType;
                    uint256 deadline;
                    IERC20Upgradeable currency;
                    bytes dataMask;
                    OrderItem[] items;
                    // signature
                    bytes32 r;
                    bytes32 s;
                    uint8 v;
                    uint8 signVersion;
                }
                struct Fee {
                    uint256 percentage;
                    address to;
                }
                struct SettleDetail {
                    Market.Op op;
                    uint256 orderIdx;
                    uint256 itemIdx;
                    uint256 price;
                    bytes32 itemHash;
                    IDelegate executionDelegate;
                    bytes dataReplacement;
                    uint256 bidIncentivePct;
                    uint256 aucMinIncrementPct;
                    uint256 aucIncDurationSecs;
                    Fee[] fees;
                }
                struct SettleShared {
                    uint256 salt;
                    uint256 deadline;
                    uint256 amountToEth;
                    uint256 amountToWeth;
                    address user;
                    bool canFail;
                }
                struct RunInput {
                    Order[] orders;
                    SettleDetail[] details;
                    SettleShared shared;
                    // signature
                    bytes32 r;
                    bytes32 s;
                    uint8 v;
                }
                struct OngoingAuction {
                    uint256 price;
                    uint256 netPrice;
                    uint256 endAt;
                    address bidder;
                }
                enum InvStatus {
                    NEW,
                    AUCTION,
                    COMPLETE,
                    CANCELLED,
                    REFUNDED
                }
                enum Op {
                    INVALID,
                    // off-chain
                    COMPLETE_SELL_OFFER,
                    COMPLETE_BUY_OFFER,
                    CANCEL_OFFER,
                    // auction
                    BID,
                    COMPLETE_AUCTION,
                    REFUND_AUCTION,
                    REFUND_AUCTION_STUCK_ITEM
                }
                enum DelegationType {
                    INVALID,
                    ERC721,
                    ERC1155
                }
            }
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            interface IDelegate {
                function delegateType() external view returns (uint256);
                function executeSell(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external returns (bool);
                function executeBuy(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external returns (bool);
                function executeBid(
                    address seller,
                    address previousBidder,
                    address bidder,
                    bytes calldata data
                ) external returns (bool);
                function executeAuctionComplete(
                    address seller,
                    address buyer,
                    bytes calldata data
                ) external returns (bool);
                function executeAuctionRefund(
                    address seller,
                    address lastBidder,
                    bytes calldata data
                ) external returns (bool);
            }
            // SPDX-License-Identifier: MIT
            // 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);
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev External interface of AccessControl declared to support ERC165 detection.
             */
            interface IAccessControl {
                /**
                 * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
                 *
                 * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
                 * {RoleAdminChanged} not being emitted signaling this.
                 *
                 * _Available since v3.1._
                 */
                event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
                /**
                 * @dev Emitted when `account` is granted `role`.
                 *
                 * `sender` is the account that originated the contract call, an admin role
                 * bearer except when using {AccessControl-_setupRole}.
                 */
                event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
                /**
                 * @dev Emitted when `account` is revoked `role`.
                 *
                 * `sender` is the account that originated the contract call:
                 *   - if using `revokeRole`, it is the admin role bearer
                 *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
                 */
                event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
                /**
                 * @dev Returns `true` if `account` has been granted `role`.
                 */
                function hasRole(bytes32 role, address account) external view returns (bool);
                /**
                 * @dev Returns the admin role that controls `role`. See {grantRole} and
                 * {revokeRole}.
                 *
                 * To change a role's admin, use {AccessControl-_setRoleAdmin}.
                 */
                function getRoleAdmin(bytes32 role) external view returns (bytes32);
                /**
                 * @dev Grants `role` to `account`.
                 *
                 * If `account` had not been already granted `role`, emits a {RoleGranted}
                 * event.
                 *
                 * Requirements:
                 *
                 * - the caller must have ``role``'s admin role.
                 */
                function grantRole(bytes32 role, address account) external;
                /**
                 * @dev Revokes `role` from `account`.
                 *
                 * If `account` had been granted `role`, emits a {RoleRevoked} event.
                 *
                 * Requirements:
                 *
                 * - the caller must have ``role``'s admin role.
                 */
                function revokeRole(bytes32 role, address account) external;
                /**
                 * @dev Revokes `role` from the calling account.
                 *
                 * Roles are often managed via {grantRole} and {revokeRole}: this function's
                 * purpose is to provide a mechanism for accounts to lose their privileges
                 * if they are compromised (such as when a trusted device is misplaced).
                 *
                 * If the calling account had been granted `role`, emits a {RoleRevoked}
                 * event.
                 *
                 * Requirements:
                 *
                 * - the caller must be `account`.
                 */
                function renounceRole(bytes32 role, address account) external;
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev Provides information about the current execution context, including the
             * sender of the transaction and its data. While these are generally available
             * via msg.sender and msg.data, they should not be accessed in such a direct
             * manner, since when dealing with meta-transactions the account sending and
             * paying for execution may not be the actual sender (as far as an application
             * is concerned).
             *
             * This contract is only required for intermediate, library-like contracts.
             */
            abstract contract Context {
                function _msgSender() internal view virtual returns (address) {
                    return msg.sender;
                }
                function _msgData() internal view virtual returns (bytes calldata) {
                    return msg.data;
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev String operations.
             */
            library Strings {
                bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
                /**
                 * @dev Converts a `uint256` to its ASCII `string` decimal representation.
                 */
                function toString(uint256 value) internal pure returns (string memory) {
                    // Inspired by OraclizeAPI's implementation - MIT licence
                    // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
                    if (value == 0) {
                        return "0";
                    }
                    uint256 temp = value;
                    uint256 digits;
                    while (temp != 0) {
                        digits++;
                        temp /= 10;
                    }
                    bytes memory buffer = new bytes(digits);
                    while (value != 0) {
                        digits -= 1;
                        buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
                        value /= 10;
                    }
                    return string(buffer);
                }
                /**
                 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
                 */
                function toHexString(uint256 value) internal pure returns (string memory) {
                    if (value == 0) {
                        return "0x00";
                    }
                    uint256 temp = value;
                    uint256 length = 0;
                    while (temp != 0) {
                        length++;
                        temp >>= 8;
                    }
                    return toHexString(value, length);
                }
                /**
                 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
                 */
                function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
                    bytes memory buffer = new bytes(2 * length + 2);
                    buffer[0] = "0";
                    buffer[1] = "x";
                    for (uint256 i = 2 * length + 1; i > 1; --i) {
                        buffer[i] = _HEX_SYMBOLS[value & 0xf];
                        value >>= 4;
                    }
                    require(value == 0, "Strings: hex length insufficient");
                    return string(buffer);
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
            pragma solidity ^0.8.0;
            import "./IERC165.sol";
            /**
             * @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;
                }
            }
            // SPDX-License-Identifier: Unlicensed
            pragma solidity ^0.8.0;
            pragma abicoder v2;
            import '@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol';
            interface IWETHUpgradable is IERC20Upgradeable {
                function deposit() external payable;
                function withdraw(uint256 wad) external;
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev Interface of the ERC20 standard as defined in the EIP.
             */
            interface IERC20Upgradeable {
                /**
                 * @dev Returns the amount of tokens in existence.
                 */
                function totalSupply() external view returns (uint256);
                /**
                 * @dev Returns the amount of tokens owned by `account`.
                 */
                function balanceOf(address account) external view returns (uint256);
                /**
                 * @dev Moves `amount` tokens from the caller's account to `recipient`.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * Emits a {Transfer} event.
                 */
                function transfer(address recipient, uint256 amount) external returns (bool);
                /**
                 * @dev Returns the remaining number of tokens that `spender` will be
                 * allowed to spend on behalf of `owner` through {transferFrom}. This is
                 * zero by default.
                 *
                 * This value changes when {approve} or {transferFrom} are called.
                 */
                function allowance(address owner, address spender) external view returns (uint256);
                /**
                 * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * IMPORTANT: Beware that changing an allowance with this method brings the risk
                 * that someone may use both the old and the new allowance by unfortunate
                 * transaction ordering. One possible solution to mitigate this race
                 * condition is to first reduce the spender's allowance to 0 and set the
                 * desired value afterwards:
                 * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
                 *
                 * Emits an {Approval} event.
                 */
                function approve(address spender, uint256 amount) external returns (bool);
                /**
                 * @dev Moves `amount` tokens from `sender` to `recipient` using the
                 * allowance mechanism. `amount` is then deducted from the caller's
                 * allowance.
                 *
                 * Returns a boolean value indicating whether the operation succeeded.
                 *
                 * Emits a {Transfer} event.
                 */
                function transferFrom(
                    address sender,
                    address recipient,
                    uint256 amount
                ) external returns (bool);
                /**
                 * @dev Emitted when `value` tokens are moved from one account (`from`) to
                 * another (`to`).
                 *
                 * Note that `value` may be zero.
                 */
                event Transfer(address indexed from, address indexed to, uint256 value);
                /**
                 * @dev Emitted when the allowance of a `spender` for an `owner` is set by
                 * a call to {approve}. `value` is the new allowance.
                 */
                event Approval(address indexed owner, address indexed spender, uint256 value);
            }
            

            File 6 of 6: Delusion
            // SPDX-License-Identifier: MIT
            pragma solidity >=0.7.0 <0.9.0;
            import "@openzeppelin/contracts/access/Ownable.sol";
            import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
            import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
            import "@openzeppelin/contracts/utils/Strings.sol";
            import "erc721a/contracts/ERC721A.sol";
            // ██████╗░██████╗░██╗░░░░░██╗░░░██╗░██████╗██╗░█████╗░███╗░░██╗
            // ██╔══██╗╚════██╗██║░░░░░██║░░░██║██╔════╝██║██╔══██╗████╗░██║
            // ██║░░██║░█████╔╝██║░░░░░██║░░░██║╚█████╗░██║██║░░██║██╔██╗██║
            // ██║░░██║░╚═══██╗██║░░░░░██║░░░██║░╚═══██╗██║██║░░██║██║╚████║
            // ██████╔╝██████╔╝███████╗╚██████╔╝██████╔╝██║╚█████╔╝██║░╚███║
            // ╚═════╝░╚═════╝░╚══════╝░╚═════╝░╚═════╝░╚═╝░╚════╝░╚═╝░░╚══╝
            contract Delusion is ERC721A, Ownable, ReentrancyGuard {
                /// ERRORS ///
                error ContractMint();
                error OutOfSupply();
                error ExceedsTxnLimit();
                error ExceedsWalletLimit();
                error InsufficientFunds();
                
                error MintPaused();
                error MintInactive();
                error InvalidProof();
                error InvalidQuantity();
                error InexistentToken();
                /// @dev For URI concatenation.
                using Strings for uint256;
                bytes32 public merkleRoot = 0x4017bc006c61f665110881489b2a8a90e9b75f821bdc8722eaf7a34d1103fa80;
                string public baseURI = "ipfs://QmVW9aPRBCZEARmt31uUijLeQ6BvCgRXYaanQoi1X76G36/Hidden.json";
                
                uint32 saleStartTime;
                uint256 public PRICE = 0.0099 ether;
                uint256 public SUPPLY_MAX;
                uint256 public SUPPLY_MAX_WHITELIST;
                uint256 public MAX_PER_TXN = 3;
                
                uint256 public teamReserve = 100;
                uint256 public whitelistMints;
                bool public presalePaused;
                bool public publicSalePaused;
                bool public revealed;
                constructor(
                    string memory _name,
                    string memory _symbol
                ) ERC721A(_name, _symbol) payable {
                    _safeMint(msg.sender, 1);
                    SUPPLY_MAX = 7000;
                    SUPPLY_MAX_WHITELIST = 2500;
                    saleStartTime = 1662163200; // Friday, September 3, 2022 12:00:00 AM GMT
                }
                modifier mintCompliance(uint256 _mintAmount) {
                    if (block.timestamp < saleStartTime) revert MintInactive();
                    if (msg.sender != tx.origin) revert ContractMint();
                    if ((totalSupply() + _mintAmount) > (SUPPLY_MAX - teamReserve)) revert OutOfSupply();
                    if (_mintAmount > MAX_PER_TXN) revert ExceedsTxnLimit();
                    if ((_numberMinted(msg.sender) + _mintAmount) > MAX_PER_TXN) revert ExceedsWalletLimit();
                    _;
                }
                function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
                    external
                    payable
                    nonReentrant
                    mintCompliance(_mintAmount) 
                {   
                    if (_mintAmount < 1) revert InvalidQuantity();
                    if (presalePaused) revert MintPaused();
                    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
                    if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf)) revert InvalidProof();
                    bool inSupply = whitelistMints < SUPPLY_MAX_WHITELIST;
                    bool eligibleForFreeMint = _numberMinted(msg.sender) == 0;
                    /// @dev Handle edge case.
                    if (!inSupply) {
                        if (eligibleForFreeMint) {
                            if (_mintAmount > 1) {
                                if (msg.value < (PRICE * (_mintAmount - 1))) revert InsufficientFunds();
                                _safeMint(msg.sender, (_mintAmount - 1));
                            } else {
                                revert OutOfSupply();
                            }
                        } else {
                            if (msg.value < (PRICE * _mintAmount)) revert InsufficientFunds();
                            _safeMint(msg.sender, _mintAmount);
                        }
                    } else {
                        uint256 quant = eligibleForFreeMint ? (_mintAmount - 1) : _mintAmount;
                        if (msg.value < (PRICE * quant)) revert InsufficientFunds();
                        _safeMint(msg.sender, _mintAmount);
                        if (eligibleForFreeMint) ++whitelistMints;
                    }
                }
                function mint(uint256 _mintAmount)
                    external
                    payable
                    nonReentrant
                    mintCompliance(_mintAmount)
                {
                    if (publicSalePaused) revert MintPaused();
                    if (msg.value < (PRICE * _mintAmount)) revert InsufficientFunds();
                    _safeMint(msg.sender, _mintAmount);
                }
                
                /// @notice Airdrop to a single wallet.
                function mintForAddress(uint256 _mintAmount, address _receiver) external onlyOwner {
                    unchecked { teamReserve -= _mintAmount; }
                    _safeMint(_receiver, _mintAmount);
                }
                /// @notice Airdrops to multiple wallets.
                function batchMintForAddress(address[] calldata addresses, uint256[] calldata quantities) external onlyOwner {
                    uint32 i;
                    unchecked {
                        for (i=0; i < addresses.length; ++i) {
                            teamReserve -= quantities[i];
                            _safeMint(addresses[i], quantities[i]);
                        }
                    }
                }
                function _startTokenId()
                    internal
                    view
                    virtual
                    override returns (uint256) 
                {
                    return 1;
                }
                function numberMinted(address userAddress) external view virtual returns (uint256) {
                    return _numberMinted(userAddress);
                }
                /// SETTERS ///
                function setRevealed() external onlyOwner {
                    revealed = true;
                }
                function pausePublicSale(bool _state) external onlyOwner {
                    publicSalePaused = _state;
                }
                function pausePresale(bool _state) external onlyOwner {
                    presalePaused = _state;
                }
                function setSaleStartTime(uint32 startTime_) external onlyOwner {
                    saleStartTime = startTime_;
                }
                function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
                    merkleRoot = merkleRoot_;
                }
                function setPrice(uint256 _price) external onlyOwner {
                    PRICE = _price;
                }
                function setPublicMaxSupply(uint256 _supply) external onlyOwner {
                    SUPPLY_MAX = _supply;
                }
                function setWhitelistMaxSupply(uint256 _supply) external onlyOwner {
                    SUPPLY_MAX_WHITELIST = _supply;
                }
                function setTeamReserves(uint256 _reserve) external onlyOwner {
                    teamReserve = _reserve;
                }
                function withdraw() external onlyOwner {
                    payable(owner()).transfer(address(this).balance);
                }
                /// METADATA URI ///
                function _baseURI()
                    internal 
                    view 
                    virtual
                    override returns (string memory)
                {
                    return baseURI;
                }
                function setBaseURI(string memory _newBaseURI) external onlyOwner {
                    baseURI = _newBaseURI;
                }
                /// @dev Returning concatenated URI with .json as suffix on the tokenID when revealed.
                function tokenURI(uint256 _tokenId)
                    public
                    view
                    virtual
                    override
                    returns (string memory)
                {
                    if (!_exists(_tokenId)) revert InexistentToken();
                    if (!revealed) return _baseURI();
                    return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
                }
            }// SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
            pragma solidity ^0.8.0;
            import "../utils/Context.sol";
            /**
             * @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);
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev These functions deal with verification of Merkle Tree proofs.
             *
             * The proofs can be generated using the JavaScript library
             * https://github.com/miguelmota/merkletreejs[merkletreejs].
             * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
             *
             * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
             *
             * WARNING: You should avoid using leaf values that are 64 bytes long prior to
             * hashing, or use a hash function other than keccak256 for hashing leaves.
             * This is because the concatenation of a sorted pair of internal nodes in
             * the merkle tree could be reinterpreted as a leaf value.
             */
            library MerkleProof {
                /**
                 * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
                 * defined by `root`. For this, a `proof` must be provided, containing
                 * sibling hashes on the branch from the leaf to the root of the tree. Each
                 * pair of leaves and each pair of pre-images are assumed to be sorted.
                 */
                function verify(
                    bytes32[] memory proof,
                    bytes32 root,
                    bytes32 leaf
                ) internal pure returns (bool) {
                    return processProof(proof, leaf) == root;
                }
                /**
                 * @dev Calldata version of {verify}
                 *
                 * _Available since v4.7._
                 */
                function verifyCalldata(
                    bytes32[] calldata proof,
                    bytes32 root,
                    bytes32 leaf
                ) internal pure returns (bool) {
                    return processProofCalldata(proof, leaf) == root;
                }
                /**
                 * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
                 * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
                 * hash matches the root of the tree. When processing the proof, the pairs
                 * of leafs & pre-images are assumed to be sorted.
                 *
                 * _Available since v4.4._
                 */
                function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
                    bytes32 computedHash = leaf;
                    for (uint256 i = 0; i < proof.length; i++) {
                        computedHash = _hashPair(computedHash, proof[i]);
                    }
                    return computedHash;
                }
                /**
                 * @dev Calldata version of {processProof}
                 *
                 * _Available since v4.7._
                 */
                function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
                    bytes32 computedHash = leaf;
                    for (uint256 i = 0; i < proof.length; i++) {
                        computedHash = _hashPair(computedHash, proof[i]);
                    }
                    return computedHash;
                }
                /**
                 * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
                 * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
                 *
                 * _Available since v4.7._
                 */
                function multiProofVerify(
                    bytes32[] memory proof,
                    bool[] memory proofFlags,
                    bytes32 root,
                    bytes32[] memory leaves
                ) internal pure returns (bool) {
                    return processMultiProof(proof, proofFlags, leaves) == root;
                }
                /**
                 * @dev Calldata version of {multiProofVerify}
                 *
                 * _Available since v4.7._
                 */
                function multiProofVerifyCalldata(
                    bytes32[] calldata proof,
                    bool[] calldata proofFlags,
                    bytes32 root,
                    bytes32[] memory leaves
                ) internal pure returns (bool) {
                    return processMultiProofCalldata(proof, proofFlags, leaves) == root;
                }
                /**
                 * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
                 * consuming from one or the other at each step according to the instructions given by
                 * `proofFlags`.
                 *
                 * _Available since v4.7._
                 */
                function processMultiProof(
                    bytes32[] memory proof,
                    bool[] memory proofFlags,
                    bytes32[] memory leaves
                ) internal pure returns (bytes32 merkleRoot) {
                    // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
                    // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
                    // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
                    // the merkle tree.
                    uint256 leavesLen = leaves.length;
                    uint256 totalHashes = proofFlags.length;
                    // Check proof validity.
                    require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
                    // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
                    // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
                    bytes32[] memory hashes = new bytes32[](totalHashes);
                    uint256 leafPos = 0;
                    uint256 hashPos = 0;
                    uint256 proofPos = 0;
                    // At each step, we compute the next hash using two values:
                    // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
                    //   get the next hash.
                    // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
                    //   `proof` array.
                    for (uint256 i = 0; i < totalHashes; i++) {
                        bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
                        bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
                        hashes[i] = _hashPair(a, b);
                    }
                    if (totalHashes > 0) {
                        return hashes[totalHashes - 1];
                    } else if (leavesLen > 0) {
                        return leaves[0];
                    } else {
                        return proof[0];
                    }
                }
                /**
                 * @dev Calldata version of {processMultiProof}
                 *
                 * _Available since v4.7._
                 */
                function processMultiProofCalldata(
                    bytes32[] calldata proof,
                    bool[] calldata proofFlags,
                    bytes32[] memory leaves
                ) internal pure returns (bytes32 merkleRoot) {
                    // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
                    // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
                    // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
                    // the merkle tree.
                    uint256 leavesLen = leaves.length;
                    uint256 totalHashes = proofFlags.length;
                    // Check proof validity.
                    require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
                    // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
                    // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
                    bytes32[] memory hashes = new bytes32[](totalHashes);
                    uint256 leafPos = 0;
                    uint256 hashPos = 0;
                    uint256 proofPos = 0;
                    // At each step, we compute the next hash using two values:
                    // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
                    //   get the next hash.
                    // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
                    //   `proof` array.
                    for (uint256 i = 0; i < totalHashes; i++) {
                        bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
                        bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
                        hashes[i] = _hashPair(a, b);
                    }
                    if (totalHashes > 0) {
                        return hashes[totalHashes - 1];
                    } else if (leavesLen > 0) {
                        return leaves[0];
                    } else {
                        return proof[0];
                    }
                }
                function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
                    return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
                }
                function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
                    /// @solidity memory-safe-assembly
                    assembly {
                        mstore(0x00, a)
                        mstore(0x20, b)
                        value := keccak256(0x00, 0x40)
                    }
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev Contract module that helps prevent reentrant calls to a function.
             *
             * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
             * available, which can be applied to functions to make sure there are no nested
             * (reentrant) calls to them.
             *
             * Note that because there is a single `nonReentrant` guard, functions marked as
             * `nonReentrant` may not call one another. This can be worked around by making
             * those functions `private`, and then adding `external` `nonReentrant` entry
             * points to them.
             *
             * TIP: If you would like to learn more about reentrancy and alternative ways
             * to protect against it, check out our blog post
             * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
             */
            abstract contract ReentrancyGuard {
                // Booleans are more expensive than uint256 or any type that takes up a full
                // word because each write operation emits an extra SLOAD to first read the
                // slot's contents, replace the bits taken up by the boolean, and then write
                // back. This is the compiler's defense against contract upgrades and
                // pointer aliasing, and it cannot be disabled.
                // The values being non-zero value makes deployment a bit more expensive,
                // but in exchange the refund on every call to nonReentrant will be lower in
                // amount. Since refunds are capped to a percentage of the total
                // transaction's gas, it is best to keep them low in cases like this one, to
                // increase the likelihood of the full refund coming into effect.
                uint256 private constant _NOT_ENTERED = 1;
                uint256 private constant _ENTERED = 2;
                uint256 private _status;
                constructor() {
                    _status = _NOT_ENTERED;
                }
                /**
                 * @dev Prevents a contract from calling itself, directly or indirectly.
                 * Calling a `nonReentrant` function from another `nonReentrant`
                 * function is not supported. It is possible to prevent this from happening
                 * by making the `nonReentrant` function external, and making it call a
                 * `private` function that does the actual work.
                 */
                modifier nonReentrant() {
                    // On the first call to nonReentrant, _notEntered will be true
                    require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
                    // Any calls to nonReentrant after this point will fail
                    _status = _ENTERED;
                    _;
                    // By storing the original value once again, a refund is triggered (see
                    // https://eips.ethereum.org/EIPS/eip-2200)
                    _status = _NOT_ENTERED;
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev String operations.
             */
            library Strings {
                bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
                uint8 private constant _ADDRESS_LENGTH = 20;
                /**
                 * @dev Converts a `uint256` to its ASCII `string` decimal representation.
                 */
                function toString(uint256 value) internal pure returns (string memory) {
                    // Inspired by OraclizeAPI's implementation - MIT licence
                    // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
                    if (value == 0) {
                        return "0";
                    }
                    uint256 temp = value;
                    uint256 digits;
                    while (temp != 0) {
                        digits++;
                        temp /= 10;
                    }
                    bytes memory buffer = new bytes(digits);
                    while (value != 0) {
                        digits -= 1;
                        buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
                        value /= 10;
                    }
                    return string(buffer);
                }
                /**
                 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
                 */
                function toHexString(uint256 value) internal pure returns (string memory) {
                    if (value == 0) {
                        return "0x00";
                    }
                    uint256 temp = value;
                    uint256 length = 0;
                    while (temp != 0) {
                        length++;
                        temp >>= 8;
                    }
                    return toHexString(value, length);
                }
                /**
                 * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
                 */
                function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
                    bytes memory buffer = new bytes(2 * length + 2);
                    buffer[0] = "0";
                    buffer[1] = "x";
                    for (uint256 i = 2 * length + 1; i > 1; --i) {
                        buffer[i] = _HEX_SYMBOLS[value & 0xf];
                        value >>= 4;
                    }
                    require(value == 0, "Strings: hex length insufficient");
                    return string(buffer);
                }
                /**
                 * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
                 */
                function toHexString(address addr) internal pure returns (string memory) {
                    return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
                }
            }
            // SPDX-License-Identifier: MIT
            // ERC721A Contracts v4.2.0
            // Creator: Chiru Labs
            pragma solidity ^0.8.4;
            import './IERC721A.sol';
            /**
             * @dev Interface of ERC721 token receiver.
             */
            interface ERC721A__IERC721Receiver {
                function onERC721Received(
                    address operator,
                    address from,
                    uint256 tokenId,
                    bytes calldata data
                ) external returns (bytes4);
            }
            /**
             * @title ERC721A
             *
             * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
             * Non-Fungible Token Standard, including the Metadata extension.
             * Optimized for lower gas during batch mints.
             *
             * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
             * starting from `_startTokenId()`.
             *
             * Assumptions:
             *
             * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
             * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
             */
            contract ERC721A is IERC721A {
                // Reference type for token approval.
                struct TokenApprovalRef {
                    address value;
                }
                // =============================================================
                //                           CONSTANTS
                // =============================================================
                // Mask of an entry in packed address data.
                uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
                // The bit position of `numberMinted` in packed address data.
                uint256 private constant _BITPOS_NUMBER_MINTED = 64;
                // The bit position of `numberBurned` in packed address data.
                uint256 private constant _BITPOS_NUMBER_BURNED = 128;
                // The bit position of `aux` in packed address data.
                uint256 private constant _BITPOS_AUX = 192;
                // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
                uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
                // The bit position of `startTimestamp` in packed ownership.
                uint256 private constant _BITPOS_START_TIMESTAMP = 160;
                // The bit mask of the `burned` bit in packed ownership.
                uint256 private constant _BITMASK_BURNED = 1 << 224;
                // The bit position of the `nextInitialized` bit in packed ownership.
                uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
                // The bit mask of the `nextInitialized` bit in packed ownership.
                uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
                // The bit position of `extraData` in packed ownership.
                uint256 private constant _BITPOS_EXTRA_DATA = 232;
                // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
                uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
                // The mask of the lower 160 bits for addresses.
                uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
                // The maximum `quantity` that can be minted with {_mintERC2309}.
                // This limit is to prevent overflows on the address data entries.
                // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
                // is required to cause an overflow, which is unrealistic.
                uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
                // The `Transfer` event signature is given by:
                // `keccak256(bytes("Transfer(address,address,uint256)"))`.
                bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
                    0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
                // =============================================================
                //                            STORAGE
                // =============================================================
                // The next token ID to be minted.
                uint256 private _currentIndex;
                // The number of tokens burned.
                uint256 private _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 {_packedOwnershipOf} implementation for details.
                //
                // Bits Layout:
                // - [0..159]   `addr`
                // - [160..223] `startTimestamp`
                // - [224]      `burned`
                // - [225]      `nextInitialized`
                // - [232..255] `extraData`
                mapping(uint256 => uint256) private _packedOwnerships;
                // Mapping owner address to address data.
                //
                // Bits Layout:
                // - [0..63]    `balance`
                // - [64..127]  `numberMinted`
                // - [128..191] `numberBurned`
                // - [192..255] `aux`
                mapping(address => uint256) private _packedAddressData;
                // Mapping from token ID to approved address.
                mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
                // Mapping from owner to operator approvals
                mapping(address => mapping(address => bool)) private _operatorApprovals;
                // =============================================================
                //                          CONSTRUCTOR
                // =============================================================
                constructor(string memory name_, string memory symbol_) {
                    _name = name_;
                    _symbol = symbol_;
                    _currentIndex = _startTokenId();
                }
                // =============================================================
                //                   TOKEN COUNTING OPERATIONS
                // =============================================================
                /**
                 * @dev Returns the starting token ID.
                 * To change the starting token ID, please override this function.
                 */
                function _startTokenId() internal view virtual returns (uint256) {
                    return 0;
                }
                /**
                 * @dev Returns the next token ID to be minted.
                 */
                function _nextTokenId() internal view virtual returns (uint256) {
                    return _currentIndex;
                }
                /**
                 * @dev Returns the total number of tokens in existence.
                 * Burned tokens will reduce the count.
                 * To get the total number of tokens minted, please see {_totalMinted}.
                 */
                function totalSupply() public view virtual override returns (uint256) {
                    // Counter underflow is impossible as _burnCounter cannot be incremented
                    // more than `_currentIndex - _startTokenId()` times.
                    unchecked {
                        return _currentIndex - _burnCounter - _startTokenId();
                    }
                }
                /**
                 * @dev Returns the total amount of tokens minted in the contract.
                 */
                function _totalMinted() internal view virtual returns (uint256) {
                    // Counter underflow is impossible as `_currentIndex` does not decrement,
                    // and it is initialized to `_startTokenId()`.
                    unchecked {
                        return _currentIndex - _startTokenId();
                    }
                }
                /**
                 * @dev Returns the total number of tokens burned.
                 */
                function _totalBurned() internal view virtual returns (uint256) {
                    return _burnCounter;
                }
                // =============================================================
                //                    ADDRESS DATA OPERATIONS
                // =============================================================
                /**
                 * @dev Returns the number of tokens in `owner`'s account.
                 */
                function balanceOf(address owner) public view virtual override returns (uint256) {
                    if (owner == address(0)) revert BalanceQueryForZeroAddress();
                    return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
                }
                /**
                 * Returns the number of tokens minted by `owner`.
                 */
                function _numberMinted(address owner) internal view returns (uint256) {
                    return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
                }
                /**
                 * Returns the number of tokens burned by or on behalf of `owner`.
                 */
                function _numberBurned(address owner) internal view returns (uint256) {
                    return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
                }
                /**
                 * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
                 */
                function _getAux(address owner) internal view returns (uint64) {
                    return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
                }
                /**
                 * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
                 * If there are multiple variables, please pack them into a uint64.
                 */
                function _setAux(address owner, uint64 aux) internal virtual {
                    uint256 packed = _packedAddressData[owner];
                    uint256 auxCasted;
                    // Cast `aux` with assembly to avoid redundant masking.
                    assembly {
                        auxCasted := aux
                    }
                    packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
                    _packedAddressData[owner] = packed;
                }
                // =============================================================
                //                            IERC165
                // =============================================================
                /**
                 * @dev Returns true if this contract implements the interface defined by
                 * `interfaceId`. See the corresponding
                 * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
                 * to learn more about how these ids are created.
                 *
                 * This function call must use less than 30000 gas.
                 */
                function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
                    // The interface IDs are constants representing the first 4 bytes
                    // of the XOR of all function selectors in the interface.
                    // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
                    // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
                    return
                        interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
                        interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
                        interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
                }
                // =============================================================
                //                        IERC721Metadata
                // =============================================================
                /**
                 * @dev Returns the token collection name.
                 */
                function name() public view virtual override returns (string memory) {
                    return _name;
                }
                /**
                 * @dev Returns the token collection symbol.
                 */
                function symbol() public view virtual override returns (string memory) {
                    return _symbol;
                }
                /**
                 * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
                 */
                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, _toString(tokenId))) : '';
                }
                /**
                 * @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, it can be overridden in child contracts.
                 */
                function _baseURI() internal view virtual returns (string memory) {
                    return '';
                }
                // =============================================================
                //                     OWNERSHIPS OPERATIONS
                // =============================================================
                /**
                 * @dev Returns the owner of the `tokenId` token.
                 *
                 * Requirements:
                 *
                 * - `tokenId` must exist.
                 */
                function ownerOf(uint256 tokenId) public view virtual override returns (address) {
                    return address(uint160(_packedOwnershipOf(tokenId)));
                }
                /**
                 * @dev Gas spent here starts off proportional to the maximum mint batch size.
                 * It gradually moves to O(1) as tokens get transferred around over time.
                 */
                function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
                    return _unpackedOwnership(_packedOwnershipOf(tokenId));
                }
                /**
                 * @dev Returns the unpacked `TokenOwnership` struct at `index`.
                 */
                function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
                    return _unpackedOwnership(_packedOwnerships[index]);
                }
                /**
                 * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
                 */
                function _initializeOwnershipAt(uint256 index) internal virtual {
                    if (_packedOwnerships[index] == 0) {
                        _packedOwnerships[index] = _packedOwnershipOf(index);
                    }
                }
                /**
                 * Returns the packed ownership data of `tokenId`.
                 */
                function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
                    uint256 curr = tokenId;
                    unchecked {
                        if (_startTokenId() <= curr)
                            if (curr < _currentIndex) {
                                uint256 packed = _packedOwnerships[curr];
                                // If not burned.
                                if (packed & _BITMASK_BURNED == 0) {
                                    // Invariant:
                                    // There will always be an initialized ownership slot
                                    // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                                    // before an unintialized ownership slot
                                    // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                                    // Hence, `curr` will not underflow.
                                    //
                                    // We can directly compare the packed value.
                                    // If the address is zero, packed will be zero.
                                    while (packed == 0) {
                                        packed = _packedOwnerships[--curr];
                                    }
                                    return packed;
                                }
                            }
                    }
                    revert OwnerQueryForNonexistentToken();
                }
                /**
                 * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
                 */
                function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
                    ownership.addr = address(uint160(packed));
                    ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
                    ownership.burned = packed & _BITMASK_BURNED != 0;
                    ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
                }
                /**
                 * @dev Packs ownership data into a single uint256.
                 */
                function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
                    assembly {
                        // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
                        owner := and(owner, _BITMASK_ADDRESS)
                        // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
                        result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
                    }
                }
                /**
                 * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
                 */
                function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
                    // For branchless setting of the `nextInitialized` flag.
                    assembly {
                        // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
                        result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
                    }
                }
                // =============================================================
                //                      APPROVAL OPERATIONS
                // =============================================================
                /**
                 * @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) public virtual override {
                    address owner = ownerOf(tokenId);
                    if (_msgSenderERC721A() != owner)
                        if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                            revert ApprovalCallerNotOwnerNorApproved();
                        }
                    _tokenApprovals[tokenId].value = to;
                    emit Approval(owner, to, tokenId);
                }
                /**
                 * @dev Returns the account approved for `tokenId` token.
                 *
                 * Requirements:
                 *
                 * - `tokenId` must exist.
                 */
                function getApproved(uint256 tokenId) public view virtual override returns (address) {
                    if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
                    return _tokenApprovals[tokenId].value;
                }
                /**
                 * @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) public virtual override {
                    if (operator == _msgSenderERC721A()) revert ApproveToCaller();
                    _operatorApprovals[_msgSenderERC721A()][operator] = approved;
                    emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
                }
                /**
                 * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
                 *
                 * See {setApprovalForAll}.
                 */
                function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
                    return _operatorApprovals[owner][operator];
                }
                /**
                 * @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. See {_mint}.
                 */
                function _exists(uint256 tokenId) internal view virtual returns (bool) {
                    return
                        _startTokenId() <= tokenId &&
                        tokenId < _currentIndex && // If within bounds,
                        _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
                }
                /**
                 * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
                 */
                function _isSenderApprovedOrOwner(
                    address approvedAddress,
                    address owner,
                    address msgSender
                ) private pure returns (bool result) {
                    assembly {
                        // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
                        owner := and(owner, _BITMASK_ADDRESS)
                        // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
                        msgSender := and(msgSender, _BITMASK_ADDRESS)
                        // `msgSender == owner || msgSender == approvedAddress`.
                        result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
                    }
                }
                /**
                 * @dev Returns the storage slot and value for the approved address of `tokenId`.
                 */
                function _getApprovedSlotAndAddress(uint256 tokenId)
                    private
                    view
                    returns (uint256 approvedAddressSlot, address approvedAddress)
                {
                    TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
                    // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
                    assembly {
                        approvedAddressSlot := tokenApproval.slot
                        approvedAddress := sload(approvedAddressSlot)
                    }
                }
                // =============================================================
                //                      TRANSFER OPERATIONS
                // =============================================================
                /**
                 * @dev Transfers `tokenId` from `from` to `to`.
                 *
                 * 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
                ) public virtual override {
                    uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
                    if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
                    (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
                    // The nested ifs save around 20+ gas over a compound boolean condition.
                    if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                        if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
                    if (to == address(0)) revert TransferToZeroAddress();
                    _beforeTokenTransfers(from, to, tokenId, 1);
                    // Clear approvals from the previous owner.
                    assembly {
                        if approvedAddress {
                            // This is equivalent to `delete _tokenApprovals[tokenId]`.
                            sstore(approvedAddressSlot, 0)
                        }
                    }
                    // 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**256.
                    unchecked {
                        // We can directly increment and decrement the balances.
                        --_packedAddressData[from]; // Updates: `balance -= 1`.
                        ++_packedAddressData[to]; // Updates: `balance += 1`.
                        // Updates:
                        // - `address` to the next owner.
                        // - `startTimestamp` to the timestamp of transfering.
                        // - `burned` to `false`.
                        // - `nextInitialized` to `true`.
                        _packedOwnerships[tokenId] = _packOwnershipData(
                            to,
                            _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
                        );
                        // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
                        if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                            uint256 nextTokenId = tokenId + 1;
                            // If the next slot's address is zero and not burned (i.e. packed value is zero).
                            if (_packedOwnerships[nextTokenId] == 0) {
                                // If the next slot is within bounds.
                                if (nextTokenId != _currentIndex) {
                                    // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                                    _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                                }
                            }
                        }
                    }
                    emit Transfer(from, to, tokenId);
                    _afterTokenTransfers(from, to, tokenId, 1);
                }
                /**
                 * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
                 */
                function safeTransferFrom(
                    address from,
                    address to,
                    uint256 tokenId
                ) public virtual override {
                    safeTransferFrom(from, to, tokenId, '');
                }
                /**
                 * @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 memory _data
                ) public virtual override {
                    transferFrom(from, to, tokenId);
                    if (to.code.length != 0)
                        if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                            revert TransferToNonERC721ReceiverImplementer();
                        }
                }
                /**
                 * @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 {}
                /**
                 * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
                 *
                 * `from` - Previous owner of the given token ID.
                 * `to` - Target address that will receive the token.
                 * `tokenId` - Token ID to be transferred.
                 * `_data` - Optional data to send along with the call.
                 *
                 * Returns whether the call correctly returned the expected magic value.
                 */
                function _checkContractOnERC721Received(
                    address from,
                    address to,
                    uint256 tokenId,
                    bytes memory _data
                ) private returns (bool) {
                    try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
                        bytes4 retval
                    ) {
                        return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
                    } catch (bytes memory reason) {
                        if (reason.length == 0) {
                            revert TransferToNonERC721ReceiverImplementer();
                        } else {
                            assembly {
                                revert(add(32, reason), mload(reason))
                            }
                        }
                    }
                }
                // =============================================================
                //                        MINT OPERATIONS
                // =============================================================
                /**
                 * @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 for each mint.
                 */
                function _mint(address to, uint256 quantity) internal virtual {
                    uint256 startTokenId = _currentIndex;
                    if (quantity == 0) revert MintZeroQuantity();
                    _beforeTokenTransfers(address(0), to, startTokenId, quantity);
                    // Overflows are incredibly unrealistic.
                    // `balance` and `numberMinted` have a maximum limit of 2**64.
                    // `tokenId` has a maximum limit of 2**256.
                    unchecked {
                        // Updates:
                        // - `balance += quantity`.
                        // - `numberMinted += quantity`.
                        //
                        // We can directly add to the `balance` and `numberMinted`.
                        _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
                        // Updates:
                        // - `address` to the owner.
                        // - `startTimestamp` to the timestamp of minting.
                        // - `burned` to `false`.
                        // - `nextInitialized` to `quantity == 1`.
                        _packedOwnerships[startTokenId] = _packOwnershipData(
                            to,
                            _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
                        );
                        uint256 toMasked;
                        uint256 end = startTokenId + quantity;
                        // Use assembly to loop and emit the `Transfer` event for gas savings.
                        assembly {
                            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                            toMasked := and(to, _BITMASK_ADDRESS)
                            // Emit the `Transfer` event.
                            log4(
                                0, // Start of data (0, since no data).
                                0, // End of data (0, since no data).
                                _TRANSFER_EVENT_SIGNATURE, // Signature.
                                0, // `address(0)`.
                                toMasked, // `to`.
                                startTokenId // `tokenId`.
                            )
                            for {
                                let tokenId := add(startTokenId, 1)
                            } iszero(eq(tokenId, end)) {
                                tokenId := add(tokenId, 1)
                            } {
                                // Emit the `Transfer` event. Similar to above.
                                log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                            }
                        }
                        if (toMasked == 0) revert MintToZeroAddress();
                        _currentIndex = end;
                    }
                    _afterTokenTransfers(address(0), to, startTokenId, quantity);
                }
                /**
                 * @dev Mints `quantity` tokens and transfers them to `to`.
                 *
                 * This function is intended for efficient minting only during contract creation.
                 *
                 * It emits only one {ConsecutiveTransfer} as defined in
                 * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
                 * instead of a sequence of {Transfer} event(s).
                 *
                 * Calling this function outside of contract creation WILL make your contract
                 * non-compliant with the ERC721 standard.
                 * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
                 * {ConsecutiveTransfer} event is only permissible during contract creation.
                 *
                 * Requirements:
                 *
                 * - `to` cannot be the zero address.
                 * - `quantity` must be greater than 0.
                 *
                 * Emits a {ConsecutiveTransfer} event.
                 */
                function _mintERC2309(address to, uint256 quantity) internal virtual {
                    uint256 startTokenId = _currentIndex;
                    if (to == address(0)) revert MintToZeroAddress();
                    if (quantity == 0) revert MintZeroQuantity();
                    if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
                    _beforeTokenTransfers(address(0), to, startTokenId, quantity);
                    // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
                    unchecked {
                        // Updates:
                        // - `balance += quantity`.
                        // - `numberMinted += quantity`.
                        //
                        // We can directly add to the `balance` and `numberMinted`.
                        _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
                        // Updates:
                        // - `address` to the owner.
                        // - `startTimestamp` to the timestamp of minting.
                        // - `burned` to `false`.
                        // - `nextInitialized` to `quantity == 1`.
                        _packedOwnerships[startTokenId] = _packOwnershipData(
                            to,
                            _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
                        );
                        emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
                        _currentIndex = startTokenId + quantity;
                    }
                    _afterTokenTransfers(address(0), to, startTokenId, 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.
                 *
                 * See {_mint}.
                 *
                 * Emits a {Transfer} event for each mint.
                 */
                function _safeMint(
                    address to,
                    uint256 quantity,
                    bytes memory _data
                ) internal virtual {
                    _mint(to, quantity);
                    unchecked {
                        if (to.code.length != 0) {
                            uint256 end = _currentIndex;
                            uint256 index = end - quantity;
                            do {
                                if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                                    revert TransferToNonERC721ReceiverImplementer();
                                }
                            } while (index < end);
                            // Reentrancy protection.
                            if (_currentIndex != end) revert();
                        }
                    }
                }
                /**
                 * @dev Equivalent to `_safeMint(to, quantity, '')`.
                 */
                function _safeMint(address to, uint256 quantity) internal virtual {
                    _safeMint(to, quantity, '');
                }
                // =============================================================
                //                        BURN OPERATIONS
                // =============================================================
                /**
                 * @dev Equivalent to `_burn(tokenId, false)`.
                 */
                function _burn(uint256 tokenId) internal virtual {
                    _burn(tokenId, false);
                }
                /**
                 * @dev Destroys `tokenId`.
                 * The approval is cleared when the token is burned.
                 *
                 * Requirements:
                 *
                 * - `tokenId` must exist.
                 *
                 * Emits a {Transfer} event.
                 */
                function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
                    uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
                    address from = address(uint160(prevOwnershipPacked));
                    (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
                    if (approvalCheck) {
                        // The nested ifs save around 20+ gas over a compound boolean condition.
                        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
                    }
                    _beforeTokenTransfers(from, address(0), tokenId, 1);
                    // Clear approvals from the previous owner.
                    assembly {
                        if approvedAddress {
                            // This is equivalent to `delete _tokenApprovals[tokenId]`.
                            sstore(approvedAddressSlot, 0)
                        }
                    }
                    // 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**256.
                    unchecked {
                        // Updates:
                        // - `balance -= 1`.
                        // - `numberBurned += 1`.
                        //
                        // We can directly decrement the balance, and increment the number burned.
                        // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
                        _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
                        // Updates:
                        // - `address` to the last owner.
                        // - `startTimestamp` to the timestamp of burning.
                        // - `burned` to `true`.
                        // - `nextInitialized` to `true`.
                        _packedOwnerships[tokenId] = _packOwnershipData(
                            from,
                            (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
                        );
                        // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
                        if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                            uint256 nextTokenId = tokenId + 1;
                            // If the next slot's address is zero and not burned (i.e. packed value is zero).
                            if (_packedOwnerships[nextTokenId] == 0) {
                                // If the next slot is within bounds.
                                if (nextTokenId != _currentIndex) {
                                    // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                                    _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                                }
                            }
                        }
                    }
                    emit Transfer(from, address(0), tokenId);
                    _afterTokenTransfers(from, address(0), tokenId, 1);
                    // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
                    unchecked {
                        _burnCounter++;
                    }
                }
                // =============================================================
                //                     EXTRA DATA OPERATIONS
                // =============================================================
                /**
                 * @dev Directly sets the extra data for the ownership data `index`.
                 */
                function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
                    uint256 packed = _packedOwnerships[index];
                    if (packed == 0) revert OwnershipNotInitializedForExtraData();
                    uint256 extraDataCasted;
                    // Cast `extraData` with assembly to avoid redundant masking.
                    assembly {
                        extraDataCasted := extraData
                    }
                    packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
                    _packedOwnerships[index] = packed;
                }
                /**
                 * @dev Called during each token transfer to set the 24bit `extraData` field.
                 * Intended to be overridden by the cosumer contract.
                 *
                 * `previousExtraData` - the value of `extraData` before transfer.
                 *
                 * 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 _extraData(
                    address from,
                    address to,
                    uint24 previousExtraData
                ) internal view virtual returns (uint24) {}
                /**
                 * @dev Returns the next extra data for the packed ownership data.
                 * The returned result is shifted into position.
                 */
                function _nextExtraData(
                    address from,
                    address to,
                    uint256 prevOwnershipPacked
                ) private view returns (uint256) {
                    uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
                    return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
                }
                // =============================================================
                //                       OTHER OPERATIONS
                // =============================================================
                /**
                 * @dev Returns the message sender (defaults to `msg.sender`).
                 *
                 * If you are writing GSN compatible contracts, you need to override this function.
                 */
                function _msgSenderERC721A() internal view virtual returns (address) {
                    return msg.sender;
                }
                /**
                 * @dev Converts a uint256 to its ASCII string decimal representation.
                 */
                function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
                    assembly {
                        // The maximum value of a uint256 contains 78 digits (1 byte per digit),
                        // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
                        // We will need 1 32-byte word to store the length,
                        // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
                        ptr := add(mload(0x40), 128)
                        // Update the free memory pointer to allocate.
                        mstore(0x40, ptr)
                        // Cache the end of the memory to calculate the length later.
                        let end := ptr
                        // We write the string from the rightmost digit to the leftmost digit.
                        // The following is essentially a do-while loop that also handles the zero case.
                        // Costs a bit more than early returning for the zero case,
                        // but cheaper in terms of deployment and overall runtime costs.
                        for {
                            // Initialize and perform the first pass without check.
                            let temp := value
                            // Move the pointer 1 byte leftwards to point to an empty character slot.
                            ptr := sub(ptr, 1)
                            // Write the character to the pointer.
                            // The ASCII index of the '0' character is 48.
                            mstore8(ptr, add(48, mod(temp, 10)))
                            temp := div(temp, 10)
                        } temp {
                            // Keep dividing `temp` until zero.
                            temp := div(temp, 10)
                        } {
                            // Body of the for loop.
                            ptr := sub(ptr, 1)
                            mstore8(ptr, add(48, mod(temp, 10)))
                        }
                        let length := sub(end, ptr)
                        // Move the pointer 32 bytes leftwards to make room for the length.
                        ptr := sub(ptr, 32)
                        // Store the length.
                        mstore(ptr, length)
                    }
                }
            }
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
            pragma solidity ^0.8.0;
            /**
             * @dev Provides information about the current execution context, including the
             * sender of the transaction and its data. While these are generally available
             * via msg.sender and msg.data, they should not be accessed in such a direct
             * manner, since when dealing with meta-transactions the account sending and
             * paying for execution may not be the actual sender (as far as an application
             * is concerned).
             *
             * This contract is only required for intermediate, library-like contracts.
             */
            abstract contract Context {
                function _msgSender() internal view virtual returns (address) {
                    return msg.sender;
                }
                function _msgData() internal view virtual returns (bytes calldata) {
                    return msg.data;
                }
            }
            // SPDX-License-Identifier: MIT
            // ERC721A Contracts v4.2.0
            // Creator: Chiru Labs
            pragma solidity ^0.8.4;
            /**
             * @dev Interface of ERC721A.
             */
            interface IERC721A {
                /**
                 * The caller must own the token or be an approved operator.
                 */
                error ApprovalCallerNotOwnerNorApproved();
                /**
                 * The token does not exist.
                 */
                error ApprovalQueryForNonexistentToken();
                /**
                 * The caller cannot approve to their own address.
                 */
                error ApproveToCaller();
                /**
                 * Cannot query the balance for the zero address.
                 */
                error BalanceQueryForZeroAddress();
                /**
                 * Cannot mint to the zero address.
                 */
                error MintToZeroAddress();
                /**
                 * The quantity of tokens minted must be more than zero.
                 */
                error MintZeroQuantity();
                /**
                 * The token does not exist.
                 */
                error OwnerQueryForNonexistentToken();
                /**
                 * The caller must own the token or be an approved operator.
                 */
                error TransferCallerNotOwnerNorApproved();
                /**
                 * The token must be owned by `from`.
                 */
                error TransferFromIncorrectOwner();
                /**
                 * Cannot safely transfer to a contract that does not implement the
                 * ERC721Receiver interface.
                 */
                error TransferToNonERC721ReceiverImplementer();
                /**
                 * Cannot transfer to the zero address.
                 */
                error TransferToZeroAddress();
                /**
                 * The token does not exist.
                 */
                error URIQueryForNonexistentToken();
                /**
                 * The `quantity` minted with ERC2309 exceeds the safety limit.
                 */
                error MintERC2309QuantityExceedsLimit();
                /**
                 * The `extraData` cannot be set on an unintialized ownership slot.
                 */
                error OwnershipNotInitializedForExtraData();
                // =============================================================
                //                            STRUCTS
                // =============================================================
                struct TokenOwnership {
                    // The address of the owner.
                    address addr;
                    // Stores the start time of ownership with minimal overhead for tokenomics.
                    uint64 startTimestamp;
                    // Whether the token has been burned.
                    bool burned;
                    // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
                    uint24 extraData;
                }
                // =============================================================
                //                         TOKEN COUNTERS
                // =============================================================
                /**
                 * @dev Returns the total number of tokens in existence.
                 * Burned tokens will reduce the count.
                 * To get the total number of tokens minted, please see {_totalMinted}.
                 */
                function totalSupply() external view returns (uint256);
                // =============================================================
                //                            IERC165
                // =============================================================
                /**
                 * @dev Returns true if this contract implements the interface defined by
                 * `interfaceId`. See the corresponding
                 * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
                 * to learn more about how these ids are created.
                 *
                 * This function call must use less than 30000 gas.
                 */
                function supportsInterface(bytes4 interfaceId) external view returns (bool);
                // =============================================================
                //                            IERC721
                // =============================================================
                /**
                 * @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,
                    bytes calldata data
                ) external;
                /**
                 * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
                 */
                function safeTransferFrom(
                    address from,
                    address to,
                    uint256 tokenId
                ) external;
                /**
                 * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token.
                 *
                 * Requirements:
                 *
                 * - `tokenId` must exist.
                 */
                function getApproved(uint256 tokenId) external view returns (address operator);
                /**
                 * @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);
                // =============================================================
                //                        IERC721Metadata
                // =============================================================
                /**
                 * @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);
                // =============================================================
                //                           IERC2309
                // =============================================================
                /**
                 * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
                 * (inclusive) is transferred from `from` to `to`, as defined in the
                 * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
                 *
                 * See {_mintERC2309} for more details.
                 */
                event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
            }