ETH Price: $2,421.14 (+1.81%)

Token

Neural Tensor Dynamics (NTD)
 

Overview

Max Total Supply

21,000,000 NTD

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
293,513.34960937493 NTD

Value
$0.00
0x1d5F62336DD0B737e13A7eDC85932bF98f27e3B2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NeuralTensorDynamics

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-27
*/

/*

The Original NTD

https://tensordynamics.ai
https://twitter.com/NTD_AI
https://t.me/NeuralTensorDynamics

*/

// File: contracts/NTD/token/oft/v2/interfaces/IOFTReceiverV2.sol



pragma solidity >=0.5.0;

interface IOFTReceiverV2 {
    /**
     * @dev Called by the OFT contract when tokens are received from source chain.
     * @param _srcChainId The chain id of the source chain.
     * @param _srcAddress The address of the OFT token contract on the source chain.
     * @param _nonce The nonce of the transaction on the source chain.
     * @param _from The address of the account who calls the sendAndCall() on the source chain.
     * @param _amount The amount of tokens to transfer.
     * @param _payload Additional data with no specified format.
     */
    function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external;
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: contracts/NTD/token/oft/v2/interfaces/ICommonOFT.sol



pragma solidity >=0.5.0;


/**
 * @dev Interface of the IOFT core standard
 */
interface ICommonOFT is IERC165 {

    struct LzCallParams {
        address payable refundAddress;
        address zroPaymentAddress;
        bytes adapterParams;
    }

    /**
     * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
     * _dstChainId - L0 defined chain id to send tokens too
     * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
     * _amount - amount of the tokens to transfer
     * _useZro - indicates to use zro to pay L0 fees
     * _adapterParam - flexible bytes array to indicate messaging adapter services in L0
     */
    function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    /**
     * @dev returns the circulating amount of tokens on current chain
     */
    function circulatingSupply() external view returns (uint);

    /**
     * @dev returns the address of the ERC20 token
     */
    function token() external view returns (address);
}

// File: contracts/NTD/token/oft/v2/interfaces/ITensor.sol



pragma solidity >=0.5.0;


/**
 * @dev Interface of the IOFT core standard
 */
interface ITensor is ICommonOFT {

    /**
     * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
     * `_from` the owner of token
     * `_dstChainId` the destination chain identifier
     * `_toAddress` can be any size depending on the `dstChainId`.
     * `_amount` the quantity of tokens in wei
     * `_refundAddress` the address NTD refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (NTD Token)
     * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
     */
    function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable;

    function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable;
}

// File: contracts/NTD/libraries/ExcessivelySafeCall.sol


pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeCall(
        address _target,
        uint _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := call(
                _gas, // gas
                _target, // recipient
                0, // ether value
                add(_calldata, 0x20), // inloc
                mload(_calldata), // inlen
                0, // outloc
                0 // outlen
            )
            // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
            // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
            // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeStaticCall(
        address _target,
        uint _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := staticcall(
                _gas, // gas
                _target, // recipient
                add(_calldata, 0x20), // inloc
                mload(_calldata), // inlen
                0, // outloc
                0 // outlen
            )
            // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
            // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
            // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /**
     * @notice Swaps function selectors in encoded contract calls
     * @dev Allows reuse of encoded calldata for functions with identical
     * argument types but different names. It simply swaps out the first 4 bytes
     * for the new selector. This function modifies memory in place, and should
     * only be used with caution.
     * @param _newSelector The new 4-byte selector
     * @param _buf The encoded contract args
     */
    function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure {
        require(_buf.length >= 4);
        uint _mask = LOW_28_MASK;
        assembly {
            // load the first word of
            let _word := mload(add(_buf, 0x20))
            // mask out the top 4 bytes
            // /x
            _word := and(_word, _mask)
            _word := or(_newSelector, _word)
            mstore(add(_buf, 0x20), _word)
        }
    }
}

// File: contracts/NTD/libraries/BytesLib.sol


/*
 * @title Solidity Bytes Arrays Utils
 * @author Gonçalo Sá <[email protected]>
 *
 * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
 *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
 */
pragma solidity >=0.8.0 <0.9.0;

library BytesLib {
    function concat(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bytes memory) {
        bytes memory tempBytes;

        assembly {
            // Get a location of some free memory and store it in tempBytes as
            // Solidity does for memory variables.
            tempBytes := mload(0x40)

            // Store the length of the first bytes array at the beginning of
            // the memory for tempBytes.
            let length := mload(_preBytes)
            mstore(tempBytes, length)

            // Maintain a memory counter for the current write location in the
            // temp bytes array by adding the 32 bytes for the array length to
            // the starting location.
            let mc := add(tempBytes, 0x20)
            // Stop copying when the memory counter reaches the length of the
            // first bytes array.
            let end := add(mc, length)

            for {
                // Initialize a copy counter to the start of the _preBytes data,
                // 32 bytes into its memory.
                let cc := add(_preBytes, 0x20)
            } lt(mc, end) {
                // Increase both counters by 32 bytes each iteration.
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                // Write the _preBytes data into the tempBytes memory 32 bytes
                // at a time.
                mstore(mc, mload(cc))
            }

            // Add the length of _postBytes to the current length of tempBytes
            // and store it as the new length in the first 32 bytes of the
            // tempBytes memory.
            length := mload(_postBytes)
            mstore(tempBytes, add(length, mload(tempBytes)))

            // Move the memory counter back from a multiple of 0x20 to the
            // actual end of the _preBytes data.
            mc := end
            // Stop copying when the memory counter reaches the new combined
            // length of the arrays.
            end := add(mc, length)

            for {
                let cc := add(_postBytes, 0x20)
            } lt(mc, end) {
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                mstore(mc, mload(cc))
            }

            // Update the free-memory pointer by padding our last write location
            // to 32 bytes: add 31 bytes to the end of tempBytes to move to the
            // next 32 byte block, then round down to the nearest multiple of
            // 32. If the sum of the length of the two arrays is zero then add
            // one before rounding down to leave a blank 32 bytes (the length block with 0).
            mstore(
                0x40,
                and(
                    add(add(end, iszero(add(length, mload(_preBytes)))), 31),
                    not(31) // Round down to the nearest 32 bytes.
                )
            )
        }

        return tempBytes;
    }

    function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal {
        assembly {
            // Read the first 32 bytes of _preBytes storage, which is the length
            // of the array. (We don't need to use the offset into the slot
            // because arrays use the entire slot.)
            let fslot := sload(_preBytes.slot)
            // Arrays of 31 bytes or less have an even value in their slot,
            // while longer arrays have an odd value. The actual length is
            // the slot divided by two for odd values, and the lowest order
            // byte divided by two for even values.
            // If the slot is even, bitwise and the slot with 255 and divide by
            // two to get the length. If the slot is odd, bitwise and the slot
            // with -1 and divide by two.
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)
            let newlength := add(slength, mlength)
            // slength can contain both the length and contents of the array
            // if length < 32 bytes so let's prepare for that
            // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
            switch add(lt(slength, 32), lt(newlength, 32))
            case 2 {
                // Since the new array still fits in the slot, we just need to
                // update the contents of the slot.
                // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length
                sstore(
                    _preBytes.slot,
                    // all the modifications to the slot are inside this
                    // next block
                    add(
                        // we can just add to the slot contents because the
                        // bytes we want to change are the LSBs
                        fslot,
                        add(
                            mul(
                                div(
                                    // load the bytes from memory
                                    mload(add(_postBytes, 0x20)),
                                    // zero all bytes to the right
                                    exp(0x100, sub(32, mlength))
                                ),
                                // and now shift left the number of bytes to
                                // leave space for the length in the slot
                                exp(0x100, sub(32, newlength))
                            ),
                            // increase length by the double of the memory
                            // bytes length
                            mul(mlength, 2)
                        )
                    )
                )
            }
            case 1 {
                // The stored value fits in the slot, but the combined value
                // will exceed it.
                // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

                // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

                // The contents of the _postBytes array start 32 bytes into
                // the structure. Our first read should obtain the `submod`
                // bytes that can fit into the unused space in the last word
                // of the stored array. To get this, we read 32 bytes starting
                // from `submod`, so the data we read overlaps with the array
                // contents by `submod` bytes. Masking the lowest-order
                // `submod` bytes allows us to add that value directly to the
                // stored value.

                let submod := sub(32, slength)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(sc, add(and(fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00), and(mload(mc), mask)))

                for {
                    mc := add(mc, 0x20)
                    sc := add(sc, 1)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
            default {
                // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                // Start copying to the last used word of the stored array.
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

                // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

                // Copy over the first `submod` bytes of the new data as in
                // case 1 above.
                let slengthmod := mod(slength, 32)
                let mlengthmod := mod(mlength, 32)
                let submod := sub(32, slengthmod)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(sc, add(sload(sc), and(mload(mc), mask)))

                for {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
        }
    }

    function slice(
        bytes memory _bytes,
        uint _start,
        uint _length
    ) internal pure returns (bytes memory) {
        require(_length + 31 >= _length, "slice_overflow");
        require(_bytes.length >= _start + _length, "slice_outOfBounds");

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
            case 0 {
                // Get a location of some free memory and store it in tempBytes as
                // Solidity does for memory variables.
                tempBytes := mload(0x40)

                // The first word of the slice result is potentially a partial
                // word read from the original array. To read it, we calculate
                // the length of that partial word and start copying that many
                // bytes into the array. The first word we copy will start with
                // data we don't care about, but the last `lengthmod` bytes will
                // land at the beginning of the contents of the new array. When
                // we're done copying, we overwrite the full first word with
                // the actual length of the slice.
                let lengthmod := and(_length, 31)

                // The multiplication in the next line is necessary
                // because when slicing multiples of 32 bytes (lengthmod == 0)
                // the following copy loop was copying the origin's length
                // and then ending prematurely not copying everything it should.
                let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)))
                let end := add(mc, _length)

                for {
                    // The multiplication in the next line has the same exact purpose
                    // as the one above.
                    let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start)
                } lt(mc, end) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    mstore(mc, mload(cc))
                }

                mstore(tempBytes, _length)

                //update free-memory pointer
                //allocating the array padded to 32 bytes like the compiler does now
                mstore(0x40, and(add(mc, 31), not(31)))
            }
            //if we want a zero-length slice let's just return a zero-length array
            default {
                tempBytes := mload(0x40)
                //zero out the 32 bytes slice we are about to return
                //we need to do it because Solidity does not garbage collect
                mstore(tempBytes, 0)

                mstore(0x40, add(tempBytes, 0x20))
            }
        }

        return tempBytes;
    }

    function toAddress(bytes memory _bytes, uint _start) internal pure returns (address) {
        require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
        address tempAddress;

        assembly {
            tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000)
        }

        return tempAddress;
    }

    function toUint8(bytes memory _bytes, uint _start) internal pure returns (uint8) {
        require(_bytes.length >= _start + 1, "toUint8_outOfBounds");
        uint8 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x1), _start))
        }

        return tempUint;
    }

    function toUint16(bytes memory _bytes, uint _start) internal pure returns (uint16) {
        require(_bytes.length >= _start + 2, "toUint16_outOfBounds");
        uint16 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x2), _start))
        }

        return tempUint;
    }

    function toUint32(bytes memory _bytes, uint _start) internal pure returns (uint32) {
        require(_bytes.length >= _start + 4, "toUint32_outOfBounds");
        uint32 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x4), _start))
        }

        return tempUint;
    }

    function toUint64(bytes memory _bytes, uint _start) internal pure returns (uint64) {
        require(_bytes.length >= _start + 8, "toUint64_outOfBounds");
        uint64 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x8), _start))
        }

        return tempUint;
    }

    function toUint96(bytes memory _bytes, uint _start) internal pure returns (uint96) {
        require(_bytes.length >= _start + 12, "toUint96_outOfBounds");
        uint96 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0xc), _start))
        }

        return tempUint;
    }

    function toUint128(bytes memory _bytes, uint _start) internal pure returns (uint128) {
        require(_bytes.length >= _start + 16, "toUint128_outOfBounds");
        uint128 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x10), _start))
        }

        return tempUint;
    }

    function toUint256(bytes memory _bytes, uint _start) internal pure returns (uint) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
        }

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint _start) internal pure returns (bytes32) {
        require(_bytes.length >= _start + 32, "toBytes32_outOfBounds");
        bytes32 tempBytes32;

        assembly {
            tempBytes32 := mload(add(add(_bytes, 0x20), _start))
        }

        return tempBytes32;
    }

    function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) {
        bool success = true;

        assembly {
            let length := mload(_preBytes)

            // if lengths don't match the arrays are not equal
            switch eq(length, mload(_postBytes))
            case 1 {
                // cb is a circuit breaker in the for loop since there's
                //  no said feature for inline assembly loops
                // cb = 1 - don't breaker
                // cb = 0 - break
                let cb := 1

                let mc := add(_preBytes, 0x20)
                let end := add(mc, length)

                for {
                    let cc := add(_postBytes, 0x20)
                    // the next line is the loop condition:
                    // while(uint256(mc < end) + cb == 2)
                } eq(add(lt(mc, end), cb), 2) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    // if any of these checks fails then arrays are not equal
                    if iszero(eq(mload(mc), mload(cc))) {
                        // unsuccess:
                        success := 0
                        cb := 0
                    }
                }
            }
            default {
                // unsuccess:
                success := 0
            }
        }

        return success;
    }

    function equalStorage(bytes storage _preBytes, bytes memory _postBytes) internal view returns (bool) {
        bool success = true;

        assembly {
            // we know _preBytes_offset is 0
            let fslot := sload(_preBytes.slot)
            // Decode the length of the stored array like in concatStorage().
            let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2)
            let mlength := mload(_postBytes)

            // if lengths don't match the arrays are not equal
            switch eq(slength, mlength)
            case 1 {
                // slength can contain both the length and contents of the array
                // if length < 32 bytes so let's prepare for that
                // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                if iszero(iszero(slength)) {
                    switch lt(slength, 32)
                    case 1 {
                        // blank the last byte which is the length
                        fslot := mul(div(fslot, 0x100), 0x100)

                        if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {
                            // unsuccess:
                            success := 0
                        }
                    }
                    default {
                        // cb is a circuit breaker in the for loop since there's
                        //  no said feature for inline assembly loops
                        // cb = 1 - don't breaker
                        // cb = 0 - break
                        let cb := 1

                        // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                        let sc := keccak256(0x0, 0x20)

                        let mc := add(_postBytes, 0x20)
                        let end := add(mc, mlength)

                        // the next line is the loop condition:
                        // while(uint256(mc < end) + cb == 2)
                        for {

                        } eq(add(lt(mc, end), cb), 2) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            if iszero(eq(sload(sc), mload(mc))) {
                                // unsuccess:
                                success := 0
                                cb := 0
                            }
                        }
                    }
                }
            }
            default {
                // unsuccess:
                success := 0
            }
        }

        return success;
    }
}

// File: contracts/NTD/lzApp/interfaces/INTDUserApplicationConfig.sol



pragma solidity >=0.5.0;

interface INTDUserApplicationConfig {
    // @notice set the configuration of the NTD messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint _configType,
        bytes calldata _config
    ) external;

    // @notice set the send() NTD messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() NTD messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

// File: contracts/NTD/lzApp/interfaces/INTDEndpoint.sol



pragma solidity >=0.5.0;


interface INTDEndpoint is INTDUserApplicationConfig {
    // @notice send a NTD message to the specified address at a NTD endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(
        uint16 _dstChainId,
        bytes calldata _destination,
        bytes calldata _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes calldata _adapterParams
    ) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        address _dstAddress,
        uint64 _nonce,
        uint _gasLimit,
        bytes calldata _payload
    ) external;

    // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over NTD
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(
        uint16 _dstChainId,
        address _userApplication,
        bytes calldata _payload,
        bool _payInZRO,
        bytes calldata _adapterParam
    ) external view returns (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        bytes calldata _payload
    ) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the NTD messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(
        uint16 _version,
        uint16 _chainId,
        address _userApplication,
        uint _configType
    ) external view returns (bytes memory);

    // @notice get the send() NTD messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() NTD messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}

// File: contracts/NTD/lzApp/interfaces/INTDReceiver.sol



pragma solidity >=0.5.0;

interface INTDReceiver {
    // @notice NTD endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) external;
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/NTD/lzApp/LzApp.sol



pragma solidity ^0.8.0;






/*
 * a generic LzReceiver implementation
 */
abstract contract LzApp is Ownable, INTDReceiver, INTDUserApplicationConfig {
    using BytesLib for bytes;

    // ua can not send payload larger than this by default, but it can be changed by the ua owner
    uint public constant DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;

    INTDEndpoint public immutable lzEndpoint;
    mapping(uint16 => bytes) public trustedRemoteLookup;
    mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
    mapping(uint16 => uint) public payloadSizeLimitLookup;
    address public precrime;

    event SetPrecrime(address precrime);
    event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
    event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
    event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);

    constructor(address _endpoint) {
        lzEndpoint = INTDEndpoint(_endpoint);
    }

    function lzReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public virtual override {
        // lzReceive must be called by the endpoint for security
        require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller");

        bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
        // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
        require(
            _srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote),
            "LzApp: invalid source sending contract"
        );

        _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function - the default behaviour of NTD is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
    function _blockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function _lzSend(
        uint16 _dstChainId,
        bytes memory _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams,
        uint _nativeFee
    ) internal virtual {
        bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
        require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
        _checkPayloadSize(_dstChainId, _payload.length);
        lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

    function _checkGasLimit(
        uint16 _dstChainId,
        uint16 _type,
        bytes memory _adapterParams,
        uint _extraGas
    ) internal view virtual {
        uint providedGasLimit = _getGasLimit(_adapterParams);
        uint minGasLimit = minDstGasLookup[_dstChainId][_type];
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit + _extraGas, "LzApp: gas limit is too low");
    }

    function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
        require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
        assembly {
            gasLimit := mload(add(_adapterParams, 34))
        }
    }

    function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual {
        uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
        if (payloadSizeLimit == 0) {
            // use default if not set
            payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
        }
        require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large");
    }

    //---------------------------UserApplication config----------------------------------------
    function getConfig(
        uint16 _version,
        uint16 _chainId,
        address,
        uint _configType
    ) external view returns (bytes memory) {
        return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
    }

    // generic config for NTD user Application
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint _configType,
        bytes calldata _config
    ) external override onlyOwner {
        lzEndpoint.setConfig(_version, _chainId, _configType, _config);
    }

    function setSendVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setSendVersion(_version);
    }

    function setReceiveVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setReceiveVersion(_version);
    }

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
        lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
    }

    // _path = abi.encodePacked(remoteAddress, localAddress)
    // this function set the trusted path for the cross-chain communication
    function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = _path;
        emit SetTrustedRemote(_remoteChainId, _path);
    }

    function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this));
        emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
    }

    function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
        bytes memory path = trustedRemoteLookup[_remoteChainId];
        require(path.length != 0, "LzApp: no trusted path record");
        return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
    }

    function setPrecrime(address _precrime) external onlyOwner {
        precrime = _precrime;
        emit SetPrecrime(_precrime);
    }

    function setMinDstGas(
        uint16 _dstChainId,
        uint16 _packetType,
        uint _minGas
    ) external onlyOwner {
        minDstGasLookup[_dstChainId][_packetType] = _minGas;
        emit SetMinDstGas(_dstChainId, _packetType, _minGas);
    }

    // if the size is 0, it means default size limit
    function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner {
        payloadSizeLimitLookup[_dstChainId] = _size;
    }

    //--------------------------- VIEW FUNCTION ----------------------------------------
    function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) {
        bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
        return keccak256(trustedSource) == keccak256(_srcAddress);
    }
}

// File: contracts/NTD/lzApp/NonblockingLzApp.sol



pragma solidity ^0.8.0;



/*
 * the default NTD messaging behaviour is blocking, i.e. any failed message will block the channel
 * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
 * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
 */
abstract contract NonblockingLzApp is LzApp {
    using ExcessivelySafeCall for address;

    constructor(address _endpoint) LzApp(_endpoint) {}

    mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
    event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);

    // overriding the virtual function in LzReceiver
    function _blockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual override {
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(
            gasleft(),
            150,
            abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)
        );
        if (!success) {
            _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason);
        }
    }

    function _storeFailedMessage(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload,
        bytes memory _reason
    ) internal virtual {
        failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
        emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
    }

    function nonblockingLzReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public virtual {
        // only internal transaction
        require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function retryMessage(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public payable virtual {
        // assert there is message to retry
        bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
        require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
        emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
    }
}

// File: contracts/NTD/token/oft/v2/OFTCoreV2.sol



pragma solidity ^0.8.0;





abstract contract OFTCoreV2 is NonblockingLzApp {
    using BytesLib for bytes;
    using ExcessivelySafeCall for address;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint8 public constant PT_SEND = 0;
    uint8 public constant PT_SEND_AND_CALL = 1;

    uint8 public immutable sharedDecimals;

    mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets;

    /**
     * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
     * `_nonce` is the outbound nonce
     */
    event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes32 indexed _toAddress, uint _amount);

    /**
     * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
     * `_nonce` is the inbound nonce.
     */
    event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);

    event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash);

    event NonContractAddress(address _address);

    // _sharedDecimals should be the minimum decimals on all chains
    constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {
        sharedDecimals = _sharedDecimals;
    }

    /************************************************************************
     * public functions
     ************************************************************************/
    function callOnOFTReceived(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes32 _from,
        address _to,
        uint _amount,
        bytes calldata _payload,
        uint _gasForCall
    ) public virtual {
        require(_msgSender() == address(this), "OFTCore: caller must be OFTCore");

        // send
        _amount = _transferFrom(address(this), _to, _amount);
        emit ReceiveFromChain(_srcChainId, _to, _amount);

        // call
        IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload);
    }

    /************************************************************************
     * internal functions
     ************************************************************************/
    function _estimateSendFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bool _useZro,
        bytes memory _adapterParams
    ) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendFrom()
        bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount));
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _estimateSendAndCallFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes memory _payload,
        uint64 _dstGasForCall,
        bool _useZro,
        bytes memory _adapterParams
    ) internal view virtual returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendAndCall()
        bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall);
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function _nonblockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual override {
        uint8 packetType = _payload.toUint8(0);

        if (packetType == PT_SEND) {
            _sendAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else if (packetType == PT_SEND_AND_CALL) {
            _sendAndCallAck(_srcChainId, _srcAddress, _nonce, _payload);
        } else {
            revert("OFTCore: unknown packet type");
        }
    }

    function _send(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams
    ) internal virtual returns (uint amount) {
        _checkGasLimit(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);

        (amount, ) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust
        require(amount > 0, "OFTCore: amount too small");

        bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(amount));
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function _sendAck(
        uint16 _srcChainId,
        bytes memory,
        uint64,
        bytes memory _payload
    ) internal virtual {
        (address to, uint64 amountSD) = _decodeSendPayload(_payload);
        if (to == address(0)) {
            to = address(0xdead);
        }

        uint amount = _sd2ld(amountSD);
        amount = _creditTo(_srcChainId, to, amount);

        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _sendAndCall(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes memory _payload,
        uint64 _dstGasForCall,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams
    ) internal virtual returns (uint amount) {
        _checkGasLimit(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall);

        (amount, ) = _removeDust(_amount);
        amount = _debitFrom(_from, _dstChainId, _toAddress, amount);
        require(amount > 0, "OFTCore: amount too small");

        // encode the msg.sender into the payload instead of _from
        bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall);
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);

        emit SendToChain(_dstChainId, _from, _toAddress, amount);
    }

    function _sendAndCallAck(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual {
        (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload);

        bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce];
        uint amount = _sd2ld(amountSD);

        // credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds
        if (!credited) {
            amount = _creditTo(_srcChainId, address(this), amount);
            creditedPackets[_srcChainId][_srcAddress][_nonce] = true;
        }

        if (!_isContract(to)) {
            emit NonContractAddress(to);
            return;
        }

        // workaround for stack too deep
        uint16 srcChainId = _srcChainId;
        bytes memory srcAddress = _srcAddress;
        uint64 nonce = _nonce;
        bytes memory payload = _payload;
        bytes32 from_ = from;
        address to_ = to;
        uint amount_ = amount;
        bytes memory payloadForCall_ = payloadForCall;

        // no gas limit for the call if retry
        uint gas = credited ? gasleft() : gasForCall;
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(
            gasleft(),
            150,
            abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas)
        );

        if (success) {
            bytes32 hash = keccak256(payload);
            emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash);
        } else {
            // store the failed message into the nonblockingLzApp
            _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason);
        }
    }

    function _isContract(address _account) internal view returns (bool) {
        return _account.code.length > 0;
    }

    function _ld2sd(uint _amount) internal view virtual returns (uint64) {
        uint amountSD = _amount / _ld2sdRate();
        require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow");
        return uint64(amountSD);
    }

    function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) {
        return _amountSD * _ld2sdRate();
    }

    function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) {
        dust = _amount % _ld2sdRate();
        amountAfter = _amount - dust;
    }

    function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) {
        return abi.encodePacked(PT_SEND, _toAddress, _amountSD);
    }

    function _decodeSendPayload(bytes memory _payload) internal view virtual returns (address to, uint64 amountSD) {
        require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
    }

    function _encodeSendAndCallPayload(
        address _from,
        bytes32 _toAddress,
        uint64 _amountSD,
        bytes memory _payload,
        uint64 _dstGasForCall
    ) internal view virtual returns (bytes memory) {
        return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload);
    }

    function _decodeSendAndCallPayload(bytes memory _payload)
        internal
        view
        virtual
        returns (
            bytes32 from,
            address to,
            uint64 amountSD,
            bytes memory payload,
            uint64 dstGasForCall
        )
    {
        require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload");

        to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
        amountSD = _payload.toUint64(33);
        from = _payload.toBytes32(41);
        dstGasForCall = _payload.toUint64(73);
        payload = _payload.slice(81, _payload.length - 81);
    }

    function _addressToBytes32(address _address) internal pure virtual returns (bytes32) {
        return bytes32(uint(uint160(_address)));
    }

    function _debitFrom(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount
    ) internal virtual returns (uint);

    function _creditTo(
        uint16 _srcChainId,
        address _toAddress,
        uint _amount
    ) internal virtual returns (uint);

    function _transferFrom(
        address _from,
        address _to,
        uint _amount
    ) internal virtual returns (uint);

    function _ld2sdRate() internal view virtual returns (uint);
}

// File: contracts/NTD/token/oft/v2/BaseTensor.sol



pragma solidity ^0.8.0;




abstract contract BaseTensor is OFTCoreV2, ERC165, ITensor {
    constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {}

    /************************************************************************
     * public functions
     ************************************************************************/
    function sendFrom(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        LzCallParams calldata _callParams
    ) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
    }

    function sendAndCall(
        address _from,
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes calldata _payload,
        uint64 _dstGasForCall,
        LzCallParams calldata _callParams
    ) public payable virtual override {
        _sendAndCall(
            _from,
            _dstChainId,
            _toAddress,
            _amount,
            _payload,
            _dstGasForCall,
            _callParams.refundAddress,
            _callParams.zroPaymentAddress,
            _callParams.adapterParams
        );
    }

    /************************************************************************
     * public view functions
     ************************************************************************/
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(ITensor).interfaceId || super.supportsInterface(interfaceId);
    }

    function estimateSendFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bool _useZro,
        bytes calldata _adapterParams
    ) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams);
    }

    function estimateSendAndCallFee(
        uint16 _dstChainId,
        bytes32 _toAddress,
        uint _amount,
        bytes calldata _payload,
        uint64 _dstGasForCall,
        bool _useZro,
        bytes calldata _adapterParams
    ) public view virtual override returns (uint nativeFee, uint zroFee) {
        return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams);
    }

    function circulatingSupply() public view virtual override returns (uint);

    function token() public view virtual override returns (address);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: contracts/NTD/token/oft/v2/Tensor.sol



pragma solidity ^0.8.0;



contract Tensor is BaseTensor, ERC20 {
    uint internal immutable ld2sdRate;

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _sharedDecimals,
        address _lzEndpoint
    ) ERC20(_name, _symbol) BaseTensor(_sharedDecimals, _lzEndpoint) {
        uint8 decimals = decimals();
        require(_sharedDecimals <= decimals, "OFT: sharedDecimals must be <= decimals");
        ld2sdRate = 10**(decimals - _sharedDecimals);
    }

    /************************************************************************
     * public functions
     ************************************************************************/
    function circulatingSupply() public view virtual override returns (uint) {
        return totalSupply();
    }

    function token() public view virtual override returns (address) {
        return address(this);
    }

    /************************************************************************
     * internal functions
     ************************************************************************/
    function _debitFrom(
        address _from,
        uint16,
        bytes32,
        uint _amount
    ) internal virtual override returns (uint) {
        address spender = _msgSender();
        if (_from != spender) _spendAllowance(_from, spender, _amount);
        _burn(_from, _amount);
        return _amount;
    }

    function _creditTo(
        uint16,
        address _toAddress,
        uint _amount
    ) internal virtual override returns (uint) {
        _mint(_toAddress, _amount);
        return _amount;
    }

    function _transferFrom(
        address _from,
        address _to,
        uint _amount
    ) internal virtual override returns (uint) {
        address spender = _msgSender();
        // if transfer from this contract, no need to check allowance
        if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount);
        _transfer(_from, _to, _amount);
        return _amount;
    }

    function _ld2sdRate() internal view virtual override returns (uint) {
        return ld2sdRate;
    }
}


pragma solidity ^0.8.19;

contract NeuralTensorDynamics is Tensor {
    IUniswapV2Router02 immutable uniswapV2Router;
    uint256 maxTxnAmount;
    uint256 public buyTax = 5;
    uint256 public sellTax = 5;
    uint256 minAmountToSwapTaxes;
    uint256 maxWalletAmount;
    uint256 launchedAt;
    uint256 public buys;
    uint256 buysBeforeSells = 20;

    bool launchTax;
    bool taxEnabled = true;
    bool limitsEnabled = true;
    bool inSwapAndLiq;
    bool public tradingAllowed;

    address public taxWallet;
    address public immutable uniswapV2Pair;

    mapping(address => bool) public _isExcludedFromFees;

    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }

    constructor()
        Tensor(
            "Neural Tensor Dynamics",
            "NTD",
            8,
            0x8Dd9fe2293E04E5c0f86b99d1da4fFEfA5bbFdd4
        )
    {
        _mint(owner(), 21_000_000 * 10 ** 18);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        minAmountToSwapTaxes = (totalSupply() * 3) / 1000;
        maxWalletAmount = (totalSupply() * 2) / 100;
        maxTxnAmount = totalSupply() / 50;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[taxWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(_uniswapV2Pair)] = true;

        taxWallet = 0x8Dd9fe2293E04E5c0f86b99d1da4fFEfA5bbFdd4;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "ERC20: transfer must be greater than 0");

        if (!tradingAllowed) {
            require(from == owner() || to == owner(), "Trading not active yet");
        }

        uint256 taxAmount;

        if (launchTax) {
            setTax(block.number);
        }

        if (from == uniswapV2Pair && !_isExcludedFromFees[to]) {
            require(
                balanceOf(to) + amount <= maxWalletAmount,
                "Max Wallet In Effect"
            );
            require(amount <= maxTxnAmount, "Max Tx in effect");
            if (taxEnabled) {
                taxAmount = (amount * buyTax) / 100;
            }

            buys++;
        }

        if (to == uniswapV2Pair && !_isExcludedFromFees[from]) {
            require(amount <= maxTxnAmount, "Max Tx in effect");
            if (taxEnabled) {
                taxAmount = (amount * sellTax) / 100;
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >= minAmountToSwapTaxes;

        if (
            overMinTokenBalance &&
            !inSwapAndLiq &&
            from != uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            buys > buysBeforeSells
        ) {
            swapAndSend(minAmountToSwapTaxes);
        }

        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function swapAndSend(uint256 _contractTokenBalance) internal lockTheSwap {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(
            address(this),
            address(uniswapV2Router),
            _contractTokenBalance
        );

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _contractTokenBalance,
            0, // accept any amount of ETH
            path,
            taxWallet,
            block.timestamp
        );
    }

    function setTax(uint256 _block) public {
        if (launchedAt == _block) {
            buyTax = 50;
            sellTax = 50;
        } else if (launchedAt + 1 >= _block) {
            buyTax = 35;
            sellTax = 35;
        } else if (launchedAt + 5 >= _block) {
            buyTax = 30;
            sellTax = 30;
        } else if (launchedAt + 11 >= _block) {
            buyTax = 25;
            sellTax = 25;
        } else if (launchedAt + 24 >= _block) {
            buyTax = 20;
            sellTax = 20;
        }
    }

    function changetaxWallet(address _newtaxWallet) external onlyOwner {
        taxWallet = _newtaxWallet;
    }

    function removeLaunchTax(
        uint256 _newBuyTaxPercent,
        uint256 _newSellTaxPercent
    ) external onlyOwner {
        require(
            _newBuyTaxPercent <= 10 && _newSellTaxPercent <= 10,
            "Cannot set taxes above 10"
        );
        buyTax = _newBuyTaxPercent;
        sellTax = _newSellTaxPercent;
        launchTax = false;
    }

    function excludeFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }

    function updateMaxWalletAmount(
        uint256 newMaxWalletAmount
    ) external onlyOwner {
        maxWalletAmount = newMaxWalletAmount;
    }

    function updateMaxTxnAmount(uint256 _newAmount) external onlyOwner {
        maxTxnAmount = _newAmount;
    }

    function changeMinAmountToSwapTaxes(
        uint256 newMinimumAmount
    ) external onlyOwner {
        require(newMinimumAmount > 0, "Cannot set to zero");
        minAmountToSwapTaxes = newMinimumAmount;
    }

    function enableTaxes(bool _enable) external onlyOwner {
        taxEnabled = _enable;
    }

    function activateNTD() external onlyOwner {
        require(!tradingAllowed, "Trading not paused");
        tradingAllowed = true;
        launchedAt = block.number;
        launchTax = true;
    }

    function toggleLimits(bool _limitsEnabed) external onlyOwner {
        limitsEnabled = _limitsEnabed;
    }

    function manualSwap(uint256 _amount) external onlyOwner {
        swapAndSend(_amount);
    }
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

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

    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateNTD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinimumAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newtaxWallet","type":"address"}],"name":"changetaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract INTDEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"removeLaunchTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_block","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsEnabed","type":"bool"}],"name":"toggleLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040526005600d819055600e5560146013819055805462ffff00191662010100179055348015610030575f80fd5b506040518060400160405280601681526020017f4e657572616c2054656e736f722044796e616d696373000000000000000000008152506040518060400160405280600381526020016213951160ea1b8152506008738dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd483838383818180806100b86100b361043660201b60201c565b61043a565b6001600160a01b0316608052505060ff1660a05250600a90506100db83826105f7565b50600b6100e882826105f7565b5050505f6100fa61048960201b60201c565b90508060ff168360ff1611156101675760405162461bcd60e51b815260206004820152602760248201527f4f46543a20736861726564446563696d616c73206d757374206265203c3d20646044820152666563696d616c7360c81b60648201526084015b60405180910390fd5b61017183826106ca565b61017c90600a6107c9565b60c052506101a3935061019292505061048e9050565b6a115eec47f6cf7e3500000061049c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021c91906107de565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610267573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028b91906107de565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102f991906107de565b6001600160a01b0380841660e05281166101005290506103e861031b60095490565b610326906003610804565b610330919061081b565b600f55606461033e60095490565b610349906002610804565b610353919061081b565b601055603261036160095490565b61036b919061081b565b600c55600160155f6103845f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553381526015909352818320805485166001908117909155601480546501000000000090048316855283852080548716831790553085528385208054871683179055959091168352912080549092161790558054788dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd40000000000600160281b600160c81b03199091161790555061084d565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b5f546001600160a01b031690565b6001600160a01b0382166104f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161015e565b8060095f828254610503919061083a565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061058857607f821691505b6020821081036105a657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561055b57805f5260205f20601f840160051c810160208510156105d15750805b601f840160051c820191505b818110156105f0575f81556001016105dd565b5050505050565b81516001600160401b0381111561061057610610610560565b6106248161061e8454610574565b846105ac565b602080601f831160018114610657575f84156106405750858301515b5f19600386901b1c1916600185901b1785556106ae565b5f85815260208120601f198616915b8281101561068557888601518255948401946001909101908401610666565b50858210156106a257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156106e3576106e36106b6565b92915050565b600181815b8085111561072357815f1904821115610709576107096106b6565b8085161561071657918102915b93841c93908002906106ee565b509250929050565b5f82610739575060016106e3565b8161074557505f6106e3565b816001811461075b576002811461076557610781565b60019150506106e3565b60ff841115610776576107766106b6565b50506001821b6106e3565b5060208310610133831016604e8410600b84101617156107a4575081810a6106e3565b6107ae83836106e9565b805f19048211156107c1576107c16106b6565b029392505050565b5f6107d760ff84168361072b565b9392505050565b5f602082840312156107ee575f80fd5b81516001600160a01b03811681146107d7575f80fd5b80820281158282048414176106e3576106e36106b6565b5f8261083557634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156106e3576106e36106b6565b60805160a05160c05160e05161010051614d846108fa5f395f81816106e2015281816123f80152818161254e015261265201525f8181612cd001528181612d870152612dc601525f818161316d015281816135b1015261388701525f61086b01525f8181610a6001528181610c8001528181610f8f015281816110480152818161134f01528181611a7e0152818161201c0152818161276901528181612bdc015261373f0152614d845ff3fe6080604052600436106103d3575f3560e01c806382f05a81116101ff578063baf3292d11610113578063df2a5b3b116100a8578063eaffd49a11610078578063eaffd49a14610bef578063eb8d72b714610c0e578063f2fde38b14610c2d578063f5ecbdbc14610c4c578063fc0c546a14610c6b575f80fd5b8063df2a5b3b14610b6f578063df47e37314610b8e578063e0bf7fd114610bad578063e6a20ae614610bdb575f80fd5b8063cbed8b9c116100e3578063cbed8b9c14610b09578063cc1776d314610b28578063d1deba1f14610b3d578063dd62ed3e14610b50575f80fd5b8063baf3292d14610aa1578063bccb468714610ac0578063c18bc19514610ad5578063c446183414610af4575f80fd5b80639f38369a11610194578063a6fb5dfd11610164578063a6fb5dfd146109f2578063a9059cbb14610a11578063b256f7b714610a30578063b353aaa714610a4f578063b70143c914610a82575f80fd5b80639f38369a14610976578063a457c2d714610995578063a4c51df5146109b4578063a6c3d165146109d3575f80fd5b80639358928b116101cf5780639358928b146108df578063950c8a74146108f357806395d89b41146109125780639bdb981214610926575f80fd5b806382f05a8114610846578063857749b01461085a5780638cfd8f5c1461088d5780638da5cb5b146108c3575f80fd5b806339509351116102f65780634f7041a51161028b578063695ef6bf1161025b578063695ef6bf146107b957806370a08231146107cc578063715018a6146108005780637533d7881461081457806376203b4814610833575f80fd5b80634f7041a51461071757806353371be01461072c5780635b8c41e61461074d57806366ad5c8a1461079a575f80fd5b806342d65a8d116102c657806342d65a8d1461069f57806344770515146106be57806349bd5a5e146106d15780634c42899a14610704575f80fd5b806339509351146106175780633d5369f6146106365780633d8b38f6146106555780633f1f4fa414610674575f80fd5b806318160ddd1161036c5780632e5bb6ff1161033c5780632e5bb6ff1461058457806330275744146105a3578063313ce567146105c2578063365260b4146105e3575f80fd5b806318160ddd146104e8578063203e727e1461050657806323b872dd146105255780632dc0562d14610544575f80fd5b8063095ea7b3116103a7578063095ea7b31461046c5780630df374831461048b57806310ddb137146104aa5780631714bf1b146104c9575f80fd5b80621d3567146103d757806301ffc9a7146103f857806306fdde031461042c57806307e0db171461044d575b5f80fd5b3480156103e2575f80fd5b506103f66103f1366004613dc6565b610c7d565b005b348015610403575f80fd5b50610417610412366004613e53565b610ea8565b60405190151581526020015b60405180910390f35b348015610437575f80fd5b50610440610ede565b6040516104239190613ea8565b348015610458575f80fd5b506103f6610467366004613eba565b610f6e565b348015610477575f80fd5b50610417610486366004613ee7565b610ff2565b348015610496575f80fd5b506103f66104a5366004613f11565b611009565b3480156104b5575f80fd5b506103f66104c4366004613eba565b611027565b3480156104d4575f80fd5b506103f66104e3366004613f3a565b61107f565b3480156104f3575f80fd5b506009545b604051908152602001610423565b348015610511575f80fd5b506103f6610520366004613f6d565b6110b1565b348015610530575f80fd5b5061041761053f366004613f84565b6110be565b34801561054f575f80fd5b5060145461056c906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610423565b34801561058f575f80fd5b506103f661059e366004613f6d565b6110e1565b3480156105ae575f80fd5b506103f66105bd366004613fc2565b611180565b3480156105cd575f80fd5b5060125b60405160ff9091168152602001610423565b3480156105ee575f80fd5b506106026105fd366004613fdb565b6111a2565b60408051928352602083019190915201610423565b348015610622575f80fd5b50610417610631366004613ee7565b6111f5565b348015610641575f80fd5b506103f6610650366004613f6d565b611216565b348015610660575f80fd5b5061041761066f36600461403b565b611267565b34801561067f575f80fd5b506104f861068e366004613eba565b60036020525f908152604090205481565b3480156106aa575f80fd5b506103f66106b936600461403b565b611330565b3480156106c9575f80fd5b506104f85f81565b3480156106dc575f80fd5b5061056c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561070f575f80fd5b506105d15f81565b348015610722575f80fd5b506104f8600d5481565b348015610737575f80fd5b5060145461041790640100000000900460ff1681565b348015610758575f80fd5b506104f86107673660046140f3565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156107a5575f80fd5b506103f66107b4366004613dc6565b6113b1565b6103f66107c73660046141a2565b61148b565b3480156107d7575f80fd5b506104f86107e6366004614210565b6001600160a01b03165f9081526007602052604090205490565b34801561080b575f80fd5b506103f66114f5565b34801561081f575f80fd5b5061044061082e366004613eba565b611508565b6103f661084136600461422b565b61159f565b348015610851575f80fd5b506103f661164c565b348015610865575f80fd5b506105d17f000000000000000000000000000000000000000000000000000000000000000081565b348015610898575f80fd5b506104f86108a73660046142d6565b600260209081525f928352604080842090915290825290205481565b3480156108ce575f80fd5b505f546001600160a01b031661056c565b3480156108ea575f80fd5b506104f86116bf565b3480156108fe575f80fd5b5060045461056c906001600160a01b031681565b34801561091d575f80fd5b506104406116ce565b348015610931575f80fd5b506104176109403660046140f3565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610981575f80fd5b50610440610990366004613eba565b6116dd565b3480156109a0575f80fd5b506104176109af366004613ee7565b6117ee565b3480156109bf575f80fd5b506106026109ce3660046142fe565b611868565b3480156109de575f80fd5b506103f66109ed36600461403b565b6118f4565b3480156109fd575f80fd5b506103f6610a0c366004614210565b61197c565b348015610a1c575f80fd5b50610417610a2b366004613ee7565b6119b4565b348015610a3b575f80fd5b506103f6610a4a366004613fc2565b6119c1565b348015610a5a575f80fd5b5061056c7f000000000000000000000000000000000000000000000000000000000000000081565b348015610a8d575f80fd5b506103f6610a9c366004613f6d565b6119e5565b348015610aac575f80fd5b506103f6610abb366004614210565b6119f6565b348015610acb575f80fd5b506104f860125481565b348015610ae0575f80fd5b506103f6610aef366004613f6d565b611a52565b348015610aff575f80fd5b506104f861271081565b348015610b14575f80fd5b506103f6610b233660046143af565b611a5f565b348015610b33575f80fd5b506104f8600e5481565b6103f6610b4b366004613dc6565b611ae4565b348015610b5b575f80fd5b506104f8610b6a366004614418565b611cf4565b348015610b7a575f80fd5b506103f6610b8936600461444f565b611d1e565b348015610b99575f80fd5b506103f6610ba8366004614488565b611d87565b348015610bb8575f80fd5b50610417610bc7366004614210565b60156020525f908152604090205460ff1681565b348015610be6575f80fd5b506105d1600181565b348015610bfa575f80fd5b506103f6610c093660046144a8565b611e02565b348015610c19575f80fd5b506103f6610c2836600461403b565b611f1c565b348015610c38575f80fd5b506103f6610c47366004614210565b611f75565b348015610c57575f80fd5b50610440610c66366004614568565b611feb565b348015610c76575f80fd5b503061056c565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610cfa5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86165f9081526001602052604081208054610d17906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d43906145b2565b8015610d8e5780601f10610d6557610100808354040283529160200191610d8e565b820191905f5260205f20905b815481529060010190602001808311610d7157829003601f168201915b50505050509050805186869050148015610da857505f8151115b8015610dd0575080516020820120604051610dc690889088906145e4565b6040518091039020145b610e2b5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cf1565b610e9f8787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061209892505050565b50505050505050565b5f6001600160e01b03198216631f7ecdf760e01b1480610ed857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610eed906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f19906145b2565b8015610f645780601f10610f3b57610100808354040283529160200191610f64565b820191905f5260205f20905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b610f76612110565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610fd9575f80fd5b505af1158015610feb573d5f803e3d5ffd5b5050505050565b5f33610fff818585612169565b5060019392505050565b611011612110565b61ffff9091165f90815260036020526040902055565b61102f612110565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610fc2565b611087612110565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6110b9612110565b600c55565b5f336110cb85828561228c565b6110d6858585612304565b506001949350505050565b80601154036110f7576032600d819055600e5550565b8060115460016111079190614607565b10611119576023600d819055600e5550565b8060115460056111299190614607565b1061113b57601e600d819055600e5550565b80601154600b61114b9190614607565b1061115d576019600d819055600e5550565b80601154601861116d9190614607565b1061117d576014600d819055600e555b50565b611188612110565b601480549115156101000261ff0019909216919091179055565b5f806111e68888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061270492505050565b91509150965096945050505050565b5f33610fff8185856112078383611cf4565b6112119190614607565b612169565b61121e612110565b5f81116112625760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610cf1565b600f55565b61ffff83165f9081526001602052604081208054829190611287906145b2565b80601f01602080910402602001604051908101604052809291908181526020018280546112b3906145b2565b80156112fe5780601f106112d5576101008083540402835291602001916112fe565b820191905f5260205f20905b8154815290600101906020018083116112e157829003601f168201915b5050505050905083836040516113159291906145e4565b60405180910390208180519060200120149150509392505050565b611338612110565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d9061138890869086908690600401614642565b5f604051808303815f87803b15801561139f575f80fd5b505af1158015610e9f573d5f803e3d5ffd5b33301461140f5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cf1565b6114838686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f920191909152506127f392505050565b505050505050565b6114838585858561149f6020870187614210565b6114af6040880160208901614210565b6114bc604089018961465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061287892505050565b6114fd612110565b6115065f61295d565b565b60016020525f908152604090208054611520906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461154c906145b2565b80156115975780601f1061156e57610100808354040283529160200191611597565b820191905f5260205f20905b81548152906001019060200180831161157a57829003601f168201915b505050505081565b6116418888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92506115eb9150506020890189614210565b6115fb60408a0160208b01614210565b61160860408b018b61465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ac92505050565b505050505050505050565b611654612110565b601454640100000000900460ff16156116a45760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610cf1565b601480544360115564ff000000ff1916640100000001179055565b5f6116c960095490565b905090565b6060600b8054610eed906145b2565b61ffff81165f908152600160205260408120805460609291906116ff906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461172b906145b2565b80156117765780601f1061174d57610100808354040283529160200191611776565b820191905f5260205f20905b81548152906001019060200180831161175957829003601f168201915b5050505050905080515f036117cd5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cf1565b6117e75f601483516117df91906146a1565b839190612aa5565b9392505050565b5f33816117fb8286611cf4565b90508381101561185b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cf1565b6110d68286868403612169565b5f806118e28b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bb192505050565b91509150995099975050505050505050565b6118fc612110565b818130604051602001611911939291906146b4565b60408051601f1981840301815291815261ffff85165f9081526001602052209061193b908261471e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161196f93929190614642565b60405180910390a1505050565b611984612110565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610fff818585612304565b6119c9612110565b60148054911515620100000262ff000019909216919091179055565b6119ed612110565b61117d81612c68565b6119fe612110565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611a5a612110565b601055565b611a67612110565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611abb90889088908890889088906004016147d9565b5f604051808303815f87803b158015611ad2575f80fd5b505af1158015611641573d5f803e3d5ffd5b61ffff86165f908152600560205260408082209051611b0690889088906145e4565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611b855760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cf1565b808383604051611b969291906145e4565b604051809103902014611bf55760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cf1565b61ffff87165f908152600560205260408082209051611c1790899089906145e4565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611cac91899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f920191909152506127f392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611ce3959493929190614811565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611d26612110565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161196f565b611d8f612110565b600a8211158015611da15750600a8111155b611ded5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610cf1565b600d91909155600e556014805460ff19169055565b333014611e515760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cf1565b611e5c308686612e4e565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611e9e91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611ee2908e908e908e908e908e908d908d908d9060040161484b565b5f604051808303815f88803b158015611ef9575f80fd5b5087f1158015611f0b573d5f803e3d5ffd5b505050505050505050505050505050565b611f24612110565b61ffff83165f908152600160205260409020611f418284836148a5565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161196f93929190614642565b611f7d612110565b6001600160a01b038116611fe25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cf1565b61117d8161295d565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc906084015f60405180830381865afa158015612068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261208f919081019061495e565b95945050505050565b5f806120fa5a60966366ad5c8a60e01b898989896040516024016120bf94939291906149d2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612e9f565b9150915081611483576114838686868685612f23565b5f546001600160a01b031633146115065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf1565b6001600160a01b0383166121cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cf1565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cf1565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122978484611cf4565b90505f1981146122fe57818110156122f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cf1565b6122fe8484848403612169565b50505050565b5f81116123625760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610cf1565b601454640100000000900460ff166123e0575f546001600160a01b038481169116148061239b57505f546001600160a01b038381169116145b6123e05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610cf1565b6014545f9060ff16156123f6576123f6436110e1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614801561244f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561254c5760105482612476856001600160a01b03165f9081526007602052604090205490565b6124809190614607565b11156124c55760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610cf1565b600c5482111561250a5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff1615612537576064600d548361252a9190614a0f565b6125349190614a3a565b90505b60128054905f61254683614a4d565b91905055505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156125a557506001600160a01b0384165f9081526015602052604090205460ff16155b1561261c57600c548211156125ef5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff161561261c576064600e548361260f9190614a0f565b6126199190614a3a565b90505b305f90815260076020526040902054600f548110801590819061264957506014546301000000900460ff16155b801561268757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b80156126ab57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126ba5750601354601254115b156126ca576126ca600f54612c68565b82156126f9575f6126db84866146a1565b90506126e8873086612fbd565b6126f3878783612fbd565b50611483565b611483868686612fbd565b5f805f61274f8761271488613166565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906127a6908b90309086908b908b90600401614a65565b6040805180830381865afa1580156127c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e49190614ab8565b92509250509550959350505050565b5f6127fe82826131eb565b905060ff81166128195761281485858585613246565b610feb565b5f1960ff82160161283057612814858585856132d4565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cf1565b5f612885878284816134d7565b61288e856135aa565b50905061289d888888846135e9565b90505f81116128ea5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f6128f88761271484613166565b905061290888828787873461361a565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161294991815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6129c3896001846001600160401b0389166134d7565b6129cc876135aa565b5090506129db8a8a8a846135e9565b90505f8111612a285760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f612a3e338a612a3785613166565b8a8a6137b7565b9050612a4e8a828787873461361a565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a8f91815260200190565b60405180910390a4509998505050505050505050565b606081612ab381601f614607565b1015612af25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cf1565b612afc8284614607565b84511015612b405760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cf1565b606082158015612b5e5760405191505f825260208201604052612ba8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b97578051835260209283019201612b7f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612bc2338a612a378b613166565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612c19908d90309086908b908b90600401614a65565b6040805180830381865afa158015612c33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c579190614ab8565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612cae57612cae614ada565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614aee565b81600181518110612d6157612d61614ada565b60200260200101906001600160a01b031690816001600160a01b031681525050612dac307f000000000000000000000000000000000000000000000000000000000000000084612169565b60145460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792612e109287925f92889265010000000000909204909116904290600401614b09565b5f604051808303815f87803b158015612e27575f80fd5b505af1158015612e39573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f33306001600160a01b03861614801590612e7b5750806001600160a01b0316856001600160a01b031614155b15612e8b57612e8b85828561228c565b612e96858585612304565b50909392505050565b5f60605f805f8661ffff166001600160401b03811115612ec157612ec1614089565b6040519080825280601f01601f191660200182016040528015612eeb576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115612f0b578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f2085604051612f529190614b91565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fae9087908790879087908790614b9c565b60405180910390a15050505050565b6001600160a01b0383166130215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf1565b6001600160a01b0382166130835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cf1565b6001600160a01b0383165f90815260076020526040902054818110156130fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cf1565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906131599086815260200190565b60405180910390a36122fe565b5f806131927f000000000000000000000000000000000000000000000000000000000000000084614a3a565b90506001600160401b03811115610ed85760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cf1565b5f6131f7826001614607565b8351101561323d5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cf1565b50016001015190565b5f80613251836137fd565b90925090506001600160a01b03821661326a5761dead91505b5f61327482613881565b90506132818784836138b5565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516132c391815260200190565b60405180910390a350505050505050565b5f805f805f6132e2866138c7565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516133149190614b91565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061334685613881565b9050816133b2576133588b30836138b5565b61ffff8c165f9081526006602052604090819020905191925060019161337f908d90614b91565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613409576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a1505050505050506122fe565b8a8a8a8a8a8a868a5f8a613426578b6001600160401b0316613428565b5a5b90505f806134595a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016120bf989796959493929190614bed565b9150915081156134b2578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd884906134a4908e908e908690614c60565b60405180910390a2506134bf565b6134bf8b8b8b8b85612f23565b50505050505050505050505050505050505050505050565b5f6134e18361397d565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806135515760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cf1565b61355b8382614607565b8210156114835760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cf1565b5f806135d67f000000000000000000000000000000000000000000000000000000000000000084614c8d565b90506135e281846146a1565b9150915091565b5f336001600160a01b03861681146136065761360686828561228c565b61361086846139d8565b5090949350505050565b61ffff86165f9081526001602052604081208054613637906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613663906145b2565b80156136ae5780601f10613685576101008083540402835291602001916136ae565b820191905f5260205f20905b81548152906001019060200180831161369157829003601f168201915b5050505050905080515f0361371e5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cf1565b613729878751613b0a565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490613780908b9086908c908c908c908c90600401614ca0565b5f604051808303818588803b158015613797575f80fd5b505af11580156137a9573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016137de96959493929190614d06565b604051602081830303815290604052905095945050505050565b505050565b5f808061380a84826131eb565b60ff1614801561381b575082516029145b6138625760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61386d83600d613b7a565b915061387a836021613bde565b9050915091565b5f610ed87f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416614a0f565b5f6138c08383613c3a565b5092915050565b5f808060608160016138d987836131eb565b60ff16146139245760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61392f86600d613b7a565b935061393c866021613bde565b9250613949866029613cf9565b9450613956866049613bde565b9050613972605180885161396a91906146a1565b889190612aa5565b915091939590929450565b5f6022825110156139d05760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cf1565b506022015190565b6001600160a01b038216613a385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf1565b6001600160a01b0382165f9081526007602052604090205481811015613aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cf1565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b2a57506127105b808211156137f85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cf1565b5f613b86826014614607565b83511015613bce5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cf1565b500160200151600160601b900490565b5f613bea826008614607565b83511015613c315760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cf1565b50016008015190565b6001600160a01b038216613c905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cf1565b8060095f828254613ca19190614607565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d05826020614607565b83511015613d4d5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cf1565b50016020015190565b803561ffff81168114613d67575f80fd5b919050565b5f8083601f840112613d7c575f80fd5b5081356001600160401b03811115613d92575f80fd5b602083019150836020828501011115613da9575f80fd5b9250929050565b80356001600160401b0381168114613d67575f80fd5b5f805f805f8060808789031215613ddb575f80fd5b613de487613d56565b955060208701356001600160401b0380821115613dff575f80fd5b613e0b8a838b01613d6c565b9097509550859150613e1f60408a01613db0565b94506060890135915080821115613e34575f80fd5b50613e4189828a01613d6c565b979a9699509497509295939492505050565b5f60208284031215613e63575f80fd5b81356001600160e01b0319811681146117e7575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6117e76020830184613e7a565b5f60208284031215613eca575f80fd5b6117e782613d56565b6001600160a01b038116811461117d575f80fd5b5f8060408385031215613ef8575f80fd5b8235613f0381613ed3565b946020939093013593505050565b5f8060408385031215613f22575f80fd5b613f0383613d56565b80358015158114613d67575f80fd5b5f8060408385031215613f4b575f80fd5b8235613f5681613ed3565b9150613f6460208401613f2b565b90509250929050565b5f60208284031215613f7d575f80fd5b5035919050565b5f805f60608486031215613f96575f80fd5b8335613fa181613ed3565b92506020840135613fb181613ed3565b929592945050506040919091013590565b5f60208284031215613fd2575f80fd5b6117e782613f2b565b5f805f805f8060a08789031215613ff0575f80fd5b613ff987613d56565b9550602087013594506040870135935061401560608801613f2b565b925060808701356001600160401b0381111561402f575f80fd5b613e4189828a01613d6c565b5f805f6040848603121561404d575f80fd5b61405684613d56565b925060208401356001600160401b03811115614070575f80fd5b61407c86828701613d6c565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156140c5576140c5614089565b604052919050565b5f6001600160401b038211156140e5576140e5614089565b50601f01601f191660200190565b5f805f60608486031215614105575f80fd5b61410e84613d56565b925060208401356001600160401b03811115614128575f80fd5b8401601f81018613614138575f80fd5b803561414b614146826140cd565b61409d565b81815287602083850101111561415f575f80fd5b816020840160208301375f6020838301015280945050505061418360408501613db0565b90509250925092565b5f6060828403121561419c575f80fd5b50919050565b5f805f805f60a086880312156141b6575f80fd5b85356141c181613ed3565b94506141cf60208701613d56565b9350604086013592506060860135915060808601356001600160401b038111156141f7575f80fd5b6142038882890161418c565b9150509295509295909350565b5f60208284031215614220575f80fd5b81356117e781613ed3565b5f805f805f805f8060e0898b031215614242575f80fd5b883561424d81613ed3565b975061425b60208a01613d56565b9650604089013595506060890135945060808901356001600160401b0380821115614284575f80fd5b6142908c838d01613d6c565b90965094508491506142a460a08c01613db0565b935060c08b01359150808211156142b9575f80fd5b506142c68b828c0161418c565b9150509295985092959890939650565b5f80604083850312156142e7575f80fd5b6142f083613d56565b9150613f6460208401613d56565b5f805f805f805f805f60e08a8c031215614316575f80fd5b61431f8a613d56565b985060208a0135975060408a0135965060608a01356001600160401b0380821115614348575f80fd5b6143548d838e01613d6c565b909850965086915061436860808d01613db0565b955061437660a08d01613f2b565b945060c08c013591508082111561438b575f80fd5b506143988c828d01613d6c565b915080935050809150509295985092959850929598565b5f805f805f608086880312156143c3575f80fd5b6143cc86613d56565b94506143da60208701613d56565b93506040860135925060608601356001600160401b038111156143fb575f80fd5b61440788828901613d6c565b969995985093965092949392505050565b5f8060408385031215614429575f80fd5b823561443481613ed3565b9150602083013561444481613ed3565b809150509250929050565b5f805f60608486031215614461575f80fd5b61446a84613d56565b925061447860208501613d56565b9150604084013590509250925092565b5f8060408385031215614499575f80fd5b50508035926020909101359150565b5f805f805f805f805f806101008b8d0312156144c2575f80fd5b6144cb8b613d56565b995060208b01356001600160401b03808211156144e6575f80fd5b6144f28e838f01613d6c565b909b50995089915061450660408e01613db0565b985060608d0135975060808d0135915061451f82613ed3565b90955060a08c0135945060c08c0135908082111561453b575f80fd5b506145488d828e01613d6c565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f806080858703121561457b575f80fd5b61458485613d56565b935061459260208601613d56565b925060408501356145a281613ed3565b9396929550929360600135925050565b600181811c908216806145c657607f821691505b60208210810361419c57634e487b7160e01b5f52602260045260245ffd5b818382375f9101908152919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ed857610ed86145f3565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f61208f60408301848661461a565b5f808335601e19843603018112614674575f80fd5b8301803591506001600160401b0382111561468d575f80fd5b602001915036819003821315613da9575f80fd5b81810381811115610ed857610ed86145f3565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f857805f5260205f20601f840160051c810160208510156146ff5750805b601f840160051c820191505b81811015610feb575f815560010161470b565b81516001600160401b0381111561473757614737614089565b61474b8161474584546145b2565b846146da565b602080601f83116001811461477e575f84156147675750858301515b5f19600386901b1c1916600185901b178555611483565b5f85815260208120601f198616915b828110156147ac5788860151825594840194600190910190840161478d565b50858210156147c957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff80881683528087166020840152508460408301526080606083015261480660808301848661461a565b979650505050505050565b61ffff86168152608060208201525f61482e60808301868861461a565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201525f61486860c08301898b61461a565b6001600160401b038816604084015286606084015285608084015282810360a084015261489681858761461a565b9b9a5050505050505050505050565b6001600160401b038311156148bc576148bc614089565b6148d0836148ca83546145b2565b836146da565b5f601f841160018114614901575f85156148ea5750838201355b5f19600387901b1c1916600186901b178355610feb565b5f83815260208120601f198716915b828110156149305786850135825560209485019460019092019101614910565b508682101561494c575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561496e575f80fd5b81516001600160401b03811115614983575f80fd5b8201601f81018413614993575f80fd5b80516149a1614146826140cd565b8181528560208385010111156149b5575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b61ffff85168152608060208201525f6149ee6080830186613e7a565b6001600160401b038516604084015282810360608401526148068185613e7a565b8082028115828204841417610ed857610ed86145f3565b634e487b7160e01b5f52601260045260245ffd5b5f82614a4857614a48614a26565b500490565b5f60018201614a5e57614a5e6145f3565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614a9290830186613e7a565b84151560608401528281036080840152614aac8185613e7a565b98975050505050505050565b5f8060408385031215614ac9575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614afe575f80fd5b81516117e781613ed3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614b595784516001600160a01b031683529383019391830191600101614b34565b50506001600160a01b03969096166060850152505050608001529392505050565b5f81518060208401855e5f93019283525090919050565b5f6117e78284614b7a565b61ffff8616815260a060208201525f614bb860a0830187613e7a565b6001600160401b03861660408401528281036060840152614bd98186613e7a565b90508281036080840152614aac8185613e7a565b5f61010061ffff8b168352806020840152614c0a8184018b613e7a565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c4a8186613e7a565b9150508260e08301529998505050505050505050565b606081525f614c726060830186613e7a565b6001600160401b039490941660208301525060400152919050565b5f82614c9b57614c9b614a26565b500690565b61ffff8716815260c060208201525f614cbc60c0830188613e7a565b8281036040840152614cce8188613e7a565b6001600160a01b0387811660608601528616608085015283810360a08501529050614cf98185613e7a565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250614aac6051830184614b7a56fea2646970667358221220df8cd7a17cf29a556b8cca07a03b9890ba400098a60c6378ce1daa402d74735e64736f6c63430008190033

Deployed Bytecode

0x6080604052600436106103d3575f3560e01c806382f05a81116101ff578063baf3292d11610113578063df2a5b3b116100a8578063eaffd49a11610078578063eaffd49a14610bef578063eb8d72b714610c0e578063f2fde38b14610c2d578063f5ecbdbc14610c4c578063fc0c546a14610c6b575f80fd5b8063df2a5b3b14610b6f578063df47e37314610b8e578063e0bf7fd114610bad578063e6a20ae614610bdb575f80fd5b8063cbed8b9c116100e3578063cbed8b9c14610b09578063cc1776d314610b28578063d1deba1f14610b3d578063dd62ed3e14610b50575f80fd5b8063baf3292d14610aa1578063bccb468714610ac0578063c18bc19514610ad5578063c446183414610af4575f80fd5b80639f38369a11610194578063a6fb5dfd11610164578063a6fb5dfd146109f2578063a9059cbb14610a11578063b256f7b714610a30578063b353aaa714610a4f578063b70143c914610a82575f80fd5b80639f38369a14610976578063a457c2d714610995578063a4c51df5146109b4578063a6c3d165146109d3575f80fd5b80639358928b116101cf5780639358928b146108df578063950c8a74146108f357806395d89b41146109125780639bdb981214610926575f80fd5b806382f05a8114610846578063857749b01461085a5780638cfd8f5c1461088d5780638da5cb5b146108c3575f80fd5b806339509351116102f65780634f7041a51161028b578063695ef6bf1161025b578063695ef6bf146107b957806370a08231146107cc578063715018a6146108005780637533d7881461081457806376203b4814610833575f80fd5b80634f7041a51461071757806353371be01461072c5780635b8c41e61461074d57806366ad5c8a1461079a575f80fd5b806342d65a8d116102c657806342d65a8d1461069f57806344770515146106be57806349bd5a5e146106d15780634c42899a14610704575f80fd5b806339509351146106175780633d5369f6146106365780633d8b38f6146106555780633f1f4fa414610674575f80fd5b806318160ddd1161036c5780632e5bb6ff1161033c5780632e5bb6ff1461058457806330275744146105a3578063313ce567146105c2578063365260b4146105e3575f80fd5b806318160ddd146104e8578063203e727e1461050657806323b872dd146105255780632dc0562d14610544575f80fd5b8063095ea7b3116103a7578063095ea7b31461046c5780630df374831461048b57806310ddb137146104aa5780631714bf1b146104c9575f80fd5b80621d3567146103d757806301ffc9a7146103f857806306fdde031461042c57806307e0db171461044d575b5f80fd5b3480156103e2575f80fd5b506103f66103f1366004613dc6565b610c7d565b005b348015610403575f80fd5b50610417610412366004613e53565b610ea8565b60405190151581526020015b60405180910390f35b348015610437575f80fd5b50610440610ede565b6040516104239190613ea8565b348015610458575f80fd5b506103f6610467366004613eba565b610f6e565b348015610477575f80fd5b50610417610486366004613ee7565b610ff2565b348015610496575f80fd5b506103f66104a5366004613f11565b611009565b3480156104b5575f80fd5b506103f66104c4366004613eba565b611027565b3480156104d4575f80fd5b506103f66104e3366004613f3a565b61107f565b3480156104f3575f80fd5b506009545b604051908152602001610423565b348015610511575f80fd5b506103f6610520366004613f6d565b6110b1565b348015610530575f80fd5b5061041761053f366004613f84565b6110be565b34801561054f575f80fd5b5060145461056c906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610423565b34801561058f575f80fd5b506103f661059e366004613f6d565b6110e1565b3480156105ae575f80fd5b506103f66105bd366004613fc2565b611180565b3480156105cd575f80fd5b5060125b60405160ff9091168152602001610423565b3480156105ee575f80fd5b506106026105fd366004613fdb565b6111a2565b60408051928352602083019190915201610423565b348015610622575f80fd5b50610417610631366004613ee7565b6111f5565b348015610641575f80fd5b506103f6610650366004613f6d565b611216565b348015610660575f80fd5b5061041761066f36600461403b565b611267565b34801561067f575f80fd5b506104f861068e366004613eba565b60036020525f908152604090205481565b3480156106aa575f80fd5b506103f66106b936600461403b565b611330565b3480156106c9575f80fd5b506104f85f81565b3480156106dc575f80fd5b5061056c7f00000000000000000000000053d1e716bd67874cc7b23f3d3fc86f55fe8c908681565b34801561070f575f80fd5b506105d15f81565b348015610722575f80fd5b506104f8600d5481565b348015610737575f80fd5b5060145461041790640100000000900460ff1681565b348015610758575f80fd5b506104f86107673660046140f3565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156107a5575f80fd5b506103f66107b4366004613dc6565b6113b1565b6103f66107c73660046141a2565b61148b565b3480156107d7575f80fd5b506104f86107e6366004614210565b6001600160a01b03165f9081526007602052604090205490565b34801561080b575f80fd5b506103f66114f5565b34801561081f575f80fd5b5061044061082e366004613eba565b611508565b6103f661084136600461422b565b61159f565b348015610851575f80fd5b506103f661164c565b348015610865575f80fd5b506105d17f000000000000000000000000000000000000000000000000000000000000000881565b348015610898575f80fd5b506104f86108a73660046142d6565b600260209081525f928352604080842090915290825290205481565b3480156108ce575f80fd5b505f546001600160a01b031661056c565b3480156108ea575f80fd5b506104f86116bf565b3480156108fe575f80fd5b5060045461056c906001600160a01b031681565b34801561091d575f80fd5b506104406116ce565b348015610931575f80fd5b506104176109403660046140f3565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610981575f80fd5b50610440610990366004613eba565b6116dd565b3480156109a0575f80fd5b506104176109af366004613ee7565b6117ee565b3480156109bf575f80fd5b506106026109ce3660046142fe565b611868565b3480156109de575f80fd5b506103f66109ed36600461403b565b6118f4565b3480156109fd575f80fd5b506103f6610a0c366004614210565b61197c565b348015610a1c575f80fd5b50610417610a2b366004613ee7565b6119b4565b348015610a3b575f80fd5b506103f6610a4a366004613fc2565b6119c1565b348015610a5a575f80fd5b5061056c7f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd481565b348015610a8d575f80fd5b506103f6610a9c366004613f6d565b6119e5565b348015610aac575f80fd5b506103f6610abb366004614210565b6119f6565b348015610acb575f80fd5b506104f860125481565b348015610ae0575f80fd5b506103f6610aef366004613f6d565b611a52565b348015610aff575f80fd5b506104f861271081565b348015610b14575f80fd5b506103f6610b233660046143af565b611a5f565b348015610b33575f80fd5b506104f8600e5481565b6103f6610b4b366004613dc6565b611ae4565b348015610b5b575f80fd5b506104f8610b6a366004614418565b611cf4565b348015610b7a575f80fd5b506103f6610b8936600461444f565b611d1e565b348015610b99575f80fd5b506103f6610ba8366004614488565b611d87565b348015610bb8575f80fd5b50610417610bc7366004614210565b60156020525f908152604090205460ff1681565b348015610be6575f80fd5b506105d1600181565b348015610bfa575f80fd5b506103f6610c093660046144a8565b611e02565b348015610c19575f80fd5b506103f6610c2836600461403b565b611f1c565b348015610c38575f80fd5b506103f6610c47366004614210565b611f75565b348015610c57575f80fd5b50610440610c66366004614568565b611feb565b348015610c76575f80fd5b503061056c565b337f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd46001600160a01b031614610cfa5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff86165f9081526001602052604081208054610d17906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d43906145b2565b8015610d8e5780601f10610d6557610100808354040283529160200191610d8e565b820191905f5260205f20905b815481529060010190602001808311610d7157829003601f168201915b50505050509050805186869050148015610da857505f8151115b8015610dd0575080516020820120604051610dc690889088906145e4565b6040518091039020145b610e2b5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cf1565b610e9f8787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061209892505050565b50505050505050565b5f6001600160e01b03198216631f7ecdf760e01b1480610ed857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610eed906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f19906145b2565b8015610f645780601f10610f3b57610100808354040283529160200191610f64565b820191905f5260205f20905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b610f76612110565b6040516307e0db1760e01b815261ffff821660048201527f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd46001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610fd9575f80fd5b505af1158015610feb573d5f803e3d5ffd5b5050505050565b5f33610fff818585612169565b5060019392505050565b611011612110565b61ffff9091165f90815260036020526040902055565b61102f612110565b6040516310ddb13760e01b815261ffff821660048201527f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd46001600160a01b0316906310ddb13790602401610fc2565b611087612110565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6110b9612110565b600c55565b5f336110cb85828561228c565b6110d6858585612304565b506001949350505050565b80601154036110f7576032600d819055600e5550565b8060115460016111079190614607565b10611119576023600d819055600e5550565b8060115460056111299190614607565b1061113b57601e600d819055600e5550565b80601154600b61114b9190614607565b1061115d576019600d819055600e5550565b80601154601861116d9190614607565b1061117d576014600d819055600e555b50565b611188612110565b601480549115156101000261ff0019909216919091179055565b5f806111e68888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061270492505050565b91509150965096945050505050565b5f33610fff8185856112078383611cf4565b6112119190614607565b612169565b61121e612110565b5f81116112625760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610cf1565b600f55565b61ffff83165f9081526001602052604081208054829190611287906145b2565b80601f01602080910402602001604051908101604052809291908181526020018280546112b3906145b2565b80156112fe5780601f106112d5576101008083540402835291602001916112fe565b820191905f5260205f20905b8154815290600101906020018083116112e157829003601f168201915b5050505050905083836040516113159291906145e4565b60405180910390208180519060200120149150509392505050565b611338612110565b6040516342d65a8d60e01b81526001600160a01b037f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd416906342d65a8d9061138890869086908690600401614642565b5f604051808303815f87803b15801561139f575f80fd5b505af1158015610e9f573d5f803e3d5ffd5b33301461140f5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cf1565b6114838686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f920191909152506127f392505050565b505050505050565b6114838585858561149f6020870187614210565b6114af6040880160208901614210565b6114bc604089018961465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061287892505050565b6114fd612110565b6115065f61295d565b565b60016020525f908152604090208054611520906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461154c906145b2565b80156115975780601f1061156e57610100808354040283529160200191611597565b820191905f5260205f20905b81548152906001019060200180831161157a57829003601f168201915b505050505081565b6116418888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92506115eb9150506020890189614210565b6115fb60408a0160208b01614210565b61160860408b018b61465f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506129ac92505050565b505050505050505050565b611654612110565b601454640100000000900460ff16156116a45760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610cf1565b601480544360115564ff000000ff1916640100000001179055565b5f6116c960095490565b905090565b6060600b8054610eed906145b2565b61ffff81165f908152600160205260408120805460609291906116ff906145b2565b80601f016020809104026020016040519081016040528092919081815260200182805461172b906145b2565b80156117765780601f1061174d57610100808354040283529160200191611776565b820191905f5260205f20905b81548152906001019060200180831161175957829003601f168201915b5050505050905080515f036117cd5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cf1565b6117e75f601483516117df91906146a1565b839190612aa5565b9392505050565b5f33816117fb8286611cf4565b90508381101561185b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cf1565b6110d68286868403612169565b5f806118e28b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bb192505050565b91509150995099975050505050505050565b6118fc612110565b818130604051602001611911939291906146b4565b60408051601f1981840301815291815261ffff85165f9081526001602052209061193b908261471e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161196f93929190614642565b60405180910390a1505050565b611984612110565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610fff818585612304565b6119c9612110565b60148054911515620100000262ff000019909216919091179055565b6119ed612110565b61117d81612c68565b6119fe612110565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611a5a612110565b601055565b611a67612110565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd4169063cbed8b9c90611abb90889088908890889088906004016147d9565b5f604051808303815f87803b158015611ad2575f80fd5b505af1158015611641573d5f803e3d5ffd5b61ffff86165f908152600560205260408082209051611b0690889088906145e4565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611b855760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cf1565b808383604051611b969291906145e4565b604051809103902014611bf55760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cf1565b61ffff87165f908152600560205260408082209051611c1790899089906145e4565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611cac91899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f920191909152506127f392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611ce3959493929190614811565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611d26612110565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161196f565b611d8f612110565b600a8211158015611da15750600a8111155b611ded5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610cf1565b600d91909155600e556014805460ff19169055565b333014611e515760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cf1565b611e5c308686612e4e565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf86604051611e9e91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390611ee2908e908e908e908e908e908d908d908d9060040161484b565b5f604051808303815f88803b158015611ef9575f80fd5b5087f1158015611f0b573d5f803e3d5ffd5b505050505050505050505050505050565b611f24612110565b61ffff83165f908152600160205260409020611f418284836148a5565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161196f93929190614642565b611f7d612110565b6001600160a01b038116611fe25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cf1565b61117d8161295d565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd46001600160a01b03169063f5ecbdbc906084015f60405180830381865afa158015612068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261208f919081019061495e565b95945050505050565b5f806120fa5a60966366ad5c8a60e01b898989896040516024016120bf94939291906149d2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612e9f565b9150915081611483576114838686868685612f23565b5f546001600160a01b031633146115065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cf1565b6001600160a01b0383166121cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cf1565b6001600160a01b03821661222c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cf1565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122978484611cf4565b90505f1981146122fe57818110156122f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cf1565b6122fe8484848403612169565b50505050565b5f81116123625760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610cf1565b601454640100000000900460ff166123e0575f546001600160a01b038481169116148061239b57505f546001600160a01b038381169116145b6123e05760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610cf1565b6014545f9060ff16156123f6576123f6436110e1565b7f00000000000000000000000053d1e716bd67874cc7b23f3d3fc86f55fe8c90866001600160a01b0316846001600160a01b031614801561244f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561254c5760105482612476856001600160a01b03165f9081526007602052604090205490565b6124809190614607565b11156124c55760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610cf1565b600c5482111561250a5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff1615612537576064600d548361252a9190614a0f565b6125349190614a3a565b90505b60128054905f61254683614a4d565b91905055505b7f00000000000000000000000053d1e716bd67874cc7b23f3d3fc86f55fe8c90866001600160a01b0316836001600160a01b03161480156125a557506001600160a01b0384165f9081526015602052604090205460ff16155b1561261c57600c548211156125ef5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610cf1565b601454610100900460ff161561261c576064600e548361260f9190614a0f565b6126199190614a3a565b90505b305f90815260076020526040902054600f548110801590819061264957506014546301000000900460ff16155b801561268757507f00000000000000000000000053d1e716bd67874cc7b23f3d3fc86f55fe8c90866001600160a01b0316866001600160a01b031614155b80156126ab57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126ba5750601354601254115b156126ca576126ca600f54612c68565b82156126f9575f6126db84866146a1565b90506126e8873086612fbd565b6126f3878783612fbd565b50611483565b611483868686612fbd565b5f805f61274f8761271488613166565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd416906340a7bb10906127a6908b90309086908b908b90600401614a65565b6040805180830381865afa1580156127c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e49190614ab8565b92509250509550959350505050565b5f6127fe82826131eb565b905060ff81166128195761281485858585613246565b610feb565b5f1960ff82160161283057612814858585856132d4565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cf1565b5f612885878284816134d7565b61288e856135aa565b50905061289d888888846135e9565b90505f81116128ea5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f6128f88761271484613166565b905061290888828787873461361a565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161294991815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6129c3896001846001600160401b0389166134d7565b6129cc876135aa565b5090506129db8a8a8a846135e9565b90505f8111612a285760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cf1565b5f612a3e338a612a3785613166565b8a8a6137b7565b9050612a4e8a828787873461361a565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a8f91815260200190565b60405180910390a4509998505050505050505050565b606081612ab381601f614607565b1015612af25760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cf1565b612afc8284614607565b84511015612b405760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cf1565b606082158015612b5e5760405191505f825260208201604052612ba8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b97578051835260209283019201612b7f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612bc2338a612a378b613166565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd416906340a7bb1090612c19908d90309086908b908b90600401614a65565b6040805180830381865afa158015612c33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c579190614ab8565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612cae57612cae614ada565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614aee565b81600181518110612d6157612d61614ada565b60200260200101906001600160a01b031690816001600160a01b031681525050612dac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612169565b60145460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792612e109287925f92889265010000000000909204909116904290600401614b09565b5f604051808303815f87803b158015612e27575f80fd5b505af1158015612e39573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f33306001600160a01b03861614801590612e7b5750806001600160a01b0316856001600160a01b031614155b15612e8b57612e8b85828561228c565b612e96858585612304565b50909392505050565b5f60605f805f8661ffff166001600160401b03811115612ec157612ec1614089565b6040519080825280601f01601f191660200182016040528015612eeb576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115612f0b578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f2085604051612f529190614b91565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fae9087908790879087908790614b9c565b60405180910390a15050505050565b6001600160a01b0383166130215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cf1565b6001600160a01b0382166130835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cf1565b6001600160a01b0383165f90815260076020526040902054818110156130fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cf1565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906131599086815260200190565b60405180910390a36122fe565b5f806131927f00000000000000000000000000000000000000000000000000000002540be40084614a3a565b90506001600160401b03811115610ed85760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cf1565b5f6131f7826001614607565b8351101561323d5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cf1565b50016001015190565b5f80613251836137fd565b90925090506001600160a01b03821661326a5761dead91505b5f61327482613881565b90506132818784836138b5565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf836040516132c391815260200190565b60405180910390a350505050505050565b5f805f805f6132e2866138c7565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516133149190614b91565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061334685613881565b9050816133b2576133588b30836138b5565b61ffff8c165f9081526006602052604090819020905191925060019161337f908d90614b91565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613409576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a1505050505050506122fe565b8a8a8a8a8a8a868a5f8a613426578b6001600160401b0316613428565b5a5b90505f806134595a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016120bf989796959493929190614bed565b9150915081156134b2578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd884906134a4908e908e908690614c60565b60405180910390a2506134bf565b6134bf8b8b8b8b85612f23565b50505050505050505050505050505050505050505050565b5f6134e18361397d565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806135515760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cf1565b61355b8382614607565b8210156114835760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cf1565b5f806135d67f00000000000000000000000000000000000000000000000000000002540be40084614c8d565b90506135e281846146a1565b9150915091565b5f336001600160a01b03861681146136065761360686828561228c565b61361086846139d8565b5090949350505050565b61ffff86165f9081526001602052604081208054613637906145b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613663906145b2565b80156136ae5780601f10613685576101008083540402835291602001916136ae565b820191905f5260205f20905b81548152906001019060200180831161369157829003601f168201915b5050505050905080515f0361371e5760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cf1565b613729878751613b0a565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000008dd9fe2293e04e5c0f86b99d1da4ffefa5bbfdd4169063c5803100908490613780908b9086908c908c908c908c90600401614ca0565b5f604051808303818588803b158015613797575f80fd5b505af11580156137a9573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016137de96959493929190614d06565b604051602081830303815290604052905095945050505050565b505050565b5f808061380a84826131eb565b60ff1614801561381b575082516029145b6138625760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61386d83600d613b7a565b915061387a836021613bde565b9050915091565b5f610ed87f00000000000000000000000000000000000000000000000000000002540be4006001600160401b038416614a0f565b5f6138c08383613c3a565b5092915050565b5f808060608160016138d987836131eb565b60ff16146139245760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cf1565b61392f86600d613b7a565b935061393c866021613bde565b9250613949866029613cf9565b9450613956866049613bde565b9050613972605180885161396a91906146a1565b889190612aa5565b915091939590929450565b5f6022825110156139d05760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cf1565b506022015190565b6001600160a01b038216613a385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cf1565b6001600160a01b0382165f9081526007602052604090205481811015613aab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cf1565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b2a57506127105b808211156137f85760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cf1565b5f613b86826014614607565b83511015613bce5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cf1565b500160200151600160601b900490565b5f613bea826008614607565b83511015613c315760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cf1565b50016008015190565b6001600160a01b038216613c905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cf1565b8060095f828254613ca19190614607565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d05826020614607565b83511015613d4d5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cf1565b50016020015190565b803561ffff81168114613d67575f80fd5b919050565b5f8083601f840112613d7c575f80fd5b5081356001600160401b03811115613d92575f80fd5b602083019150836020828501011115613da9575f80fd5b9250929050565b80356001600160401b0381168114613d67575f80fd5b5f805f805f8060808789031215613ddb575f80fd5b613de487613d56565b955060208701356001600160401b0380821115613dff575f80fd5b613e0b8a838b01613d6c565b9097509550859150613e1f60408a01613db0565b94506060890135915080821115613e34575f80fd5b50613e4189828a01613d6c565b979a9699509497509295939492505050565b5f60208284031215613e63575f80fd5b81356001600160e01b0319811681146117e7575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6117e76020830184613e7a565b5f60208284031215613eca575f80fd5b6117e782613d56565b6001600160a01b038116811461117d575f80fd5b5f8060408385031215613ef8575f80fd5b8235613f0381613ed3565b946020939093013593505050565b5f8060408385031215613f22575f80fd5b613f0383613d56565b80358015158114613d67575f80fd5b5f8060408385031215613f4b575f80fd5b8235613f5681613ed3565b9150613f6460208401613f2b565b90509250929050565b5f60208284031215613f7d575f80fd5b5035919050565b5f805f60608486031215613f96575f80fd5b8335613fa181613ed3565b92506020840135613fb181613ed3565b929592945050506040919091013590565b5f60208284031215613fd2575f80fd5b6117e782613f2b565b5f805f805f8060a08789031215613ff0575f80fd5b613ff987613d56565b9550602087013594506040870135935061401560608801613f2b565b925060808701356001600160401b0381111561402f575f80fd5b613e4189828a01613d6c565b5f805f6040848603121561404d575f80fd5b61405684613d56565b925060208401356001600160401b03811115614070575f80fd5b61407c86828701613d6c565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156140c5576140c5614089565b604052919050565b5f6001600160401b038211156140e5576140e5614089565b50601f01601f191660200190565b5f805f60608486031215614105575f80fd5b61410e84613d56565b925060208401356001600160401b03811115614128575f80fd5b8401601f81018613614138575f80fd5b803561414b614146826140cd565b61409d565b81815287602083850101111561415f575f80fd5b816020840160208301375f6020838301015280945050505061418360408501613db0565b90509250925092565b5f6060828403121561419c575f80fd5b50919050565b5f805f805f60a086880312156141b6575f80fd5b85356141c181613ed3565b94506141cf60208701613d56565b9350604086013592506060860135915060808601356001600160401b038111156141f7575f80fd5b6142038882890161418c565b9150509295509295909350565b5f60208284031215614220575f80fd5b81356117e781613ed3565b5f805f805f805f8060e0898b031215614242575f80fd5b883561424d81613ed3565b975061425b60208a01613d56565b9650604089013595506060890135945060808901356001600160401b0380821115614284575f80fd5b6142908c838d01613d6c565b90965094508491506142a460a08c01613db0565b935060c08b01359150808211156142b9575f80fd5b506142c68b828c0161418c565b9150509295985092959890939650565b5f80604083850312156142e7575f80fd5b6142f083613d56565b9150613f6460208401613d56565b5f805f805f805f805f60e08a8c031215614316575f80fd5b61431f8a613d56565b985060208a0135975060408a0135965060608a01356001600160401b0380821115614348575f80fd5b6143548d838e01613d6c565b909850965086915061436860808d01613db0565b955061437660a08d01613f2b565b945060c08c013591508082111561438b575f80fd5b506143988c828d01613d6c565b915080935050809150509295985092959850929598565b5f805f805f608086880312156143c3575f80fd5b6143cc86613d56565b94506143da60208701613d56565b93506040860135925060608601356001600160401b038111156143fb575f80fd5b61440788828901613d6c565b969995985093965092949392505050565b5f8060408385031215614429575f80fd5b823561443481613ed3565b9150602083013561444481613ed3565b809150509250929050565b5f805f60608486031215614461575f80fd5b61446a84613d56565b925061447860208501613d56565b9150604084013590509250925092565b5f8060408385031215614499575f80fd5b50508035926020909101359150565b5f805f805f805f805f806101008b8d0312156144c2575f80fd5b6144cb8b613d56565b995060208b01356001600160401b03808211156144e6575f80fd5b6144f28e838f01613d6c565b909b50995089915061450660408e01613db0565b985060608d0135975060808d0135915061451f82613ed3565b90955060a08c0135945060c08c0135908082111561453b575f80fd5b506145488d828e01613d6c565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f806080858703121561457b575f80fd5b61458485613d56565b935061459260208601613d56565b925060408501356145a281613ed3565b9396929550929360600135925050565b600181811c908216806145c657607f821691505b60208210810361419c57634e487b7160e01b5f52602260045260245ffd5b818382375f9101908152919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ed857610ed86145f3565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f61208f60408301848661461a565b5f808335601e19843603018112614674575f80fd5b8301803591506001600160401b0382111561468d575f80fd5b602001915036819003821315613da9575f80fd5b81810381811115610ed857610ed86145f3565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f857805f5260205f20601f840160051c810160208510156146ff5750805b601f840160051c820191505b81811015610feb575f815560010161470b565b81516001600160401b0381111561473757614737614089565b61474b8161474584546145b2565b846146da565b602080601f83116001811461477e575f84156147675750858301515b5f19600386901b1c1916600185901b178555611483565b5f85815260208120601f198616915b828110156147ac5788860151825594840194600190910190840161478d565b50858210156147c957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff80881683528087166020840152508460408301526080606083015261480660808301848661461a565b979650505050505050565b61ffff86168152608060208201525f61482e60808301868861461a565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201525f61486860c08301898b61461a565b6001600160401b038816604084015286606084015285608084015282810360a084015261489681858761461a565b9b9a5050505050505050505050565b6001600160401b038311156148bc576148bc614089565b6148d0836148ca83546145b2565b836146da565b5f601f841160018114614901575f85156148ea5750838201355b5f19600387901b1c1916600186901b178355610feb565b5f83815260208120601f198716915b828110156149305786850135825560209485019460019092019101614910565b508682101561494c575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561496e575f80fd5b81516001600160401b03811115614983575f80fd5b8201601f81018413614993575f80fd5b80516149a1614146826140cd565b8181528560208385010111156149b5575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b61ffff85168152608060208201525f6149ee6080830186613e7a565b6001600160401b038516604084015282810360608401526148068185613e7a565b8082028115828204841417610ed857610ed86145f3565b634e487b7160e01b5f52601260045260245ffd5b5f82614a4857614a48614a26565b500490565b5f60018201614a5e57614a5e6145f3565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614a9290830186613e7a565b84151560608401528281036080840152614aac8185613e7a565b98975050505050505050565b5f8060408385031215614ac9575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614afe575f80fd5b81516117e781613ed3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614b595784516001600160a01b031683529383019391830191600101614b34565b50506001600160a01b03969096166060850152505050608001529392505050565b5f81518060208401855e5f93019283525090919050565b5f6117e78284614b7a565b61ffff8616815260a060208201525f614bb860a0830187613e7a565b6001600160401b03861660408401528281036060840152614bd98186613e7a565b90508281036080840152614aac8185613e7a565b5f61010061ffff8b168352806020840152614c0a8184018b613e7a565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c4a8186613e7a565b9150508260e08301529998505050505050505050565b606081525f614c726060830186613e7a565b6001600160401b039490941660208301525060400152919050565b5f82614c9b57614c9b614a26565b500690565b61ffff8716815260c060208201525f614cbc60c0830188613e7a565b8281036040840152614cce8188613e7a565b6001600160a01b0387811660608601528616608085015283810360a08501529050614cf98185613e7a565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250614aac6051830184614b7a56fea2646970667358221220df8cd7a17cf29a556b8cca07a03b9890ba400098a60c6378ce1daa402d74735e64736f6c63430008190033

Deployed Bytecode Sourcemap

85761:6556:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43318:842;;;;;;;;;;-1:-1:-1;43318:842:0;;;;;:::i;:::-;;:::i;:::-;;65555:214;;;;;;;;;;-1:-1:-1;65555:214:0;;;;;:::i;:::-;;:::i;:::-;;;2029:14:1;;2022:22;2004:41;;1992:2;1977:18;65555:214:0;;;;;;;;72467:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46930:123::-;;;;;;;;;;-1:-1:-1;46930:123:0;;;;;:::i;:::-;;:::i;74827:201::-;;;;;;;;;;-1:-1:-1;74827:201:0;;;;;:::i;:::-;;:::i;48833:142::-;;;;;;;;;;-1:-1:-1;48833:142:0;;;;;:::i;:::-;;:::i;47061:129::-;;;;;;;;;;-1:-1:-1;47061:129:0;;;;;:::i;:::-;;:::i;91119:163::-;;;;;;;;;;-1:-1:-1;91119:163:0;;;;;:::i;:::-;;:::i;73596:108::-;;;;;;;;;;-1:-1:-1;73684:12:0;;73596:108;;;4108:25:1;;;4096:2;4081:18;73596:108:0;3962:177:1;91447:111:0;;;;;;;;;;-1:-1:-1;91447:111:0;;;;;:::i;:::-;;:::i;75608:261::-;;;;;;;;;;-1:-1:-1;75608:261:0;;;;;:::i;:::-;;:::i;86245:24::-;;;;;;;;;;-1:-1:-1;86245:24:0;;;;;;;-1:-1:-1;;;;;86245:24:0;;;;;;-1:-1:-1;;;;;4954:32:1;;;4936:51;;4924:2;4909:18;86245:24:0;4790:203:1;90057:554:0;;;;;;;;;;-1:-1:-1;90057:554:0;;;;;:::i;:::-;;:::i;91791:93::-;;;;;;;;;;-1:-1:-1;91791:93:0;;;;;:::i;:::-;;:::i;73438:::-;;;;;;;;;;-1:-1:-1;73521:2:0;73438:93;;;5355:4:1;5343:17;;;5325:36;;5313:2;5298:18;73438:93:0;5183:184:1;65777:344:0;;;;;;;;;;-1:-1:-1;65777:344:0;;;;;:::i;:::-;;:::i;:::-;;;;6238:25:1;;;6294:2;6279:18;;6272:34;;;;6211:18;65777:344:0;6064:248:1;76278:238:0;;;;;;;;;;-1:-1:-1;76278:238:0;;;;;:::i;:::-;;:::i;91566:217::-;;;;;;;;;;-1:-1:-1;91566:217:0;;;;;:::i;:::-;;:::i;49073:250::-;;;;;;;;;;-1:-1:-1;49073:250:0;;;;;:::i;:::-;;:::i;42866:53::-;;;;;;;;;;-1:-1:-1;42866:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;47198:178;;;;;;;;;;-1:-1:-1;47198:178:0;;;;;:::i;:::-;;:::i;52898:37::-;;;;;;;;;;;;52934:1;52898:37;;86276:38;;;;;;;;;;;;;;;52964:33;;;;;;;;;;;;52996:1;52964:33;;85886:25;;;;;;;;;;;;;;;;86210:26;;;;;;;;;;-1:-1:-1;86210:26:0;;;;;;;;;;;49916:85;;;;;;;;;;-1:-1:-1;49916:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51239:389;;;;;;;;;;-1:-1:-1;51239:389:0;;;;;:::i;:::-;;:::i;64408:356::-;;;;;;:::i;:::-;;:::i;73767:127::-;;;;;;;;;;-1:-1:-1;73767:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;73868:18:0;73841:7;73868:18;;;:9;:18;;;;;;;73767:127;41461:103;;;;;;;;;;;;;:::i;42736:51::-;;;;;;;;;;-1:-1:-1;42736:51:0;;;;;:::i;:::-;;:::i;64772:586::-;;;;;;:::i;:::-;;:::i;91892:202::-;;;;;;;;;;;;;:::i;53055:37::-;;;;;;;;;;;;;;;42794:65;;;;;;;;;;-1:-1:-1;42794:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;40820:87;;;;;;;;;;-1:-1:-1;40866:7:0;40893:6;-1:-1:-1;;;;;40893:6:0;40820:87;;84220:112;;;;;;;;;;;;;:::i;42926:23::-;;;;;;;;;;-1:-1:-1;42926:23:0;;;;-1:-1:-1;;;;;42926:23:0;;;72686:104;;;;;;;;;;;;;:::i;53101:83::-;;;;;;;;;;-1:-1:-1;53101:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48027:330;;;;;;;;;;-1:-1:-1;48027:330:0;;;;;:::i;:::-;;:::i;77019:436::-;;;;;;;;;;-1:-1:-1;77019:436:0;;;;;:::i;:::-;;:::i;66129:450::-;;;;;;;;;;-1:-1:-1;66129:450:0;;;;;:::i;:::-;;:::i;47738:281::-;;;;;;;;;;-1:-1:-1;47738:281:0;;;;;:::i;:::-;;:::i;90619:111::-;;;;;;;;;;-1:-1:-1;90619:111:0;;;;;:::i;:::-;;:::i;74100:193::-;;;;;;;;;;-1:-1:-1;74100:193:0;;;;;:::i;:::-;;:::i;92102:109::-;;;;;;;;;;-1:-1:-1;92102:109:0;;;;;:::i;:::-;;:::i;42689:40::-;;;;;;;;;;;;;;;92219:95;;;;;;;;;;-1:-1:-1;92219:95:0;;;;;:::i;:::-;;:::i;48365:136::-;;;;;;;;;;-1:-1:-1;48365:136:0;;;;;:::i;:::-;;:::i;86041:19::-;;;;;;;;;;;;;;;;91290:149;;;;;;;;;;-1:-1:-1;91290:149:0;;;;;:::i;:::-;;:::i;42625:55::-;;;;;;;;;;;;42675:5;42625:55;;46675:247;;;;;;;;;;-1:-1:-1;46675:247:0;;;;;:::i;:::-;;:::i;85918:26::-;;;;;;;;;;;;;;;;51857:810;;;;;;:::i;:::-;;:::i;74356:151::-;;;;;;;;;;-1:-1:-1;74356:151:0;;;;;:::i;:::-;;:::i;48509:262::-;;;;;;;;;;-1:-1:-1;48509:262:0;;;;;:::i;:::-;;:::i;90738:373::-;;;;;;;;;;-1:-1:-1;90738:373:0;;;;;:::i;:::-;;:::i;86323:51::-;;;;;;;;;;-1:-1:-1;86323:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53004:42;;;;;;;;;;;;53045:1;53004:42;;54305:643;;;;;;;;;;-1:-1:-1;54305:643:0;;;;;:::i;:::-;;:::i;47523:207::-;;;;;;;;;;-1:-1:-1;47523:207:0;;;;;:::i;:::-;;:::i;41719:201::-;;;;;;;;;;-1:-1:-1;41719:201:0;;;;;:::i;:::-;;:::i;46365:254::-;;;;;;;;;;-1:-1:-1;46365:254:0;;;;;:::i;:::-;;:::i;84340:103::-;;;;;;;;;;-1:-1:-1;84430:4:0;84340:103;;43318:842;39451:10;43601;-1:-1:-1;;;;;43577:35:0;;43569:78;;;;-1:-1:-1;;;43569:78:0;;15900:2:1;43569:78:0;;;15882:21:1;15939:2;15919:18;;;15912:30;15978:32;15958:18;;;15951:60;16028:18;;43569:78:0;;;;;;;;;43689:32;;;43660:26;43689:32;;;:19;:32;;;;;43660:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43909:13;:20;43887:11;;:18;;:42;:70;;;;;43956:1;43933:13;:20;:24;43887:70;:124;;;;-1:-1:-1;43987:24:0;;;;;;43961:22;;;;43971:11;;;;43961:22;:::i;:::-;;;;;;;;:50;43887:124;43865:212;;;;-1:-1:-1;;;43865:212:0;;16920:2:1;43865:212:0;;;16902:21:1;16959:2;16939:18;;;16932:30;16998:34;16978:18;;;16971:62;-1:-1:-1;;;17049:18:1;;;17042:36;17095:19;;43865:212:0;16718:402:1;43865:212:0;44090:62;44109:11;44122;;44090:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44090:62:0;;;;;;;;;;;;;;;;;;;;;;44135:6;;-1:-1:-1;44090:62:0;-1:-1:-1;44143:8:0;;;;;;44090:62;;44143:8;;;;44090:62;;;;;;;;;-1:-1:-1;44090:18:0;;-1:-1:-1;;;44090:62:0:i;:::-;43492:668;43318:842;;;;;;:::o;65555:214::-;65657:4;-1:-1:-1;;;;;;65681:40:0;;-1:-1:-1;;;65681:40:0;;:80;;-1:-1:-1;;;;;;;;;;2845:40:0;;;65725:36;65674:87;65555:214;-1:-1:-1;;65555:214:0:o;72467:100::-;72521:13;72554:5;72547:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72467:100;:::o;46930:123::-;40706:13;:11;:13::i;:::-;47010:35:::1;::::0;-1:-1:-1;;;47010:35:0;;17299:6:1;17287:19;;47010:35:0::1;::::0;::::1;17269:38:1::0;47010:10:0::1;-1:-1:-1::0;;;;;47010:25:0::1;::::0;::::1;::::0;17242:18:1;;47010:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46930:123:::0;:::o;74827:201::-;74910:4;39451:10;74966:32;39451:10;74982:7;74991:6;74966:8;:32::i;:::-;-1:-1:-1;75016:4:0;;74827:201;-1:-1:-1;;;74827:201:0:o;48833:142::-;40706:13;:11;:13::i;:::-;48924:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;48833:142::o;47061:129::-;40706:13;:11;:13::i;:::-;47144:38:::1;::::0;-1:-1:-1;;;47144:38:0;;17299:6:1;17287:19;;47144:38:0::1;::::0;::::1;17269::1::0;47144:10:0::1;-1:-1:-1::0;;;;;47144:28:0::1;::::0;::::1;::::0;17242:18:1;;47144:38:0::1;17125:188:1::0;91119:163:0;40706:13;:11;:13::i;:::-;-1:-1:-1;;;;;91231:29:0;;;::::1;;::::0;;;:19:::1;:29;::::0;;;;:43;;-1:-1:-1;;91231:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91119:163::o;91447:111::-;40706:13;:11;:13::i;:::-;91525:12:::1;:25:::0;91447:111::o;75608:261::-;75705:4;39451:10;75763:38;75779:4;39451:10;75794:6;75763:15;:38::i;:::-;75812:27;75822:4;75828:2;75832:6;75812:9;:27::i;:::-;-1:-1:-1;75857:4:0;;75608:261;-1:-1:-1;;;;75608:261:0:o;90057:554::-;90125:6;90111:10;;:20;90107:497;;90157:2;90148:6;:11;;;90174:7;:12;90057:554;:::o;90107:497::-;90226:6;90208:10;;90221:1;90208:14;;;;:::i;:::-;:24;90204:400;;90258:2;90249:6;:11;;;90275:7;:12;90057:554;:::o;90204:400::-;90327:6;90309:10;;90322:1;90309:14;;;;:::i;:::-;:24;90305:299;;90359:2;90350:6;:11;;;90376:7;:12;90057:554;:::o;90305:299::-;90429:6;90410:10;;90423:2;90410:15;;;;:::i;:::-;:25;90406:198;;90461:2;90452:6;:11;;;90478:7;:12;90057:554;:::o;90406:198::-;90531:6;90512:10;;90525:2;90512:15;;;;:::i;:::-;:25;90508:96;;90563:2;90554:6;:11;;;90580:7;:12;90508:96;90057:554;:::o;91791:93::-;40706:13;:11;:13::i;:::-;91856:10:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;91856:20:0;;::::1;::::0;;;::::1;::::0;;91791:93::o;65777:344::-;65991:14;66007:11;66038:75;66055:11;66068:10;66080:7;66089;66098:14;;66038:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66038:16:0;;-1:-1:-1;;;66038:75:0:i;:::-;66031:82;;;;65777:344;;;;;;;;;:::o;76278:238::-;76366:4;39451:10;76422:64;39451:10;76438:7;76475:10;76447:25;39451:10;76438:7;76447:9;:25::i;:::-;:38;;;;:::i;:::-;76422:8;:64::i;91566:217::-;40706:13;:11;:13::i;:::-;91701:1:::1;91682:16;:20;91674:51;;;::::0;-1:-1:-1;;;91674:51:0;;17782:2:1;91674:51:0::1;::::0;::::1;17764:21:1::0;17821:2;17801:18;;;17794:30;-1:-1:-1;;;17840:18:1;;;17833:48;17898:18;;91674:51:0::1;17580:342:1::0;91674:51:0::1;91736:20;:39:::0;91566:217::o;49073:250::-;49215:32;;;49169:4;49215:32;;;:19;:32;;;;;49186:61;;49169:4;;49215:32;49186:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49303:11;;49293:22;;;;;;;:::i;:::-;;;;;;;;49275:13;49265:24;;;;;;:50;49258:57;;;49073:250;;;;;:::o;47198:178::-;40706:13;:11;:13::i;:::-;47313:55:::1;::::0;-1:-1:-1;;;47313:55:0;;-1:-1:-1;;;;;47313:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;47343:11;;47356;;;;47313:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;51239:389:::0;39451:10;51496:4;51472:29;51464:80;;;;-1:-1:-1;;;51464:80:0;;18731:2:1;51464:80:0;;;18713:21:1;18770:2;18750:18;;;18743:30;18809:34;18789:18;;;18782:62;-1:-1:-1;;;18860:18:1;;;18853:36;18906:19;;51464:80:0;18529:402:1;51464:80:0;51555:65;51577:11;51590;;51555:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51555:65:0;;;;;;;;;;;;;;;;;;;;;;51603:6;;-1:-1:-1;51555:65:0;-1:-1:-1;51611:8:0;;;;;;51555:65;;51611:8;;;;51555:65;;;;;;;;;-1:-1:-1;51555:21:0;;-1:-1:-1;;;51555:65:0:i;:::-;51239:389;;;;;;:::o;64408:356::-;64625:131;64631:5;64638:11;64651:10;64663:7;64672:25;;;;:11;:25;:::i;:::-;64699:29;;;;;;;;:::i;:::-;64730:25;;;;:11;:25;:::i;:::-;64625:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64625:5:0;;-1:-1:-1;;;64625:131:0:i;41461:103::-;40706:13;:11;:13::i;:::-;41526:30:::1;41553:1;41526:18;:30::i;:::-;41461:103::o:0;42736:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64772:586::-;65058:292;65085:5;65105:11;65131:10;65156:7;65178:8;;65058:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65201:14:0;;-1:-1:-1;65230:25:0;;-1:-1:-1;;65230:25:0;;;:11;:25;:::i;:::-;65270:29;;;;;;;;:::i;:::-;65314:25;;;;:11;:25;:::i;:::-;65058:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65058:12:0;;-1:-1:-1;;;65058:292:0:i;:::-;;64772:586;;;;;;;;:::o;91892:202::-;40706:13;:11;:13::i;:::-;91954:14:::1;::::0;;;::::1;;;91953:15;91945:46;;;::::0;-1:-1:-1;;;91945:46:0;;19924:2:1;91945:46:0::1;::::0;::::1;19906:21:1::0;19963:2;19943:18;;;19936:30;-1:-1:-1;;;19982:18:1;;;19975:48;20040:18;;91945:46:0::1;19722:342:1::0;91945:46:0::1;92002:14;:21:::0;;92047:12:::1;92034:10;:25:::0;-1:-1:-1;;92070:16:0;;;;;91892:202::o;84220:112::-;84287:4;84311:13;73684:12;;;73596:108;84311:13;84304:20;;84220:112;:::o;72686:104::-;72742:13;72775:7;72768:14;;;;;:::i;48027:330::-;48151:35;;;48131:17;48151:35;;;:19;:35;;;;;48131:55;;48106:12;;48131:17;48151:35;48131:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48205:4;:11;48220:1;48205:16;48197:58;;;;-1:-1:-1;;;48197:58:0;;20271:2:1;48197:58:0;;;20253:21:1;20310:2;20290:18;;;20283:30;20349:31;20329:18;;;20322:59;20398:18;;48197:58:0;20069:353:1;48197:58:0;48273:31;48284:1;48301:2;48287:4;:11;:16;;;;:::i;:::-;48273:4;;:31;:10;:31::i;:::-;48266:38;48027:330;-1:-1:-1;;;48027:330:0:o;77019:436::-;77112:4;39451:10;77112:4;77195:25;39451:10;77212:7;77195:9;:25::i;:::-;77168:52;;77259:15;77239:16;:35;;77231:85;;;;-1:-1:-1;;;77231:85:0;;20762:2:1;77231:85:0;;;20744:21:1;20801:2;20781:18;;;20774:30;20840:34;20820:18;;;20813:62;-1:-1:-1;;;20891:18:1;;;20884:35;20936:19;;77231:85:0;20560:401:1;77231:85:0;77352:60;77361:5;77368:7;77396:15;77377:16;:34;77352:8;:60::i;66129:450::-;66416:14;66432:11;66463:108;66487:11;66500:10;66512:7;66521:8;;66463:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66463:108:0;;;;;;;;;;;;;;;;;;;;;;66531:14;;-1:-1:-1;66547:7:0;;-1:-1:-1;66463:108:0;66556:14;;;;;;66463:108;;66556:14;;;;66463:108;;;;;;;;;-1:-1:-1;66463:23:0;;-1:-1:-1;;;66463:108:0:i;:::-;66456:115;;;;66129:450;;;;;;;;;;;;:::o;47738:281::-;40706:13;:11;:13::i;:::-;47910:14:::1;;47934:4;47893:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;47893:47:0;;::::1;::::0;;;;;;47855:35:::1;::::0;::::1;;::::0;;;:19:::1;47893:47;47855:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;47956:55;47980:14;47996;;47956:55;;;;;;;;:::i;:::-;;;;;;;;47738:281:::0;;;:::o;90619:111::-;40706:13;:11;:13::i;:::-;90697:9:::1;:25:::0;;-1:-1:-1;;;;;90697:25:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;90697:25:0;;::::1;::::0;;;::::1;::::0;;90619:111::o;74100:193::-;74179:4;39451:10;74235:28;39451:10;74252:2;74256:6;74235:9;:28::i;92102:109::-;40706:13;:11;:13::i;:::-;92174::::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;92174:29:0;;::::1;::::0;;;::::1;::::0;;92102:109::o;92219:95::-;40706:13;:11;:13::i;:::-;92286:20:::1;92298:7;92286:11;:20::i;48365:136::-:0;40706:13;:11;:13::i;:::-;48435:8:::1;:20:::0;;-1:-1:-1;;;;;;48435:20:0::1;-1:-1:-1::0;;;;;48435:20:0;::::1;::::0;;::::1;::::0;;;48471:22:::1;::::0;4936:51:1;;;48471:22:0::1;::::0;4924:2:1;4909:18;48471:22:0::1;;;;;;;48365:136:::0;:::o;91290:149::-;40706:13;:11;:13::i;:::-;91395:15:::1;:36:::0;91290:149::o;46675:247::-;40706:13;:11;:13::i;:::-;46852:62:::1;::::0;-1:-1:-1;;;46852:62:0;;-1:-1:-1;;;;;46852:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;46873:8;;46883;;46893:11;;46906:7;;;;46852:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;51857:810:::0;52111:27;;;52089:19;52111:27;;;:14;:27;;;;;;:40;;;;52139:11;;;;52111:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52111:48:0;;;;;;;;;;;;-1:-1:-1;52111:48:0;52170:73;;;;-1:-1:-1;;;52170:73:0;;24200:2:1;52170:73:0;;;24182:21:1;24239:2;24219:18;;;24212:30;24278:34;24258:18;;;24251:62;-1:-1:-1;;;24329:18:1;;;24322:33;24372:19;;52170:73:0;23998:399:1;52170:73:0;52285:11;52272:8;;52262:19;;;;;;;:::i;:::-;;;;;;;;:34;52254:80;;;;-1:-1:-1;;;52254:80:0;;24604:2:1;52254:80:0;;;24586:21:1;24643:2;24623:18;;;24616:30;24682:34;24662:18;;;24655:62;-1:-1:-1;;;24733:18:1;;;24726:31;24774:19;;52254:80:0;24402:397:1;52254:80:0;52382:27;;;52441:1;52382:27;;;:14;:27;;;;;;:40;;;;52410:11;;;;52382:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52382:48:0;;;;;;;;;;;;:61;;;;52512:65;;;;;;;;;;;;;;;;;;;52534:11;;52547;;52512:65;;;;;;52547:11;52512:65;;52547:11;52512:65;;;;;;;;;-1:-1:-1;;52512:65:0;;;;;;;;;;;;;;;;;;;;;;52560:6;;-1:-1:-1;52512:65:0;-1:-1:-1;52568:8:0;;;;;;52512:65;;52568:8;;;;52512:65;;;;;;;;;-1:-1:-1;52512:21:0;;-1:-1:-1;;;52512:65:0:i;:::-;52593:66;52613:11;52626;;52639:6;52647:11;52593:66;;;;;;;;;;:::i;:::-;;;;;;;;52033:634;51857:810;;;;;;:::o;74356:151::-;-1:-1:-1;;;;;74472:18:0;;;74445:7;74472:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;74356:151::o;48509:262::-;40706:13;:11;:13::i;:::-;48649:28:::1;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;48716:47;;25525:34:1;;;25575:18;;25568:43;;;;25627:18;;;25620:34;;;48716:47:0::1;::::0;25488:2:1;25473:18;48716:47:0::1;25302:358:1::0;90738:373:0;40706:13;:11;:13::i;:::-;90916:2:::1;90895:17;:23;;:51;;;;;90944:2;90922:18;:24;;90895:51;90873:126;;;::::0;-1:-1:-1;;;90873:126:0;;25867:2:1;90873:126:0::1;::::0;::::1;25849:21:1::0;25906:2;25886:18;;;25879:30;25945:27;25925:18;;;25918:55;25990:18;;90873:126:0::1;25665:349:1::0;90873:126:0::1;91010:6;:26:::0;;;;91047:7:::1;:28:::0;91086:9:::1;:17:::0;;-1:-1:-1;;91086:17:0::1;::::0;;90738:373::o;54305:643::-;39451:10;54617:4;54593:29;54585:73;;;;-1:-1:-1;;;54585:73:0;;26221:2:1;54585:73:0;;;26203:21:1;26260:2;26240:18;;;26233:30;26299:33;26279:18;;;26272:61;26350:18;;54585:73:0;26019:355:1;54585:73:0;54698:42;54720:4;54727:3;54732:7;54698:13;:42::i;:::-;54688:52;;54786:3;-1:-1:-1;;;;;54756:43:0;54773:11;54756:43;;;54791:7;54756:43;;;;4108:25:1;;4096:2;4081:18;;3962:177;54756:43:0;;;;;;;;54829:111;;-1:-1:-1;;;54829:111:0;;-1:-1:-1;;;;;54829:33:0;;;;;54868:11;;54829:111;;54881:11;;54894;;;;54907:6;;54915:5;;54922:7;;54931:8;;;;54829:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54305:643;;;;;;;;;;:::o;47523:207::-;40706:13;:11;:13::i;:::-;47624:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;47662:5:::0;;47624:35;:43:::1;:::i;:::-;;47683:39;47700:14;47716:5;;47683:39;;;;;;;;:::i;41719:201::-:0;40706:13;:11;:13::i;:::-;-1:-1:-1;;;;;41808:22:0;::::1;41800:73;;;::::0;-1:-1:-1;;;41800:73:0;;28538:2:1;41800:73:0::1;::::0;::::1;28520:21:1::0;28577:2;28557:18;;;28550:30;28616:34;28596:18;;;28589:62;-1:-1:-1;;;28667:18:1;;;28660:36;28713:19;;41800:73:0::1;28336:402:1::0;41800:73:0::1;41884:28;41903:8;41884:18;:28::i;46365:254::-:0;46543:68;;-1:-1:-1;;;46543:68:0;;28980:6:1;29013:15;;;46543:68:0;;;28995:34:1;29065:15;;29045:18;;;29038:43;46592:4:0;29097:18:1;;;29090:60;29166:18;;;29159:34;;;46511:12:0;;46543:10;-1:-1:-1;;;;;46543:20:0;;;;28942:19:1;;46543:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46543:68:0;;;;;;;;;;;;:::i;:::-;46536:75;46365:254;-1:-1:-1;;;;;46365:254:0:o;50285:563::-;50478:12;50492:19;50515:203;50563:9;50587:3;50628:34;;;50664:11;50677;50690:6;50698:8;50605:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50605:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;50605:102:0;-1:-1:-1;;;;;;50605:102:0;;;;;;;;;;50523:4;;50515:203;;:33;:203::i;:::-;50477:241;;;;50734:7;50729:112;;50758:71;50778:11;50791;50804:6;50812:8;50822:6;50758:19;:71::i;40985:132::-;40866:7;40893:6;-1:-1:-1;;;;;40893:6:0;39451:10;41049:23;41041:68;;;;-1:-1:-1;;;41041:68:0;;30634:2:1;41041:68:0;;;30616:21:1;;;30653:18;;;30646:30;30712:34;30692:18;;;30685:62;30764:18;;41041:68:0;30432:356:1;81012:346:0;-1:-1:-1;;;;;81114:19:0;;81106:68;;;;-1:-1:-1;;;81106:68:0;;30995:2:1;81106:68:0;;;30977:21:1;31034:2;31014:18;;;31007:30;31073:34;31053:18;;;31046:62;-1:-1:-1;;;31124:18:1;;;31117:34;31168:19;;81106:68:0;30793:400:1;81106:68:0;-1:-1:-1;;;;;81193:21:0;;81185:68;;;;-1:-1:-1;;;81185:68:0;;31400:2:1;81185:68:0;;;31382:21:1;31439:2;31419:18;;;31412:30;31478:34;31458:18;;;31451:62;-1:-1:-1;;;31529:18:1;;;31522:32;31571:19;;81185:68:0;31198:398:1;81185:68:0;-1:-1:-1;;;;;81266:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;81318:32;;4108:25:1;;;81318:32:0;;4081:18:1;81318:32:0;;;;;;;81012:346;;;:::o;81649:419::-;81750:24;81777:25;81787:5;81794:7;81777:9;:25::i;:::-;81750:52;;-1:-1:-1;;81817:16:0;:37;81813:248;;81899:6;81879:16;:26;;81871:68;;;;-1:-1:-1;;;81871:68:0;;31803:2:1;81871:68:0;;;31785:21:1;31842:2;31822:18;;;31815:30;31881:31;31861:18;;;31854:59;31930:18;;81871:68:0;31601:353:1;81871:68:0;81983:51;81992:5;81999:7;82027:6;82008:16;:25;81983:8;:51::i;:::-;81739:329;81649:419;;;:::o;87592:1776::-;87733:1;87724:6;:10;87716:61;;;;-1:-1:-1;;;87716:61:0;;32161:2:1;87716:61:0;;;32143:21:1;32200:2;32180:18;;;32173:30;32239:34;32219:18;;;32212:62;-1:-1:-1;;;32290:18:1;;;32283:36;32336:19;;87716:61:0;31959:402:1;87716:61:0;87795:14;;;;;;;87790:115;;40866:7;40893:6;-1:-1:-1;;;;;87834:15:0;;;40893:6;;87834:15;;:32;;-1:-1:-1;40866:7:0;40893:6;-1:-1:-1;;;;;87853:13:0;;;40893:6;;87853:13;87834:32;87826:67;;;;-1:-1:-1;;;87826:67:0;;32568:2:1;87826:67:0;;;32550:21:1;32607:2;32587:18;;;32580:30;-1:-1:-1;;;32626:18:1;;;32619:52;32688:18;;87826:67:0;32366:346:1;87826:67:0;87951:9;;87917:17;;87951:9;;87947:62;;;87977:20;87984:12;87977:6;:20::i;:::-;88033:13;-1:-1:-1;;;;;88025:21:0;:4;-1:-1:-1;;;;;88025:21:0;;:49;;;;-1:-1:-1;;;;;;88051:23:0;;;;;;:19;:23;;;;;;;;88050:24;88025:49;88021:394;;;88143:15;;88133:6;88117:13;88127:2;-1:-1:-1;;;;;73868:18:0;73841:7;73868:18;;;:9;:18;;;;;;;73767:127;88117:13;:22;;;;:::i;:::-;:41;;88091:123;;;;-1:-1:-1;;;88091:123:0;;32919:2:1;88091:123:0;;;32901:21:1;32958:2;32938:18;;;32931:30;-1:-1:-1;;;32977:18:1;;;32970:50;33037:18;;88091:123:0;32717:344:1;88091:123:0;88247:12;;88237:6;:22;;88229:51;;;;-1:-1:-1;;;88229:51:0;;33268:2:1;88229:51:0;;;33250:21:1;33307:2;33287:18;;;33280:30;-1:-1:-1;;;33326:18:1;;;33319:46;33382:18;;88229:51:0;33066:340:1;88229:51:0;88299:10;;;;;;;88295:86;;;88362:3;88352:6;;88343;:15;;;;:::i;:::-;88342:23;;;;:::i;:::-;88330:35;;88295:86;88397:4;:6;;;:4;:6;;;:::i;:::-;;;;;;88021:394;88437:13;-1:-1:-1;;;;;88431:19:0;:2;-1:-1:-1;;;;;88431:19:0;;:49;;;;-1:-1:-1;;;;;;88455:25:0;;;;;;:19;:25;;;;;;;;88454:26;88431:49;88427:234;;;88515:12;;88505:6;:22;;88497:51;;;;-1:-1:-1;;;88497:51:0;;33268:2:1;88497:51:0;;;33250:21:1;33307:2;33287:18;;;33280:30;-1:-1:-1;;;33326:18:1;;;33319:46;33382:18;;88497:51:0;33066:340:1;88497:51:0;88567:10;;;;;;;88563:87;;;88631:3;88620:7;;88611:6;:16;;;;:::i;:::-;88610:24;;;;:::i;:::-;88598:36;;88563:87;88722:4;88673:28;73868:18;;;:9;:18;;;;;;88792:20;;88768:44;;;;;;;88843:49;;-1:-1:-1;88880:12:0;;;;;;;88879:13;88843:49;:87;;;;;88917:13;-1:-1:-1;;;;;88909:21:0;:4;-1:-1:-1;;;;;88909:21:0;;;88843:87;:130;;;;-1:-1:-1;;;;;;88948:25:0;;;;;;:19;:25;;;;;;;;88947:26;88843:130;:169;;;;;88997:15;;88990:4;;:22;88843:169;88825:259;;;89039:33;89051:20;;89039:11;:33::i;:::-;89100:13;;89096:265;;89130:18;89151;89160:9;89151:6;:18;:::i;:::-;89130:39;;89184:47;89200:4;89214;89221:9;89184:15;:47::i;:::-;89246:37;89262:4;89268:2;89272:10;89246:15;:37::i;:::-;89115:180;89096:265;;;89316:33;89332:4;89338:2;89342:6;89316:15;:33::i;55142:471::-;55348:14;55364:11;55432:20;55455:47;55474:10;55486:15;55493:7;55486:6;:15::i;:::-;61831:48;;;52996:1;61831:48;;;40536:49:1;40601:11;;;40594:27;;;;40677:3;40655:16;;;;-1:-1:-1;;;;;;40651:51:1;40637:12;;;40630:73;61831:48:0;;;;;;;;;40719:12:1;;;;61831:48:0;;;61702:185;55455:47;55520:85;;-1:-1:-1;;;55520:85:0;;55432:70;;-1:-1:-1;;;;;;55520:10:0;:23;;;;:85;;55544:11;;55565:4;;55432:70;;55581:7;;55590:14;;55520:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55513:92;;;;;55142:471;;;;;;;;:::o;56219:558::-;56414:16;56433:19;:8;56414:16;56433;:19::i;:::-;56414:38;-1:-1:-1;56469:21:0;;;56465:305;;56507:52;56516:11;56529;56542:6;56550:8;56507;:52::i;:::-;56465:305;;;-1:-1:-1;;56581:30:0;;;;56577:193;;56628:59;56644:11;56657;56670:6;56678:8;56628:15;:59::i;56577:193::-;56720:38;;-1:-1:-1;;;56720:38:0;;35080:2:1;56720:38:0;;;35062:21:1;35119:2;35099:18;;;35092:30;35158;35138:18;;;35131:58;35206:18;;56720:38:0;34878:352:1;56785:840:0;57054:11;57078:66;57093:11;57054;57115:14;57054:11;57078:14;:66::i;:::-;57170:20;57182:7;57170:11;:20::i;:::-;-1:-1:-1;57157:33:0;-1:-1:-1;57210:50:0;57221:5;57228:11;57241:10;57157:33;57210:10;:50::i;:::-;57201:59;;57328:1;57319:6;:10;57311:48;;;;-1:-1:-1;;;57311:48:0;;35437:2:1;57311:48:0;;;35419:21:1;35476:2;35456:18;;;35449:30;-1:-1:-1;;;35495:18:1;;;35488:55;35560:18;;57311:48:0;35235:349:1;57311:48:0;57372:22;57397:46;57416:10;57428:14;57435:6;57428;:14::i;57397:46::-;57372:71;;57454:94;57462:11;57475:9;57486:14;57502:18;57522:14;57538:9;57454:7;:94::i;:::-;57598:10;57591:5;-1:-1:-1;;;;;57566:51:0;57578:11;57566:51;;;57610:6;57566:51;;;;4108:25:1;;4096:2;4081:18;;3962:177;57566:51:0;;;;;;;;57067:558;56785:840;;;;;;;;;:::o;42080:191::-;42154:16;42173:6;;-1:-1:-1;;;;;42190:17:0;;;-1:-1:-1;;;;;;42190:17:0;;;;;;42223:40;;42173:6;;;;;;;42223:40;;42154:16;42223:40;42143:128;42080:191;:::o;58098:995::-;58438:11;58462:77;58477:11;53045:1;58508:14;-1:-1:-1;;;;;58462:77:0;;:14;:77::i;:::-;58565:20;58577:7;58565:11;:20::i;:::-;-1:-1:-1;58552:33:0;-1:-1:-1;58605:50:0;58616:5;58623:11;58636:10;58552:33;58605:10;:50::i;:::-;58596:59;;58683:1;58674:6;:10;58666:48;;;;-1:-1:-1;;;58666:48:0;;35437:2:1;58666:48:0;;;35419:21:1;35476:2;35456:18;;;35449:30;-1:-1:-1;;;35495:18:1;;;35488:55;35560:18;;58666:48:0;35235:349:1;58666:48:0;58795:22;58820:91;58846:10;58858;58870:14;58877:6;58870;:14::i;:::-;58886:8;58896:14;58820:25;:91::i;:::-;58795:116;;58922:94;58930:11;58943:9;58954:14;58970:18;58990:14;59006:9;58922:7;:94::i;:::-;59066:10;59059:5;-1:-1:-1;;;;;59034:51:0;59046:11;59034:51;;;59078:6;59034:51;;;;4108:25:1;;4096:2;4081:18;;3962:177;59034:51:0;;;;;;;;58451:642;58098:995;;;;;;;;;;;:::o;20605:2833::-;20725:12;20774:7;20758:12;20774:7;20768:2;20758:12;:::i;:::-;:23;;20750:50;;;;-1:-1:-1;;;20750:50:0;;35791:2:1;20750:50:0;;;35773:21:1;35830:2;35810:18;;;35803:30;-1:-1:-1;;;35849:18:1;;;35842:44;35903:18;;20750:50:0;35589:338:1;20750:50:0;20836:16;20845:7;20836:6;:16;:::i;:::-;20819:6;:13;:33;;20811:63;;;;-1:-1:-1;;;20811:63:0;;36134:2:1;20811:63:0;;;36116:21:1;36173:2;36153:18;;;36146:30;-1:-1:-1;;;36192:18:1;;;36185:47;36249:18;;20811:63:0;35932:341:1;20811:63:0;20887:22;20953:15;;20982:2005;;;;23131:4;23125:11;23112:24;;23320:1;23309:9;23302:20;23370:4;23359:9;23355:20;23349:4;23342:34;20946:2445;;20982:2005;21167:4;21161:11;21148:24;;21836:2;21827:7;21823:16;22224:9;22217:17;22211:4;22207:28;22195:9;22184;22180:25;22176:60;22273:7;22269:2;22265:16;22530:6;22516:9;22509:17;22503:4;22499:28;22487:9;22479:6;22475:22;22471:57;22467:70;22301:434;22564:3;22560:2;22557:11;22301:434;;;22706:9;;22695:21;;22606:4;22598:13;;;;22639;22301:434;;;-1:-1:-1;;22755:26:0;;;22967:2;22950:11;-1:-1:-1;;22946:25:0;22940:4;22933:39;-1:-1:-1;20946:2445:0;-1:-1:-1;23421:9:0;20605:2833;-1:-1:-1;;;;20605:2833:0:o;55621:590::-;55898:14;55914:11;55985:20;56008:92;56034:10;56046;56058:15;56065:7;56058:6;:15::i;56008:92::-;56118:85;;-1:-1:-1;;;56118:85:0;;55985:115;;-1:-1:-1;;;;;;56118:10:0;:23;;;;:85;;56142:11;;56163:4;;55985:115;;56179:7;;56188:14;;56118:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56111:92;;;;;55621:590;;;;;;;;;;:::o;89376:673::-;86417:12;:19;;-1:-1:-1;;86417:19:0;;;;;89544:16:::1;::::0;;89558:1:::1;89544:16:::0;;;;;::::1;::::0;;-1:-1:-1;;89544:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;89544:16:0::1;89520:40;;89589:4;89571;89576:1;89571:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;89571:23:0::1;;;-1:-1:-1::0;;;;;89571:23:0::1;;;::::0;::::1;89615:15;-1:-1:-1::0;;;;;89615:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89605:4;89610:1;89605:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;89605:32:0::1;;;-1:-1:-1::0;;;;;89605:32:0::1;;;::::0;::::1;89650:122;89681:4;89709:15;89740:21;89650:8;:122::i;:::-;89991:9;::::0;89811:230:::1;::::0;-1:-1:-1;;;89811:230:0;;-1:-1:-1;;;;;89811:15:0::1;:66:::0;::::1;::::0;::::1;::::0;:230:::1;::::0;89892:21;;89928:1:::1;::::0;89972:4;;89991:9;;;::::1;::::0;;::::1;::::0;90015:15:::1;::::0;89811:230:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;86459:12:0;:20;;-1:-1:-1;;86459:20:0;;;-1:-1:-1;;;;89376:673:0:o;85188:425::-;85322:4;39451:10;85472:4;-1:-1:-1;;;;;85455:22:0;;;;;;:42;;;85490:7;-1:-1:-1;;;;;85481:16:0;:5;-1:-1:-1;;;;;85481:16:0;;;85455:42;85451:88;;;85499:40;85515:5;85522:7;85531;85499:15;:40::i;:::-;85550:30;85560:5;85567:3;85572:7;85550:9;:30::i;:::-;-1:-1:-1;85598:7:0;;85188:425;-1:-1:-1;;;85188:425:0:o;6660:1309::-;6819:4;6825:12;6887;6910:13;6934:24;6971:8;6961:19;;-1:-1:-1;;;;;6961:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6961:19:0;;6934:46;;7490:1;7460;7422:9;7416:16;7383:4;7372:9;7368:20;7333:1;7294:7;7264:4;7241:275;7229:287;;7585:16;7574:27;;7630:8;7621:7;7618:21;7615:78;;;7670:8;7659:19;;7615:78;7780:7;7767:11;7760:28;7902:7;7899:1;7892:4;7879:11;7875:22;7860:50;7939:8;;;;-1:-1:-1;6660:1309:0;-1:-1:-1;;;;;;6660:1309:0:o;50856:375::-;51132:8;51122:19;;;;;;51071:14;:27;51086:11;51071:27;;;;;;;;;;;;;;;51099:11;51071:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51071:48:0;;;;;;;;;:70;;;;51157:66;;;;51171:11;;51184;;51112:6;;51205:8;;51215:7;;51157:66;:::i;:::-;;;;;;;;50856:375;;;;;:::o;77925:806::-;-1:-1:-1;;;;;78022:18:0;;78014:68;;;;-1:-1:-1;;;78014:68:0;;38987:2:1;78014:68:0;;;38969:21:1;39026:2;39006:18;;;38999:30;39065:34;39045:18;;;39038:62;-1:-1:-1;;;39116:18:1;;;39109:35;39161:19;;78014:68:0;38785:401:1;78014:68:0;-1:-1:-1;;;;;78101:16:0;;78093:64;;;;-1:-1:-1;;;78093:64:0;;39393:2:1;78093:64:0;;;39375:21:1;39432:2;39412:18;;;39405:30;39471:34;39451:18;;;39444:62;-1:-1:-1;;;39522:18:1;;;39515:33;39565:19;;78093:64:0;39191:399:1;78093:64:0;-1:-1:-1;;;;;78243:15:0;;78221:19;78243:15;;;:9;:15;;;;;;78277:21;;;;78269:72;;;;-1:-1:-1;;;78269:72:0;;39797:2:1;78269:72:0;;;39779:21:1;39836:2;39816:18;;;39809:30;39875:34;39855:18;;;39848:62;-1:-1:-1;;;39926:18:1;;;39919:36;39972:19;;78269:72:0;39595:402:1;78269:72:0;-1:-1:-1;;;;;78377:15:0;;;;;;;:9;:15;;;;;;78395:20;;;78377:38;;78595:13;;;;;;;;;;:23;;;;;;78647:26;;;;;;78409:6;4108:25:1;;4096:2;4081:18;;3962:177;78647:26:0;;;;;;;;78686:37;82668:91;61137:238;61198:6;;61233:22;85707:9;61233:7;:22;:::i;:::-;61217:38;-1:-1:-1;;;;;;61274:28:0;;;61266:67;;;;-1:-1:-1;;;61266:67:0;;40204:2:1;61266:67:0;;;40186:21:1;40243:2;40223:18;;;40216:30;40282:28;40262:18;;;40255:56;40328:18;;61266:67:0;40002:350:1;23814:307:0;23888:5;23931:10;:6;23940:1;23931:10;:::i;:::-;23914:6;:13;:27;;23906:59;;;;-1:-1:-1;;;23906:59:0;;40944:2:1;23906:59:0;;;40926:21:1;40983:2;40963:18;;;40956:30;-1:-1:-1;;;41002:18:1;;;40995:49;41061:18;;23906:59:0;40742:343:1;23906:59:0;-1:-1:-1;24045:29:0;24061:3;24045:29;24039:36;;23814:307::o;57633:457::-;57788:10;57800:15;57819:28;57838:8;57819:18;:28::i;:::-;57787:60;;-1:-1:-1;57787:60:0;-1:-1:-1;;;;;;57862:16:0;;57858:69;;57908:6;57895:20;;57858:69;57939:11;57953:16;57960:8;57953:6;:16::i;:::-;57939:30;;57989:34;57999:11;58012:2;58016:6;57989:9;:34::i;:::-;57980:43;;58071:2;-1:-1:-1;;;;;58041:41:0;58058:11;58041:41;;;58075:6;58041:41;;;;4108:25:1;;4096:2;4081:18;;3962:177;58041:41:0;;;;;;;;57776:314;;;57633:457;;;;:::o;59101:1902::-;59282:12;59296:10;59308:15;59325:27;59354:17;59375:35;59401:8;59375:25;:35::i;:::-;59281:129;;;;;;;;;;59423:13;59439:15;:28;59455:11;59439:28;;;;;;;;;;;;;;;59468:11;59439:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59439:49:0;;;;;;;;;;;;;;-1:-1:-1;59513:16:0;59520:8;59513:6;:16::i;:::-;59499:30;;59657:8;59652:167;;59691:45;59701:11;59722:4;59729:6;59691:9;:45::i;:::-;59751:28;;;;;;;:15;:28;;;;;;;:41;;59682:54;;-1:-1:-1;59803:4:0;;59751:41;;59780:11;;59751:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59751:49:0;;;;;;;;;;:56;;-1:-1:-1;;59751:56:0;;;;;;;;;;59652:167;-1:-1:-1;;;;;61097:20:0;;;59831:97;;59873:22;;-1:-1:-1;;;;;4954:32:1;;4936:51;;59873:22:0;;4924:2:1;4909:18;59873:22:0;;;;;;;59910:7;;;;;;;;;59831:97;60002:11;60050;60087:6;60127:8;60162:4;60191:2;60219:6;60267:14;59982:17;60352:8;:33;;60375:10;-1:-1:-1;;;;;60352:33:0;;;;60363:9;60352:33;60341:44;;60397:12;60411:19;60434:230;60482:9;60506:3;60547:31;;;60580:10;60592;60604:5;60611;60618:3;60623:7;60632:15;60649:3;60524:129;;;;;;;;;;;;;;;:::i;60434:230::-;60396:268;;;;60681:7;60677:319;;;60720:18;;;;;;60758:59;;;;;;;;;;60793:10;;60805:5;;60720:18;;60758:59;:::i;:::-;;;;;;;;60690:139;60677:319;;;60917:67;60937:10;60949;60961:5;60968:7;60977:6;60917:19;:67::i;:::-;59270:1733;;;;;;;;;;;;;;;;;;59101:1902;;;;:::o;45108:463::-;45287:21;45311:28;45324:14;45311:12;:28::i;:::-;45369;;;;45350:16;45369:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;45287:52;;-1:-1:-1;45423:15:0;45415:54;;;;-1:-1:-1;;;45415:54:0;;42576:2:1;45415:54:0;;;42558:21:1;42615:2;42595:18;;;42588:30;42654:28;42634:18;;;42627:56;42700:18;;45415:54:0;42374:350:1;45415:54:0;45508:23;45522:9;45508:11;:23;:::i;:::-;45488:16;:43;;45480:83;;;;-1:-1:-1;;;45480:83:0;;42931:2:1;45480:83:0;;;42913:21:1;42970:2;42950:18;;;42943:30;43009:29;42989:18;;;42982:57;43056:18;;45480:83:0;42729:351:1;61512:182:0;61578:16;;61625:22;85707:9;61625:7;:22;:::i;:::-;61618:29;-1:-1:-1;61672:14:0;61618:29;61672:7;:14;:::i;:::-;61658:28;;61512:182;;;:::o;84637:329::-;84781:4;39451:10;-1:-1:-1;;;;;84843:16:0;;;;84839:62;;84861:40;84877:5;84884:7;84893;84861:15;:40::i;:::-;84912:21;84918:5;84925:7;84912:5;:21::i;:::-;-1:-1:-1;84951:7:0;;84637:329;-1:-1:-1;;;;84637:329:0:o;44486:614::-;44770:32;;;44741:26;44770:32;;;:19;:32;;;;;44741:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44821:13;:20;44845:1;44821:25;44813:86;;;;-1:-1:-1;;;44813:86:0;;43404:2:1;44813:86:0;;;43386:21:1;43443:2;43423:18;;;43416:30;43482:34;43462:18;;;43455:62;-1:-1:-1;;;43533:18:1;;;43526:46;43589:19;;44813:86:0;43202:412:1;44813:86:0;44910:47;44928:11;44941:8;:15;44910:17;:47::i;:::-;44968:124;;-1:-1:-1;;;44968:124:0;;-1:-1:-1;;;;;44968:10:0;:15;;;;44991:10;;44968:124;;45003:11;;45016:13;;45031:8;;45041:14;;45057:18;;45077:14;;44968:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44730:370;44486:614;;;;;;:::o;62246:366::-;62463:12;53045:1;62530:10;62542:9;-1:-1:-1;;;;;63397:23:0;;62579:14;62595:8;62495:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62488:116;;62246:366;;;;;;;:::o;82668:91::-;;;;:::o;61895:343::-;61977:10;;;62025:19;:8;61977:10;62025:16;:19::i;:::-;:30;;;:55;;;;;62059:8;:15;62078:2;62059:21;62025:55;62017:92;;;;-1:-1:-1;;;62017:92:0;;45291:2:1;62017:92:0;;;45273:21:1;45330:2;45310:18;;;45303:30;-1:-1:-1;;;45349:18:1;;;45342:54;45413:18;;62017:92:0;45089:348:1;62017:92:0;62127:22;:8;62146:2;62127:18;:22::i;:::-;62122:27;-1:-1:-1;62209:21:0;:8;62227:2;62209:17;:21::i;:::-;62198:32;;61895:343;;;:::o;61383:121::-;61448:4;61472:24;85707:9;-1:-1:-1;;;;;61472:24:0;;;:::i;84974:206::-;85104:4;85121:26;85127:10;85139:7;85121:5;:26::i;:::-;-1:-1:-1;85165:7:0;84974:206;-1:-1:-1;;84974:206:0:o;62620:658::-;62759:12;;;62841:20;62759:12;53045:1;62932:19;:8;62759:12;62932:16;:19::i;:::-;:39;;;62924:76;;;;-1:-1:-1;;;62924:76:0;;45291:2:1;62924:76:0;;;45273:21:1;45330:2;45310:18;;;45303:30;-1:-1:-1;;;45349:18:1;;;45342:54;45413:18;;62924:76:0;45089:348:1;62924:76:0;63018:22;:8;63037:2;63018:18;:22::i;:::-;63013:27;-1:-1:-1;63100:21:0;:8;63118:2;63100:17;:21::i;:::-;63089:32;-1:-1:-1;63139:22:0;:8;63158:2;63139:18;:22::i;:::-;63132:29;-1:-1:-1;63188:21:0;:8;63206:2;63188:17;:21::i;:::-;63172:37;;63230:40;63245:2;63267;63249:8;:15;:20;;;;:::i;:::-;63230:8;;:40;:14;:40::i;:::-;63220:50;;62620:658;;;;;;;:::o;45579:271::-;45661:13;45720:2;45695:14;:21;:27;;45687:68;;;;-1:-1:-1;;;45687:68:0;;45644:2:1;45687:68:0;;;45626:21:1;45683:2;45663:18;;;45656:30;45722;45702:18;;;45695:58;45770:18;;45687:68:0;45442:352:1;45687:68:0;-1:-1:-1;45828:2:0;45808:23;45802:30;;45579:271::o;79899:675::-;-1:-1:-1;;;;;79983:21:0;;79975:67;;;;-1:-1:-1;;;79975:67:0;;46001:2:1;79975:67:0;;;45983:21:1;46040:2;46020:18;;;46013:30;46079:34;46059:18;;;46052:62;-1:-1:-1;;;46130:18:1;;;46123:31;46171:19;;79975:67:0;45799:397:1;79975:67:0;-1:-1:-1;;;;;80142:18:0;;80117:22;80142:18;;;:9;:18;;;;;;80179:24;;;;80171:71;;;;-1:-1:-1;;;80171:71:0;;46403:2:1;80171:71:0;;;46385:21:1;46442:2;46422:18;;;46415:30;46481:34;46461:18;;;46454:62;-1:-1:-1;;;46532:18:1;;;46525:32;46574:19;;80171:71:0;46201:398:1;80171:71:0;-1:-1:-1;;;;;80278:18:0;;;;;;:9;:18;;;;;;;;80299:23;;;80278:44;;80417:12;:22;;;;;;;80468:37;4108:25:1;;;80278:18:0;;;80468:37;;4081:18:1;80468:37:0;;;;;;;82668:91;;;:::o;45858:402::-;45981:35;;;45957:21;45981:35;;;:22;:35;;;;;;;46031:21;;;46027:138;;-1:-1:-1;42675:5:0;46027:138;46199:16;46183:12;:32;;46175:77;;;;-1:-1:-1;;;46175:77:0;;46806:2:1;46175:77:0;;;46788:21:1;;;46825:18;;;46818:30;46884:34;46864:18;;;46857:62;46936:18;;46175:77:0;46604:356:1;23446:360:0;23522:7;23567:11;:6;23576:2;23567:11;:::i;:::-;23550:6;:13;:28;;23542:62;;;;-1:-1:-1;;;23542:62:0;;47167:2:1;23542:62:0;;;47149:21:1;47206:2;47186:18;;;47179:30;-1:-1:-1;;;47225:18:1;;;47218:51;47286:18;;23542:62:0;46965:345:1;23542:62:0;-1:-1:-1;23696:30:0;23712:4;23696:30;23690:37;-1:-1:-1;;;23686:71:0;;;23446:360::o;24767:311::-;24842:6;24886:10;:6;24895:1;24886:10;:::i;:::-;24869:6;:13;:27;;24861:60;;;;-1:-1:-1;;;24861:60:0;;47517:2:1;24861:60:0;;;47499:21:1;47556:2;47536:18;;;47529:30;-1:-1:-1;;;47575:18:1;;;47568:50;47635:18;;24861:60:0;47315:344:1;24861:60:0;-1:-1:-1;25002:29:0;25018:3;25002:29;24996:36;;24767:311::o;79018:548::-;-1:-1:-1;;;;;79102:21:0;;79094:65;;;;-1:-1:-1;;;79094:65:0;;47866:2:1;79094:65:0;;;47848:21:1;47905:2;47885:18;;;47878:30;47944:33;47924:18;;;47917:61;47995:18;;79094:65:0;47664:355:1;79094:65:0;79250:6;79234:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;79405:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;79460:37;4108:25:1;;;79460:37:0;;4081:18:1;79460:37:0;;;;;;;79018:548;;:::o;26050:326::-;26126:7;26171:11;:6;26180:2;26171:11;:::i;:::-;26154:6;:13;:28;;26146:62;;;;-1:-1:-1;;;26146:62:0;;48226:2:1;26146:62:0;;;48208:21:1;48265:2;48245:18;;;48238:30;-1:-1:-1;;;48284:18:1;;;48277:51;48345:18;;26146:62:0;48024:345:1;26146:62:0;-1:-1:-1;26296:30:0;26312:4;26296:30;26290:37;;26050:326::o;14:159:1:-;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:347::-;229:8;239:6;293:3;286:4;278:6;274:17;270:27;260:55;;311:1;308;301:12;260:55;-1:-1:-1;334:20:1;;-1:-1:-1;;;;;366:30:1;;363:50;;;409:1;406;399:12;363:50;446:4;438:6;434:17;422:29;;498:3;491:4;482:6;474;470:19;466:30;463:39;460:59;;;515:1;512;505:12;460:59;178:347;;;;;:::o;530:171::-;597:20;;-1:-1:-1;;;;;646:30:1;;636:41;;626:69;;691:1;688;681:12;706:862;812:6;820;828;836;844;852;905:3;893:9;884:7;880:23;876:33;873:53;;;922:1;919;912:12;873:53;945:28;963:9;945:28;:::i;:::-;935:38;;1024:2;1013:9;1009:18;996:32;-1:-1:-1;;;;;1088:2:1;1080:6;1077:14;1074:34;;;1104:1;1101;1094:12;1074:34;1143:58;1193:7;1184:6;1173:9;1169:22;1143:58;:::i;:::-;1220:8;;-1:-1:-1;1117:84:1;-1:-1:-1;1117:84:1;;-1:-1:-1;1274:37:1;1307:2;1292:18;;1274:37;:::i;:::-;1264:47;;1364:2;1353:9;1349:18;1336:32;1320:48;;1393:2;1383:8;1380:16;1377:36;;;1409:1;1406;1399:12;1377:36;;1448:60;1500:7;1489:8;1478:9;1474:24;1448:60;:::i;:::-;706:862;;;;-1:-1:-1;706:862:1;;-1:-1:-1;706:862:1;;1527:8;;706:862;-1:-1:-1;;;706:862:1:o;1573:286::-;1631:6;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1726:23;;-1:-1:-1;;;;;;1778:32:1;;1768:43;;1758:71;;1825:1;1822;1815:12;2056:289;2098:3;2136:5;2130:12;2163:6;2158:3;2151:19;2219:6;2212:4;2205:5;2201:16;2194:4;2189:3;2185:14;2179:47;2271:1;2264:4;2255:6;2250:3;2246:16;2242:27;2235:38;2334:4;2327:2;2323:7;2318:2;2310:6;2306:15;2302:29;2297:3;2293:39;2289:50;2282:57;;;2056:289;;;;:::o;2350:220::-;2499:2;2488:9;2481:21;2462:4;2519:45;2560:2;2549:9;2545:18;2537:6;2519:45;:::i;2575:184::-;2633:6;2686:2;2674:9;2665:7;2661:23;2657:32;2654:52;;;2702:1;2699;2692:12;2654:52;2725:28;2743:9;2725:28;:::i;2764:131::-;-1:-1:-1;;;;;2839:31:1;;2829:42;;2819:70;;2885:1;2882;2875:12;2900:315;2968:6;2976;3029:2;3017:9;3008:7;3004:23;3000:32;2997:52;;;3045:1;3042;3035:12;2997:52;3084:9;3071:23;3103:31;3128:5;3103:31;:::i;:::-;3153:5;3205:2;3190:18;;;;3177:32;;-1:-1:-1;;;2900:315:1:o;3220:252::-;3287:6;3295;3348:2;3336:9;3327:7;3323:23;3319:32;3316:52;;;3364:1;3361;3354:12;3316:52;3387:28;3405:9;3387:28;:::i;3477:160::-;3542:20;;3598:13;;3591:21;3581:32;;3571:60;;3627:1;3624;3617:12;3642:315;3707:6;3715;3768:2;3756:9;3747:7;3743:23;3739:32;3736:52;;;3784:1;3781;3774:12;3736:52;3823:9;3810:23;3842:31;3867:5;3842:31;:::i;:::-;3892:5;-1:-1:-1;3916:35:1;3947:2;3932:18;;3916:35;:::i;:::-;3906:45;;3642:315;;;;;:::o;4144:180::-;4203:6;4256:2;4244:9;4235:7;4231:23;4227:32;4224:52;;;4272:1;4269;4262:12;4224:52;-1:-1:-1;4295:23:1;;4144:180;-1:-1:-1;4144:180:1:o;4329:456::-;4406:6;4414;4422;4475:2;4463:9;4454:7;4450:23;4446:32;4443:52;;;4491:1;4488;4481:12;4443:52;4530:9;4517:23;4549:31;4574:5;4549:31;:::i;:::-;4599:5;-1:-1:-1;4656:2:1;4641:18;;4628:32;4669:33;4628:32;4669:33;:::i;:::-;4329:456;;4721:7;;-1:-1:-1;;;4775:2:1;4760:18;;;;4747:32;;4329:456::o;4998:180::-;5054:6;5107:2;5095:9;5086:7;5082:23;5078:32;5075:52;;;5123:1;5120;5113:12;5075:52;5146:26;5162:9;5146:26;:::i;5372:687::-;5474:6;5482;5490;5498;5506;5514;5567:3;5555:9;5546:7;5542:23;5538:33;5535:53;;;5584:1;5581;5574:12;5535:53;5607:28;5625:9;5607:28;:::i;:::-;5597:38;;5682:2;5671:9;5667:18;5654:32;5644:42;;5733:2;5722:9;5718:18;5705:32;5695:42;;5756:35;5787:2;5776:9;5772:18;5756:35;:::i;:::-;5746:45;;5842:3;5831:9;5827:19;5814:33;-1:-1:-1;;;;;5862:6:1;5859:30;5856:50;;;5902:1;5899;5892:12;5856:50;5941:58;5991:7;5982:6;5971:9;5967:22;5941:58;:::i;6317:481::-;6395:6;6403;6411;6464:2;6452:9;6443:7;6439:23;6435:32;6432:52;;;6480:1;6477;6470:12;6432:52;6503:28;6521:9;6503:28;:::i;:::-;6493:38;;6582:2;6571:9;6567:18;6554:32;-1:-1:-1;;;;;6601:6:1;6598:30;6595:50;;;6641:1;6638;6631:12;6595:50;6680:58;6730:7;6721:6;6710:9;6706:22;6680:58;:::i;:::-;6317:481;;6757:8;;-1:-1:-1;6654:84:1;;-1:-1:-1;;;;6317:481:1:o;6803:127::-;6864:10;6859:3;6855:20;6852:1;6845:31;6895:4;6892:1;6885:15;6919:4;6916:1;6909:15;6935:275;7006:2;7000:9;7071:2;7052:13;;-1:-1:-1;;7048:27:1;7036:40;;-1:-1:-1;;;;;7091:34:1;;7127:22;;;7088:62;7085:88;;;7153:18;;:::i;:::-;7189:2;7182:22;6935:275;;-1:-1:-1;6935:275:1:o;7215:186::-;7263:4;-1:-1:-1;;;;;7288:6:1;7285:30;7282:56;;;7318:18;;:::i;:::-;-1:-1:-1;7384:2:1;7363:15;-1:-1:-1;;7359:29:1;7390:4;7355:40;;7215:186::o;7406:815::-;7490:6;7498;7506;7559:2;7547:9;7538:7;7534:23;7530:32;7527:52;;;7575:1;7572;7565:12;7527:52;7598:28;7616:9;7598:28;:::i;:::-;7588:38;;7677:2;7666:9;7662:18;7649:32;-1:-1:-1;;;;;7696:6:1;7693:30;7690:50;;;7736:1;7733;7726:12;7690:50;7759:22;;7812:4;7804:13;;7800:27;-1:-1:-1;7790:55:1;;7841:1;7838;7831:12;7790:55;7877:2;7864:16;7902:48;7918:31;7946:2;7918:31;:::i;:::-;7902:48;:::i;:::-;7973:2;7966:5;7959:17;8013:7;8008:2;8003;7999;7995:11;7991:20;7988:33;7985:53;;;8034:1;8031;8024:12;7985:53;8089:2;8084;8080;8076:11;8071:2;8064:5;8060:14;8047:45;8133:1;8128:2;8123;8116:5;8112:14;8108:23;8101:34;8154:5;8144:15;;;;;8178:37;8211:2;8200:9;8196:18;8178:37;:::i;:::-;8168:47;;7406:815;;;;;:::o;8408:160::-;8473:5;8518:2;8509:6;8504:3;8500:16;8496:25;8493:45;;;8534:1;8531;8524:12;8493:45;-1:-1:-1;8556:6:1;8408:160;-1:-1:-1;8408:160:1:o;8573:709::-;8697:6;8705;8713;8721;8729;8782:3;8770:9;8761:7;8757:23;8753:33;8750:53;;;8799:1;8796;8789:12;8750:53;8838:9;8825:23;8857:31;8882:5;8857:31;:::i;:::-;8907:5;-1:-1:-1;8931:37:1;8964:2;8949:18;;8931:37;:::i;:::-;8921:47;;9015:2;9004:9;9000:18;8987:32;8977:42;;9066:2;9055:9;9051:18;9038:32;9028:42;;9121:3;9110:9;9106:19;9093:33;-1:-1:-1;;;;;9141:6:1;9138:30;9135:50;;;9181:1;9178;9171:12;9135:50;9204:72;9268:7;9259:6;9248:9;9244:22;9204:72;:::i;:::-;9194:82;;;8573:709;;;;;;;;:::o;9287:247::-;9346:6;9399:2;9387:9;9378:7;9374:23;9370:32;9367:52;;;9415:1;9412;9405:12;9367:52;9454:9;9441:23;9473:31;9498:5;9473:31;:::i;9762:1091::-;9914:6;9922;9930;9938;9946;9954;9962;9970;10023:3;10011:9;10002:7;9998:23;9994:33;9991:53;;;10040:1;10037;10030:12;9991:53;10079:9;10066:23;10098:31;10123:5;10098:31;:::i;:::-;10148:5;-1:-1:-1;10172:37:1;10205:2;10190:18;;10172:37;:::i;:::-;10162:47;;10256:2;10245:9;10241:18;10228:32;10218:42;;10307:2;10296:9;10292:18;10279:32;10269:42;;10362:3;10351:9;10347:19;10334:33;-1:-1:-1;;;;;10427:2:1;10419:6;10416:14;10413:34;;;10443:1;10440;10433:12;10413:34;10482:58;10532:7;10523:6;10512:9;10508:22;10482:58;:::i;:::-;10559:8;;-1:-1:-1;10456:84:1;-1:-1:-1;10456:84:1;;-1:-1:-1;10613:38:1;10646:3;10631:19;;10613:38;:::i;:::-;10603:48;;10704:3;10693:9;10689:19;10676:33;10660:49;;10734:2;10724:8;10721:16;10718:36;;;10750:1;10747;10740:12;10718:36;;10773:74;10839:7;10828:8;10817:9;10813:24;10773:74;:::i;:::-;10763:84;;;9762:1091;;;;;;;;;;;:::o;10858:256::-;10924:6;10932;10985:2;10973:9;10964:7;10960:23;10956:32;10953:52;;;11001:1;10998;10991:12;10953:52;11024:28;11042:9;11024:28;:::i;:::-;11014:38;;11071:37;11104:2;11093:9;11089:18;11071:37;:::i;11119:1069::-;11249:6;11257;11265;11273;11281;11289;11297;11305;11313;11366:3;11354:9;11345:7;11341:23;11337:33;11334:53;;;11383:1;11380;11373:12;11334:53;11406:28;11424:9;11406:28;:::i;:::-;11396:38;;11481:2;11470:9;11466:18;11453:32;11443:42;;11532:2;11521:9;11517:18;11504:32;11494:42;;11587:2;11576:9;11572:18;11559:32;-1:-1:-1;;;;;11651:2:1;11643:6;11640:14;11637:34;;;11667:1;11664;11657:12;11637:34;11706:58;11756:7;11747:6;11736:9;11732:22;11706:58;:::i;:::-;11783:8;;-1:-1:-1;11680:84:1;-1:-1:-1;11680:84:1;;-1:-1:-1;11837:38:1;11870:3;11855:19;;11837:38;:::i;:::-;11827:48;;11894:36;11925:3;11914:9;11910:19;11894:36;:::i;:::-;11884:46;;11983:3;11972:9;11968:19;11955:33;11939:49;;12013:2;12003:8;12000:16;11997:36;;;12029:1;12026;12019:12;11997:36;;12068:60;12120:7;12109:8;12098:9;12094:24;12068:60;:::i;:::-;12042:86;;12147:8;12137:18;;;12174:8;12164:18;;;11119:1069;;;;;;;;;;;:::o;12421:622::-;12516:6;12524;12532;12540;12548;12601:3;12589:9;12580:7;12576:23;12572:33;12569:53;;;12618:1;12615;12608:12;12569:53;12641:28;12659:9;12641:28;:::i;:::-;12631:38;;12688:37;12721:2;12710:9;12706:18;12688:37;:::i;:::-;12678:47;;12772:2;12761:9;12757:18;12744:32;12734:42;;12827:2;12816:9;12812:18;12799:32;-1:-1:-1;;;;;12846:6:1;12843:30;12840:50;;;12886:1;12883;12876:12;12840:50;12925:58;12975:7;12966:6;12955:9;12951:22;12925:58;:::i;:::-;12421:622;;;;-1:-1:-1;12421:622:1;;-1:-1:-1;13002:8:1;;12899:84;12421:622;-1:-1:-1;;;12421:622:1:o;13048:388::-;13116:6;13124;13177:2;13165:9;13156:7;13152:23;13148:32;13145:52;;;13193:1;13190;13183:12;13145:52;13232:9;13219:23;13251:31;13276:5;13251:31;:::i;:::-;13301:5;-1:-1:-1;13358:2:1;13343:18;;13330:32;13371:33;13330:32;13371:33;:::i;:::-;13423:7;13413:17;;;13048:388;;;;;:::o;13441:324::-;13516:6;13524;13532;13585:2;13573:9;13564:7;13560:23;13556:32;13553:52;;;13601:1;13598;13591:12;13553:52;13624:28;13642:9;13624:28;:::i;:::-;13614:38;;13671:37;13704:2;13693:9;13689:18;13671:37;:::i;:::-;13661:47;;13755:2;13744:9;13740:18;13727:32;13717:42;;13441:324;;;;;:::o;13770:248::-;13838:6;13846;13899:2;13887:9;13878:7;13874:23;13870:32;13867:52;;;13915:1;13912;13905:12;13867:52;-1:-1:-1;;13938:23:1;;;14008:2;13993:18;;;13980:32;;-1:-1:-1;13770:248:1:o;14023:1205::-;14165:6;14173;14181;14189;14197;14205;14213;14221;14229;14237;14290:3;14278:9;14269:7;14265:23;14261:33;14258:53;;;14307:1;14304;14297:12;14258:53;14330:28;14348:9;14330:28;:::i;:::-;14320:38;;14409:2;14398:9;14394:18;14381:32;-1:-1:-1;;;;;14473:2:1;14465:6;14462:14;14459:34;;;14489:1;14486;14479:12;14459:34;14528:58;14578:7;14569:6;14558:9;14554:22;14528:58;:::i;:::-;14605:8;;-1:-1:-1;14502:84:1;-1:-1:-1;14502:84:1;;-1:-1:-1;14659:37:1;14692:2;14677:18;;14659:37;:::i;:::-;14649:47;;14743:2;14732:9;14728:18;14715:32;14705:42;;14797:3;14786:9;14782:19;14769:33;14756:46;;14811:31;14836:5;14811:31;:::i;:::-;14861:5;;-1:-1:-1;14913:3:1;14898:19;;14885:33;;-1:-1:-1;14971:3:1;14956:19;;14943:33;;14988:16;;;14985:36;;;15017:1;15014;15007:12;14985:36;;15056:60;15108:7;15097:8;15086:9;15082:24;15056:60;:::i;:::-;15030:86;;15135:8;15125:18;;;15162:8;15152:18;;;15217:3;15206:9;15202:19;15189:33;15179:43;;14023:1205;;;;;;;;;;;;;:::o;15233:460::-;15317:6;15325;15333;15341;15394:3;15382:9;15373:7;15369:23;15365:33;15362:53;;;15411:1;15408;15401:12;15362:53;15434:28;15452:9;15434:28;:::i;:::-;15424:38;;15481:37;15514:2;15503:9;15499:18;15481:37;:::i;:::-;15471:47;;15568:2;15557:9;15553:18;15540:32;15581:31;15606:5;15581:31;:::i;:::-;15233:460;;;;-1:-1:-1;15631:5:1;;15683:2;15668:18;15655:32;;-1:-1:-1;;15233:460:1:o;16057:380::-;16136:1;16132:12;;;;16179;;;16200:61;;16254:4;16246:6;16242:17;16232:27;;16200:61;16307:2;16299:6;16296:14;16276:18;16273:38;16270:161;;16353:10;16348:3;16344:20;16341:1;16334:31;16388:4;16385:1;16378:15;16416:4;16413:1;16406:15;16442:271;16625:6;16617;16612:3;16599:33;16581:3;16651:16;;16676:13;;;16651:16;16442:271;-1:-1:-1;16442:271:1:o;17318:127::-;17379:10;17374:3;17370:20;17367:1;17360:31;17410:4;17407:1;17400:15;17434:4;17431:1;17424:15;17450:125;17515:9;;;17536:10;;;17533:36;;;17549:18;;:::i;17927:266::-;18015:6;18010:3;18003:19;18067:6;18060:5;18053:4;18048:3;18044:14;18031:43;-1:-1:-1;18119:1:1;18094:16;;;18112:4;18090:27;;;18083:38;;;;18175:2;18154:15;;;-1:-1:-1;;18150:29:1;18141:39;;;18137:50;;17927:266::o;18198:326::-;18393:6;18385;18381:19;18370:9;18363:38;18437:2;18432;18421:9;18417:18;18410:30;18344:4;18457:61;18514:2;18503:9;18499:18;18491:6;18483;18457:61;:::i;19196:521::-;19273:4;19279:6;19339:11;19326:25;19433:2;19429:7;19418:8;19402:14;19398:29;19394:43;19374:18;19370:68;19360:96;;19452:1;19449;19442:12;19360:96;19479:33;;19531:20;;;-1:-1:-1;;;;;;19563:30:1;;19560:50;;;19606:1;19603;19596:12;19560:50;19639:4;19627:17;;-1:-1:-1;19670:14:1;19666:27;;;19656:38;;19653:58;;;19707:1;19704;19697:12;20427:128;20494:9;;;20515:11;;;20512:37;;;20529:18;;:::i;20966:360::-;21177:6;21169;21164:3;21151:33;21247:2;21243:15;;;;-1:-1:-1;;21239:53:1;21203:16;;21228:65;;;21317:2;21309:11;;20966:360;-1:-1:-1;20966:360:1:o;21456:517::-;21557:2;21552:3;21549:11;21546:421;;;21593:5;21590:1;21583:16;21637:4;21634:1;21624:18;21707:2;21695:10;21691:19;21688:1;21684:27;21678:4;21674:38;21743:4;21731:10;21728:20;21725:47;;;-1:-1:-1;21766:4:1;21725:47;21821:2;21816:3;21812:12;21809:1;21805:20;21799:4;21795:31;21785:41;;21876:81;21894:2;21887:5;21884:13;21876:81;;;21953:1;21939:16;;21920:1;21909:13;21876:81;;22149:1341;22273:3;22267:10;-1:-1:-1;;;;;22292:6:1;22289:30;22286:56;;;22322:18;;:::i;:::-;22351:96;22440:6;22400:38;22432:4;22426:11;22400:38;:::i;:::-;22394:4;22351:96;:::i;:::-;22502:4;;22559:2;22548:14;;22576:1;22571:662;;;;23277:1;23294:6;23291:89;;;-1:-1:-1;23346:19:1;;;23340:26;23291:89;-1:-1:-1;;22106:1:1;22102:11;;;22098:24;22094:29;22084:40;22130:1;22126:11;;;22081:57;23393:81;;22541:943;;22571:662;21403:1;21396:14;;;21440:4;21427:18;;-1:-1:-1;;22607:20:1;;;22724:236;22738:7;22735:1;22732:14;22724:236;;;22827:19;;;22821:26;22806:42;;22919:27;;;;22887:1;22875:14;;;;22754:19;;22724:236;;;22728:3;22988:6;22979:7;22976:19;22973:201;;;23049:19;;;23043:26;-1:-1:-1;;23132:1:1;23128:14;;;23144:3;23124:24;23120:37;23116:42;23101:58;23086:74;;22973:201;-1:-1:-1;;;;;23220:1:1;23204:14;;;23200:22;23187:36;;-1:-1:-1;22149:1341:1:o;23495:498::-;23695:4;23724:6;23769:2;23761:6;23757:15;23746:9;23739:34;23821:2;23813:6;23809:15;23804:2;23793:9;23789:18;23782:43;;23861:6;23856:2;23845:9;23841:18;23834:34;23904:3;23899:2;23888:9;23884:18;23877:31;23925:62;23982:3;23971:9;23967:19;23959:6;23951;23925:62;:::i;:::-;23917:70;23495:498;-1:-1:-1;;;;;;;23495:498:1:o;24804:493::-;25053:6;25045;25041:19;25030:9;25023:38;25097:3;25092:2;25081:9;25077:18;25070:31;25004:4;25118:62;25175:3;25164:9;25160:19;25152:6;25144;25118:62;:::i;:::-;-1:-1:-1;;;;;25216:31:1;;;;25211:2;25196:18;;25189:59;-1:-1:-1;25279:2:1;25264:18;25257:34;25110:70;24804:493;-1:-1:-1;;;24804:493:1:o;26379:753::-;26712:6;26704;26700:19;26689:9;26682:38;26756:3;26751:2;26740:9;26736:18;26729:31;26663:4;26783:62;26840:3;26829:9;26825:19;26817:6;26809;26783:62;:::i;:::-;-1:-1:-1;;;;;26885:6:1;26881:31;26876:2;26865:9;26861:18;26854:59;26949:6;26944:2;26933:9;26929:18;26922:34;26993:6;26987:3;26976:9;26972:19;26965:35;27049:9;27041:6;27037:22;27031:3;27020:9;27016:19;27009:51;27077:49;27119:6;27111;27103;27077:49;:::i;:::-;27069:57;26379:753;-1:-1:-1;;;;;;;;;;;26379:753:1:o;27137:1194::-;-1:-1:-1;;;;;27254:3:1;27251:27;27248:53;;;27281:18;;:::i;:::-;27310:93;27399:3;27359:38;27391:4;27385:11;27359:38;:::i;:::-;27353:4;27310:93;:::i;:::-;27429:1;27454:2;27449:3;27446:11;27471:1;27466:607;;;;28117:1;28134:3;28131:93;;;-1:-1:-1;28190:19:1;;;28177:33;28131:93;-1:-1:-1;;22106:1:1;22102:11;;;22098:24;22094:29;22084:40;22130:1;22126:11;;;22081:57;28237:78;;27439:886;;27466:607;21403:1;21396:14;;;21440:4;21427:18;;-1:-1:-1;;27502:17:1;;;27616:229;27630:7;27627:1;27624:14;27616:229;;;27719:19;;;27706:33;27691:49;;27826:4;27811:20;;;;27779:1;27767:14;;;;27646:12;27616:229;;;27620:3;27873;27864:7;27861:16;27858:159;;;27997:1;27993:6;27987:3;27981;27978:1;27974:11;27970:21;27966:34;27962:39;27949:9;27944:3;27940:19;27927:33;27923:79;27915:6;27908:95;27858:159;;;28060:1;28054:3;28051:1;28047:11;28043:19;28037:4;28030:33;27439:886;;27137:1194;;;:::o;29204:661::-;29283:6;29336:2;29324:9;29315:7;29311:23;29307:32;29304:52;;;29352:1;29349;29342:12;29304:52;29385:9;29379:16;-1:-1:-1;;;;;29410:6:1;29407:30;29404:50;;;29450:1;29447;29440:12;29404:50;29473:22;;29526:4;29518:13;;29514:27;-1:-1:-1;29504:55:1;;29555:1;29552;29545:12;29504:55;29584:2;29578:9;29609:48;29625:31;29653:2;29625:31;:::i;29609:48::-;29680:2;29673:5;29666:17;29720:7;29715:2;29710;29706;29702:11;29698:20;29695:33;29692:53;;;29741:1;29738;29731:12;29692:53;29789:2;29784;29780;29776:11;29771:2;29764:5;29760:14;29754:38;29833:1;29812:14;;;29828:2;29808:23;29801:34;;;;29816:5;29204:661;-1:-1:-1;;;;29204:661:1:o;29870:557::-;30127:6;30119;30115:19;30104:9;30097:38;30171:3;30166:2;30155:9;30151:18;30144:31;30078:4;30198:46;30239:3;30228:9;30224:19;30216:6;30198:46;:::i;:::-;-1:-1:-1;;;;;30284:6:1;30280:31;30275:2;30264:9;30260:18;30253:59;30360:9;30352:6;30348:22;30343:2;30332:9;30328:18;30321:50;30388:33;30414:6;30406;30388:33;:::i;33411:168::-;33484:9;;;33515;;33532:15;;;33526:22;;33512:37;33502:71;;33553:18;;:::i;33584:127::-;33645:10;33640:3;33636:20;33633:1;33626:31;33676:4;33673:1;33666:15;33700:4;33697:1;33690:15;33716:120;33756:1;33782;33772:35;;33787:18;;:::i;:::-;-1:-1:-1;33821:9:1;;33716:120::o;33841:135::-;33880:3;33901:17;;;33898:43;;33921:18;;:::i;:::-;-1:-1:-1;33968:1:1;33957:13;;33841:135::o;33981:642::-;34262:6;34250:19;;34232:38;;-1:-1:-1;;;;;34306:32:1;;34301:2;34286:18;;34279:60;34326:3;34370:2;34355:18;;34348:31;;;-1:-1:-1;;34402:46:1;;34428:19;;34420:6;34402:46;:::i;:::-;34498:6;34491:14;34484:22;34479:2;34468:9;34464:18;34457:50;34556:9;34548:6;34544:22;34538:3;34527:9;34523:19;34516:51;34584:33;34610:6;34602;34584:33;:::i;:::-;34576:41;33981:642;-1:-1:-1;;;;;;;;33981:642:1:o;34628:245::-;34707:6;34715;34768:2;34756:9;34747:7;34743:23;34739:32;34736:52;;;34784:1;34781;34774:12;34736:52;-1:-1:-1;;34807:16:1;;34863:2;34848:18;;;34842:25;34807:16;;34842:25;;-1:-1:-1;34628:245:1:o;36278:127::-;36339:10;36334:3;36330:20;36327:1;36320:31;36370:4;36367:1;36360:15;36394:4;36391:1;36384:15;36410:251;36480:6;36533:2;36521:9;36512:7;36508:23;36504:32;36501:52;;;36549:1;36546;36539:12;36501:52;36581:9;36575:16;36600:31;36625:5;36600:31;:::i;36666:980::-;36928:4;36976:3;36965:9;36961:19;37007:6;36996:9;36989:25;37033:2;37071:6;37066:2;37055:9;37051:18;37044:34;37114:3;37109:2;37098:9;37094:18;37087:31;37138:6;37173;37167:13;37204:6;37196;37189:22;37242:3;37231:9;37227:19;37220:26;;37281:2;37273:6;37269:15;37255:29;;37302:1;37312:195;37326:6;37323:1;37320:13;37312:195;;;37391:13;;-1:-1:-1;;;;;37387:39:1;37375:52;;37482:15;;;;37447:12;;;;37423:1;37341:9;37312:195;;;-1:-1:-1;;;;;;;37563:32:1;;;;37558:2;37543:18;;37536:60;-1:-1:-1;;;37627:3:1;37612:19;37605:35;37524:3;36666:980;-1:-1:-1;;;36666:980:1:o;37651:211::-;37692:3;37730:5;37724:12;37774:6;37767:4;37760:5;37756:16;37751:3;37745:36;37836:1;37800:16;;37825:13;;;-1:-1:-1;37800:16:1;;37651:211;-1:-1:-1;37651:211:1:o;37867:189::-;37996:3;38021:29;38046:3;38038:6;38021:29;:::i;38061:719::-;38364:6;38356;38352:19;38341:9;38334:38;38408:3;38403:2;38392:9;38388:18;38381:31;38315:4;38435:46;38476:3;38465:9;38461:19;38453:6;38435:46;:::i;:::-;-1:-1:-1;;;;;38521:6:1;38517:31;38512:2;38501:9;38497:18;38490:59;38597:9;38589:6;38585:22;38580:2;38569:9;38565:18;38558:50;38631:33;38657:6;38649;38631:33;:::i;:::-;38617:47;;38713:9;38705:6;38701:22;38695:3;38684:9;38680:19;38673:51;38741:33;38767:6;38759;38741:33;:::i;41090:891::-;41410:4;41439:3;41481:6;41473;41469:19;41458:9;41451:38;41525:2;41520;41509:9;41505:18;41498:30;41551:45;41592:2;41581:9;41577:18;41569:6;41551:45;:::i;:::-;-1:-1:-1;;;;;41632:31:1;;41627:2;41612:18;;41605:59;41695:2;41680:18;;41673:34;;;-1:-1:-1;;;;;41744:32:1;;41738:3;41723:19;;41716:61;41764:3;41793:19;;41786:35;;;41858:22;;;41852:3;41837:19;;41830:51;41537:59;-1:-1:-1;41898:33:1;41537:59;41916:6;41898:33;:::i;:::-;41890:41;;;41968:6;41962:3;41951:9;41947:19;41940:35;41090:891;;;;;;;;;;;:::o;41986:383::-;42187:2;42176:9;42169:21;42150:4;42207:45;42248:2;42237:9;42233:18;42225:6;42207:45;:::i;:::-;-1:-1:-1;;;;;42288:31:1;;;;42283:2;42268:18;;42261:59;-1:-1:-1;42351:2:1;42336:18;42329:34;42199:53;41986:383;-1:-1:-1;41986:383:1:o;43085:112::-;43117:1;43143;43133:35;;43148:18;;:::i;:::-;-1:-1:-1;43182:9:1;;43085:112::o;43619:840::-;43968:6;43960;43956:19;43945:9;43938:38;44012:3;44007:2;43996:9;43992:18;43985:31;43919:4;44039:46;44080:3;44069:9;44065:19;44057:6;44039:46;:::i;:::-;44133:9;44125:6;44121:22;44116:2;44105:9;44101:18;44094:50;44167:33;44193:6;44185;44167:33;:::i;:::-;-1:-1:-1;;;;;44274:15:1;;;44269:2;44254:18;;44247:43;44327:15;;44321:3;44306:19;;44299:44;44380:22;;;44227:3;44359:19;;44352:51;44153:47;-1:-1:-1;44420:33:1;44153:47;44438:6;44420:33;:::i;:::-;44412:41;43619:840;-1:-1:-1;;;;;;;;;43619:840:1:o;44464:620::-;44786:3;44781;44777:13;44768:6;44763:3;44759:16;44755:36;44750:3;44743:49;44821:6;44817:1;44812:3;44808:11;44801:27;44725:3;-1:-1:-1;;;;;44851:3:1;44847:28;44927:2;44918:6;44913:3;44909:16;44905:25;44900:2;44895:3;44891:12;44884:47;44961:6;44956:2;44951:3;44947:12;44940:28;45020:2;45011:6;45006:3;45002:16;44998:25;44993:2;44988:3;44984:12;44977:47;;45040:38;45074:2;45069:3;45065:12;45057:6;45040:38;:::i

Swarm Source

ipfs://df8cd7a17cf29a556b8cca07a03b9890ba400098a60c6378ce1daa402d74735e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.