FTM Price: $0.99 (-3.84%)
Gas: 92 GWei

Contract

0x2DF17455B96Dde3618FD6B1C3a9AA06D6aB89347
 

Multichain Info

Transaction Hash
Method
Block
From
To
Value
Cancel Order778243132024-03-20 20:15:128 days ago1710965712IN
0x2DF17455...D6aB89347
0 FTM0.059947031,247
Cancel Order777164762024-03-19 16:06:169 days ago1710864376IN
0x2DF17455...D6aB89347
0 FTM0.0189819630
Cancel Order776972782024-03-19 11:12:2410 days ago1710846744IN
0x2DF17455...D6aB89347
0 FTM0.00731386159.78915098
Cancel Orders776270732024-03-18 15:44:4710 days ago1710776687IN
0x2DF17455...D6aB89347
0 FTM0.01009001105.2776248
Cancel Order775742052024-03-17 18:36:0511 days ago1710700565IN
0x2DF17455...D6aB89347
0 FTM0.0020901245.63984409
Cancel Order775088512024-03-16 21:19:0912 days ago1710623949IN
0x2DF17455...D6aB89347
0 FTM0.0043823295.71741571
Cancel Order775038212024-03-16 19:47:1812 days ago1710618438IN
0x2DF17455...D6aB89347
0 FTM0.00651009142.15426354
Cancel Order774993362024-03-16 18:31:5912 days ago1710613919IN
0x2DF17455...D6aB89347
0 FTM0.00468435102.28740031
Cancel Order772837472024-03-13 22:12:4615 days ago1710367966IN
0x2DF17455...D6aB89347
0 FTM0.0013635429.77425984
Cancel Order771757742024-03-12 2:32:2517 days ago1710210745IN
0x2DF17455...D6aB89347
0 FTM0.0007771916.97076296
Cancel Order771078572024-03-11 1:59:4818 days ago1710122388IN
0x2DF17455...D6aB89347
0 FTM0.0007259115.85097976
Cancel Orders769657352024-03-08 1:12:4221 days ago1709860362IN
0x2DF17455...D6aB89347
0 FTM0.00456.1799155
Cancel Order769654062024-03-08 1:05:1921 days ago1709859919IN
0x2DF17455...D6aB89347
0 FTM0.0025740756.20747031
Cancel Order769653152024-03-08 1:02:1821 days ago1709859738IN
0x2DF17455...D6aB89347
0 FTM0.0026099356.99056333
Cancel Order769644702024-03-08 0:48:1321 days ago1709858893IN
0x2DF17455...D6aB89347
0 FTM0.0025805156.34797999
Cancel Orders769327052024-03-07 15:01:1921 days ago1709823679IN
0x2DF17455...D6aB89347
0 FTM0.00782488109.90001604
Cancel Order769319032024-03-07 14:48:1421 days ago1709822894IN
0x2DF17455...D6aB89347
0 FTM0.00486597106.25328181
Cancel Order768999112024-03-07 6:06:1322 days ago1709791573IN
0x2DF17455...D6aB89347
0 FTM0.0025004252
Cancel Order767860002024-03-05 13:38:5824 days ago1709645938IN
0x2DF17455...D6aB89347
0 FTM0.0021693672
Cancel Order766424722024-03-02 22:43:4726 days ago1709419427IN
0x2DF17455...D6aB89347
0 FTM0.0033782373.78631575
Cancel Order764498562024-02-28 10:41:0630 days ago1709116866IN
0x2DF17455...D6aB89347
0 FTM0.0023252950.77514928
Cancel Order761703872024-02-23 21:24:3534 days ago1708723475IN
0x2DF17455...D6aB89347
0 FTM0.0005734312.52154737
Cancel Order761478292024-02-23 6:00:3535 days ago1708668035IN
0x2DF17455...D6aB89347
0 FTM0.0054395118.77679348
Cancel Order759971222024-02-20 15:29:5637 days ago1708442996IN
0x2DF17455...D6aB89347
0 FTM0.050551851,103.84863418
Cancel Order759968912024-02-20 15:23:0137 days ago1708442581IN
0x2DF17455...D6aB89347
0 FTM0.0015829934.5661511
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
391696912022-05-27 11:18:50672 days ago1653650330  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AugustusRFQ

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion
File 1 of 13 : AugustusRFQ.sol
pragma solidity 0.8.10;

import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";

import "./IERC20Permit.sol";


contract AugustusRFQ is EIP712("AUGUSTUS RFQ", "1") {
    using SafeERC20 for IERC20;

    struct Order {
        uint256 nonceAndMeta; // Nonce and taker specific metadata
        uint128 expiry;
        address makerAsset;
        address takerAsset;
        address maker;
        address taker;  // zero address on orders executable by anyone
        uint256 makerAmount;
        uint256 takerAmount;
    }

    
    // makerAsset and takerAsset are Packed structures 
    // 0 - 159 bits are address
    // 160 - 161 bits are tokenType (0 ERC20, 1 ERC1155, 2 ERC721)
    struct OrderNFT {
        uint256 nonceAndMeta; // Nonce and taker specific metadata
        uint128 expiry;
        uint256 makerAsset; 
        uint256 makerAssetId; // simply ignored in case of ERC20s
        uint256 takerAsset;
        uint256 takerAssetId; // simply ignored in case of ERC20s
        address maker;
        address taker;  // zero address on orders executable by anyone
        uint256 makerAmount;
        uint256 takerAmount;
    }

    struct OrderInfo {
        Order order;
        bytes signature;
        uint256 takerTokenFillAmount;
        bytes permitTakerAsset;
        bytes permitMakerAsset;
    }

    struct OrderNFTInfo {
        OrderNFT order;
        bytes signature;
        uint256 takerTokenFillAmount;
        bytes permitTakerAsset;
        bytes permitMakerAsset;
    }


    uint256 constant public FILLED_ORDER = 1;
    uint256 constant public UNFILLED_ORDER = 0;

    // Keeps track of remaining amounts of each Order
    // 0 -> order unfilled / not exists
    // 1 -> order filled / cancelled 
    mapping(address => mapping (bytes32 => uint256)) public remaining;

    bytes32 constant public RFQ_LIMIT_ORDER_TYPEHASH = keccak256(
        "Order(uint256 nonceAndMeta,uint128 expiry,address makerAsset,address takerAsset,address maker,address taker,uint256 makerAmount,uint256 takerAmount)"
    );

    bytes32 constant public RFQ_LIMIT_NFT_ORDER_TYPEHASH = keccak256(
        "OrderNFT(uint256 nonceAndMeta,uint128 expiry,uint256 makerAsset,uint256 makerAssetId,uint256 takerAsset,uint256 takerAssetId,address maker,address taker,uint256 makerAmount,uint256 takerAmount)"
    );

    event OrderCancelled(bytes32 indexed orderHash, address indexed maker);
    event OrderFilled(
        bytes32 indexed orderHash,
        address indexed maker,
        address makerAsset,
        uint256 makerAmount,
        address indexed taker,
        address takerAsset,
        uint256 takerAmount
    );
    event OrderFilledNFT(
        bytes32 indexed orderHash,
        address indexed maker,
        uint256 makerAsset,
        uint256 makerAssetId,
        uint256 makerAmount,
        address indexed taker,
        uint256 takerAsset,
        uint256 takerAssetId,
        uint256 takerAmount
    );

    function getRemainingOrderBalance(address maker, bytes32[] calldata orderHashes) external view returns(uint256[] memory remainingBalances) {
        remainingBalances = new uint256[](orderHashes.length);
        mapping (bytes32 => uint256) storage remainingMaker = remaining[maker]; 
        for (uint i = 0; i < orderHashes.length; i++) {
            remainingBalances[i] = remainingMaker[orderHashes[i]];
        }
    }

    /**
    * @notice Cancel one or more orders using orderHashes
    * @dev Cancelled orderHashes are marked as used
    * @dev Emits a Cancel event
    * @dev Out of gas may occur in arrays of length > 400
    * @param orderHashes bytes32[] List of order hashes to cancel
    */
    function cancelOrders(bytes32[] calldata orderHashes) external {
        for (uint256 i = 0; i < orderHashes.length; i++) {
            cancelOrder(orderHashes[i]);
        }
    }

    function cancelOrder(bytes32 orderHash) public {
        if (_cancelOrder(msg.sender, orderHash)) {
            emit OrderCancelled(orderHash, msg.sender);
        }
    }

    /**  
     @dev Allows taker to partially fill an order
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param takerTokenFillAmount Maximum taker token to fill this order with.
    */
    function partialFillOrder(
        Order calldata order,
        bytes calldata signature,
        uint256 takerTokenFillAmount
    )
        external
        returns(uint256 makerTokenFilledAmount)
    {

        return partialFillOrderWithTarget(
            order,
            signature,
            takerTokenFillAmount,
            msg.sender
        );
        
    }

    /**  
     @dev Allows taker to partially fill an NFT order
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param takerTokenFillAmount Maximum taker token to fill this order with.
    */
    function partialFillOrderNFT(
        OrderNFT calldata order,
        bytes calldata signature,
        uint256 takerTokenFillAmount
    )
        external
        returns(uint256 makerTokenFilledAmount)
    {

        return partialFillOrderWithTargetNFT(
            order,
            signature,
            takerTokenFillAmount,
            msg.sender
        );
        
    }

    /**  
     @dev Same as `partialFillOrder` but it allows to specify the destination address
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param takerTokenFillAmount Maximum taker token to fill this order with.
     @param target Address that will receive swap funds
    */
    function partialFillOrderWithTarget(
        Order calldata order,
        bytes calldata signature,
        uint256 takerTokenFillAmount,
        address target
    )
        public
        returns(uint256 makerTokenFilledAmount)
    {
        require(takerTokenFillAmount > 0 && takerTokenFillAmount <= order.takerAmount, "Invalid Taker amount");
        makerTokenFilledAmount = (takerTokenFillAmount * order.makerAmount) / order.takerAmount;     
        require(makerTokenFilledAmount > 0, "Maker token fill amount cannot be 0");
        _fillOrder(
            order,
            signature,
            makerTokenFilledAmount,
            takerTokenFillAmount,
            target
        );

        return makerTokenFilledAmount;
    }

    /**  
     @dev Same as `partialFillOrderWithTarget` but it allows to pass permit 
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param takerTokenFillAmount Maximum taker token to fill this order with.
     @param target Address that will receive swap funds
     @param permitTakerAsset Permit calldata for taker
     @param permitMakerAsset Permit calldata for maker
    */
    function partialFillOrderWithTargetPermit(
        Order calldata order,
        bytes calldata signature,
        uint256 takerTokenFillAmount,
        address target,
        bytes calldata permitTakerAsset,
        bytes calldata permitMakerAsset
    )
        public
        returns(uint256 makerTokenFilledAmount)
    {
        require(takerTokenFillAmount > 0 && takerTokenFillAmount <= order.takerAmount, "Invalid Taker amount");
        makerTokenFilledAmount = (takerTokenFillAmount * order.makerAmount) / order.takerAmount;     
        require(makerTokenFilledAmount > 0, "Maker token fill amount cannot be 0");
        
        _permit(order.takerAsset, permitTakerAsset);
        _permit(order.makerAsset, permitMakerAsset);
        _fillOrder(
            order,
            signature,
            makerTokenFilledAmount,
            takerTokenFillAmount,
            target
        );

        return makerTokenFilledAmount;
        
    }

    /**  
     @dev Same as `partialFillOrderNFT` but it allows to specify the destination address
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param takerTokenFillAmount Maximum taker token to fill this order with.
     @param target Address that will receive swap funds
    */
    function partialFillOrderWithTargetNFT(
        OrderNFT calldata order,
        bytes calldata signature,
        uint256 takerTokenFillAmount,
        address target
    )
        public
        returns(uint256 makerTokenFilledAmount)
    {
        require(takerTokenFillAmount > 0 && takerTokenFillAmount <= order.takerAmount, "Invalid Taker amount");
        makerTokenFilledAmount = (takerTokenFillAmount * order.makerAmount) / order.takerAmount;     
        require(makerTokenFilledAmount > 0, "Maker token fill amount cannot be 0");
        _fillOrderNFT(
            order,
            signature,
            makerTokenFilledAmount,
            takerTokenFillAmount,
            target
        );

        return makerTokenFilledAmount;
    }

    /**  
     @dev Same as `partialFillOrderWithTargetNFT` but it allows to pass token permits
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param takerTokenFillAmount Maximum taker token to fill this order with.
     @param target Address that will receive swap funds
     @param permitTakerAsset Permit calldata for taker
     @param permitMakerAsset Permit calldata for maker
    */
    function partialFillOrderWithTargetPermitNFT(
        OrderNFT calldata order,
        bytes calldata signature,
        uint256 takerTokenFillAmount,
        address target,
        bytes calldata permitTakerAsset,
        bytes calldata permitMakerAsset
    )
        public
        returns(uint256 makerTokenFilledAmount)
    {
        require(takerTokenFillAmount > 0 && takerTokenFillAmount <= order.takerAmount, "Invalid Taker amount");
        makerTokenFilledAmount = (takerTokenFillAmount * order.makerAmount) / order.takerAmount;     
        require(makerTokenFilledAmount > 0, "Maker token fill amount cannot be 0");
        
        _permit(address(uint160(order.takerAsset)), permitTakerAsset);
        _permit(address(uint160(order.makerAsset)), permitMakerAsset);
        _fillOrderNFT(
            order,
            signature,
            makerTokenFilledAmount,
            takerTokenFillAmount,
            target
        );

        return makerTokenFilledAmount;
    }

    /**  
     @dev Allows taker to fill complete RFQ order
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
    */
    function fillOrder(
        Order calldata order,
        bytes calldata signature
    )
        external
    {
        fillOrderWithTarget(
            order,
            signature,
            msg.sender
        );
    }

    /**  
     @dev Allows taker to fill Limit order
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
    */
    function fillOrderNFT(
        OrderNFT calldata order,
        bytes calldata signature
    )
        external
    {
        fillOrderWithTargetNFT(
            order,
            signature,
            msg.sender
        );
    }

    /**  
     @dev Same as fillOrder but allows sender to specify the target
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param target Address of the receiver
    */
    function fillOrderWithTarget(
        Order calldata order,
        bytes calldata signature,
        address target
    )
        public
    {
        uint256 makerTokenFillAmount = order.makerAmount;
        uint256 takerTokenFillAmount = order.takerAmount;

        require(takerTokenFillAmount > 0 && makerTokenFillAmount > 0, "Invalid amount");

        _fillOrder(
            order,
            signature,
            makerTokenFillAmount,
            takerTokenFillAmount,
            target
        );
    }

    /**  
     @dev Same as fillOrderNFT but allows sender to specify the target
     @param order Order quote to fill
     @param signature Signature of the maker corresponding to the order
     @param target Address of the receiver
    */
    function fillOrderWithTargetNFT(
        OrderNFT calldata order,
        bytes calldata signature,
        address target
    )
        public
    {
        uint256 makerTokenFillAmount = order.makerAmount;
        uint256 takerTokenFillAmount = order.takerAmount;

        require(takerTokenFillAmount > 0 && makerTokenFillAmount > 0, "Invalid amount");

        _fillOrderNFT(
            order,
            signature,
            makerTokenFillAmount,
            takerTokenFillAmount,
            target
        );
    }

    /**  
     @dev Partial fill multiple orders
     @param orderInfos OrderInfo to fill
     @param target Address of receiver
    */
    function batchFillOrderWithTarget(
        OrderInfo[] calldata orderInfos,
        address target
    )
        public
    {
        for (uint256 i = 0; i < orderInfos.length; i++) {
            OrderInfo calldata orderInfo = orderInfos[i];

            uint256 takerTokenFillAmountOrder = orderInfo.takerTokenFillAmount;
            require(takerTokenFillAmountOrder > 0 && takerTokenFillAmountOrder <= orderInfo.order.takerAmount, "Invalid Taker amount");
            
            uint256 makerTokenFillAmountOrder = (takerTokenFillAmountOrder * orderInfo.order.makerAmount) / orderInfo.order.takerAmount;     
            require(makerTokenFillAmountOrder > 0, "Maker token fill amount cannot be 0");

            _permit(orderInfo.order.takerAsset, orderInfo.permitTakerAsset);
            _permit(orderInfo.order.makerAsset, orderInfo.permitMakerAsset);

            _fillOrder(
                orderInfo.order,
                orderInfo.signature,
                makerTokenFillAmountOrder,
                takerTokenFillAmountOrder,
                target
            );
        }
    }

    /**  
     @dev batch fills orders until the takerFillAmount is swapped
     @dev skip the order if it fails
     @param orderInfos OrderInfo to fill
     @param takerFillAmount total taker amount to fill
     @param target Address of receiver
    */
    function tryBatchFillOrderTakerAmount(
        OrderInfo[] calldata orderInfos,
        uint256 takerFillAmount,
        address target
    )
        public
    {
        for (uint256 i = 0; i < orderInfos.length; i++) {
            OrderInfo calldata orderInfo = orderInfos[i];
            uint256 takerFillAmountOrder = takerFillAmount > orderInfo.takerTokenFillAmount ? orderInfo.takerTokenFillAmount : takerFillAmount;

            (bool success,) = address(this).delegatecall(
                abi.encodeWithSelector(
                    this.partialFillOrderWithTargetPermit.selector,
                    orderInfo.order,
                    orderInfo.signature,
                    takerFillAmountOrder,
                    target,
                    orderInfo.permitTakerAsset,
                    orderInfo.permitMakerAsset
                )
            );

            if(success)
                takerFillAmount -= takerFillAmountOrder;
            
            if (takerFillAmount == 0)
                break;
        }
        require(takerFillAmount == 0, "Couldn't swap the requested fill amount");
    }

    /**  
     @dev batch fills orders until the makerFillAmount is swapped
     @dev skip the order if it fails
     @param orderInfos OrderInfo to fill
     @param makerFillAmount total maker amount to fill
     @param target Address of receiver
    */
    function tryBatchFillOrderMakerAmount(
        OrderInfo[] calldata orderInfos,
        uint256 makerFillAmount,
        address target
    )
        public
    {
        for (uint256 i = 0; i < orderInfos.length; i++) {
            OrderInfo calldata orderInfo = orderInfos[i];
            uint256 orderMakerAmount = orderInfo.order.makerAmount;
            uint256 orderTakerAmount = orderInfo.order.takerAmount;
            uint256 maxMakerFillAmount = (orderInfo.takerTokenFillAmount * orderMakerAmount) / orderTakerAmount; 
            uint256 makerFillAmountOrder = makerFillAmount > maxMakerFillAmount ? maxMakerFillAmount : makerFillAmount;
            uint256 takerFillAmountOrder = ((makerFillAmountOrder * orderTakerAmount) + (orderMakerAmount - 1)) / orderMakerAmount; 

            (bool success,) = address(this).delegatecall(
                abi.encodeWithSelector(
                    this.partialFillOrderWithTargetPermit.selector,
                    orderInfo.order,
                    orderInfo.signature,
                    takerFillAmountOrder,
                    target,
                    orderInfo.permitTakerAsset,
                    orderInfo.permitMakerAsset
                )
            );
            
            if(success)
                makerFillAmount -= makerFillAmountOrder;
            
            if (makerFillAmount == 0)
                break;
        }
        require(makerFillAmount == 0, "Couldn't swap the requested fill amount");
    }

    /**  
     @dev Partial fill multiple NFT orders
     @param orderInfos Info about each order to fill
     @param target Address of receiver
    */
    function batchFillOrderWithTargetNFT(
        OrderNFTInfo[] calldata orderInfos,
        address target
    )
        public
    {
        for (uint256 i = 0; i < orderInfos.length; i++) {
            OrderNFTInfo calldata orderInfo = orderInfos[i];

            uint256 takerTokenFillAmountOrder = orderInfo.takerTokenFillAmount;
            require(takerTokenFillAmountOrder > 0 && takerTokenFillAmountOrder <= orderInfo.order.takerAmount, "Invalid Taker amount");
            
            uint256 makerTokenFillAmountOrder = (takerTokenFillAmountOrder * orderInfo.order.makerAmount) / orderInfo.order.takerAmount;     
            require(makerTokenFillAmountOrder > 0, "Maker token fill amount cannot be 0");

            _permit(address(uint160(orderInfo.order.takerAsset)), orderInfo.permitTakerAsset);
            _permit(address(uint160(orderInfo.order.makerAsset)), orderInfo.permitMakerAsset);

            _fillOrderNFT(
                orderInfo.order,
                orderInfo.signature,
                makerTokenFillAmountOrder,
                takerTokenFillAmountOrder,
                target
            );
        }
    }



    function _fillOrder(
        Order calldata order,
        bytes calldata signature,
        uint256 makerTokenFillAmount,
        uint256 takerTokenFillAmount,
        address target
    )
        private
    {
        address maker = order.maker;
        bytes32 orderHash = _hashTypedDataV4(keccak256(abi.encode(RFQ_LIMIT_ORDER_TYPEHASH, order)));
        _checkOrder(maker, order.taker, orderHash, order.makerAmount, makerTokenFillAmount, order.expiry, signature);

        //Transfer tokens between maker and taker :)
        transferTokens(order.makerAsset, maker, target, makerTokenFillAmount);
        transferTokens(order.takerAsset, msg.sender, maker, takerTokenFillAmount);

        emit OrderFilled(
            orderHash,
            maker,
            order.makerAsset,
            makerTokenFillAmount,
            target,
            order.takerAsset,
            takerTokenFillAmount
        );
    }

    function _fillOrderNFT(
        OrderNFT calldata order,
        bytes calldata signature,
        uint256 makerTokenFillAmount,
        uint256 takerTokenFillAmount,
        address target
    )
        private
    {
        address maker = order.maker;
        bytes32 orderHash = _hashTypedDataV4(keccak256(abi.encode(RFQ_LIMIT_NFT_ORDER_TYPEHASH, order)));
        _checkOrder(maker, order.taker, orderHash, order.makerAmount, makerTokenFillAmount, order.expiry, signature);

        //Transfer tokens between maker and taker :)
        transferTokensNFT(order.makerAsset, maker, target, makerTokenFillAmount, order.makerAssetId);
        transferTokensNFT(order.takerAsset, msg.sender, maker, takerTokenFillAmount, order.takerAssetId);

        emit OrderFilledNFT(
            orderHash,
            maker,
            order.makerAsset,
            order.makerAssetId,
            makerTokenFillAmount,
            target,
            order.takerAsset,
            order.takerAssetId,
            takerTokenFillAmount
        );
    }


    /**
    * @notice The function assumes orderAmount >= fillRequest, fillRequest > 0
    * and the orderHash is computed correctly 
    * @param maker address Address of the maker
    * @param taker address Address of the taker
    * @param orderHash bytes32 Hash of order
    * @param orderAmount uint256 Max amount the order can fill
    * @param fillRequest uint256 Amount requested for fill
    * @param signature bytes32 Signature for the orderhash
    */
    function _checkOrder(
        address maker,
        address taker,
        bytes32 orderHash,
        uint256 orderAmount,
        uint256 fillRequest,
        uint128 expiry,
        bytes calldata signature
    )
        internal
    {
        // Check time expiration
        require(expiry == 0 || block.timestamp <= expiry, "Order expired");

        // Check if the taker of the order is correct
        require(taker == address(0) || taker == msg.sender, "Access denied");

        mapping (bytes32 => uint256) storage remainingMaker = remaining[maker];
        
        uint256 remainingAmount = remainingMaker[orderHash];
        // You only need to check the signature of the order for the first time
        // For later you already know the orderHash coresponds to the signed order
        if(remainingAmount == UNFILLED_ORDER) {
            require(SignatureChecker.isValidSignatureNow(maker, orderHash, signature), "Invalid Signature");
            remainingMaker[orderHash] = (orderAmount - fillRequest) + 1;
        } else {
            require(remainingAmount > fillRequest, "Order already filled or expired");
            remainingMaker[orderHash] = remainingAmount - fillRequest;
        }
    }



    /**
    * @notice Set remaining[maker][orderHash] = FILLED_ORDER to cancel the order
    * @param maker address Address of the maker for which to cancel the order
    * @param orderHash bytes32 orderHash to be marked as used
    * @return bool True if the orderHash was not marked as used already
    */
    function _cancelOrder(
        address maker,
        bytes32 orderHash
    )
        internal
        returns (bool)
    {
        mapping (bytes32 => uint256) storage remainingMaker = remaining[maker];

        if(remainingMaker[orderHash] == FILLED_ORDER) {
            return false;
        }

        remainingMaker[orderHash] = FILLED_ORDER;
        return true;
    }

    function transferTokens(
        address token,
        address from,
        address to,
        uint256 amount
    )
        private
    {
        IERC20(token).safeTransferFrom(
            from, to, amount
        );
    }

    function transferTokensNFT(
        uint256 token,
        address from,
        address to,
        uint256 amount,
        uint256 id
    )
        private
    {
        uint256 tokenType = token >> 160;
        if (tokenType == 0) {
            IERC20(address(uint160(token))).safeTransferFrom(
                from, to, amount
            );
        } else if (tokenType == 1) {
            IERC1155(address(uint160(token))).safeTransferFrom(
                from, to, id, amount, bytes("")
            );   
        } else if (tokenType == 2) {
            require(amount == 1, "Invalid amount for ERC721 transfer");
            IERC721(address(uint160(token))).safeTransferFrom(
                from, to, id
            );
        } else {
            revert("Invalid token type");
        }
    }

    function _permit(address token, bytes memory permit) internal {
        if (permit.length == 32 * 7) {
            (bool success, ) = token.call(abi.encodePacked(IERC20Permit.permit.selector, permit));
            require(success, "Permit failed");
        }

        if (permit.length == 32 * 8) {
            (bool success, ) = token.call(abi.encodePacked(IERC20PermitLegacy.permit.selector, permit));
            require(success, "Permit failed");
        }
    }
}

File 2 of 13 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.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 EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* 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].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 3 of 13 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.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 IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

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

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

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

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

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

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

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

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

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

File 6 of 13 : SignatureChecker.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/SignatureChecker.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";
import "../Address.sol";
import "../../interfaces/IERC1271.sol";

/**
 * @dev Signature verification helper: Provide a single mechanism to verify both private-key (EOA) ECDSA signature and
 * ERC1271 contract signatures. Using this instead of ECDSA.recover in your contract will make them compatible with
 * smart contract wallets such as Argent and Gnosis.
 *
 * Note: unlike ECDSA signatures, contract signature's are revocable, and the outcome of this function can thus change
 * through time. It could return true at block N and false at block N+1 (or the opposite).
 *
 * _Available since v4.1._
 */
library SignatureChecker {
    function isValidSignatureNow(
        address signer,
        bytes32 hash,
        bytes memory signature
    ) internal view returns (bool) {
        (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);
        if (error == ECDSA.RecoverError.NoError && recovered == signer) {
            return true;
        }

        (bool success, bytes memory result) = signer.staticcall(
            abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)
        );
        return (success && result.length == 32 && abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector);
    }
}

File 7 of 13 : IERC20Permit.sol
pragma solidity 0.8.10;

interface IERC20Permit {
    function permit(
        address owner,
        address spender,
        uint256 amount,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}

interface IERC20PermitLegacy {
    function permit(
        address holder,
        address spender,
        uint256 nonce,
        uint256 expiry,
        bool allowed,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}

File 8 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

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

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

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

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 9 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 10 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 11 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 13 of 13 : IERC1271.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (interfaces/IERC1271.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC1271 standard signature validation method for
 * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
 *
 * _Available since v4.1._
 */
interface IERC1271 {
    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param hash      Hash of the data to be signed
     * @param signature Signature byte array associated with _data
     */
    function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"maker","type":"address"}],"name":"OrderCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"maker","type":"address"},{"indexed":false,"internalType":"address","name":"makerAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"makerAmount","type":"uint256"},{"indexed":true,"internalType":"address","name":"taker","type":"address"},{"indexed":false,"internalType":"address","name":"takerAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"takerAmount","type":"uint256"}],"name":"OrderFilled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"maker","type":"address"},{"indexed":false,"internalType":"uint256","name":"makerAsset","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"makerAssetId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"makerAmount","type":"uint256"},{"indexed":true,"internalType":"address","name":"taker","type":"address"},{"indexed":false,"internalType":"uint256","name":"takerAsset","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"takerAssetId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"takerAmount","type":"uint256"}],"name":"OrderFilledNFT","type":"event"},{"inputs":[],"name":"FILLED_ORDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RFQ_LIMIT_NFT_ORDER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RFQ_LIMIT_ORDER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNFILLED_ORDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"bytes","name":"permitTakerAsset","type":"bytes"},{"internalType":"bytes","name":"permitMakerAsset","type":"bytes"}],"internalType":"struct AugustusRFQ.OrderInfo[]","name":"orderInfos","type":"tuple[]"},{"internalType":"address","name":"target","type":"address"}],"name":"batchFillOrderWithTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint256","name":"makerAsset","type":"uint256"},{"internalType":"uint256","name":"makerAssetId","type":"uint256"},{"internalType":"uint256","name":"takerAsset","type":"uint256"},{"internalType":"uint256","name":"takerAssetId","type":"uint256"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.OrderNFT","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"bytes","name":"permitTakerAsset","type":"bytes"},{"internalType":"bytes","name":"permitMakerAsset","type":"bytes"}],"internalType":"struct AugustusRFQ.OrderNFTInfo[]","name":"orderInfos","type":"tuple[]"},{"internalType":"address","name":"target","type":"address"}],"name":"batchFillOrderWithTargetNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"cancelOrder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"orderHashes","type":"bytes32[]"}],"name":"cancelOrders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"fillOrder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint256","name":"makerAsset","type":"uint256"},{"internalType":"uint256","name":"makerAssetId","type":"uint256"},{"internalType":"uint256","name":"takerAsset","type":"uint256"},{"internalType":"uint256","name":"takerAssetId","type":"uint256"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.OrderNFT","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"fillOrderNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"target","type":"address"}],"name":"fillOrderWithTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint256","name":"makerAsset","type":"uint256"},{"internalType":"uint256","name":"makerAssetId","type":"uint256"},{"internalType":"uint256","name":"takerAsset","type":"uint256"},{"internalType":"uint256","name":"takerAssetId","type":"uint256"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.OrderNFT","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"target","type":"address"}],"name":"fillOrderWithTargetNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"maker","type":"address"},{"internalType":"bytes32[]","name":"orderHashes","type":"bytes32[]"}],"name":"getRemainingOrderBalance","outputs":[{"internalType":"uint256[]","name":"remainingBalances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"}],"name":"partialFillOrder","outputs":[{"internalType":"uint256","name":"makerTokenFilledAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint256","name":"makerAsset","type":"uint256"},{"internalType":"uint256","name":"makerAssetId","type":"uint256"},{"internalType":"uint256","name":"takerAsset","type":"uint256"},{"internalType":"uint256","name":"takerAssetId","type":"uint256"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.OrderNFT","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"}],"name":"partialFillOrderNFT","outputs":[{"internalType":"uint256","name":"makerTokenFilledAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"address","name":"target","type":"address"}],"name":"partialFillOrderWithTarget","outputs":[{"internalType":"uint256","name":"makerTokenFilledAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint256","name":"makerAsset","type":"uint256"},{"internalType":"uint256","name":"makerAssetId","type":"uint256"},{"internalType":"uint256","name":"takerAsset","type":"uint256"},{"internalType":"uint256","name":"takerAssetId","type":"uint256"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.OrderNFT","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"address","name":"target","type":"address"}],"name":"partialFillOrderWithTargetNFT","outputs":[{"internalType":"uint256","name":"makerTokenFilledAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"permitTakerAsset","type":"bytes"},{"internalType":"bytes","name":"permitMakerAsset","type":"bytes"}],"name":"partialFillOrderWithTargetPermit","outputs":[{"internalType":"uint256","name":"makerTokenFilledAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint256","name":"makerAsset","type":"uint256"},{"internalType":"uint256","name":"makerAssetId","type":"uint256"},{"internalType":"uint256","name":"takerAsset","type":"uint256"},{"internalType":"uint256","name":"takerAssetId","type":"uint256"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.OrderNFT","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"permitTakerAsset","type":"bytes"},{"internalType":"bytes","name":"permitMakerAsset","type":"bytes"}],"name":"partialFillOrderWithTargetPermitNFT","outputs":[{"internalType":"uint256","name":"makerTokenFilledAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"bytes","name":"permitTakerAsset","type":"bytes"},{"internalType":"bytes","name":"permitMakerAsset","type":"bytes"}],"internalType":"struct AugustusRFQ.OrderInfo[]","name":"orderInfos","type":"tuple[]"},{"internalType":"uint256","name":"makerFillAmount","type":"uint256"},{"internalType":"address","name":"target","type":"address"}],"name":"tryBatchFillOrderMakerAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint256","name":"nonceAndMeta","type":"uint256"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"address","name":"makerAsset","type":"address"},{"internalType":"address","name":"takerAsset","type":"address"},{"internalType":"address","name":"maker","type":"address"},{"internalType":"address","name":"taker","type":"address"},{"internalType":"uint256","name":"makerAmount","type":"uint256"},{"internalType":"uint256","name":"takerAmount","type":"uint256"}],"internalType":"struct AugustusRFQ.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"takerTokenFillAmount","type":"uint256"},{"internalType":"bytes","name":"permitTakerAsset","type":"bytes"},{"internalType":"bytes","name":"permitMakerAsset","type":"bytes"}],"internalType":"struct AugustusRFQ.OrderInfo[]","name":"orderInfos","type":"tuple[]"},{"internalType":"uint256","name":"takerFillAmount","type":"uint256"},{"internalType":"address","name":"target","type":"address"}],"name":"tryBatchFillOrderTakerAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61014060405234801561001157600080fd5b50604080518082018252600c81526b41554755535455532052465160a01b6020808301918252835180850190945260018452603160f81b908401528151902060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a0529192917f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6100f38184846040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6080523060c052610120525061010892505050565b60805160a05160c05160e05161010051610120516135f9620001586000396000612013015260006120620152600061203d01526000611f9601526000611fc001526000611fea01526135f96000f3fe608060405234801561001057600080fd5b50600436106101815760003560e01c80637489ec23116100d8578063c88ae6dc1161008c578063de77aaf911610066578063de77aaf914610333578063f6c1b3711461035a578063ff7e506a1461036d57600080fd5b8063c88ae6dc146102fa578063c8b81d631461030d578063da6b84af1461032057600080fd5b806398f9b46b116100bd57806398f9b46b146102c1578063b28ace5f146102d4578063bbbc2372146102e757600080fd5b80637489ec23146102875780638a3ae43d1461029a57600080fd5b80631c64b8201161013a5780632ea1ee84116101145780632ea1ee841461025957806330201ad3146102615780633c3694ab1461027457600080fd5b80631c64b8201461022057806321c77c961461023357806324abf8281461024657600080fd5b806301fb36ba1161016b57806301fb36ba146101c4578063077822bd146101d75780630b57f091146101ea57600080fd5b80621540081461018657806301568b831461019b575b600080fd5b610199610194366004612880565b610375565b005b6101ae6101a936600461292e565b61040f565b6040516101bb9190612981565b60405180910390f35b6101996101d23660046129c5565b6104e8565b6101996101e5366004612a17565b61078f565b6102126101f8366004612a6b565b600060208181529281526040808220909352908152205481565b6040519081526020016101bb565b61019961022e3660046129c5565b61099d565b610199610241366004612a95565b610b58565b610212610254366004612ad7565b610b9b565b610212600181565b61021261026f366004612b5d565b610cdc565b610199610282366004612bc4565b610e17565b610199610295366004612c22565b610ea6565b6102127f95afddf5e4bb9f692716b7fdff640e6b8a0d2869597405c6e9d35857ed19a15081565b6101996102cf366004612c3b565b610ee6565b6102126102e2366004612c84565b610ef2565b6101996102f5366004612ce2565b610f01565b610212610308366004612d1f565b610f0d565b61019961031b366004612a17565b610f1c565b61021261032e366004612d7d565b6110dd565b6102127fba5673374f195ea076b91318b714c4f3d0887a650164f117b9a64de6237587fb81565b610212610368366004612e4e565b6112c0565b610212600081565b60c084013560e0850135801580159061038e5750600082115b6103f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e7400000000000000000000000000000000000060448201526064015b60405180910390fd5b610407868686858588611483565b505050505050565b60608167ffffffffffffffff81111561042a5761042a612efb565b604051908082528060200260200182016040528015610453578160200160208202803683370190505b5073ffffffffffffffffffffffffffffffffffffffff851660009081526020819052604081209192505b838110156104df5781600086868481811061049a5761049a612f2a565b905060200201358152602001908152602001600020548382815181106104c2576104c2612f2a565b6020908102919091010152806104d781612f88565b91505061047d565b50509392505050565b60005b838110156106fa573685858381811061050657610506612f2a565b90506020028101906105189190612fc1565b905060c081013560e082013560008161053684610120870135612fff565b610540919061303c565b905060008188116105515787610553565b815b9050600084610563600182613077565b61056d8685612fff565b610577919061308e565b610581919061303c565b90506000307fda6b84af00000000000000000000000000000000000000000000000000000000886105b66101008201826130a6565b868e6105c66101408f018f6130a6565b8f8061016001906105d791906130a6565b6040516024016105ef99989796959493929190613214565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090941693909317909252905161067891906132c3565b600060405180830381855af49150503d80600081146106b3576040519150601f19603f3d011682016040523d82523d6000602084013e6106b8565b606091505b5050905080156106cf576106cc838b613077565b99505b896106e057505050505050506106fa565b5050505050505080806106f290612f88565b9150506104eb565b508115610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f436f756c646e2774207377617020746865207265717565737465642066696c6c60448201527f20616d6f756e740000000000000000000000000000000000000000000000000060648201526084016103f0565b50505050565b60005b8281101561078957368484838181106107ad576107ad612f2a565b90506020028101906107bf9190612fc1565b905061012081013580158015906107da575060e08201358111155b610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b600060e083013561085560c085013584612fff565b61085f919061303c565b9050600081116108f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b61094c61090460808501606086016132d5565b6109126101408601866130a6565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b61096d61095f60608501604086016132d5565b6109126101608601866130a6565b6109878361097f6101008201826130a6565b84868a611483565b505050808061099590612f88565b915050610792565b60005b838110156106fa57368585838181106109bb576109bb612f2a565b90506020028101906109cd9190612fc1565b9050600081610120013585116109e357846109ea565b8161012001355b90506000307fda6b84af0000000000000000000000000000000000000000000000000000000084610a1f6101008201826130a6565b868a610a2f6101408b018b6130a6565b610a3d6101608d018d6130a6565b604051602401610a5599989796959493929190613214565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051610ade91906132c3565b600060405180830381855af49150503d8060008114610b19576040519150601f19603f3d011682016040523d82523d6000602084013e610b1e565b606091505b505090508015610b3557610b328287613077565b95505b85610b42575050506106fa565b5050508080610b5090612f88565b9150506109a0565b60005b81811015610b9657610b84838383818110610b7857610b78612f2a565b90506020020135610ea6565b80610b8e81612f88565b915050610b5b565b505050565b60008083118015610bb057508560e001358311155b610c16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b60e0860135610c2960c088013585612fff565b610c33919061303c565b905060008111610cc5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b610cd3868686848787611483565b95945050505050565b60008083118015610cf257508561012001358311155b610d58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b610120860135610d6d61010088013585612fff565b610d77919061303c565b905060008111610e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b610cd386868684878761184f565b6101008401356101208501358015801590610e325750600082115b610e98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e7400000000000000000000000000000000000060448201526064016103f0565b61040786868685858861184f565b610eb03382611992565b15610ee357604051339082907fa6eb7cdc219e1518ced964e9a34e61d68a94e4f1569db3e84256ba981ba5275390600090a35b50565b610b9683838333610375565b6000610cd38585858533610cdc565b610b9683838333610e17565b6000610cd38585858533610b9b565b60005b828110156107895736848483818110610f3a57610f3a612f2a565b9050602002810190610f4c91906132f0565b90506101608101358015801590610f6857506101208201358111155b610fce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b6000610120830135610fe561010085013584612fff565b610fef919061303c565b905060008111611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b61109760808401356109126101808601866130a6565b6110ad60408401356109126101a08601866130a6565b6110c7836110bf6101408201826130a6565b84868a61184f565b50505080806110d590612f88565b915050610f1f565b600080871180156110f257508960e001358711155b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b60e08a013561116b60c08c013589612fff565b611175919061303c565b905060008111611207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b61125661121a60808c0160608d016132d5565b86868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6112a561126960608c0160408d016132d5565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6112b38a8a8a848b8b611483565b9998505050505050505050565b600080871180156112d657508961012001358711155b61133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b6101208a01356113516101008c013589612fff565b61135b919061303c565b9050600081116113ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b6114318a6080013586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6114758a6040013584848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6112b38a8a8a848b8b61184f565b600061149560a08801608089016132d5565b905060006114ea7f95afddf5e4bb9f692716b7fdff640e6b8a0d2869597405c6e9d35857ed19a150896040516020016114cf929190613324565b604051602081830303815290604052805190602001206119f2565b90506115218261150060c08b0160a08c016132d5565b838b60c00135898d602001602081019061151a9190613339565b8d8d611a5b565b61153c61153460608a0160408b016132d5565b838588611d25565b61155761154f60808a0160608b016132d5565b338487611d25565b73ffffffffffffffffffffffffffffffffffffffff808416908316827f6621486d9c28838df4a87d2cca5007bc2aaf6a5b5de083b1db8faf709302c4736115a460608d0160408e016132d5565b898d60600160208101906115b891906132d5565b6040805173ffffffffffffffffffffffffffffffffffffffff94851681526020810193909352921691810191909152606081018990526080015b60405180910390a45050505050505050565b805160e014156117285760008273ffffffffffffffffffffffffffffffffffffffff1663d505accf60e01b83604051602001611641929190613354565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052611679916132c3565b6000604051808303816000865af19150503d80600081146116b6576040519150601f19603f3d011682016040523d82523d6000602084013e6116bb565b606091505b5050905080611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f5065726d6974206661696c65640000000000000000000000000000000000000060448201526064016103f0565b505b8051610100141561184b5760008273ffffffffffffffffffffffffffffffffffffffff16638fcbaf0c60e01b83604051602001611766929190613354565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261179e916132c3565b6000604051808303816000865af19150503d80600081146117db576040519150601f19603f3d011682016040523d82523d6000602084013e6117e0565b606091505b5050905080610b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f5065726d6974206661696c65640000000000000000000000000000000000000060448201526064016103f0565b5050565b600061186160e0880160c089016132d5565b9050600061189b7fba5673374f195ea076b91318b714c4f3d0887a650164f117b9a64de6237587fb896040516020016114cf92919061339c565b90506118cd826118b26101008b0160e08c016132d5565b838b6101000135898d602001602081019061151a9190613339565b6118e288604001358385888c60600135611d47565b6118f788608001353384878c60a00135611d47565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16827f58454165245cb04f65f0d8e8e867125cee46b1b301053018898247b85cb4a9bc8b604001358c606001358a8e608001358f60a001358c6040516115f296959493929190958652602086019490945260408501929092526060840152608083015260a082015260c00190565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020818152604080832084845291829052822054600114156119d45760009150506119ec565b60008381526020919091526040902060019081905590505b92915050565b60006119ec6119ff611f7c565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6fffffffffffffffffffffffffffffffff83161580611a8c5750826fffffffffffffffffffffffffffffffff164211155b611af2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f7264657220657870697265640000000000000000000000000000000000000060448201526064016103f0565b73ffffffffffffffffffffffffffffffffffffffff87161580611b2a575073ffffffffffffffffffffffffffffffffffffffff871633145b611b90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4163636573732064656e6965640000000000000000000000000000000000000060448201526064016103f0565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260208181526040808320898452918290529091205480611c9657611c078a8986868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120b092505050565b611c6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496e76616c6964205369676e617475726500000000000000000000000000000060448201526064016103f0565b611c778688613077565b611c8290600161308e565b600089815260208490526040902055611d19565b858111611cff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4f7264657220616c72656164792066696c6c6564206f7220657870697265640060448201526064016103f0565b611d098682613077565b6000898152602084905260409020555b50505050505050505050565b61078973ffffffffffffffffffffffffffffffffffffffff85168484846122a1565b60a085901c80611d7857611d7373ffffffffffffffffffffffffffffffffffffffff87168686866122a1565b610407565b8060011415611e1e57604080516020810182526000815290517ff242432a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88169163f242432a91611de7918991899188918a91906004016134bf565b600060405180830381600087803b158015611e0157600080fd5b505af1158015611e15573d6000803e3d6000fd5b50505050610407565b8060021415611f1a5782600114611eb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f496e76616c696420616d6f756e7420666f7220455243373231207472616e736660448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b6040517f42842e0e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528581166024830152604482018490528716906342842e0e90606401611de7565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e76616c696420746f6b656e2074797065000000000000000000000000000060448201526064016103f0565b60003073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148015611fe257507f000000000000000000000000000000000000000000000000000000000000000046145b1561200c57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008060006120bf8585612336565b909250905060008160048111156120d8576120d8613504565b14801561211057508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156121205760019250505061229a565b6000808773ffffffffffffffffffffffffffffffffffffffff16631626ba7e60e01b8888604051602401612155929190613533565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009094169390931790925290516121de91906132c3565b600060405180830381855afa9150503d8060008114612219576040519150601f19603f3d011682016040523d82523d6000602084013e61221e565b606091505b5091509150818015612231575080516020145b8015612293575080517f1626ba7e000000000000000000000000000000000000000000000000000000009061226f908301602090810190840161354c565b7fffffffff0000000000000000000000000000000000000000000000000000000016145b9450505050505b9392505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526107899085906123a6565b60008082516041141561236d5760208301516040840151606085015160001a612361878285856124b2565b9450945050505061239f565b825160401415612397576020830151604084015161238c8683836125ca565b93509350505061239f565b506000905060025b9250929050565b6000612408826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126129092919063ffffffff16565b805190915015610b965780806020019051810190612426919061358e565b610b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103f0565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124e957506000905060036125c1565b8460ff16601b1415801561250157508460ff16601c14155b1561251257506000905060046125c1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612566573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166125ba576000600192509250506125c1565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01612604878288856124b2565b935093505050935093915050565b60606126218484600085612629565b949350505050565b6060824710156126bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103f0565b843b612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103f0565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161274c91906132c3565b60006040518083038185875af1925050503d8060008114612789576040519150601f19603f3d011682016040523d82523d6000602084013e61278e565b606091505b509150915061279e8282866127a9565b979650505050505050565b606083156127b857508161229a565b8251156127c85782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f091906135b0565b6000610100828403121561280f57600080fd5b50919050565b60008083601f84011261282757600080fd5b50813567ffffffffffffffff81111561283f57600080fd5b60208301915083602082850101111561239f57600080fd5b803573ffffffffffffffffffffffffffffffffffffffff8116811461287b57600080fd5b919050565b600080600080610140858703121561289757600080fd5b6128a186866127fc565b935061010085013567ffffffffffffffff8111156128be57600080fd5b6128ca87828801612815565b90945092506128de90506101208601612857565b905092959194509250565b60008083601f8401126128fb57600080fd5b50813567ffffffffffffffff81111561291357600080fd5b6020830191508360208260051b850101111561239f57600080fd5b60008060006040848603121561294357600080fd5b61294c84612857565b9250602084013567ffffffffffffffff81111561296857600080fd5b612974868287016128e9565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b818110156129b95783518352928401929184019160010161299d565b50909695505050505050565b600080600080606085870312156129db57600080fd5b843567ffffffffffffffff8111156129f257600080fd5b6129fe878288016128e9565b909550935050602085013591506128de60408601612857565b600080600060408486031215612a2c57600080fd5b833567ffffffffffffffff811115612a4357600080fd5b612a4f868287016128e9565b9094509250612a62905060208501612857565b90509250925092565b60008060408385031215612a7e57600080fd5b612a8783612857565b946020939093013593505050565b60008060208385031215612aa857600080fd5b823567ffffffffffffffff811115612abf57600080fd5b612acb858286016128e9565b90969095509350505050565b60008060008060006101608688031215612af057600080fd5b612afa87876127fc565b945061010086013567ffffffffffffffff811115612b1757600080fd5b612b2388828901612815565b9095509350506101208601359150612b3e6101408701612857565b90509295509295909350565b6000610140828403121561280f57600080fd5b60008060008060006101a08688031215612b7657600080fd5b612b808787612b4a565b945061014086013567ffffffffffffffff811115612b9d57600080fd5b612ba988828901612815565b9095509350506101608601359150612b3e6101808701612857565b6000806000806101808587031215612bdb57600080fd5b612be58686612b4a565b935061014085013567ffffffffffffffff811115612c0257600080fd5b612c0e87828801612815565b90945092506128de90506101608601612857565b600060208284031215612c3457600080fd5b5035919050565b60008060006101208486031215612c5157600080fd5b612c5b85856127fc565b925061010084013567ffffffffffffffff811115612c7857600080fd5b61297486828701612815565b6000806000806101808587031215612c9b57600080fd5b612ca58686612b4a565b935061014085013567ffffffffffffffff811115612cc257600080fd5b612cce87828801612815565b959890975094956101600135949350505050565b60008060006101608486031215612cf857600080fd5b612d028585612b4a565b925061014084013567ffffffffffffffff811115612c7857600080fd5b6000806000806101408587031215612d3657600080fd5b612d4086866127fc565b935061010085013567ffffffffffffffff811115612d5d57600080fd5b612d6987828801612815565b959890975094956101200135949350505050565b60008060008060008060008060006101a08a8c031215612d9c57600080fd5b612da68b8b6127fc565b98506101008a013567ffffffffffffffff80821115612dc457600080fd5b612dd08d838e01612815565b909a5098506101208c01359750889150612ded6101408d01612857565b96506101608c0135915080821115612e0457600080fd5b612e108d838e01612815565b90965094506101808c0135915080821115612e2a57600080fd5b50612e378c828d01612815565b915080935050809150509295985092959850929598565b60008060008060008060008060006101e08a8c031215612e6d57600080fd5b612e778b8b612b4a565b98506101408a013567ffffffffffffffff80821115612e9557600080fd5b612ea18d838e01612815565b909a5098506101608c01359750889150612ebe6101808d01612857565b96506101a08c0135915080821115612ed557600080fd5b612ee18d838e01612815565b90965094506101c08c0135915080821115612e2a57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fba57612fba612f59565b5060010190565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81833603018112612ff557600080fd5b9190910192915050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303757613037612f59565b500290565b600082613072577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008282101561308957613089612f59565b500390565b600082198211156130a1576130a1612f59565b500190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126130db57600080fd5b83018035915067ffffffffffffffff8211156130f657600080fd5b60200191503681900382131561239f57600080fd5b80356fffffffffffffffffffffffffffffffff8116811461287b57600080fd5b803582526fffffffffffffffffffffffffffffffff61314c6020830161310b565b16602083015261315e60408201612857565b73ffffffffffffffffffffffffffffffffffffffff80821660408501528061318860608501612857565b1660608501528061319b60808501612857565b166080850152806131ae60a08501612857565b1660a0850152505060c0818101359083015260e090810135910152565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b60006101a0613223838d61312b565b806101008401526132378184018b8d6131cb565b90508861012084015273ffffffffffffffffffffffffffffffffffffffff88166101408401528281036101608401526132718187896131cb565b90508281036101808401526132878185876131cb565b9c9b505050505050505050505050565b60005b838110156132b257818101518382015260200161329a565b838111156107895750506000910152565b60008251612ff5818460208701613297565b6000602082840312156132e757600080fd5b61229a82612857565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe41833603018112612ff557600080fd5b828152610120810161229a602083018461312b565b60006020828403121561334b57600080fd5b61229a8261310b565b7fffffffff00000000000000000000000000000000000000000000000000000000831681526000825161338e816004850160208701613297565b919091016004019392505050565b600061016082019050838252823560208301526133bb6020840161310b565b6fffffffffffffffffffffffffffffffff81166040840152506040830135606083015260608301356080830152608083013560a083015260a083013560c083015261340860c08401612857565b73ffffffffffffffffffffffffffffffffffffffff811660e08401525061343160e08401612857565b6101006134558185018373ffffffffffffffffffffffffffffffffffffffff169052565b610120915080850135828501525080840135610140840152509392505050565b6000815180845261348d816020860160208601613297565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a0608083015261279e60a0830184613475565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8281526040602082015260006126216040830184613475565b60006020828403121561355e57600080fd5b81517fffffffff000000000000000000000000000000000000000000000000000000008116811461229a57600080fd5b6000602082840312156135a057600080fd5b8151801515811461229a57600080fd5b60208152600061229a602083018461347556fea26469706673582212208fbcf10fe536790fc9e50275d9a27e3c6cff912d911846204c06b85fbac937db64736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101815760003560e01c80637489ec23116100d8578063c88ae6dc1161008c578063de77aaf911610066578063de77aaf914610333578063f6c1b3711461035a578063ff7e506a1461036d57600080fd5b8063c88ae6dc146102fa578063c8b81d631461030d578063da6b84af1461032057600080fd5b806398f9b46b116100bd57806398f9b46b146102c1578063b28ace5f146102d4578063bbbc2372146102e757600080fd5b80637489ec23146102875780638a3ae43d1461029a57600080fd5b80631c64b8201161013a5780632ea1ee84116101145780632ea1ee841461025957806330201ad3146102615780633c3694ab1461027457600080fd5b80631c64b8201461022057806321c77c961461023357806324abf8281461024657600080fd5b806301fb36ba1161016b57806301fb36ba146101c4578063077822bd146101d75780630b57f091146101ea57600080fd5b80621540081461018657806301568b831461019b575b600080fd5b610199610194366004612880565b610375565b005b6101ae6101a936600461292e565b61040f565b6040516101bb9190612981565b60405180910390f35b6101996101d23660046129c5565b6104e8565b6101996101e5366004612a17565b61078f565b6102126101f8366004612a6b565b600060208181529281526040808220909352908152205481565b6040519081526020016101bb565b61019961022e3660046129c5565b61099d565b610199610241366004612a95565b610b58565b610212610254366004612ad7565b610b9b565b610212600181565b61021261026f366004612b5d565b610cdc565b610199610282366004612bc4565b610e17565b610199610295366004612c22565b610ea6565b6102127f95afddf5e4bb9f692716b7fdff640e6b8a0d2869597405c6e9d35857ed19a15081565b6101996102cf366004612c3b565b610ee6565b6102126102e2366004612c84565b610ef2565b6101996102f5366004612ce2565b610f01565b610212610308366004612d1f565b610f0d565b61019961031b366004612a17565b610f1c565b61021261032e366004612d7d565b6110dd565b6102127fba5673374f195ea076b91318b714c4f3d0887a650164f117b9a64de6237587fb81565b610212610368366004612e4e565b6112c0565b610212600081565b60c084013560e0850135801580159061038e5750600082115b6103f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e7400000000000000000000000000000000000060448201526064015b60405180910390fd5b610407868686858588611483565b505050505050565b60608167ffffffffffffffff81111561042a5761042a612efb565b604051908082528060200260200182016040528015610453578160200160208202803683370190505b5073ffffffffffffffffffffffffffffffffffffffff851660009081526020819052604081209192505b838110156104df5781600086868481811061049a5761049a612f2a565b905060200201358152602001908152602001600020548382815181106104c2576104c2612f2a565b6020908102919091010152806104d781612f88565b91505061047d565b50509392505050565b60005b838110156106fa573685858381811061050657610506612f2a565b90506020028101906105189190612fc1565b905060c081013560e082013560008161053684610120870135612fff565b610540919061303c565b905060008188116105515787610553565b815b9050600084610563600182613077565b61056d8685612fff565b610577919061308e565b610581919061303c565b90506000307fda6b84af00000000000000000000000000000000000000000000000000000000886105b66101008201826130a6565b868e6105c66101408f018f6130a6565b8f8061016001906105d791906130a6565b6040516024016105ef99989796959493929190613214565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090941693909317909252905161067891906132c3565b600060405180830381855af49150503d80600081146106b3576040519150601f19603f3d011682016040523d82523d6000602084013e6106b8565b606091505b5050905080156106cf576106cc838b613077565b99505b896106e057505050505050506106fa565b5050505050505080806106f290612f88565b9150506104eb565b508115610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f436f756c646e2774207377617020746865207265717565737465642066696c6c60448201527f20616d6f756e740000000000000000000000000000000000000000000000000060648201526084016103f0565b50505050565b60005b8281101561078957368484838181106107ad576107ad612f2a565b90506020028101906107bf9190612fc1565b905061012081013580158015906107da575060e08201358111155b610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b600060e083013561085560c085013584612fff565b61085f919061303c565b9050600081116108f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b61094c61090460808501606086016132d5565b6109126101408601866130a6565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b61096d61095f60608501604086016132d5565b6109126101608601866130a6565b6109878361097f6101008201826130a6565b84868a611483565b505050808061099590612f88565b915050610792565b60005b838110156106fa57368585838181106109bb576109bb612f2a565b90506020028101906109cd9190612fc1565b9050600081610120013585116109e357846109ea565b8161012001355b90506000307fda6b84af0000000000000000000000000000000000000000000000000000000084610a1f6101008201826130a6565b868a610a2f6101408b018b6130a6565b610a3d6101608d018d6130a6565b604051602401610a5599989796959493929190613214565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051610ade91906132c3565b600060405180830381855af49150503d8060008114610b19576040519150601f19603f3d011682016040523d82523d6000602084013e610b1e565b606091505b505090508015610b3557610b328287613077565b95505b85610b42575050506106fa565b5050508080610b5090612f88565b9150506109a0565b60005b81811015610b9657610b84838383818110610b7857610b78612f2a565b90506020020135610ea6565b80610b8e81612f88565b915050610b5b565b505050565b60008083118015610bb057508560e001358311155b610c16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b60e0860135610c2960c088013585612fff565b610c33919061303c565b905060008111610cc5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b610cd3868686848787611483565b95945050505050565b60008083118015610cf257508561012001358311155b610d58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b610120860135610d6d61010088013585612fff565b610d77919061303c565b905060008111610e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b610cd386868684878761184f565b6101008401356101208501358015801590610e325750600082115b610e98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e7400000000000000000000000000000000000060448201526064016103f0565b61040786868685858861184f565b610eb03382611992565b15610ee357604051339082907fa6eb7cdc219e1518ced964e9a34e61d68a94e4f1569db3e84256ba981ba5275390600090a35b50565b610b9683838333610375565b6000610cd38585858533610cdc565b610b9683838333610e17565b6000610cd38585858533610b9b565b60005b828110156107895736848483818110610f3a57610f3a612f2a565b9050602002810190610f4c91906132f0565b90506101608101358015801590610f6857506101208201358111155b610fce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b6000610120830135610fe561010085013584612fff565b610fef919061303c565b905060008111611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b61109760808401356109126101808601866130a6565b6110ad60408401356109126101a08601866130a6565b6110c7836110bf6101408201826130a6565b84868a61184f565b50505080806110d590612f88565b915050610f1f565b600080871180156110f257508960e001358711155b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b60e08a013561116b60c08c013589612fff565b611175919061303c565b905060008111611207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b61125661121a60808c0160608d016132d5565b86868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6112a561126960608c0160408d016132d5565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6112b38a8a8a848b8b611483565b9998505050505050505050565b600080871180156112d657508961012001358711155b61133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e76616c69642054616b657220616d6f756e7400000000000000000000000060448201526064016103f0565b6101208a01356113516101008c013589612fff565b61135b919061303c565b9050600081116113ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4d616b657220746f6b656e2066696c6c20616d6f756e742063616e6e6f74206260448201527f652030000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b6114318a6080013586868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6114758a6040013584848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160492505050565b6112b38a8a8a848b8b61184f565b600061149560a08801608089016132d5565b905060006114ea7f95afddf5e4bb9f692716b7fdff640e6b8a0d2869597405c6e9d35857ed19a150896040516020016114cf929190613324565b604051602081830303815290604052805190602001206119f2565b90506115218261150060c08b0160a08c016132d5565b838b60c00135898d602001602081019061151a9190613339565b8d8d611a5b565b61153c61153460608a0160408b016132d5565b838588611d25565b61155761154f60808a0160608b016132d5565b338487611d25565b73ffffffffffffffffffffffffffffffffffffffff808416908316827f6621486d9c28838df4a87d2cca5007bc2aaf6a5b5de083b1db8faf709302c4736115a460608d0160408e016132d5565b898d60600160208101906115b891906132d5565b6040805173ffffffffffffffffffffffffffffffffffffffff94851681526020810193909352921691810191909152606081018990526080015b60405180910390a45050505050505050565b805160e014156117285760008273ffffffffffffffffffffffffffffffffffffffff1663d505accf60e01b83604051602001611641929190613354565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052611679916132c3565b6000604051808303816000865af19150503d80600081146116b6576040519150601f19603f3d011682016040523d82523d6000602084013e6116bb565b606091505b5050905080611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f5065726d6974206661696c65640000000000000000000000000000000000000060448201526064016103f0565b505b8051610100141561184b5760008273ffffffffffffffffffffffffffffffffffffffff16638fcbaf0c60e01b83604051602001611766929190613354565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905261179e916132c3565b6000604051808303816000865af19150503d80600081146117db576040519150601f19603f3d011682016040523d82523d6000602084013e6117e0565b606091505b5050905080610b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f5065726d6974206661696c65640000000000000000000000000000000000000060448201526064016103f0565b5050565b600061186160e0880160c089016132d5565b9050600061189b7fba5673374f195ea076b91318b714c4f3d0887a650164f117b9a64de6237587fb896040516020016114cf92919061339c565b90506118cd826118b26101008b0160e08c016132d5565b838b6101000135898d602001602081019061151a9190613339565b6118e288604001358385888c60600135611d47565b6118f788608001353384878c60a00135611d47565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16827f58454165245cb04f65f0d8e8e867125cee46b1b301053018898247b85cb4a9bc8b604001358c606001358a8e608001358f60a001358c6040516115f296959493929190958652602086019490945260408501929092526060840152608083015260a082015260c00190565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020818152604080832084845291829052822054600114156119d45760009150506119ec565b60008381526020919091526040902060019081905590505b92915050565b60006119ec6119ff611f7c565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6fffffffffffffffffffffffffffffffff83161580611a8c5750826fffffffffffffffffffffffffffffffff164211155b611af2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f7264657220657870697265640000000000000000000000000000000000000060448201526064016103f0565b73ffffffffffffffffffffffffffffffffffffffff87161580611b2a575073ffffffffffffffffffffffffffffffffffffffff871633145b611b90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4163636573732064656e6965640000000000000000000000000000000000000060448201526064016103f0565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260208181526040808320898452918290529091205480611c9657611c078a8986868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120b092505050565b611c6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496e76616c6964205369676e617475726500000000000000000000000000000060448201526064016103f0565b611c778688613077565b611c8290600161308e565b600089815260208490526040902055611d19565b858111611cff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4f7264657220616c72656164792066696c6c6564206f7220657870697265640060448201526064016103f0565b611d098682613077565b6000898152602084905260409020555b50505050505050505050565b61078973ffffffffffffffffffffffffffffffffffffffff85168484846122a1565b60a085901c80611d7857611d7373ffffffffffffffffffffffffffffffffffffffff87168686866122a1565b610407565b8060011415611e1e57604080516020810182526000815290517ff242432a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88169163f242432a91611de7918991899188918a91906004016134bf565b600060405180830381600087803b158015611e0157600080fd5b505af1158015611e15573d6000803e3d6000fd5b50505050610407565b8060021415611f1a5782600114611eb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f496e76616c696420616d6f756e7420666f7220455243373231207472616e736660448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016103f0565b6040517f42842e0e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528581166024830152604482018490528716906342842e0e90606401611de7565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f496e76616c696420746f6b656e2074797065000000000000000000000000000060448201526064016103f0565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002df17455b96dde3618fd6b1c3a9aa06d6ab8934716148015611fe257507f00000000000000000000000000000000000000000000000000000000000000fa46145b1561200c57507fd46fa9c55daa6a00cd79caa93e322b01069ed8ba0ced0a1b44938948994fc49d90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f132e766da39286dd5f8e802ff897cbf040a00bc4ff4c38c2aa9b7ee876af462d828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008060006120bf8585612336565b909250905060008160048111156120d8576120d8613504565b14801561211057508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156121205760019250505061229a565b6000808773ffffffffffffffffffffffffffffffffffffffff16631626ba7e60e01b8888604051602401612155929190613533565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009094169390931790925290516121de91906132c3565b600060405180830381855afa9150503d8060008114612219576040519150601f19603f3d011682016040523d82523d6000602084013e61221e565b606091505b5091509150818015612231575080516020145b8015612293575080517f1626ba7e000000000000000000000000000000000000000000000000000000009061226f908301602090810190840161354c565b7fffffffff0000000000000000000000000000000000000000000000000000000016145b9450505050505b9392505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526107899085906123a6565b60008082516041141561236d5760208301516040840151606085015160001a612361878285856124b2565b9450945050505061239f565b825160401415612397576020830151604084015161238c8683836125ca565b93509350505061239f565b506000905060025b9250929050565b6000612408826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126129092919063ffffffff16565b805190915015610b965780806020019051810190612426919061358e565b610b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103f0565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124e957506000905060036125c1565b8460ff16601b1415801561250157508460ff16601c14155b1561251257506000905060046125c1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612566573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166125ba576000600192509250506125c1565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01612604878288856124b2565b935093505050935093915050565b60606126218484600085612629565b949350505050565b6060824710156126bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103f0565b843b612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103f0565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161274c91906132c3565b60006040518083038185875af1925050503d8060008114612789576040519150601f19603f3d011682016040523d82523d6000602084013e61278e565b606091505b509150915061279e8282866127a9565b979650505050505050565b606083156127b857508161229a565b8251156127c85782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f091906135b0565b6000610100828403121561280f57600080fd5b50919050565b60008083601f84011261282757600080fd5b50813567ffffffffffffffff81111561283f57600080fd5b60208301915083602082850101111561239f57600080fd5b803573ffffffffffffffffffffffffffffffffffffffff8116811461287b57600080fd5b919050565b600080600080610140858703121561289757600080fd5b6128a186866127fc565b935061010085013567ffffffffffffffff8111156128be57600080fd5b6128ca87828801612815565b90945092506128de90506101208601612857565b905092959194509250565b60008083601f8401126128fb57600080fd5b50813567ffffffffffffffff81111561291357600080fd5b6020830191508360208260051b850101111561239f57600080fd5b60008060006040848603121561294357600080fd5b61294c84612857565b9250602084013567ffffffffffffffff81111561296857600080fd5b612974868287016128e9565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b818110156129b95783518352928401929184019160010161299d565b50909695505050505050565b600080600080606085870312156129db57600080fd5b843567ffffffffffffffff8111156129f257600080fd5b6129fe878288016128e9565b909550935050602085013591506128de60408601612857565b600080600060408486031215612a2c57600080fd5b833567ffffffffffffffff811115612a4357600080fd5b612a4f868287016128e9565b9094509250612a62905060208501612857565b90509250925092565b60008060408385031215612a7e57600080fd5b612a8783612857565b946020939093013593505050565b60008060208385031215612aa857600080fd5b823567ffffffffffffffff811115612abf57600080fd5b612acb858286016128e9565b90969095509350505050565b60008060008060006101608688031215612af057600080fd5b612afa87876127fc565b945061010086013567ffffffffffffffff811115612b1757600080fd5b612b2388828901612815565b9095509350506101208601359150612b3e6101408701612857565b90509295509295909350565b6000610140828403121561280f57600080fd5b60008060008060006101a08688031215612b7657600080fd5b612b808787612b4a565b945061014086013567ffffffffffffffff811115612b9d57600080fd5b612ba988828901612815565b9095509350506101608601359150612b3e6101808701612857565b6000806000806101808587031215612bdb57600080fd5b612be58686612b4a565b935061014085013567ffffffffffffffff811115612c0257600080fd5b612c0e87828801612815565b90945092506128de90506101608601612857565b600060208284031215612c3457600080fd5b5035919050565b60008060006101208486031215612c5157600080fd5b612c5b85856127fc565b925061010084013567ffffffffffffffff811115612c7857600080fd5b61297486828701612815565b6000806000806101808587031215612c9b57600080fd5b612ca58686612b4a565b935061014085013567ffffffffffffffff811115612cc257600080fd5b612cce87828801612815565b959890975094956101600135949350505050565b60008060006101608486031215612cf857600080fd5b612d028585612b4a565b925061014084013567ffffffffffffffff811115612c7857600080fd5b6000806000806101408587031215612d3657600080fd5b612d4086866127fc565b935061010085013567ffffffffffffffff811115612d5d57600080fd5b612d6987828801612815565b959890975094956101200135949350505050565b60008060008060008060008060006101a08a8c031215612d9c57600080fd5b612da68b8b6127fc565b98506101008a013567ffffffffffffffff80821115612dc457600080fd5b612dd08d838e01612815565b909a5098506101208c01359750889150612ded6101408d01612857565b96506101608c0135915080821115612e0457600080fd5b612e108d838e01612815565b90965094506101808c0135915080821115612e2a57600080fd5b50612e378c828d01612815565b915080935050809150509295985092959850929598565b60008060008060008060008060006101e08a8c031215612e6d57600080fd5b612e778b8b612b4a565b98506101408a013567ffffffffffffffff80821115612e9557600080fd5b612ea18d838e01612815565b909a5098506101608c01359750889150612ebe6101808d01612857565b96506101a08c0135915080821115612ed557600080fd5b612ee18d838e01612815565b90965094506101c08c0135915080821115612e2a57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fba57612fba612f59565b5060010190565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81833603018112612ff557600080fd5b9190910192915050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303757613037612f59565b500290565b600082613072577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008282101561308957613089612f59565b500390565b600082198211156130a1576130a1612f59565b500190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18436030181126130db57600080fd5b83018035915067ffffffffffffffff8211156130f657600080fd5b60200191503681900382131561239f57600080fd5b80356fffffffffffffffffffffffffffffffff8116811461287b57600080fd5b803582526fffffffffffffffffffffffffffffffff61314c6020830161310b565b16602083015261315e60408201612857565b73ffffffffffffffffffffffffffffffffffffffff80821660408501528061318860608501612857565b1660608501528061319b60808501612857565b166080850152806131ae60a08501612857565b1660a0850152505060c0818101359083015260e090810135910152565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b60006101a0613223838d61312b565b806101008401526132378184018b8d6131cb565b90508861012084015273ffffffffffffffffffffffffffffffffffffffff88166101408401528281036101608401526132718187896131cb565b90508281036101808401526132878185876131cb565b9c9b505050505050505050505050565b60005b838110156132b257818101518382015260200161329a565b838111156107895750506000910152565b60008251612ff5818460208701613297565b6000602082840312156132e757600080fd5b61229a82612857565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe41833603018112612ff557600080fd5b828152610120810161229a602083018461312b565b60006020828403121561334b57600080fd5b61229a8261310b565b7fffffffff00000000000000000000000000000000000000000000000000000000831681526000825161338e816004850160208701613297565b919091016004019392505050565b600061016082019050838252823560208301526133bb6020840161310b565b6fffffffffffffffffffffffffffffffff81166040840152506040830135606083015260608301356080830152608083013560a083015260a083013560c083015261340860c08401612857565b73ffffffffffffffffffffffffffffffffffffffff811660e08401525061343160e08401612857565b6101006134558185018373ffffffffffffffffffffffffffffffffffffffff169052565b610120915080850135828501525080840135610140840152509392505050565b6000815180845261348d816020860160208601613297565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a0608083015261279e60a0830184613475565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8281526040602082015260006126216040830184613475565b60006020828403121561355e57600080fd5b81517fffffffff000000000000000000000000000000000000000000000000000000008116811461229a57600080fd5b6000602082840312156135a057600080fd5b8151801515811461229a57600080fd5b60208152600061229a602083018461347556fea26469706673582212208fbcf10fe536790fc9e50275d9a27e3c6cff912d911846204c06b85fbac937db64736f6c634300080a0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
BSC89.04%$0.00041,029,304,629.3833$411,886.54
BSC2.13%$608.0416.2012$9,850.96
BSC1.74%$0.9989988,058.4434$8,050.37
BSC1.06%$3,553.251.3791$4,900.39
BSC0.44%$0.9983282,031.0416$2,027.65
BSC0.39%$70,332.130.0256$1,802.08
BSC0.34%$6.37249.9652$1,593.05
BSC0.27%$0.0002445,036,230.8167$1,227.78
BSC0.21%$186.365.1744$964.3
BSC0.17%$3.18250.6235$796.55
BSC0.15%$0.000001831,764,536.846$706.12
BSC0.15%$1699.0914$700.34
BSC0.14%$1669.3614$669.51
BSC0.14%$4.71133.0521$626.1
BSC0.12%$0.645533848.5418$547.76
BSC0.12%$0.0915655,936.5131$543.58
BSC0.10%$0.00003114,895,762.1121$460.39
BSC0.09%$18.9521.0896$399.65
BSC0.09%$0.991202396.8597$393.37
BSC0.08%$0.2154121,639.663$353.2
BSC0.07%$37.259.0653$337.68
BSC0.07%$0.00124271,582.612$336.78
BSC0.07%$0.001018317,244.6077$323.02
BSC0.06%$611.450.4841$296.02
BSC0.06%$9.3830.2216$283.52
BSC0.06%$16.0817.2255$277.05
BSC0.06%$0.1520641,798.9276$273.55
BSC0.06%$14.7218.2075$268.01
BSC0.06%$0.6179429.262$265.24
BSC0.06%$0.514537510.7169$262.78
BSC0.05%$2.41103.5656$249.59
BSC0.05%$9.5924.2999$233.13
BSC0.05%$0.0717853,212.9274$230.64
BSC0.05%$0.786927288.2487$226.83
BSC0.04%$12.216.6202$202.77
BSC0.04%$0.26382753.4392$198.77
BSC0.04%$0.33314525.5513$175.08
BSC0.03%$0.980318162.5205$159.32
BSC0.03%$12.6912.299$156.13
BSC0.03%$0.0000285,520,786.8743$153.59
BSC0.03%$0.316265462.9167$146.4
BSC0.03%$1.4299.2857$141.34
BSC0.03%$1135.6247$135.92
BSC0.03%$573.130.2345$134.4
BSC0.03%<$0.00000152,384,696,620.6626$129.49
BSC0.03%$4.5527.671$125.9
BSC0.03%<$0.0000011,264,628,301.3551$123.61
BSC0.03%$53.982.2703$122.55
BSC0.03%$0.112381,063.8841$119.56
BSC0.03%$0.00137986,272.5584$118.99
BSC0.03%$1.5874.3037$117.4
BSC0.03%$4.8523.8692$115.77
BSC0.02%$941.222$114.87
BSC0.02%$0.0315413,444.8947$108.66
BSC0.02%$0.825959130.2883$107.61
BSC0.02%$435.550.2393$104.21
BSC0.02%$0.856087120.5576$103.21
BSC0.02%$0.000772129,803.6119$100.17
BSC0.02%$0.188361530.115$99.85
BSC0.02%$0.0170985,819.423$99.5
BSC0.02%$0.0000591,663,344.9637$98.84
BSC0.02%$0.00039253,086.164$98.58
BSC0.02%$0.0312813,058.2368$95.66
BSC0.02%$0.000595160,620.7379$95.57
BSC0.02%$0.195099477.4704$93.15
BSC0.02%$0.99968892.1034$92.07
BSC0.02%$0.587687155.4268$91.34
BSC0.02%$0.111233817.1812$90.9
BSC0.02%$0.320665269.7276$86.49
BSC0.02%$0.034952,358.5543$82.43
BSC0.02%$0.172573459.5019$79.3
BSC0.02%$1.0177.0572$77.98
BSC0.02%<$0.0000011,360,324,222,146.68$76.04
BSC0.02%$4.2717.4391$74.46
BSC0.01%$0.75655891.1948$68.99
BSC0.01%$0.0087497,865.6908$68.82
BSC0.01%$0.14124475.2893$67.13
BSC0.01%$0.81515782.172$66.98
BSC0.01%$0.005611,763.506$65.88
BSC0.01%$0.631287102.3001$64.58
BSC0.01%$12.665.0901$64.44
BSC0.01%$0.197736323.2644$63.92
BSC0.01%$6.379.79$62.33
BSC0.01%$9.226.6402$61.24
BSC0.01%$0.74209882.0908$60.92
BSC0.01%$0.211597282.716$59.82
BSC0.01%$0.00000235,491,238.9192$57.77
BSC0.01%$0.096663588.5094$56.89
BSC0.01%$3,703.330.0152$56.4
BSC0.01%$0.0167243,367.7577$56.32
BSC0.01%$0.00155331,793.5113$49.39
BSC0.01%$0.069033713.9666$49.29
BSC0.01%$0.0333331,453.7422$48.46
BSC0.01%$0.075417640.9802$48.34
BSC0.01%$0.081015592.9522$48.04
BSC0.01%$0.00149131,711.3256$47.28
BSC0.01%$0.277655168.8898$46.89
BSC0.01%$0.103779451.0647$46.81
BSC0.01%$0.0456231,023.3279$46.69
BSC0.01%$10.044.6103$46.29
BSC<0.01%$0.0288281,569.7996$45.25
BSC<0.01%$0.00214920,092.8002$43.19
BSC<0.01%$3,558.710.012$42.71
BSC<0.01%$0.0178122,383.5823$42.46
BSC<0.01%<$0.00000151,413,956,684.6406$41.92
BSC<0.01%$127.810.3155$40.33
BSC<0.01%$0.0037910,432.0633$39.54
BSC<0.01%$0.35441110.7144$39.24
BSC<0.01%$0.00210218,483.6385$38.86
BSC<0.01%$1.1333.9005$38.24
BSC<0.01%$0.70017654.579$38.21
BSC<0.01%$2.0218.8823$38.14
BSC<0.01%$0.333089113.9907$37.97
BSC<0.01%$1.4326.0038$37.2
BSC<0.01%$0.00323311,455.5352$37.04
BSC<0.01%$0.38151795.0705$36.27
BSC<0.01%$0.09783369.3588$36.13
BSC<0.01%$0.083747426.0916$35.68
BSC<0.01%$0.096261364.6597$35.1
BSC<0.01%$0.57060261.1238$34.88
BSC<0.01%$0.0000084,467,538.8224$34.8
BSC<0.01%$0.256897135.1278$34.71
BSC<0.01%$0.153006224.5674$34.36
BSC<0.01%<$0.000001119,788,659.4076$34.08
BSC<0.01%$0.0032410,379.6599$33.63
BSC<0.01%$0.291995115.1245$33.62
BSC<0.01%$0.0152932,178.8603$33.32
BSC<0.01%$0.022721,466.2423$33.31
BSC<0.01%$0.46126571.5169$32.99
BSC<0.01%$7.064.6728$32.99
BSC<0.01%$0.0256161,277.2789$32.72
BSC<0.01%$0.05347607.4187$32.48
BSC<0.01%$0.88388236.5148$32.27
BSC<0.01%$0.143299222.9768$31.95
BSC<0.01%$0.0088183,550.3258$31.31
BSC<0.01%$0.062618498.1102$31.19
BSC<0.01%$0.0092683,253.3756$30.15
BSC<0.01%$0.146753204.3878$29.99
BSC<0.01%$0.39741673.2361$29.11
BSC<0.01%$0.03626800.2826$29.02
BSC<0.01%$10.932.6343$28.79
BSC<0.01%$0.110114258.2893$28.44
BSC<0.01%$0.00051654,837.6606$28.32
BSC<0.01%$2.0913.3973$28
BSC<0.01%$1.2721.9259$27.81
BSC<0.01%<$0.0000011,201,446,207.6931$27.66
BSC<0.01%$0.0263151,045.0286$27.5
BSC<0.01%$0.080474340.9559$27.44
BSC<0.01%$0.30596789.2001$27.29
BSC<0.01%$0.201822134.3611$27.12
BSC<0.01%$0.0073613,659.8522$26.94
BSC<0.01%$0.47712755.916$26.68
BSC<0.01%$0.33412578.9514$26.38
BSC<0.01%$0.00055147,061.2702$25.95
BSC<0.01%$0.040323640.4149$25.82
BSC<0.01%$0.0000181,398,827.26$25.77
BSC<0.01%$0.145485163.5837$23.8
BSC<0.01%$100,6220.00023608$23.75
BSC<0.01%$0.089087262.0276$23.34
BSC<0.01%$6.563.5149$23.05
BSC<0.01%$0.067996319.0434$21.69
BSC<0.01%$2.239.3992$20.93
BSC<0.01%$1.3614.9405$20.32
BSC<0.01%$633.90.0319$20.19
BSC<0.01%$0.0100412,003.8911$20.12
BSC<0.01%$0.0182791,085.3165$19.84
BSC<0.01%$0.0124651,563.3451$19.49
BSC<0.01%$0.079073246.239$19.47
BSC<0.01%<$0.00000116,320,339,452.8435$19.45
BSC<0.01%$40.880.4659$19.05
BSC<0.01%$0.037468504.3931$18.9
BSC<0.01%$0.088416213.2496$18.85
BSC<0.01%$0.99915418.8457$18.83
BSC<0.01%$0.00132414,169.6512$18.76
BSC<0.01%$1.7410.7531$18.71
BSC<0.01%$1.611.6801$18.69
BSC<0.01%$0.00058131,929.9863$18.55
BSC<0.01%$0.48357838.3081$18.52
BSC<0.01%$0.67094127.552$18.49
BSC<0.01%$1.5811.6886$18.47
BSC<0.01%$0.078958231.8313$18.31
BSC<0.01%$0.115185156.5218$18.03
BSC<0.01%$0.37922647.394$17.97
BSC<0.01%$0.043543410.7848$17.89
BSC<0.01%$0.32908753.8716$17.73
BSC<0.01%$0.45027939.2322$17.67
BSC<0.01%$0.047492348.0618$16.53
BSC<0.01%$0.0056452,911.5306$16.43
BSC<0.01%$0.017748922.2057$16.37
BSC<0.01%$1.3511.9549$16.12
BSC<0.01%$1.114.446$15.89
BSC<0.01%$5.113.0976$15.83
BSC<0.01%$0.066146237.2549$15.69
BSC<0.01%$0.39658939.5486$15.68
BSC<0.01%$0.34511644.5753$15.38
BSC<0.01%$0.03002512.1317$15.37
BSC<0.01%$0.6524723.4501$15.3
BSC<0.01%$1.917.8494$14.99
BSC<0.01%$0.0064032,318.4023$14.84
BSC<0.01%$4.383.1872$13.96
BSC<0.01%$0.0001138,412.9858$13.88
BSC<0.01%<$0.0000011,350,230,403.1565$13.73
BSC<0.01%$659.770.0207$13.68
BSC<0.01%$0.0074311,808.6651$13.44
BSC<0.01%$0.001319,920.7735$13
BSC<0.01%$0.1626378.9928$12.85
BSC<0.01%$0.065723194.8253$12.8
BSC<0.01%$0.15385582.5943$12.71
BSC<0.01%$0.026701473.7987$12.65
BSC<0.01%$0.62654619.2042$12.03
BSC<0.01%$0.018473643.514$11.89
BSC<0.01%$0.037928312.332$11.85
BSC<0.01%$0.52230122.2872$11.64
BSC<0.01%$0.000046255,327.814$11.64
BSC<0.01%$1.199.5357$11.35
BSC<0.01%$1.597.0678$11.24
BSC<0.01%$0.080211137.1335$11
BSC<0.01%$0.17701861.9323$10.96
BSC<0.01%$0.101224107.9665$10.93
BSC<0.01%$0.0064721,683.7273$10.9
BSC<0.01%$0.21372250.5306$10.8
BSC<0.01%$0.12655285.1161$10.77
BSC<0.01%$0.4596922.9711$10.56
BSC<0.01%<$0.0000019,164,361,466.7149$10.34
BSC<0.01%$1.089.4226$10.17
BSC<0.01%$0.16238562.0811$10.08
BSC<0.01%$0.034817286.3412$9.97
BSC<0.01%$0.0096561,025.9995$9.91
BSC<0.01%$1.476.73$9.89
BSC<0.01%$0.0069661,419.9472$9.89
BSC<0.01%$0.0096461,024.3877$9.88
BSC<0.01%$0.0036812,659.7851$9.79
BSC<0.01%$0.52141718.5887$9.69
BSC<0.01%$0.23045642.0541$9.69
BSC<0.01%<$0.00000138,766,103.0601$9.44
BSC<0.01%$5.71.6547$9.43
BSC<0.01%$0.89472510.3708$9.28
BSC<0.01%$0.022449406.3625$9.12
BSC<0.01%$1.346.7816$9.12
BSC<0.01%$3.642.4739$9.01
BSC<0.01%$78.790.1121$8.84
BSC<0.01%$0.0010558,362.9259$8.82
BSC<0.01%$0.25656534.0509$8.74
BSC<0.01%$0.0021144,078.516$8.62
BSC<0.01%$5.21.6474$8.57
BSC<0.01%$0.034504246.7338$8.51
BSC<0.01%$0.18987344.81$8.51
BSC<0.01%$1.475.7389$8.44
BSC<0.01%$7.721.0915$8.43
BSC<0.01%$0.44406918.928$8.41
BSC<0.01%$0.01788468.9054$8.38
BSC<0.01%$0.0013036,286.4903$8.19
BSC<0.01%$0.03458236.4797$8.18
BSC<0.01%$0.0024013,357.461$8.06
BSC<0.01%$0.057268140.4395$8.04
BSC<0.01%$0.68908211.3866$7.85
BSC<0.01%$0.014733528.3939$7.78
BSC<0.01%$0.32981223.2187$7.66
BSC<0.01%<$0.00000123,387,214.1947$7.65
BSC<0.01%$0.00012660,572.9133$7.64
BSC<0.01%$0.0016484,625.0766$7.62
BSC<0.01%$0.0008688,765.2661$7.61
BSC<0.01%$0.0012146,221.4839$7.55
BSC<0.01%$0.00024929,533.3514$7.36
BSC<0.01%$0.0051861,337.7733$6.94
BSC<0.01%$0.04555150.9257$6.87
BSC<0.01%$248.20.0271$6.72
BSC<0.01%$0.00053912,433.3804$6.7
BSC<0.01%$0.0047451,410.4235$6.69
BSC<0.01%$7.260.8996$6.53
BSC<0.01%$0.18714834.8027$6.51
BSC<0.01%$0.8192287.8869$6.46
BSC<0.01%$0.24895425.6143$6.38
BSC<0.01%$0.0025272,516.0333$6.36
BSC<0.01%$0.6381119.9329$6.34
BSC<0.01%$0.12016152.0647$6.26
BSC<0.01%<$0.00000199,912,095.7706$6.25
BSC<0.01%$0.00007186,998.3773$6.15
BSC<0.01%<$0.0000011,928,892,308.9293$6.1
BSC<0.01%$0.59179810.1513$6.01
BSC<0.01%$0.0011045,392.9325$5.95
BSC<0.01%$0.6298649.382$5.91
BSC<0.01%$0.0007837,349.9148$5.75
BSC<0.01%<$0.000001643,099,642,472.587$5.73
BSC<0.01%$0.002112,545.407$5.37
BSC<0.01%$0.02503213.881$5.35
BSC<0.01%$0.8514416.1796$5.26
BSC<0.01%$0.9299365.628$5.23
BSC<0.01%$0.002182,383.9108$5.2
BSC<0.01%$0.00041712,313.5425$5.14
BSC<0.01%$0.021246237.546$5.05
BSC<0.01%$2.162.2955$4.96
BSC<0.01%$0.0041861,183.2879$4.95
BSC<0.01%$0.006977709.6449$4.95
BSC<0.01%$0.8049126.0086$4.84
BSC<0.01%$32.450.1473$4.78
BSC<0.01%$0.7119796.6854$4.76
BSC<0.01%$0.005705823.3611$4.7
BSC<0.01%$4.830.9721$4.7
BSC<0.01%$0.00039411,921.1598$4.69
BSC<0.01%<$0.000001144,498,082.6006$4.61
BSC<0.01%$0.0203226.216$4.59
BSC<0.01%$2.072.2159$4.59
BSC<0.01%<$0.000001407,762,070,464.636$4.54
BSC<0.01%$0.13906632.642$4.54
BSC<0.01%$0.008402526.6555$4.42
BSC<0.01%$0.018658235.3231$4.39
BSC<0.01%$0.9848414.3972$4.33
BSC<0.01%$0.17975224.078$4.33
BSC<0.01%$2.022.1369$4.32
BSC<0.01%$0.016787257.1175$4.32
BSC<0.01%$0.010745400.9824$4.31
BSC<0.01%$0.19917821.533$4.29
BSC<0.01%$0.5226838.1953$4.28
BSC<0.01%<$0.000001172,319,594,666.789$4.13
BSC<0.01%$1.043.9496$4.11
BSC<0.01%$0.008022498.4087$4
BSC<0.01%$0.021029189.3548$3.98
BSC<0.01%$0.8334544.7008$3.92
BSC<0.01%<$0.00000113,292,263.8195$3.91
BSC<0.01%$22.940.1705$3.91
BSC<0.01%$0.0038931,000.9527$3.9
BSC<0.01%$0.013539287.7212$3.9
BSC<0.01%$0.5282497.3621$3.89
BSC<0.01%$0.000036106,103.2662$3.86
BSC<0.01%<$0.000001272,472,613.2305$3.84
BSC<0.01%$0.6952175.4974$3.82
BSC<0.01%$0.07909946.2846$3.66
BSC<0.01%$0.0008554,277.6771$3.66
BSC<0.01%$0.033174110.2443$3.66
BSC<0.01%$0.021435170.0654$3.65
BSC<0.01%$0.0023121,570.3858$3.63
BSC<0.01%$0.032345111.8061$3.62
BSC<0.01%$0.0000016,443,066.715$3.61
BSC<0.01%$0.23533615.2957$3.6
BSC<0.01%$0.0021091,701.9953$3.59
BSC<0.01%$3,515.420.00101559$3.57
BSC<0.01%$0.113331.5069$3.57
BSC<0.01%$0.9976523.5595$3.55
BSC<0.01%$0.025835136.8014$3.53
BSC<0.01%$0.09334537.3097$3.48
BSC<0.01%$0.00013325,548.3305$3.41
BSC<0.01%$0.012852263.8663$3.39
BSC<0.01%$30.830.1088$3.35
BSC<0.01%$0.15533321.5546$3.35
BSC<0.01%<$0.000001148,888,117.957$3.34
BSC<0.01%$0.0022021,473.0438$3.24
BSC<0.01%$0.25901512.0353$3.12
BSC<0.01%$0.12405424.2164$3
BSC<0.01%$0.9985533.0042$3
BSC<0.01%<$0.0000019,339,902,908,512.7$2.98
BSC<0.01%$0.010925272.0647$2.97
BSC<0.01%<$0.000001173,180,032.1172$2.97
BSC<0.01%$350.0842$2.95
BSC<0.01%<$0.0000011,580,069,246.3488$2.84
BSC<0.01%$7.650.3716$2.84
BSC<0.01%$0.00026810,485.0433$2.81
BSC<0.01%$4.320.6505$2.81
BSC<0.01%$0.017797156.4103$2.78
BSC<0.01%$0.010321265.9753$2.75
BSC<0.01%$0.00007138,450.2296$2.73
BSC<0.01%$0.0020691,309.3683$2.71
BSC<0.01%$0.00003574,752.3798$2.65
BSC<0.01%$32.260.0796$2.57
BSC<0.01%$0.02606297.6804$2.55
BSC<0.01%$0.002826898.2981$2.54
BSC<0.01%$0.0000014,453,010.0779$2.53
BSC<0.01%$0.3712656.7784$2.52
BSC<0.01%$0.0000021,056,212.1138$2.49
BSC<0.01%$0.3043138.1754$2.49
BSC<0.01%$0.18948913.1033$2.48
BSC<0.01%$1.681.4596$2.45
BSC<0.01%$0.5687094.228$2.4
BSC<0.01%$4.470.5296$2.37
BSC<0.01%$0.07785430.062$2.34
BSC<0.01%$6.040.3867$2.34
BSC<0.01%$0.002633883.569$2.33
BSC<0.01%$5.190.4396$2.28
BSC<0.01%$0.2830888.0338$2.27
BSC<0.01%$0.9801582.3062$2.26
BSC<0.01%$0.008313270.9403$2.25
BSC<0.01%$0.005403410.997$2.22
BSC<0.01%$0.007869281.5567$2.22
BSC<0.01%$0.06089236.1314$2.2
BSC<0.01%$0.0001712,846.9291$2.18
BSC<0.01%$0.0019891,079.1471$2.15
BSC<0.01%$0.002436865.9517$2.11
BSC<0.01%$0.10271620.3886$2.09
BSC<0.01%$0.60673.4477$2.09
BSC<0.01%<$0.0000014,712,312.8128$2.08
BSC<0.01%$0.000258,151.7512$2.04
BSC<0.01%$0.08522823.7407$2.02
BSC<0.01%$0.08493523.7959$2.02
BSC<0.01%$0.3051636.4961$1.98
BSC<0.01%$0.0015861,246.8189$1.98
BSC<0.01%$0.05032739.2537$1.98
BSC<0.01%$230.0856$1.97
BSC<0.01%$0.3727355.267$1.96
BSC<0.01%$0.002529769$1.94
BSC<0.01%$0.0014711,290.8496$1.9
BSC<0.01%$0.2459817.7181$1.9
BSC<0.01%<$0.0000012,591,041,155.2829$1.89
BSC<0.01%<$0.00000156,244,214.3493$1.84
BSC<0.01%$0.007069260.1465$1.84
BSC<0.01%$0.473723.8793$1.84
BSC<0.01%$0.0249272.5432$1.81
BSC<0.01%$0.006205287.8143$1.79
BSC<0.01%$0.002095847.1168$1.77
BSC<0.01%$0.0009571,836.0286$1.76
BSC<0.01%$0.005455321.6931$1.75
BSC<0.01%$0.01927889.974$1.73
BSC<0.01%<$0.0000011,695,103,629,913,790,000$1.7
BSC<0.01%$1.081.56$1.68
BSC<0.01%$0.0004353,827.9725$1.67
BSC<0.01%$0.0007692,149.7817$1.65
BSC<0.01%$0.04635935.4178$1.64
BSC<0.01%$0.002441671.4905$1.64
BSC<0.01%$0.438283.6579$1.6
BSC<0.01%$0.003418467.6199$1.6
BSC<0.01%<$0.00000111,655,162.7791$1.58
BSC<0.01%$0.0004243,707.8412$1.57
BSC<0.01%$0.006278247.8646$1.56
BSC<0.01%$0.01937778.8562$1.53
BSC<0.01%$0.00891168.8958$1.5
BSC<0.01%$0.02088271.9837$1.5
BSC<0.01%$0.003887385.0827$1.5
BSC<0.01%$1.21.2451$1.49
BSC<0.01%$0.000004336,334.5776$1.49
BSC<0.01%$0.0012111,220.0208$1.48
BSC<0.01%$11.120.1323$1.47
BSC<0.01%$0.0363340.2316$1.46
BSC<0.01%$0.9135371.5941$1.46
BSC<0.01%$0.0005092,824.1957$1.44
BSC<0.01%$1.391.0298$1.43
BSC<0.01%$0.10903913.0957$1.43
BSC<0.01%$0.00522273.5648$1.43
BSC<0.01%$0.007677185.036$1.42
BSC<0.01%$0.0449631.4039$1.41
BSC<0.01%$0.02546355.4186$1.41
BSC<0.01%$0.2002347.0193$1.41
BSC<0.01%$0.04123633.4384$1.38
BSC<0.01%<$0.00000180,748,038,862.8109$1.36
BSC<0.01%$0.02285859.4505$1.36
BSC<0.01%$0.01138118.4572$1.35
BSC<0.01%$0.3784853.5495$1.34
BSC<0.01%$0.1624978.2548$1.34
BSC<0.01%$0.0334640.0548$1.34
BSC<0.01%$0.003015443.0077$1.34
BSC<0.01%$0.02037664.8598$1.32
BSC<0.01%$0.007662171.3631$1.31
BSC<0.01%$0.3320693.9301$1.31
BSC<0.01%$0.2624594.9388$1.3
BSC<0.01%$0.007799164.3971$1.28
BSC<0.01%$0.006509195.6867$1.27
BSC<0.01%$0.001719716.712$1.23
BSC<0.01%$0.05348822.7938$1.22
BSC<0.01%<$0.00000150,872,583,336.5692$1.2
BSC<0.01%$0.01531378.0339$1.19
BSC<0.01%$0.008577138.8681$1.19
BSC<0.01%$0.3595423.305$1.19
BSC<0.01%$0.02340750.3245$1.18
BSC<0.01%$0.1786596.5635$1.17
BSC<0.01%$300.0386$1.16
BSC<0.01%$0.0001876,156.0527$1.15
BSC<0.01%$0.02674242.9905$1.15
BSC<0.01%$0.002038561.1729$1.14
BSC<0.01%$0.709691.5986$1.13
BSC<0.01%<$0.000001846,108,187,393.945$1.13
BSC<0.01%$0.003627309.0973$1.12
BSC<0.01%$0.00953116.2522$1.11
BSC<0.01%$0.01194692.3422$1.1
BSC<0.01%$0.007492146.3017$1.1
BSC<0.01%$0.2349854.5442$1.07
BSC<0.01%$0.0504621.124$1.07
BSC<0.01%$0.268963.9385$1.06
BSC<0.01%$0.02785737.5407$1.05
BSC<0.01%$0.1925665.3364$1.03
BSC<0.01%$0.1332687.7101$1.03
BSC<0.01%$0.07805413.1093$1.02
BSC<0.01%$0.04592522.249$1.02
BSC<0.01%$7.120.1435$1.02
BSC<0.01%$2.930.3454$1.01
BSC<0.01%$0.03986325.1316$1
BSC<0.01%$0.006409156.3062$1
BSC<0.01%$0.01691358.5943$0.991
BSC<0.01%$0.009725100.9183$0.9814
BSC<0.01%$4.070.2348$0.956
BSC<0.01%$0.003571265.1034$0.9467
BSC<0.01%$0.2583663.6576$0.945
BSC<0.01%<$0.000001648,316,975.942$0.9426
BSC<0.01%$0.001706539.4875$0.9201
BSC<0.01%$0.0210943.4714$0.9167
BSC<0.01%$1.250.7274$0.9092
BSC<0.01%$26.060.0345$0.898
BSC<0.01%$0.05148517.4332$0.8975
BSC<0.01%$0.0001167,393.287$0.8564
BSC<0.01%$0.01161673.394$0.8525
BSC<0.01%$0.0002733,120.155$0.8523
BSC<0.01%$0.1333046.3102$0.8411
BSC<0.01%$0.0120269.6285$0.8369
BSC<0.01%$0.07183911.5919$0.8327
BSC<0.01%$0.003481238.8584$0.8314
BSC<0.01%$0.00001172,151.7344$0.8278
BSC<0.01%$0.000005163,257.5882$0.8277
BSC<0.01%$0.03949320.584$0.8129
BSC<0.01%$0.0004951,633.1502$0.8077
BSC<0.01%$0.01525551.8832$0.7914
BSC<0.01%$0.05976112.7556$0.7622
BSC<0.01%$0.002352321.9497$0.7571
BSC<0.01%$0.6760441.1174$0.7554
BSC<0.01%$0.001113677.0257$0.7534
BSC<0.01%$0.002238328.9993$0.7363
BSC<0.01%$0.0004991,453.9901$0.7262
BSC<0.01%$0.000846856.8736$0.7247
BSC<0.01%$0.0000759,485.0387$0.7132
BSC<0.01%$0.8994580.7726$0.6949
BSC<0.01%$0.0722079.6082$0.6937
BSC<0.01%$0.06801710.1382$0.6895
BSC<0.01%$0.00823682.8252$0.6821
BSC<0.01%$0.0002163,139.6893$0.6796
BSC<0.01%$0.000833809.8634$0.6749
BSC<0.01%<$0.000001204,033,405.794$0.6681
BSC<0.01%$0.001326502.8045$0.6665
BSC<0.01%$0.02109131.0049$0.6539
BSC<0.01%$0.0002492,607.0342$0.648
BSC<0.01%<$0.0000013,215,792,845.0151$0.6408
BSC<0.01%$0.01843234.6717$0.639
BSC<0.01%$0.002945214.3657$0.6313
BSC<0.01%$0.0747468.3863$0.6268
BSC<0.01%$0.004428138.3863$0.6127
BSC<0.01%<$0.000001367,063,637,827.317$0.6093
BSC<0.01%$0.002583233.9028$0.604
BSC<0.01%$0.03683415.9211$0.5864
BSC<0.01%$0.0057399.6138$0.5707
BSC<0.01%$0.04310913.2176$0.5698
BSC<0.01%$0.0001164,851.3373$0.5617
BSC<0.01%$0.004021139.4266$0.5606
BSC<0.01%$0.2202222.5447$0.5604
BSC<0.01%$0.0001124,991.4626$0.5598
BSC<0.01%$0.001442387.4353$0.5588
BSC<0.01%$0.8999110.6205$0.5584
BSC<0.01%$8,979.350.00006134$0.5507
BSC<0.01%$0.01854929.5741$0.5485
BSC<0.01%$0.00004611,886.9382$0.545
BSC<0.01%$0.067878.0272$0.5448
BSC<0.01%<$0.000001302,521,147.02$0.5417
BSC<0.01%$0.00512103.6639$0.5307
BSC<0.01%$0.9860980.5364$0.5289
BSC<0.01%$0.0002871,793.0492$0.5144
BSC<0.01%$0.000969527.6377$0.5115
BSC<0.01%$0.01031149.4727$0.5101
BSC<0.01%$0.000951535.4605$0.5092
BSC<0.01%$0.0983035.1551$0.5067
BSC<0.01%$0.1087034.6531$0.5058
BSC<0.01%$2.130.234$0.4985
BSC<0.01%$0.000001671,316.9124$0.4903
BSC<0.01%$0.01579629.8495$0.4714
BSC<0.01%$0.0001114,213.0369$0.4665
BSC<0.01%$0.00000588,801.198$0.4635
BSC<0.01%$0.003447134.3282$0.463
BSC<0.01%$0.01396733.1438$0.4629
BSC<0.01%$0.0001572,881.298$0.4534
BSC<0.01%<$0.0000016,686,062.1679$0.4496
BSC<0.01%$0.01272934.912$0.4443
BSC<0.01%$0.000001386,209.4244$0.4443
BSC<0.01%$13.560.0325$0.4402
BSC<0.01%$0.000645680.0813$0.4385
BSC<0.01%$0.0129233.6839$0.4352
BSC<0.01%$0.3013621.4425$0.4347
BSC<0.01%$0.000661654.8551$0.4328
BSC<0.01%$0.000004109,931.3319$0.432
BSC<0.01%$0.2032792.1191$0.4307
BSC<0.01%<$0.000001186,926,643.0743$0.4304
BSC<0.01%$0.000004110,822.3783$0.4296
BSC<0.01%$0.002692158.3501$0.4263
BSC<0.01%$5.280.08$0.4222
BSC<0.01%$0.2029052.0401$0.4139
BSC<0.01%$10.4138$0.4138
BSC<0.01%$0.000003164,016.61$0.4116
BSC<0.01%$0.00767652.4842$0.4028
BSC<0.01%<$0.0000012,873,624.7704$0.3833
BSC<0.01%<$0.000001220,905,849.2284$0.3823
BSC<0.01%$2.850.1337$0.3808
BSC<0.01%$0.000231,656.6994$0.3805
BSC<0.01%$0.0479347.9036$0.3788
BSC<0.01%$3.40.11$0.3737
BSC<0.01%$0.00463980.3635$0.3728
BSC<0.01%$0.00779947.6769$0.3718
BSC<0.01%$0.00465978.9447$0.3677
BSC<0.01%$0.000578633.2636$0.3661
BSC<0.01%$0.4946590.7392$0.3656
BSC<0.01%$0.5440860.6674$0.3631
BSC<0.01%$0.000383945.7328$0.3625
BSC<0.01%<$0.000001113,948,515.9193$0.3569
BSC<0.01%$0.001228286.1835$0.3515
BSC<0.01%$0.000734476.6415$0.3498
BSC<0.01%$0.000003118,227.1753$0.3404
BSC<0.01%$3,584.710.00009487$0.34
BSC<0.01%$0.0480477.056$0.339
BSC<0.01%$0.2242451.4736$0.3304
BSC<0.01%$0.03198510.1549$0.3248
BSC<0.01%$0.000513630.9085$0.3238
BSC<0.01%$0.002589123.1276$0.3188
BSC<0.01%$0.0449787.0592$0.3175
BSC<0.01%$0.00456869.3652$0.3168
BSC<0.01%$0.00338592.0051$0.3114
BSC<0.01%$0.01825916.9958$0.3103
BSC<0.01%$0.00564954.7726$0.3094
BSC<0.01%<$0.000001241,139,174.3291$0.3091
BSC<0.01%$0.6780610.4552$0.3086
BSC<0.01%$0.000311974.909$0.303
BSC<0.01%$0.01177625.4234$0.2993
BSC<0.01%$2.440.1219$0.2974
BSC<0.01%$0.0000495,880.9899$0.2852
BSC<0.01%$0.00122233.1517$0.2843
BSC<0.01%$0.001281216.8666$0.2778
BSC<0.01%$0.00291294.5244$0.2752
BSC<0.01%$0.0001362,012.5126$0.2745
BSC<0.01%$0.00998827.2755$0.2724
BSC<0.01%$0.00369671.9907$0.266
BSC<0.01%$0.00855631.0409$0.2655
BSC<0.01%$0.0286619.093$0.2606
BSC<0.01%$0.9952290.2607$0.2594
BSC<0.01%$0.0000212,709.652$0.258
BSC<0.01%$0.001067240.821$0.2569
BSC<0.01%$0.000083,140.4761$0.2524
BSC<0.01%$0.000278896.8908$0.2489
BSC<0.01%$0.000495497.2987$0.2461
BSC<0.01%$329.990.00072964$0.2407
BSC<0.01%$70,1070.00000342$0.2397
BSC<0.01%$0.00113211.0911$0.2384
BSC<0.01%$0.00500947.1872$0.2363
BSC<0.01%<$0.000001227,973,273.3843$0.2279
BSC<0.01%$0.02056210.8593$0.2232
BSC<0.01%$0.001171187.4956$0.2195
BSC<0.01%$0.00963722.6587$0.2183
BSC<0.01%$0.00000455,979.7197$0.2182
BSC<0.01%$0.00751428.4476$0.2137
BSC<0.01%$0.00869424.3667$0.2118
BSC<0.01%$0.000459459.1682$0.2106
BSC<0.01%$0.00910422.9583$0.209
BSC<0.01%$0.00624833.3703$0.2085
BSC<0.01%<$0.0000018,818,129,584.7323$0.2079
BSC<0.01%$0.00410950.4062$0.2071
BSC<0.01%$0.3135140.6588$0.2065
BSC<0.01%$1.020.2015$0.2055
BSC<0.01%$0.2935270.6812$0.1999
BSC<0.01%$0.0428894.6369$0.1988
BSC<0.01%$0.00907321.8794$0.1985
BSC<0.01%$0.0444494.4525$0.1979
BSC<0.01%$0.00354155.1402$0.1952
BSC<0.01%$0.0000464,185.3291$0.1945
BSC<0.01%$0.000568342.0921$0.1943
BSC<0.01%$0.0000434,473.1578$0.1921
BSC<0.01%<$0.000001930,100.8033$0.1911
BSC<0.01%$0.0240297.9404$0.1907
BSC<0.01%$0.0331825.5797$0.1851
BSC<0.01%$0.0654052.7743$0.1814
BSC<0.01%<$0.000001344,733,082,511.899$0.1798
BSC<0.01%$0.000728244.3358$0.1779
BSC<0.01%$0.000825215.2184$0.1775
BSC<0.01%$5.90.03$0.1768
BSC<0.01%$0.0351755.022$0.1766
BSC<0.01%$0.000361486.7019$0.1757
BSC<0.01%$0.001218143.4969$0.1748
BSC<0.01%$0.000206850.132$0.1747
BSC<0.01%$7.510.0232$0.1741
BSC<0.01%$0.00000533,462.8906$0.1712
BSC<0.01%$0.1945090.8731$0.1698
BSC<0.01%$0.0454153.7053$0.1682
BSC<0.01%$3.630.0463$0.1679
BSC<0.01%<$0.0000014,024,216.1665$0.1677
BSC<0.01%$0.0277736.0039$0.1667
BSC<0.01%$0.00115144.7965$0.1665
BSC<0.01%$0.001035160.3182$0.1659
BSC<0.01%$0.0238386.9412$0.1654
BSC<0.01%$1.10.15$0.165
BSC<0.01%$0.00532329.4295$0.1566
BSC<0.01%$0.036324.2904$0.1558
BSC<0.01%<$0.00000160,758,000,701,607.3$0.154
BSC<0.01%<$0.00000117,583,005.8316$0.1518
BSC<0.01%$0.00241961.095$0.1478
BSC<0.01%$0.0673832.1651$0.1458
BSC<0.01%$0.000364398.9959$0.145
BSC<0.01%$0.000612236.1839$0.1445
BSC<0.01%$0.0026852.9741$0.1419
BSC<0.01%<$0.00000178,241,450.7534$0.1417
BSC<0.01%$0.020916.6108$0.1382
BSC<0.01%$0.0459252.9655$0.1361
BSC<0.01%$0.000669203.2851$0.1359
BSC<0.01%$0.0679641.9912$0.1353
BSC<0.01%<$0.00000112,167,708.2901$0.1333
BSC<0.01%$0.00413232.1007$0.1326
BSC<0.01%$0.000131,016.1538$0.1323
BSC<0.01%$1.160.1123$0.1302
BSC<0.01%$0.2526220.5049$0.1275
BSC<0.01%$0.0219465.7782$0.1268
BSC<0.01%$0.0189976.6533$0.1263
BSC<0.01%$0.1476570.8455$0.1248
BSC<0.01%<$0.0000013,450,181.1843$0.1237
BSC<0.01%$0.0792821.5279$0.1211
BSC<0.01%$0.001052112.3743$0.1182
BSC<0.01%$0.0000138,724.4077$0.1174
BSC<0.01%$0.0957971.2255$0.1173
BSC<0.01%$0.00289639.2909$0.1137
BSC<0.01%$0.0127568.8826$0.1133
BSC<0.01%$0.1317460.8523$0.1122
BSC<0.01%$0.00194155.6181$0.1079
BSC<0.01%$0.0000651,656.5888$0.1077
BSC<0.01%$0.6881450.1566$0.1077
BSC<0.01%$0.0413562.5795$0.1066
BSC<0.01%$0.00124185.6479$0.1062
BSC<0.01%$0.00999710.4585$0.1045
BSC<0.01%$0.0616571.688$0.104
BSC<0.01%<$0.000001397,001,794,263.882$0.1021
BSC<0.01%$0.00046220.907$0.1016
BSC<0.01%$1.360.0747$0.1016
BSC<0.01%$1.340.0751$0.1006
BSC<0.01%$0.00000332,416.1577$0.1004
BASE<0.01%$0.0140613,000$42.18
ETH<0.01%$0.000003625,539.1869$2.15
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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