false
false

Contract Address Details

0xbce7d7fba750b1e9e0511c67b1f38c07ebfefe63

Contract Name
ExchangeMetaV2
Creator
0x256eff–71d85b at 0xbd2ef3–0086eb
Balance
0 Xai ( )
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
66210576
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
ExchangeMetaV2




Optimization enabled
true
Compiler version
v0.7.6+commit.7338295f




Optimization runs
200
EVM Version
istanbul




Verified at
2024-02-09T13:55:52.247053Z

@rarible/exchange-v2/contracts/ExchangeMetaV2.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "./ExchangeV2Core.sol";
import "@rarible/meta-tx/contracts/EIP712MetaTransaction.sol";
import "@rarible/transfer-manager/contracts/RaribleTransferManager.sol";

contract ExchangeMetaV2 is ExchangeV2Core, RaribleTransferManager, EIP712MetaTransaction {
    function __ExchangeV2_init(
        address _transferProxy,
        address _erc20TransferProxy,
        uint newProtocolFee,
        address newDefaultFeeReceiver,
        IRoyaltiesProvider newRoyaltiesProvider
    ) external initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
        __OrderValidator_init_unchained();
        __MetaTransaction_init_unchained("ExchangeMetaV2", "1");
        __TransferExecutor_init_unchained(_transferProxy, _erc20TransferProxy);
        __RaribleTransferManager_init_unchained(newProtocolFee, newDefaultFeeReceiver, newRoyaltiesProvider);
    }

    function _msgSender() internal view virtual override(ContextUpgradeable, EIP712MetaTransaction) returns (address payable) {
        return super._msgSender();
    }

}
        

@openzeppelin/contracts-upgradeable/introspection/IERC165Upgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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);
}
          

@rarible/exchange-interfaces/contracts/INftTransferProxy.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.9 <0.8.0;
pragma abicoder v2;

import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";

interface INftTransferProxy {
    function erc721safeTransferFrom(IERC721Upgradeable token, address from, address to, uint256 tokenId) external;

    function erc1155safeTransferFrom(IERC1155Upgradeable token, address from, address to, uint256 id, uint256 value, bytes calldata data) external;
}
          

@rarible/exchange-v2/contracts/OrderValidator.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "./libraries/LibOrder.sol";

import "@rarible/lib-signature/contracts/IERC1271.sol";
import "@rarible/lib-signature/contracts/LibSignature.sol";

import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/drafts/EIP712Upgradeable.sol";

abstract contract OrderValidator is Initializable, ContextUpgradeable, EIP712Upgradeable {
    using LibSignature for bytes32;
    using AddressUpgradeable for address;
    
    bytes4 constant internal MAGICVALUE = 0x1626ba7e;

    function __OrderValidator_init_unchained() internal initializer {
        __EIP712_init_unchained("Exchange", "2");
    }

    function validate(LibOrder.Order memory order, bytes memory signature) internal view {
        if (order.salt == 0) {
            if (order.maker != address(0)) {
                require(_msgSender() == order.maker, "maker is not tx sender");
            }
        } else {
            if (_msgSender() != order.maker) {
                bytes32 hash = LibOrder.hash(order);
                // if maker is contract checking ERC1271 signature
                if (order.maker.isContract()) {
                    require(
                        IERC1271(order.maker).isValidSignature(_hashTypedDataV4(hash), signature) == MAGICVALUE,
                        "contract order signature verification error"
                    );
                } else {
                    // if maker is not contract then checking ECDSA signature
                    if (_hashTypedDataV4(hash).recover(signature) != order.maker) {
                        revert("order signature verification error");
                    } else {
                        require (order.maker != address(0), "no maker");
                    }
                }
            }
        }
    }

    uint256[50] private __gap;
}
          

@rarible/transfer-manager/contracts/interfaces/ITransferExecutor.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/lib-asset/contracts/LibAsset.sol";

abstract contract ITransferExecutor {
    function transfer(
        LibAsset.Asset memory asset,
        address from,
        address to,
        address proxy
    ) internal virtual;
}
          

@rarible/exchange-interfaces/contracts/IERC20TransferProxy.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.9 <0.8.0;
pragma abicoder v2;

import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";

interface IERC20TransferProxy {
    function erc20safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) external;
}
          

@rarible/transfer-manager/contracts/RaribleTransferManager.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

import "@rarible/lazy-mint/contracts/erc-721/LibERC721LazyMint.sol";
import "@rarible/lazy-mint/contracts/erc-1155/LibERC1155LazyMint.sol";

import "@rarible/exchange-interfaces/contracts/IRoyaltiesProvider.sol";

import "@rarible/lib-bp/contracts/BpLibrary.sol";

import "./interfaces/ITransferManager.sol";

abstract contract RaribleTransferManager is OwnableUpgradeable, ITransferManager {
    using BpLibrary for uint;
    using SafeMathUpgradeable for uint;

    ProtocolFeeData public protocolFee;
    IRoyaltiesProvider public royaltiesRegistry;

    //deprecated
    address private defaultFeeReceiver;
    // deprecated
    mapping(address => address) private feeReceivers;

    /// @dev event that's emitted when ProtocolFeeData buyerAmount changes
    event BuyerFeeAmountChanged(uint oldValue, uint newValue);

    /// @dev event that's emitted when ProtocolFeeData sellerAmount changes
    event SellerFeeAmountChanged(uint oldValue, uint newValue);

    /// @dev event that's emitted when ProtocolFeeData receiver changes
    event FeeReceiverChanged(address oldValue, address newValue);

    /// @dev struct to store protocol fee - receiver address, buyer fee amount (in bp), seller fee amount (in bp)
    struct ProtocolFeeData {
        address receiver;
        uint48 buyerAmount;
        uint48 sellerAmount;
    }

    /**
        @notice initialises RaribleTransferManager state
        @param newProtocolFee deprecated
        @param newDefaultFeeReceiver deprecated
        @param newRoyaltiesProvider royaltiesRegistry contract address
     */
    function __RaribleTransferManager_init_unchained(
        uint newProtocolFee,
        address newDefaultFeeReceiver,
        IRoyaltiesProvider newRoyaltiesProvider
    ) internal initializer {
        royaltiesRegistry = newRoyaltiesProvider;
    }

    function setRoyaltiesRegistry(IRoyaltiesProvider newRoyaltiesRegistry) external onlyOwner {
        royaltiesRegistry = newRoyaltiesRegistry;
    }

    function setPrtocolFeeReceiver(address _receiver) public onlyOwner {
        emit FeeReceiverChanged(protocolFee.receiver, _receiver);
        protocolFee.receiver = _receiver;
    }

    function setPrtocolFeeBuyerAmount(uint48 _buyerAmount) public onlyOwner {
        emit BuyerFeeAmountChanged(protocolFee.buyerAmount, _buyerAmount);
        protocolFee.buyerAmount = _buyerAmount;
    }

    function setPrtocolFeeSellerAmount(uint48 _sellerAmount) public onlyOwner {
        emit SellerFeeAmountChanged(protocolFee.sellerAmount, _sellerAmount);
        protocolFee.sellerAmount = _sellerAmount;
    }

    function setAllProtocolFeeData(address _receiver, uint48 _buyerAmount, uint48 _sellerAmount) public onlyOwner {
        setPrtocolFeeReceiver(_receiver);
        setPrtocolFeeBuyerAmount(_buyerAmount);
        setPrtocolFeeSellerAmount(_sellerAmount);
    }

    /**
        @notice executes transfers for 2 matched orders
        @param left DealSide from the left order (see LibDeal.sol)
        @param right DealSide from the right order (see LibDeal.sol)
        @param feeSide feeSide of the match
        @return totalLeftValue - total amount for the left order
        @return totalRightValue - total amout for the right order
    */
    function doTransfers(
        LibDeal.DealSide memory left,
        LibDeal.DealSide memory right,
        LibFeeSide.FeeSide feeSide
    ) override internal returns (uint totalLeftValue, uint totalRightValue) {
        totalLeftValue = left.asset.value;
        totalRightValue = right.asset.value;

        if (feeSide == LibFeeSide.FeeSide.LEFT) {
            totalLeftValue = doTransfersWithFees(left, right, protocolFee);
            transferPayouts(right.asset.assetType, right.asset.value, right.from, left.payouts, right.proxy);
        } else if (feeSide == LibFeeSide.FeeSide.RIGHT) {
            totalRightValue = doTransfersWithFees(right, left,protocolFee);
            transferPayouts(left.asset.assetType, left.asset.value, left.from, right.payouts, left.proxy);
        } else {
            transferPayouts(left.asset.assetType, left.asset.value, left.from, right.payouts, left.proxy);
            transferPayouts(right.asset.assetType, right.asset.value, right.from, left.payouts, right.proxy);
        }
    }

    /**
        @notice executes the fee-side transfers (payment + fees)
        @param paymentSide DealSide of the fee-side order
        @param nftSide  DealSide of the nft-side order
        @param _protocolFee protocol fee data
        @return totalAmount of fee-side asset
    */
    function doTransfersWithFees(
        LibDeal.DealSide memory paymentSide,
        LibDeal.DealSide memory nftSide,
        ProtocolFeeData memory _protocolFee
    ) internal returns (uint totalAmount) {
        totalAmount = calculateTotalAmount(paymentSide.asset.value, _protocolFee, paymentSide.originFees);
        uint rest = transferProtocolFee(totalAmount, paymentSide.asset.value, paymentSide.from, _protocolFee, paymentSide.asset.assetType, paymentSide.proxy);

        rest = transferRoyalties(paymentSide.asset.assetType, nftSide.asset.assetType, nftSide.payouts, rest, paymentSide.asset.value, paymentSide.from, paymentSide.proxy);
        if (
            paymentSide.originFees.length  == 1 &&
            nftSide.originFees.length  == 1 &&
            nftSide.originFees[0].account == paymentSide.originFees[0].account
        ) { 
            LibPart.Part[] memory origin = new  LibPart.Part[](1);
            origin[0].account = nftSide.originFees[0].account;
            origin[0].value = nftSide.originFees[0].value + paymentSide.originFees[0].value;
            (rest,) = transferFees(paymentSide.asset.assetType, rest, paymentSide.asset.value, origin, paymentSide.from, paymentSide.proxy);
        } else {
            (rest,) = transferFees(paymentSide.asset.assetType, rest, paymentSide.asset.value, paymentSide.originFees, paymentSide.from, paymentSide.proxy);
            (rest,) = transferFees(paymentSide.asset.assetType, rest, paymentSide.asset.value, nftSide.originFees, paymentSide.from, paymentSide.proxy);
        }
        transferPayouts(paymentSide.asset.assetType, rest, paymentSide.from, nftSide.payouts, paymentSide.proxy);
    }

    function transferProtocolFee(
        uint totalAmount,
        uint amount,
        address from,
        ProtocolFeeData memory _protocolFee,
        LibAsset.AssetType memory matchCalculate,
        address proxy
    ) internal returns (uint) {
        (uint rest, uint fee) = subFeeInBp(totalAmount, amount, _protocolFee.buyerAmount + _protocolFee.sellerAmount);
        if (fee > 0) {
            transfer(LibAsset.Asset(matchCalculate, fee), from, _protocolFee.receiver, proxy);
        }
        return rest;
    }

    /**
        @notice Transfer royalties. If there is only one royalties receiver and one address in payouts and they match,
           nothing is transferred in this function
        @param paymentAssetType Asset Type which represents payment
        @param nftAssetType Asset Type which represents NFT to pay royalties for
        @param payouts Payouts to be made
        @param rest How much of the amount left after previous transfers
        @param from owner of the Asset to transfer
        @param proxy Transfer proxy to use
        @return How much left after transferring royalties
    */
    function transferRoyalties(
        LibAsset.AssetType memory paymentAssetType,
        LibAsset.AssetType memory nftAssetType,
        LibPart.Part[] memory payouts,
        uint rest,
        uint amount,
        address from,
        address proxy
    ) internal returns (uint) {
        LibPart.Part[] memory royalties = getRoyaltiesByAssetType(nftAssetType);
        if (
            royalties.length == 1 &&
            payouts.length == 1 &&
            royalties[0].account == payouts[0].account
        ) {
            require(royalties[0].value <= 5000, "Royalties are too high (>50%)");
            return rest;
        }
        (uint result, uint totalRoyalties) = transferFees(paymentAssetType, rest, amount, royalties, from, proxy);
        require(totalRoyalties <= 5000, "Royalties are too high (>50%)");
        return result;
    }

    /**
        @notice calculates royalties by asset type. If it's a lazy NFT, then royalties are extracted from asset. otherwise using royaltiesRegistry
        @param nftAssetType NFT Asset Type to calculate royalties for
        @return calculated royalties (Array of LibPart.Part)
    */
    function getRoyaltiesByAssetType(LibAsset.AssetType memory nftAssetType) internal returns (LibPart.Part[] memory) {
        if (nftAssetType.assetClass == LibAsset.ERC1155_ASSET_CLASS || nftAssetType.assetClass == LibAsset.ERC721_ASSET_CLASS) {
            (address token, uint tokenId) = abi.decode(nftAssetType.data, (address, uint));
            return royaltiesRegistry.getRoyalties(token, tokenId);
        } else if (nftAssetType.assetClass == LibERC1155LazyMint.ERC1155_LAZY_ASSET_CLASS) {
            (, LibERC1155LazyMint.Mint1155Data memory data) = abi.decode(nftAssetType.data, (address, LibERC1155LazyMint.Mint1155Data));
            return data.royalties;
        } else if (nftAssetType.assetClass == LibERC721LazyMint.ERC721_LAZY_ASSET_CLASS) {
            (, LibERC721LazyMint.Mint721Data memory data) = abi.decode(nftAssetType.data, (address, LibERC721LazyMint.Mint721Data));
            return data.royalties;
        }
        LibPart.Part[] memory empty;
        return empty;
    }

    /**
        @notice Transfer fees
        @param assetType Asset Type to transfer
        @param rest How much of the amount left after previous transfers
        @param amount Total amount of the Asset. Used as a base to calculate part from (100%)
        @param fees Array of LibPart.Part which represents fees to pay
        @param from owner of the Asset to transfer
        @param proxy Transfer proxy to use
        @return newRest how much left after transferring fees
        @return totalFees total number of fees in bp
    */
    function transferFees(
        LibAsset.AssetType memory assetType,
        uint rest,
        uint amount,
        LibPart.Part[] memory fees,
        address from,
        address proxy
    ) internal returns (uint newRest, uint totalFees) {
        totalFees = 0;
        newRest = rest;
        for (uint256 i = 0; i < fees.length; ++i) {
            totalFees = totalFees.add(fees[i].value);
            uint feeValue;
            (newRest, feeValue) = subFeeInBp(newRest, amount, fees[i].value);
            if (feeValue > 0) {
                transfer(LibAsset.Asset(assetType, feeValue), from, fees[i].account, proxy);
            }
        }
    }

    /**
        @notice transfers main part of the asset (payout)
        @param assetType Asset Type to transfer
        @param amount Amount of the asset to transfer
        @param from Current owner of the asset
        @param payouts List of payouts - receivers of the Asset
        @param proxy Transfer Proxy to use
    */
    function transferPayouts(
        LibAsset.AssetType memory assetType,
        uint amount,
        address from,
        LibPart.Part[] memory payouts,
        address proxy
    ) internal {
        require(payouts.length > 0, "transferPayouts: nothing to transfer");
        uint sumBps = 0;
        uint rest = amount;
        for (uint256 i = 0; i < payouts.length - 1; ++i) {
            uint currentAmount = amount.bp(payouts[i].value);
            sumBps = sumBps.add(payouts[i].value);
            if (currentAmount > 0) {
                rest = rest.sub(currentAmount);
                transfer(LibAsset.Asset(assetType, currentAmount), from, payouts[i].account, proxy);
            }
        }
        LibPart.Part memory lastPayout = payouts[payouts.length - 1];
        sumBps = sumBps.add(lastPayout.value);
        require(sumBps == 10000, "Sum payouts Bps not equal 100%");
        if (rest > 0) {
            transfer(LibAsset.Asset(assetType, rest), from, lastPayout.account, proxy);
        }
    }
    
    /**
        @notice calculates total amount of fee-side asset that is going to be used in match
        @param amount fee-side order value
        @param _protocolFee protocol fee
        @param orderOriginFees fee-side order's origin fee (it adds on top of the amount)
        @return total amount of fee-side asset
    */
    function calculateTotalAmount(
        uint amount,
        ProtocolFeeData memory _protocolFee,
        LibPart.Part[] memory orderOriginFees
    ) internal pure returns (uint) {
        
        uint fees = _protocolFee.buyerAmount;
        for (uint256 i = 0; i < orderOriginFees.length; ++i) {
            require(orderOriginFees[i].value <= 10000, "origin fee is too big");
            fees = fees + orderOriginFees[i].value;
        }

        return amount.add(amount.bp(fees));
    }

    function subFeeInBp(uint value, uint total, uint feeInBp) internal pure returns (uint newValue, uint realFee) {
        return subFee(value, total.bp(feeInBp));
    }

    function subFee(uint value, uint fee) internal pure returns (uint newValue, uint realFee) {
        if (value > fee) {
            newValue = value.sub(fee);
            realFee = fee;
        } else {
            newValue = 0;
            realFee = value;
        }
    }

    uint256[46] private __gap;
}
          

@rarible/exchange-interfaces/contracts/IRoyaltiesProvider.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;
pragma abicoder v2;

import "@rarible/lib-part/contracts/LibPart.sol";

interface IRoyaltiesProvider {
    function getRoyalties(address token, uint tokenId) external returns (LibPart.Part[] memory);
}
          

@rarible/exchange-v2/contracts/libraries/LibOrder.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "@rarible/lib-asset/contracts/LibAsset.sol";

import "./LibMath.sol";
import "./LibOrderDataV3.sol";
import "./LibOrderDataV2.sol";
import "./LibOrderDataV1.sol";

library LibOrder {
    using SafeMathUpgradeable for uint;

    bytes32 constant ORDER_TYPEHASH = keccak256(
        "Order(address maker,Asset makeAsset,address taker,Asset takeAsset,uint256 salt,uint256 start,uint256 end,bytes4 dataType,bytes data)Asset(AssetType assetType,uint256 value)AssetType(bytes4 assetClass,bytes data)"
    );

    bytes4 constant DEFAULT_ORDER_TYPE = 0xffffffff;

    struct Order {
        address maker;
        LibAsset.Asset makeAsset;
        address taker;
        LibAsset.Asset takeAsset;
        uint salt;
        uint start;
        uint end;
        bytes4 dataType;
        bytes data;
    }

    /**
     * @dev Calculate remaining make and take values of the order (after partial filling real make and take decrease)
     * @param order initial order to calculate remaining values for
     * @param fill current fill of the left order (0 if order is unfilled)
     * @param isMakeFill true if order fill is calculated from the make side, false if from the take side
     * @return makeValue remaining make value of the order. if fill = 0 then it's order's make value
     * @return takeValue remaining take value of the order. if fill = 0 then it's order's take value
     */
    function calculateRemaining(Order memory order, uint fill, bool isMakeFill) internal pure returns (uint makeValue, uint takeValue) {
        if (isMakeFill) {
            makeValue = order.makeAsset.value.sub(fill);
            takeValue = LibMath.safeGetPartialAmountFloor(order.takeAsset.value, order.makeAsset.value, makeValue);
        } else {
            takeValue = order.takeAsset.value.sub(fill);
            makeValue = LibMath.safeGetPartialAmountFloor(order.makeAsset.value, order.takeAsset.value, takeValue); 
        } 
    }

    function hashKey(Order memory order) internal pure returns (bytes32) {
        if (order.dataType == LibOrderDataV1.V1 || order.dataType == DEFAULT_ORDER_TYPE) {
            return keccak256(abi.encode(
                order.maker,
                LibAsset.hash(order.makeAsset.assetType),
                LibAsset.hash(order.takeAsset.assetType),
                order.salt
            ));
        } else {
            //order.data is in hash for V2, V3 and all new order
            return keccak256(abi.encode(
                order.maker,
                LibAsset.hash(order.makeAsset.assetType),
                LibAsset.hash(order.takeAsset.assetType),
                order.salt,
                order.data
            ));
        }
    }

    function hash(Order memory order) internal pure returns (bytes32) {
        return keccak256(abi.encode(
                ORDER_TYPEHASH,
                order.maker,
                LibAsset.hash(order.makeAsset),
                order.taker,
                LibAsset.hash(order.takeAsset),
                order.salt,
                order.start,
                order.end,
                order.dataType,
                keccak256(order.data)
            ));
    }

    function validateOrderTime(LibOrder.Order memory order) internal view {
        require(order.start == 0 || order.start < block.timestamp, "Order start validation failed");
        require(order.end == 0 || order.end > block.timestamp, "Order end validation failed");
    }
}
          

@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

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

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

@rarible/transfer-manager/contracts/TransferExecutor.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/exchange-interfaces/contracts/ITransferProxy.sol";
import "@rarible/exchange-interfaces/contracts/INftTransferProxy.sol";
import "@rarible/exchange-interfaces/contracts/IERC20TransferProxy.sol";
import "./interfaces/ITransferExecutor.sol";

import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

import "./lib/LibTransfer.sol";

abstract contract TransferExecutor is Initializable, OwnableUpgradeable, ITransferExecutor {
    using LibTransfer for address;

    mapping (bytes4 => address) internal proxies;

    event ProxyChange(bytes4 indexed assetType, address proxy);

    function __TransferExecutor_init_unchained(address transferProxy, address erc20TransferProxy) internal { 
        proxies[LibAsset.ERC20_ASSET_CLASS] = address(erc20TransferProxy);
        proxies[LibAsset.ERC721_ASSET_CLASS] = address(transferProxy);
        proxies[LibAsset.ERC1155_ASSET_CLASS] = address(transferProxy);
    }

    function setTransferProxy(bytes4 assetType, address proxy) external onlyOwner {
        proxies[assetType] = proxy;
        emit ProxyChange(assetType, proxy);
    }

    function transfer(
        LibAsset.Asset memory asset,
        address from,
        address to,
        address proxy
    ) internal override {
        if (asset.assetType.assetClass == LibAsset.ERC721_ASSET_CLASS) {
            //not using transfer proxy when transfering from this contract
            (address token, uint tokenId) = abi.decode(asset.assetType.data, (address, uint256));
            require(asset.value == 1, "erc721 value error");
            if (from == address(this)){
                IERC721Upgradeable(token).safeTransferFrom(address(this), to, tokenId);
            } else {
                INftTransferProxy(proxy).erc721safeTransferFrom(IERC721Upgradeable(token), from, to, tokenId);
            }
        } else if (asset.assetType.assetClass == LibAsset.ERC20_ASSET_CLASS) {
            //not using transfer proxy when transfering from this contract
            (address token) = abi.decode(asset.assetType.data, (address));
            if (from == address(this)){
                require(IERC20Upgradeable(token).transfer(to, asset.value), "erc20 transfer failed");
            } else {
                IERC20TransferProxy(proxy).erc20safeTransferFrom(IERC20Upgradeable(token), from, to, asset.value);
            }
        } else if (asset.assetType.assetClass == LibAsset.ERC1155_ASSET_CLASS) {
            //not using transfer proxy when transfering from this contract
            (address token, uint tokenId) = abi.decode(asset.assetType.data, (address, uint256));
            if (from == address(this)){
                IERC1155Upgradeable(token).safeTransferFrom(address(this), to, tokenId, asset.value, "");
            } else {
                INftTransferProxy(proxy).erc1155safeTransferFrom(IERC1155Upgradeable(token), from, to, tokenId, asset.value, "");  
            }
        } else if (asset.assetType.assetClass == LibAsset.ETH_ASSET_CLASS) {
            if (to != address(this)) {
                to.transferEth(asset.value);
            }
        } else {
            ITransferProxy(proxy).transfer(asset, from, to);
        }
    }
    
    uint256[49] private __gap;
}
          

@rarible/transfer-manager/contracts/interfaces/ITransferManager.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "../lib/LibDeal.sol";
import "./ITransferExecutor.sol";

abstract contract ITransferManager is ITransferExecutor {

    function doTransfers(
        LibDeal.DealSide memory left,
        LibDeal.DealSide memory right,
        LibFeeSide.FeeSide feeSide
    ) internal virtual returns (uint totalMakeValue, uint totalTakeValue);
}
          

@rarible/transfer-manager/contracts/lib/LibTransfer.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

library LibTransfer {
    function transferEth(address to, uint value) internal {
        (bool success,) = to.call{ value: value }("");
        require(success, "transfer failed");
    }
}
          

@openzeppelin/contracts-upgradeable/proxy/Initializable.sol

// SPDX-License-Identifier: MIT

// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;

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

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-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.
 */
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() {
        require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /// @dev Returns true if and only if the function is running in the constructor
    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}
          

@rarible/lib-signature/contracts/LibSignature.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

library LibSignature {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address)
    {
        // Check the signature length
        if (signature.length != 65) {
            revert("ECDSA: invalid signature length");
        }

        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // ecrecover takes the signature parameters, and the only way to get them
        // currently is to use assembly.
        // solhint-disable-next-line no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <=
                0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );

        // If the signature is valid (and not malleable), return the signer address
        // v > 30 is a special case, we need to adjust hash with "\x19Ethereum Signed Message:\n32"
        // and v = v - 4
        address signer;
        if (v > 30) {
            require(
                v - 4 == 27 || v - 4 == 28,
                "ECDSA: invalid signature 'v' value"
            );
            signer = ecrecover(toEthSignedMessageHash(hash), v - 4, r, s);
        } else {
            require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");
            signer = ecrecover(hash, v, r, s);
        }

        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * replicates the behavior of the
     * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
     * JSON-RPC method.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash)
        internal
        pure
        returns (bytes32)
    {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return
            keccak256(
                abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
            );
    }
}
          

@rarible/exchange-v2/contracts/libraries/LibDirectTransfer.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "@rarible/lib-asset/contracts/LibAsset.sol";

library LibDirectTransfer { //LibDirectTransfers
    /*All buy parameters need for create buyOrder and sellOrder*/
    struct Purchase {
        address sellOrderMaker; //
        uint256 sellOrderNftAmount;
        bytes4 nftAssetClass;
        bytes nftData;
        uint256 sellOrderPaymentAmount;
        address paymentToken;
        uint256 sellOrderSalt;
        uint sellOrderStart;
        uint sellOrderEnd;
        bytes4 sellOrderDataType;
        bytes sellOrderData;
        bytes sellOrderSignature;

        uint256 buyOrderPaymentAmount;
        uint256 buyOrderNftAmount;
        bytes buyOrderData;
    }

    /*All accept bid parameters need for create buyOrder and sellOrder*/
    struct AcceptBid {
        address bidMaker; //
        uint256 bidNftAmount;
        bytes4 nftAssetClass;
        bytes nftData;
        uint256 bidPaymentAmount;
        address paymentToken;
        uint256 bidSalt;
        uint bidStart;
        uint bidEnd;
        bytes4 bidDataType;
        bytes bidData;
        bytes bidSignature;

        uint256 sellOrderPaymentAmount;
        uint256 sellOrderNftAmount;
        bytes sellOrderData;
    }
}
          

@rarible/lib-bp/contracts/BpLibrary.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol";

library BpLibrary {
    using SafeMathUpgradeable for uint;

    function bp(uint value, uint bpValue) internal pure returns (uint) {
        return value.mul(bpValue).div(10000);
    }
}
          

@openzeppelin/contracts-upgradeable/drafts/EIP712Upgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712Upgradeable is Initializable {
    /* solhint-disable var-name-mixedcase */
    bytes32 private _HASHED_NAME;
    bytes32 private _HASHED_VERSION;
    bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    function __EIP712_init(string memory name, string memory version) internal initializer {
        __EIP712_init_unchained(name, version);
    }

    function __EIP712_init_unchained(string memory name, string memory version) internal initializer {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash());
    }

    function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
        return keccak256(
            abi.encode(
                typeHash,
                name,
                version,
                _getChainId(),
                address(this)
            )
        );
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", _domainSeparatorV4(), structHash));
    }

    function _getChainId() private view returns (uint256 chainId) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        // solhint-disable-next-line no-inline-assembly
        assembly {
            chainId := chainid()
        }
    }

    /**
     * @dev The hash of the name parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712NameHash() internal virtual view returns (bytes32) {
        return _HASHED_NAME;
    }

    /**
     * @dev The hash of the version parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712VersionHash() internal virtual view returns (bytes32) {
        return _HASHED_VERSION;
    }
    uint256[50] private __gap;
}
          

@rarible/lib-asset/contracts/LibAsset.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

library LibAsset {
    bytes4 constant public ETH_ASSET_CLASS = bytes4(keccak256("ETH"));
    bytes4 constant public ERC20_ASSET_CLASS = bytes4(keccak256("ERC20"));
    bytes4 constant public ERC721_ASSET_CLASS = bytes4(keccak256("ERC721"));
    bytes4 constant public ERC1155_ASSET_CLASS = bytes4(keccak256("ERC1155"));
    bytes4 constant public COLLECTION = bytes4(keccak256("COLLECTION"));
    bytes4 constant public CRYPTO_PUNKS = bytes4(keccak256("CRYPTO_PUNKS"));

    bytes32 constant ASSET_TYPE_TYPEHASH = keccak256(
        "AssetType(bytes4 assetClass,bytes data)"
    );

    bytes32 constant ASSET_TYPEHASH = keccak256(
        "Asset(AssetType assetType,uint256 value)AssetType(bytes4 assetClass,bytes data)"
    );

    struct AssetType {
        bytes4 assetClass;
        bytes data;
    }

    struct Asset {
        AssetType assetType;
        uint value;
    }

    function hash(AssetType memory assetType) internal pure returns (bytes32) {
        return keccak256(abi.encode(
                ASSET_TYPE_TYPEHASH,
                assetType.assetClass,
                keccak256(assetType.data)
            ));
    }

    function hash(Asset memory asset) internal pure returns (bytes32) {
        return keccak256(abi.encode(
                ASSET_TYPEHASH,
                hash(asset.assetType),
                asset.value
            ));
    }

}
          

@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMathUpgradeable {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}
          

@rarible/lazy-mint/contracts/erc-721/LibERC721LazyMint.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "@rarible/lib-part/contracts/LibPart.sol";

library LibERC721LazyMint {
    bytes4 constant public ERC721_LAZY_ASSET_CLASS = bytes4(keccak256("ERC721_LAZY"));
    bytes4 constant _INTERFACE_ID_MINT_AND_TRANSFER = 0x8486f69f;

    struct Mint721Data {
        uint tokenId;
        string tokenURI;
        LibPart.Part[] creators;
        LibPart.Part[] royalties;
        bytes[] signatures;
    }

    bytes32 public constant MINT_AND_TRANSFER_TYPEHASH = keccak256("Mint721(uint256 tokenId,string tokenURI,Part[] creators,Part[] royalties)Part(address account,uint96 value)");

    function hash(Mint721Data memory data) internal pure returns (bytes32) {
        bytes32[] memory royaltiesBytes = new bytes32[](data.royalties.length);
        for (uint i = 0; i < data.royalties.length; ++i) {
            royaltiesBytes[i] = LibPart.hash(data.royalties[i]);
        }
        bytes32[] memory creatorsBytes = new bytes32[](data.creators.length);
        for (uint i = 0; i < data.creators.length; ++i) {
            creatorsBytes[i] = LibPart.hash(data.creators[i]);
        }
        return keccak256(abi.encode(
                MINT_AND_TRANSFER_TYPEHASH,
                data.tokenId,
                keccak256(bytes(data.tokenURI)),
                keccak256(abi.encodePacked(creatorsBytes)),
                keccak256(abi.encodePacked(royaltiesBytes))
            ));
    }

}
          

@rarible/exchange-v2/contracts/libraries/LibOrderDataV2.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/lib-part/contracts/LibPart.sol";

library LibOrderDataV2 {
    bytes4 constant public V2 = bytes4(keccak256("V2"));

    struct DataV2 {
        LibPart.Part[] payouts;
        LibPart.Part[] originFees;
        bool isMakeFill;
    }

}
          

@rarible/lib-signature/contracts/IERC1271.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

interface IERC1271 {

    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param _hash Hash of the data signed on the behalf of address(this)
     * @param _signature Signature byte array associated with _data
     *
     * MUST return the bytes4 magic value 0x1626ba7e when function passes.
     * MUST NOT modify state (using STATICCALL for solc < 0.5, view modifier for solc > 0.5)
     * MUST allow external calls
     */
    function isValidSignature(bytes32 _hash, bytes calldata _signature) virtual external view returns (bytes4 magicValue);
}
          

@rarible/exchange-v2/contracts/libraries/LibFill.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "./LibOrder.sol";

library LibFill {
    struct FillResult {
        uint leftValue;
        uint rightValue;
    }

    struct IsMakeFill {
        bool leftMake;
        bool rightMake;
    }

    /**
     * @dev Should return filled values
     * @param leftOrder left order
     * @param rightOrder right order
     * @param leftOrderFill current fill of the left order (0 if order is unfilled)
     * @param rightOrderFill current fill of the right order (0 if order is unfilled)
     * @param leftIsMakeFill true if left orders fill is calculated from the make side, false if from the take side
     * @param rightIsMakeFill true if right orders fill is calculated from the make side, false if from the take side
     * @return tuple representing fill of both assets
     */
    function fillOrder(LibOrder.Order memory leftOrder, LibOrder.Order memory rightOrder, uint leftOrderFill, uint rightOrderFill, bool leftIsMakeFill, bool rightIsMakeFill) internal pure returns (FillResult memory) {
        (uint leftMakeValue, uint leftTakeValue) = LibOrder.calculateRemaining(leftOrder, leftOrderFill, leftIsMakeFill);
        (uint rightMakeValue, uint rightTakeValue) = LibOrder.calculateRemaining(rightOrder, rightOrderFill, rightIsMakeFill);

        //We have 3 cases here:
        if (rightTakeValue > leftMakeValue || (rightTakeValue == leftMakeValue && leftMakeValue == 0)) { //1nd: left order should be fully filled
            return fillLeft(leftMakeValue, leftTakeValue, rightOrder.makeAsset.value, rightOrder.takeAsset.value);
        }//2st: right order should be fully filled or 3d: both should be fully filled if required values are the same
        return fillRight(leftOrder.makeAsset.value, leftOrder.takeAsset.value, rightMakeValue, rightTakeValue);
    }

    function fillRight(uint leftMakeValue, uint leftTakeValue, uint rightMakeValue, uint rightTakeValue) internal pure returns (FillResult memory result) {
        uint makerValue = LibMath.safeGetPartialAmountFloor(rightTakeValue, leftMakeValue, leftTakeValue);
        require(makerValue <= rightMakeValue, "fillRight: unable to fill");
        return FillResult(rightTakeValue, makerValue);
    }

    function fillLeft(uint leftMakeValue, uint leftTakeValue, uint rightMakeValue, uint rightTakeValue) internal pure returns (FillResult memory result) {
        uint rightTake = LibMath.safeGetPartialAmountFloor(leftTakeValue, rightMakeValue, rightTakeValue);
        require(rightTake <= leftMakeValue, "fillLeft: unable to fill");
        return FillResult(leftMakeValue, leftTakeValue);
    }
}
          

@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
          

@rarible/exchange-v2/contracts/libraries/LibOrderData.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "./LibOrder.sol";

library LibOrderData {

    struct GenericOrderData {
        LibPart.Part[] payouts;
        LibPart.Part[] originFees;
        bool isMakeFill;
    } 

    function parse(LibOrder.Order memory order) pure internal returns (GenericOrderData memory dataOrder) {
        if (order.dataType == LibOrderDataV1.V1) {
            LibOrderDataV1.DataV1 memory data = abi.decode(order.data, (LibOrderDataV1.DataV1));
            dataOrder.payouts = data.payouts;
            dataOrder.originFees = data.originFees;
        } else if (order.dataType == LibOrderDataV2.V2) {
            LibOrderDataV2.DataV2 memory data = abi.decode(order.data, (LibOrderDataV2.DataV2));
            dataOrder.payouts = data.payouts;
            dataOrder.originFees = data.originFees;
            dataOrder.isMakeFill = data.isMakeFill;
        } else if (order.dataType == 0xffffffff) {
        } else {
            revert("Unknown Order data type");
        }
        if (dataOrder.payouts.length == 0) {
            dataOrder.payouts = payoutSet(order.maker);
        }
    }

    function payoutSet(address orderAddress) pure internal returns (LibPart.Part[] memory) {
        LibPart.Part[] memory payout = new LibPart.Part[](1);
        payout[0].account = payable(orderAddress);
        payout[0].value = 10000;
        return payout;
    }

    function parseOriginFeeData(uint dataFirst, uint dataSecond) internal pure returns(LibPart.Part[] memory) {
        LibPart.Part[] memory originFee;

        if (dataFirst > 0 && dataSecond > 0){
            originFee = new LibPart.Part[](2);

            originFee[0] = uintToLibPart(dataFirst);
            originFee[1] = uintToLibPart(dataSecond);
        }

        if (dataFirst > 0 && dataSecond == 0) {
            originFee = new LibPart.Part[](1);

            originFee[0] = uintToLibPart(dataFirst);
        }

        if (dataFirst == 0 && dataSecond > 0) {
            originFee = new LibPart.Part[](1);

            originFee[0] = uintToLibPart(dataSecond);
        }

        return originFee;
    }

    function parsePayouts(uint data) internal pure returns(LibPart.Part[] memory) {
        LibPart.Part[] memory payouts;

        if (data > 0) {
            payouts = new LibPart.Part[](1);
            payouts[0] = uintToLibPart(data);
        }

        return payouts;
    }

    /**
        @notice converts uint to LibPart.Part
        @param data address and value encoded in uint (first 12 bytes )
        @return result LibPart.Part 
     */
    function uintToLibPart(uint data) internal pure returns(LibPart.Part memory result) {
        if (data > 0){
            result.account = payable(address(data));
            result.value = uint96(data >> 160);
        }
    }

}
          

@rarible/lazy-mint/contracts/erc-1155/LibERC1155LazyMint.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "@rarible/lib-part/contracts/LibPart.sol";

library LibERC1155LazyMint {
    bytes4 constant public ERC1155_LAZY_ASSET_CLASS = bytes4(keccak256("ERC1155_LAZY"));
    bytes4 constant _INTERFACE_ID_MINT_AND_TRANSFER = 0x6db15a0f;

    struct Mint1155Data {
        uint tokenId;
        string tokenURI;
        uint supply;
        LibPart.Part[] creators;
        LibPart.Part[] royalties;
        bytes[] signatures;
    }

    bytes32 public constant MINT_AND_TRANSFER_TYPEHASH = keccak256("Mint1155(uint256 tokenId,uint256 supply,string tokenURI,Part[] creators,Part[] royalties)Part(address account,uint96 value)");

    function hash(Mint1155Data memory data) internal pure returns (bytes32) {
        bytes32[] memory royaltiesBytes = new bytes32[](data.royalties.length);
        for (uint i = 0; i < data.royalties.length; ++i) {
            royaltiesBytes[i] = LibPart.hash(data.royalties[i]);
        }
        bytes32[] memory creatorsBytes = new bytes32[](data.creators.length);
        for (uint i = 0; i < data.creators.length; ++i) {
            creatorsBytes[i] = LibPart.hash(data.creators[i]);
        }
        return keccak256(abi.encode(
                MINT_AND_TRANSFER_TYPEHASH,
                data.tokenId,
                data.supply,
                keccak256(bytes(data.tokenURI)),
                keccak256(abi.encodePacked(creatorsBytes)),
                keccak256(abi.encodePacked(royaltiesBytes))
            ));
    }
}
          

@rarible/exchange-interfaces/contracts/ITransferProxy.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.9 <0.8.0;
pragma abicoder v2;

import "@rarible/lib-asset/contracts/LibAsset.sol";

interface ITransferProxy {
    function transfer(LibAsset.Asset calldata asset, address from, address to) external;
}
          

@rarible/exchange-v2/contracts/libraries/LibOrderDataV3.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/lib-part/contracts/LibPart.sol";

/// @dev deprecated
library LibOrderDataV3 {
    bytes4 constant public V3_SELL = bytes4(keccak256("V3_SELL"));
    bytes4 constant public V3_BUY = bytes4(keccak256("V3_BUY"));

    struct DataV3_SELL {
        uint payouts;
        uint originFeeFirst;
        uint originFeeSecond;
        uint maxFeesBasePoint;
        bytes32 marketplaceMarker;
    }

    struct DataV3_BUY {
        uint payouts;
        uint originFeeFirst;
        uint originFeeSecond;
        bytes32 marketplaceMarker;
    }

}
          

@rarible/lib-part/contracts/LibPart.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

library LibPart {
    bytes32 public constant TYPE_HASH = keccak256("Part(address account,uint96 value)");

    struct Part {
        address payable account;
        uint96 value;
    }

    function hash(Part memory part) internal pure returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, part.account, part.value));
    }
}
          

@rarible/exchange-v2/contracts/ExchangeV2Core.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "./libraries/LibFill.sol";
import "./libraries/LibOrderData.sol";
import "./libraries/LibDirectTransfer.sol";
import "./OrderValidator.sol";
import "./AssetMatcher.sol";

import "@rarible/transfer-manager/contracts/TransferExecutor.sol";
import "@rarible/transfer-manager/contracts/interfaces/ITransferManager.sol";
import "@rarible/transfer-manager/contracts/lib/LibDeal.sol";

abstract contract ExchangeV2Core is Initializable, OwnableUpgradeable, AssetMatcher, TransferExecutor, OrderValidator, ITransferManager {
    using SafeMathUpgradeable for uint;
    using LibTransfer for address;

    uint256 private constant UINT256_MAX = type(uint256).max;

    //state of the orders
    mapping(bytes32 => uint) public fills;

    //events
    event Cancel(bytes32 hash);
    event Match(bytes32 leftHash, bytes32 rightHash, uint newLeftFill, uint newRightFill);

    function cancel(LibOrder.Order memory order) external {
        require(_msgSender() == order.maker, "not a maker");
        require(order.salt != 0, "0 salt can't be used");
        bytes32 orderKeyHash = LibOrder.hashKey(order);
        fills[orderKeyHash] = UINT256_MAX;
        emit Cancel(orderKeyHash);
    }

    /**
     * @dev function, generate sellOrder and buyOrder from parameters and call validateAndMatch() for purchase transaction
 
    */

    function directPurchase(
        LibDirectTransfer.Purchase calldata direct
    ) external payable{
        LibAsset.AssetType memory paymentAssetType = getPaymentAssetType(direct.paymentToken);
                
        LibOrder.Order memory sellOrder = LibOrder.Order(
            direct.sellOrderMaker,
            LibAsset.Asset(
                LibAsset.AssetType(
                    direct.nftAssetClass,
                    direct.nftData
                ),
                direct.sellOrderNftAmount
            ),
            address(0),
            LibAsset.Asset(
                paymentAssetType,
                direct.sellOrderPaymentAmount
            ),
            direct.sellOrderSalt,
            direct.sellOrderStart,
            direct.sellOrderEnd,
            direct.sellOrderDataType,
            direct.sellOrderData
        );

        LibOrder.Order memory buyOrder = LibOrder.Order(
            address(0),
            LibAsset.Asset(
                paymentAssetType,
                direct.buyOrderPaymentAmount
            ),
            address(0),
            LibAsset.Asset(
                LibAsset.AssetType(
                    direct.nftAssetClass,
                    direct.nftData
                ),
                direct.buyOrderNftAmount
            ),
            0,
            0,
            0,
            direct.sellOrderDataType,
            direct.buyOrderData
        );

        validateFull(sellOrder, direct.sellOrderSignature);

        matchAndTransfer(sellOrder, buyOrder);
    }

    /**
     * @dev function, generate sellOrder and buyOrder from parameters and call validateAndMatch() for accept bid transaction
     * @param direct struct with parameters for accept bid operation
     */
    function directAcceptBid(
        LibDirectTransfer.AcceptBid calldata direct
    ) external payable {
        LibAsset.AssetType memory paymentAssetType = getPaymentAssetType(direct.paymentToken);

        LibOrder.Order memory buyOrder = LibOrder.Order(
            direct.bidMaker,
            LibAsset.Asset(
                paymentAssetType,
                direct.bidPaymentAmount
            ),
            address(0),
            LibAsset.Asset(
                LibAsset.AssetType(
                    direct.nftAssetClass,
                    direct.nftData
                ),
                direct.bidNftAmount
            ),
            direct.bidSalt,
            direct.bidStart,
            direct.bidEnd,
            direct.bidDataType,
            direct.bidData
        );

        LibOrder.Order memory sellOrder = LibOrder.Order(
            address(0),
            LibAsset.Asset(
                LibAsset.AssetType(
                    direct.nftAssetClass,
                    direct.nftData
                ),
                direct.sellOrderNftAmount
            ),
            address(0),
            LibAsset.Asset(
                paymentAssetType,
                direct.sellOrderPaymentAmount
            ),
            0,
            0,
            0,
            direct.bidDataType,
            direct.sellOrderData
        );

        validateFull(buyOrder, direct.bidSignature);

        matchAndTransfer(sellOrder, buyOrder);
    }

    function matchOrders(
        LibOrder.Order memory orderLeft,
        bytes memory signatureLeft,
        LibOrder.Order memory orderRight,
        bytes memory signatureRight
    ) external payable {
        validateOrders(orderLeft, signatureLeft, orderRight, signatureRight);
        matchAndTransfer(orderLeft, orderRight);
    }

    /**
      * @dev function, validate orders
      * @param orderLeft left order
      * @param signatureLeft order left signature
      * @param orderRight right order
      * @param signatureRight order right signature
      */
    function validateOrders(LibOrder.Order memory orderLeft, bytes memory signatureLeft, LibOrder.Order memory orderRight, bytes memory signatureRight) internal view {
        validateFull(orderLeft, signatureLeft);
        validateFull(orderRight, signatureRight);
        if (orderLeft.taker != address(0)) {
            if (orderRight.maker != address(0))
                require(orderRight.maker == orderLeft.taker, "leftOrder.taker verification failed");
        }
        if (orderRight.taker != address(0)) {
            if (orderLeft.maker != address(0))
                require(orderRight.taker == orderLeft.maker, "rightOrder.taker verification failed");
        }
    }

    /**
        @notice matches valid orders and transfers their assets
        @param orderLeft the left order of the match
        @param orderRight the right order of the match
    */
    function matchAndTransfer(LibOrder.Order memory orderLeft, LibOrder.Order memory orderRight) internal {
        (LibAsset.AssetType memory makeMatch, LibAsset.AssetType memory takeMatch) = matchAssets(orderLeft, orderRight);

        (LibOrderData.GenericOrderData memory leftOrderData, LibOrderData.GenericOrderData memory rightOrderData, LibFill.FillResult memory newFill) =
            parseOrdersSetFillEmitMatch(orderLeft, orderRight);

        (uint totalMakeValue, uint totalTakeValue) = doTransfers(
            LibDeal.DealSide({
                asset: LibAsset.Asset({
                    assetType: makeMatch,
                    value: newFill.leftValue
                }),
                payouts: leftOrderData.payouts,
                originFees: leftOrderData.originFees,
                proxy: proxies[makeMatch.assetClass],
                from: orderLeft.maker
            }), 
            LibDeal.DealSide({
                asset: LibAsset.Asset( 
                    takeMatch,
                    newFill.rightValue
                ),
                payouts: rightOrderData.payouts,
                originFees: rightOrderData.originFees,
                proxy: proxies[takeMatch.assetClass],
                from: orderRight.maker
            }),
            LibFeeSide.getFeeSide(makeMatch.assetClass, takeMatch.assetClass)
        );
        if (makeMatch.assetClass == LibAsset.ETH_ASSET_CLASS) {
            require(takeMatch.assetClass != LibAsset.ETH_ASSET_CLASS);
            require(msg.value >= totalMakeValue, "not enough eth");
            if (msg.value > totalMakeValue) {
                address(msg.sender).transferEth(msg.value.sub(totalMakeValue));
            }
        } else if (takeMatch.assetClass == LibAsset.ETH_ASSET_CLASS) {
            require(msg.value >= totalTakeValue, "not enough eth");
            if (msg.value > totalTakeValue) {
                address(msg.sender).transferEth(msg.value.sub(totalTakeValue));
            }
        }
    }

    function parseOrdersSetFillEmitMatch(
        LibOrder.Order memory orderLeft,
        LibOrder.Order memory orderRight
    ) internal returns (LibOrderData.GenericOrderData memory leftOrderData, LibOrderData.GenericOrderData memory rightOrderData, LibFill.FillResult memory newFill) {
        bytes32 leftOrderKeyHash = LibOrder.hashKey(orderLeft);
        bytes32 rightOrderKeyHash = LibOrder.hashKey(orderRight);

        address msgSender = _msgSender();
        if (orderLeft.maker == address(0)) {
            orderLeft.maker = msgSender;
        }
        if (orderRight.maker == address(0)) {
            orderRight.maker = msgSender;
        }

        leftOrderData = LibOrderData.parse(orderLeft);
        rightOrderData = LibOrderData.parse(orderRight);

        newFill = setFillEmitMatch(
            orderLeft,
            orderRight,
            leftOrderKeyHash,
            rightOrderKeyHash,
            leftOrderData.isMakeFill,
            rightOrderData.isMakeFill
        );
    }

    /**
        @notice calculates fills for the matched orders and set them in "fills" mapping
        @param orderLeft left order of the match
        @param orderRight right order of the match
        @param leftMakeFill true if the left orders uses make-side fills, false otherwise
        @param rightMakeFill true if the right orders uses make-side fills, false otherwise
        @return returns change in orders' fills by the match 
    */
    function setFillEmitMatch(
        LibOrder.Order memory orderLeft,
        LibOrder.Order memory orderRight,
        bytes32 leftOrderKeyHash,
        bytes32 rightOrderKeyHash,
        bool leftMakeFill,
        bool rightMakeFill
    ) internal returns (LibFill.FillResult memory) {
        uint leftOrderFill = getOrderFill(orderLeft.salt, leftOrderKeyHash);
        uint rightOrderFill = getOrderFill(orderRight.salt, rightOrderKeyHash);
        LibFill.FillResult memory newFill = LibFill.fillOrder(orderLeft, orderRight, leftOrderFill, rightOrderFill, leftMakeFill, rightMakeFill);

        if (orderLeft.makeAsset.value != 0 || orderRight.takeAsset.value != 0) {
            require(newFill.leftValue > 0, "nothing to fill");
        }
        if (orderLeft.takeAsset.value != 0 || orderRight.makeAsset.value != 0) {
            require(newFill.rightValue > 0, "nothing to fill");
        }

        if (orderLeft.salt != 0) {
            if (leftMakeFill) {
                fills[leftOrderKeyHash] = leftOrderFill.add(newFill.leftValue);
            } else {
                fills[leftOrderKeyHash] = leftOrderFill.add(newFill.rightValue);
            }
        }

        if (orderRight.salt != 0) {
            if (rightMakeFill) {
                fills[rightOrderKeyHash] = rightOrderFill.add(newFill.rightValue);
            } else {
                fills[rightOrderKeyHash] = rightOrderFill.add(newFill.leftValue);
            }
        }

        emit Match(leftOrderKeyHash, rightOrderKeyHash, newFill.rightValue, newFill.leftValue);

        return newFill;
    }

    function getOrderFill(uint salt, bytes32 hash) internal view returns (uint fill) {
        if (salt == 0) {
            fill = 0;
        } else {
            fill = fills[hash];
        }
    }

    function matchAssets(LibOrder.Order memory orderLeft, LibOrder.Order memory orderRight) internal view returns (LibAsset.AssetType memory makeMatch, LibAsset.AssetType memory takeMatch) {
        makeMatch = matchAssets(orderLeft.makeAsset.assetType, orderRight.takeAsset.assetType);
        require(makeMatch.assetClass != 0, "assets don't match");
        takeMatch = matchAssets(orderLeft.takeAsset.assetType, orderRight.makeAsset.assetType);
        require(takeMatch.assetClass != 0, "assets don't match");
    }

    function validateFull(LibOrder.Order memory order, bytes memory signature) internal view {
        LibOrder.validateOrderTime(order);
        validate(order, signature);
    }

    function getPaymentAssetType(address token) internal pure returns(LibAsset.AssetType memory){
        LibAsset.AssetType memory result;
        if(token == address(0)) {
            result.assetClass = LibAsset.ETH_ASSET_CLASS;
        } else {
            result.assetClass = LibAsset.ERC20_ASSET_CLASS;
            result.data = abi.encode(token);
        }
        return result;
    }

    uint256[49] private __gap;
}
          

@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "../../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;
}
          

@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/Initializable.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
    uint256[49] private __gap;
}
          

@rarible/transfer-manager/contracts/lib/LibFeeSide.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "@rarible/lib-asset/contracts/LibAsset.sol";

library LibFeeSide {

    enum FeeSide {NONE, LEFT, RIGHT}

    function getFeeSide(bytes4 leftClass, bytes4 rightClass) internal pure returns (FeeSide) {
        if (leftClass == LibAsset.ETH_ASSET_CLASS) {
            return FeeSide.LEFT;
        }
        if (rightClass == LibAsset.ETH_ASSET_CLASS) {
            return FeeSide.RIGHT;
        }
        if (leftClass == LibAsset.ERC20_ASSET_CLASS) {
            return FeeSide.LEFT;
        }
        if (rightClass == LibAsset.ERC20_ASSET_CLASS) {
            return FeeSide.RIGHT;
        }
        if (leftClass == LibAsset.ERC1155_ASSET_CLASS) {
            return FeeSide.LEFT;
        }
        if (rightClass == LibAsset.ERC1155_ASSET_CLASS) {
            return FeeSide.RIGHT;
        }
        return FeeSide.NONE;
    }
}
          

@rarible/exchange-v2/contracts/libraries/LibMath.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol";

library LibMath {
    using SafeMathUpgradeable for uint;

    /// @dev Calculates partial value given a numerator and denominator rounded down.
    ///      Reverts if rounding error is >= 0.1%
    /// @param numerator Numerator.
    /// @param denominator Denominator.
    /// @param target Value to calculate partial of.
    /// @return partialAmount value of target rounded down.
    function safeGetPartialAmountFloor(
        uint256 numerator,
        uint256 denominator,
        uint256 target
    ) internal pure returns (uint256 partialAmount) {
        if (isRoundingErrorFloor(numerator, denominator, target)) {
            revert("rounding error");
        }
        partialAmount = numerator.mul(target).div(denominator);
    }

    /// @dev Checks if rounding error >= 0.1% when rounding down.
    /// @param numerator Numerator.
    /// @param denominator Denominator.
    /// @param target Value to multiply with numerator/denominator.
    /// @return isError Rounding error is present.
    function isRoundingErrorFloor(
        uint256 numerator,
        uint256 denominator,
        uint256 target
    ) internal pure returns (bool isError) {
        if (denominator == 0) {
            revert("division by zero");
        }

        // The absolute rounding error is the difference between the rounded
        // value and the ideal value. The relative rounding error is the
        // absolute rounding error divided by the absolute value of the
        // ideal value. This is undefined when the ideal value is zero.
        //
        // The ideal value is `numerator * target / denominator`.
        // Let's call `numerator * target % denominator` the remainder.
        // The absolute error is `remainder / denominator`.
        //
        // When the ideal value is zero, we require the absolute error to
        // be zero. Fortunately, this is always the case. The ideal value is
        // zero iff `numerator == 0` and/or `target == 0`. In this case the
        // remainder and absolute error are also zero.
        if (target == 0 || numerator == 0) {
            return false;
        }

        // Otherwise, we want the relative rounding error to be strictly
        // less than 0.1%.
        // The relative error is `remainder / (numerator * target)`.
        // We want the relative error less than 1 / 1000:
        //        remainder / (numerator * target)  <  1 / 1000
        // or equivalently:
        //        1000 * remainder  <  numerator * target
        // so we have a rounding error iff:
        //        1000 * remainder  >=  numerator * target
        uint256 remainder = mulmod(
            target,
            numerator,
            denominator
        );
        isError = remainder.mul(1000) >= numerator.mul(target);
    }

    function safeGetPartialAmountCeil(
        uint256 numerator,
        uint256 denominator,
        uint256 target
    ) internal pure returns (uint256 partialAmount) {
        if (isRoundingErrorCeil(numerator, denominator, target)) {
            revert("rounding error");
        }
        partialAmount = numerator.mul(target).add(denominator.sub(1)).div(denominator);
    }

    /// @dev Checks if rounding error >= 0.1% when rounding up.
    /// @param numerator Numerator.
    /// @param denominator Denominator.
    /// @param target Value to multiply with numerator/denominator.
    /// @return isError Rounding error is present.
    function isRoundingErrorCeil(
        uint256 numerator,
        uint256 denominator,
        uint256 target
    ) internal pure returns (bool isError) {
        if (denominator == 0) {
            revert("division by zero");
        }

        // See the comments in `isRoundingError`.
        if (target == 0 || numerator == 0) {
            // When either is zero, the ideal value and rounded value are zero
            // and there is no rounding error. (Although the relative error
            // is undefined.)
            return false;
        }
        // Compute remainder as before
        uint256 remainder = mulmod(
            target,
            numerator,
            denominator
        );
        remainder = denominator.sub(remainder) % denominator;
        isError = remainder.mul(1000) >= numerator.mul(target);
        return isError;
    }
}
          

@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;
import "../proxy/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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
    uint256[50] private __gap;
}
          

@rarible/exchange-interfaces/contracts/IAssetMatcher.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/lib-asset/contracts/LibAsset.sol";

interface IAssetMatcher {
    function matchAssets(
        LibAsset.AssetType memory leftAssetType,
        LibAsset.AssetType memory rightAssetType
    ) external view returns (LibAsset.AssetType memory);
}
          

@rarible/exchange-v2/contracts/libraries/LibOrderDataV1.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/lib-part/contracts/LibPart.sol";

library LibOrderDataV1 {
    bytes4 constant public V1 = bytes4(keccak256("V1"));

    struct DataV1 {
        LibPart.Part[] payouts;
        LibPart.Part[] originFees;
    }

}
          

@openzeppelin/contracts/math/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}
          

@rarible/exchange-v2/contracts/AssetMatcher.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/exchange-interfaces/contracts/IAssetMatcher.sol";
import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

abstract contract AssetMatcher is Initializable, OwnableUpgradeable {

    bytes constant EMPTY = "";
    mapping(bytes4 => address) internal matchers;

    event MatcherChange(bytes4 indexed assetType, address matcher);

    function setAssetMatcher(bytes4 assetType, address matcher) external onlyOwner {
        matchers[assetType] = matcher;
        emit MatcherChange(assetType, matcher);
    }

    function matchAssets(LibAsset.AssetType memory leftAssetType, LibAsset.AssetType memory rightAssetType) internal view returns (LibAsset.AssetType memory) {
        LibAsset.AssetType memory result = matchAssetOneSide(leftAssetType, rightAssetType);
        if (result.assetClass == 0) {
            return matchAssetOneSide(rightAssetType, leftAssetType);
        } else {
            return result;
        }
    }

    function matchAssetOneSide(LibAsset.AssetType memory leftAssetType, LibAsset.AssetType memory rightAssetType) private view returns (LibAsset.AssetType memory) {
        bytes4 classLeft = leftAssetType.assetClass;
        bytes4 classRight = rightAssetType.assetClass;
        if (classLeft == LibAsset.ETH_ASSET_CLASS) {
            if (classRight == LibAsset.ETH_ASSET_CLASS) {
                return leftAssetType;
            }
            return LibAsset.AssetType(0, EMPTY);
        }
        if (classLeft == LibAsset.ERC20_ASSET_CLASS) {
            if (classRight == LibAsset.ERC20_ASSET_CLASS) {
                return simpleMatch(leftAssetType, rightAssetType);
            }
            return LibAsset.AssetType(0, EMPTY);
        }
        if (classLeft == LibAsset.ERC721_ASSET_CLASS) {
            if (classRight == LibAsset.ERC721_ASSET_CLASS) {
                return simpleMatch(leftAssetType, rightAssetType);
            }
            return LibAsset.AssetType(0, EMPTY);
        }
        if (classLeft == LibAsset.ERC1155_ASSET_CLASS) {
            if (classRight == LibAsset.ERC1155_ASSET_CLASS) {
                return simpleMatch(leftAssetType, rightAssetType);
            }
            return LibAsset.AssetType(0, EMPTY);
        }
        address matcher = matchers[classLeft];
        if (matcher != address(0)) {
            return IAssetMatcher(matcher).matchAssets(leftAssetType, rightAssetType);
        }
        if (classLeft == classRight) {
            return simpleMatch(leftAssetType, rightAssetType);
        }
        revert("not found IAssetMatcher");
    }

    function simpleMatch(LibAsset.AssetType memory leftAssetType, LibAsset.AssetType memory rightAssetType) private pure returns (LibAsset.AssetType memory) {
        bytes32 leftHash = keccak256(leftAssetType.data);
        bytes32 rightHash = keccak256(rightAssetType.data);
        if (leftHash == rightHash) {
            return leftAssetType;
        }
        return LibAsset.AssetType(0, EMPTY);
    }

    uint256[49] private __gap;
}
          

@rarible/meta-tx/contracts/EIP712MetaTransaction.sol

//SPDX-License-Identifier: MIT

pragma solidity 0.7.6;

import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";

abstract contract EIP712MetaTransaction is ContextUpgradeable {
    using SafeMath for uint256;

    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(bytes("MetaTransaction(uint256 nonce,address from,bytes functionSignature)"));
    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)");

    mapping(address => uint256) private nonces;
    bytes32 internal domainSeparator;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    /*
     * Domain structure.
     * Data(information to for making metaTransaction method uniq.) about method and contract
     */
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    event MetaTransactionExecuted(address userAddress, address payable relayerAddress, bytes functionSignature);

    function __MetaTransaction_init_unchained(string memory name, string memory version) internal {
        domainSeparator = keccak256(abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(version)),
                address(this),
                getSalt()
            ));
    }

    function convertBytesToBytes4(bytes memory inBytes) internal pure returns (bytes4 outBytes4) {
        if (inBytes.length == 0) {
            return 0x0;
        }

        assembly {
            outBytes4 := mload(add(inBytes, 32))
        }
    }

    function executeMetaTransaction(address userAddress,
        bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV) external payable returns (bytes memory) {
        bytes4 destinationFunctionSig = convertBytesToBytes4(functionSignature);
        require(destinationFunctionSig != msg.sig, "Wrong functionSignature");
        MetaTransaction memory metaTx = MetaTransaction({
        nonce : nonces[userAddress],
        from : userAddress,
        functionSignature : functionSignature
        });
        require(verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match");
        nonces[userAddress] = nonces[userAddress].add(1);
        // Append userAddress at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(abi.encodePacked(functionSignature, userAddress));

        require(success, "Function call not successful");
        emit MetaTransactionExecuted(userAddress, msg.sender, functionSignature);
        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) {
        return keccak256(abi.encode(
                META_TRANSACTION_TYPEHASH,
                metaTx.nonce,
                metaTx.from,
                keccak256(metaTx.functionSignature)
            ));
    }

    function getNonce(address user) external view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(address user, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV) internal view returns (bool) {
        address signer = ecrecover(toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS);
        require(signer != address(0), "Invalid signature");
        return signer == user;
    }

    function _msgSender() internal view virtual override returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
            // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff)
            }
        } else {
            sender = msg.sender;
        }
        return sender;
    }

    function getSalt() internal pure returns (bytes32) {
        return bytes32(getChainID());
    }

    function getChainID() internal pure returns (uint256 id) {
        assembly {
            id := chainid()
        }
    }

    function getDomainSeparator() private view returns (bytes32) {
        return domainSeparator;
    }

    /**
    * Accept message hash and returns hash message in EIP712 compatible form
    * So that it can be used to recover signer from signature signed using EIP712 formatted data
    * https://eips.ethereum.org/EIPS/eip-712
    * "\\x19" makes the encoding deterministic
    * "\\x01" is the version byte to make it compatible to EIP-191
    */
    function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", getDomainSeparator(), messageHash));
    }

    /**
         * @dev verifies the call result and bubbles up revert reason for failed calls
         *
         * @param success : outcome of forwarded call
         * @param returndata : returned data from the frowarded call
         * @param errorMessage : fallback error message to show
         */
    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure {
        if (!success) {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "../../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;
}
          

@rarible/transfer-manager/contracts/lib/LibDeal.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.7.6;
pragma abicoder v2;

import "@rarible/lib-part/contracts/LibPart.sol";
import "@rarible/lib-asset/contracts/LibAsset.sol";
import "./LibFeeSide.sol";

library LibDeal {
    struct DealSide {
        LibAsset.Asset asset;
        LibPart.Part[] payouts;
        LibPart.Part[] originFees;
        address proxy;
        address from;
    }
}
          

Compiler Settings

{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":200,"enabled":true},"metadata":{"useLiteralContent":true,"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul"}
              

Contract ABI

[{"type":"event","name":"BuyerFeeAmountChanged","inputs":[{"type":"uint256","name":"oldValue","internalType":"uint256","indexed":false},{"type":"uint256","name":"newValue","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Cancel","inputs":[{"type":"bytes32","name":"hash","internalType":"bytes32","indexed":false}],"anonymous":false},{"type":"event","name":"FeeReceiverChanged","inputs":[{"type":"address","name":"oldValue","internalType":"address","indexed":false},{"type":"address","name":"newValue","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Match","inputs":[{"type":"bytes32","name":"leftHash","internalType":"bytes32","indexed":false},{"type":"bytes32","name":"rightHash","internalType":"bytes32","indexed":false},{"type":"uint256","name":"newLeftFill","internalType":"uint256","indexed":false},{"type":"uint256","name":"newRightFill","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MatcherChange","inputs":[{"type":"bytes4","name":"assetType","internalType":"bytes4","indexed":true},{"type":"address","name":"matcher","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"MetaTransactionExecuted","inputs":[{"type":"address","name":"userAddress","internalType":"address","indexed":false},{"type":"address","name":"relayerAddress","internalType":"address payable","indexed":false},{"type":"bytes","name":"functionSignature","internalType":"bytes","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"ProxyChange","inputs":[{"type":"bytes4","name":"assetType","internalType":"bytes4","indexed":true},{"type":"address","name":"proxy","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"SellerFeeAmountChanged","inputs":[{"type":"uint256","name":"oldValue","internalType":"uint256","indexed":false},{"type":"uint256","name":"newValue","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"__ExchangeV2_init","inputs":[{"type":"address","name":"_transferProxy","internalType":"address"},{"type":"address","name":"_erc20TransferProxy","internalType":"address"},{"type":"uint256","name":"newProtocolFee","internalType":"uint256"},{"type":"address","name":"newDefaultFeeReceiver","internalType":"address"},{"type":"address","name":"newRoyaltiesProvider","internalType":"contract IRoyaltiesProvider"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"cancel","inputs":[{"type":"tuple","name":"order","internalType":"struct LibOrder.Order","components":[{"type":"address","name":"maker","internalType":"address"},{"type":"tuple","name":"makeAsset","internalType":"struct LibAsset.Asset","components":[{"type":"tuple","name":"assetType","internalType":"struct LibAsset.AssetType","components":[{"type":"bytes4","name":"assetClass","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"address","name":"taker","internalType":"address"},{"type":"tuple","name":"takeAsset","internalType":"struct LibAsset.Asset","components":[{"type":"tuple","name":"assetType","internalType":"struct LibAsset.AssetType","components":[{"type":"bytes4","name":"assetClass","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"uint256","name":"start","internalType":"uint256"},{"type":"uint256","name":"end","internalType":"uint256"},{"type":"bytes4","name":"dataType","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"directAcceptBid","inputs":[{"type":"tuple","name":"direct","internalType":"struct LibDirectTransfer.AcceptBid","components":[{"type":"address","name":"bidMaker","internalType":"address"},{"type":"uint256","name":"bidNftAmount","internalType":"uint256"},{"type":"bytes4","name":"nftAssetClass","internalType":"bytes4"},{"type":"bytes","name":"nftData","internalType":"bytes"},{"type":"uint256","name":"bidPaymentAmount","internalType":"uint256"},{"type":"address","name":"paymentToken","internalType":"address"},{"type":"uint256","name":"bidSalt","internalType":"uint256"},{"type":"uint256","name":"bidStart","internalType":"uint256"},{"type":"uint256","name":"bidEnd","internalType":"uint256"},{"type":"bytes4","name":"bidDataType","internalType":"bytes4"},{"type":"bytes","name":"bidData","internalType":"bytes"},{"type":"bytes","name":"bidSignature","internalType":"bytes"},{"type":"uint256","name":"sellOrderPaymentAmount","internalType":"uint256"},{"type":"uint256","name":"sellOrderNftAmount","internalType":"uint256"},{"type":"bytes","name":"sellOrderData","internalType":"bytes"}]}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"directPurchase","inputs":[{"type":"tuple","name":"direct","internalType":"struct LibDirectTransfer.Purchase","components":[{"type":"address","name":"sellOrderMaker","internalType":"address"},{"type":"uint256","name":"sellOrderNftAmount","internalType":"uint256"},{"type":"bytes4","name":"nftAssetClass","internalType":"bytes4"},{"type":"bytes","name":"nftData","internalType":"bytes"},{"type":"uint256","name":"sellOrderPaymentAmount","internalType":"uint256"},{"type":"address","name":"paymentToken","internalType":"address"},{"type":"uint256","name":"sellOrderSalt","internalType":"uint256"},{"type":"uint256","name":"sellOrderStart","internalType":"uint256"},{"type":"uint256","name":"sellOrderEnd","internalType":"uint256"},{"type":"bytes4","name":"sellOrderDataType","internalType":"bytes4"},{"type":"bytes","name":"sellOrderData","internalType":"bytes"},{"type":"bytes","name":"sellOrderSignature","internalType":"bytes"},{"type":"uint256","name":"buyOrderPaymentAmount","internalType":"uint256"},{"type":"uint256","name":"buyOrderNftAmount","internalType":"uint256"},{"type":"bytes","name":"buyOrderData","internalType":"bytes"}]}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"bytes","name":"","internalType":"bytes"}],"name":"executeMetaTransaction","inputs":[{"type":"address","name":"userAddress","internalType":"address"},{"type":"bytes","name":"functionSignature","internalType":"bytes"},{"type":"bytes32","name":"sigR","internalType":"bytes32"},{"type":"bytes32","name":"sigS","internalType":"bytes32"},{"type":"uint8","name":"sigV","internalType":"uint8"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"fills","inputs":[{"type":"bytes32","name":"","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"nonce","internalType":"uint256"}],"name":"getNonce","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"matchOrders","inputs":[{"type":"tuple","name":"orderLeft","internalType":"struct LibOrder.Order","components":[{"type":"address","name":"maker","internalType":"address"},{"type":"tuple","name":"makeAsset","internalType":"struct LibAsset.Asset","components":[{"type":"tuple","name":"assetType","internalType":"struct LibAsset.AssetType","components":[{"type":"bytes4","name":"assetClass","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"address","name":"taker","internalType":"address"},{"type":"tuple","name":"takeAsset","internalType":"struct LibAsset.Asset","components":[{"type":"tuple","name":"assetType","internalType":"struct LibAsset.AssetType","components":[{"type":"bytes4","name":"assetClass","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"uint256","name":"start","internalType":"uint256"},{"type":"uint256","name":"end","internalType":"uint256"},{"type":"bytes4","name":"dataType","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"bytes","name":"signatureLeft","internalType":"bytes"},{"type":"tuple","name":"orderRight","internalType":"struct LibOrder.Order","components":[{"type":"address","name":"maker","internalType":"address"},{"type":"tuple","name":"makeAsset","internalType":"struct LibAsset.Asset","components":[{"type":"tuple","name":"assetType","internalType":"struct LibAsset.AssetType","components":[{"type":"bytes4","name":"assetClass","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"address","name":"taker","internalType":"address"},{"type":"tuple","name":"takeAsset","internalType":"struct LibAsset.Asset","components":[{"type":"tuple","name":"assetType","internalType":"struct LibAsset.AssetType","components":[{"type":"bytes4","name":"assetClass","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"uint256","name":"start","internalType":"uint256"},{"type":"uint256","name":"end","internalType":"uint256"},{"type":"bytes4","name":"dataType","internalType":"bytes4"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"bytes","name":"signatureRight","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"receiver","internalType":"address"},{"type":"uint48","name":"buyerAmount","internalType":"uint48"},{"type":"uint48","name":"sellerAmount","internalType":"uint48"}],"name":"protocolFee","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IRoyaltiesProvider"}],"name":"royaltiesRegistry","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAllProtocolFeeData","inputs":[{"type":"address","name":"_receiver","internalType":"address"},{"type":"uint48","name":"_buyerAmount","internalType":"uint48"},{"type":"uint48","name":"_sellerAmount","internalType":"uint48"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAssetMatcher","inputs":[{"type":"bytes4","name":"assetType","internalType":"bytes4"},{"type":"address","name":"matcher","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPrtocolFeeBuyerAmount","inputs":[{"type":"uint48","name":"_buyerAmount","internalType":"uint48"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPrtocolFeeReceiver","inputs":[{"type":"address","name":"_receiver","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPrtocolFeeSellerAmount","inputs":[{"type":"uint48","name":"_sellerAmount","internalType":"uint48"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setRoyaltiesRegistry","inputs":[{"type":"address","name":"newRoyaltiesRegistry","internalType":"contract IRoyaltiesProvider"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTransferProxy","inputs":[{"type":"bytes4","name":"assetType","internalType":"bytes4"},{"type":"address","name":"proxy","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x608060405234801561001057600080fd5b50615aa780620000216000396000f3fe60806040526004361061011f5760003560e01c80638da5cb5b116100a0578063d6ca6ab711610064578063d6ca6ab7146102f2578063e2864fe314610312578063e99a3f8014610332578063eae3ad6f14610345578063f2fde38b146103655761011f565b80638da5cb5b14610259578063b0e21e8a1461026e578063b39deb4614610292578063b74c8e9a146102b2578063bc158c2d146102d25761011f565b806330c642f1116100e757806330c642f1146101cf5780633be89922146101ef57806367d49a3b1461020f5780636d8f069414610222578063715018a6146102445761011f565b80630c53c51c146101245780630d5f7d351461014d5780631372a6251461016257806320158c44146101825780632d0335ab146101af575b600080fd5b610137610132366004614e52565b610385565b60405161014491906153e6565b60405180910390f35b61016061015b366004614fba565b6106fe565b005b34801561016e57600080fd5b5061016061017d366004614deb565b610a1b565b34801561018e57600080fd5b506101a261019d366004614f4e565b610b38565b60405161014491906153c2565b3480156101bb57600080fd5b506101a26101ca366004614b96565b610b4b565b3480156101db57600080fd5b506101606101ea366004614f82565b610b67565b3480156101fb57600080fd5b5061016061020a366004614b96565b610c37565b61016061021d366004614fba565b610cbc565b34801561022e57600080fd5b50610237610f9c565b60405161014491906152f6565b34801561025057600080fd5b50610160610fac565b34801561026557600080fd5b50610237611058565b34801561027a57600080fd5b50610283611068565b60405161014493929190615399565b34801561029e57600080fd5b506101606102ad366004614f82565b611093565b3480156102be57600080fd5b506101606102cd366004614ebe565b611157565b3480156102de57600080fd5b506101606102ed366004614b96565b6111d9565b3480156102fe57600080fd5b5061016061030d366004615288565b6112a6565b34801561031e57600080fd5b5061016061032d3660046151af565b611380565b6101606103403660046151e1565b611441565b34801561035157600080fd5b50610160610360366004615288565b611457565b34801561037157600080fd5b50610160610380366004614b96565b61152e565b6060600061039286611631565b90506000356001600160e01b031990811690821614156103f9576040805162461bcd60e51b815260206004820152601760248201527f57726f6e672066756e6374696f6e5369676e6174757265000000000000000000604482015290519081900360640190fd5b604080516060810182526001600160a01b03891660008181526101936020908152908490205483528201529081018790526104378882888888611651565b6104725760405162461bcd60e51b8152600401808060200182810382526021815260200180615a516021913960400191505060405180910390fd5b6001600160a01b0388166000908152610193602052604090205461049790600161173b565b61019360008a6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080306001600160a01b0316898b6040516020018083805190602001908083835b602083106105025780518252601f1990920191602091820191016104e3565b6001836020036101000a038019825116818451168082178552505050505050905001826001600160a01b031660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b602083106105785780518252601f199092019160209182019101610559565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146105da576040519150601f19603f3d011682016040523d82523d6000602084013e6105df565b606091505b509150915081610636576040805162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015290519081900360640190fd5b7f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b8a338b60405180846001600160a01b03168152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156106b557818101518382015260200161069d565b50505050905090810190601f1680156106e25780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a19998505050505050505050565b600061071861071360c0840160a08501614b96565b61179e565b604080516101208101909152909150600090806107386020860186614b96565b6001600160a01b031681526020016040518060400160405280604051806040016040528088604001602081019061076f9190614f66565b6001600160e01b031916815260200161078b60608a018a6157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050918352506020888101359281019290925291835282810191909152604080518082018252868152608080890135938201939093529083015260c080870135606084015260e08701359183019190915261010086013560a08301520161082e61014086016101208701614f66565b6001600160e01b031916815260200161084b6101408601866157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050604080516101208101825282815281518083018352878152610180890135602082810191909152820152808201839052815160808101835294955091939192506060808401929182918282019182916108df91908c01908c01614f66565b6001600160e01b03191681526020016108fb60608b018b6157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050918352506101a0890135602092830152918352820181905260408201819052606082015260800161096a61014087016101208801614f66565b6001600160e01b03191681526020016109876101c08701876157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152509050610a0b826109d16101608701876157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061180192505050565b610a158282611818565b50505050565b600054610100900460ff1680610a345750610a34611a6a565b80610a42575060005460ff16155b610a7d5760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015610aa8576000805460ff1961ff0019909116610100171660011790555b610ab0611a7b565b610ab8611b1d565b610ac0611c16565b610b096040518060400160405280600e81526020016d22bc31b430b733b2a6b2ba30ab1960911b815250604051806040016040528060018152602001603160f81b815250611ce6565b610b138686611d76565b610b1e848484611e20565b8015610b30576000805461ff00191690555b505050505050565b61012f6020526000908152604090205481565b6001600160a01b03166000908152610193602052604090205490565b610b6f611ee0565b6001600160a01b0316610b80611058565b6001600160a01b031614610bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6001600160e01b031982166000818152609760205260409081902080546001600160a01b0319166001600160a01b038516179055517f4b5aced933c0c9a88aeac3f0b3b72c5aaf75df8ebaf53225773248c4c315359390610c2b9084906152f6565b60405180910390a25050565b610c3f611ee0565b6001600160a01b0316610c50611058565b6001600160a01b031614610c99576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b61016280546001600160a01b0319166001600160a01b0392909216919091179055565b6000610cd161071360c0840160a08501614b96565b60408051610120810190915290915060009080610cf16020860186614b96565b6001600160a01b0316815260200160405180604001604052808581526020018660800135815250815260200160006001600160a01b0316815260200160405180604001604052806040518060400160405280886040016020810190610d569190614f66565b6001600160e01b0319168152602001610d7260608a018a6157eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505091525081526020878101359181019190915290825260c08601359082015260e085013560408201526101008501356060820152608001610ded61014086016101208701614f66565b6001600160e01b0319168152602001610e0a6101408601866157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250506040805161012081018252828152815160808101835294955091939192506020830191908190818101908190610e7c9060608c01908c01614f66565b6001600160e01b0319168152602001610e9860608b018b6157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050918352506101a08901356020928301529183528281018290526040805180820182528881526101808a013592810192909252830152606082018190526080820181905260a082015260c001610f2b61014087016101208801614f66565b6001600160e01b0319168152602001610f486101c08701876157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152509050610f92826109d16101608701876157eb565b610a158183611818565b610162546001600160a01b031681565b610fb4611ee0565b6001600160a01b0316610fc5611058565b6001600160a01b03161461100e576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b6033546001600160a01b03165b90565b610161546001600160a01b0381169065ffffffffffff600160a01b8204811691600160d01b90041683565b61109b611ee0565b6001600160a01b03166110ac611058565b6001600160a01b0316146110f5576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6001600160e01b031982166000818152606560205260409081902080546001600160a01b0319166001600160a01b038516179055517fd2bf91075f105d0fd80328da28e20ebdad1c1261839711183bc29a44cbe6c72f90610c2b9084906152f6565b61115f611ee0565b6001600160a01b0316611170611058565b6001600160a01b0316146111b9576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6111c2836111d9565b6111cb826112a6565b6111d481611457565b505050565b6111e1611ee0565b6001600160a01b03166111f2611058565b6001600160a01b03161461123b576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b610161546040517fa4b009cc442411b602eaf94bc0579b6abdb8fd90b4ef5b9426e270038906bd039161127b916001600160a01b0390911690849061530a565b60405180910390a161016180546001600160a01b0319166001600160a01b0392909216919091179055565b6112ae611ee0565b6001600160a01b03166112bf611058565b6001600160a01b031614611308576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b610161546040517f70bba4f904a93ba5c1af3a1bb602bc9c058551dbe963dfe0b6cb5bc11c5fea9e9161134d91600160a01b90910465ffffffffffff169084906157d2565b60405180910390a1610161805465ffffffffffff909216600160a01b0265ffffffffffff60a01b19909216919091179055565b80516001600160a01b0316611393611ee0565b6001600160a01b0316146113c25760405162461bcd60e51b81526004016113b990615742565b60405180910390fd5b60808101516113e35760405162461bcd60e51b81526004016113b9906154d4565b60006113ee82611eef565b600081815261012f6020526040908190206000199055519091507fe8d9861dbc9c663ed3accd261bbe2fe01e0d3d9e5f51fa38523b265c7757a93a906114359083906153c2565b60405180910390a15050565b61144d84848484612077565b610a158483611818565b61145f611ee0565b6001600160a01b0316611470611058565b6001600160a01b0316146114b9576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b610161546040517fa8af9093caa9beb61d20432227c66258ceef926f21879b80f3adf22a4d19f131916114fe91600160d01b90910465ffffffffffff169084906157d2565b60405180910390a1610161805465ffffffffffff909216600160d01b026001600160d01b03909216919091179055565b611536611ee0565b6001600160a01b0316611547611058565b6001600160a01b031614611590576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6001600160a01b0381166115d55760405162461bcd60e51b815260040180806020018281038252602681526020018061592b6026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b60008151600014156116455750600061164c565b5060208101515b919050565b600080600161166761166288612143565b6121c6565b84878760405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156116be573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661171a576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b866001600160a01b0316816001600160a01b03161491505095945050505050565b600082820183811015611795576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6117a661478b565b6117ae61478b565b6001600160a01b0383166117cb576355575f5d60e11b8152611798565b6322ba176160e21b81526040516117e69084906020016152f6565b60408051601f19818403018152919052602082015292915050565b61180a82612212565b61181482826122dc565b5050565b600080611825848461258b565b9150915060008060006118388787612624565b9250925092506000806119916040518060a0016040528060405180604001604052808b8152602001876000015181525081526020018760000151815260200187602001518152602001609760008b600001516001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031681526020018b600001516001600160a01b03168152506040518060a0016040528060405180604001604052808b8152602001886020015181525081526020018760000151815260200187602001518152602001609760008b600001516001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031681526020018b600001516001600160a01b031681525061198c8a600001518a600001516126d3565b6127a4565b885191935091506001600160e01b0319166355575f5d60e11b1415611a105785516001600160e01b0319166355575f5d60e11b14156119cf57600080fd5b813410156119ef5760405162461bcd60e51b81526004016113b99061571a565b81341115611a0b57611a0b611a04348461291b565b3390612978565b611a5f565b85516001600160e01b0319166355575f5d60e11b1415611a5f5780341015611a4a5760405162461bcd60e51b81526004016113b99061571a565b80341115611a5f57611a5f611a04348361291b565b505050505050505050565b6000611a7530612a10565b15905090565b600054610100900460ff1680611a945750611a94611a6a565b80611aa2575060005460ff16155b611add5760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611b08576000805460ff1961ff0019909116610100171660011790555b8015611b1a576000805461ff00191690555b50565b600054610100900460ff1680611b365750611b36611a6a565b80611b44575060005460ff16155b611b7f5760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611baa576000805460ff1961ff0019909116610100171660011790555b6000611bb4611ee0565b603380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015611b1a576000805461ff001916905550565b600054610100900460ff1680611c2f5750611c2f611a6a565b80611c3d575060005460ff16155b611c785760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611ca3576000805460ff1961ff0019909116610100171660011790555b611b086040518060400160405280600881526020016745786368616e676560c01b815250604051806040016040528060018152602001601960f91b815250612a16565b7f36c25de3e541d5d970f66e4210d728721220fff5c077cc6cd008b3a0c62adab78280519060200120828051906020012030611d20612ad6565b60405160200180868152602001858152602001848152602001836001600160a01b031681526020018281526020019550505050505060405160208183030381529060405280519060200120610194819055505050565b60976020527f4532fa16f071d6234e30e1a1e69b9806f04095edf37a1ca7a25c8d6af7861cc080546001600160a01b039283166001600160a01b0319918216179091557f30a684095c937b5aa064dcf94f9903a7d808e3efb22d8389dbd43080ad4ed3d5805493909216928116831790915563025ceed960e61b6000527f4b5822151ea34b7c8d9e37c3e466bcecb631efe6a9f26a4a4054110a93dd316f80549091169091179055565b600054610100900460ff1680611e395750611e39611a6a565b80611e47575060005460ff16155b611e825760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611ead576000805460ff1961ff0019909116610100171660011790555b61016280546001600160a01b0319166001600160a01b0384161790558015610a15576000805461ff001916905550505050565b6000611eea612ae0565b905090565b60e08101516000906001600160e01b031916632611a13360e11b1480611f23575060e08201516001600160e01b0319908116145b15611f98578151602083015151611f3990612b3c565b606084015151611f4890612b3c565b846080015160405160200180856001600160a01b0316815260200184815260200183815260200182815260200194505050505060405160208183030381529060405280519060200120905061164c565b8151602083015151611fa990612b3c565b606084015151611fb890612b3c565b846080015185610100015160405160200180866001600160a01b0316815260200185815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561202457818101518382015260200161200c565b50505050905090810190601f1680156120515780820380516001836020036101000a031916815260200191505b50965050505050505060405160208183030381529060405280519060200120905061164c565b6120818484611801565b61208b8282611801565b60408401516001600160a01b0316156120e75781516001600160a01b0316156120e75783604001516001600160a01b031682600001516001600160a01b0316146120e75760405162461bcd60e51b81526004016113b9906156d7565b60408201516001600160a01b031615610a155783516001600160a01b031615610a155783600001516001600160a01b031682604001516001600160a01b031614610a155760405162461bcd60e51b81526004016113b990615546565b60006040518060800160405280604381526020016158e860439139805190602001208260000151836020015184604001518051906020012060405160200180858152602001848152602001836001600160a01b03168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b60006121d0612ba6565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60a081015115806122265750428160a00151105b612277576040805162461bcd60e51b815260206004820152601d60248201527f4f726465722073746172742076616c69646174696f6e206661696c6564000000604482015290519081900360640190fd5b60c0810151158061228b5750428160c00151115b611b1a576040805162461bcd60e51b815260206004820152601b60248201527f4f7264657220656e642076616c69646174696f6e206661696c65640000000000604482015290519081900360640190fd5b60808201516123615781516001600160a01b03161561235c5781516001600160a01b0316612308611ee0565b6001600160a01b03161461235c576040805162461bcd60e51b815260206004820152601660248201527536b0b5b2b91034b9903737ba103a3c1039b2b73232b960511b604482015290519081900360640190fd5b611814565b81516001600160a01b0316612374611ee0565b6001600160a01b03161461181457600061238d83612bad565b90506123a583600001516001600160a01b0316612a10565b156124e1578251630b135d3f60e11b906001600160a01b0316631626ba7e6123cc84612c9d565b856040518363ffffffff1660e01b81526004018083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561241f578181015183820152602001612407565b50505050905090810190601f16801561244c5780820380516001836020036101000a031916815260200191505b50935050505060206040518083038186803b15801561246a57600080fd5b505afa15801561247e573d6000803e3d6000fd5b505050506040513d602081101561249457600080fd5b50516001600160e01b031916146124dc5760405162461bcd60e51b815260040180806020018281038252602b815260200180615995602b913960400191505060405180910390fd5b6111d4565b82516001600160a01b03166124ff836124f984612c9d565b90612ca7565b6001600160a01b0316146125445760405162461bcd60e51b81526004018080602001828103825260228152602001806159736022913960400191505060405180910390fd5b82516001600160a01b03166111d4576040805162461bcd60e51b815260206004820152600860248201526737379036b0b5b2b960c11b604482015290519081900360640190fd5b61259361478b565b61259b61478b565b6020840151516060840151516125b19190612d27565b80519092506001600160e01b0319166125dc5760405162461bcd60e51b81526004016113b9906156ab565b6060840151516020840151516125f29190612d27565b80519091506001600160e01b03191661261d5760405162461bcd60e51b81526004016113b9906156ab565b9250929050565b61262c6147a3565b6126346147a3565b61263c6147c6565b600061264786611eef565b9050600061265486611eef565b90506000612660611ee0565b88519091506001600160a01b031661267f576001600160a01b03811688525b86516001600160a01b031661269b576001600160a01b03811687525b6126a488612d67565b95506126af87612d67565b94506126c7888885858a604001518a60400151612e60565b93505050509250925092565b60006001600160e01b031983166355575f5d60e11b14156126f657506001611798565b6001600160e01b031982166355575f5d60e11b141561271757506002611798565b6001600160e01b031983166322ba176160e21b141561273857506001611798565b6001600160e01b031982166322ba176160e21b141561275957506002611798565b6001600160e01b0319831663025ceed960e61b141561277a57506001611798565b6001600160e01b0319821663025ceed960e61b141561279b57506002611798565b50600092915050565b825160209081015183519091015160018360028111156127c057fe5b14156128425760408051606081018252610161546001600160a01b038116825265ffffffffffff600160a01b820481166020840152600160d01b9091041691810191909152612812908690869061301b565b915061283d846000015160000151856000015160200151866080015188602001518860600151613295565b612913565b600283600281111561285057fe5b14156128cd5760408051606081018252610161546001600160a01b038116825265ffffffffffff600160a01b820481166020840152600160d01b90910416918101919091526128a2908590879061301b565b905061283d856000015160000151866000015160200151876080015187602001518960600151613295565b8451805160209182015160808801519287015160608901516128f0949190613295565b835180516020918201516080870151928801516060880151612913949190613295565b935093915050565b600082821115612972576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040516000906001600160a01b0384169083908381818185875af1925050503d80600081146129c3576040519150601f19603f3d011682016040523d82523d6000602084013e6129c8565b606091505b50509050806111d4576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b3b151590565b600054610100900460ff1680612a2f5750612a2f611a6a565b80612a3d575060005460ff16155b612a785760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015612aa3576000805460ff1961ff0019909116610100171660011790555b825160208085019190912083519184019190912060c99190915560ca5580156111d4576000805461ff0019169055505050565b6000611eea613419565b600033301415612b3757600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110659050565b503390565b8051602091820151805190830120604080517f452a0dc408cb0d27ffc3b3caff933a5208040a53a9dbecd8d89cad2c0d40e00c818601526001600160e01b031990931683820152606080840192909252805180840390920182526080909201909152805191012090565b6101945490565b60007f477ed43b8020849b755512278536c3766a3b4ab547519949a75f483372493f8d8260000151612be2846020015161341d565b8460400151612bf4866060015161341d565b86608001518760a001518860c001518960e001518a610100015180519060200120604051602001808b81526020018a6001600160a01b03168152602001898152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160e01b03191681526020018281526020019a5050505050505050505050604051602081830303815290604052805190602001209050919050565b60006121d061348d565b60008151604114612cff576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b60208201516040830151606084015160001a612d1d868285856134c8565b9695505050505050565b612d2f61478b565b6000612d3b848461371e565b80519091506001600160e01b031916612d6057612d58838561371e565b915050611798565b9050611798565b612d6f6147a3565b60e08201516001600160e01b031916632611a13360e11b1415612dbb576000826101000151806020019051810190612da79190615077565b805183526020908101519083015250612e47565b60e08201516001600160e01b0319166323d235ef60e01b1415612e13576000826101000151806020019051810190612df39190615103565b805183526020808201519084015260409081015115159083015250612e47565b60e08201516001600160e01b03199081161415612e2f57612e47565b60405162461bcd60e51b81526004016113b99061563d565b80515161164c578151612e599061393a565b8152919050565b612e686147c6565b6000612e788860800151876139d5565b90506000612e8a8860800151876139d5565b90506000612e9c8a8a85858a8a6139fa565b90508960200151602001516000141580612ebd575060608901516020015115155b15612ee0578051612ee05760405162461bcd60e51b81526004016113b9906155b6565b60608a015160200151151580612efc57506020808a0151015115155b15612f25576000816020015111612f255760405162461bcd60e51b81526004016113b9906155b6565b60808a015115612f78578515612f57578051612f4290849061173b565b600089815261012f6020526040902055612f78565b6020810151612f6790849061173b565b600089815261012f60205260409020555b608089015115612fcb578415612fad576020810151612f9890839061173b565b600088815261012f6020526040902055612fcb565b8051612fba90839061173b565b600088815261012f60205260409020555b602081015181516040517f956cd63ee4cdcd81fda5f0ec7c6c36dceda99e1b412f4a650a5d26055dc3c45092613006928c928c9291906153cb565b60405180910390a19998505050505050505050565b6000613034846000015160200151838660400151613a93565b9050600061305e828660000151602001518760800151868960000151600001518a60600151613b40565b8551805186515160208089015193015160808a015160608b015195965061308c959394929387929190613b9d565b905084604001515160011480156130a857508360400151516001145b80156130fd575084604001516000815181106130c057fe5b6020026020010151600001516001600160a01b031684604001516000815181106130e657fe5b6020026020010151600001516001600160a01b0316145b1561321357604080516001808252818301909252600091816020015b6131216147e0565b815260200190600190039081613119579050509050846040015160008151811061314757fe5b6020026020010151600001518160008151811061316057fe5b60209081029190910101516001600160a01b0390911690526040860151805160009061318857fe5b60200260200101516020015185604001516000815181106131a557fe5b60200260200101516020015101816000815181106131bf57fe5b6020026020010151602001906001600160601b031690816001600160601b03168152505061320986600001516000015183886000015160200151848a608001518b60600151613ca2565b50915061326c9050565b61323d85600001516000015182876000015160200151886040015189608001518a60600151613ca2565b50855180516020909101516040870151608089015160608a0151949550613268948693929190613ca2565b5090505b61328d85600001516000015182876080015187602001518960600151613295565b509392505050565b60008251116132b65760405162461bcd60e51b81526004016113b990615502565b600084815b60018551038110156133855760006132fc8683815181106132d857fe5b6020026020010151602001516001600160601b031689613d5790919063ffffffff16565b905061333186838151811061330d57fe5b6020026020010151602001516001600160601b03168561173b90919063ffffffff16565b9350801561337c57613343838261291b565b925061337c60405180604001604052808b8152602001838152508888858151811061336a57fe5b60200260200101516000015188613d6f565b506001016132bb565b5060008460018651038151811061339857fe5b602002602001015190506133c281602001516001600160601b03168461173b90919063ffffffff16565b925082612710146133e55760405162461bcd60e51b81526004016113b990615674565b811561340f5761340f60405180604001604052808a81526020018481525087836000015187613d6f565b5050505050505050565b4690565b60007fdb6f72e915676cfc289da13bc4ece054fd17b1df6d77ffc4a60510718c236b0861344d8360000151612b3c565b8360200151604051602001808481526020018381526020018281526020019350505050604051602081830303815290604052805190602001209050919050565b6000611eea7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6134bb614177565b6134c361417d565b614183565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156135295760405162461bcd60e51b81526004018080602001828103825260228152602001806159516022913960400191505060405180910390fd5b6000601e8560ff161115613603576004850360ff16601b148061355257506004850360ff16601c145b61358d5760405162461bcd60e51b81526004018080602001828103825260228152602001806159ee6022913960400191505060405180910390fd5b6001613598876141e5565b60048703868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156135f2573d6000803e3d6000fd5b5050506020604051035190506136ba565b8460ff16601b148061361857508460ff16601c145b6136535760405162461bcd60e51b81526004018080602001828103825260228152602001806159ee6022913960400191505060405180910390fd5b60018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156136ad573d6000803e3d6000fd5b5050506020604051035190505b6001600160a01b038116613715576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b61372661478b565b825182516001600160e01b031982166355575f5d60e11b1415613791576001600160e01b031981166355575f5d60e11b1415613766578492505050611798565b5050604080518082018252600080825282516020818101909452908152918101919091529050611798565b6001600160e01b031982166322ba176160e21b14156137d6576001600160e01b031981166322ba176160e21b1415613766576137cd8585614236565b92505050611798565b6001600160e01b031982166339d690a360e11b1415613812576001600160e01b031981166339d690a360e11b1415613766576137cd8585614236565b6001600160e01b0319821663025ceed960e61b141561384e576001600160e01b0319811663025ceed960e61b1415613766576137cd8585614236565b6001600160e01b031982166000908152606560205260409020546001600160a01b03168015613903576040516306d3f7cb60e41b81526001600160a01b03821690636d3f7cb0906138a59089908990600401615767565b60006040518083038186803b1580156138bd57600080fd5b505afa1580156138d1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138f99190810190614fec565b9350505050611798565b6001600160e01b03198381169083161415613922576138f98686614236565b60405162461bcd60e51b81526004016113b990615466565b60408051600180825281830190925260609160009190816020015b61395d6147e0565b815260200190600190039081613955579050509050828160008151811061398057fe5b6020026020010151600001906001600160a01b031690816001600160a01b031681525050612710816000815181106139b457fe5b6020908102919091018101516001600160601b039092169101529050919050565b6000826139e457506000611798565b50600090815261012f6020526040902054919050565b613a026147c6565b600080613a10898887614293565b91509150600080613a228a8988614293565b9150915083811180613a3c57508381148015613a3c575083155b15613a6857613a5d84848c60200151602001518d606001516020015161430c565b945050505050612d1d565b613a848b60200151602001518c60600151602001518484614391565b9b9a5050505050505050505050565b602082015160009065ffffffffffff16815b8351811015613b2057612710848281518110613abd57fe5b6020026020010151602001516001600160601b03161115613af05760405162461bcd60e51b81526004016113b99061560e565b838181518110613afc57fe5b6020026020010151602001516001600160601b031682019150806001019050613aa5565b50613b35613b2e8683613d57565b869061173b565b9150505b9392505050565b6000806000613b628989886040015189602001510165ffffffffffff16614417565b90925090508015613b9157613b9160405180604001604052808781526020018381525088886000015187613d6f565b50979650505050505050565b600080613ba988614439565b905080516001148015613bbd575086516001145b8015613c0a575086600081518110613bd157fe5b6020026020010151600001516001600160a01b031681600081518110613bf357fe5b6020026020010151600001516001600160a01b0316145b15613c5b5761138881600081518110613c1f57fe5b6020026020010151602001516001600160601b03161115613c525760405162461bcd60e51b81526004016113b99061549d565b85915050613c97565b600080613c6c8b8989868a8a613ca2565b91509150611388811115613c925760405162461bcd60e51b81526004016113b99061549d565b509150505b979650505050505050565b846000805b8551811015613d4b57613ce3868281518110613cbf57fe5b6020026020010151602001516001600160601b03168361173b90919063ffffffff16565b91506000613d128489898581518110613cf857fe5b6020026020010151602001516001600160601b0316614417565b90945090508015613d4257613d4260405180604001604052808c8152602001838152508789858151811061336a57fe5b50600101613ca7565b50965096945050505050565b6000611795612710613d6985856145ae565b90614607565b8351516001600160e01b0319166339d690a360e11b1415613eb557600080856000015160200151806020019051810190613da99190614dbe565b915091508560200151600114613dd15760405162461bcd60e51b81526004016113b99061558a565b6001600160a01b038516301415613e4957604051632142170760e11b81526001600160a01b038316906342842e0e90613e1290309088908690600401615324565b600060405180830381600087803b158015613e2c57600080fd5b505af1158015613e40573d6000803e3d6000fd5b50505050613eae565b604051637b84dc8360e11b81526001600160a01b0384169063f709b90690613e7b90859089908990879060040161543c565b600060405180830381600087803b158015613e9557600080fd5b505af1158015613ea9573d6000803e3d6000fd5b505050505b5050610a15565b8351516001600160e01b0319166322ba176160e21b1415614013576000846000015160200151806020019051810190613eee9190614bb2565b90506001600160a01b038416301415613fa557602085015160405163a9059cbb60e01b81526001600160a01b0383169163a9059cbb91613f32918791600401615380565b602060405180830381600087803b158015613f4c57600080fd5b505af1158015613f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f849190614f34565b613fa05760405162461bcd60e51b81526004016113b9906155df565b61400d565b602085015160405163776062c360e01b81526001600160a01b0384169163776062c391613fda9185918991899160040161543c565b600060405180830381600087803b158015613ff457600080fd5b505af1158015614008573d6000803e3d6000fd5b505050505b50610a15565b8351516001600160e01b03191663025ceed960e61b14156140d05760008085600001516020015180602001905181019061404d9190614dbe565b90925090506001600160a01b038516301415614098576020860151604051637921219560e11b81526001600160a01b0384169163f242432a91613e1291309189918791600401615348565b6020860151604051639c1c2ee960e01b81526001600160a01b03851691639c1c2ee991613e7b9186918a918a918891906004016153f9565b8351516001600160e01b0319166355575f5d60e11b1415614119576001600160a01b0382163014614114576020840151614114906001600160a01b03841690612978565b610a15565b6040516354bc0cf160e01b81526001600160a01b038216906354bc0cf1906141499087908790879060040161578c565b600060405180830381600087803b15801561416357600080fd5b505af115801561340f573d6000803e3d6000fd5b60c95490565b60ca5490565b6000838383614190613419565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b61423e61478b565b60208084015180519082012083820151805192019190912080821415614268578492505050611798565b5050604080518082018252600080825282516020808201909452908152918101919091529392505050565b60008082156142d25760208086015101516142ae908561291b565b91506142cb8560600151602001518660200151602001518461466e565b9050612913565b6060850151602001516142e5908561291b565b90506143028560200151602001518660600151602001518361466e565b9150935093915050565b6143146147c6565b600061432185858561466e565b905085811115614378576040805162461bcd60e51b815260206004820152601860248201527f66696c6c4c6566743a20756e61626c6520746f2066696c6c0000000000000000604482015290519081900360640190fd5b5050604080518082019091529384525050602082015290565b6143996147c6565b60006143a683878761466e565b9050838111156143fd576040805162461bcd60e51b815260206004820152601960248201527f66696c6c52696768743a20756e61626c6520746f2066696c6c00000000000000604482015290519081900360640190fd5b604080518082019091529283526020830152509392505050565b60008061442d856144288686613d57565b6146d4565b91509150935093915050565b80516060906001600160e01b03191663025ceed960e61b148061446d575081516001600160e01b0319166339d690a360e11b145b1561452357600080836020015180602001905181019061448d9190614dbe565b61016254604051634e53ee3d60e11b81529294509092506001600160a01b031690639ca7dc7a906144c49085908590600401615380565b600060405180830381600087803b1580156144de57600080fd5b505af11580156144f2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261451a9190810190614f02565b9250505061164c565b81516001600160e01b03191662737ea960e61b141561456457600082602001518060200190518101906145569190614bce565b60800151925061164c915050565b81516001600160e01b03191663d8f960c160e01b14156145a657600082602001518060200190518101906145989190614ccb565b60600151925061164c915050565b506060919050565b6000826145bd57506000611798565b828202828482816145ca57fe5b04146117955760405162461bcd60e51b8152600401808060200182810382526021815260200180615a106021913960400191505060405180910390fd5b600080821161465d576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161466657fe5b049392505050565b600061467b8484846146fc565b156146be576040805162461bcd60e51b815260206004820152600e60248201526d3937bab73234b7339032b93937b960911b604482015290519081900360640190fd5b6146cc83613d6986856145ae565b949350505050565b600080828411156146f3576146e9848461291b565b915082905061261d565b50600093915050565b600082614743576040805162461bcd60e51b815260206004820152601060248201526f6469766973696f6e206279207a65726f60801b604482015290519081900360640190fd5b81158061474e575083155b1561475b57506000613b39565b6000838061476557fe5b858409905061477485846145ae565b614780826103e86145ae565b101595945050505050565b60408051808201909152600081526060602082015290565b604051806060016040528060608152602001606081526020016000151581525090565b604051806040016040528060008152602001600081525090565b604080518082019091526000808252602082015290565b803561164c816158bc565b600082601f830112614812578081fd5b8151602061482761482283615852565b61582f565b82815281810190858301855b8581101561485c5761484a898684518b010161498b565b84529284019290840190600101614833565b5090979650505050505050565b600082601f830112614879578081fd5b8151602061488961482283615852565b828152818101908583016040808602880185018910156148a7578687fd5b865b868110156149165781838b0312156148bf578788fd5b81518281018181106001600160401b03821117156148d957fe5b835283516148e6816158bc565b8152838701516001600160601b038116811461490057898afd5b81880152855293850193918101916001016148a9565b509198975050505050505050565b8051801515811461164c57600080fd5b803561164c816158d1565b600082601f83011261494f578081fd5b813561495d6148228261586f565b818152846020838601011115614971578283fd5b816020850160208301379081016020019190915292915050565b600082601f83011261499b578081fd5b81516149a96148228261586f565b8181528460208386010111156149bd578283fd5b6146cc826020830160208701615890565b60006101e082840312156149e0578081fd5b50919050565b600060408083850312156149f8578182fd5b80518181016001600160401b038282108183111715614a1357fe5b818452829450853581811115614a2857600080fd5b8601808803851315614a3957600080fd5b608084018381108382111715614a4b57fe5b909452833593614a5a856158d1565b93825260208401359381851115614a7057600080fd5b614a7c8886830161493f565b60608501525050815260209384013593019290925292915050565b6000610120808385031215614aaa578182fd5b614ab38161582f565b915050614abf826147f7565b815260208201356001600160401b0380821115614adb57600080fd5b614ae7858386016149e6565b6020840152614af8604085016147f7565b60408401526060840135915080821115614b1157600080fd5b614b1d858386016149e6565b60608401526080840135608084015260a084013560a084015260c084013560c0840152614b4c60e08501614934565b60e084015261010091508184013581811115614b6757600080fd5b614b738682870161493f565b8385015250505092915050565b803565ffffffffffff8116811461164c57600080fd5b600060208284031215614ba7578081fd5b8135611795816158bc565b600060208284031215614bc3578081fd5b8151611795816158bc565b60008060408385031215614be0578081fd5b8251614beb816158bc565b60208401519092506001600160401b0380821115614c07578283fd5b9084019060c08287031215614c1a578283fd5b614c2460c061582f565b82518152602083015182811115614c39578485fd5b614c458882860161498b565b60208301525060408301516040820152606083015182811115614c66578485fd5b614c7288828601614869565b606083015250608083015182811115614c89578485fd5b614c9588828601614869565b60808301525060a083015182811115614cac578485fd5b614cb888828601614802565b60a0830152508093505050509250929050565b60008060408385031215614cdd578182fd5b8251614ce8816158bc565b60208401519092506001600160401b0380821115614d04578283fd5b9084019060a08287031215614d17578283fd5b614d2160a061582f565b82518152602083015182811115614d36578485fd5b614d428882860161498b565b602083015250604083015182811115614d59578485fd5b614d6588828601614869565b604083015250606083015182811115614d7c578485fd5b614d8888828601614869565b606083015250608083015182811115614d9f578485fd5b614dab88828601614802565b6080830152508093505050509250929050565b60008060408385031215614dd0578182fd5b8251614ddb816158bc565b6020939093015192949293505050565b600080600080600060a08688031215614e02578081fd5b8535614e0d816158bc565b94506020860135614e1d816158bc565b9350604086013592506060860135614e34816158bc565b91506080860135614e44816158bc565b809150509295509295909350565b600080600080600060a08688031215614e69578283fd5b8535614e74816158bc565b945060208601356001600160401b03811115614e8e578384fd5b614e9a8882890161493f565b9450506040860135925060608601359150608086013560ff81168114614e44578182fd5b600080600060608486031215614ed2578081fd5b8335614edd816158bc565b9250614eeb60208501614b80565b9150614ef960408501614b80565b90509250925092565b600060208284031215614f13578081fd5b81516001600160401b03811115614f28578182fd5b6146cc84828501614869565b600060208284031215614f45578081fd5b61179582614924565b600060208284031215614f5f578081fd5b5035919050565b600060208284031215614f77578081fd5b8135611795816158d1565b60008060408385031215614f94578182fd5b8235614f9f816158d1565b91506020830135614faf816158bc565b809150509250929050565b600060208284031215614fcb578081fd5b81356001600160401b03811115614fe0578182fd5b6146cc848285016149ce565b600060208284031215614ffd578081fd5b81516001600160401b0380821115615013578283fd5b9083019060408286031215615026578283fd5b60405160408101818110838211171561503b57fe5b6040528251615049816158d1565b815260208301518281111561505c578485fd5b6150688782860161498b565b60208301525095945050505050565b600060208284031215615088578081fd5b81516001600160401b038082111561509e578283fd5b90830190604082860312156150b1578283fd5b6040516040810181811083821117156150c657fe5b6040528251828111156150d7578485fd5b6150e387828601614869565b8252506020830151828111156150f7578485fd5b61506887828601614869565b600060208284031215615114578081fd5b81516001600160401b038082111561512a578283fd5b908301906060828603121561513d578283fd5b60405160608101818110838211171561515257fe5b604052825182811115615163578485fd5b61516f87828601614869565b825250602083015182811115615183578485fd5b61518f87828601614869565b6020830152506151a160408401614924565b604082015295945050505050565b6000602082840312156151c0578081fd5b81356001600160401b038111156151d5578182fd5b6146cc84828501614a97565b600080600080608085870312156151f6578182fd5b84356001600160401b038082111561520c578384fd5b61521888838901614a97565b9550602087013591508082111561522d578384fd5b6152398883890161493f565b9450604087013591508082111561524e578384fd5b61525a88838901614a97565b9350606087013591508082111561526f578283fd5b5061527c8782880161493f565b91505092959194509250565b600060208284031215615299578081fd5b61179582614b80565b600081518084526152ba816020860160208601615890565b601f01601f19169290920160200192915050565b600063ffffffff60e01b82511683526020820151604060208501526146cc60408501826152a2565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0393909316835265ffffffffffff918216602084015216604082015260600190565b90815260200190565b93845260208401929092526040830152606082015260800190565b60006020825261179560208301846152a2565b6001600160a01b03958616815293851660208501529190931660408301526060820192909252608081019190915260c060a0820181905260009082015260e00190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b60208082526017908201527f6e6f7420666f756e64204941737365744d617463686572000000000000000000604082015260600190565b6020808252601d908201527f526f79616c746965732061726520746f6f206869676820283e35302529000000604082015260600190565b6020808252601490820152730c081cd85b1d0818d85b89dd081899481d5cd95960621b604082015260600190565b60208082526024908201527f7472616e736665725061796f7574733a206e6f7468696e6720746f207472616e60408201526339b332b960e11b606082015260800190565b60208082526024908201527f72696768744f726465722e74616b657220766572696669636174696f6e2066616040820152631a5b195960e21b606082015260800190565b60208082526012908201527132b9319b9918903b30b63ab29032b93937b960711b604082015260600190565b6020808252600f908201526e1b9bdd1a1a5b99c81d1bc8199a5b1b608a1b604082015260600190565b602080825260159082015274195c98cc8c081d1c985b9cd9995c8819985a5b1959605a1b604082015260600190565b6020808252601590820152746f726967696e2066656520697320746f6f2062696760581b604082015260600190565b60208082526017908201527f556e6b6e6f776e204f7264657220646174612074797065000000000000000000604082015260600190565b6020808252601e908201527f53756d207061796f75747320427073206e6f7420657175616c20313030250000604082015260600190565b6020808252601290820152710c2e6e6cae8e640c8dedc4ee840dac2e8c6d60731b604082015260600190565b60208082526023908201527f6c6566744f726465722e74616b657220766572696669636174696f6e206661696040820152621b195960ea1b606082015260800190565b6020808252600e908201526d0dcdee840cadcdeeaced040cae8d60931b604082015260600190565b6020808252600b908201526a3737ba10309036b0b5b2b960a91b604082015260600190565b60006040825261577a60408301856152ce565b8281036020840152613b3581856152ce565b6000606082528451604060608401526157a860a08401826152ce565b60209687015160808501526001600160a01b03958616968401969096525050911660409091015290565b65ffffffffffff92831681529116602082015260400190565b6000808335601e19843603018112615801578283fd5b8301803591506001600160401b0382111561581a578283fd5b60200191503681900382131561261d57600080fd5b6040518181016001600160401b038111828210171561584a57fe5b604052919050565b60006001600160401b0382111561586557fe5b5060209081020190565b60006001600160401b0382111561588257fe5b50601f01601f191660200190565b60005b838110156158ab578181015183820152602001615893565b83811115610a155750506000910152565b6001600160a01b0381168114611b1a57600080fd5b6001600160e01b031981168114611b1a57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345434453413a20696e76616c6964207369676e6174757265202773272076616c75656f72646572207369676e617475726520766572696669636174696f6e206572726f72636f6e7472616374206f72646572207369676e617475726520766572696669636174696f6e206572726f72496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445434453413a20696e76616c6964207369676e6174757265202776272076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725369676e657220616e64207369676e617475726520646f206e6f74206d61746368a2646970667358221220fc68b5fb43f86bb6bbf81fad7483b86104940d34e238f5525f68cdfb9690db0e64736f6c63430007060033

Deployed ByteCode

0x60806040526004361061011f5760003560e01c80638da5cb5b116100a0578063d6ca6ab711610064578063d6ca6ab7146102f2578063e2864fe314610312578063e99a3f8014610332578063eae3ad6f14610345578063f2fde38b146103655761011f565b80638da5cb5b14610259578063b0e21e8a1461026e578063b39deb4614610292578063b74c8e9a146102b2578063bc158c2d146102d25761011f565b806330c642f1116100e757806330c642f1146101cf5780633be89922146101ef57806367d49a3b1461020f5780636d8f069414610222578063715018a6146102445761011f565b80630c53c51c146101245780630d5f7d351461014d5780631372a6251461016257806320158c44146101825780632d0335ab146101af575b600080fd5b610137610132366004614e52565b610385565b60405161014491906153e6565b60405180910390f35b61016061015b366004614fba565b6106fe565b005b34801561016e57600080fd5b5061016061017d366004614deb565b610a1b565b34801561018e57600080fd5b506101a261019d366004614f4e565b610b38565b60405161014491906153c2565b3480156101bb57600080fd5b506101a26101ca366004614b96565b610b4b565b3480156101db57600080fd5b506101606101ea366004614f82565b610b67565b3480156101fb57600080fd5b5061016061020a366004614b96565b610c37565b61016061021d366004614fba565b610cbc565b34801561022e57600080fd5b50610237610f9c565b60405161014491906152f6565b34801561025057600080fd5b50610160610fac565b34801561026557600080fd5b50610237611058565b34801561027a57600080fd5b50610283611068565b60405161014493929190615399565b34801561029e57600080fd5b506101606102ad366004614f82565b611093565b3480156102be57600080fd5b506101606102cd366004614ebe565b611157565b3480156102de57600080fd5b506101606102ed366004614b96565b6111d9565b3480156102fe57600080fd5b5061016061030d366004615288565b6112a6565b34801561031e57600080fd5b5061016061032d3660046151af565b611380565b6101606103403660046151e1565b611441565b34801561035157600080fd5b50610160610360366004615288565b611457565b34801561037157600080fd5b50610160610380366004614b96565b61152e565b6060600061039286611631565b90506000356001600160e01b031990811690821614156103f9576040805162461bcd60e51b815260206004820152601760248201527f57726f6e672066756e6374696f6e5369676e6174757265000000000000000000604482015290519081900360640190fd5b604080516060810182526001600160a01b03891660008181526101936020908152908490205483528201529081018790526104378882888888611651565b6104725760405162461bcd60e51b8152600401808060200182810382526021815260200180615a516021913960400191505060405180910390fd5b6001600160a01b0388166000908152610193602052604090205461049790600161173b565b61019360008a6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080306001600160a01b0316898b6040516020018083805190602001908083835b602083106105025780518252601f1990920191602091820191016104e3565b6001836020036101000a038019825116818451168082178552505050505050905001826001600160a01b031660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b602083106105785780518252601f199092019160209182019101610559565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146105da576040519150601f19603f3d011682016040523d82523d6000602084013e6105df565b606091505b509150915081610636576040805162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015290519081900360640190fd5b7f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b8a338b60405180846001600160a01b03168152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156106b557818101518382015260200161069d565b50505050905090810190601f1680156106e25780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a19998505050505050505050565b600061071861071360c0840160a08501614b96565b61179e565b604080516101208101909152909150600090806107386020860186614b96565b6001600160a01b031681526020016040518060400160405280604051806040016040528088604001602081019061076f9190614f66565b6001600160e01b031916815260200161078b60608a018a6157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050918352506020888101359281019290925291835282810191909152604080518082018252868152608080890135938201939093529083015260c080870135606084015260e08701359183019190915261010086013560a08301520161082e61014086016101208701614f66565b6001600160e01b031916815260200161084b6101408601866157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050604080516101208101825282815281518083018352878152610180890135602082810191909152820152808201839052815160808101835294955091939192506060808401929182918282019182916108df91908c01908c01614f66565b6001600160e01b03191681526020016108fb60608b018b6157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050918352506101a0890135602092830152918352820181905260408201819052606082015260800161096a61014087016101208801614f66565b6001600160e01b03191681526020016109876101c08701876157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152509050610a0b826109d16101608701876157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061180192505050565b610a158282611818565b50505050565b600054610100900460ff1680610a345750610a34611a6a565b80610a42575060005460ff16155b610a7d5760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015610aa8576000805460ff1961ff0019909116610100171660011790555b610ab0611a7b565b610ab8611b1d565b610ac0611c16565b610b096040518060400160405280600e81526020016d22bc31b430b733b2a6b2ba30ab1960911b815250604051806040016040528060018152602001603160f81b815250611ce6565b610b138686611d76565b610b1e848484611e20565b8015610b30576000805461ff00191690555b505050505050565b61012f6020526000908152604090205481565b6001600160a01b03166000908152610193602052604090205490565b610b6f611ee0565b6001600160a01b0316610b80611058565b6001600160a01b031614610bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6001600160e01b031982166000818152609760205260409081902080546001600160a01b0319166001600160a01b038516179055517f4b5aced933c0c9a88aeac3f0b3b72c5aaf75df8ebaf53225773248c4c315359390610c2b9084906152f6565b60405180910390a25050565b610c3f611ee0565b6001600160a01b0316610c50611058565b6001600160a01b031614610c99576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b61016280546001600160a01b0319166001600160a01b0392909216919091179055565b6000610cd161071360c0840160a08501614b96565b60408051610120810190915290915060009080610cf16020860186614b96565b6001600160a01b0316815260200160405180604001604052808581526020018660800135815250815260200160006001600160a01b0316815260200160405180604001604052806040518060400160405280886040016020810190610d569190614f66565b6001600160e01b0319168152602001610d7260608a018a6157eb565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505091525081526020878101359181019190915290825260c08601359082015260e085013560408201526101008501356060820152608001610ded61014086016101208701614f66565b6001600160e01b0319168152602001610e0a6101408601866157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250506040805161012081018252828152815160808101835294955091939192506020830191908190818101908190610e7c9060608c01908c01614f66565b6001600160e01b0319168152602001610e9860608b018b6157eb565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050918352506101a08901356020928301529183528281018290526040805180820182528881526101808a013592810192909252830152606082018190526080820181905260a082015260c001610f2b61014087016101208801614f66565b6001600160e01b0319168152602001610f486101c08701876157eb565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152509050610f92826109d16101608701876157eb565b610a158183611818565b610162546001600160a01b031681565b610fb4611ee0565b6001600160a01b0316610fc5611058565b6001600160a01b03161461100e576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b6033546001600160a01b03165b90565b610161546001600160a01b0381169065ffffffffffff600160a01b8204811691600160d01b90041683565b61109b611ee0565b6001600160a01b03166110ac611058565b6001600160a01b0316146110f5576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6001600160e01b031982166000818152606560205260409081902080546001600160a01b0319166001600160a01b038516179055517fd2bf91075f105d0fd80328da28e20ebdad1c1261839711183bc29a44cbe6c72f90610c2b9084906152f6565b61115f611ee0565b6001600160a01b0316611170611058565b6001600160a01b0316146111b9576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6111c2836111d9565b6111cb826112a6565b6111d481611457565b505050565b6111e1611ee0565b6001600160a01b03166111f2611058565b6001600160a01b03161461123b576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b610161546040517fa4b009cc442411b602eaf94bc0579b6abdb8fd90b4ef5b9426e270038906bd039161127b916001600160a01b0390911690849061530a565b60405180910390a161016180546001600160a01b0319166001600160a01b0392909216919091179055565b6112ae611ee0565b6001600160a01b03166112bf611058565b6001600160a01b031614611308576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b610161546040517f70bba4f904a93ba5c1af3a1bb602bc9c058551dbe963dfe0b6cb5bc11c5fea9e9161134d91600160a01b90910465ffffffffffff169084906157d2565b60405180910390a1610161805465ffffffffffff909216600160a01b0265ffffffffffff60a01b19909216919091179055565b80516001600160a01b0316611393611ee0565b6001600160a01b0316146113c25760405162461bcd60e51b81526004016113b990615742565b60405180910390fd5b60808101516113e35760405162461bcd60e51b81526004016113b9906154d4565b60006113ee82611eef565b600081815261012f6020526040908190206000199055519091507fe8d9861dbc9c663ed3accd261bbe2fe01e0d3d9e5f51fa38523b265c7757a93a906114359083906153c2565b60405180910390a15050565b61144d84848484612077565b610a158483611818565b61145f611ee0565b6001600160a01b0316611470611058565b6001600160a01b0316146114b9576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b610161546040517fa8af9093caa9beb61d20432227c66258ceef926f21879b80f3adf22a4d19f131916114fe91600160d01b90910465ffffffffffff169084906157d2565b60405180910390a1610161805465ffffffffffff909216600160d01b026001600160d01b03909216919091179055565b611536611ee0565b6001600160a01b0316611547611058565b6001600160a01b031614611590576040805162461bcd60e51b81526020600482018190526024820152600080516020615a31833981519152604482015290519081900360640190fd5b6001600160a01b0381166115d55760405162461bcd60e51b815260040180806020018281038252602681526020018061592b6026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b60008151600014156116455750600061164c565b5060208101515b919050565b600080600161166761166288612143565b6121c6565b84878760405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156116be573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661171a576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b866001600160a01b0316816001600160a01b03161491505095945050505050565b600082820183811015611795576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6117a661478b565b6117ae61478b565b6001600160a01b0383166117cb576355575f5d60e11b8152611798565b6322ba176160e21b81526040516117e69084906020016152f6565b60408051601f19818403018152919052602082015292915050565b61180a82612212565b61181482826122dc565b5050565b600080611825848461258b565b9150915060008060006118388787612624565b9250925092506000806119916040518060a0016040528060405180604001604052808b8152602001876000015181525081526020018760000151815260200187602001518152602001609760008b600001516001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031681526020018b600001516001600160a01b03168152506040518060a0016040528060405180604001604052808b8152602001886020015181525081526020018760000151815260200187602001518152602001609760008b600001516001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031681526020018b600001516001600160a01b031681525061198c8a600001518a600001516126d3565b6127a4565b885191935091506001600160e01b0319166355575f5d60e11b1415611a105785516001600160e01b0319166355575f5d60e11b14156119cf57600080fd5b813410156119ef5760405162461bcd60e51b81526004016113b99061571a565b81341115611a0b57611a0b611a04348461291b565b3390612978565b611a5f565b85516001600160e01b0319166355575f5d60e11b1415611a5f5780341015611a4a5760405162461bcd60e51b81526004016113b99061571a565b80341115611a5f57611a5f611a04348361291b565b505050505050505050565b6000611a7530612a10565b15905090565b600054610100900460ff1680611a945750611a94611a6a565b80611aa2575060005460ff16155b611add5760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611b08576000805460ff1961ff0019909116610100171660011790555b8015611b1a576000805461ff00191690555b50565b600054610100900460ff1680611b365750611b36611a6a565b80611b44575060005460ff16155b611b7f5760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611baa576000805460ff1961ff0019909116610100171660011790555b6000611bb4611ee0565b603380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015611b1a576000805461ff001916905550565b600054610100900460ff1680611c2f5750611c2f611a6a565b80611c3d575060005460ff16155b611c785760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611ca3576000805460ff1961ff0019909116610100171660011790555b611b086040518060400160405280600881526020016745786368616e676560c01b815250604051806040016040528060018152602001601960f91b815250612a16565b7f36c25de3e541d5d970f66e4210d728721220fff5c077cc6cd008b3a0c62adab78280519060200120828051906020012030611d20612ad6565b60405160200180868152602001858152602001848152602001836001600160a01b031681526020018281526020019550505050505060405160208183030381529060405280519060200120610194819055505050565b60976020527f4532fa16f071d6234e30e1a1e69b9806f04095edf37a1ca7a25c8d6af7861cc080546001600160a01b039283166001600160a01b0319918216179091557f30a684095c937b5aa064dcf94f9903a7d808e3efb22d8389dbd43080ad4ed3d5805493909216928116831790915563025ceed960e61b6000527f4b5822151ea34b7c8d9e37c3e466bcecb631efe6a9f26a4a4054110a93dd316f80549091169091179055565b600054610100900460ff1680611e395750611e39611a6a565b80611e47575060005460ff16155b611e825760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015611ead576000805460ff1961ff0019909116610100171660011790555b61016280546001600160a01b0319166001600160a01b0384161790558015610a15576000805461ff001916905550505050565b6000611eea612ae0565b905090565b60e08101516000906001600160e01b031916632611a13360e11b1480611f23575060e08201516001600160e01b0319908116145b15611f98578151602083015151611f3990612b3c565b606084015151611f4890612b3c565b846080015160405160200180856001600160a01b0316815260200184815260200183815260200182815260200194505050505060405160208183030381529060405280519060200120905061164c565b8151602083015151611fa990612b3c565b606084015151611fb890612b3c565b846080015185610100015160405160200180866001600160a01b0316815260200185815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561202457818101518382015260200161200c565b50505050905090810190601f1680156120515780820380516001836020036101000a031916815260200191505b50965050505050505060405160208183030381529060405280519060200120905061164c565b6120818484611801565b61208b8282611801565b60408401516001600160a01b0316156120e75781516001600160a01b0316156120e75783604001516001600160a01b031682600001516001600160a01b0316146120e75760405162461bcd60e51b81526004016113b9906156d7565b60408201516001600160a01b031615610a155783516001600160a01b031615610a155783600001516001600160a01b031682604001516001600160a01b031614610a155760405162461bcd60e51b81526004016113b990615546565b60006040518060800160405280604381526020016158e860439139805190602001208260000151836020015184604001518051906020012060405160200180858152602001848152602001836001600160a01b03168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b60006121d0612ba6565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60a081015115806122265750428160a00151105b612277576040805162461bcd60e51b815260206004820152601d60248201527f4f726465722073746172742076616c69646174696f6e206661696c6564000000604482015290519081900360640190fd5b60c0810151158061228b5750428160c00151115b611b1a576040805162461bcd60e51b815260206004820152601b60248201527f4f7264657220656e642076616c69646174696f6e206661696c65640000000000604482015290519081900360640190fd5b60808201516123615781516001600160a01b03161561235c5781516001600160a01b0316612308611ee0565b6001600160a01b03161461235c576040805162461bcd60e51b815260206004820152601660248201527536b0b5b2b91034b9903737ba103a3c1039b2b73232b960511b604482015290519081900360640190fd5b611814565b81516001600160a01b0316612374611ee0565b6001600160a01b03161461181457600061238d83612bad565b90506123a583600001516001600160a01b0316612a10565b156124e1578251630b135d3f60e11b906001600160a01b0316631626ba7e6123cc84612c9d565b856040518363ffffffff1660e01b81526004018083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561241f578181015183820152602001612407565b50505050905090810190601f16801561244c5780820380516001836020036101000a031916815260200191505b50935050505060206040518083038186803b15801561246a57600080fd5b505afa15801561247e573d6000803e3d6000fd5b505050506040513d602081101561249457600080fd5b50516001600160e01b031916146124dc5760405162461bcd60e51b815260040180806020018281038252602b815260200180615995602b913960400191505060405180910390fd5b6111d4565b82516001600160a01b03166124ff836124f984612c9d565b90612ca7565b6001600160a01b0316146125445760405162461bcd60e51b81526004018080602001828103825260228152602001806159736022913960400191505060405180910390fd5b82516001600160a01b03166111d4576040805162461bcd60e51b815260206004820152600860248201526737379036b0b5b2b960c11b604482015290519081900360640190fd5b61259361478b565b61259b61478b565b6020840151516060840151516125b19190612d27565b80519092506001600160e01b0319166125dc5760405162461bcd60e51b81526004016113b9906156ab565b6060840151516020840151516125f29190612d27565b80519091506001600160e01b03191661261d5760405162461bcd60e51b81526004016113b9906156ab565b9250929050565b61262c6147a3565b6126346147a3565b61263c6147c6565b600061264786611eef565b9050600061265486611eef565b90506000612660611ee0565b88519091506001600160a01b031661267f576001600160a01b03811688525b86516001600160a01b031661269b576001600160a01b03811687525b6126a488612d67565b95506126af87612d67565b94506126c7888885858a604001518a60400151612e60565b93505050509250925092565b60006001600160e01b031983166355575f5d60e11b14156126f657506001611798565b6001600160e01b031982166355575f5d60e11b141561271757506002611798565b6001600160e01b031983166322ba176160e21b141561273857506001611798565b6001600160e01b031982166322ba176160e21b141561275957506002611798565b6001600160e01b0319831663025ceed960e61b141561277a57506001611798565b6001600160e01b0319821663025ceed960e61b141561279b57506002611798565b50600092915050565b825160209081015183519091015160018360028111156127c057fe5b14156128425760408051606081018252610161546001600160a01b038116825265ffffffffffff600160a01b820481166020840152600160d01b9091041691810191909152612812908690869061301b565b915061283d846000015160000151856000015160200151866080015188602001518860600151613295565b612913565b600283600281111561285057fe5b14156128cd5760408051606081018252610161546001600160a01b038116825265ffffffffffff600160a01b820481166020840152600160d01b90910416918101919091526128a2908590879061301b565b905061283d856000015160000151866000015160200151876080015187602001518960600151613295565b8451805160209182015160808801519287015160608901516128f0949190613295565b835180516020918201516080870151928801516060880151612913949190613295565b935093915050565b600082821115612972576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040516000906001600160a01b0384169083908381818185875af1925050503d80600081146129c3576040519150601f19603f3d011682016040523d82523d6000602084013e6129c8565b606091505b50509050806111d4576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b3b151590565b600054610100900460ff1680612a2f5750612a2f611a6a565b80612a3d575060005460ff16155b612a785760405162461bcd60e51b815260040180806020018281038252602e8152602001806159c0602e913960400191505060405180910390fd5b600054610100900460ff16158015612aa3576000805460ff1961ff0019909116610100171660011790555b825160208085019190912083519184019190912060c99190915560ca5580156111d4576000805461ff0019169055505050565b6000611eea613419565b600033301415612b3757600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110659050565b503390565b8051602091820151805190830120604080517f452a0dc408cb0d27ffc3b3caff933a5208040a53a9dbecd8d89cad2c0d40e00c818601526001600160e01b031990931683820152606080840192909252805180840390920182526080909201909152805191012090565b6101945490565b60007f477ed43b8020849b755512278536c3766a3b4ab547519949a75f483372493f8d8260000151612be2846020015161341d565b8460400151612bf4866060015161341d565b86608001518760a001518860c001518960e001518a610100015180519060200120604051602001808b81526020018a6001600160a01b03168152602001898152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160e01b03191681526020018281526020019a5050505050505050505050604051602081830303815290604052805190602001209050919050565b60006121d061348d565b60008151604114612cff576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b60208201516040830151606084015160001a612d1d868285856134c8565b9695505050505050565b612d2f61478b565b6000612d3b848461371e565b80519091506001600160e01b031916612d6057612d58838561371e565b915050611798565b9050611798565b612d6f6147a3565b60e08201516001600160e01b031916632611a13360e11b1415612dbb576000826101000151806020019051810190612da79190615077565b805183526020908101519083015250612e47565b60e08201516001600160e01b0319166323d235ef60e01b1415612e13576000826101000151806020019051810190612df39190615103565b805183526020808201519084015260409081015115159083015250612e47565b60e08201516001600160e01b03199081161415612e2f57612e47565b60405162461bcd60e51b81526004016113b99061563d565b80515161164c578151612e599061393a565b8152919050565b612e686147c6565b6000612e788860800151876139d5565b90506000612e8a8860800151876139d5565b90506000612e9c8a8a85858a8a6139fa565b90508960200151602001516000141580612ebd575060608901516020015115155b15612ee0578051612ee05760405162461bcd60e51b81526004016113b9906155b6565b60608a015160200151151580612efc57506020808a0151015115155b15612f25576000816020015111612f255760405162461bcd60e51b81526004016113b9906155b6565b60808a015115612f78578515612f57578051612f4290849061173b565b600089815261012f6020526040902055612f78565b6020810151612f6790849061173b565b600089815261012f60205260409020555b608089015115612fcb578415612fad576020810151612f9890839061173b565b600088815261012f6020526040902055612fcb565b8051612fba90839061173b565b600088815261012f60205260409020555b602081015181516040517f956cd63ee4cdcd81fda5f0ec7c6c36dceda99e1b412f4a650a5d26055dc3c45092613006928c928c9291906153cb565b60405180910390a19998505050505050505050565b6000613034846000015160200151838660400151613a93565b9050600061305e828660000151602001518760800151868960000151600001518a60600151613b40565b8551805186515160208089015193015160808a015160608b015195965061308c959394929387929190613b9d565b905084604001515160011480156130a857508360400151516001145b80156130fd575084604001516000815181106130c057fe5b6020026020010151600001516001600160a01b031684604001516000815181106130e657fe5b6020026020010151600001516001600160a01b0316145b1561321357604080516001808252818301909252600091816020015b6131216147e0565b815260200190600190039081613119579050509050846040015160008151811061314757fe5b6020026020010151600001518160008151811061316057fe5b60209081029190910101516001600160a01b0390911690526040860151805160009061318857fe5b60200260200101516020015185604001516000815181106131a557fe5b60200260200101516020015101816000815181106131bf57fe5b6020026020010151602001906001600160601b031690816001600160601b03168152505061320986600001516000015183886000015160200151848a608001518b60600151613ca2565b50915061326c9050565b61323d85600001516000015182876000015160200151886040015189608001518a60600151613ca2565b50855180516020909101516040870151608089015160608a0151949550613268948693929190613ca2565b5090505b61328d85600001516000015182876080015187602001518960600151613295565b509392505050565b60008251116132b65760405162461bcd60e51b81526004016113b990615502565b600084815b60018551038110156133855760006132fc8683815181106132d857fe5b6020026020010151602001516001600160601b031689613d5790919063ffffffff16565b905061333186838151811061330d57fe5b6020026020010151602001516001600160601b03168561173b90919063ffffffff16565b9350801561337c57613343838261291b565b925061337c60405180604001604052808b8152602001838152508888858151811061336a57fe5b60200260200101516000015188613d6f565b506001016132bb565b5060008460018651038151811061339857fe5b602002602001015190506133c281602001516001600160601b03168461173b90919063ffffffff16565b925082612710146133e55760405162461bcd60e51b81526004016113b990615674565b811561340f5761340f60405180604001604052808a81526020018481525087836000015187613d6f565b5050505050505050565b4690565b60007fdb6f72e915676cfc289da13bc4ece054fd17b1df6d77ffc4a60510718c236b0861344d8360000151612b3c565b8360200151604051602001808481526020018381526020018281526020019350505050604051602081830303815290604052805190602001209050919050565b6000611eea7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6134bb614177565b6134c361417d565b614183565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156135295760405162461bcd60e51b81526004018080602001828103825260228152602001806159516022913960400191505060405180910390fd5b6000601e8560ff161115613603576004850360ff16601b148061355257506004850360ff16601c145b61358d5760405162461bcd60e51b81526004018080602001828103825260228152602001806159ee6022913960400191505060405180910390fd5b6001613598876141e5565b60048703868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156135f2573d6000803e3d6000fd5b5050506020604051035190506136ba565b8460ff16601b148061361857508460ff16601c145b6136535760405162461bcd60e51b81526004018080602001828103825260228152602001806159ee6022913960400191505060405180910390fd5b60018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156136ad573d6000803e3d6000fd5b5050506020604051035190505b6001600160a01b038116613715576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b61372661478b565b825182516001600160e01b031982166355575f5d60e11b1415613791576001600160e01b031981166355575f5d60e11b1415613766578492505050611798565b5050604080518082018252600080825282516020818101909452908152918101919091529050611798565b6001600160e01b031982166322ba176160e21b14156137d6576001600160e01b031981166322ba176160e21b1415613766576137cd8585614236565b92505050611798565b6001600160e01b031982166339d690a360e11b1415613812576001600160e01b031981166339d690a360e11b1415613766576137cd8585614236565b6001600160e01b0319821663025ceed960e61b141561384e576001600160e01b0319811663025ceed960e61b1415613766576137cd8585614236565b6001600160e01b031982166000908152606560205260409020546001600160a01b03168015613903576040516306d3f7cb60e41b81526001600160a01b03821690636d3f7cb0906138a59089908990600401615767565b60006040518083038186803b1580156138bd57600080fd5b505afa1580156138d1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138f99190810190614fec565b9350505050611798565b6001600160e01b03198381169083161415613922576138f98686614236565b60405162461bcd60e51b81526004016113b990615466565b60408051600180825281830190925260609160009190816020015b61395d6147e0565b815260200190600190039081613955579050509050828160008151811061398057fe5b6020026020010151600001906001600160a01b031690816001600160a01b031681525050612710816000815181106139b457fe5b6020908102919091018101516001600160601b039092169101529050919050565b6000826139e457506000611798565b50600090815261012f6020526040902054919050565b613a026147c6565b600080613a10898887614293565b91509150600080613a228a8988614293565b9150915083811180613a3c57508381148015613a3c575083155b15613a6857613a5d84848c60200151602001518d606001516020015161430c565b945050505050612d1d565b613a848b60200151602001518c60600151602001518484614391565b9b9a5050505050505050505050565b602082015160009065ffffffffffff16815b8351811015613b2057612710848281518110613abd57fe5b6020026020010151602001516001600160601b03161115613af05760405162461bcd60e51b81526004016113b99061560e565b838181518110613afc57fe5b6020026020010151602001516001600160601b031682019150806001019050613aa5565b50613b35613b2e8683613d57565b869061173b565b9150505b9392505050565b6000806000613b628989886040015189602001510165ffffffffffff16614417565b90925090508015613b9157613b9160405180604001604052808781526020018381525088886000015187613d6f565b50979650505050505050565b600080613ba988614439565b905080516001148015613bbd575086516001145b8015613c0a575086600081518110613bd157fe5b6020026020010151600001516001600160a01b031681600081518110613bf357fe5b6020026020010151600001516001600160a01b0316145b15613c5b5761138881600081518110613c1f57fe5b6020026020010151602001516001600160601b03161115613c525760405162461bcd60e51b81526004016113b99061549d565b85915050613c97565b600080613c6c8b8989868a8a613ca2565b91509150611388811115613c925760405162461bcd60e51b81526004016113b99061549d565b509150505b979650505050505050565b846000805b8551811015613d4b57613ce3868281518110613cbf57fe5b6020026020010151602001516001600160601b03168361173b90919063ffffffff16565b91506000613d128489898581518110613cf857fe5b6020026020010151602001516001600160601b0316614417565b90945090508015613d4257613d4260405180604001604052808c8152602001838152508789858151811061336a57fe5b50600101613ca7565b50965096945050505050565b6000611795612710613d6985856145ae565b90614607565b8351516001600160e01b0319166339d690a360e11b1415613eb557600080856000015160200151806020019051810190613da99190614dbe565b915091508560200151600114613dd15760405162461bcd60e51b81526004016113b99061558a565b6001600160a01b038516301415613e4957604051632142170760e11b81526001600160a01b038316906342842e0e90613e1290309088908690600401615324565b600060405180830381600087803b158015613e2c57600080fd5b505af1158015613e40573d6000803e3d6000fd5b50505050613eae565b604051637b84dc8360e11b81526001600160a01b0384169063f709b90690613e7b90859089908990879060040161543c565b600060405180830381600087803b158015613e9557600080fd5b505af1158015613ea9573d6000803e3d6000fd5b505050505b5050610a15565b8351516001600160e01b0319166322ba176160e21b1415614013576000846000015160200151806020019051810190613eee9190614bb2565b90506001600160a01b038416301415613fa557602085015160405163a9059cbb60e01b81526001600160a01b0383169163a9059cbb91613f32918791600401615380565b602060405180830381600087803b158015613f4c57600080fd5b505af1158015613f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f849190614f34565b613fa05760405162461bcd60e51b81526004016113b9906155df565b61400d565b602085015160405163776062c360e01b81526001600160a01b0384169163776062c391613fda9185918991899160040161543c565b600060405180830381600087803b158015613ff457600080fd5b505af1158015614008573d6000803e3d6000fd5b505050505b50610a15565b8351516001600160e01b03191663025ceed960e61b14156140d05760008085600001516020015180602001905181019061404d9190614dbe565b90925090506001600160a01b038516301415614098576020860151604051637921219560e11b81526001600160a01b0384169163f242432a91613e1291309189918791600401615348565b6020860151604051639c1c2ee960e01b81526001600160a01b03851691639c1c2ee991613e7b9186918a918a918891906004016153f9565b8351516001600160e01b0319166355575f5d60e11b1415614119576001600160a01b0382163014614114576020840151614114906001600160a01b03841690612978565b610a15565b6040516354bc0cf160e01b81526001600160a01b038216906354bc0cf1906141499087908790879060040161578c565b600060405180830381600087803b15801561416357600080fd5b505af115801561340f573d6000803e3d6000fd5b60c95490565b60ca5490565b6000838383614190613419565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b61423e61478b565b60208084015180519082012083820151805192019190912080821415614268578492505050611798565b5050604080518082018252600080825282516020808201909452908152918101919091529392505050565b60008082156142d25760208086015101516142ae908561291b565b91506142cb8560600151602001518660200151602001518461466e565b9050612913565b6060850151602001516142e5908561291b565b90506143028560200151602001518660600151602001518361466e565b9150935093915050565b6143146147c6565b600061432185858561466e565b905085811115614378576040805162461bcd60e51b815260206004820152601860248201527f66696c6c4c6566743a20756e61626c6520746f2066696c6c0000000000000000604482015290519081900360640190fd5b5050604080518082019091529384525050602082015290565b6143996147c6565b60006143a683878761466e565b9050838111156143fd576040805162461bcd60e51b815260206004820152601960248201527f66696c6c52696768743a20756e61626c6520746f2066696c6c00000000000000604482015290519081900360640190fd5b604080518082019091529283526020830152509392505050565b60008061442d856144288686613d57565b6146d4565b91509150935093915050565b80516060906001600160e01b03191663025ceed960e61b148061446d575081516001600160e01b0319166339d690a360e11b145b1561452357600080836020015180602001905181019061448d9190614dbe565b61016254604051634e53ee3d60e11b81529294509092506001600160a01b031690639ca7dc7a906144c49085908590600401615380565b600060405180830381600087803b1580156144de57600080fd5b505af11580156144f2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261451a9190810190614f02565b9250505061164c565b81516001600160e01b03191662737ea960e61b141561456457600082602001518060200190518101906145569190614bce565b60800151925061164c915050565b81516001600160e01b03191663d8f960c160e01b14156145a657600082602001518060200190518101906145989190614ccb565b60600151925061164c915050565b506060919050565b6000826145bd57506000611798565b828202828482816145ca57fe5b04146117955760405162461bcd60e51b8152600401808060200182810382526021815260200180615a106021913960400191505060405180910390fd5b600080821161465d576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161466657fe5b049392505050565b600061467b8484846146fc565b156146be576040805162461bcd60e51b815260206004820152600e60248201526d3937bab73234b7339032b93937b960911b604482015290519081900360640190fd5b6146cc83613d6986856145ae565b949350505050565b600080828411156146f3576146e9848461291b565b915082905061261d565b50600093915050565b600082614743576040805162461bcd60e51b815260206004820152601060248201526f6469766973696f6e206279207a65726f60801b604482015290519081900360640190fd5b81158061474e575083155b1561475b57506000613b39565b6000838061476557fe5b858409905061477485846145ae565b614780826103e86145ae565b101595945050505050565b60408051808201909152600081526060602082015290565b604051806060016040528060608152602001606081526020016000151581525090565b604051806040016040528060008152602001600081525090565b604080518082019091526000808252602082015290565b803561164c816158bc565b600082601f830112614812578081fd5b8151602061482761482283615852565b61582f565b82815281810190858301855b8581101561485c5761484a898684518b010161498b565b84529284019290840190600101614833565b5090979650505050505050565b600082601f830112614879578081fd5b8151602061488961482283615852565b828152818101908583016040808602880185018910156148a7578687fd5b865b868110156149165781838b0312156148bf578788fd5b81518281018181106001600160401b03821117156148d957fe5b835283516148e6816158bc565b8152838701516001600160601b038116811461490057898afd5b81880152855293850193918101916001016148a9565b509198975050505050505050565b8051801515811461164c57600080fd5b803561164c816158d1565b600082601f83011261494f578081fd5b813561495d6148228261586f565b818152846020838601011115614971578283fd5b816020850160208301379081016020019190915292915050565b600082601f83011261499b578081fd5b81516149a96148228261586f565b8181528460208386010111156149bd578283fd5b6146cc826020830160208701615890565b60006101e082840312156149e0578081fd5b50919050565b600060408083850312156149f8578182fd5b80518181016001600160401b038282108183111715614a1357fe5b818452829450853581811115614a2857600080fd5b8601808803851315614a3957600080fd5b608084018381108382111715614a4b57fe5b909452833593614a5a856158d1565b93825260208401359381851115614a7057600080fd5b614a7c8886830161493f565b60608501525050815260209384013593019290925292915050565b6000610120808385031215614aaa578182fd5b614ab38161582f565b915050614abf826147f7565b815260208201356001600160401b0380821115614adb57600080fd5b614ae7858386016149e6565b6020840152614af8604085016147f7565b60408401526060840135915080821115614b1157600080fd5b614b1d858386016149e6565b60608401526080840135608084015260a084013560a084015260c084013560c0840152614b4c60e08501614934565b60e084015261010091508184013581811115614b6757600080fd5b614b738682870161493f565b8385015250505092915050565b803565ffffffffffff8116811461164c57600080fd5b600060208284031215614ba7578081fd5b8135611795816158bc565b600060208284031215614bc3578081fd5b8151611795816158bc565b60008060408385031215614be0578081fd5b8251614beb816158bc565b60208401519092506001600160401b0380821115614c07578283fd5b9084019060c08287031215614c1a578283fd5b614c2460c061582f565b82518152602083015182811115614c39578485fd5b614c458882860161498b565b60208301525060408301516040820152606083015182811115614c66578485fd5b614c7288828601614869565b606083015250608083015182811115614c89578485fd5b614c9588828601614869565b60808301525060a083015182811115614cac578485fd5b614cb888828601614802565b60a0830152508093505050509250929050565b60008060408385031215614cdd578182fd5b8251614ce8816158bc565b60208401519092506001600160401b0380821115614d04578283fd5b9084019060a08287031215614d17578283fd5b614d2160a061582f565b82518152602083015182811115614d36578485fd5b614d428882860161498b565b602083015250604083015182811115614d59578485fd5b614d6588828601614869565b604083015250606083015182811115614d7c578485fd5b614d8888828601614869565b606083015250608083015182811115614d9f578485fd5b614dab88828601614802565b6080830152508093505050509250929050565b60008060408385031215614dd0578182fd5b8251614ddb816158bc565b6020939093015192949293505050565b600080600080600060a08688031215614e02578081fd5b8535614e0d816158bc565b94506020860135614e1d816158bc565b9350604086013592506060860135614e34816158bc565b91506080860135614e44816158bc565b809150509295509295909350565b600080600080600060a08688031215614e69578283fd5b8535614e74816158bc565b945060208601356001600160401b03811115614e8e578384fd5b614e9a8882890161493f565b9450506040860135925060608601359150608086013560ff81168114614e44578182fd5b600080600060608486031215614ed2578081fd5b8335614edd816158bc565b9250614eeb60208501614b80565b9150614ef960408501614b80565b90509250925092565b600060208284031215614f13578081fd5b81516001600160401b03811115614f28578182fd5b6146cc84828501614869565b600060208284031215614f45578081fd5b61179582614924565b600060208284031215614f5f578081fd5b5035919050565b600060208284031215614f77578081fd5b8135611795816158d1565b60008060408385031215614f94578182fd5b8235614f9f816158d1565b91506020830135614faf816158bc565b809150509250929050565b600060208284031215614fcb578081fd5b81356001600160401b03811115614fe0578182fd5b6146cc848285016149ce565b600060208284031215614ffd578081fd5b81516001600160401b0380821115615013578283fd5b9083019060408286031215615026578283fd5b60405160408101818110838211171561503b57fe5b6040528251615049816158d1565b815260208301518281111561505c578485fd5b6150688782860161498b565b60208301525095945050505050565b600060208284031215615088578081fd5b81516001600160401b038082111561509e578283fd5b90830190604082860312156150b1578283fd5b6040516040810181811083821117156150c657fe5b6040528251828111156150d7578485fd5b6150e387828601614869565b8252506020830151828111156150f7578485fd5b61506887828601614869565b600060208284031215615114578081fd5b81516001600160401b038082111561512a578283fd5b908301906060828603121561513d578283fd5b60405160608101818110838211171561515257fe5b604052825182811115615163578485fd5b61516f87828601614869565b825250602083015182811115615183578485fd5b61518f87828601614869565b6020830152506151a160408401614924565b604082015295945050505050565b6000602082840312156151c0578081fd5b81356001600160401b038111156151d5578182fd5b6146cc84828501614a97565b600080600080608085870312156151f6578182fd5b84356001600160401b038082111561520c578384fd5b61521888838901614a97565b9550602087013591508082111561522d578384fd5b6152398883890161493f565b9450604087013591508082111561524e578384fd5b61525a88838901614a97565b9350606087013591508082111561526f578283fd5b5061527c8782880161493f565b91505092959194509250565b600060208284031215615299578081fd5b61179582614b80565b600081518084526152ba816020860160208601615890565b601f01601f19169290920160200192915050565b600063ffffffff60e01b82511683526020820151604060208501526146cc60408501826152a2565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0393909316835265ffffffffffff918216602084015216604082015260600190565b90815260200190565b93845260208401929092526040830152606082015260800190565b60006020825261179560208301846152a2565b6001600160a01b03958616815293851660208501529190931660408301526060820192909252608081019190915260c060a0820181905260009082015260e00190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b60208082526017908201527f6e6f7420666f756e64204941737365744d617463686572000000000000000000604082015260600190565b6020808252601d908201527f526f79616c746965732061726520746f6f206869676820283e35302529000000604082015260600190565b6020808252601490820152730c081cd85b1d0818d85b89dd081899481d5cd95960621b604082015260600190565b60208082526024908201527f7472616e736665725061796f7574733a206e6f7468696e6720746f207472616e60408201526339b332b960e11b606082015260800190565b60208082526024908201527f72696768744f726465722e74616b657220766572696669636174696f6e2066616040820152631a5b195960e21b606082015260800190565b60208082526012908201527132b9319b9918903b30b63ab29032b93937b960711b604082015260600190565b6020808252600f908201526e1b9bdd1a1a5b99c81d1bc8199a5b1b608a1b604082015260600190565b602080825260159082015274195c98cc8c081d1c985b9cd9995c8819985a5b1959605a1b604082015260600190565b6020808252601590820152746f726967696e2066656520697320746f6f2062696760581b604082015260600190565b60208082526017908201527f556e6b6e6f776e204f7264657220646174612074797065000000000000000000604082015260600190565b6020808252601e908201527f53756d207061796f75747320427073206e6f7420657175616c20313030250000604082015260600190565b6020808252601290820152710c2e6e6cae8e640c8dedc4ee840dac2e8c6d60731b604082015260600190565b60208082526023908201527f6c6566744f726465722e74616b657220766572696669636174696f6e206661696040820152621b195960ea1b606082015260800190565b6020808252600e908201526d0dcdee840cadcdeeaced040cae8d60931b604082015260600190565b6020808252600b908201526a3737ba10309036b0b5b2b960a91b604082015260600190565b60006040825261577a60408301856152ce565b8281036020840152613b3581856152ce565b6000606082528451604060608401526157a860a08401826152ce565b60209687015160808501526001600160a01b03958616968401969096525050911660409091015290565b65ffffffffffff92831681529116602082015260400190565b6000808335601e19843603018112615801578283fd5b8301803591506001600160401b0382111561581a578283fd5b60200191503681900382131561261d57600080fd5b6040518181016001600160401b038111828210171561584a57fe5b604052919050565b60006001600160401b0382111561586557fe5b5060209081020190565b60006001600160401b0382111561588257fe5b50601f01601f191660200190565b60005b838110156158ab578181015183820152602001615893565b83811115610a155750506000910152565b6001600160a01b0381168114611b1a57600080fd5b6001600160e01b031981168114611b1a57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345434453413a20696e76616c6964207369676e6174757265202773272076616c75656f72646572207369676e617475726520766572696669636174696f6e206572726f72636f6e7472616374206f72646572207369676e617475726520766572696669636174696f6e206572726f72496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445434453413a20696e76616c6964207369676e6174757265202776272076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725369676e657220616e64207369676e617475726520646f206e6f74206d61746368a2646970667358221220fc68b5fb43f86bb6bbf81fad7483b86104940d34e238f5525f68cdfb9690db0e64736f6c63430007060033