Mumbai Testnet

Contract

0xb43a9E1388CE8cfcc82827a47Df69b89f13CDd6A

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
0x60c06040254423552022-03-09 11:09:43750 days ago1646824183IN
 Create: Marketplace
0 MATIC0.033300286.21000002

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Marketplace

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 29 : Marketplace.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

// Interface
import { IMarketplace } from "../interfaces/marketplace/IMarketplace.sol";

// Tokens
import "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155ReceiverUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";

// Access Control + security
import "@openzeppelin/contracts-upgradeable/access/AccessControlEnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";

// Meta transactions
import "../openzeppelin-presets/metatx/ERC2771ContextUpgradeable.sol";

// Royalties
import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol";

// Utils
import "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol";
import "../lib/CurrencyTransferLib.sol";
import "../lib/FeeType.sol";

// Thirdweb top-level
import "../interfaces/ITWFee.sol";

contract Marketplace is
    Initializable,
    IMarketplace,
    ReentrancyGuardUpgradeable,
    ERC2771ContextUpgradeable,
    MulticallUpgradeable,
    AccessControlEnumerableUpgradeable,
    IERC721ReceiverUpgradeable,
    IERC1155ReceiverUpgradeable
{
    bytes32 private constant MODULE_TYPE = bytes32("Marketplace");
    uint256 private constant VERSION = 1;

    /// @dev Access control: aditional roles.
    bytes32 private constant LISTER_ROLE = keccak256("LISTER_ROLE");
    bytes32 private constant ASSET_ROLE = keccak256("ASSET_ROLE");

    /// @dev The address interpreted as native token of the chain.
    address private constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;

    /// @dev The address of the native token wrapper contract.
    address private immutable nativeTokenWrapper;

    ITWFee public immutable thirdwebFee;

    /// @dev Total number of listings on market.
    uint256 public totalListings;

    /// @dev Collection level metadata.
    string public contractURI;

    /// @dev The address of which the marketplace fee goes to.
    address private platformFeeRecipient;

    /// @dev The max bps of the contract. So, 10_000 == 100 %
    uint64 public constant MAX_BPS = 10_000;

    /// @dev The marketplace fee.
    uint64 private platformFeeBps;

    /// @dev The minimum amount of time left in an auction after a new bid is created. Default: 15 minutes.
    uint64 public timeBuffer;

    /// @dev The minimum % increase required from the previous winning bid. Default: 5%.
    uint64 public bidBufferBps;

    /// @dev listingId => listing info.
    mapping(uint256 => Listing) public listings;

    /// @dev listingId => address => info related to offers on a direct listing.
    mapping(uint256 => mapping(address => Offer)) public offers;

    /// @dev listingId => current winning bid in an auction.
    mapping(uint256 => Offer) public winningBid;

    /// @dev Checks whether caller is a listing creator.
    modifier onlyListingCreator(uint256 _listingId) {
        require(listings[_listingId].tokenOwner == _msgSender(), "caller != listing owner");
        _;
    }

    /// @dev Checks whether a listing exists.
    modifier onlyExistingListing(uint256 _listingId) {
        require(listings[_listingId].assetContract != address(0), "listing DNE");
        _;
    }

    constructor(address _nativeTokenWrapper, address _thirdwebFee) initializer {
        thirdwebFee = ITWFee(_thirdwebFee);
        nativeTokenWrapper = _nativeTokenWrapper;
    }

    /// @dev Initiliazes the contract, like a constructor.
    function initialize(
        address _defaultAdmin,
        string memory _contractURI,
        address[] memory _trustedForwarders,
        address _platformFeeRecipient,
        uint256 _platformFeeBps
    ) external initializer {
        // Initialize inherited contracts, most base-like -> most derived.
        __ReentrancyGuard_init();
        __ERC2771Context_init(_trustedForwarders);

        timeBuffer = 15 minutes;
        bidBufferBps = 500;

        // Initialize this contract's state.
        contractURI = _contractURI;
        platformFeeBps = uint64(_platformFeeBps);
        platformFeeRecipient = _platformFeeRecipient;

        _setupRole(DEFAULT_ADMIN_ROLE, _defaultAdmin);
        _setupRole(LISTER_ROLE, address(0));
        _setupRole(ASSET_ROLE, address(0));
    }

    /// @dev Returns the module type of the contract.
    function contractType() external pure returns (bytes32) {
        return MODULE_TYPE;
    }

    /// @dev Returns the version of the contract.
    function contractVersion() external pure returns (uint8) {
        return uint8(VERSION);
    }

    //  =====   External functions  =====

    /// @dev Lets a token owner list tokens for sale: Direct Listing or Auction.
    function createListing(ListingParameters memory _params) external override {
        require(_params.secondsUntilEndTime > 0, "end time must > 0.");

        // Get values to populate `Listing`.
        uint256 listingId = getNextListingId();
        address tokenOwner = _msgSender();
        TokenType tokenTypeOfListing = getTokenType(_params.assetContract);
        uint256 tokenAmountToList = getSafeQuantity(tokenTypeOfListing, _params.quantityToList);

        require(tokenAmountToList > 0, "listing invalid quantity.");
        require(hasRole(LISTER_ROLE, address(0)) || hasRole(LISTER_ROLE, _msgSender()), "does not have LISTER_ROLE.");
        require(hasRole(ASSET_ROLE, address(0)) || hasRole(ASSET_ROLE, _params.assetContract), "unapproved asset.");

        validateOwnershipAndApproval(
            tokenOwner,
            _params.assetContract,
            _params.tokenId,
            tokenAmountToList,
            tokenTypeOfListing
        );

        uint256 startTime = _params.startTime < block.timestamp ? block.timestamp : _params.startTime;
        Listing memory newListing = Listing({
            listingId: listingId,
            tokenOwner: tokenOwner,
            assetContract: _params.assetContract,
            tokenId: _params.tokenId,
            startTime: startTime,
            endTime: startTime + _params.secondsUntilEndTime,
            quantity: tokenAmountToList,
            currency: _params.currencyToAccept,
            reservePricePerToken: _params.reservePricePerToken,
            buyoutPricePerToken: _params.buyoutPricePerToken,
            tokenType: tokenTypeOfListing,
            listingType: _params.listingType
        });

        listings[listingId] = newListing;

        // Tokens listed for sale in an auction are escrowed in Marketplace.
        if (newListing.listingType == ListingType.Auction) {
            require(
                newListing.buyoutPricePerToken >= newListing.reservePricePerToken,
                "reserve price exceeds buyout price."
            );
            transferListingTokens(tokenOwner, address(this), tokenAmountToList, newListing);
        }

        emit ListingAdded(listingId, _params.assetContract, tokenOwner, newListing);
    }

    /// @dev Lets a listing's creator edit the listing's parameters.
    function updateListing(
        uint256 _listingId,
        uint256 _quantityToList,
        uint256 _reservePricePerToken,
        uint256 _buyoutPricePerToken,
        address _currencyToAccept,
        uint256 _startTime,
        uint256 _secondsUntilEndTime
    ) external override onlyListingCreator(_listingId) {
        Listing memory targetListing = listings[_listingId];
        uint256 safeNewQuantity = getSafeQuantity(targetListing.tokenType, _quantityToList);
        bool isAuction = targetListing.listingType == ListingType.Auction;

        require(safeNewQuantity != 0, "cannot update to 0 quantity");

        // Can only edit auction listing before it starts.
        if (isAuction) {
            require(block.timestamp < targetListing.startTime, "auction already started.");
            require(_buyoutPricePerToken >= _reservePricePerToken, "reserve price exceeds buyout price.");
        }

        uint256 newStartTime = _startTime == 0 ? targetListing.startTime : _startTime;
        listings[_listingId] = Listing({
            listingId: _listingId,
            tokenOwner: _msgSender(),
            assetContract: targetListing.assetContract,
            tokenId: targetListing.tokenId,
            startTime: newStartTime,
            endTime: _secondsUntilEndTime == 0 ? targetListing.endTime : newStartTime + _secondsUntilEndTime,
            quantity: safeNewQuantity,
            currency: _currencyToAccept,
            reservePricePerToken: _reservePricePerToken,
            buyoutPricePerToken: _buyoutPricePerToken,
            tokenType: targetListing.tokenType,
            listingType: targetListing.listingType
        });

        // Must validate ownership and approval of the new quantity of tokens for diret listing.
        if (targetListing.quantity != safeNewQuantity) {
            // Transfer all escrowed tokens back to the lister, to be reflected in the lister's
            // balance for the upcoming ownership and approval check.
            if (isAuction) {
                transferListingTokens(address(this), targetListing.tokenOwner, targetListing.quantity, targetListing);
            }

            validateOwnershipAndApproval(
                targetListing.tokenOwner,
                targetListing.assetContract,
                targetListing.tokenId,
                safeNewQuantity,
                targetListing.tokenType
            );

            // Escrow the new quantity of tokens to list in the auction.
            if (isAuction) {
                transferListingTokens(targetListing.tokenOwner, address(this), safeNewQuantity, targetListing);
            }
        }

        emit ListingUpdated(_listingId, targetListing.tokenOwner);
    }

    /// @dev Lets a direct listing creator cancel their listing.
    function cancelDirectListing(uint256 _listingId) external onlyListingCreator(_listingId) {
        Listing memory targetListing = listings[_listingId];

        require(targetListing.listingType == ListingType.Direct, "not direct listing");

        delete listings[_listingId];

        emit ListingRemoved(_listingId, targetListing.tokenOwner);
    }

    /// @dev Lets an account buy a given quantity of tokens from a listing.
    function buy(
        uint256 _listingId,
        address _buyFor,
        uint256 _quantityToBuy,
        address _currency,
        uint256 _totalPrice
    ) external payable override nonReentrant onlyExistingListing(_listingId) {
        Listing memory targetListing = listings[_listingId];
        address payer = _msgSender();

        // Check whether the settled total price and currency to use are correct.
        require(
            _currency == targetListing.currency && _totalPrice == (targetListing.buyoutPricePerToken * _quantityToBuy),
            "invalid currency or price"
        );

        executeSale(
            targetListing,
            payer,
            _buyFor,
            targetListing.currency,
            targetListing.buyoutPricePerToken * _quantityToBuy,
            _quantityToBuy
        );
    }

    /// @dev Lets a listing's creator accept an offer for their direct listing.
    function acceptOffer(
        uint256 _listingId,
        address _offeror,
        address _currency,
        uint256 _pricePerToken
    ) external override nonReentrant onlyListingCreator(_listingId) onlyExistingListing(_listingId) {
        Offer memory targetOffer = offers[_listingId][_offeror];
        Listing memory targetListing = listings[_listingId];

        require(
            _currency == targetOffer.currency && _pricePerToken == targetOffer.pricePerToken,
            "invalid currency or price"
        );

        delete offers[_listingId][_offeror];

        executeSale(
            targetListing,
            _offeror,
            _offeror,
            targetOffer.currency,
            targetOffer.pricePerToken * targetOffer.quantityWanted,
            targetOffer.quantityWanted
        );
    }

    /// @dev Lets an account (1) make an offer to a direct listing, or (2) make a bid in an auction.
    function offer(
        uint256 _listingId,
        uint256 _quantityWanted,
        address _currency,
        uint256 _pricePerToken
    ) external payable override nonReentrant onlyExistingListing(_listingId) {
        Listing memory targetListing = listings[_listingId];

        require(
            targetListing.endTime > block.timestamp && targetListing.startTime < block.timestamp,
            "inactive listing."
        );

        // Both - (1) offers to direct listings, and (2) bids to auctions - share the same structure.
        Offer memory newOffer = Offer({
            listingId: _listingId,
            offeror: _msgSender(),
            quantityWanted: _quantityWanted,
            currency: _currency,
            pricePerToken: _pricePerToken
        });

        if (targetListing.listingType == ListingType.Auction) {
            // A bid to an auction must be made in the auction's desired currency.
            newOffer.currency = targetListing.currency;
            // A bid must be made for all auction items.
            newOffer.quantityWanted = getSafeQuantity(targetListing.tokenType, targetListing.quantity);

            handleBid(targetListing, newOffer);
        } else if (targetListing.listingType == ListingType.Direct) {
            // Offers to direct listings cannot be made directly in native tokens.
            newOffer.currency = _currency == NATIVE_TOKEN ? nativeTokenWrapper : _currency;
            newOffer.quantityWanted = getSafeQuantity(targetListing.tokenType, _quantityWanted);

            handleOffer(targetListing, newOffer);
        }
    }

    /// @dev Lets an account close an auction for either the (1) winning bidder, or (2) auction creator.
    function closeAuction(uint256 _listingId, address _closeFor)
        external
        override
        nonReentrant
        onlyExistingListing(_listingId)
    {
        Listing memory targetListing = listings[_listingId];

        require(targetListing.listingType == ListingType.Auction, "not an auction.");

        Offer memory targetBid = winningBid[_listingId];

        // Cancel auction if (1) auction hasn't started, or (2) auction doesn't have any bids.
        bool toCancel = targetListing.startTime > block.timestamp || targetBid.offeror == address(0);

        if (toCancel) {
            // cancel auction listing owner check
            _cancelAuction(targetListing);
        } else {
            require(targetListing.endTime < block.timestamp, "cannot close auction before it has ended.");

            // No `else if` to let auction close in 1 tx when targetListing.tokenOwner == targetBid.offeror.
            if (_closeFor == targetListing.tokenOwner) {
                _closeAuctionForAuctionCreator(targetListing, targetBid);
            }

            if (_closeFor == targetBid.offeror) {
                _closeAuctionForBidder(targetListing, targetBid);
            }
        }
    }

    /// @dev Returns the platform fee bps and recipient.
    function getPlatformFeeInfo() external view returns (address, uint16) {
        return (platformFeeRecipient, uint16(platformFeeBps));
    }

    //  =====   Internal functions  =====

    /// @dev Performs a direct listing sale.
    function executeSale(
        Listing memory _targetListing,
        address _payer,
        address _receiver,
        address _currency,
        uint256 _currencyAmountToTransfer,
        uint256 _listingTokenAmountToTransfer
    ) internal {
        validateDirectListingSale(_targetListing, _payer, _listingTokenAmountToTransfer, _currencyAmountToTransfer);

        _targetListing.quantity -= _listingTokenAmountToTransfer;
        listings[_targetListing.listingId] = _targetListing;

        payout(_payer, _targetListing.tokenOwner, _currency, _currencyAmountToTransfer, _targetListing);
        transferListingTokens(_targetListing.tokenOwner, _receiver, _listingTokenAmountToTransfer, _targetListing);

        emit NewSale(
            _targetListing.listingId,
            _targetListing.assetContract,
            _targetListing.tokenOwner,
            _receiver,
            _listingTokenAmountToTransfer,
            _currencyAmountToTransfer
        );
    }

    /// @dev Processes a new offer to a direct listing.
    function handleOffer(Listing memory _targetListing, Offer memory _newOffer) internal {
        require(
            _newOffer.quantityWanted <= _targetListing.quantity && _targetListing.quantity > 0,
            "insufficient tokens in listing."
        );

        validateERC20BalAndAllowance(
            _newOffer.offeror,
            _newOffer.currency,
            _newOffer.pricePerToken * _newOffer.quantityWanted
        );

        offers[_targetListing.listingId][_newOffer.offeror] = _newOffer;

        emit NewOffer(
            _targetListing.listingId,
            _newOffer.offeror,
            _targetListing.listingType,
            _newOffer.quantityWanted,
            _newOffer.pricePerToken * _newOffer.quantityWanted,
            _newOffer.currency
        );
    }

    /// @dev Processes an incoming bid in an auction.
    function handleBid(Listing memory _targetListing, Offer memory _incomingBid) internal {
        Offer memory currentWinningBid = winningBid[_targetListing.listingId];
        uint256 currentOfferAmount = currentWinningBid.pricePerToken * currentWinningBid.quantityWanted;
        uint256 incomingOfferAmount = _incomingBid.pricePerToken * _incomingBid.quantityWanted;

        /**
         *      If there's an exisitng winning bid, incoming bid amount must be bid buffer % greater.
         *      Else, bid amount must be at least as great as reserve price
         */
        require(
            isNewWinningBid(
                _targetListing.reservePricePerToken * _targetListing.quantity,
                currentOfferAmount,
                incomingOfferAmount
            ),
            "not winning bid."
        );

        // Close auction and execute sale if there's a buyout price and incoming offer amount is buyout price.
        if (
            _targetListing.buyoutPricePerToken > 0 &&
            incomingOfferAmount >= _targetListing.buyoutPricePerToken * _targetListing.quantity
        ) {
            _closeAuctionForBidder(_targetListing, _incomingBid);
        } else {
            // Update the winning bid and listing's end time before external contract calls.
            winningBid[_targetListing.listingId] = _incomingBid;

            if (_targetListing.endTime - block.timestamp <= timeBuffer) {
                _targetListing.endTime += timeBuffer;
                listings[_targetListing.listingId] = _targetListing;
            }

            address _nativeTokenWrapper = nativeTokenWrapper;

            // Payout previous highest bid.
            if (currentWinningBid.offeror != address(0) && currentOfferAmount > 0) {
                CurrencyTransferLib.transferCurrencyWithWrapperAndBalanceCheck(
                    _targetListing.currency,
                    address(this),
                    currentWinningBid.offeror,
                    currentOfferAmount,
                    _nativeTokenWrapper
                );
            }

            // Collect incoming bid
            CurrencyTransferLib.transferCurrencyWithWrapperAndBalanceCheck(
                _targetListing.currency,
                _incomingBid.offeror,
                address(this),
                incomingOfferAmount,
                _nativeTokenWrapper
            );

            emit NewOffer(
                _targetListing.listingId,
                _incomingBid.offeror,
                _targetListing.listingType,
                _incomingBid.quantityWanted,
                _incomingBid.pricePerToken * _incomingBid.quantityWanted,
                _incomingBid.currency
            );
        }
    }

    /// @dev Cancels an auction.
    function _cancelAuction(Listing memory _targetListing) internal {
        require(listings[_targetListing.listingId].tokenOwner == _msgSender(), "caller is not the listing creator.");

        delete listings[_targetListing.listingId];

        transferListingTokens(address(this), _targetListing.tokenOwner, _targetListing.quantity, _targetListing);

        emit AuctionClosed(_targetListing.listingId, _msgSender(), true, _targetListing.tokenOwner, address(0));
    }

    /// @dev Closes an auction for an auction creator; distributes winning bid amount to auction creator.
    function _closeAuctionForAuctionCreator(Listing memory _targetListing, Offer memory _winningBid) internal {
        uint256 payoutAmount = _winningBid.pricePerToken * _targetListing.quantity;

        _targetListing.quantity = 0;
        _targetListing.endTime = block.timestamp;
        listings[_targetListing.listingId] = _targetListing;

        _winningBid.pricePerToken = 0;
        winningBid[_targetListing.listingId] = _winningBid;

        payout(address(this), _targetListing.tokenOwner, _targetListing.currency, payoutAmount, _targetListing);

        emit AuctionClosed(
            _targetListing.listingId,
            _msgSender(),
            false,
            _targetListing.tokenOwner,
            _winningBid.offeror
        );
    }

    /// @dev Closes an auction for the winning bidder; distributes auction items to the winning bidder.
    function _closeAuctionForBidder(Listing memory _targetListing, Offer memory _winningBid) internal {
        uint256 quantityToSend = _winningBid.quantityWanted;

        _targetListing.endTime = block.timestamp;
        _winningBid.quantityWanted = 0;

        winningBid[_targetListing.listingId] = _winningBid;
        listings[_targetListing.listingId] = _targetListing;

        transferListingTokens(address(this), _winningBid.offeror, quantityToSend, _targetListing);

        emit AuctionClosed(
            _targetListing.listingId,
            _msgSender(),
            false,
            _targetListing.tokenOwner,
            _winningBid.offeror
        );
    }

    /// @dev Transfers tokens listed for sale in a direct or auction listing.
    function transferListingTokens(
        address _from,
        address _to,
        uint256 _quantity,
        Listing memory _listing
    ) internal {
        if (_listing.tokenType == TokenType.ERC1155) {
            IERC1155Upgradeable(_listing.assetContract).safeTransferFrom(_from, _to, _listing.tokenId, _quantity, "");
        } else if (_listing.tokenType == TokenType.ERC721) {
            IERC721Upgradeable(_listing.assetContract).safeTransferFrom(_from, _to, _listing.tokenId, "");
        }
    }

    /// @dev Payout stakeholders on sale
    function payout(
        address _payer,
        address _payee,
        address _currencyToUse,
        uint256 _totalPayoutAmount,
        Listing memory _listing
    ) internal {
        uint256 platformFeeCut = (_totalPayoutAmount * platformFeeBps) / MAX_BPS;

        (address twFeeRecipient, uint256 twFeeBps) = thirdwebFee.getFeeInfo(address(this), FeeType.MARKET_SALE);
        uint256 twFeeCut = (_totalPayoutAmount * twFeeBps) / MAX_BPS;

        uint256 royaltyCut;
        address royaltyRecipient;

        // Distribute royalties. See Sushiswap's https://github.com/sushiswap/shoyu/blob/master/contracts/base/BaseExchange.sol#L296
        try IERC2981Upgradeable(_listing.assetContract).royaltyInfo(_listing.tokenId, _totalPayoutAmount) returns (
            address royaltyFeeRecipient,
            uint256 royaltyFeeAmount
        ) {
            if (royaltyFeeRecipient != address(0) && royaltyFeeAmount > 0) {
                require(royaltyFeeAmount + platformFeeCut + twFeeCut <= _totalPayoutAmount, "fees exceed the price");
                royaltyRecipient = royaltyFeeRecipient;
                royaltyCut = royaltyFeeAmount;
            }
        } catch {}

        // Distribute price to token owner
        address _nativeTokenWrapper = nativeTokenWrapper;

        CurrencyTransferLib.transferCurrencyWithWrapperAndBalanceCheck(
            _currencyToUse,
            _payer,
            platformFeeRecipient,
            platformFeeCut,
            _nativeTokenWrapper
        );
        CurrencyTransferLib.transferCurrencyWithWrapperAndBalanceCheck(
            _currencyToUse,
            _payer,
            royaltyRecipient,
            royaltyCut,
            _nativeTokenWrapper
        );
        CurrencyTransferLib.transferCurrencyWithWrapperAndBalanceCheck(
            _currencyToUse,
            _payer,
            twFeeRecipient,
            twFeeCut,
            _nativeTokenWrapper
        );
        CurrencyTransferLib.transferCurrencyWithWrapperAndBalanceCheck(
            _currencyToUse,
            _payer,
            _payee,
            _totalPayoutAmount - (platformFeeCut + royaltyCut + twFeeCut),
            _nativeTokenWrapper
        );
    }

    /// @dev Checks whether an incoming bid should be the new current highest bid.
    function isNewWinningBid(
        uint256 _reserveAmount,
        uint256 _currentWinningBidAmount,
        uint256 _incomingBidAmount
    ) internal view returns (bool isValidNewBid) {
        if (_currentWinningBidAmount == 0) {
            isValidNewBid = _incomingBidAmount >= _reserveAmount;
        } else {
            isValidNewBid = (_incomingBidAmount > _currentWinningBidAmount &&
                ((_incomingBidAmount - _currentWinningBidAmount) * MAX_BPS) / _currentWinningBidAmount >= bidBufferBps);
        }
    }

    /// @dev Validates that `_addrToCheck` owns and has approved markeplace to transfer the appropriate amount of currency
    function validateERC20BalAndAllowance(
        address _addrToCheck,
        address _currency,
        uint256 _currencyAmountToCheckAgainst
    ) internal view {
        require(
            IERC20Upgradeable(_currency).balanceOf(_addrToCheck) >= _currencyAmountToCheckAgainst &&
                IERC20Upgradeable(_currency).allowance(_addrToCheck, address(this)) >= _currencyAmountToCheckAgainst,
            "insufficient balance or allowance."
        );
    }

    /// @dev Validates that `_tokenOwner` owns and has approved Market to transfer tokens.
    function validateOwnershipAndApproval(
        address _tokenOwner,
        address _assetContract,
        uint256 _tokenId,
        uint256 _quantity,
        TokenType _tokenType
    ) internal view {
        address market = address(this);
        bool isValid;

        if (_tokenType == TokenType.ERC1155) {
            isValid =
                IERC1155Upgradeable(_assetContract).balanceOf(_tokenOwner, _tokenId) >= _quantity &&
                IERC1155Upgradeable(_assetContract).isApprovedForAll(_tokenOwner, market);
        } else if (_tokenType == TokenType.ERC721) {
            isValid =
                IERC721Upgradeable(_assetContract).ownerOf(_tokenId) == _tokenOwner &&
                (IERC721Upgradeable(_assetContract).getApproved(_tokenId) == market ||
                    IERC721Upgradeable(_assetContract).isApprovedForAll(_tokenOwner, market));
        }

        require(isValid, "insufficient token balance or approval.");
    }

    /// @dev Validates conditions of a direct listing sale.
    function validateDirectListingSale(
        Listing memory _listing,
        address _payer,
        uint256 _quantityToBuy,
        uint256 settledTotalPrice
    ) internal {
        require(_listing.listingType == ListingType.Direct, "cannot buy from listing.");

        // Check whether a valid quantity of listed tokens is being bought.
        require(
            _listing.quantity > 0 && _quantityToBuy > 0 && _quantityToBuy <= _listing.quantity,
            "invalid amount of tokens."
        );

        // Check if sale is made within the listing window.
        require(block.timestamp < _listing.endTime && block.timestamp > _listing.startTime, "not within sale window.");

        // Check: buyer owns and has approved sufficient currency for sale.
        if (_listing.currency == NATIVE_TOKEN) {
            require(msg.value == settledTotalPrice, "msg.value != price");
        } else {
            validateERC20BalAndAllowance(_payer, _listing.currency, settledTotalPrice);
        }

        // Check iwhether token owner owns and has approved `quantityToBuy` amount of listing tokens from the listing.
        validateOwnershipAndApproval(
            _listing.tokenOwner,
            _listing.assetContract,
            _listing.tokenId,
            _quantityToBuy,
            _listing.tokenType
        );
    }

    /// @dev Enforces quantity == 1 if tokenType is TokenType.ERC721.
    function getSafeQuantity(TokenType _tokenType, uint256 _quantityToCheck)
        internal
        pure
        returns (uint256 safeQuantity)
    {
        if (_quantityToCheck == 0) {
            safeQuantity = 0;
        } else {
            safeQuantity = _tokenType == TokenType.ERC721 ? 1 : _quantityToCheck;
        }
    }

    /// @dev Returns the interface supported by a contract.
    function getTokenType(address _assetContract) internal view returns (TokenType tokenType) {
        if (IERC165Upgradeable(_assetContract).supportsInterface(type(IERC1155Upgradeable).interfaceId)) {
            tokenType = TokenType.ERC1155;
        } else if (IERC165Upgradeable(_assetContract).supportsInterface(type(IERC721Upgradeable).interfaceId)) {
            tokenType = TokenType.ERC721;
        } else {
            revert("token must be ERC1155 or ERC721.");
        }
    }

    /// @dev Returns the next listing Id to use.
    function getNextListingId() internal returns (uint256 nextId) {
        nextId = totalListings;
        totalListings += 1;
    }

    function _msgSender()
        internal
        view
        virtual
        override(ContextUpgradeable, ERC2771ContextUpgradeable)
        returns (address sender)
    {
        return ERC2771ContextUpgradeable._msgSender();
    }

    function _msgData()
        internal
        view
        virtual
        override(ContextUpgradeable, ERC2771ContextUpgradeable)
        returns (bytes calldata)
    {
        return ERC2771ContextUpgradeable._msgData();
    }

    //  ===== Setter functions  =====

    /// @dev Lets a module admin update the fees on platform fee
    function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        require(_platformFeeBps <= MAX_BPS, "bps <= 10000.");

        platformFeeBps = uint64(_platformFeeBps);
        platformFeeRecipient = _platformFeeRecipient;

        emit PlatformFeeInfoUpdated(_platformFeeRecipient, _platformFeeBps);
    }

    /// @dev Lets a module admin set auction buffers
    function setAuctionBuffers(uint256 _timeBuffer, uint256 _bidBufferBps) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(_bidBufferBps < MAX_BPS, "invalid BPS.");

        timeBuffer = uint64(_timeBuffer);
        bidBufferBps = uint64(_bidBufferBps);

        emit AuctionBuffersUpdated(_timeBuffer, _bidBufferBps);
    }

    /// @dev Sets contract URI for the storefront-level metadata of the contract.
    function setContractURI(string calldata _uri) external onlyRole(DEFAULT_ADMIN_ROLE) {
        contractURI = _uri;
    }

    /**
     *   ERC 1155 and ERC 721 Receiver functions.
     **/

    function onERC1155Received(
        address,
        address,
        uint256,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155Received.selector;
    }

    function onERC1155BatchReceived(
        address,
        address,
        uint256[] memory,
        uint256[] memory,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155BatchReceived.selector;
    }

    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external pure override returns (bytes4) {
        return this.onERC721Received.selector;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(AccessControlEnumerableUpgradeable, IERC165Upgradeable)
        returns (bool)
    {
        return
            interfaceId == type(IERC1155ReceiverUpgradeable).interfaceId ||
            interfaceId == type(IERC721ReceiverUpgradeable).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 2 of 29 : IMarketplace.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

import "../IThirdwebContract.sol";
import "../IThirdwebPlatformFee.sol";

interface IMarketplace is IThirdwebContract, IThirdwebPlatformFee {
    /// @notice Type of the tokens that can be listed for sale.
    enum TokenType {
        ERC1155,
        ERC721
    }

    /**
     *  @notice The two types of listings.
     *          `Direct`: NFTs listed for sale at a fixed price.
     *          `Auction`: NFTs listed for sale in an auction.
     */
    enum ListingType {
        Direct,
        Auction
    }

    /**
     * @notice The information related to either (1) an offer on a direct listing, or (2) a bid in an auction.
     *
     * @dev The listing type of the listing at ID `lisingId` determins how the `Offer` is interpreted.
     *      If the listing is of type `Direct`, the `Offer` is interpreted as an offer to a direct listing.
     *      If the listing is of type `Auction`, the `Offer` is interpreted as a bid in an auction.
     */
    struct Offer {
        uint256 listingId;
        address offeror;
        uint256 quantityWanted;
        address currency;
        uint256 pricePerToken;
    }

    /**
     * @dev For use in `createListing` as a parameter type.
     *
     * @param assetContract         The contract address of the NFT to list for sale.

     * @param tokenId               The tokenId on `assetContract` of the NFT to list for sale.

     * @param startTime             The unix timestamp after which the listing is active. For direct listings:
     *                              'active' means NFTs can be bought from the listing. For auctions,
     *                              'active' means bids can be made in the auction.
     *
     * @param secondsUntilEndTime   No. of seconds after `startTime`, after which the listing is inactive.
     *                              For direct listings: 'inactive' means NFTs cannot be bought from the listing.
     *                              For auctions: 'inactive' means bids can no longer be made in the auction.
     *
     * @param quantityToList        The quantity of NFT of ID `tokenId` on the given `assetContract` to list. For
     *                              ERC 721 tokens to list for sale, the contract strictly defaults this to `1`,
     *                              Regardless of the value of `quantityToList` passed.
     *
     * @param currencyToAccept      For direct listings: the currency in which a buyer must pay the listing's fixed price
     *                              to buy the NFT(s). For auctions: the currency in which the bidders must make bids.
     *
     * @param reservePricePerToken  For direct listings: this value is ignored. For auctions: the minimum bid amount of
     *                              the auction is `reservePricePerToken * quantityToList`
     *
     * @param buyoutPricePerToken   For direct listings: interpreted as 'price per token' listed. For auctions: if
     *                              `buyoutPricePerToken` is greater than 0, and a bidder's bid is at least as great as
     *                              `buyoutPricePerToken * quantityToList`, the bidder wins the auction, and the auction
     *                              is closed.
     *
     * @param listingType           The type of listing to create - a direct listing or an auction.
     */
    struct ListingParameters {
        address assetContract;
        uint256 tokenId;
        uint256 startTime;
        uint256 secondsUntilEndTime;
        uint256 quantityToList;
        address currencyToAccept;
        uint256 reservePricePerToken;
        uint256 buyoutPricePerToken;
        ListingType listingType;
    }

    /**
     * @notice The information related to a listing; either (1) a direct listing, or (2) an auction listing.
     *
     * @dev For direct listings:
     *          (1) `reservePricePerToken` is ignored.
     *          (2) `buyoutPricePerToken` is simply interpreted as 'price per token'.
     */
    struct Listing {
        uint256 listingId;
        address tokenOwner;
        address assetContract;
        uint256 tokenId;
        uint256 startTime;
        uint256 endTime;
        uint256 quantity;
        address currency;
        uint256 reservePricePerToken;
        uint256 buyoutPricePerToken;
        TokenType tokenType;
        ListingType listingType;
    }

    /// @dev Emitted when a new listing is created.
    event ListingAdded(
        uint256 indexed listingId,
        address indexed assetContract,
        address indexed lister,
        Listing listing
    );

    /// @dev Emitted when the parameters of a listing are updated.
    event ListingUpdated(uint256 indexed listingId, address indexed listingCreator);

    /// @dev Emitted when a listing is cancelled.
    event ListingRemoved(uint256 indexed listingId, address indexed listingCreator);

    /**
     * @dev Emitted when a buyer buys from a direct listing, or a lister accepts some
     *      buyer's offer to their direct listing.
     */
    event NewSale(
        uint256 indexed listingId,
        address indexed assetContract,
        address indexed lister,
        address buyer,
        uint256 quantityBought,
        uint256 totalPricePaid
    );

    /// @dev Emitted when (1) a new offer is made to a direct listing, or (2) when a new bid is made in an auction.
    event NewOffer(
        uint256 indexed listingId,
        address indexed offeror,
        ListingType indexed listingType,
        uint256 quantityWanted,
        uint256 totalOfferAmount,
        address currency
    );

    /// @dev Emitted when an auction is closed.
    event AuctionClosed(
        uint256 indexed listingId,
        address indexed closer,
        bool indexed cancelled,
        address auctionCreator,
        address winningBidder
    );

    /// @dev Emitted when fee on primary sales is updated.
    event PlatformFeeInfoUpdated(address platformFeeRecipient, uint256 platformFeeBps);

    /// @dev Emitted when auction buffers are updated.
    event AuctionBuffersUpdated(uint256 timeBuffer, uint256 bidBufferBps);

    /**
     * @notice Lets a token (ERC 721 or ERC 1155) owner list tokens for sale in a direct listing, or an auction.
     * @param _params The parameters that govern the listing to be created.

     * @dev The values of `_params` are passsed to this function in a `ListingParameters` struct, instead of
     *      directly due to Solidity's limit of the no. of local variables that can be used in a function.

     * @dev NFTs to list for sale in an auction are escrowed in Marketplace. For direct listings, the contract
     *      only checks whether the listing's creator owns and has approved Marketplace to transfer the NFTs to list.
     */
    function createListing(ListingParameters memory _params) external;

    /**
     * @notice Lets a listing's creator edit the listing's parameters. A direct listing can be edited whenever.
     *         An auction listing cannot be edited after the auction has started.
     *
     * @param _listingId            The unique Id of the lisitng to edit.
     *
     * @param _quantityToList       The amount of NFTs to list for sale in the listing. For direct lisitngs, the contract
     *                              only checks whether the listing creator owns and has approved Marketplace to transfer
     *                              `_quantityToList` amount of NFTs to list for sale. For auction listings, the contract
     *                               ensures that exactly `_quantityToList` amount of NFTs to list are escrowed.
     *
     * @param _reservePricePerToken For direct listings: this value is ignored. For auctions: the minimum bid amount of
     *                              the auction is `reservePricePerToken * quantityToList`
     *
     * @param _buyoutPricePerToken  For direct listings: interpreted as 'price per token' listed. For auctions: if
     *                              `buyoutPricePerToken` is greater than 0, and a bidder's bid is at least as great as
     *                              `buyoutPricePerToken * quantityToList`, the bidder wins the auction, and the auction
     *                              is closed.
     *
     * @param _currencyToAccept     For direct listings: the currency in which a buyer must pay the listing's fixed price
     *                              to buy the NFT(s). For auctions: the currency in which the bidders must make bids.
     *
     * @param _startTime            The unix timestamp after which listing is active. For direct listings:
     *                              'active' means NFTs can be bought from the listing. For auctions,
     *                              'active' means bids can be made in the auction.
     *
     * @param _secondsUntilEndTime  No. of seconds after which the listing is inactive. For direct listings:
     *                              'inactive' means NFTs cannot be bought from the listing. For auctions,
     *                              'inactive' means bids can no longer be made in the auction.
     */
    function updateListing(
        uint256 _listingId,
        uint256 _quantityToList,
        uint256 _reservePricePerToken,
        uint256 _buyoutPricePerToken,
        address _currencyToAccept,
        uint256 _startTime,
        uint256 _secondsUntilEndTime
    ) external;

    /**
     *  @notice Lets a direct listing creator cancel their listing.
     *
     *  @param _listingId The unique Id of the lisitng to cancel.
     */
    function cancelDirectListing(uint256 _listingId) external;

    /**
     * @notice Lets someone buy a given quantity of tokens from a direct listing by paying the fixed price.
     *
     * @param _listingId The unique ID of the direct lisitng to buy from.
     * @param _buyFor The receiver of the NFT being bought.
     * @param _quantity The amount of NFTs to buy from the direct listing.
     * @param _currency The currency to pay the price in.
     * @param _totalPrice The total price to pay for the tokens being bought.
     *
     * @dev A sale will fail to execute if either:
     *          (1) buyer does not own or has not approved Marketplace to transfer the appropriate
     *              amount of currency (or hasn't sent the appropriate amount of native tokens)
     *
     *          (2) the lister does not own or has removed Markeplace's
     *              approval to transfer the tokens listed for sale.
     */
    function buy(
        uint256 _listingId,
        address _buyFor,
        uint256 _quantity,
        address _currency,
        uint256 _totalPrice
    ) external payable;

    /**
     * @notice Lets someone make an offer to a direct listing, or bid in an auction.
     *
     * @dev Each (address, listing ID) pair maps to a single unique offer. So e.g. if a buyer makes
     *      makes two offers to the same direct listing, the last offer is counted as the buyer's
     *      offer to that listing.
     *
     * @param _listingId        The unique ID of the lisitng to make an offer/bid to.
     *
     * @param _quantityWanted   For auction listings: the 'quantity wanted' is the total amount of NFTs
     *                          being auctioned, regardless of the value of `_quantityWanted` passed.
     *                          For direct listings: `_quantityWanted` is the quantity of NFTs from the
     *                          listing, for which the offer is being made.
     *
     * @param _currency         For auction listings: the 'currency of the bid' is the currency accepted
     *                          by the auction, regardless of the value of `_currency` passed. For direct listings:
     *                          this is the currency in which the offer is made.
     *
     * @param _pricePerToken    The offered price per token. The total offer amount is `_quantityWanted * _pricePerToken`.
     */
    function offer(
        uint256 _listingId,
        uint256 _quantityWanted,
        address _currency,
        uint256 _pricePerToken
    ) external payable;

    /**
     * @notice Lets a listing's creator accept an offer to their direct listing.
     * @param _listingId The unique ID of the listing for which to accept the offer.
     * @param _offeror The address of the buyer whose offer is to be accepted.
     * @param _currency The currency of the offer that is to be accepted.
     * @param _totalPrice The total price of the offer that is to be accepted.
     */
    function acceptOffer(
        uint256 _listingId,
        address _offeror,
        address _currency,
        uint256 _totalPrice
    ) external;

    /**
     * @notice Lets any account close an auction on behalf of either the (1) auction's creator, or (2) winning bidder.
     *              For (1): The auction creator is sent the the winning bid amount.
     *              For (2): The winning bidder is sent the auctioned NFTs.
     *
     * @param _listingId The unique ID of the listing (the auction to close).
     * @param _closeFor For whom the auction is being closed - the auction creator or winning bidder.
     */
    function closeAuction(uint256 _listingId, address _closeFor) external;
}

File 3 of 29 : IERC165Upgradeable.sol
// 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 IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 4 of 29 : IERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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 5 of 29 : IERC1155Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165Upgradeable.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155Upgradeable is IERC165Upgradeable {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 6 of 29 : IERC721Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165Upgradeable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 29 : IERC1155ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165Upgradeable.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155ReceiverUpgradeable is IERC165Upgradeable {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 29 : IERC721ReceiverUpgradeable.sol
// 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 IERC721ReceiverUpgradeable {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 29 : AccessControlEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlEnumerableUpgradeable.sol";
import "./AccessControlUpgradeable.sol";
import "../utils/structs/EnumerableSetUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable {
    function __AccessControlEnumerable_init() internal onlyInitializing {
    }

    function __AccessControlEnumerable_init_unchained() internal onlyInitializing {
    }
    using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;

    mapping(bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 10 of 29 : ReentrancyGuardUpgradeable.sol
// 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;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 11 of 29 : ERC2771ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (metatx/ERC2771Context.sol)

pragma solidity ^0.8.11;

import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

/**
 * @dev Context variant with ERC2771 support.
 */
abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable {
    mapping(address => bool) private _trustedForwarder;

    function __ERC2771Context_init(address[] memory trustedForwarder) internal onlyInitializing {
        __Context_init_unchained();
        __ERC2771Context_init_unchained(trustedForwarder);
    }

    function __ERC2771Context_init_unchained(address[] memory trustedForwarder) internal onlyInitializing {
        for (uint256 i = 0; i < trustedForwarder.length; i++) {
            _trustedForwarder[trustedForwarder[i]] = true;
        }
    }

    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {
        return _trustedForwarder[forwarder];
    }

    function _msgSender() internal view virtual override returns (address sender) {
        if (isTrustedForwarder(msg.sender)) {
            // The assembly code is more direct than the Solidity version using `abi.decode`.
            assembly {
                sender := shr(96, calldataload(sub(calldatasize(), 20)))
            }
        } else {
            return super._msgSender();
        }
    }

    function _msgData() internal view virtual override returns (bytes calldata) {
        if (isTrustedForwarder(msg.sender)) {
            return msg.data[:msg.data.length - 20];
        } else {
            return super._msgData();
        }
    }

    uint256[49] private __gap;
}

File 12 of 29 : IERC2981Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";

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

File 13 of 29 : MulticallUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol)

pragma solidity ^0.8.0;

import "./AddressUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 *
 * _Available since v4.1._
 */
abstract contract MulticallUpgradeable is Initializable {
    function __Multicall_init() internal onlyInitializing {
    }

    function __Multicall_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev Receives and executes a batch of function calls on this contract.
     */
    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
        results = new bytes[](data.length);
        for (uint256 i = 0; i < data.length; i++) {
            results[i] = _functionDelegateCall(address(this), data[i]);
        }
        return results;
    }

    /**
     * @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) private returns (bytes memory) {
        require(AddressUpgradeable.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 AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed");
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 14 of 29 : CurrencyTransferLib.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

// Helper interfaces
import { IWETH } from "../interfaces/IWETH.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";

library CurrencyTransferLib {
    /// @dev The address interpreted as native token of the chain.
    address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;

    /// @dev Transfers a given amount of currency.
    function transferCurrency(
        address _currency,
        address _from,
        address _to,
        uint256 _amount
    ) internal {
        if (_amount == 0) {
            return;
        }

        if (_currency == NATIVE_TOKEN) {
            safeTransferNativeToken(_to, _amount);
        } else {
            safeTransferERC20(_currency, _from, _to, _amount);
        }
    }

    /// @dev Transfers a given amount of currency. (With native token wrapping)
    function transferCurrencyWithWrapperAndBalanceCheck(
        address _currency,
        address _from,
        address _to,
        uint256 _amount,
        address _nativeTokenWrapper
    ) internal {
        if (_amount == 0) {
            return;
        }

        if (_currency == NATIVE_TOKEN) {
            if (_from == address(this)) {
                // withdraw from weth then transfer withdrawn native token to recipient
                IWETH(_nativeTokenWrapper).withdraw(_amount);
                safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper);
            } else if (_to == address(this)) {
                // store native currency in weth
                require(_amount == msg.value, "msg.value != amount");
                IWETH(_nativeTokenWrapper).deposit{ value: _amount }();
            } else {
                safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper);
            }
        } else {
            safeTransferERC20WithBalanceCheck(_currency, _from, _to, _amount);
        }
    }

    /// @dev Transfer `amount` of ERC20 token from `from` to `to`.
    function safeTransferERC20(
        address _currency,
        address _from,
        address _to,
        uint256 _amount
    ) internal {
        if (_from == _to) {
            return;
        }

        bool success = _from == address(this)
            ? IERC20Upgradeable(_currency).transfer(_to, _amount)
            : IERC20Upgradeable(_currency).transferFrom(_from, _to, _amount);

        require(success, "currency transfer failed.");
    }

    /// @dev Transfer `amount` of ERC20 token from `from` to `to`.
    function safeTransferERC20WithBalanceCheck(
        address _currency,
        address _from,
        address _to,
        uint256 _amount
    ) internal {
        if (_from == _to) {
            return;
        }

        uint256 balBefore = IERC20Upgradeable(_currency).balanceOf(_to);
        bool success = _from == address(this)
            ? IERC20Upgradeable(_currency).transfer(_to, _amount)
            : IERC20Upgradeable(_currency).transferFrom(_from, _to, _amount);
        uint256 balAfter = IERC20Upgradeable(_currency).balanceOf(_to);

        require(success && (balAfter == balBefore + _amount), "currency transfer failed.");
    }

    /// @dev Transfers `amount` of native token to `to`.
    function safeTransferNativeToken(address to, uint256 value) internal {
        // solhint-disable avoid-low-level-calls
        // slither-disable-next-line low-level-calls
        (bool success, ) = to.call{ value: value }("");
        require(success, "native token transfer failed");
    }

    /// @dev Transfers `amount` of native token to `to`. (With native token wrapping)
    function safeTransferNativeTokenWithWrapper(
        address to,
        uint256 value,
        address _nativeTokenWrapper
    ) internal {
        // solhint-disable avoid-low-level-calls
        // slither-disable-next-line low-level-calls
        (bool success, ) = to.call{ value: value }("");
        if (!success) {
            IWETH(_nativeTokenWrapper).deposit{ value: value }();
            require(IERC20Upgradeable(_nativeTokenWrapper).transfer(to, value), "transfer failed");
        }
    }
}

File 15 of 29 : FeeType.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

library FeeType {
    uint256 internal constant PRIMARY_SALE = 0;
    uint256 internal constant MARKET_SALE = 1;
    uint256 internal constant SPLIT = 2;
}

File 16 of 29 : ITWFee.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

interface ITWFee {
    function getFeeInfo(address _proxy, uint256 _type) external view returns (address recipient, uint256 bps);
}

File 17 of 29 : IThirdwebContract.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

interface IThirdwebContract {
    /// @dev Returns the module type of the contract.
    function contractType() external pure returns (bytes32);

    /// @dev Returns the version of the contract.
    function contractVersion() external pure returns (uint8);

    /// @dev Returns the metadata URI of the contract.
    function contractURI() external view returns (string memory);

    /**
     *  @dev Sets contract URI for the storefront-level metadata of the contract.
     *       Only module admin can call this function.
     */
    function setContractURI(string calldata _uri) external;
}

File 18 of 29 : IThirdwebPlatformFee.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

interface IThirdwebPlatformFee {
    /// @dev Returns the platform fee bps and recipient.
    function getPlatformFeeInfo() external view returns (address platformFeeRecipient, uint16 platformFeeBps);

    /// @dev Lets a module admin update the fees on primary sales.
    function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external;
}

File 19 of 29 : IAccessControlEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerableUpgradeable is IAccessControlUpgradeable {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

File 20 of 29 : AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../utils/StringsUpgradeable.sol";
import "../utils/introspection/ERC165Upgradeable.sol";
import "../proxy/utils/Initializable.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 AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    function __AccessControl_init() internal onlyInitializing {
    }

    function __AccessControl_init_unchained() internal onlyInitializing {
    }
    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(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual 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 virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        StringsUpgradeable.toHexString(uint160(account), 20),
                        " is missing role ",
                        StringsUpgradeable.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 virtual 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());
        }
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 21 of 29 : EnumerableSetUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSetUpgradeable {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 22 of 29 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 proxied contracts do not make use of 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));
    }
}

File 23 of 29 : IAccessControlUpgradeable.sol
// 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 IAccessControlUpgradeable {
    /**
     * @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;
}

File 24 of 29 : ContextUpgradeable.sol
// 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 {
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 25 of 29 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    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 26 of 29 : ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 27 of 29 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

File 28 of 29 : IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165Upgradeable.sol";

File 29 of 29 : IWETH.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;

interface IWETH {
    function deposit() external payable;

    function withdraw(uint256 amount) external;

    function transfer(address to, uint256 value) external returns (bool);
}

Settings
{
  "metadata": {
    "bytecodeHash": "none"
  },
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nativeTokenWrapper","type":"address"},{"internalType":"address","name":"_thirdwebFee","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timeBuffer","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bidBufferBps","type":"uint256"}],"name":"AuctionBuffersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"closer","type":"address"},{"indexed":true,"internalType":"bool","name":"cancelled","type":"bool"},{"indexed":false,"internalType":"address","name":"auctionCreator","type":"address"},{"indexed":false,"internalType":"address","name":"winningBidder","type":"address"}],"name":"AuctionClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"assetContract","type":"address"},{"indexed":true,"internalType":"address","name":"lister","type":"address"},{"components":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"assetContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"buyoutPricePerToken","type":"uint256"},{"internalType":"enum IMarketplace.TokenType","name":"tokenType","type":"uint8"},{"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"}],"indexed":false,"internalType":"struct IMarketplace.Listing","name":"listing","type":"tuple"}],"name":"ListingAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"listingCreator","type":"address"}],"name":"ListingRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"listingCreator","type":"address"}],"name":"ListingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"offeror","type":"address"},{"indexed":true,"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"quantityWanted","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalOfferAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"currency","type":"address"}],"name":"NewOffer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"assetContract","type":"address"},{"indexed":true,"internalType":"address","name":"lister","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantityBought","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalPricePaid","type":"uint256"}],"name":"NewSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeeBps","type":"uint256"}],"name":"PlatformFeeInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BPS","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"address","name":"_offeror","type":"address"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"}],"name":"acceptOffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bidBufferBps","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"address","name":"_buyFor","type":"address"},{"internalType":"uint256","name":"_quantityToBuy","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_totalPrice","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"}],"name":"cancelDirectListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"address","name":"_closeFor","type":"address"}],"name":"closeAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractType","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractVersion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"assetContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"secondsUntilEndTime","type":"uint256"},{"internalType":"uint256","name":"quantityToList","type":"uint256"},{"internalType":"address","name":"currencyToAccept","type":"address"},{"internalType":"uint256","name":"reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"buyoutPricePerToken","type":"uint256"},{"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"}],"internalType":"struct IMarketplace.ListingParameters","name":"_params","type":"tuple"}],"name":"createListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address[]","name":"_trustedForwarders","type":"address[]"},{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"listings","outputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"assetContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"buyoutPricePerToken","type":"uint256"},{"internalType":"enum IMarketplace.TokenType","name":"tokenType","type":"uint8"},{"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"uint256","name":"_quantityWanted","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"}],"name":"offer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"offers","outputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"offeror","type":"address"},{"internalType":"uint256","name":"quantityWanted","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeBuffer","type":"uint256"},{"internalType":"uint256","name":"_bidBufferBps","type":"uint256"}],"name":"setAuctionBuffers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"setPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdwebFee","outputs":[{"internalType":"contract ITWFee","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeBuffer","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalListings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"uint256","name":"_quantityToList","type":"uint256"},{"internalType":"uint256","name":"_reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"_buyoutPricePerToken","type":"uint256"},{"internalType":"address","name":"_currencyToAccept","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_secondsUntilEndTime","type":"uint256"}],"name":"updateListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winningBid","outputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"offeror","type":"address"},{"internalType":"uint256","name":"quantityWanted","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b506040516200616c3803806200616c83398101604081905262000034916200015f565b600054610100900460ff16620000515760005460ff16156200005b565b6200005b62000115565b620000c35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600054610100900460ff16158015620000e6576000805461ffff19166101011790555b6001600160a01b0380831660a052831660805280156200010c576000805461ff00191690555b50505062000197565b60006200012d306200013360201b62002a561760201c565b15905090565b6001600160a01b03163b151590565b80516001600160a01b03811681146200015a57600080fd5b919050565b600080604083850312156200017357600080fd5b6200017e8362000142565b91506200018e6020840162000142565b90509250929050565b60805160a051615f9a620001d2600039600081816106930152614370015260008181611eee01528181613d02015261450e0152615f9a6000f3fe60806040526004361061026a5760003560e01c8063ac9650d811610153578063d45573f6116100cb578063ea0e02411161007f578063ec91f2a411610064578063ec91f2a4146108df578063f23a6e6114610901578063fd967f471461092d57600080fd5b8063ea0e02411461085e578063ebdfbce51461087e57600080fd5b8063d547741f116100b0578063d547741f14610775578063de74e57b14610795578063e8a3d4851461083c57600080fd5b8063d45573f6146106b5578063d4ac9b8c146106ed57600080fd5b8063c4b5b15f11610122578063ca15c87311610107578063ca15c8731461062e578063cb2ef6f71461064e578063cf8267b11461068157600080fd5b8063c4b5b15f146105f7578063c78b616c1461061757600080fd5b8063ac9650d81461056b578063acb1ba6714610598578063b13c0e63146105ab578063bc197c81146105cb57600080fd5b80636bab66ae116101e65780639010d07c116101b5578063938e3d7b1161019a578063938e3d7b1461051a578063a0a8e4601461053a578063a217fddf1461055657600080fd5b80639010d07c1461049c57806391d14854146104d457600080fd5b80636bab66ae146104295780637506c84a146104495780637687ab02146104695780638c8a84e21461047c57600080fd5b8063296f4e161161023d57806336568abe1161022257806336568abe146103895780634e03f28d146103a9578063572b6c05146103f057600080fd5b8063296f4e16146103495780632f2ff15d1461036957600080fd5b806301ffc9a71461026f578063150b7a02146102a45780631e7ac488146102e9578063248a9ca31461030b575b600080fd5b34801561027b57600080fd5b5061028f61028a3660046152cc565b610943565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102d06102bf36600461535f565b630a85bd0160e11b95945050505050565b6040516001600160e01b0319909116815260200161029b565b3480156102f557600080fd5b506103096103043660046153d2565b610989565b005b34801561031757600080fd5b5061033b6103263660046153fe565b600090815260fb602052604090206001015490565b60405190815260200161029b565b34801561035557600080fd5b50610309610364366004615497565b610a6d565b34801561037557600080fd5b50610309610384366004615523565b610fd4565b34801561039557600080fd5b506103096103a4366004615523565b611001565b3480156103b557600080fd5b50610162546103d79068010000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161029b565b3480156103fc57600080fd5b5061028f61040b366004615553565b6001600160a01b031660009081526065602052604090205460ff1690565b34801561043557600080fd5b50610309610444366004615523565b61109d565b34801561045557600080fd5b506103096104643660046153fe565b611418565b610309610477366004615570565b6116a5565b34801561048857600080fd5b5061030961049736600461563e565b611910565b3480156104a857600080fd5b506104bc6104b7366004615736565b611ac2565b6040516001600160a01b03909116815260200161029b565b3480156104e057600080fd5b5061028f6104ef366004615523565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561052657600080fd5b50610309610535366004615758565b611ae2565b34801561054657600080fd5b506040516001815260200161029b565b34801561056257600080fd5b5061033b600081565b34801561057757600080fd5b5061058b61058636600461579a565b611b03565b60405161029b9190615867565b6103096105a63660046158c9565b611bf8565b3480156105b757600080fd5b506103096105c6366004615908565b611f48565b3480156105d757600080fd5b506102d06105e63660046159c6565b63bc197c8160e01b95945050505050565b34801561060357600080fd5b50610309610612366004615a74565b61238e565b34801561062357600080fd5b5061033b61015f5481565b34801561063a57600080fd5b5061033b6106493660046153fe565b6128b5565b34801561065a57600080fd5b507f4d61726b6574706c61636500000000000000000000000000000000000000000061033b565b34801561068d57600080fd5b506104bc7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c157600080fd5b5061016154604080516001600160a01b0383168152600160a01b90920461ffff1660208301520161029b565b3480156106f957600080fd5b506107436107083660046153fe565b610165602052600090815260409020805460018201546002830154600384015460049094015492936001600160a01b03928316939192169085565b604080519586526001600160a01b0394851660208701528501929092529091166060830152608082015260a00161029b565b34801561078157600080fd5b50610309610790366004615523565b6128cd565b3480156107a157600080fd5b506108246107b03660046153fe565b61016360205260009081526040902080546001820154600283015460038401546004850154600586015460068701546007880154600889015460098a0154600a909a015498996001600160a01b03988916999789169896979596949593949092169290919060ff808216916101009004168c565b60405161029b9c9b9a99989796959493929190615b14565b34801561084857600080fd5b506108516128f5565b60405161029b9190615b98565b34801561086a57600080fd5b50610309610879366004615736565b612984565b34801561088a57600080fd5b50610743610899366004615523565b6101646020908152600092835260408084209091529082529020805460018201546002830154600384015460049094015492936001600160a01b03928316939192169085565b3480156108eb57600080fd5b50610162546103d79067ffffffffffffffff1681565b34801561090d57600080fd5b506102d061091c366004615bab565b63f23a6e6160e01b95945050505050565b34801561093957600080fd5b506103d761271081565b60006001600160e01b03198216630271189760e51b148061097457506001600160e01b03198216630a85bd0160e11b145b80610983575061098382612a65565b92915050565b600061099c81610997612a8a565b612a99565b6127108211156109f35760405162461bcd60e51b815260206004820152600d60248201527f627073203c3d2031303030302e0000000000000000000000000000000000000060448201526064015b60405180910390fd5b61016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b03851690811790915560408051918252602082018490527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f1830491015b60405180910390a1505050565b6000816060015111610ac15760405162461bcd60e51b815260206004820152601260248201527f656e642074696d65206d757374203e20302e000000000000000000000000000060448201526064016109ea565b6000610acb612b19565b90506000610ad7612a8a565b90506000610ae88460000151612b38565b90506000610afa828660800151612c80565b905060008111610b4c5760405162461bcd60e51b815260206004820152601960248201527f6c697374696e6720696e76616c6964207175616e746974792e0000000000000060448201526064016109ea565b600080527f0bf587d4e74e99cde8c6e4c054a5635772877ff68dbace54cfa272aabdba99186020527f2e5a8a6546a6579ddcdee1c230e851e90e02911b1edbb4e6bce29e62ce9ef8cf5460ff1680610bcb5750610bcb7ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c6104ef612a8a565b610c175760405162461bcd60e51b815260206004820152601a60248201527f646f6573206e6f742068617665204c49535445525f524f4c452e00000000000060448201526064016109ea565b600080527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb6020527f4be4ab7155dfb840c7e9b0c93044a57446f8382ea3b9bde86d10b5704d906e775460ff1680610ca7575084516001600160a01b031660009081527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb602052604090205460ff165b610cf35760405162461bcd60e51b815260206004820152601160248201527f756e617070726f7665642061737365742e00000000000000000000000000000060448201526064016109ea565b610d0883866000015187602001518486612cb7565b600042866040015110610d1f578560400151610d21565b425b90506000604051806101800160405280878152602001866001600160a01b0316815260200188600001516001600160a01b0316815260200188602001518152602001838152602001886060015184610d799190615c2a565b81526020018481526020018860a001516001600160a01b031681526020018860c0015181526020018860e001518152602001856001811115610dbd57610dbd615ad3565b81526020018861010001516001811115610dd957610dd9615ad3565b9052600087815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a82018054949550859492939192909160ff19909116908381811115610eb157610eb1615ad3565b0217905550610160820151600a8201805461ff001916610100836001811115610edc57610edc615ad3565b021790555060019150610eec9050565b8161016001516001811115610f0357610f03615ad3565b1415610f7b578061010001518161012001511015610f6f5760405162461bcd60e51b815260206004820152602360248201527f726573657276652070726963652065786365656473206275796f75742070726960448201526231b29760e91b60648201526084016109ea565b610f7b85308584612fcf565b846001600160a01b031687600001516001600160a01b0316877f0c5bc74ccdf848b38eb526a154b85085e1d61addf1d100cba2074e039c0b634084604051610fc39190615c42565b60405180910390a450505050505050565b600082815260fb6020526040902060010154610ff281610997612a8a565b610ffc8383613125565b505050565b611009612a8a565b6001600160a01b0316816001600160a01b03161461108f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016109ea565b6110998282613148565b5050565b600260015414156110f05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b60026001819055600083815261016360205260409020015482906001600160a01b031661114d5760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600083815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156111fd576111fd615ad3565b600181111561120e5761120e615ad3565b8152602001600a820160019054906101000a900460ff16600181111561123657611236615ad3565b600181111561124757611247615ad3565b90525090506001816101600151600181111561126557611265615ad3565b146112b25760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420616e2061756374696f6e2e000000000000000000000000000000000060448201526064016109ea565b600084815261016560209081526040808320815160a0810183528154815260018201546001600160a01b03908116948201949094526002820154928101929092526003810154909216606082015260049091015460808083019190915283015190919042108061132d575060208201516001600160a01b0316155b905080156113435761133e8361316b565b61140c565b428360a00151106113bc5760405162461bcd60e51b815260206004820152602960248201527f63616e6e6f7420636c6f73652061756374696f6e206265666f7265206974206860448201527f617320656e6465642e000000000000000000000000000000000000000000000060648201526084016109ea565b82602001516001600160a01b0316856001600160a01b031614156113e4576113e483836132d7565b81602001516001600160a01b0316856001600160a01b0316141561140c5761140c83836134f2565b50506001805550505050565b80611421612a8a565b600082815261016360205260409020600101546001600160a01b0390811691161461148e5760405162461bcd60e51b815260206004820152601760248201527f63616c6c657220213d206c697374696e67206f776e657200000000000000000060448201526064016109ea565b600082815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff169081111561153e5761153e615ad3565b600181111561154f5761154f615ad3565b8152602001600a820160019054906101000a900460ff16600181111561157757611577615ad3565b600181111561158857611588615ad3565b9052509050600081610160015160018111156115a6576115a6615ad3565b146115f35760405162461bcd60e51b815260206004820152601260248201527f6e6f7420646972656374206c697374696e67000000000000000000000000000060448201526064016109ea565b6000838152610163602090815260408083208381556001810180546001600160a01b0319908116909155600282018054821690556003820185905560048201859055600582018590556006820185905560078201805490911690556008810184905560098101849055600a01805461ffff191690559083015190516001600160a01b039091169185917f58b0852506006c4be6c7ae72afcd195d9e64d7f5d8947905e914b778e47b7cf39190a3505050565b600260015414156116f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b60026001819055600086815261016360205260409020015485906001600160a01b03166117555760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600086815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff169081111561180557611805615ad3565b600181111561181657611816615ad3565b8152602001600a820160019054906101000a900460ff16600181111561183e5761183e615ad3565b600181111561184f5761184f615ad3565b9052509050600061185e612a8a565b90508160e001516001600160a01b0316856001600160a01b03161480156118945750858261012001516118919190615d0b565b84145b6118e05760405162461bcd60e51b815260206004820152601960248201527f696e76616c69642063757272656e6379206f722070726963650000000000000060448201526064016109ea565b6119028282898560e001518a8761012001516118fc9190615d0b565b8b613660565b505060018055505050505050565b600054610100900460ff1661192b5760005460ff161561192f565b303b155b6119a15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016109ea565b600054610100900460ff161580156119c3576000805461ffff19166101011790555b6119cb61380a565b6119d48461387f565b61016280546fffffffffffffffffffffffffffffffff19166901f400000000000003841790558451611a0e906101609060208801906151bf565b5061016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b038516179055611a526000876138fe565b611a7d7ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c60006138fe565b611aa87f86d5cf0a6bdc8d859ba3bdc97043337c82a0e609035f378e419298b6a3e00ae660006138fe565b8015611aba576000805461ff00191690555b505050505050565b600082815261012d60205260408120611adb9083613908565b9392505050565b6000611af081610997612a8a565b611afd6101608484615243565b50505050565b60608167ffffffffffffffff811115611b1e57611b1e615417565b604051908082528060200260200182016040528015611b5157816020015b6060815260200190600190039081611b3c5790505b50905060005b82811015611bf157611bc130858584818110611b7557611b75615d2a565b9050602002810190611b879190615d40565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061391492505050565b828281518110611bd357611bd3615d2a565b60200260200101819052508080611be990615d87565b915050611b57565b5092915050565b60026001541415611c4b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b60026001819055600085815261016360205260409020015484906001600160a01b0316611ca85760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600085815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff1690811115611d5857611d58615ad3565b6001811115611d6957611d69615ad3565b8152602001600a820160019054906101000a900460ff166001811115611d9157611d91615ad3565b6001811115611da257611da2615ad3565b815250509050428160a00151118015611dbe5750428160800151105b611e0a5760405162461bcd60e51b815260206004820152601160248201527f696e616374697665206c697374696e672e00000000000000000000000000000060448201526064016109ea565b60006040518060a00160405280888152602001611e25612a8a565b6001600160a01b0390811682526020820189905287166040820152606001859052905060018261016001516001811115611e6157611e61615ad3565b1415611ea35760e08201516001600160a01b0316606082015261014082015160c0830151611e8f9190612c80565b6040820152611e9e8282613a1f565b611f3b565b60008261016001516001811115611ebc57611ebc615ad3565b1415611f3b576001600160a01b03851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14611eec5784611f0e565b7f00000000000000000000000000000000000000000000000000000000000000005b6001600160a01b03166060820152610140820151611f2c9087612c80565b6040820152611f3b8282613dfe565b5050600180555050505050565b60026001541415611f9b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b600260015583611fa9612a8a565b600082815261016360205260409020600101546001600160a01b039081169116146120165760405162461bcd60e51b815260206004820152601760248201527f63616c6c657220213d206c697374696e67206f776e657200000000000000000060448201526064016109ea565b6000858152610163602052604090206002015485906001600160a01b031661206e5760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600061016460008881526020019081526020016000206000876001600160a01b03166001600160a01b031681526020019081526020016000206040518060a0016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600282015481526020016003820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200160048201548152505090506000610163600089815260200190815260200160002060405180610180016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016002820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016008820154815260200160098201548152602001600a820160009054906101000a900460ff16600181111561224957612249615ad3565b600181111561225a5761225a615ad3565b8152602001600a820160019054906101000a900460ff16600181111561228257612282615ad3565b600181111561229357612293615ad3565b81525050905081606001516001600160a01b0316866001600160a01b03161480156122c15750816080015185145b61230d5760405162461bcd60e51b815260206004820152601960248201527f696e76616c69642063757272656e6379206f722070726963650000000000000060448201526064016109ea565b6000888152610164602090815260408083206001600160a01b038b1684529091528082208281556001810180546001600160a01b03199081169091556002820184905560038201805490911690556004019190915560608301519083015160808401516119029284928b9283929161238491615d0b565b8760400151613660565b86612397612a8a565b600082815261016360205260409020600101546001600160a01b039081169116146124045760405162461bcd60e51b815260206004820152601760248201527f63616c6c657220213d206c697374696e67206f776e657200000000000000000060448201526064016109ea565b600088815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156124b4576124b4615ad3565b60018111156124c5576124c5615ad3565b8152602001600a820160019054906101000a900460ff1660018111156124ed576124ed615ad3565b60018111156124fe576124fe615ad3565b81525050905060006125158261014001518a612c80565b905060006001836101600151600181111561253257612532615ad3565b149050816125825760405162461bcd60e51b815260206004820152601b60248201527f63616e6e6f742075706461746520746f2030207175616e74697479000000000060448201526064016109ea565b801561263757826080015142106125db5760405162461bcd60e51b815260206004820152601860248201527f61756374696f6e20616c726561647920737461727465642e000000000000000060448201526064016109ea565b888810156126375760405162461bcd60e51b815260206004820152602360248201527f726573657276652070726963652065786365656473206275796f75742070726960448201526231b29760e91b60648201526084016109ea565b60008615612645578661264b565b83608001515b90506040518061018001604052808d8152602001612667612a8a565b6001600160a01b0316815260200185604001516001600160a01b0316815260200185606001518152602001828152602001876000146126af576126aa8884615c2a565b6126b5565b8560a001515b8152602001848152602001896001600160a01b031681526020018b81526020018a815260200185610140015160018111156126f2576126f2615ad3565b8152602001856101600151600181111561270e5761270e615ad3565b905260008d815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a8201805492939192909160ff199091169083818111156127e1576127e1615ad3565b0217905550610160820151600a8201805461ff00191661010083600181111561280c5761280c615ad3565b0217905550505060c0840151831461286c578115612838576128383085602001518660c0015187612fcf565b61285684602001518560400151866060015186886101400151612cb7565b811561286c5761286c8460200151308587612fcf565b83602001516001600160a01b03168c7fbbea26162edf2bc6a0255bf144ec4dd044302a301ef7d32daa835a2ddacfdef060405160405180910390a3505050505050505050505050565b600081815261012d6020526040812061098390613f94565b600082815260fb60205260409020600101546128eb81610997612a8a565b610ffc8383613148565b610160805461290390615da2565b80601f016020809104026020016040519081016040528092919081815260200182805461292f90615da2565b801561297c5780601f106129515761010080835404028352916020019161297c565b820191906000526020600020905b81548152906001019060200180831161295f57829003601f168201915b505050505081565b600061299281610997612a8a565b61271082106129e35760405162461bcd60e51b815260206004820152600c60248201527f696e76616c6964204250532e000000000000000000000000000000000000000060448201526064016109ea565b610162805467ffffffffffffffff84811668010000000000000000026fffffffffffffffffffffffffffffffff19909216908616171790556040517f441ed6470e96704c3f8c9e70c209107078aab3f17311385e886081b91aa7508890610a609085908590918252602082015260400190565b6001600160a01b03163b151590565b60006001600160e01b03198216635a05180f60e01b1480610983575061098382613f9e565b6000612a94613fd3565b905090565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661109957612ad7816001600160a01b03166014613ffd565b612ae2836020613ffd565b604051602001612af3929190615ddd565b60408051601f198184030181529082905262461bcd60e51b82526109ea91600401615b98565b61015f8054906001906000612b2e8385615c2a565b9250508190555090565b6040516301ffc9a760e01b8152636cdb3d1360e11b60048201526000906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612b86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612baa9190615e5e565b15612bb757506000919050565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c269190615e5e565b15612c3357506001919050565b60405162461bcd60e51b815260206004820181905260248201527f746f6b656e206d7573742062652045524331313535206f72204552433732312e60448201526064016109ea565b919050565b600081612c8f57506000610983565b6001836001811115612ca357612ca3615ad3565b14612cae5781611adb565b50600192915050565b30600080836001811115612ccd57612ccd615ad3565b1415612dc757604051627eeac760e11b81526001600160a01b0388811660048301526024820187905285919088169062fdd58e90604401602060405180830381865afa158015612d21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d459190615e80565b10158015612dc0575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dc09190615e5e565b9050612f53565b6001836001811115612ddb57612ddb615ad3565b1415612f53576040516331a9108f60e11b8152600481018690526001600160a01b038089169190881690636352211e90602401602060405180830381865afa158015612e2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4f9190615e99565b6001600160a01b0316148015612f50575060405163020604bf60e21b8152600481018690526001600160a01b03808416919088169063081812fc90602401602060405180830381865afa158015612eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ece9190615e99565b6001600160a01b03161480612f50575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612f2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f509190615e5e565b90505b80612fc65760405162461bcd60e51b815260206004820152602760248201527f696e73756666696369656e7420746f6b656e2062616c616e6365206f7220617060448201527f70726f76616c2e0000000000000000000000000000000000000000000000000060648201526084016109ea565b50505050505050565b60008161014001516001811115612fe857612fe8615ad3565b141561307d5760408082015160608301519151637921219560e11b81526001600160a01b038781166004830152868116602483015260448201939093526064810185905260a06084820152600060a482015291169063f242432a9060c401600060405180830381600087803b15801561306057600080fd5b505af1158015613074573d6000803e3d6000fd5b50505050611afd565b6001816101400151600181111561309657613096615ad3565b1415611afd5760408082015160608301519151635c46a7ef60e11b81526001600160a01b03878116600483015286811660248301526044820193909352608060648201526000608482015291169063b88d4fde9060a401600060405180830381600087803b15801561310757600080fd5b505af115801561311b573d6000803e3d6000fd5b5050505050505050565b61312f82826141a6565b600082815261012d60205260409020610ffc9082614249565b613152828261425e565b600082815261012d60205260409020610ffc90826142ff565b613173612a8a565b8151600090815261016360205260409020600101546001600160a01b039081169116146131ed5760405162461bcd60e51b815260206004820152602260248201527f63616c6c6572206973206e6f7420746865206c697374696e672063726561746f604482015261391760f11b60648201526084016109ea565b805160009081526101636020908152604082208281556001810180546001600160a01b031990811690915560028201805482169055600382018490556004820184905560058201849055600682018490556007820180549091169055600881018390556009810192909255600a909101805461ffff1916905581015160c082015161327a91309184612fcf565b6001613284612a8a565b8251602080850151604080516001600160a01b0392831681526000938101939093529316927f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d910160405180910390a450565b60008260c0015182608001516132ed9190615d0b565b600060c085018181524260a087019081528651835261016360209081526040938490208851815590880151600180830180546001600160a01b039384166001600160a01b031991821617909155958a015160028401805491841691881691909117905560608a0151600384015560808a01516004840155925160058301559251600682015560e08801516007820180549190941694169390931790915561010086015160088301556101208601516009830155610140860151600a8301805494955087949192909160ff19169083818111156133cb576133cb615ad3565b0217905550610160820151600a8201805461ff0019166101008360018111156133f6576133f6615ad3565b02179055505060006080840181815285518252610165602090815260409283902086518155818701516001820180546001600160a01b03199081166001600160a01b03938416179091559488015160028301556060880151600383018054909616911617909355905160049092019190915584015160e085015161347f92503091908487614314565b6000613489612a8a565b6001600160a01b031684600001517f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d866020015186602001516040516134e59291906001600160a01b0392831681529116602082015260400190565b60405180910390a4505050565b604081810180514260a0860190815260008084528651815261016560209081528582208751815581880151600180830180546001600160a01b03199081166001600160a01b039485161790915597516002808501919091556060808c0151600380870180548d16928716929092179091556080808e01516004978801558e5189526101638852978c90208e518155968e015187850180548d169187169190911790559a8d015191860180548b16928516929092179091558b01519884019890985592890151908201559151600583015560c0870151600683015560e087015160078301805490951691161790925561010085015160088301556101208501516009830155610140850151600a83018054929487949360ff191690838181111561361d5761361d615ad3565b0217905550610160820151600a8201805461ff00191661010083600181111561364857613648615ad3565b021790555090505061347f3083602001518386612fcf565b61366c86868385614599565b808660c00181815161367e9190615eb6565b9052508551600090815261016360209081526040918290208851815590880151600180830180546001600160a01b03199081166001600160a01b0394851617909155938a0151600284018054861691841691909117905560608a0151600384015560808a0151600484015560a08a0151600584015560c08a0151600684015560e08a015160078401805490951692169190911790925561010088015160088201556101208801516009820155610140880151600a820180548a9460ff1990911690838181111561375057613750615ad3565b0217905550610160820151600a8201805461ff00191661010083600181111561377b5761377b615ad3565b021790555090505061379485876020015185858a614314565b6137a48660200151858389612fcf565b602080870151604080890151895182516001600160a01b038a81168252958101879052928301879052928416931691907f306e6cde5eb293794d557a3a6c844de939e6206b05e6910451c512852bf654a5906060015b60405180910390a4505050505050565b600054610100900460ff166138755760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b61387d61477b565b565b600054610100900460ff166138ea5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b6138f26147ec565b6138fb81614857565b50565b6110998282613125565b6000611adb838361492a565b60606001600160a01b0383163b6139935760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084016109ea565b600080846001600160a01b0316846040516139ae9190615ecd565b600060405180830381855af49150503d80600081146139e9576040519150601f19603f3d011682016040523d82523d6000602084013e6139ee565b606091505b5091509150613a168282604051806060016040528060278152602001615f6760279139614954565b95945050505050565b8151600090815261016560209081526040808320815160a0810183528154815260018201546001600160a01b03908116948201949094526002820154928101839052600382015490931660608401526004015460808301819052919291613a869190615d0b565b9050600083604001518460800151613a9e9190615d0b565b9050613abf8560c00151866101000151613ab89190615d0b565b838361498d565b613b0b5760405162461bcd60e51b815260206004820152601060248201527f6e6f742077696e6e696e67206269642e0000000000000000000000000000000060448201526064016109ea565b6000856101200151118015613b3457508460c00151856101200151613b309190615d0b565b8110155b15613b4857613b4385856134f2565b613df7565b84516000908152610165602090815260409182902086518155908601516001820180546001600160a01b03199081166001600160a01b0393841617909155928701516002830155606087015160038301805490941691161790915560808501516004909101556101625460a086015167ffffffffffffffff90911690613bcf904290615eb6565b11613cfb576101625460a08601805167ffffffffffffffff90921691613bf6908390615c2a565b9052508451600090815261016360209081526040918290208751815590870151600180830180546001600160a01b03199081166001600160a01b0394851617909155938901516002840180548616918416919091179055606089015160038401556080890151600484015560a0890151600584015560c0890151600684015560e089015160078401805490951692169190911790925561010087015160088201556101208701516009820155610140870151600a82018054899460ff19909116908381811115613cc857613cc8615ad3565b0217905550610160820151600a8201805461ff001916610100836001811115613cf357613cf3615ad3565b021790555050505b60208301517f0000000000000000000000000000000000000000000000000000000000000000906001600160a01b031615801590613d395750600083115b15613d5357613d538660e0015130866020015186856149ef565b613d688660e0015186602001513085856149ef565b8561016001516001811115613d7f57613d7f615ad3565b85602001516001600160a01b031687600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d886040015189604001518a60800151613dcc9190615d0b565b6060808c01516040805194855260208501939093526001600160a01b031691830191909152016137fa565b5050505050565b8160c00151816040015111158015613e1a575060008260c00151115b613e665760405162461bcd60e51b815260206004820152601f60248201527f696e73756666696369656e7420746f6b656e7320696e206c697374696e672e0060448201526064016109ea565b613e8c8160200151826060015183604001518460800151613e879190615d0b565b614b64565b815160009081526101646020908152604080832082850180516001600160a01b0390811686529190935292819020845181559151600180840180549286166001600160a01b0319938416179055918501516002840155606085015160038401805491909516911617909255608083015160049091015561016083015190811115613f1857613f18615ad3565b81602001516001600160a01b031683600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d846040015185604001518660800151613f659190615d0b565b6060878101516040805194855260208501939093526001600160a01b0316838301529051918290030190a45050565b6000610983825490565b60006001600160e01b03198216637965db0b60e01b148061098357506301ffc9a760e01b6001600160e01b0319831614610983565b3360009081526065602052604081205460ff1615613ff8575060131936013560601c90565b503390565b6060600061400c836002615d0b565b614017906002615c2a565b67ffffffffffffffff81111561402f5761402f615417565b6040519080825280601f01601f191660200182016040528015614059576020820181803683370190505b509050600360fc1b8160008151811061407457614074615d2a565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106140a3576140a3615d2a565b60200101906001600160f81b031916908160001a90535060006140c7846002615d0b565b6140d2906001615c2a565b90505b6001811115614157577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061411357614113615d2a565b1a60f81b82828151811061412957614129615d2a565b60200101906001600160f81b031916908160001a90535060049490941c9361415081615ee9565b90506140d5565b508315611adb5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109ea565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661109957600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055614205612a8a565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611adb836001600160a01b038416614ca7565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff161561109957600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff191690556142bb612a8a565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000611adb836001600160a01b038416614cf6565b610161546000906127109061433a90600160a01b900467ffffffffffffffff1685615d0b565b6143449190615f00565b60405163085b49ad60e41b81523060048201526001602482015290915060009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906385b49ad0906044016040805180830381865afa1580156143b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143da9190615f22565b909250905060006127106143ee8388615d0b565b6143f89190615f00565b905060008086604001516001600160a01b0316632a55205a88606001518a6040518363ffffffff1660e01b815260040161443c929190918252602082015260400190565b6040805180830381865afa925050508015614474575060408051601f3d908101601f1916820190925261447191810190615f22565b60015b61447d57614508565b6001600160a01b038216158015906144955750600081115b156145055789856144a68a84615c2a565b6144b09190615c2a565b11156144fe5760405162461bcd60e51b815260206004820152601560248201527f666565732065786365656420746865207072696365000000000000000000000060448201526064016109ea565b8192508093505b50505b610161547f000000000000000000000000000000000000000000000000000000000000000090614546908b908e906001600160a01b03168a856149ef565b6145538a8d8486856149ef565b6145608a8d8887856149ef565b61458b8a8d8d87614571888d615c2a565b61457b9190615c2a565b614585908e615eb6565b856149ef565b505050505050505050505050565b600084610160015160018111156145b2576145b2615ad3565b146145ff5760405162461bcd60e51b815260206004820152601860248201527f63616e6e6f74206275792066726f6d206c697374696e672e000000000000000060448201526064016109ea565b60008460c001511180156146135750600082115b801561462357508360c001518211155b61466f5760405162461bcd60e51b815260206004820152601960248201527f696e76616c696420616d6f756e74206f6620746f6b656e732e0000000000000060448201526064016109ea565b8360a00151421080156146855750836080015142115b6146d15760405162461bcd60e51b815260206004820152601760248201527f6e6f742077697468696e2073616c652077696e646f772e00000000000000000060448201526064016109ea565b60e08401516001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee141561474e578034146147495760405162461bcd60e51b815260206004820152601260248201527f6d73672e76616c756520213d207072696365000000000000000000000000000060448201526064016109ea565b61475d565b61475d838560e0015183614b64565b611afd84602001518560400151866060015185886101400151612cb7565b600054610100900460ff166147e65760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b60018055565b600054610100900460ff1661387d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b600054610100900460ff166148c25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b60005b8151811015611099576001606560008484815181106148e6576148e6615d2a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061492281615d87565b9150506148c5565b600082600001828154811061494157614941615d2a565b9060005260206000200154905092915050565b60608315614963575081611adb565b8251156149735782518084602001fd5b8160405162461bcd60e51b81526004016109ea9190615b98565b60008261499e575082811015611adb565b82821180156149e757506101625468010000000000000000900467ffffffffffffffff16836127106149d08286615eb6565b6149da9190615d0b565b6149e49190615f00565b10155b949350505050565b816149f957613df7565b6001600160a01b03851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415614b58576001600160a01b038416301415614a9457604051632e1a7d4d60e01b8152600481018390526001600160a01b03821690632e1a7d4d90602401600060405180830381600087803b158015614a7157600080fd5b505af1158015614a85573d6000803e3d6000fd5b50505050613b43838383614de9565b6001600160a01b038316301415614b4d57348214614af45760405162461bcd60e51b815260206004820152601360248201527f6d73672e76616c756520213d20616d6f756e740000000000000000000000000060448201526064016109ea565b806001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b158015614b2f57600080fd5b505af1158015614b43573d6000803e3d6000fd5b5050505050613df7565b613b43838383614de9565b613df785858585614f58565b6040516370a0823160e01b81526001600160a01b0384811660048301528291908416906370a0823190602401602060405180830381865afa158015614bad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614bd19190615e80565b10158015614c505750604051636eb1769f60e11b81526001600160a01b03848116600483015230602483015282919084169063dd62ed3e90604401602060405180830381865afa158015614c29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c4d9190615e80565b10155b610ffc5760405162461bcd60e51b815260206004820152602260248201527f696e73756666696369656e742062616c616e6365206f7220616c6c6f77616e63604482015261329760f11b60648201526084016109ea565b6000818152600183016020526040812054614cee57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610983565b506000610983565b60008181526001830160205260408120548015614ddf576000614d1a600183615eb6565b8554909150600090614d2e90600190615eb6565b9050818114614d93576000866000018281548110614d4e57614d4e615d2a565b9060005260206000200154905080876000018481548110614d7157614d71615d2a565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614da457614da4615f50565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610983565b6000915050610983565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114614e36576040519150601f19603f3d011682016040523d82523d6000602084013e614e3b565b606091505b5050905080611afd57816001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015614e7f57600080fd5b505af1158015614e93573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b038881166004830152602482018890528616935063a9059cbb925060440190506020604051808303816000875af1158015614ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614f0c9190615e5e565b611afd5760405162461bcd60e51b815260206004820152600f60248201527f7472616e73666572206661696c6564000000000000000000000000000000000060448201526064016109ea565b816001600160a01b0316836001600160a01b03161415614f7757611afd565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908616906370a0823190602401602060405180830381865afa158015614fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614fe59190615e80565b905060006001600160a01b0385163014615079576040516323b872dd60e01b81526001600160a01b0386811660048301528581166024830152604482018590528716906323b872dd906064016020604051808303816000875af1158015615050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150749190615e5e565b6150ec565b60405163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905287169063a9059cbb906044016020604051808303816000875af11580156150c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150ec9190615e5e565b6040516370a0823160e01b81526001600160a01b0386811660048301529192506000918816906370a0823190602401602060405180830381865afa158015615138573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061515c9190615e80565b905081801561517357506151708484615c2a565b81145b612fc65760405162461bcd60e51b815260206004820152601960248201527f63757272656e6379207472616e73666572206661696c65642e0000000000000060448201526064016109ea565b8280546151cb90615da2565b90600052602060002090601f0160209004810192826151ed5760008555615233565b82601f1061520657805160ff1916838001178555615233565b82800160010185558215615233579182015b82811115615233578251825591602001919060010190615218565b5061523f9291506152b7565b5090565b82805461524f90615da2565b90600052602060002090601f0160209004810192826152715760008555615233565b82601f1061528a5782800160ff19823516178555615233565b82800160010185558215615233579182015b8281111561523357823582559160200191906001019061529c565b5b8082111561523f57600081556001016152b8565b6000602082840312156152de57600080fd5b81356001600160e01b031981168114611adb57600080fd5b6001600160a01b03811681146138fb57600080fd5b8035612c7b816152f6565b60008083601f84011261532857600080fd5b50813567ffffffffffffffff81111561534057600080fd5b60208301915083602082850101111561535857600080fd5b9250929050565b60008060008060006080868803121561537757600080fd5b8535615382816152f6565b94506020860135615392816152f6565b935060408601359250606086013567ffffffffffffffff8111156153b557600080fd5b6153c188828901615316565b969995985093965092949392505050565b600080604083850312156153e557600080fd5b82356153f0816152f6565b946020939093013593505050565b60006020828403121561541057600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051610120810167ffffffffffffffff8111828210171561545157615451615417565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561548057615480615417565b604052919050565b803560028110612c7b57600080fd5b600061012082840312156154aa57600080fd5b6154b261542d565b6154bb8361530b565b8152602083013560208201526040830135604082015260608301356060820152608083013560808201526154f160a0840161530b565b60a082015260c083013560c082015260e083013560e0820152610100615518818501615488565b908201529392505050565b6000806040838503121561553657600080fd5b823591506020830135615548816152f6565b809150509250929050565b60006020828403121561556557600080fd5b8135611adb816152f6565b600080600080600060a0868803121561558857600080fd5b85359450602086013561559a816152f6565b93506040860135925060608601356155b1816152f6565b949793965091946080013592915050565b600067ffffffffffffffff8311156155dc576155dc615417565b6155ef601f8401601f1916602001615457565b905082815283838301111561560357600080fd5b828260208301376000602084830101529392505050565b600067ffffffffffffffff82111561563457615634615417565b5060051b60200190565b600080600080600060a0868803121561565657600080fd5b8535615661816152f6565b945060208681013567ffffffffffffffff8082111561567f57600080fd5b818901915089601f83011261569357600080fd5b6156a18a83358585016155c2565b965060408901359150808211156156b757600080fd5b508701601f810189136156c957600080fd5b80356156dc6156d78261561a565b615457565b81815260059190911b8201830190838101908b8311156156fb57600080fd5b928401925b82841015615722578335615713816152f6565b82529284019290840190615700565b80975050505050506155b16060870161530b565b6000806040838503121561574957600080fd5b50508035926020909101359150565b6000806020838503121561576b57600080fd5b823567ffffffffffffffff81111561578257600080fd5b61578e85828601615316565b90969095509350505050565b600080602083850312156157ad57600080fd5b823567ffffffffffffffff808211156157c557600080fd5b818501915085601f8301126157d957600080fd5b8135818111156157e857600080fd5b8660208260051b85010111156157fd57600080fd5b60209290920196919550909350505050565b60005b8381101561582a578181015183820152602001615812565b83811115611afd5750506000910152565b6000815180845261585381602086016020860161580f565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156158bc57603f198886030184526158aa85835161583b565b9450928501929085019060010161588e565b5092979650505050505050565b600080600080608085870312156158df57600080fd5b843593506020850135925060408501356158f8816152f6565b9396929550929360600135925050565b6000806000806080858703121561591e57600080fd5b843593506020850135615930816152f6565b925060408501356158f8816152f6565b600082601f83011261595157600080fd5b813560206159616156d78361561a565b82815260059290921b8401810191818101908684111561598057600080fd5b8286015b8481101561599b5780358352918301918301615984565b509695505050505050565b600082601f8301126159b757600080fd5b611adb838335602085016155c2565b600080600080600060a086880312156159de57600080fd5b85356159e9816152f6565b945060208601356159f9816152f6565b9350604086013567ffffffffffffffff80821115615a1657600080fd5b615a2289838a01615940565b94506060880135915080821115615a3857600080fd5b615a4489838a01615940565b93506080880135915080821115615a5a57600080fd5b50615a67888289016159a6565b9150509295509295909350565b600080600080600080600060e0888a031215615a8f57600080fd5b873596506020880135955060408801359450606088013593506080880135615ab6816152f6565b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052602160045260246000fd5b600281106138fb57634e487b7160e01b600052602160045260246000fd5b615b1081615ae9565b9052565b6000610180820190508d82526001600160a01b03808e166020840152808d1660408401528b60608401528a60808401528960a08401528860c084015280881660e0840152508561010083015284610120830152615b7084615ae9565b83610140830152615b8083615ae9565b826101608301529d9c50505050505050505050505050565b602081526000611adb602083018461583b565b600080600080600060a08688031215615bc357600080fd5b8535615bce816152f6565b94506020860135615bde816152f6565b93506040860135925060608601359150608086013567ffffffffffffffff811115615c0857600080fd5b615a67888289016159a6565b634e487b7160e01b600052601160045260246000fd5b60008219821115615c3d57615c3d615c14565b500190565b81518152602080830151610180830191615c66908401826001600160a01b03169052565b506040830151615c8160408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151615cc460e08401826001600160a01b03169052565b506101008381015190830152610120808401519083015261014080840151615cee82850182615b07565b505061016080840151615d0382850182615b07565b505092915050565b6000816000190483118215151615615d2557615d25615c14565b500290565b634e487b7160e01b600052603260045260246000fd5b6000808335601e19843603018112615d5757600080fd5b83018035915067ffffffffffffffff821115615d7257600080fd5b60200191503681900382131561535857600080fd5b6000600019821415615d9b57615d9b615c14565b5060010190565b600181811c90821680615db657607f821691505b60208210811415615dd757634e487b7160e01b600052602260045260246000fd5b50919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615e1581601785016020880161580f565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615e5281602884016020880161580f565b01602801949350505050565b600060208284031215615e7057600080fd5b81518015158114611adb57600080fd5b600060208284031215615e9257600080fd5b5051919050565b600060208284031215615eab57600080fd5b8151611adb816152f6565b600082821015615ec857615ec8615c14565b500390565b60008251615edf81846020870161580f565b9190910192915050565b600081615ef857615ef8615c14565b506000190190565b600082615f1d57634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215615f3557600080fd5b8251615f40816152f6565b6020939093015192949293505050565b634e487b7160e01b600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c634300080c000a0000000000000000000000009c3c9283d3e44854697cd22d3faa240cfb0328890000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea

Deployed Bytecode

0x60806040526004361061026a5760003560e01c8063ac9650d811610153578063d45573f6116100cb578063ea0e02411161007f578063ec91f2a411610064578063ec91f2a4146108df578063f23a6e6114610901578063fd967f471461092d57600080fd5b8063ea0e02411461085e578063ebdfbce51461087e57600080fd5b8063d547741f116100b0578063d547741f14610775578063de74e57b14610795578063e8a3d4851461083c57600080fd5b8063d45573f6146106b5578063d4ac9b8c146106ed57600080fd5b8063c4b5b15f11610122578063ca15c87311610107578063ca15c8731461062e578063cb2ef6f71461064e578063cf8267b11461068157600080fd5b8063c4b5b15f146105f7578063c78b616c1461061757600080fd5b8063ac9650d81461056b578063acb1ba6714610598578063b13c0e63146105ab578063bc197c81146105cb57600080fd5b80636bab66ae116101e65780639010d07c116101b5578063938e3d7b1161019a578063938e3d7b1461051a578063a0a8e4601461053a578063a217fddf1461055657600080fd5b80639010d07c1461049c57806391d14854146104d457600080fd5b80636bab66ae146104295780637506c84a146104495780637687ab02146104695780638c8a84e21461047c57600080fd5b8063296f4e161161023d57806336568abe1161022257806336568abe146103895780634e03f28d146103a9578063572b6c05146103f057600080fd5b8063296f4e16146103495780632f2ff15d1461036957600080fd5b806301ffc9a71461026f578063150b7a02146102a45780631e7ac488146102e9578063248a9ca31461030b575b600080fd5b34801561027b57600080fd5b5061028f61028a3660046152cc565b610943565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102d06102bf36600461535f565b630a85bd0160e11b95945050505050565b6040516001600160e01b0319909116815260200161029b565b3480156102f557600080fd5b506103096103043660046153d2565b610989565b005b34801561031757600080fd5b5061033b6103263660046153fe565b600090815260fb602052604090206001015490565b60405190815260200161029b565b34801561035557600080fd5b50610309610364366004615497565b610a6d565b34801561037557600080fd5b50610309610384366004615523565b610fd4565b34801561039557600080fd5b506103096103a4366004615523565b611001565b3480156103b557600080fd5b50610162546103d79068010000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161029b565b3480156103fc57600080fd5b5061028f61040b366004615553565b6001600160a01b031660009081526065602052604090205460ff1690565b34801561043557600080fd5b50610309610444366004615523565b61109d565b34801561045557600080fd5b506103096104643660046153fe565b611418565b610309610477366004615570565b6116a5565b34801561048857600080fd5b5061030961049736600461563e565b611910565b3480156104a857600080fd5b506104bc6104b7366004615736565b611ac2565b6040516001600160a01b03909116815260200161029b565b3480156104e057600080fd5b5061028f6104ef366004615523565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561052657600080fd5b50610309610535366004615758565b611ae2565b34801561054657600080fd5b506040516001815260200161029b565b34801561056257600080fd5b5061033b600081565b34801561057757600080fd5b5061058b61058636600461579a565b611b03565b60405161029b9190615867565b6103096105a63660046158c9565b611bf8565b3480156105b757600080fd5b506103096105c6366004615908565b611f48565b3480156105d757600080fd5b506102d06105e63660046159c6565b63bc197c8160e01b95945050505050565b34801561060357600080fd5b50610309610612366004615a74565b61238e565b34801561062357600080fd5b5061033b61015f5481565b34801561063a57600080fd5b5061033b6106493660046153fe565b6128b5565b34801561065a57600080fd5b507f4d61726b6574706c61636500000000000000000000000000000000000000000061033b565b34801561068d57600080fd5b506104bc7f0000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea81565b3480156106c157600080fd5b5061016154604080516001600160a01b0383168152600160a01b90920461ffff1660208301520161029b565b3480156106f957600080fd5b506107436107083660046153fe565b610165602052600090815260409020805460018201546002830154600384015460049094015492936001600160a01b03928316939192169085565b604080519586526001600160a01b0394851660208701528501929092529091166060830152608082015260a00161029b565b34801561078157600080fd5b50610309610790366004615523565b6128cd565b3480156107a157600080fd5b506108246107b03660046153fe565b61016360205260009081526040902080546001820154600283015460038401546004850154600586015460068701546007880154600889015460098a0154600a909a015498996001600160a01b03988916999789169896979596949593949092169290919060ff808216916101009004168c565b60405161029b9c9b9a99989796959493929190615b14565b34801561084857600080fd5b506108516128f5565b60405161029b9190615b98565b34801561086a57600080fd5b50610309610879366004615736565b612984565b34801561088a57600080fd5b50610743610899366004615523565b6101646020908152600092835260408084209091529082529020805460018201546002830154600384015460049094015492936001600160a01b03928316939192169085565b3480156108eb57600080fd5b50610162546103d79067ffffffffffffffff1681565b34801561090d57600080fd5b506102d061091c366004615bab565b63f23a6e6160e01b95945050505050565b34801561093957600080fd5b506103d761271081565b60006001600160e01b03198216630271189760e51b148061097457506001600160e01b03198216630a85bd0160e11b145b80610983575061098382612a65565b92915050565b600061099c81610997612a8a565b612a99565b6127108211156109f35760405162461bcd60e51b815260206004820152600d60248201527f627073203c3d2031303030302e0000000000000000000000000000000000000060448201526064015b60405180910390fd5b61016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b03851690811790915560408051918252602082018490527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f1830491015b60405180910390a1505050565b6000816060015111610ac15760405162461bcd60e51b815260206004820152601260248201527f656e642074696d65206d757374203e20302e000000000000000000000000000060448201526064016109ea565b6000610acb612b19565b90506000610ad7612a8a565b90506000610ae88460000151612b38565b90506000610afa828660800151612c80565b905060008111610b4c5760405162461bcd60e51b815260206004820152601960248201527f6c697374696e6720696e76616c6964207175616e746974792e0000000000000060448201526064016109ea565b600080527f0bf587d4e74e99cde8c6e4c054a5635772877ff68dbace54cfa272aabdba99186020527f2e5a8a6546a6579ddcdee1c230e851e90e02911b1edbb4e6bce29e62ce9ef8cf5460ff1680610bcb5750610bcb7ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c6104ef612a8a565b610c175760405162461bcd60e51b815260206004820152601a60248201527f646f6573206e6f742068617665204c49535445525f524f4c452e00000000000060448201526064016109ea565b600080527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb6020527f4be4ab7155dfb840c7e9b0c93044a57446f8382ea3b9bde86d10b5704d906e775460ff1680610ca7575084516001600160a01b031660009081527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb602052604090205460ff165b610cf35760405162461bcd60e51b815260206004820152601160248201527f756e617070726f7665642061737365742e00000000000000000000000000000060448201526064016109ea565b610d0883866000015187602001518486612cb7565b600042866040015110610d1f578560400151610d21565b425b90506000604051806101800160405280878152602001866001600160a01b0316815260200188600001516001600160a01b0316815260200188602001518152602001838152602001886060015184610d799190615c2a565b81526020018481526020018860a001516001600160a01b031681526020018860c0015181526020018860e001518152602001856001811115610dbd57610dbd615ad3565b81526020018861010001516001811115610dd957610dd9615ad3565b9052600087815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a82018054949550859492939192909160ff19909116908381811115610eb157610eb1615ad3565b0217905550610160820151600a8201805461ff001916610100836001811115610edc57610edc615ad3565b021790555060019150610eec9050565b8161016001516001811115610f0357610f03615ad3565b1415610f7b578061010001518161012001511015610f6f5760405162461bcd60e51b815260206004820152602360248201527f726573657276652070726963652065786365656473206275796f75742070726960448201526231b29760e91b60648201526084016109ea565b610f7b85308584612fcf565b846001600160a01b031687600001516001600160a01b0316877f0c5bc74ccdf848b38eb526a154b85085e1d61addf1d100cba2074e039c0b634084604051610fc39190615c42565b60405180910390a450505050505050565b600082815260fb6020526040902060010154610ff281610997612a8a565b610ffc8383613125565b505050565b611009612a8a565b6001600160a01b0316816001600160a01b03161461108f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016109ea565b6110998282613148565b5050565b600260015414156110f05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b60026001819055600083815261016360205260409020015482906001600160a01b031661114d5760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600083815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156111fd576111fd615ad3565b600181111561120e5761120e615ad3565b8152602001600a820160019054906101000a900460ff16600181111561123657611236615ad3565b600181111561124757611247615ad3565b90525090506001816101600151600181111561126557611265615ad3565b146112b25760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420616e2061756374696f6e2e000000000000000000000000000000000060448201526064016109ea565b600084815261016560209081526040808320815160a0810183528154815260018201546001600160a01b03908116948201949094526002820154928101929092526003810154909216606082015260049091015460808083019190915283015190919042108061132d575060208201516001600160a01b0316155b905080156113435761133e8361316b565b61140c565b428360a00151106113bc5760405162461bcd60e51b815260206004820152602960248201527f63616e6e6f7420636c6f73652061756374696f6e206265666f7265206974206860448201527f617320656e6465642e000000000000000000000000000000000000000000000060648201526084016109ea565b82602001516001600160a01b0316856001600160a01b031614156113e4576113e483836132d7565b81602001516001600160a01b0316856001600160a01b0316141561140c5761140c83836134f2565b50506001805550505050565b80611421612a8a565b600082815261016360205260409020600101546001600160a01b0390811691161461148e5760405162461bcd60e51b815260206004820152601760248201527f63616c6c657220213d206c697374696e67206f776e657200000000000000000060448201526064016109ea565b600082815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff169081111561153e5761153e615ad3565b600181111561154f5761154f615ad3565b8152602001600a820160019054906101000a900460ff16600181111561157757611577615ad3565b600181111561158857611588615ad3565b9052509050600081610160015160018111156115a6576115a6615ad3565b146115f35760405162461bcd60e51b815260206004820152601260248201527f6e6f7420646972656374206c697374696e67000000000000000000000000000060448201526064016109ea565b6000838152610163602090815260408083208381556001810180546001600160a01b0319908116909155600282018054821690556003820185905560048201859055600582018590556006820185905560078201805490911690556008810184905560098101849055600a01805461ffff191690559083015190516001600160a01b039091169185917f58b0852506006c4be6c7ae72afcd195d9e64d7f5d8947905e914b778e47b7cf39190a3505050565b600260015414156116f85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b60026001819055600086815261016360205260409020015485906001600160a01b03166117555760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600086815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff169081111561180557611805615ad3565b600181111561181657611816615ad3565b8152602001600a820160019054906101000a900460ff16600181111561183e5761183e615ad3565b600181111561184f5761184f615ad3565b9052509050600061185e612a8a565b90508160e001516001600160a01b0316856001600160a01b03161480156118945750858261012001516118919190615d0b565b84145b6118e05760405162461bcd60e51b815260206004820152601960248201527f696e76616c69642063757272656e6379206f722070726963650000000000000060448201526064016109ea565b6119028282898560e001518a8761012001516118fc9190615d0b565b8b613660565b505060018055505050505050565b600054610100900460ff1661192b5760005460ff161561192f565b303b155b6119a15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016109ea565b600054610100900460ff161580156119c3576000805461ffff19166101011790555b6119cb61380a565b6119d48461387f565b61016280546fffffffffffffffffffffffffffffffff19166901f400000000000003841790558451611a0e906101609060208801906151bf565b5061016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b038516179055611a526000876138fe565b611a7d7ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c60006138fe565b611aa87f86d5cf0a6bdc8d859ba3bdc97043337c82a0e609035f378e419298b6a3e00ae660006138fe565b8015611aba576000805461ff00191690555b505050505050565b600082815261012d60205260408120611adb9083613908565b9392505050565b6000611af081610997612a8a565b611afd6101608484615243565b50505050565b60608167ffffffffffffffff811115611b1e57611b1e615417565b604051908082528060200260200182016040528015611b5157816020015b6060815260200190600190039081611b3c5790505b50905060005b82811015611bf157611bc130858584818110611b7557611b75615d2a565b9050602002810190611b879190615d40565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061391492505050565b828281518110611bd357611bd3615d2a565b60200260200101819052508080611be990615d87565b915050611b57565b5092915050565b60026001541415611c4b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b60026001819055600085815261016360205260409020015484906001600160a01b0316611ca85760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600085815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff1690811115611d5857611d58615ad3565b6001811115611d6957611d69615ad3565b8152602001600a820160019054906101000a900460ff166001811115611d9157611d91615ad3565b6001811115611da257611da2615ad3565b815250509050428160a00151118015611dbe5750428160800151105b611e0a5760405162461bcd60e51b815260206004820152601160248201527f696e616374697665206c697374696e672e00000000000000000000000000000060448201526064016109ea565b60006040518060a00160405280888152602001611e25612a8a565b6001600160a01b0390811682526020820189905287166040820152606001859052905060018261016001516001811115611e6157611e61615ad3565b1415611ea35760e08201516001600160a01b0316606082015261014082015160c0830151611e8f9190612c80565b6040820152611e9e8282613a1f565b611f3b565b60008261016001516001811115611ebc57611ebc615ad3565b1415611f3b576001600160a01b03851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14611eec5784611f0e565b7f0000000000000000000000009c3c9283d3e44854697cd22d3faa240cfb0328895b6001600160a01b03166060820152610140820151611f2c9087612c80565b6040820152611f3b8282613dfe565b5050600180555050505050565b60026001541415611f9b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b600260015583611fa9612a8a565b600082815261016360205260409020600101546001600160a01b039081169116146120165760405162461bcd60e51b815260206004820152601760248201527f63616c6c657220213d206c697374696e67206f776e657200000000000000000060448201526064016109ea565b6000858152610163602052604090206002015485906001600160a01b031661206e5760405162461bcd60e51b815260206004820152600b60248201526a6c697374696e6720444e4560a81b60448201526064016109ea565b600061016460008881526020019081526020016000206000876001600160a01b03166001600160a01b031681526020019081526020016000206040518060a0016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600282015481526020016003820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200160048201548152505090506000610163600089815260200190815260200160002060405180610180016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016002820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016008820154815260200160098201548152602001600a820160009054906101000a900460ff16600181111561224957612249615ad3565b600181111561225a5761225a615ad3565b8152602001600a820160019054906101000a900460ff16600181111561228257612282615ad3565b600181111561229357612293615ad3565b81525050905081606001516001600160a01b0316866001600160a01b03161480156122c15750816080015185145b61230d5760405162461bcd60e51b815260206004820152601960248201527f696e76616c69642063757272656e6379206f722070726963650000000000000060448201526064016109ea565b6000888152610164602090815260408083206001600160a01b038b1684529091528082208281556001810180546001600160a01b03199081169091556002820184905560038201805490911690556004019190915560608301519083015160808401516119029284928b9283929161238491615d0b565b8760400151613660565b86612397612a8a565b600082815261016360205260409020600101546001600160a01b039081169116146124045760405162461bcd60e51b815260206004820152601760248201527f63616c6c657220213d206c697374696e67206f776e657200000000000000000060448201526064016109ea565b600088815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156124b4576124b4615ad3565b60018111156124c5576124c5615ad3565b8152602001600a820160019054906101000a900460ff1660018111156124ed576124ed615ad3565b60018111156124fe576124fe615ad3565b81525050905060006125158261014001518a612c80565b905060006001836101600151600181111561253257612532615ad3565b149050816125825760405162461bcd60e51b815260206004820152601b60248201527f63616e6e6f742075706461746520746f2030207175616e74697479000000000060448201526064016109ea565b801561263757826080015142106125db5760405162461bcd60e51b815260206004820152601860248201527f61756374696f6e20616c726561647920737461727465642e000000000000000060448201526064016109ea565b888810156126375760405162461bcd60e51b815260206004820152602360248201527f726573657276652070726963652065786365656473206275796f75742070726960448201526231b29760e91b60648201526084016109ea565b60008615612645578661264b565b83608001515b90506040518061018001604052808d8152602001612667612a8a565b6001600160a01b0316815260200185604001516001600160a01b0316815260200185606001518152602001828152602001876000146126af576126aa8884615c2a565b6126b5565b8560a001515b8152602001848152602001896001600160a01b031681526020018b81526020018a815260200185610140015160018111156126f2576126f2615ad3565b8152602001856101600151600181111561270e5761270e615ad3565b905260008d815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a8201805492939192909160ff199091169083818111156127e1576127e1615ad3565b0217905550610160820151600a8201805461ff00191661010083600181111561280c5761280c615ad3565b0217905550505060c0840151831461286c578115612838576128383085602001518660c0015187612fcf565b61285684602001518560400151866060015186886101400151612cb7565b811561286c5761286c8460200151308587612fcf565b83602001516001600160a01b03168c7fbbea26162edf2bc6a0255bf144ec4dd044302a301ef7d32daa835a2ddacfdef060405160405180910390a3505050505050505050505050565b600081815261012d6020526040812061098390613f94565b600082815260fb60205260409020600101546128eb81610997612a8a565b610ffc8383613148565b610160805461290390615da2565b80601f016020809104026020016040519081016040528092919081815260200182805461292f90615da2565b801561297c5780601f106129515761010080835404028352916020019161297c565b820191906000526020600020905b81548152906001019060200180831161295f57829003601f168201915b505050505081565b600061299281610997612a8a565b61271082106129e35760405162461bcd60e51b815260206004820152600c60248201527f696e76616c6964204250532e000000000000000000000000000000000000000060448201526064016109ea565b610162805467ffffffffffffffff84811668010000000000000000026fffffffffffffffffffffffffffffffff19909216908616171790556040517f441ed6470e96704c3f8c9e70c209107078aab3f17311385e886081b91aa7508890610a609085908590918252602082015260400190565b6001600160a01b03163b151590565b60006001600160e01b03198216635a05180f60e01b1480610983575061098382613f9e565b6000612a94613fd3565b905090565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661109957612ad7816001600160a01b03166014613ffd565b612ae2836020613ffd565b604051602001612af3929190615ddd565b60408051601f198184030181529082905262461bcd60e51b82526109ea91600401615b98565b61015f8054906001906000612b2e8385615c2a565b9250508190555090565b6040516301ffc9a760e01b8152636cdb3d1360e11b60048201526000906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612b86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612baa9190615e5e565b15612bb757506000919050565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c269190615e5e565b15612c3357506001919050565b60405162461bcd60e51b815260206004820181905260248201527f746f6b656e206d7573742062652045524331313535206f72204552433732312e60448201526064016109ea565b919050565b600081612c8f57506000610983565b6001836001811115612ca357612ca3615ad3565b14612cae5781611adb565b50600192915050565b30600080836001811115612ccd57612ccd615ad3565b1415612dc757604051627eeac760e11b81526001600160a01b0388811660048301526024820187905285919088169062fdd58e90604401602060405180830381865afa158015612d21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d459190615e80565b10158015612dc0575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dc09190615e5e565b9050612f53565b6001836001811115612ddb57612ddb615ad3565b1415612f53576040516331a9108f60e11b8152600481018690526001600160a01b038089169190881690636352211e90602401602060405180830381865afa158015612e2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4f9190615e99565b6001600160a01b0316148015612f50575060405163020604bf60e21b8152600481018690526001600160a01b03808416919088169063081812fc90602401602060405180830381865afa158015612eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ece9190615e99565b6001600160a01b03161480612f50575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612f2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f509190615e5e565b90505b80612fc65760405162461bcd60e51b815260206004820152602760248201527f696e73756666696369656e7420746f6b656e2062616c616e6365206f7220617060448201527f70726f76616c2e0000000000000000000000000000000000000000000000000060648201526084016109ea565b50505050505050565b60008161014001516001811115612fe857612fe8615ad3565b141561307d5760408082015160608301519151637921219560e11b81526001600160a01b038781166004830152868116602483015260448201939093526064810185905260a06084820152600060a482015291169063f242432a9060c401600060405180830381600087803b15801561306057600080fd5b505af1158015613074573d6000803e3d6000fd5b50505050611afd565b6001816101400151600181111561309657613096615ad3565b1415611afd5760408082015160608301519151635c46a7ef60e11b81526001600160a01b03878116600483015286811660248301526044820193909352608060648201526000608482015291169063b88d4fde9060a401600060405180830381600087803b15801561310757600080fd5b505af115801561311b573d6000803e3d6000fd5b5050505050505050565b61312f82826141a6565b600082815261012d60205260409020610ffc9082614249565b613152828261425e565b600082815261012d60205260409020610ffc90826142ff565b613173612a8a565b8151600090815261016360205260409020600101546001600160a01b039081169116146131ed5760405162461bcd60e51b815260206004820152602260248201527f63616c6c6572206973206e6f7420746865206c697374696e672063726561746f604482015261391760f11b60648201526084016109ea565b805160009081526101636020908152604082208281556001810180546001600160a01b031990811690915560028201805482169055600382018490556004820184905560058201849055600682018490556007820180549091169055600881018390556009810192909255600a909101805461ffff1916905581015160c082015161327a91309184612fcf565b6001613284612a8a565b8251602080850151604080516001600160a01b0392831681526000938101939093529316927f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d910160405180910390a450565b60008260c0015182608001516132ed9190615d0b565b600060c085018181524260a087019081528651835261016360209081526040938490208851815590880151600180830180546001600160a01b039384166001600160a01b031991821617909155958a015160028401805491841691881691909117905560608a0151600384015560808a01516004840155925160058301559251600682015560e08801516007820180549190941694169390931790915561010086015160088301556101208601516009830155610140860151600a8301805494955087949192909160ff19169083818111156133cb576133cb615ad3565b0217905550610160820151600a8201805461ff0019166101008360018111156133f6576133f6615ad3565b02179055505060006080840181815285518252610165602090815260409283902086518155818701516001820180546001600160a01b03199081166001600160a01b03938416179091559488015160028301556060880151600383018054909616911617909355905160049092019190915584015160e085015161347f92503091908487614314565b6000613489612a8a565b6001600160a01b031684600001517f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d866020015186602001516040516134e59291906001600160a01b0392831681529116602082015260400190565b60405180910390a4505050565b604081810180514260a0860190815260008084528651815261016560209081528582208751815581880151600180830180546001600160a01b03199081166001600160a01b039485161790915597516002808501919091556060808c0151600380870180548d16928716929092179091556080808e01516004978801558e5189526101638852978c90208e518155968e015187850180548d169187169190911790559a8d015191860180548b16928516929092179091558b01519884019890985592890151908201559151600583015560c0870151600683015560e087015160078301805490951691161790925561010085015160088301556101208501516009830155610140850151600a83018054929487949360ff191690838181111561361d5761361d615ad3565b0217905550610160820151600a8201805461ff00191661010083600181111561364857613648615ad3565b021790555090505061347f3083602001518386612fcf565b61366c86868385614599565b808660c00181815161367e9190615eb6565b9052508551600090815261016360209081526040918290208851815590880151600180830180546001600160a01b03199081166001600160a01b0394851617909155938a0151600284018054861691841691909117905560608a0151600384015560808a0151600484015560a08a0151600584015560c08a0151600684015560e08a015160078401805490951692169190911790925561010088015160088201556101208801516009820155610140880151600a820180548a9460ff1990911690838181111561375057613750615ad3565b0217905550610160820151600a8201805461ff00191661010083600181111561377b5761377b615ad3565b021790555090505061379485876020015185858a614314565b6137a48660200151858389612fcf565b602080870151604080890151895182516001600160a01b038a81168252958101879052928301879052928416931691907f306e6cde5eb293794d557a3a6c844de939e6206b05e6910451c512852bf654a5906060015b60405180910390a4505050505050565b600054610100900460ff166138755760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b61387d61477b565b565b600054610100900460ff166138ea5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b6138f26147ec565b6138fb81614857565b50565b6110998282613125565b6000611adb838361492a565b60606001600160a01b0383163b6139935760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084016109ea565b600080846001600160a01b0316846040516139ae9190615ecd565b600060405180830381855af49150503d80600081146139e9576040519150601f19603f3d011682016040523d82523d6000602084013e6139ee565b606091505b5091509150613a168282604051806060016040528060278152602001615f6760279139614954565b95945050505050565b8151600090815261016560209081526040808320815160a0810183528154815260018201546001600160a01b03908116948201949094526002820154928101839052600382015490931660608401526004015460808301819052919291613a869190615d0b565b9050600083604001518460800151613a9e9190615d0b565b9050613abf8560c00151866101000151613ab89190615d0b565b838361498d565b613b0b5760405162461bcd60e51b815260206004820152601060248201527f6e6f742077696e6e696e67206269642e0000000000000000000000000000000060448201526064016109ea565b6000856101200151118015613b3457508460c00151856101200151613b309190615d0b565b8110155b15613b4857613b4385856134f2565b613df7565b84516000908152610165602090815260409182902086518155908601516001820180546001600160a01b03199081166001600160a01b0393841617909155928701516002830155606087015160038301805490941691161790915560808501516004909101556101625460a086015167ffffffffffffffff90911690613bcf904290615eb6565b11613cfb576101625460a08601805167ffffffffffffffff90921691613bf6908390615c2a565b9052508451600090815261016360209081526040918290208751815590870151600180830180546001600160a01b03199081166001600160a01b0394851617909155938901516002840180548616918416919091179055606089015160038401556080890151600484015560a0890151600584015560c0890151600684015560e089015160078401805490951692169190911790925561010087015160088201556101208701516009820155610140870151600a82018054899460ff19909116908381811115613cc857613cc8615ad3565b0217905550610160820151600a8201805461ff001916610100836001811115613cf357613cf3615ad3565b021790555050505b60208301517f0000000000000000000000009c3c9283d3e44854697cd22d3faa240cfb032889906001600160a01b031615801590613d395750600083115b15613d5357613d538660e0015130866020015186856149ef565b613d688660e0015186602001513085856149ef565b8561016001516001811115613d7f57613d7f615ad3565b85602001516001600160a01b031687600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d886040015189604001518a60800151613dcc9190615d0b565b6060808c01516040805194855260208501939093526001600160a01b031691830191909152016137fa565b5050505050565b8160c00151816040015111158015613e1a575060008260c00151115b613e665760405162461bcd60e51b815260206004820152601f60248201527f696e73756666696369656e7420746f6b656e7320696e206c697374696e672e0060448201526064016109ea565b613e8c8160200151826060015183604001518460800151613e879190615d0b565b614b64565b815160009081526101646020908152604080832082850180516001600160a01b0390811686529190935292819020845181559151600180840180549286166001600160a01b0319938416179055918501516002840155606085015160038401805491909516911617909255608083015160049091015561016083015190811115613f1857613f18615ad3565b81602001516001600160a01b031683600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d846040015185604001518660800151613f659190615d0b565b6060878101516040805194855260208501939093526001600160a01b0316838301529051918290030190a45050565b6000610983825490565b60006001600160e01b03198216637965db0b60e01b148061098357506301ffc9a760e01b6001600160e01b0319831614610983565b3360009081526065602052604081205460ff1615613ff8575060131936013560601c90565b503390565b6060600061400c836002615d0b565b614017906002615c2a565b67ffffffffffffffff81111561402f5761402f615417565b6040519080825280601f01601f191660200182016040528015614059576020820181803683370190505b509050600360fc1b8160008151811061407457614074615d2a565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106140a3576140a3615d2a565b60200101906001600160f81b031916908160001a90535060006140c7846002615d0b565b6140d2906001615c2a565b90505b6001811115614157577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061411357614113615d2a565b1a60f81b82828151811061412957614129615d2a565b60200101906001600160f81b031916908160001a90535060049490941c9361415081615ee9565b90506140d5565b508315611adb5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109ea565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661109957600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055614205612a8a565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611adb836001600160a01b038416614ca7565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff161561109957600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff191690556142bb612a8a565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000611adb836001600160a01b038416614cf6565b610161546000906127109061433a90600160a01b900467ffffffffffffffff1685615d0b565b6143449190615f00565b60405163085b49ad60e41b81523060048201526001602482015290915060009081906001600160a01b037f0000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea16906385b49ad0906044016040805180830381865afa1580156143b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143da9190615f22565b909250905060006127106143ee8388615d0b565b6143f89190615f00565b905060008086604001516001600160a01b0316632a55205a88606001518a6040518363ffffffff1660e01b815260040161443c929190918252602082015260400190565b6040805180830381865afa925050508015614474575060408051601f3d908101601f1916820190925261447191810190615f22565b60015b61447d57614508565b6001600160a01b038216158015906144955750600081115b156145055789856144a68a84615c2a565b6144b09190615c2a565b11156144fe5760405162461bcd60e51b815260206004820152601560248201527f666565732065786365656420746865207072696365000000000000000000000060448201526064016109ea565b8192508093505b50505b610161547f0000000000000000000000009c3c9283d3e44854697cd22d3faa240cfb03288990614546908b908e906001600160a01b03168a856149ef565b6145538a8d8486856149ef565b6145608a8d8887856149ef565b61458b8a8d8d87614571888d615c2a565b61457b9190615c2a565b614585908e615eb6565b856149ef565b505050505050505050505050565b600084610160015160018111156145b2576145b2615ad3565b146145ff5760405162461bcd60e51b815260206004820152601860248201527f63616e6e6f74206275792066726f6d206c697374696e672e000000000000000060448201526064016109ea565b60008460c001511180156146135750600082115b801561462357508360c001518211155b61466f5760405162461bcd60e51b815260206004820152601960248201527f696e76616c696420616d6f756e74206f6620746f6b656e732e0000000000000060448201526064016109ea565b8360a00151421080156146855750836080015142115b6146d15760405162461bcd60e51b815260206004820152601760248201527f6e6f742077697468696e2073616c652077696e646f772e00000000000000000060448201526064016109ea565b60e08401516001600160a01b031673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee141561474e578034146147495760405162461bcd60e51b815260206004820152601260248201527f6d73672e76616c756520213d207072696365000000000000000000000000000060448201526064016109ea565b61475d565b61475d838560e0015183614b64565b611afd84602001518560400151866060015185886101400151612cb7565b600054610100900460ff166147e65760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b60018055565b600054610100900460ff1661387d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b600054610100900460ff166148c25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016109ea565b60005b8151811015611099576001606560008484815181106148e6576148e6615d2a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061492281615d87565b9150506148c5565b600082600001828154811061494157614941615d2a565b9060005260206000200154905092915050565b60608315614963575081611adb565b8251156149735782518084602001fd5b8160405162461bcd60e51b81526004016109ea9190615b98565b60008261499e575082811015611adb565b82821180156149e757506101625468010000000000000000900467ffffffffffffffff16836127106149d08286615eb6565b6149da9190615d0b565b6149e49190615f00565b10155b949350505050565b816149f957613df7565b6001600160a01b03851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415614b58576001600160a01b038416301415614a9457604051632e1a7d4d60e01b8152600481018390526001600160a01b03821690632e1a7d4d90602401600060405180830381600087803b158015614a7157600080fd5b505af1158015614a85573d6000803e3d6000fd5b50505050613b43838383614de9565b6001600160a01b038316301415614b4d57348214614af45760405162461bcd60e51b815260206004820152601360248201527f6d73672e76616c756520213d20616d6f756e740000000000000000000000000060448201526064016109ea565b806001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b158015614b2f57600080fd5b505af1158015614b43573d6000803e3d6000fd5b5050505050613df7565b613b43838383614de9565b613df785858585614f58565b6040516370a0823160e01b81526001600160a01b0384811660048301528291908416906370a0823190602401602060405180830381865afa158015614bad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614bd19190615e80565b10158015614c505750604051636eb1769f60e11b81526001600160a01b03848116600483015230602483015282919084169063dd62ed3e90604401602060405180830381865afa158015614c29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c4d9190615e80565b10155b610ffc5760405162461bcd60e51b815260206004820152602260248201527f696e73756666696369656e742062616c616e6365206f7220616c6c6f77616e63604482015261329760f11b60648201526084016109ea565b6000818152600183016020526040812054614cee57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610983565b506000610983565b60008181526001830160205260408120548015614ddf576000614d1a600183615eb6565b8554909150600090614d2e90600190615eb6565b9050818114614d93576000866000018281548110614d4e57614d4e615d2a565b9060005260206000200154905080876000018481548110614d7157614d71615d2a565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614da457614da4615f50565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610983565b6000915050610983565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114614e36576040519150601f19603f3d011682016040523d82523d6000602084013e614e3b565b606091505b5050905080611afd57816001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015614e7f57600080fd5b505af1158015614e93573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b038881166004830152602482018890528616935063a9059cbb925060440190506020604051808303816000875af1158015614ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614f0c9190615e5e565b611afd5760405162461bcd60e51b815260206004820152600f60248201527f7472616e73666572206661696c6564000000000000000000000000000000000060448201526064016109ea565b816001600160a01b0316836001600160a01b03161415614f7757611afd565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908616906370a0823190602401602060405180830381865afa158015614fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614fe59190615e80565b905060006001600160a01b0385163014615079576040516323b872dd60e01b81526001600160a01b0386811660048301528581166024830152604482018590528716906323b872dd906064016020604051808303816000875af1158015615050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150749190615e5e565b6150ec565b60405163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905287169063a9059cbb906044016020604051808303816000875af11580156150c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150ec9190615e5e565b6040516370a0823160e01b81526001600160a01b0386811660048301529192506000918816906370a0823190602401602060405180830381865afa158015615138573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061515c9190615e80565b905081801561517357506151708484615c2a565b81145b612fc65760405162461bcd60e51b815260206004820152601960248201527f63757272656e6379207472616e73666572206661696c65642e0000000000000060448201526064016109ea565b8280546151cb90615da2565b90600052602060002090601f0160209004810192826151ed5760008555615233565b82601f1061520657805160ff1916838001178555615233565b82800160010185558215615233579182015b82811115615233578251825591602001919060010190615218565b5061523f9291506152b7565b5090565b82805461524f90615da2565b90600052602060002090601f0160209004810192826152715760008555615233565b82601f1061528a5782800160ff19823516178555615233565b82800160010185558215615233579182015b8281111561523357823582559160200191906001019061529c565b5b8082111561523f57600081556001016152b8565b6000602082840312156152de57600080fd5b81356001600160e01b031981168114611adb57600080fd5b6001600160a01b03811681146138fb57600080fd5b8035612c7b816152f6565b60008083601f84011261532857600080fd5b50813567ffffffffffffffff81111561534057600080fd5b60208301915083602082850101111561535857600080fd5b9250929050565b60008060008060006080868803121561537757600080fd5b8535615382816152f6565b94506020860135615392816152f6565b935060408601359250606086013567ffffffffffffffff8111156153b557600080fd5b6153c188828901615316565b969995985093965092949392505050565b600080604083850312156153e557600080fd5b82356153f0816152f6565b946020939093013593505050565b60006020828403121561541057600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051610120810167ffffffffffffffff8111828210171561545157615451615417565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561548057615480615417565b604052919050565b803560028110612c7b57600080fd5b600061012082840312156154aa57600080fd5b6154b261542d565b6154bb8361530b565b8152602083013560208201526040830135604082015260608301356060820152608083013560808201526154f160a0840161530b565b60a082015260c083013560c082015260e083013560e0820152610100615518818501615488565b908201529392505050565b6000806040838503121561553657600080fd5b823591506020830135615548816152f6565b809150509250929050565b60006020828403121561556557600080fd5b8135611adb816152f6565b600080600080600060a0868803121561558857600080fd5b85359450602086013561559a816152f6565b93506040860135925060608601356155b1816152f6565b949793965091946080013592915050565b600067ffffffffffffffff8311156155dc576155dc615417565b6155ef601f8401601f1916602001615457565b905082815283838301111561560357600080fd5b828260208301376000602084830101529392505050565b600067ffffffffffffffff82111561563457615634615417565b5060051b60200190565b600080600080600060a0868803121561565657600080fd5b8535615661816152f6565b945060208681013567ffffffffffffffff8082111561567f57600080fd5b818901915089601f83011261569357600080fd5b6156a18a83358585016155c2565b965060408901359150808211156156b757600080fd5b508701601f810189136156c957600080fd5b80356156dc6156d78261561a565b615457565b81815260059190911b8201830190838101908b8311156156fb57600080fd5b928401925b82841015615722578335615713816152f6565b82529284019290840190615700565b80975050505050506155b16060870161530b565b6000806040838503121561574957600080fd5b50508035926020909101359150565b6000806020838503121561576b57600080fd5b823567ffffffffffffffff81111561578257600080fd5b61578e85828601615316565b90969095509350505050565b600080602083850312156157ad57600080fd5b823567ffffffffffffffff808211156157c557600080fd5b818501915085601f8301126157d957600080fd5b8135818111156157e857600080fd5b8660208260051b85010111156157fd57600080fd5b60209290920196919550909350505050565b60005b8381101561582a578181015183820152602001615812565b83811115611afd5750506000910152565b6000815180845261585381602086016020860161580f565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156158bc57603f198886030184526158aa85835161583b565b9450928501929085019060010161588e565b5092979650505050505050565b600080600080608085870312156158df57600080fd5b843593506020850135925060408501356158f8816152f6565b9396929550929360600135925050565b6000806000806080858703121561591e57600080fd5b843593506020850135615930816152f6565b925060408501356158f8816152f6565b600082601f83011261595157600080fd5b813560206159616156d78361561a565b82815260059290921b8401810191818101908684111561598057600080fd5b8286015b8481101561599b5780358352918301918301615984565b509695505050505050565b600082601f8301126159b757600080fd5b611adb838335602085016155c2565b600080600080600060a086880312156159de57600080fd5b85356159e9816152f6565b945060208601356159f9816152f6565b9350604086013567ffffffffffffffff80821115615a1657600080fd5b615a2289838a01615940565b94506060880135915080821115615a3857600080fd5b615a4489838a01615940565b93506080880135915080821115615a5a57600080fd5b50615a67888289016159a6565b9150509295509295909350565b600080600080600080600060e0888a031215615a8f57600080fd5b873596506020880135955060408801359450606088013593506080880135615ab6816152f6565b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052602160045260246000fd5b600281106138fb57634e487b7160e01b600052602160045260246000fd5b615b1081615ae9565b9052565b6000610180820190508d82526001600160a01b03808e166020840152808d1660408401528b60608401528a60808401528960a08401528860c084015280881660e0840152508561010083015284610120830152615b7084615ae9565b83610140830152615b8083615ae9565b826101608301529d9c50505050505050505050505050565b602081526000611adb602083018461583b565b600080600080600060a08688031215615bc357600080fd5b8535615bce816152f6565b94506020860135615bde816152f6565b93506040860135925060608601359150608086013567ffffffffffffffff811115615c0857600080fd5b615a67888289016159a6565b634e487b7160e01b600052601160045260246000fd5b60008219821115615c3d57615c3d615c14565b500190565b81518152602080830151610180830191615c66908401826001600160a01b03169052565b506040830151615c8160408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151615cc460e08401826001600160a01b03169052565b506101008381015190830152610120808401519083015261014080840151615cee82850182615b07565b505061016080840151615d0382850182615b07565b505092915050565b6000816000190483118215151615615d2557615d25615c14565b500290565b634e487b7160e01b600052603260045260246000fd5b6000808335601e19843603018112615d5757600080fd5b83018035915067ffffffffffffffff821115615d7257600080fd5b60200191503681900382131561535857600080fd5b6000600019821415615d9b57615d9b615c14565b5060010190565b600181811c90821680615db657607f821691505b60208210811415615dd757634e487b7160e01b600052602260045260246000fd5b50919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615e1581601785016020880161580f565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615e5281602884016020880161580f565b01602801949350505050565b600060208284031215615e7057600080fd5b81518015158114611adb57600080fd5b600060208284031215615e9257600080fd5b5051919050565b600060208284031215615eab57600080fd5b8151611adb816152f6565b600082821015615ec857615ec8615c14565b500390565b60008251615edf81846020870161580f565b9190910192915050565b600081615ef857615ef8615c14565b506000190190565b600082615f1d57634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215615f3557600080fd5b8251615f40816152f6565b6020939093015192949293505050565b634e487b7160e01b600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c634300080c000a

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

0000000000000000000000009c3c9283d3e44854697cd22d3faa240cfb0328890000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea

-----Decoded View---------------
Arg [0] : _nativeTokenWrapper (address): 0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889
Arg [1] : _thirdwebFee (address): 0x8C4B615040Ebd2618e8fC3B20ceFe9abAfdEb0ea

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009c3c9283d3e44854697cd22d3faa240cfb032889
Arg [1] : 0000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.