ETH Price: $2,616.44 (+6.18%)

Contract

0x0AD86842EadEe5b484E31db60716EB6867B46e21
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
201574322024-06-23 22:41:23112 days ago1719182483  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AoriV2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
london EvmVersion, None license
File 1 of 12 : AoriV2.sol
pragma solidity 0.8.17;
import { IERC20 } from "forge-std/interfaces/IERC20.sol";
import { SafeERC20 } from "./libs/SafeERC20.sol";
import { BitMaps } from "./libs/BitMaps.sol";
import { IAoriV2 } from "./interfaces/IAoriV2.sol";
import { IAoriHook } from "./interfaces/IAoriHook.sol";
import { IERC1271 } from "./interfaces/IERC1271.sol";
import { IERC165 } from "./interfaces/IERC165.sol";
import { IFlashLoanReceiver } from "./interfaces/IFlashLoanReceiver.sol";
import { SignatureChecker } from "./libs/SignatureChecker.sol";

/// @title AoriV2
/// @notice An implementation of the settlement contract used for the Aori V2 protocol
/// @dev The current implementation regards a serverSigner that signs off on matching details
///      of which the private key behind this wallet should be protected. If the private key is
///      compromised, no funds can technically be stolen but orders will be matched in a way
///      that is not intended i.e FIFO.
contract AoriV2 is IAoriV2 {
    /*//////////////////////////////////////////////////////////////
                               LIBRARIES
    //////////////////////////////////////////////////////////////*/

    using BitMaps for BitMaps.BitMap;
    using SafeERC20 for IERC20;
    using SignatureChecker for address;

    /*//////////////////////////////////////////////////////////////
                                 STATE
    //////////////////////////////////////////////////////////////*/

    // @notice Orders are stored using buckets of bitmaps to allow
    //         for potential gas optimisations by a bucket's bitmap
    //         having been written to previously. Programmatic
    //         users can also attempt to mine for specific order
    //         hashes to hit a used bucket.
    BitMaps.BitMap private orderStatus;

    // @notice 2D mapping of balances. The primary index is by
    //         owner and the secondary index is by token.
    mapping(address => mapping(address => uint256)) private balances;

    // @notice Counters for each address. A user can cancel orders
    //         by incrementing their counter, similar to how
    //         Seaport does it.
    mapping(address => uint256) private addressCounter;

    // @notice Server signer wallet used to verify matching for
    //         this contract. Again, the key should be protected.
    //         In the case that a key is compromised, no funds
    //         can be stolen but orders may be matched in an
    //         unfair way. A new contract would need to be
    //         deployed with a new deployer.
    address private immutable serverSigner;
    // Taker fee in bips i.e 100 = 1%
    uint8 private takerFeeBips;
    // Fees are paid to this address
    address private takerFeeAddress;

    /*//////////////////////////////////////////////////////////////
                              CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/
    
    constructor(address _serverSigner) {
        serverSigner = _serverSigner;
    }

    /*//////////////////////////////////////////////////////////////
                                 SETTLE
    //////////////////////////////////////////////////////////////*/

    /// @notice Main bulk of the logic for validating and settling orders
    /// @param matching   The matching details of the orders to settle
    /// @param serverSignature  The signature of the server signer
    /// @dev Server signer signature must be signed with the private key of the server signer
    function settleOrders(MatchingDetails calldata matching, bytes calldata serverSignature, bytes calldata hookData, bytes calldata options) external payable {

        /*//////////////////////////////////////////////////////////////
                           SPECIFIC ORDER VALIDATION
        //////////////////////////////////////////////////////////////*/

        // Check start and end times of orders
        require(matching.makerOrder.startTime <= block.timestamp, "Maker order start time is in the future");
        require(matching.takerOrder.startTime <= block.timestamp, "Taker order start time is in the future");
        require(matching.makerOrder.endTime >= block.timestamp, "Maker order end time has already passed");
        require(matching.takerOrder.endTime >= block.timestamp, "Taker order end time has already passed");

        // Check counters (note: we allow orders with a counter greater than or equal to the current counter to be executed immediately)
        require(matching.makerOrder.counter >= addressCounter[matching.makerOrder.offerer], "Counter of maker order is too low");
        require(matching.takerOrder.counter >= addressCounter[matching.takerOrder.offerer], "Counter of taker order is too low");

        // And the chainId is the set chainId for the order such that
        // we can protect against cross-chain signature replay attacks.
        require(matching.makerOrder.inputChainId == matching.takerOrder.outputChainId, "Maker order's input chainid does not match taker order's output chainid");
        require(matching.takerOrder.inputChainId == matching.makerOrder.outputChainId, "Taker order's input chainid does not match maker order's output chainid");

        // Check zone
        require(matching.makerOrder.inputZone == matching.takerOrder.outputZone, "Maker order's input zone does not match taker order's output zone");
        require(matching.takerOrder.inputZone == matching.makerOrder.outputZone, "Taker order's input zone does not match maker order's output zone");

        // Single-chained orders via this contract
        require(matching.makerOrder.inputChainId == block.chainid, "Maker order's input chainid does not match current chainid");
        require(matching.takerOrder.inputChainId == block.chainid, "Taker order's input chainid does not match current chainid");
        require(matching.makerOrder.inputZone == address(this), "Maker order's input zone does not match this contract");
        require(matching.takerOrder.inputZone == address(this), "Taker order's input zone does not match this contract");

        // Compute order hashes of both orders
        bytes32 makerHash = getOrderHash(matching.makerOrder);
        bytes32 takerHash = getOrderHash(matching.takerOrder);

        // Check maker signature
        (uint8 makerV, bytes32 makerR, bytes32 makerS) = signatureIntoComponents(matching.makerSignature);
        require(matching.makerOrder.offerer.isValidSignatureNow(
            keccak256(abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                makerHash
            )),
            abi.encodePacked(makerR, makerS, makerV)),
            "Maker signature does not correspond to order details"
        );

        (uint8 takerV, bytes32 takerR, bytes32 takerS) = signatureIntoComponents(matching.takerSignature);
        require(matching.takerOrder.offerer.isValidSignatureNow(
            keccak256(abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                takerHash
            )),
            abi.encodePacked(takerR, takerS, takerV)),
            "Taker signature does not correspond to order details"
        );

        // Check that tokens are for each other
        require(matching.makerOrder.inputToken == matching.takerOrder.outputToken,
            "Maker order input token is not equal to taker order output token");
        require(matching.makerOrder.outputToken == matching.takerOrder.inputToken,
            "Maker order output token is not equal to taker order input token");

        // Check input/output amounts
        require(matching.takerOrder.outputAmount <= matching.makerOrder.inputAmount,
            "Taker order output amount is more than maker order input amount");
        require(matching.makerOrder.outputAmount <= adjustedWithFee(matching.takerOrder.inputAmount),
            "Maker order output amount is more than taker order input amount");

        // Check order statuses and make sure that they haven't been settled
        require(!BitMaps.get(orderStatus, uint256(makerHash)), "Maker order has been settled");
        require(!BitMaps.get(orderStatus, uint256(takerHash)), "Taker order has been settled");

        /*//////////////////////////////////////////////////////////////
                              MATCHING VALIDATION
        //////////////////////////////////////////////////////////////*/

        // Ensure that block deadline to execute has not passed
        require(
            matching.blockDeadline >= block.number,
            "Order execution deadline has passed"
        );

        (uint8 serverV, bytes32 serverR, bytes32 serverS) = signatureIntoComponents(serverSignature);

        // Ensure that the server has signed off on these matching details
        require(
            serverSigner ==
                ecrecover(
                    keccak256(
                        abi.encodePacked(
                            "\x19Ethereum Signed Message:\n32",
                            getMatchingHash(matching)
                        )
                    ),
                    serverV, serverR, serverS
                ),
            "Server signature does not correspond to order details"
        );

        /*//////////////////////////////////////////////////////////////
                                     SETTLE
        //////////////////////////////////////////////////////////////*/

        // These two lines alone cost 40k gas due to storage in the worst case :sad:
        // This itself is a form of non-reentrancy due to the order status checks above.
        BitMaps.set(orderStatus, uint256(makerHash));
        BitMaps.set(orderStatus, uint256(takerHash));

        // (Taker ==> Maker) processing
        if (balances[matching.takerOrder.offerer][matching.takerOrder.inputToken] >= matching.takerOrder.inputAmount) {
            balances[matching.takerOrder.offerer][matching.takerOrder.inputToken] -= matching.takerOrder.inputAmount;
        } else {
            // Transfer from their own wallet - move taker order assets into here
            IERC20(matching.takerOrder.inputToken).safeTransferFrom(matching.takerOrder.offerer, address(this), matching.takerOrder.inputAmount);
        }

        // If maker would like their output tokens withdrawn to them, they can do so.
        // Enabling the maker to receive the tokens first before we process their side
        // for them to have native flash-loan-like capabilities.
        if (!matching.makerOrder.toWithdraw) {
            // Add balance
            balances[matching.makerOrder.offerer][matching.makerOrder.outputToken] += matching.makerOrder.outputAmount;
        } else {
            IERC20(matching.makerOrder.outputToken).safeTransfer(
                matching.makerOrder.offerer,
                matching.makerOrder.outputAmount
            );
        }

        // Fee calculation
        if (takerFeeBips != 0) {
            // Apply fees
            balances[takerFeeAddress][matching.takerOrder.inputToken] += adjustedTakerFee(matching.takerOrder.inputAmount) * (100 - matching.seatPercentOfFees) / 100;

            if (matching.seatPercentOfFees != 0) {
                balances[matching.seatHolder][matching.takerOrder.inputToken] += adjustedTakerFee(matching.takerOrder.inputAmount) * matching.seatPercentOfFees / 100;
            }
        }
        
        // (Maker ==> Taker) processing
        // Before-Aori-Trade Hook
        if (matching.makerOrder.offerer.code.length > 0 && IERC165(matching.makerOrder.offerer).supportsInterface(IAoriHook.beforeAoriTrade.selector)) {
            (bool success) = IAoriHook(matching.makerOrder.offerer).beforeAoriTrade(matching, hookData);
            require(success, "BeforeAoriTrade hook failed");
        }

        if (balances[matching.makerOrder.offerer][matching.makerOrder.inputToken] >= matching.makerOrder.inputAmount) {
            balances[matching.makerOrder.offerer][matching.makerOrder.inputToken] -= matching.makerOrder.inputAmount;
        } else {
            IERC20(matching.makerOrder.inputToken).safeTransferFrom(matching.makerOrder.offerer, address(this), matching.makerOrder.inputAmount);
        }

        if (!matching.takerOrder.toWithdraw) {
            balances[matching.takerOrder.offerer][matching.takerOrder.outputToken] += matching.takerOrder.outputAmount;
        } else {
            IERC20(matching.takerOrder.outputToken).safeTransfer(
                matching.takerOrder.offerer,
                matching.takerOrder.outputAmount
            );
        }

        // Settler processing
        // Whoever settles the order gets to keep any excess
        if (matching.makerOrder.inputAmount > matching.takerOrder.outputAmount) {
            balances[msg.sender][matching.takerOrder.outputToken] += matching.makerOrder.inputAmount - matching.takerOrder.outputAmount;
        }

        if (adjustedWithoutFee(matching.takerOrder.inputAmount) > matching.makerOrder.outputAmount) {
            balances[msg.sender][matching.makerOrder.outputToken] += adjustedWithoutFee(matching.takerOrder.inputAmount) - matching.makerOrder.outputAmount;
        }

        // After-Aori-Trade Hook
        if (matching.makerOrder.offerer.code.length > 0 && IERC165(matching.makerOrder.offerer).supportsInterface(IAoriHook.afterAoriTrade.selector)) {
            (bool success) = IAoriHook(matching.makerOrder.offerer).afterAoriTrade(matching, hookData);
            require(success, "AfterAoriTrade hook failed");
        }

        // Emit event
        emit OrdersSettled(
            makerHash, // makerHash
            takerHash, // takerHash
            matching.makerOrder.offerer, // maker
            matching.takerOrder.offerer, // taker
            matching.makerOrder.inputChainId, // inputChainId
            matching.makerOrder.outputChainId, // outputChainId
            matching.makerOrder.inputZone, // inputZone
            matching.makerOrder.outputZone, // outputZone
            matching.makerOrder.inputToken, // inputToken
            matching.makerOrder.outputToken, // outputToken
            matching.makerOrder.inputAmount, // inputAmount
            matching.makerOrder.outputAmount, // outputAmount
            getMatchingHash(matching)
        );
    }

    /*//////////////////////////////////////////////////////////////
                                DEPOSIT
    //////////////////////////////////////////////////////////////*/

    /// @notice Deposits tokens to the contract
    /// @param _account The account to deposit to
    /// @param _token The token to deposit
    /// @param _amount The amount to deposit
    function deposit(address _account, address _token, uint256 _amount) external {
        IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount);
        balances[_account][_token] += _amount;
    }

    /*//////////////////////////////////////////////////////////////
                                WITHDRAW
    //////////////////////////////////////////////////////////////*/

    /// @notice Withdraws tokens from the contract
    /// @param _token The token to withdraw
    /// @param _amount The amount to withdraw
    function withdraw(address _token, uint256 _amount) external {
        balances[msg.sender][_token] -= (_amount);
        IERC20(_token).safeTransfer(msg.sender, _amount);
    }

    /*//////////////////////////////////////////////////////////////
                               FLASH LOAN
    //////////////////////////////////////////////////////////////*/

    /// @notice Flash loan tokens
    /// @param recipient The recipient
    /// @param token The token
    /// @param amount The amount
    /// @param userData User data to pass to the recipient
    /// @param receiveToken Whether to receive the token directly or fine to keep in the contract for gas efficiency
    function flashLoan(address recipient, address token, uint256 amount, bytes memory userData, bool receiveToken) external {

        // Flash loan
        if (receiveToken) {
            IERC20(token).safeTransfer(recipient, amount);
        } else {
            balances[recipient][token] += amount;
        }
        
        // call the recipient's receiveFlashLoan
        IFlashLoanReceiver(recipient).receiveFlashLoan(token, amount, userData, receiveToken);

        if (receiveToken) {
            IERC20(token).safeTransferFrom(recipient, address(this), amount);
        } else {
            balances[recipient][token] -= amount;
        }
    }

    /*//////////////////////////////////////////////////////////////
                                 NONCE
    //////////////////////////////////////////////////////////////*/

    /// @notice Increment the counter of the sender. Note that this is
    ///         counter is not exactly a sequence number. It is a
    ///         counter that is incremented to denote
    function incrementCounter() external {
        addressCounter[msg.sender] += 1;
    }

    function getCounter() external view returns (uint256) {
        return addressCounter[msg.sender];
    }

    /*//////////////////////////////////////////////////////////////
                               TAKER FEE
    //////////////////////////////////////////////////////////////*/

    /// @notice Set the taker fee address and bips
    /// @dev Can only be called by the server signer
    function setTakerFee(uint8 _takerFeeBips, address _takerFeeAddress) external {
        require(msg.sender == serverSigner, "Taker fee address must be server signer");
        require(_takerFeeBips <= 100, "Taker fee bips must be less than 1%");
        require(_takerFeeAddress != address(0), "Taker fee address must be non-zero");

        if (takerFeeBips != _takerFeeBips) {
            takerFeeBips = _takerFeeBips;
        }

        if (takerFeeAddress != _takerFeeAddress) {
            takerFeeAddress = _takerFeeAddress;
        }
    }

    function adjustedWithFee(uint256 _amount) internal view returns (uint256 amountWithFee) {
        amountWithFee = _amount * (10000 + takerFeeBips) / 10000;
    }

    function adjustedWithoutFee(uint256 _amountWithFee) internal view returns (uint256 amountWithoutFee) {
        amountWithoutFee = _amountWithFee * 10000 / (10000 + takerFeeBips);
    }

    function adjustedTakerFee(uint256 _amount) internal view returns (uint256 totalTakerFee) {
        totalTakerFee = _amount * takerFeeBips;
    }

    /*//////////////////////////////////////////////////////////////
                             VIEW FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    function hasOrderSettled(bytes32 orderHash) public view returns (bool settled) {
        settled = BitMaps.get(orderStatus, uint256(orderHash));
    }

    function balanceOf(address _account, address _token) public view returns (uint256 balance) {
        balance = balances[_account][_token];
    }

    /*//////////////////////////////////////////////////////////////
                            HELPER FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    function signatureIntoComponents(
        bytes memory signature
    ) public pure returns (
        uint8 v,
        bytes32 r,
        bytes32 s
    ) {
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        if (v < 27) {
            v += 27;
        }
    }

    function getOrderHash(Order memory order) public view returns (bytes32 orderHash) {
        orderHash = keccak256(
            abi.encodePacked(
                order.offerer,
                order.inputToken,
                order.inputAmount,
                order.inputChainId,
                order.inputZone,
                order.outputToken,
                order.outputAmount,
                order.outputChainId,
                order.outputZone,
                order.startTime,
                order.endTime,
                order.salt,
                order.counter,
                order.toWithdraw
            )
        );
    }

    function getMatchingHash(MatchingDetails calldata matching) public view returns (bytes32 matchingHash) {
        matchingHash = keccak256(
            abi.encodePacked(
                matching.makerSignature,
                matching.takerSignature,
                matching.blockDeadline,
                matching.seatNumber,
                matching.seatHolder,
                matching.seatPercentOfFees
            )
        );
    }
}

File 2 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

/// @dev Interface of the ERC20 standard as defined in the EIP.
/// @dev This includes the optional name, symbol, and decimals metadata.
interface IERC20 {
    /// @dev Emitted when `value` tokens are moved from one account (`from`) to another (`to`).
    event Transfer(address indexed from, address indexed to, uint256 value);

    /// @dev Emitted when the allowance of a `spender` for an `owner` is set, where `value`
    /// is the new allowance.
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /// @notice Returns the amount of tokens in existence.
    function totalSupply() external view returns (uint256);

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

    /// @notice Moves `amount` tokens from the caller's account to `to`.
    function transfer(address to, uint256 amount) external returns (bool);

    /// @notice Returns the remaining number of tokens that `spender` is allowed
    /// to spend on behalf of `owner`
    function allowance(address owner, address spender) external view returns (uint256);

    /// @notice Sets `amount` as the allowance of `spender` over the caller's tokens.
    /// @dev Be aware of front-running risks: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    function approve(address spender, uint256 amount) external returns (bool);

    /// @notice Moves `amount` tokens from `from` to `to` using the allowance mechanism.
    /// `amount` is then deducted from the caller's allowance.
    function transferFrom(address from, address to, uint256 amount) external returns (bool);

    /// @notice Returns the name of the token.
    function name() external view returns (string memory);

    /// @notice Returns the symbol of the token.
    function symbol() external view returns (string memory);

    /// @notice Returns the decimals places of the token.
    function decimals() external view returns (uint8);
}

File 3 of 12 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
import { IERC20 } from "forge-std/interfaces/IERC20.sol";
import { Address } from "./Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 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;

    /**
     * @dev An operation with an ERC-20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @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);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 4 of 12 : BitMaps.sol
pragma solidity 0.8.17;

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, provided the keys are sequential.
 * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 *
 * BitMaps pack 256 booleans across each bit of a single 256-bit slot of `uint256` type.
 * Hence booleans corresponding to 256 _sequential_ indices would only consume a single slot,
 * unlike the regular `bool` which would consume an entire slot for a single value.
 *
 * This results in gas savings in two ways:
 *
 * - Setting a zero value to non-zero only once every 256 times
 * - Accessing the same warm slot for every 256 _sequential_ indices
 */
library BitMaps {
    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(BitMap storage bitmap, uint256 index, bool value) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }
}

File 5 of 12 : IAoriV2.sol
pragma solidity 0.8.17;

interface IAoriV2 {

    /*//////////////////////////////////////////////////////////////
                                STRUCTS
    //////////////////////////////////////////////////////////////*/

    struct Order {
        address offerer;
        address inputToken;
        uint256 inputAmount;
        uint256 inputChainId;
        address inputZone;
        address outputToken;
        uint256 outputAmount;
        uint256 outputChainId;
        address outputZone;
        uint256 startTime;
        uint256 endTime;
        uint256 salt;
        uint256 counter;
        bool toWithdraw;
    }

    struct MatchingDetails {
        Order makerOrder;
        Order takerOrder;

        bytes makerSignature;
        bytes takerSignature;
        uint256 blockDeadline;

        // Seat details
        uint256 seatNumber;
        address seatHolder;
        uint256 seatPercentOfFees;
    }

    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event OrdersSettled(
        bytes32 indexed makerHash,
        bytes32 indexed takerHash,
        address maker,
        address taker,
        uint256 inputChainId,
        uint256 outputChainId,
        address inputZone,
        address outputZone,
        address inputToken,
        address outputToken,
        uint256 inputAmount,
        uint256 outputAmount,
        bytes32 matchingHash
    );

    /*//////////////////////////////////////////////////////////////
                                 SETTLE
    //////////////////////////////////////////////////////////////*/

    function settleOrders(MatchingDetails calldata matching, bytes calldata serverSignature, bytes calldata hookData, bytes calldata options) external payable;

    /*//////////////////////////////////////////////////////////////
                                DEPOSIT
    //////////////////////////////////////////////////////////////*/

    function deposit(address _account, address _token, uint256 _amount) external;

    /*//////////////////////////////////////////////////////////////
                                WITHDRAW
    //////////////////////////////////////////////////////////////*/

    function withdraw(address _token, uint256 _amount) external;

    /*//////////////////////////////////////////////////////////////
                               FLASHLOAN
    //////////////////////////////////////////////////////////////*/

    function flashLoan(address recipient, address token, uint256 amount, bytes memory userData, bool receiveToken) external;

    /*//////////////////////////////////////////////////////////////
                                 COUNTER
    //////////////////////////////////////////////////////////////*/

    function incrementCounter() external;
    function getCounter() external view returns (uint256);

    /*//////////////////////////////////////////////////////////////
                               TAKER FEE
    //////////////////////////////////////////////////////////////*/

    function setTakerFee(uint8 _takerFeeBips, address _takerFeeAddress) external;

    /*//////////////////////////////////////////////////////////////
                             VIEW FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    function hasOrderSettled(bytes32 orderHash) external view returns (bool settled);
    function balanceOf(address _account, address _token) external view returns (uint256 balance);

    /*//////////////////////////////////////////////////////////////
                            HELPER FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    function signatureIntoComponents(
        bytes memory signature
    ) external pure returns (
        uint8 v,
        bytes32 r,
        bytes32 s
    );
    function getOrderHash(Order memory order) external view returns (bytes32 orderHash);
    function getMatchingHash(MatchingDetails calldata matching) external view returns (bytes32 matchingHash);
}

File 6 of 12 : IAoriHook.sol
pragma solidity 0.8.17;

import "./IAoriV2.sol";

interface IAoriHook {
    function beforeAoriTrade(IAoriV2.MatchingDetails calldata matching, bytes calldata hookData) external returns (bool);
    function afterAoriTrade(IAoriV2.MatchingDetails calldata matching, bytes calldata hookData) external returns (bool);
}

File 7 of 12 : IERC1271.sol
pragma solidity 0.8.17;

interface IERC1271 {
  // bytes4(keccak256("isValidSignature(bytes32,bytes)")
  // bytes4 constant internal MAGICVALUE = 0x1626ba7e;

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

File 8 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity 0.8.17;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * 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[ERC 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 9 of 12 : IFlashLoanReceiver.sol
pragma solidity 0.8.17;

interface IFlashLoanReceiver {
    function receiveFlashLoan(
        address token,
        uint256 amount,
        bytes calldata data,
        bool receiveToken
    ) external;
}

File 10 of 12 : SignatureChecker.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/SignatureChecker.sol)

pragma solidity 0.8.17;

import {ECDSA} from "./ECDSA.sol";
import {IERC1271} from "../interfaces/IERC1271.sol";

/**
 * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA
 * signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like
 * Argent and Safe Wallet (previously Gnosis Safe).
 */
library SignatureChecker {
    /**
     * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the
     * signature is validated against that smart contract using ERC-1271, otherwise it's validated using `ECDSA.recover`.
     *
     * NOTE: Unlike ECDSA signatures, contract signatures 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).
     */
    function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {
        (address recovered, ECDSA.RecoverError error, ) = ECDSA.tryRecover(hash, signature);
        return
            (error == ECDSA.RecoverError.NoError && recovered == signer) ||
            isValidERC1271SignatureNow(signer, hash, signature);
    }

    /**
     * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated
     * against the signer smart contract using ERC-1271.
     *
     * NOTE: Unlike ECDSA signatures, contract signatures 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).
     */
    function isValidERC1271SignatureNow(
        address signer,
        bytes32 hash,
        bytes memory signature
    ) internal view returns (bool) {
        (bool success, bytes memory result) = signer.staticcall(
            abi.encodeCall(IERC1271.isValidSignature, (hash, signature))
        );
        return (success &&
            result.length >= 32 &&
            abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));
    }
}

File 11 of 12 : Address.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 12 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)

pragma solidity 0.8.17;

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

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-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]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        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.
            /// @solidity memory-safe-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 {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        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[ERC-2098 short signatures]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

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

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // 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, s);
        }

        // 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, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @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, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

Settings
{
  "remappings": [
    "LayerZero-v2/=lib/LayerZero-v2/",
    "create3-factory/=lib/create3-factory/",
    "ds-test/=lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "solmate/=lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "viaIR": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_serverSigner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"makerHash","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"takerHash","type":"bytes32"},{"indexed":false,"internalType":"address","name":"maker","type":"address"},{"indexed":false,"internalType":"address","name":"taker","type":"address"},{"indexed":false,"internalType":"uint256","name":"inputChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outputChainId","type":"uint256"},{"indexed":false,"internalType":"address","name":"inputZone","type":"address"},{"indexed":false,"internalType":"address","name":"outputZone","type":"address"},{"indexed":false,"internalType":"address","name":"inputToken","type":"address"},{"indexed":false,"internalType":"address","name":"outputToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"inputAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outputAmount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"matchingHash","type":"bytes32"}],"name":"OrdersSettled","type":"event"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bool","name":"receiveToken","type":"bool"}],"name":"flashLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"address","name":"offerer","type":"address"},{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"inputChainId","type":"uint256"},{"internalType":"address","name":"inputZone","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"outputChainId","type":"uint256"},{"internalType":"address","name":"outputZone","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"uint256","name":"counter","type":"uint256"},{"internalType":"bool","name":"toWithdraw","type":"bool"}],"internalType":"struct IAoriV2.Order","name":"makerOrder","type":"tuple"},{"components":[{"internalType":"address","name":"offerer","type":"address"},{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"inputChainId","type":"uint256"},{"internalType":"address","name":"inputZone","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"outputChainId","type":"uint256"},{"internalType":"address","name":"outputZone","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"uint256","name":"counter","type":"uint256"},{"internalType":"bool","name":"toWithdraw","type":"bool"}],"internalType":"struct IAoriV2.Order","name":"takerOrder","type":"tuple"},{"internalType":"bytes","name":"makerSignature","type":"bytes"},{"internalType":"bytes","name":"takerSignature","type":"bytes"},{"internalType":"uint256","name":"blockDeadline","type":"uint256"},{"internalType":"uint256","name":"seatNumber","type":"uint256"},{"internalType":"address","name":"seatHolder","type":"address"},{"internalType":"uint256","name":"seatPercentOfFees","type":"uint256"}],"internalType":"struct IAoriV2.MatchingDetails","name":"matching","type":"tuple"}],"name":"getMatchingHash","outputs":[{"internalType":"bytes32","name":"matchingHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"offerer","type":"address"},{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"inputChainId","type":"uint256"},{"internalType":"address","name":"inputZone","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"outputChainId","type":"uint256"},{"internalType":"address","name":"outputZone","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"uint256","name":"counter","type":"uint256"},{"internalType":"bool","name":"toWithdraw","type":"bool"}],"internalType":"struct IAoriV2.Order","name":"order","type":"tuple"}],"name":"getOrderHash","outputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"hasOrderSettled","outputs":[{"internalType":"bool","name":"settled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incrementCounter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_takerFeeBips","type":"uint8"},{"internalType":"address","name":"_takerFeeAddress","type":"address"}],"name":"setTakerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"address","name":"offerer","type":"address"},{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"inputChainId","type":"uint256"},{"internalType":"address","name":"inputZone","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"outputChainId","type":"uint256"},{"internalType":"address","name":"outputZone","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"uint256","name":"counter","type":"uint256"},{"internalType":"bool","name":"toWithdraw","type":"bool"}],"internalType":"struct IAoriV2.Order","name":"makerOrder","type":"tuple"},{"components":[{"internalType":"address","name":"offerer","type":"address"},{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"inputChainId","type":"uint256"},{"internalType":"address","name":"inputZone","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"outputChainId","type":"uint256"},{"internalType":"address","name":"outputZone","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"uint256","name":"counter","type":"uint256"},{"internalType":"bool","name":"toWithdraw","type":"bool"}],"internalType":"struct IAoriV2.Order","name":"takerOrder","type":"tuple"},{"internalType":"bytes","name":"makerSignature","type":"bytes"},{"internalType":"bytes","name":"takerSignature","type":"bytes"},{"internalType":"uint256","name":"blockDeadline","type":"uint256"},{"internalType":"uint256","name":"seatNumber","type":"uint256"},{"internalType":"address","name":"seatHolder","type":"address"},{"internalType":"uint256","name":"seatPercentOfFees","type":"uint256"}],"internalType":"struct IAoriV2.MatchingDetails","name":"matching","type":"tuple"},{"internalType":"bytes","name":"serverSignature","type":"bytes"},{"internalType":"bytes","name":"hookData","type":"bytes"},{"internalType":"bytes","name":"options","type":"bytes"}],"name":"settleOrders","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"signatureIntoComponents","outputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0346200007757601f6200397738819003918201601f19168301916001600160401b038311848410176200007c578084926020946040528339810103126200007757516001600160a01b038116810362000077576080526040516138e490816200009382396080518181816102b60152610f690152f35b600080fd5b634e487b7160e01b600052604160045260246000fdfe60806040526004361015610013575b600080fd5b60003560e01c80635b34b9661461010357806360e40739146100fa5780637735767b146100f15780637a54ff25146100e85780638340f549146100df5780638ada066e146100d6578063b4ec369f146100cd578063bbae0a88146100c4578063f3fef3a3146100bb578063f7888aec146100b2578063ff5a57be146100a95763ff628b46146100a157600080fd5b61000e611add565b5061000e611a06565b5061000e611877565b5061000e6117c4565b5061000e6107b6565b5061000e610718565b5061000e61057e565b5061000e6104be565b5061000e61045d565b5061000e610253565b5061000e610184565b5061000e610117565b600091031261000e57565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101725733815260026020526040812080549060018201809211610166575580f35b61016e612a85565b5580f35b80fd5b908161044091031261000e5790565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043567ffffffffffffffff811161000e576101de6101d96020923690600401610175565b613368565b604051908152f35b73ffffffffffffffffffffffffffffffffffffffff81160361000e57565b60043590610211826101e6565b565b60243590610211826101e6565b60843590610211826101e6565b60a43590610211826101e6565b6101043590610211826101e6565b3590610211826101e6565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043560ff811680820361000e576024359161029e836101e6565b73ffffffffffffffffffffffffffffffffffffffff807f00000000000000000000000000000000000000000000000000000000000000001633036103d9576102e96064841115612f40565b8316916102f7831515612fcb565b61030c61030660035460ff1690565b60ff1690565b036103a1575b5060035461034d9060081c73ffffffffffffffffffffffffffffffffffffffff165b73ffffffffffffffffffffffffffffffffffffffff1690565b0361035457005b61039f907fffffffffffffffffffffff0000000000000000000000000000000000000000ff74ffffffffffffffffffffffffffffffffffffffff006003549260081b16911617600355565b005b6103d39060ff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006003541617600355565b38610312565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f54616b6572206665652061646472657373206d7573742062652073657276657260448201527f207369676e6572000000000000000000000000000000000000000000000000006064820152fd5b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206104b460043560ff6001918060081c6000526000602052161b60406000205416151590565b6040519015158152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004356104fa816101e6565b610564602435610509816101e6565b6044359273ffffffffffffffffffffffffffffffffffffffff90610531853033858716613498565b16600052600160205260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b80549182018092116105735755005b61057b612a85565b55005b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e573360005260026020526020604060002054604051908152f35b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b67ffffffffffffffff811161060b57604052565b6106136105c7565b604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761060b57604052565b604051906101c0820182811067ffffffffffffffff82111761060b57604052565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209267ffffffffffffffff81116106b6575b01160190565b6106be6105c7565b6106b0565b9291926106cf8261067a565b916106dd6040519384610618565b82948184528183011161000e578281602093846000960137010152565b9080601f8301121561000e57816020610715933591016106c3565b90565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043567ffffffffffffffff811161000e5761077261076d60609236906004016106fa565b6130d8565b9060ff6040519316835260208301526040820152f35b9181601f8401121561000e5782359167ffffffffffffffff831161000e576020838186019501011161000e57565b5060807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5767ffffffffffffffff60043581811161000e57610802903690600401610175565b60243582811161000e5761081a903690600401610788565b92909160443582811161000e57610835903690600401610788565b9260643590811161000e5761084e903690600401610788565b505042610120830135111561086290611cc9565b610873426102e08401351115611d54565b610884426101408401351015611ddf565b610895426103008401351015611e6a565b61089e82611ef5565b6108c89073ffffffffffffffffffffffffffffffffffffffff166000526002602052604060002090565b5461018083013510156108da90611eff565b6108e76101c08301611ef5565b6109119073ffffffffffffffffffffffffffffffffffffffff166000526002602052604060002090565b54610340830135101561092390611f8a565b61093760608301356102a084013514612015565b61022082013561094c60e084013582146120c6565b61095860808401611ef5565b6109656102c08501611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661099b9173ffffffffffffffffffffffffffffffffffffffff1614612177565b6102408301906109aa82611ef5565b6109b76101008601611ef5565b73ffffffffffffffffffffffffffffffffffffffff166109ed9173ffffffffffffffffffffffffffffffffffffffff1614612228565b6109fc606085013546146122d9565b4614610a0790612364565b610a1360808401611ef5565b610a349073ffffffffffffffffffffffffffffffffffffffff1630146123ef565b3090610a3f90611ef5565b73ffffffffffffffffffffffffffffffffffffffff1614610a5f9061247a565b610a693683611938565b610a729061324b565b93610a81366101c08501611938565b610a8a9061324b565b95610a99610380850185612505565b3690610aa4926106c3565b610aad906130d8565b9190610ab887611ef5565b92604051602081019080610af68d84603c917f19457468657265756d205369676e6564204d6573736167653a0a3332000000008252601c8201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610b269082610618565b519020916040519384926020840192610b749391926041937fff00000000000000000000000000000000000000000000000000000000000000928452602084015260f81b1660408201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352610ba49083610618565b610bad92613678565b610bb690612556565b610bc46103a0850185612505565b3690610bcf926106c3565b610bd8906130d8565b9190610be76101c08801611ef5565b928a604051806020810192610c269084603c917f19457468657265756d205369676e6564204d6573736167653a0a3332000000008252601c8201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610c569082610618565b519020916040519384926020840192610ca49391926041937fff00000000000000000000000000000000000000000000000000000000000000928452602084015260f81b1660408201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352610cd49083610618565b610cdd92613678565b610ce6906125e1565b610cf260208501611ef5565b610cff6102608601611ef5565b73ffffffffffffffffffffffffffffffffffffffff16610d359173ffffffffffffffffffffffffffffffffffffffff161461266c565b610d4160a08501611ef5565b610d4e6101e08601611ef5565b73ffffffffffffffffffffffffffffffffffffffff16610d849173ffffffffffffffffffffffffffffffffffffffff16146126f7565b610d9960408501356102808601351115612782565b60035460ff16610da890613056565b610dbb9061ffff16610200860135612aef565b612710900460c08501351115610dd09061280d565b610df38660ff6001918060081c6000526000602052161b60406000205416151590565b15610dfd90612898565b610e208760ff6001918060081c6000526000602052161b60406000205416151590565b15610e2a906128fd565b610e3b436103c08601351015612962565b3690610e46926106c3565b610e4f906130d8565b610e5b85939293613368565b604051806020810192610e989084603c917f19457468657265756d205369676e6564204d6573736167653a0a3332000000008252601c8201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610ec89082610618565b51902090604051938493610ef693859094939260ff6060936080840197845216602083015260408201520152565b6000805203905a916000916001602094fa15927ff30b65a779a29cc815cb617d63408c34535b21180637efffed4b0325c954dcb5936117b7575b610f8f610f5260005173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146129fa565b610fb2858060081c6000526000602052600160ff604060002092161b8154179055565b610fd5868060081c6000526000602052600160ff604060002092161b8154179055565b61100b610fe56101c08501611ef5565b73ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b611046610200850135916110226101e08701611ef5565b73ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54106117895761106c61105f610fe56101c08601611ef5565b6110226101e08601611ef5565b61107c6102008501358254612acb565b90555b61109361108f6101a08501612ad8565b1590565b15611763576110b36110a7610fe585611ef5565b61102260a08601611ef5565b6110c260c08501358254612ae2565b90555b60035460ff811680611681575b50506110dd83611ef5565b3b1515806115ce575b611534575b6110f7610fe584611ef5565b61110c60408501359161102260208701611ef5565b54106115065761112d611121610fe585611ef5565b61102260208601611ef5565b61113c60408501358254612acb565b90555b61114f61108f6103608501612ad8565b156114d457611174611167610fe56101c08601611ef5565b6110226102608601611ef5565b6111846102808501358254612ae2565b90555b61028083013560408401351161147d575b60c08301356111ab61020085013561306a565b11611417575b6111ba83611ef5565b3b151580611364575b6112b5575b50506111d381611ef5565b906112b06111e46101c08301611ef5565b6111f060808401611ef5565b936111fe6101008501611ef5565b9161120b60208601611ef5565b61121760a08701611ef5565b9061122187613368565b94604051988860c08b9a013596604082013596606060e0840135930135918c9793956020939c9b9a97929189966101409b9861016089019f73ffffffffffffffffffffffffffffffffffffffff998a988980988180981684521691015260408d015260608c01521660808a01521660a08801521660c08601521660e08401526101008301526101208201520152565b0390a3005b602061130791611321936112ce61033461033488611ef5565b9060006040518096819582947fa9cfc2400000000000000000000000000000000000000000000000000000000084528b60048501612cec565b03925af1908115611357575b600091611328575b50612e3c565b38806111c8565b61134a915060203d602011611350575b6113428183610618565b810190612b02565b3861131b565b503d611338565b61135f6129ed565b611313565b5061137461033461033485611ef5565b602060405180927f01ffc9a700000000000000000000000000000000000000000000000000000000825281806113d160048201907fa9cfc24000000000000000000000000000000000000000000000000000000000602083019252565b03915afa90811561140a575b6000916113eb575b506111c3565b611404915060203d602011611350576113428183610618565b386113e5565b6114126129ed565b6113dd565b61143260c084013561142d61020086013561306a565b612acb565b61147661146e6114623373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b61102260a08801611ef5565b918254612ae2565b90556111b1565b6114906102808401356040850135612acb565b6114cd61146e6114c03373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6110226102608801611ef5565b9055611198565b6115016114e76103346102608601611ef5565b610280850135906114fb6101c08701611ef5565b90613419565b611187565b61152f61151861033460208601611ef5565b604085013590309061152987611ef5565b90613498565b61113f565b61159d61154661033461033486611ef5565b602060405180927f7ad28a5900000000000000000000000000000000000000000000000000000000825281600081611583898b8d60048501612cec565b03925af19081156115c1575b6000916115a2575b50612dd7565b6110eb565b6115bb915060203d602011611350576113428183610618565b38611597565b6115c96129ed565b61158f565b506115de61033461033485611ef5565b602060405180927f01ffc9a7000000000000000000000000000000000000000000000000000000008252818061163b60048201907f7ad28a5900000000000000000000000000000000000000000000000000000000602083019252565b03915afa908115611674575b600091611655575b506110e6565b61166e915060203d602011611350576113428183610618565b3861164f565b61167c6129ed565b611647565b61169090610200860135612aef565b9061170a61146e6116fd73ffffffffffffffffffffffffffffffffffffffff6116d26116cb6104208b0135976116c589612ab5565b90612aef565b6064900490565b9460081c1673ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6110226101e08901611ef5565b905580611718575b806110d2565b6116cb6117389161173360ff60035416610200880135612aef565b612aef565b61175b61146e61174e610fe56104008801611ef5565b6110226101e08801611ef5565b905538611712565b61178461177561033460a08601611ef5565b60c0850135906114fb86611ef5565b6110c5565b6117b261179c6103346101e08601611ef5565b6102008501359030906115296101c08801611ef5565b61107f565b6117bf6129ed565b610f30565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761039f600435611803816101e6565b6024359033600052600160205261183e8160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b80549083820391821161186a575b5573ffffffffffffffffffffffffffffffffffffffff339116613419565b611872612a85565b61184c565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602061190c6004356118b8816101e6565b73ffffffffffffffffffffffffffffffffffffffff602435916118da836101e6565b166000526001835260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54604051908152f35b8015150361000e57565b6101a4359061021182611915565b359061021182611915565b9190826101c091031261000e5761194d610659565b9161195781610248565b835261196560208201610248565b6020840152604081013560408401526060810135606084015261198a60808201610248565b608084015261199b60a08201610248565b60a084015260c081013560c084015260e081013560e08401526101006119c2818301610248565b908401526101208082013590840152610140808201359084015261016080820135908401526101808082013590840152611a006101a080920161192d565b90830152565b503461000e576101c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206101de611a44610659565b611a4c610204565b8152611a56610213565b8382015260443560408201526064356060820152611a72610220565b6080820152611a7f61022d565b60a082015260c43560c082015260e43560e0820152611a9c61023a565b61010082015261012435610120820152610144356101408201526101643561016082015261018435610180820152611ad261191f565b6101a082015261324b565b503461000e5760a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57600435611b19816101e6565b602435611b25816101e6565b6044359060643567ffffffffffffffff811161000e57611b499036906004016106fa565b608435611b5581611915565b8015611c8957611b7c848673ffffffffffffffffffffffffffffffffffffffff8616613419565b73ffffffffffffffffffffffffffffffffffffffff91828616803b1561000e5782600091611bdc93836040518096819582947fe84afff60000000000000000000000000000000000000000000000000000000084528d8d60048601612eff565b03925af18015611c7c575b611c63575b5015611bff579261039f93309216613498565b50611c5790611c32611c5f939473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b918254612acb565b9055005b80611c70611c76926105f7565b8061010c565b38611bec565b611c846129ed565b611be7565b611cb783611c328773ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b611cc2858254612ae2565b9055611b7c565b15611cd057565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d616b6572206f726465722073746172742074696d6520697320696e2074686560448201527f20667574757265000000000000000000000000000000000000000000000000006064820152fd5b15611d5b57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f54616b6572206f726465722073746172742074696d6520697320696e2074686560448201527f20667574757265000000000000000000000000000000000000000000000000006064820152fd5b15611de657565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d616b6572206f7264657220656e642074696d652068617320616c726561647960448201527f20706173736564000000000000000000000000000000000000000000000000006064820152fd5b15611e7157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f54616b6572206f7264657220656e642074696d652068617320616c726561647960448201527f20706173736564000000000000000000000000000000000000000000000000006064820152fd5b35610715816101e6565b15611f0657565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f436f756e746572206f66206d616b6572206f7264657220697320746f6f206c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152fd5b15611f9157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f436f756e746572206f662074616b6572206f7264657220697320746f6f206c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152fd5b1561201c57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f4d616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d617463682074616b6572206f726465722773206f75747075742060648201527f636861696e6964000000000000000000000000000000000000000000000000006084820152fd5b156120cd57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f54616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d61746368206d616b6572206f726465722773206f75747075742060648201527f636861696e6964000000000000000000000000000000000000000000000000006084820152fd5b1561217e57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f4d616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d617463682074616b6572206f726465722773206f7574707574207a6f6e60648201527f65000000000000000000000000000000000000000000000000000000000000006084820152fd5b1561222f57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f54616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d61746368206d616b6572206f726465722773206f7574707574207a6f6e60648201527f65000000000000000000000000000000000000000000000000000000000000006084820152fd5b156122e057565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f4d616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d617463682063757272656e7420636861696e69640000000000006064820152fd5b1561236b57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f54616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d617463682063757272656e7420636861696e69640000000000006064820152fd5b156123f657565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f4d616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d61746368207468697320636f6e747261637400000000000000000000006064820152fd5b1561248157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f54616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d61746368207468697320636f6e747261637400000000000000000000006064820152fd5b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18136030182121561000e570180359067ffffffffffffffff821161000e5760200191813603831361000e57565b1561255d57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4d616b6572207369676e617475726520646f6573206e6f7420636f727265737060448201527f6f6e6420746f206f726465722064657461696c730000000000000000000000006064820152fd5b156125e857565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f54616b6572207369676e617475726520646f6573206e6f7420636f727265737060448201527f6f6e6420746f206f726465722064657461696c730000000000000000000000006064820152fd5b1561267357565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604060248201527f4d616b6572206f7264657220696e70757420746f6b656e206973206e6f74206560448201527f7175616c20746f2074616b6572206f72646572206f757470757420746f6b656e6064820152fd5b156126fe57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604060248201527f4d616b6572206f72646572206f757470757420746f6b656e206973206e6f742060448201527f657175616c20746f2074616b6572206f7264657220696e70757420746f6b656e6064820152fd5b1561278957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f54616b6572206f72646572206f757470757420616d6f756e74206973206d6f7260448201527f65207468616e206d616b6572206f7264657220696e70757420616d6f756e74006064820152fd5b1561281457565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d616b6572206f72646572206f757470757420616d6f756e74206973206d6f7260448201527f65207468616e2074616b6572206f7264657220696e70757420616d6f756e74006064820152fd5b1561289f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4d616b6572206f7264657220686173206265656e20736574746c6564000000006044820152fd5b1561290457565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f54616b6572206f7264657220686173206265656e20736574746c6564000000006044820152fd5b1561296957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4f7264657220657865637574696f6e20646561646c696e65206861732070617360448201527f73656400000000000000000000000000000000000000000000000000000000006064820152fd5b506040513d6000823e3d90fd5b15612a0157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f536572766572207369676e617475726520646f6573206e6f7420636f7272657360448201527f706f6e6420746f206f726465722064657461696c7300000000000000000000006064820152fd5b507f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6064039060648211612ac357565b610211612a85565b91908203918211612ac357565b3561071581611915565b91908201809211612ac357565b81810292918115918404141715612ac357565b9081602091031261000e575161071581611915565b9061021191612b4382612b2983610248565b73ffffffffffffffffffffffffffffffffffffffff169052565b612b6f612b5260208301610248565b73ffffffffffffffffffffffffffffffffffffffff166020840152565b6040810135604083015260608101356060830152612baf612b9260808301610248565b73ffffffffffffffffffffffffffffffffffffffff166080840152565b612bdb612bbe60a08301610248565b73ffffffffffffffffffffffffffffffffffffffff1660a0840152565b60c081013560c083015260e081013560e0830152612c1c610100612c00818401610248565b73ffffffffffffffffffffffffffffffffffffffff1690840152565b6101208082013590830152610140808201359083015261016080820135908301526101808082013590830152612c566101a080920161192d565b1515910152565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18236030181121561000e57016020813591019167ffffffffffffffff821161000e57813603831361000e57565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0938186528686013760008582860101520116010190565b9161071593919260408152612d046040820185612b17565b612d1661020082016101c08601612b17565b612d24610380850185612c5d565b94612d40610440926103c0978489870152610480860191612cad565b9173ffffffffffffffffffffffffffffffffffffffff612d9a612d676103a0850185612c5d565b6103e096917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc089840301888a0152612cad565b9761040090840135818701526104209484013585870152830135612dbd816101e6565b169084015201356104608201526020818503910152612cad565b15612dde57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4265666f7265416f7269547261646520686f6f6b206661696c656400000000006044820152fd5b15612e4357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4166746572416f7269547261646520686f6f6b206661696c65640000000000006044820152fd5b919082519283825260005b848110612eeb5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006020809697860101520116010190565b602081830181015184830182015201612eac565b9260609273ffffffffffffffffffffffffffffffffffffffff612f38939796971685526020850152608060408501526080840190612ea1565b931515910152565b15612f4757565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f54616b6572206665652062697073206d757374206265206c657373207468616e60448201527f20312500000000000000000000000000000000000000000000000000000000006064820152fd5b15612fd257565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f54616b6572206665652061646472657373206d757374206265206e6f6e2d7a6560448201527f726f0000000000000000000000000000000000000000000000000000000000006064820152fd5b9061ffff80921661271001918211612ac357565b612710908181029181830414901517156130cb575b61ffff61309060ff60035416613056565b1690811561309c570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6130d3612a85565b61307f565b6020810151906060604082015191015160001a92601b84106130f657565b92601b0160ff81116131055792565b61310d612a85565b92565b9c9996926132479c99956101659f9c99958f6068916131c19461318b6131ed987fffffffffffffffffffffffffffffffffffffffff0000000000000000000000006132239e9960601b16855260148501907fffffffffffffffffffffffffffffffffffffffff0000000000000000000000009060601b169052565b6028830152604882015201907fffffffffffffffffffffffffffffffffffffffff0000000000000000000000009060601b169052565b60601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016607c8d0152565b60908b015260b08a015260601b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660d0890152565b60e4870152610104860152610124850152610144840152151560f81b610164830152565b0190565b805173ffffffffffffffffffffffffffffffffffffffff16602082015173ffffffffffffffffffffffffffffffffffffffff169060408301519260608101519060808101516132ad9073ffffffffffffffffffffffffffffffffffffffff1690565b60a082015173ffffffffffffffffffffffffffffffffffffffff1660c083015160e084015161010085015173ffffffffffffffffffffffffffffffffffffffff1690610120860151926101408701519461016088015196610180890151986101a0015161331990151590565b996040519d8e9d60208f019d61332e9e613110565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101825261335e9082610618565b8051906020012090565b610420613413609461337e610380850185612505565b909461338e6103a0820182612505565b9590917fffffffffffffffffffffffffffffffffffffffff00000000000000000000000087610400830135946133c3866101e6565b60405199878b9860208a019d8e3788019160208301600081523701936103c083013560208601526103e0830135604086015260601b16606084015201356074820152036074810184520182610618565b51902090565b6102119273ffffffffffffffffffffffffffffffffffffffff604051937fa9059cbb0000000000000000000000000000000000000000000000000000000060208601521660248401526044830152604482526080820182811067ffffffffffffffff82111761348b575b60405261350f565b6134936105c7565b613483565b909261021193604051937f23b872dd00000000000000000000000000000000000000000000000000000000602086015273ffffffffffffffffffffffffffffffffffffffff809216602486015216604484015260648301526064825260a0820182811067ffffffffffffffff82111761348b576040525b60008073ffffffffffffffffffffffffffffffffffffffff61354693169360208151910182865af161353f6135a8565b90836135d8565b805190811515918261358d575b505061355c5750565b602490604051907f5274afe70000000000000000000000000000000000000000000000000000000082526004820152fd5b6135a09250602080918301019101612b02565b153880613553565b3d156135d3573d906135b98261067a565b916135c76040519384610618565b82523d6000602084013e565b606090565b9061361757508051156135ed57805190602001fd5b60046040517f1425ea42000000000000000000000000000000000000000000000000000000008152fd5b8151158061366f575b613628575090565b60249073ffffffffffffffffffffffffffffffffffffffff604051917f9996b315000000000000000000000000000000000000000000000000000000008352166004820152fd5b50803b15613620565b61368283836137c2565b50600481959295101561379357159384613770575b5083156136a5575b50505090565b6000929350908291604051613723816136f760208201947f1626ba7e00000000000000000000000000000000000000000000000000000000998a87526024840152604060448401526064830190612ea1565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610618565b51915afa906137306135a8565b82613762575b82613746575b505038808061369f565b90915060208180518101031261000e576020015114388061373c565b915060208251101591613736565b73ffffffffffffffffffffffffffffffffffffffff838116911614935038613697565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81519190604183036137f3576137ec92506020820151906060604084015193015160001a906137fe565b9192909190565b505060009160029190565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116138a257916138549160209360405195869094939260ff6060936080840197845216602083015260408201520152565b826000938492838052039060015afa15613895575b805173ffffffffffffffffffffffffffffffffffffffff81161561388c57918190565b50809160019190565b61389d6129ed565b613869565b5060009360039350905056fea26469706673582212202d76749f084d4359f5b0f3ef0702c7e3c06de98a0aa72d6f27d74805773add2564736f6c63430008110033000000000000000000000000b1a2f2a4c79c7c7ba1ac161ad0bdecf11350daa7

Deployed Bytecode

0x60806040526004361015610013575b600080fd5b60003560e01c80635b34b9661461010357806360e40739146100fa5780637735767b146100f15780637a54ff25146100e85780638340f549146100df5780638ada066e146100d6578063b4ec369f146100cd578063bbae0a88146100c4578063f3fef3a3146100bb578063f7888aec146100b2578063ff5a57be146100a95763ff628b46146100a157600080fd5b61000e611add565b5061000e611a06565b5061000e611877565b5061000e6117c4565b5061000e6107b6565b5061000e610718565b5061000e61057e565b5061000e6104be565b5061000e61045d565b5061000e610253565b5061000e610184565b5061000e610117565b600091031261000e57565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101725733815260026020526040812080549060018201809211610166575580f35b61016e612a85565b5580f35b80fd5b908161044091031261000e5790565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043567ffffffffffffffff811161000e576101de6101d96020923690600401610175565b613368565b604051908152f35b73ffffffffffffffffffffffffffffffffffffffff81160361000e57565b60043590610211826101e6565b565b60243590610211826101e6565b60843590610211826101e6565b60a43590610211826101e6565b6101043590610211826101e6565b3590610211826101e6565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043560ff811680820361000e576024359161029e836101e6565b73ffffffffffffffffffffffffffffffffffffffff807f000000000000000000000000b1a2f2a4c79c7c7ba1ac161ad0bdecf11350daa71633036103d9576102e96064841115612f40565b8316916102f7831515612fcb565b61030c61030660035460ff1690565b60ff1690565b036103a1575b5060035461034d9060081c73ffffffffffffffffffffffffffffffffffffffff165b73ffffffffffffffffffffffffffffffffffffffff1690565b0361035457005b61039f907fffffffffffffffffffffff0000000000000000000000000000000000000000ff74ffffffffffffffffffffffffffffffffffffffff006003549260081b16911617600355565b005b6103d39060ff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006003541617600355565b38610312565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f54616b6572206665652061646472657373206d7573742062652073657276657260448201527f207369676e6572000000000000000000000000000000000000000000000000006064820152fd5b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206104b460043560ff6001918060081c6000526000602052161b60406000205416151590565b6040519015158152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004356104fa816101e6565b610564602435610509816101e6565b6044359273ffffffffffffffffffffffffffffffffffffffff90610531853033858716613498565b16600052600160205260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b80549182018092116105735755005b61057b612a85565b55005b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e573360005260026020526020604060002054604051908152f35b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b67ffffffffffffffff811161060b57604052565b6106136105c7565b604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761060b57604052565b604051906101c0820182811067ffffffffffffffff82111761060b57604052565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209267ffffffffffffffff81116106b6575b01160190565b6106be6105c7565b6106b0565b9291926106cf8261067a565b916106dd6040519384610618565b82948184528183011161000e578281602093846000960137010152565b9080601f8301121561000e57816020610715933591016106c3565b90565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043567ffffffffffffffff811161000e5761077261076d60609236906004016106fa565b6130d8565b9060ff6040519316835260208301526040820152f35b9181601f8401121561000e5782359167ffffffffffffffff831161000e576020838186019501011161000e57565b5060807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5767ffffffffffffffff60043581811161000e57610802903690600401610175565b60243582811161000e5761081a903690600401610788565b92909160443582811161000e57610835903690600401610788565b9260643590811161000e5761084e903690600401610788565b505042610120830135111561086290611cc9565b610873426102e08401351115611d54565b610884426101408401351015611ddf565b610895426103008401351015611e6a565b61089e82611ef5565b6108c89073ffffffffffffffffffffffffffffffffffffffff166000526002602052604060002090565b5461018083013510156108da90611eff565b6108e76101c08301611ef5565b6109119073ffffffffffffffffffffffffffffffffffffffff166000526002602052604060002090565b54610340830135101561092390611f8a565b61093760608301356102a084013514612015565b61022082013561094c60e084013582146120c6565b61095860808401611ef5565b6109656102c08501611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661099b9173ffffffffffffffffffffffffffffffffffffffff1614612177565b6102408301906109aa82611ef5565b6109b76101008601611ef5565b73ffffffffffffffffffffffffffffffffffffffff166109ed9173ffffffffffffffffffffffffffffffffffffffff1614612228565b6109fc606085013546146122d9565b4614610a0790612364565b610a1360808401611ef5565b610a349073ffffffffffffffffffffffffffffffffffffffff1630146123ef565b3090610a3f90611ef5565b73ffffffffffffffffffffffffffffffffffffffff1614610a5f9061247a565b610a693683611938565b610a729061324b565b93610a81366101c08501611938565b610a8a9061324b565b95610a99610380850185612505565b3690610aa4926106c3565b610aad906130d8565b9190610ab887611ef5565b92604051602081019080610af68d84603c917f19457468657265756d205369676e6564204d6573736167653a0a3332000000008252601c8201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610b269082610618565b519020916040519384926020840192610b749391926041937fff00000000000000000000000000000000000000000000000000000000000000928452602084015260f81b1660408201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352610ba49083610618565b610bad92613678565b610bb690612556565b610bc46103a0850185612505565b3690610bcf926106c3565b610bd8906130d8565b9190610be76101c08801611ef5565b928a604051806020810192610c269084603c917f19457468657265756d205369676e6564204d6573736167653a0a3332000000008252601c8201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610c569082610618565b519020916040519384926020840192610ca49391926041937fff00000000000000000000000000000000000000000000000000000000000000928452602084015260f81b1660408201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352610cd49083610618565b610cdd92613678565b610ce6906125e1565b610cf260208501611ef5565b610cff6102608601611ef5565b73ffffffffffffffffffffffffffffffffffffffff16610d359173ffffffffffffffffffffffffffffffffffffffff161461266c565b610d4160a08501611ef5565b610d4e6101e08601611ef5565b73ffffffffffffffffffffffffffffffffffffffff16610d849173ffffffffffffffffffffffffffffffffffffffff16146126f7565b610d9960408501356102808601351115612782565b60035460ff16610da890613056565b610dbb9061ffff16610200860135612aef565b612710900460c08501351115610dd09061280d565b610df38660ff6001918060081c6000526000602052161b60406000205416151590565b15610dfd90612898565b610e208760ff6001918060081c6000526000602052161b60406000205416151590565b15610e2a906128fd565b610e3b436103c08601351015612962565b3690610e46926106c3565b610e4f906130d8565b610e5b85939293613368565b604051806020810192610e989084603c917f19457468657265756d205369676e6564204d6573736167653a0a3332000000008252601c8201520190565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610ec89082610618565b51902090604051938493610ef693859094939260ff6060936080840197845216602083015260408201520152565b6000805203905a916000916001602094fa15927ff30b65a779a29cc815cb617d63408c34535b21180637efffed4b0325c954dcb5936117b7575b610f8f610f5260005173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b1a2f2a4c79c7c7ba1ac161ad0bdecf11350daa716146129fa565b610fb2858060081c6000526000602052600160ff604060002092161b8154179055565b610fd5868060081c6000526000602052600160ff604060002092161b8154179055565b61100b610fe56101c08501611ef5565b73ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b611046610200850135916110226101e08701611ef5565b73ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54106117895761106c61105f610fe56101c08601611ef5565b6110226101e08601611ef5565b61107c6102008501358254612acb565b90555b61109361108f6101a08501612ad8565b1590565b15611763576110b36110a7610fe585611ef5565b61102260a08601611ef5565b6110c260c08501358254612ae2565b90555b60035460ff811680611681575b50506110dd83611ef5565b3b1515806115ce575b611534575b6110f7610fe584611ef5565b61110c60408501359161102260208701611ef5565b54106115065761112d611121610fe585611ef5565b61102260208601611ef5565b61113c60408501358254612acb565b90555b61114f61108f6103608501612ad8565b156114d457611174611167610fe56101c08601611ef5565b6110226102608601611ef5565b6111846102808501358254612ae2565b90555b61028083013560408401351161147d575b60c08301356111ab61020085013561306a565b11611417575b6111ba83611ef5565b3b151580611364575b6112b5575b50506111d381611ef5565b906112b06111e46101c08301611ef5565b6111f060808401611ef5565b936111fe6101008501611ef5565b9161120b60208601611ef5565b61121760a08701611ef5565b9061122187613368565b94604051988860c08b9a013596604082013596606060e0840135930135918c9793956020939c9b9a97929189966101409b9861016089019f73ffffffffffffffffffffffffffffffffffffffff998a988980988180981684521691015260408d015260608c01521660808a01521660a08801521660c08601521660e08401526101008301526101208201520152565b0390a3005b602061130791611321936112ce61033461033488611ef5565b9060006040518096819582947fa9cfc2400000000000000000000000000000000000000000000000000000000084528b60048501612cec565b03925af1908115611357575b600091611328575b50612e3c565b38806111c8565b61134a915060203d602011611350575b6113428183610618565b810190612b02565b3861131b565b503d611338565b61135f6129ed565b611313565b5061137461033461033485611ef5565b602060405180927f01ffc9a700000000000000000000000000000000000000000000000000000000825281806113d160048201907fa9cfc24000000000000000000000000000000000000000000000000000000000602083019252565b03915afa90811561140a575b6000916113eb575b506111c3565b611404915060203d602011611350576113428183610618565b386113e5565b6114126129ed565b6113dd565b61143260c084013561142d61020086013561306a565b612acb565b61147661146e6114623373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b61102260a08801611ef5565b918254612ae2565b90556111b1565b6114906102808401356040850135612acb565b6114cd61146e6114c03373ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6110226102608801611ef5565b9055611198565b6115016114e76103346102608601611ef5565b610280850135906114fb6101c08701611ef5565b90613419565b611187565b61152f61151861033460208601611ef5565b604085013590309061152987611ef5565b90613498565b61113f565b61159d61154661033461033486611ef5565b602060405180927f7ad28a5900000000000000000000000000000000000000000000000000000000825281600081611583898b8d60048501612cec565b03925af19081156115c1575b6000916115a2575b50612dd7565b6110eb565b6115bb915060203d602011611350576113428183610618565b38611597565b6115c96129ed565b61158f565b506115de61033461033485611ef5565b602060405180927f01ffc9a7000000000000000000000000000000000000000000000000000000008252818061163b60048201907f7ad28a5900000000000000000000000000000000000000000000000000000000602083019252565b03915afa908115611674575b600091611655575b506110e6565b61166e915060203d602011611350576113428183610618565b3861164f565b61167c6129ed565b611647565b61169090610200860135612aef565b9061170a61146e6116fd73ffffffffffffffffffffffffffffffffffffffff6116d26116cb6104208b0135976116c589612ab5565b90612aef565b6064900490565b9460081c1673ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b6110226101e08901611ef5565b905580611718575b806110d2565b6116cb6117389161173360ff60035416610200880135612aef565b612aef565b61175b61146e61174e610fe56104008801611ef5565b6110226101e08801611ef5565b905538611712565b61178461177561033460a08601611ef5565b60c0850135906114fb86611ef5565b6110c5565b6117b261179c6103346101e08601611ef5565b6102008501359030906115296101c08801611ef5565b61107f565b6117bf6129ed565b610f30565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761039f600435611803816101e6565b6024359033600052600160205261183e8160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b80549083820391821161186a575b5573ffffffffffffffffffffffffffffffffffffffff339116613419565b611872612a85565b61184c565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602061190c6004356118b8816101e6565b73ffffffffffffffffffffffffffffffffffffffff602435916118da836101e6565b166000526001835260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54604051908152f35b8015150361000e57565b6101a4359061021182611915565b359061021182611915565b9190826101c091031261000e5761194d610659565b9161195781610248565b835261196560208201610248565b6020840152604081013560408401526060810135606084015261198a60808201610248565b608084015261199b60a08201610248565b60a084015260c081013560c084015260e081013560e08401526101006119c2818301610248565b908401526101208082013590840152610140808201359084015261016080820135908401526101808082013590840152611a006101a080920161192d565b90830152565b503461000e576101c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206101de611a44610659565b611a4c610204565b8152611a56610213565b8382015260443560408201526064356060820152611a72610220565b6080820152611a7f61022d565b60a082015260c43560c082015260e43560e0820152611a9c61023a565b61010082015261012435610120820152610144356101408201526101643561016082015261018435610180820152611ad261191f565b6101a082015261324b565b503461000e5760a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57600435611b19816101e6565b602435611b25816101e6565b6044359060643567ffffffffffffffff811161000e57611b499036906004016106fa565b608435611b5581611915565b8015611c8957611b7c848673ffffffffffffffffffffffffffffffffffffffff8616613419565b73ffffffffffffffffffffffffffffffffffffffff91828616803b1561000e5782600091611bdc93836040518096819582947fe84afff60000000000000000000000000000000000000000000000000000000084528d8d60048601612eff565b03925af18015611c7c575b611c63575b5015611bff579261039f93309216613498565b50611c5790611c32611c5f939473ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b918254612acb565b9055005b80611c70611c76926105f7565b8061010c565b38611bec565b611c846129ed565b611be7565b611cb783611c328773ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b611cc2858254612ae2565b9055611b7c565b15611cd057565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d616b6572206f726465722073746172742074696d6520697320696e2074686560448201527f20667574757265000000000000000000000000000000000000000000000000006064820152fd5b15611d5b57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f54616b6572206f726465722073746172742074696d6520697320696e2074686560448201527f20667574757265000000000000000000000000000000000000000000000000006064820152fd5b15611de657565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f4d616b6572206f7264657220656e642074696d652068617320616c726561647960448201527f20706173736564000000000000000000000000000000000000000000000000006064820152fd5b15611e7157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f54616b6572206f7264657220656e642074696d652068617320616c726561647960448201527f20706173736564000000000000000000000000000000000000000000000000006064820152fd5b35610715816101e6565b15611f0657565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f436f756e746572206f66206d616b6572206f7264657220697320746f6f206c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152fd5b15611f9157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f436f756e746572206f662074616b6572206f7264657220697320746f6f206c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152fd5b1561201c57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f4d616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d617463682074616b6572206f726465722773206f75747075742060648201527f636861696e6964000000000000000000000000000000000000000000000000006084820152fd5b156120cd57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f54616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d61746368206d616b6572206f726465722773206f75747075742060648201527f636861696e6964000000000000000000000000000000000000000000000000006084820152fd5b1561217e57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f4d616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d617463682074616b6572206f726465722773206f7574707574207a6f6e60648201527f65000000000000000000000000000000000000000000000000000000000000006084820152fd5b1561222f57565b60a46040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f54616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d61746368206d616b6572206f726465722773206f7574707574207a6f6e60648201527f65000000000000000000000000000000000000000000000000000000000000006084820152fd5b156122e057565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f4d616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d617463682063757272656e7420636861696e69640000000000006064820152fd5b1561236b57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f54616b6572206f72646572277320696e70757420636861696e696420646f657360448201527f206e6f74206d617463682063757272656e7420636861696e69640000000000006064820152fd5b156123f657565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f4d616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d61746368207468697320636f6e747261637400000000000000000000006064820152fd5b1561248157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f54616b6572206f72646572277320696e707574207a6f6e6520646f6573206e6f60448201527f74206d61746368207468697320636f6e747261637400000000000000000000006064820152fd5b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18136030182121561000e570180359067ffffffffffffffff821161000e5760200191813603831361000e57565b1561255d57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4d616b6572207369676e617475726520646f6573206e6f7420636f727265737060448201527f6f6e6420746f206f726465722064657461696c730000000000000000000000006064820152fd5b156125e857565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f54616b6572207369676e617475726520646f6573206e6f7420636f727265737060448201527f6f6e6420746f206f726465722064657461696c730000000000000000000000006064820152fd5b1561267357565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604060248201527f4d616b6572206f7264657220696e70757420746f6b656e206973206e6f74206560448201527f7175616c20746f2074616b6572206f72646572206f757470757420746f6b656e6064820152fd5b156126fe57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604060248201527f4d616b6572206f72646572206f757470757420746f6b656e206973206e6f742060448201527f657175616c20746f2074616b6572206f7264657220696e70757420746f6b656e6064820152fd5b1561278957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f54616b6572206f72646572206f757470757420616d6f756e74206973206d6f7260448201527f65207468616e206d616b6572206f7264657220696e70757420616d6f756e74006064820152fd5b1561281457565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d616b6572206f72646572206f757470757420616d6f756e74206973206d6f7260448201527f65207468616e2074616b6572206f7264657220696e70757420616d6f756e74006064820152fd5b1561289f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4d616b6572206f7264657220686173206265656e20736574746c6564000000006044820152fd5b1561290457565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f54616b6572206f7264657220686173206265656e20736574746c6564000000006044820152fd5b1561296957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4f7264657220657865637574696f6e20646561646c696e65206861732070617360448201527f73656400000000000000000000000000000000000000000000000000000000006064820152fd5b506040513d6000823e3d90fd5b15612a0157565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f536572766572207369676e617475726520646f6573206e6f7420636f7272657360448201527f706f6e6420746f206f726465722064657461696c7300000000000000000000006064820152fd5b507f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6064039060648211612ac357565b610211612a85565b91908203918211612ac357565b3561071581611915565b91908201809211612ac357565b81810292918115918404141715612ac357565b9081602091031261000e575161071581611915565b9061021191612b4382612b2983610248565b73ffffffffffffffffffffffffffffffffffffffff169052565b612b6f612b5260208301610248565b73ffffffffffffffffffffffffffffffffffffffff166020840152565b6040810135604083015260608101356060830152612baf612b9260808301610248565b73ffffffffffffffffffffffffffffffffffffffff166080840152565b612bdb612bbe60a08301610248565b73ffffffffffffffffffffffffffffffffffffffff1660a0840152565b60c081013560c083015260e081013560e0830152612c1c610100612c00818401610248565b73ffffffffffffffffffffffffffffffffffffffff1690840152565b6101208082013590830152610140808201359083015261016080820135908301526101808082013590830152612c566101a080920161192d565b1515910152565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18236030181121561000e57016020813591019167ffffffffffffffff821161000e57813603831361000e57565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0938186528686013760008582860101520116010190565b9161071593919260408152612d046040820185612b17565b612d1661020082016101c08601612b17565b612d24610380850185612c5d565b94612d40610440926103c0978489870152610480860191612cad565b9173ffffffffffffffffffffffffffffffffffffffff612d9a612d676103a0850185612c5d565b6103e096917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc089840301888a0152612cad565b9761040090840135818701526104209484013585870152830135612dbd816101e6565b169084015201356104608201526020818503910152612cad565b15612dde57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4265666f7265416f7269547261646520686f6f6b206661696c656400000000006044820152fd5b15612e4357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4166746572416f7269547261646520686f6f6b206661696c65640000000000006044820152fd5b919082519283825260005b848110612eeb5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006020809697860101520116010190565b602081830181015184830182015201612eac565b9260609273ffffffffffffffffffffffffffffffffffffffff612f38939796971685526020850152608060408501526080840190612ea1565b931515910152565b15612f4757565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f54616b6572206665652062697073206d757374206265206c657373207468616e60448201527f20312500000000000000000000000000000000000000000000000000000000006064820152fd5b15612fd257565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f54616b6572206665652061646472657373206d757374206265206e6f6e2d7a6560448201527f726f0000000000000000000000000000000000000000000000000000000000006064820152fd5b9061ffff80921661271001918211612ac357565b612710908181029181830414901517156130cb575b61ffff61309060ff60035416613056565b1690811561309c570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6130d3612a85565b61307f565b6020810151906060604082015191015160001a92601b84106130f657565b92601b0160ff81116131055792565b61310d612a85565b92565b9c9996926132479c99956101659f9c99958f6068916131c19461318b6131ed987fffffffffffffffffffffffffffffffffffffffff0000000000000000000000006132239e9960601b16855260148501907fffffffffffffffffffffffffffffffffffffffff0000000000000000000000009060601b169052565b6028830152604882015201907fffffffffffffffffffffffffffffffffffffffff0000000000000000000000009060601b169052565b60601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016607c8d0152565b60908b015260b08a015260601b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660d0890152565b60e4870152610104860152610124850152610144840152151560f81b610164830152565b0190565b805173ffffffffffffffffffffffffffffffffffffffff16602082015173ffffffffffffffffffffffffffffffffffffffff169060408301519260608101519060808101516132ad9073ffffffffffffffffffffffffffffffffffffffff1690565b60a082015173ffffffffffffffffffffffffffffffffffffffff1660c083015160e084015161010085015173ffffffffffffffffffffffffffffffffffffffff1690610120860151926101408701519461016088015196610180890151986101a0015161331990151590565b996040519d8e9d60208f019d61332e9e613110565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101825261335e9082610618565b8051906020012090565b610420613413609461337e610380850185612505565b909461338e6103a0820182612505565b9590917fffffffffffffffffffffffffffffffffffffffff00000000000000000000000087610400830135946133c3866101e6565b60405199878b9860208a019d8e3788019160208301600081523701936103c083013560208601526103e0830135604086015260601b16606084015201356074820152036074810184520182610618565b51902090565b6102119273ffffffffffffffffffffffffffffffffffffffff604051937fa9059cbb0000000000000000000000000000000000000000000000000000000060208601521660248401526044830152604482526080820182811067ffffffffffffffff82111761348b575b60405261350f565b6134936105c7565b613483565b909261021193604051937f23b872dd00000000000000000000000000000000000000000000000000000000602086015273ffffffffffffffffffffffffffffffffffffffff809216602486015216604484015260648301526064825260a0820182811067ffffffffffffffff82111761348b576040525b60008073ffffffffffffffffffffffffffffffffffffffff61354693169360208151910182865af161353f6135a8565b90836135d8565b805190811515918261358d575b505061355c5750565b602490604051907f5274afe70000000000000000000000000000000000000000000000000000000082526004820152fd5b6135a09250602080918301019101612b02565b153880613553565b3d156135d3573d906135b98261067a565b916135c76040519384610618565b82523d6000602084013e565b606090565b9061361757508051156135ed57805190602001fd5b60046040517f1425ea42000000000000000000000000000000000000000000000000000000008152fd5b8151158061366f575b613628575090565b60249073ffffffffffffffffffffffffffffffffffffffff604051917f9996b315000000000000000000000000000000000000000000000000000000008352166004820152fd5b50803b15613620565b61368283836137c2565b50600481959295101561379357159384613770575b5083156136a5575b50505090565b6000929350908291604051613723816136f760208201947f1626ba7e00000000000000000000000000000000000000000000000000000000998a87526024840152604060448401526064830190612ea1565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610618565b51915afa906137306135a8565b82613762575b82613746575b505038808061369f565b90915060208180518101031261000e576020015114388061373c565b915060208251101591613736565b73ffffffffffffffffffffffffffffffffffffffff838116911614935038613697565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81519190604183036137f3576137ec92506020820151906060604084015193015160001a906137fe565b9192909190565b505060009160029190565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116138a257916138549160209360405195869094939260ff6060936080840197845216602083015260408201520152565b826000938492838052039060015afa15613895575b805173ffffffffffffffffffffffffffffffffffffffff81161561388c57918190565b50809160019190565b61389d6129ed565b613869565b5060009360039350905056fea26469706673582212202d76749f084d4359f5b0f3ef0702c7e3c06de98a0aa72d6f27d74805773add2564736f6c63430008110033

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

000000000000000000000000b1a2f2a4c79c7c7ba1ac161ad0bdecf11350daa7

-----Decoded View---------------
Arg [0] : _serverSigner (address): 0xB1a2f2A4c79C7C7Ba1Ac161ad0BDeCf11350dAa7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b1a2f2a4c79c7c7ba1ac161ad0bdecf11350daa7


Deployed Bytecode Sourcemap

959:19645:1:-:0;;;;;;;;;-1:-1:-1;959:19645:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;;;;:::o;:::-;;;;;;;;;;;;;16969:10;959:19645;;16954:14;959:19645;;;;;;;;16984:1;959:19645;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;:::o;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17501:12;;959:19645;17487:10;:26;959:19645;;17567:68;17592:3;17575:20;;;17567:68;:::i;:::-;959:19645;;17653:30;17645:77;17653:30;;;17645:77;:::i;:::-;17737:29;959:19645;17737:12;959:19645;;;;;;;;;;17737:29;;17733:88;;959:19645;-1:-1:-1;17737:12:1;959:19645;17835:35;;959:19645;;;;;;;;;17835:35;;17831:100;;959:19645;17831:100;17886:34;;959:19645;;17737:12;959:19645;;;;;;;;17737:12;959:19645;;17886:34;959:19645;17733:88;17782:28;;959:19645;;;17737:12;959:19645;;;17737:12;959:19645;;17782:28;17733:88;;;959:19645;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18732:44;959:19645;;;1054:1:8;912:217;959:19645:1;1028:1:8;959:19645:1;-1:-1:-1;959:19645:1;-1:-1:-1;959:19645:1;;1060:12:8;959:19645:1;;-1:-1:-1;959:19645:1;;1090:27:8;:32;;912:217;;18732:44:1;959:19645;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14834:26;959:19645;;;;;:::i;:::-;;;;;14809:4;14816:7;14809:4;;14789:10;959:19645;;;14816:7;:::i;:::-;959:19645;-1:-1:-1;959:19645:1;14834:8;959:19645;;;-1:-1:-1;959:19645:1;;;;;;;;;;;;;14834:26;959:19645;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;17084:10;959:19645;;17069:14;959:19645;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;959:19645:1;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;3975:15;;;3942:29;;;959:19645;3942:48;;3934:100;;;:::i;:::-;4044;3975:15;4052:29;;;959:19645;4052:48;;4044:100;:::i;:::-;4154:98;3975:15;4162:27;;;959:19645;4162:46;;4154:98;:::i;:::-;4262;3975:15;4270:27;;;959:19645;4270:46;;4262:98;:::i;:::-;4562:27;;;:::i;:::-;4547:43;;959:19645;;;;4547:14;959:19645;;;;;;;4547:43;959:19645;4516:27;;;959:19645;4516:74;;4508:120;;;:::i;:::-;4692:27;4052:19;;;4692:27;:::i;:::-;4677:43;;959:19645;;;;4547:14;959:19645;;;;;;;4677:43;959:19645;4646:27;;;959:19645;4646:74;;4638:120;;;:::i;:::-;4911:153;4919:32;;;959:19645;4955:33;;;959:19645;4919:69;4911:153;:::i;:::-;5082:32;;;959:19645;5074:153;4955:33;5118;;959:19645;5082:69;;5074:153;:::i;:::-;5268:29;959:19645;5268:29;;;:::i;:::-;5301:30;;;;;:::i;:::-;959:19645;;5260:141;;959:19645;;5268:63;5260:141;:::i;:::-;5419:29;;;;;;;:::i;:::-;5452:30;5301;5452;;;:::i;:::-;959:19645;;5411:141;;959:19645;;5419:63;5411:141;:::i;:::-;5614:120;4919:32;;;959:19645;5658:13;5622:49;5614:120;:::i;:::-;5658:13;5752:49;5744:120;;;:::i;:::-;5882:29;959:19645;5268:29;;5882;:::i;:::-;5874:112;;959:19645;;5923:4;5882:46;5874:112;:::i;:::-;5923:4;6004:29;;;;:::i;:::-;959:19645;;6004:46;5996:112;;;:::i;:::-;959:19645;;;;:::i;:::-;6186:33;;;:::i;:::-;959:19645;;;4052:19;;;959:19645;:::i;:::-;6249:33;;;:::i;:::-;6399:23;;;;;;;:::i;:::-;959:19645;;;;;:::i;:::-;6375:48;;;:::i;:::-;6441:27;;;;;:::i;:::-;959:19645;;;6512:109;;;;;;;;959:19645;;;;;;;;;;;;6512:109;;;;;;;;;;;:::i;:::-;959:19645;6502:120;;959:19645;;;6636:40;;;6512:109;6636:40;;;;;959:19645;;;;;;;;;;;;;;;;;;;;;;6636:40;;6512:109;6636:40;;;;;;;;:::i;:::-;6441:236;;;:::i;:::-;6433:322;;;:::i;:::-;6839:23;;;;;;:::i;:::-;959:19645;;;;;:::i;:::-;6815:48;;;:::i;:::-;4052:19;;6881:27;4052:19;;;6881:27;:::i;:::-;959:19645;;;;6952:109;6512;6952;;;;;;959:19645;;;;;;;;;;;;6952:109;;6512;6952;;;;;;;;:::i;:::-;959:19645;6942:120;;959:19645;;;7076:40;;;6512:109;7076:40;;;;;959:19645;;;;;;;;;;;;;;;;;;;;;;7076:40;;6512:109;7076:40;;;;;;;;:::i;:::-;6881:236;;;:::i;:::-;6873:322;;;:::i;:::-;7262:30;6512:109;7262:30;;;:::i;:::-;7296:31;;;;;:::i;:::-;959:19645;;7254:154;;959:19645;;7262:65;7254:154;:::i;:::-;7426:31;7296;7426;;;:::i;:::-;7461:30;;;;;:::i;:::-;959:19645;;7418:154;;959:19645;;7426:65;7418:154;:::i;:::-;7621:155;959:19645;7665:31;;959:19645;7629:32;;;959:19645;7629:67;;7621:155;:::i;:::-;18076:12;959:19645;;;18068:20;;;:::i;:::-;18057:32;;959:19645;;7846:31;;;959:19645;18057:32;:::i;:::-;18068:5;959:19645;;7629:32;7794;;959:19645;7794:84;;7786:172;;;:::i;:::-;8055:44;;959:19645;1054:1:8;912:217;959:19645:1;1028:1:8;959:19645:1;-1:-1:-1;959:19645:1;-1:-1:-1;959:19645:1;;1060:12:8;959:19645:1;;-1:-1:-1;959:19645:1;;1090:27:8;:32;;912:217;;8055:44:1;8054:45;8046:86;;;:::i;:::-;8151:44;;959:19645;1054:1:8;912:217;959:19645:1;1028:1:8;959:19645:1;-1:-1:-1;959:19645:1;-1:-1:-1;959:19645:1;;1060:12:8;959:19645:1;;-1:-1:-1;959:19645:1;;1090:27:8;:32;;912:217;;8151:44:1;8150:45;8142:86;;;:::i;:::-;8500:120;8547:12;8521:22;;;959:19645;8521:38;;8500:120;:::i;:::-;959:19645;;;;;:::i;:::-;8683:40;;;:::i;:::-;9038:25;;;;;;:::i;:::-;959:19645;;8928:161;6512:109;8928:161;;;;;;959:19645;;;;;;;;;;;;8928:161;;6512:109;8928:161;;;;;;;;:::i;:::-;959:19645;8893:218;;959:19645;;;8862:314;;;;;;959:19645;;;;;;;;;;;;;;;;;;;;;;;;;8862:314;-1:-1:-1;8862:314:1;;;;;;-1:-1:-1;8862:314:1;;6512:109;8862:314;;;;13578:714;8862:314;;;959:19645;8809:446;8830:346;-1:-1:-1;8862:314:1;959:19645;;;;8830:346;959:19645;8830:12;959:19645;8830:346;8809:446;:::i;:::-;9631:44;;959:19645;1561:1:8;959:19645:1;3942:19;959:19645;3942:19;959:19645;;1587:1:8;959:19645:1;;3942:19;959:19645;1593:12:8;;959:19645:1;;;1616:28:8;959:19645:1;;1465:186:8;9631:44:1;9685;;959:19645;1561:1:8;959:19645:1;3942:19;959:19645;3942:19;959:19645;;1587:1:8;959:19645:1;;3942:19;959:19645;1593:12:8;;959:19645:1;;;1616:28:8;959:19645:1;;1465:186:8;9685:44:1;9784:37;9793:27;4052:19;;;9793:27;:::i;:::-;959:19645;;;;8862:314;959:19645;;;;;;;9784:37;:69;7846:31;;;959:19645;7461:30;9822;7461;;;9822;:::i;:::-;959:19645;;;;;;;;;;;9784:69;959:19645;9784:104;7846:31;;9904:69;:37;9913:27;4052:19;;;9913:27;:::i;9904:37::-;9942:30;7461;;;9942;:::i;9904:69::-;:104;7846:31;;;959:19645;;;9904:104;:::i;:::-;959:19645;;9780:484;10516:31;10517:30;;;;;:::i;:::-;10516:31;;959:19645;10516:31;10517:30;;;10590:70;:37;10599:27;;;:::i;10590:37::-;10628:31;7296;7426;;10628;:::i;10590:70::-;:106;7629:32;7794;;959:19645;;;10590:106;:::i;:::-;959:19645;;10512:387;18076:12;959:19645;;;;10940:17;10936:460;;10512:387;11492:27;;;;;:::i;:::-;:39;:43;;:137;;;10512:387;11488:320;;10512:387;11822:37;11831:27;;;:::i;11822:37::-;:69;959:19645;7665:31;;959:19645;7262:30;11860;6512:109;7262:30;;11860;:::i;11822:69::-;959:19645;11822:104;959:19645;;11942:69;:37;11951:27;;;:::i;11942:37::-;11980:30;6512:109;7262:30;;11980;:::i;11942:69::-;:104;959:19645;7665:31;;959:19645;;;11942:104;:::i;:::-;959:19645;;11818:402;12234:31;12235:30;;;;;:::i;12234:31::-;12235:30;;;12281:70;:37;12290:27;4052:19;;;12290:27;:::i;12281:37::-;12319:31;7296;;;12319;:::i;12281:70::-;:106;7629:32;;;959:19645;;;12281:106;:::i;:::-;959:19645;;12230:360;7629:32;;;959:19645;;7665:31;;959:19645;12695:66;12691:220;;12230:360;7629:32;7794;;959:19645;12925:51;7846:31;;;959:19645;12925:51;:::i;:::-;:86;12921:260;;12230:360;13228:27;;;:::i;:::-;:39;:43;;:136;;;12230:360;13224:317;;12230:360;13677:27;;;;;:::i;:::-;4052:19;13578:714;13727:27;4052:19;;;13727:27;:::i;:::-;13903:29;959:19645;5268:29;;13903;:::i;:::-;5452:30;13959;5301;5452;;13959;:::i;:::-;7262;14017;6512:109;7262:30;;14017;:::i;:::-;14075:31;7296;7426;;14075;:::i;:::-;14257:25;;;;:::i;:::-;959:19645;;;7794:32;;7629;7794;;;959:19645;7665:31;959:19645;7665:31;;959:19645;5118:33;4919:32;4955:33;5118;;959:19645;4919:32;;959:19645;13578:714;;959:19645;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13578:714;;;;959:19645;13224:317;6512:109;13397:73;13407:27;13484:46;13407:27;13397:53;:38;13407:27;;;:::i;13397:53::-;959:19645;-1:-1:-1;959:19645:1;;13397:73;;;;;;959:19645;13397:73;;;959:19645;13397:73;;;:::i;:::-;;;;;;;;;;13224:317;-1:-1:-1;13397:73:1;;;13224:317;13484:46;;:::i;:::-;13224:317;;;;13397:73;;;;6512:109;13397:73;6512:109;13397:73;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;13228:136;13283:27;13275:54;:36;13283:27;;;:::i;13275:54::-;6512:109;959:19645;;13275:89;;959:19645;13275:89;;;;;959:19645;13275:89;;959:19645;13330:33;959:19645;;;;;;13275:89;;;;;;;;;;13228:136;-1:-1:-1;13275:89:1;;;13228:136;;;;13275:89;;;;6512:109;13275:89;6512:109;13275:89;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;12921:260;13084:86;7629:32;7794;;959:19645;13084:51;7846:31;;;959:19645;13084:51;:::i;:::-;:86;:::i;:::-;13027:143;:53;:20;13036:10;959:19645;;;;8862:314;959:19645;;;;;;;13027:20;13048:31;7296;7426;;13048;:::i;13027:53::-;959:19645;;;13027:143;:::i;:::-;959:19645;;12921:260;;12691:220;12834:66;7629:32;;;959:19645;;7665:31;;959:19645;12834:66;:::i;:::-;12777:123;:53;:20;12786:10;959:19645;;;;8862:314;959:19645;;;;;;;12777:20;12798:31;7296;;;12798;:::i;12777:123::-;959:19645;;12691:220;;12230:360;12533:32;12418:39;12425:31;7296;;;12425;:::i;12418:39::-;7629:32;;;959:19645;4052:19;12488:27;4052:19;;;12488:27;:::i;:::-;12533:32;;:::i;:::-;12230:360;;11818:402;12177:31;12077:38;12084:30;6512:109;7262:30;;12084;:::i;12077:38::-;959:19645;7665:31;;959:19645;5923:4;;12133:27;;;;:::i;:::-;12177:31;;:::i;:::-;11818:402;;11488:320;11750:47;11662:54;:38;11672:27;;;:::i;11662:54::-;6512:109;959:19645;;11662:74;;959:19645;11662:74;;;-1:-1:-1;11662:74:1;;;;;959:19645;11662:74;;;:::i;:::-;;;;;;;;;;11488:320;-1:-1:-1;11662:74:1;;;11488:320;11750:47;;:::i;:::-;11488:320;;11662:74;;;;6512:109;11662:74;6512:109;11662:74;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;11492:137;11547:27;11539:54;:36;11547:27;;;:::i;11539:54::-;6512:109;959:19645;;11539:90;;959:19645;11539:90;;;;;959:19645;11539:90;;959:19645;11594:34;959:19645;;;;;;11539:90;;;;;;;;;;11492:137;-1:-1:-1;11539:90:1;;;11492:137;;;;11539:90;;;;6512:109;11539:90;6512:109;11539:90;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;10936:460;18415:22;7846:31;;;;959:19645;18415:22;:::i;:::-;11119:26;10999:153;:57;:25;959:19645;11060:92;:86;11119:26;;;959:19645;11113:32;;;;:::i;:::-;11060:86;;:::i;:::-;11113:3;959:19645;;;;11060:92;959:19645;;;;;;;;8862:314;959:19645;;;;;;;10999:25;11025:30;7461;;;11025;:::i;10999:153::-;959:19645;;11171:31;11167:219;;10936:460;;;;11167:219;11287:78;:84;959:19645;18415:22;959:19645;18076:12;959:19645;;7846:31;;;959:19645;18415:22;:::i;:::-;11287:78;:::i;:84::-;11222:149;:61;:29;11231:19;;;;;:::i;11222:29::-;11252:30;7461;;;11252;:::i;11222:149::-;959:19645;;11167:219;;;10512:387;10842:32;10727:39;10734:31;7296;7426;;10734;:::i;10727:39::-;7629:32;7794;;959:19645;10797:27;;;;:::i;10842:32::-;10512:387;;9780:484;10221:31;10121:38;10128:30;7461;;;10128;:::i;10121:38::-;7846:31;;;959:19645;5923:4;;4052:19;10177:27;4052:19;;;10177:27;:::i;10221:31::-;9780:484;;8862:314;;;:::i;:::-;;;959:19645;;;;;;;;;;;;15366:7;959:19645;;;;;:::i;:::-;;;15284:10;;-1:-1:-1;959:19645:1;15275:8;959:19645;;15275:28;959:19645;;-1:-1:-1;959:19645:1;;;;;;;;;;;;;15275:28;959:19645;;;;;;;;;;;;;;15284:10;959:19645;;15366:7;:::i;959:19645::-;;;:::i;:::-;;;;;;;;;;;;;;;;18900:26;959:19645;;;;;:::i;:::-;;;;;;;;:::i;:::-;;-1:-1:-1;959:19645:1;18900:8;959:19645;;;-1:-1:-1;959:19645:1;;;;;;;;;;;;;18900:26;959:19645;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;16034:155;;;;16104:6;959:19645;;;;;16104:6;:::i;:::-;959:19645;;;;;16256:85;;;;;959:19645;-1:-1:-1;959:19645:1;16256:85;959:19645;;;;16256:85;;;;;;959:19645;16256:85;;;;959:19645;16256:85;;;:::i;:::-;;;;;;;;;16034:155;16256:85;;16034:155;-1:-1:-1;16352:174:1;;;16434:4;16441:6;16434:4;;959:19645;;16441:6;:::i;16352:174::-;16479:19;:26;:19;;:36;:19;;959:19645;;;;16142:8;959:19645;;;;;;;16479:19;959:19645;;;;;;;;;;;;16479:26;959:19645;;;16479:36;:::i;:::-;959:19645;;;16256:85;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;:::i;:::-;;;16034:155;16142:26;:19;;;959:19645;;;;16142:8;959:19645;;;;;;;16142:26;:36;959:19645;;;16142:36;:::i;:::-;959:19645;;16034:155;;959:19645;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11113:3;959:19645;;11113:3;959:19645;;;;:::o;:::-;;;:::i;:::-;;;;;;;;;;:::o;:::-;;;;;:::i;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;959:19645:1;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;959:19645:1;;;;;;;;;;;-1:-1:-1;959:19645:1;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::o;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18110:184::-;18257:5;959:19645;;;;;;;;;;;;;;;18110:184;959:19645;18266:20;959:19645;18274:12;959:19645;;18266:20;:::i;:::-;959:19645;;;;;;;18110:184;:::o;959:19645::-;;-1:-1:-1;959:19645:1;;;;;-1:-1:-1;959:19645:1;;;;:::i;:::-;;;19123:387;19286:164;;;;;;;;;;;;;;;19464:6;19468:2;19464:6;;19460:44;;19123:387::o;19460:44::-;959:19645;19468:2;959:19645;;;;;;19460:44;19123:387::o;959:19645::-;;;:::i;:::-;19460:44;19123:387::o;959:19645::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19516:642::-;959:19645;;;;19708:16;;;959:19645;;;19742:17;;;;959:19645;19777:18;;;;959:19645;19813:15;;;;959:19645;;;;;;;;19846:17;;;959:19645;;;19881:18;;;959:19645;19917:19;;;959:19645;19954:16;;;959:19645;;;19988:15;;;;959:19645;20021:13;;;;959:19645;20052:10;;;;959:19645;20080:13;;;;959:19645;20111:16;;;959:19645;;;;;;;;;19742:17;959:19645;19643:498;;;19708:16;19643:498;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;959:19645;;19643:498;19708:16;19643:498;19620:531;19516:642;:::o;20164:438::-;20545:26;20315:270;;20349:23;;;;;;:::i;:::-;20390;;;;;;;;:::i;:::-;20508:19;;;959:19645;20508:19;;;;959:19645;;;;;:::i;:::-;;;20315:270;;;;;;;959:19645;;;;;;20315:270;959:19645;;-1:-1:-1;959:19645:1;;;;20431:22;;;;959:19645;20315:270;959:19645;;;20471:19;;;959:19645;;;;;;;;;;;;20545:26;959:19645;;;;;20315:270;959:19645;20315:270;;;;;;;:::i;:::-;959:19645;20292:303;;20164:438;:::o;1169:160:10:-;1278:43;1169:160;959:19645:1;;;1278:43:10;959:19645:1;1278:43:10;;;;959:19645:1;1278:43:10;;;959:19645:1;;;;;;1278:43:10;;959:19645:1;;;;;;;;;;;;1169:160:10;959:19645:1;;1278:43:10;:::i;959:19645:1:-;;;:::i;:::-;;;1568:188:10;;;1695:53;1568:188;959:19645:1;;1695:53:10;959:19645:1;1695:53:10;;;;959:19645:1;;;;1695:53:10;;;959:19645:1;;;;;;;;;;;1695:53:10;;959:19645:1;;;;;;;;;;;;;;3925:629:10;2777:1:7;3925:629:10;959:19645:1;3440:55:7;3925:629:10;959:19645:1;3392:31:7;;;;;;;;;;;;:::i;:::-;3440:55;;;:::i;:::-;959:19645:1;;4417:22:10;;;;:57;;;;3925:629;4413:135;;;;3925:629;:::o;4413:135::-;959:19645:1;;;;4497:40:10;;;;;;;959:19645:1;4497:40:10;4417:57;4444:30;;;3392:31:7;4444:30:10;;;;;;;;:::i;:::-;4443:31;4417:57;;;;959:19645:1;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;-1:-1:-1;959:19645:1;;;;:::o;:::-;;;:::o;4555:582:7:-;;4727:8;;-1:-1:-1;959:19645:1;;5804:21:7;:17;;5976:142;;;;;;5800:383;6155:17;959:19645:1;;6155:17:7;;;;4723:408;959:19645:1;;4975:22:7;:49;;;4723:408;4971:119;;5103:17;;:::o;4971:119::-;959:19645:1;;;;;5051:24:7;;;;959:19645:1;5051:24:7;;;959:19645:1;5051:24:7;4975:49;5001:18;;;:23;4975:49;;1037:368:11;1209:33;;;;:::i;:::-;959:19645:1;;;;;;;;;;1272:35:11;:58;;;;1037:368;1271:127;;;;;1037:368;1252:146;;;1037:368;:::o;1271:127::-;1281:26;959:19645:1;;;;;;;;2040:60:11;;959:19645:1;2040:60:11;;;;;;;;;;;;959:19645:1;;;;;;;;;;;:::i;:::-;2040:60:11;;;;;;;;:::i;:::-;2009:101;;;;;;;:::i;:::-;2128:42;;;1271:127;2128:134;;;1271:127;;;;;;;;2128:134;959:19645:1;;;2040:60:11;959:19645:1;;;2186:29:11;;959:19645:1;;;;2040:60:11;2186:29;959:19645:1;2186:76:11;2128:134;;;;:42;959:19645:1;;2040:60:11;959:19645:1;;2151:19:11;;2128:42;;;1272:58;959:19645:1;;;;;;1311:19:11;;-1:-1:-1;1272:58:11;;;959:19645:1;;1281:26:11;959:19645:1;;;;;1281:26:11;959:19645:1;2128:766:9;959:19645:1;;;2128:766:9;2275:2;2255:22;;2275:2;;2738:25;2538:180;;;;;;;;;;;;;;;-1:-1:-1;2538:180:9;2738:25;;:::i;:::-;2731:32;;;;;:::o;2251:637::-;2794:83;;2810:1;2794:83;2814:35;2794:83;;:::o;5139:1530::-;;;;6198:66;6185:79;;6181:164;;959:19645:1;6456:24:9;959:19645:1;6456:24:9;959:19645:1;;;6456:24:9;;959:19645:1;;;;;;;;;;;;;;;;;;;;;;;;;6456:24:9;;;;;;;;;;;;;;;;;5139:1530;6456:24;;959:19645:1;;;6494:20:9;6490:113;;6613:49;;5139:1530;:::o;6490:113::-;6530:62;;;6456:24;6530:62;;:::o;6456:24::-;;;:::i;:::-;;;6181:164;-1:-1:-1;6296:1:9;;6300:30;;-1:-1:-1;6280:54:9;-1:-1:-1;6280:54:9:o

Swarm Source

ipfs://2d76749f084d4359f5b0f3ef0702c7e3c06de98a0aa72d6f27d74805773add25

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

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
BASE51.61%$2,621.880.0813$213.14
BASE1.84%$2,678.320.00283228$7.59
BASE0.71%$12.9465$2.95
BASE0.18%$10.7614$0.7614
BASE0.14%$0.9968840.6$0.5981
BASE0.14%$1.450.3946$0.5721
BASE0.13%$3,102.910.00016897$0.5243
BASE0.10%$0.9997770.4198$0.4197
ARB12.49%$4.212.2806$51.58
ARB7.06%$65,7600.00044331$29.15
ARB4.43%$2,620.230.00698576$18.3
ARB4.15%$2,673.410.00640804$17.13
ARB2.36%$0.9992399.74$9.73
ARB0.54%$0.9992392.2408$2.24
ARB0.27%$8.110.1352$1.1
ARB0.16%$11.220.0583$0.6546
ARB0.15%$0.997030.601$0.5991
ARB0.12%$0.5618080.8913$0.5007
ARB0.11%$1.180.3843$0.4534
ARB0.09%$0.9991370.3824$0.3821
ARB0.07%$45.450.00612886$0.2785
ARB0.07%$0.9993480.2739$0.2737
ARB0.05%$1.550.1461$0.2264
ARB0.05%$0.3677160.6098$0.2242
ARB0.03%$2.060.0649$0.1337
ARB0.02%$0.2661620.3778$0.1005
BLAST7.14%$0.99494329.637$29.49
BLAST3.88%$2,620.230.00610984$16.01
OP1.38%$4.191.3579$5.69
OP0.52%$0.9991362.1628$2.16
Loading...
Loading
[ 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.