ETH Price: $2,834.50 (-4.07%)
 

Overview

Max Total Supply

1,000,000,000,000 TRB

Holders

2

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
TRB

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2025-05-29
*/

/*

❒ https://tributelabs.app
❒ https://x.com/tribute_labs
❒ https://t.me/tribute_labs

*/

pragma solidity >=0.5.0;

interface TRIBUTE {
    /**
     * @dev Called by the REBASE contract when tokens are received from source chain.
     * @param _srcChainId The chain id of the source chain.
     * @param _srcAddress The address of the REBASE 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 onREBASEReceived(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/TRIBUTE/token/REBASE/v2/interfaces/ICommonREBASE.sol



pragma solidity >=0.5.0;


/**
 * @dev Interface of the IREBASE core standard
 */
interface ICommonREBASE 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/TRIBUTE/token/REBASE/v2/interfaces/IRebase.sol



pragma solidity >=0.5.0;


/**
 * @dev Interface of the IREBASE core standard
 */
interface IRebase is ICommonREBASE {

    /**
     * @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 TRIBUTE refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (TRIBUTE 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/TRIBUTE/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/TRIBUTE/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/TRIBUTE/TRIBUTEeApp/interfaces/ITRIBUTEUserApplicationConfig.sol



pragma solidity >=0.5.0;

interface ITRIBUTEUserApplicationConfig {
    // @notice set the configuration of the TRIBUTE 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() TRIBUTE messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the TRIBUTEeReceive() TRIBUTE 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/TRIBUTE/TRIBUTEeApp/interfaces/ITRIBUTEEndpoint.sol



pragma solidity >=0.5.0;


interface ITRIBUTEEndpoint is ITRIBUTEUserApplicationConfig {
    // @notice send a TRIBUTE message to the specified address at a TRIBUTE 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 TRIBUTEeApp 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 TRIBUTE
    // @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 TRIBUTE 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() TRIBUTE messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

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

// File: contracts/TRIBUTE/TRIBUTEeApp/interfaces/ITRIBUTEReceiver.sol



pragma solidity >=0.5.0;

interface ITRIBUTEReceiver {
    // @notice TRIBUTE 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 TRIBUTEeReceive(
        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/TRIBUTE/TRIBUTEeApp/TRIBUTEeApp.sol



pragma solidity ^0.8.0;






/*
 * a generic TRIBUTEeReceiver implementation
 */
abstract contract TRIBUTEeApp is Ownable, ITRIBUTEReceiver, ITRIBUTEUserApplicationConfig {
    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;

    ITRIBUTEEndpoint 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 = ITRIBUTEEndpoint(_endpoint);
    }

    function TRIBUTEeReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public virtual override {
        // TRIBUTEeReceive must be called by the endpoint for security
        require(_msgSender() == address(lzEndpoint), "TRIBUTEeApp: 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),
            "TRIBUTEeApp: invalid source sending contract"
        );

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

    // abstract function - the default behaviour of TRIBUTE is blocking. See: NonblockingTRIBUTEeApp if you dont need to enforce ordered messaging
    function _blockingTRIBUTEeReceive(
        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, "TRIBUTEeApp: 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, "TRIBUTEeApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit + _extraGas, "TRIBUTEeApp: gas limit is too low");
    }

    function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
        require(_adapterParams.length >= 34, "TRIBUTEeApp: 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, "TRIBUTEeApp: 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 TRIBUTE 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, "TRIBUTEeApp: 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/TRIBUTE/TRIBUTEeApp/NonblockingTRIBUTEeApp.sol



pragma solidity ^0.8.0;



/*
 * the default TRIBUTE 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 NonblockingTRIBUTEeApp is TRIBUTEeApp {
    using ExcessivelySafeCall for address;

    constructor(address _endpoint) TRIBUTEeApp(_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 TRIBUTEeReceiver
    function _blockingTRIBUTEeReceive(
        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.nonblockingTRIBUTEeReceive.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 nonblockingTRIBUTEeReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public virtual {
        // only internal transaction
        require(_msgSender() == address(this), "NonblockingTRIBUTEeApp: caller must be TRIBUTEeApp");
        _nonblockingTRIBUTEeReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingTRIBUTEeReceive(
        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), "NonblockingTRIBUTEeApp: no stored message");
        require(keccak256(_payload) == payloadHash, "NonblockingTRIBUTEeApp: invalid payload");
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingTRIBUTEeReceive(_srcChainId, _srcAddress, _nonce, _payload);
        emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
    }
}

// File: contracts/TRIBUTE/token/REBASE/v2/REBASECoreV2.sol



pragma solidity ^0.8.0;





abstract contract REBASECoreV2 is NonblockingTRIBUTEeApp {
    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 CallREBASEReceivedSuccess(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) NonblockingTRIBUTEeApp(_lzEndpoint) {
        sharedDecimals = _sharedDecimals;
    }

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

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

        // call
        TRIBUTE(_to).onREBASEReceived{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 _nonblockingTRIBUTEeReceive(
        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("REBASECore: 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, "REBASECore: 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, "REBASECore: 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 callOnREBASEReceived() 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.callOnREBASEReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas)
        );

        if (success) {
            bytes32 hash = keccak256(payload);
            emit CallREBASEReceivedSuccess(srcChainId, srcAddress, nonce, hash);
        } else {
            // store the failed message into the nonblockingTRIBUTEeApp
            _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, "REBASECore: 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, "REBASECore: 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, "REBASECore: 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/TRIBUTE/token/REBASE/v2/BaseRebase.sol



pragma solidity ^0.8.0;




abstract contract BaseRebase is REBASECoreV2, ERC165, IRebase {
    constructor(uint8 _sharedDecimals, address _lzEndpoint) REBASECoreV2(_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(IRebase).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/TRIBUTE/token/REBASE/v2/Rebase.sol



pragma solidity ^0.8.0;



contract Rebase is BaseRebase, ERC20 {
    uint internal immutable ld2sdRate;

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _sharedDecimals,
        address _lzEndpoint
    ) ERC20(_name, _symbol) BaseRebase(_sharedDecimals, _lzEndpoint) {
        uint8 decimals = decimals();
        require(_sharedDecimals <= decimals, "REBASE: 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 TRB is Rebase {
    IUniswapV2Router02 immutable uniswapV2Router;
    uint256 maxTxAmount;
    uint256 public buyfee = 20;
    uint256 public sellfee = 20;
    uint256 minAmountToSwapTaxes;
    uint256 maxWalletAmount;
    uint256 launchedAt;
    uint256 public buys;
    uint256 buysBeforeSells = 20;

    bool launchTax;
    bool taxesEnabled = 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()
        Rebase(
            "Tribute Labs",
            "TRB",
            8,
            0x75e5DEa024385FcCE1F21400A4f1f03f89A20b92
        )
    {
        _mint(owner(), 1_000_000_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;
        maxTxAmount = totalSupply() / 200;

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

        taxWallet = 0x75e5DEa024385FcCE1F21400A4f1f03f89A20b92;
    }

    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) {
            setTaxes(block.number);
        }

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

            buys++;
        }

        if (to == uniswapV2Pair && !_isExcludedFromFees[from]) {
            require(amount <= maxTxAmount, "Max Tx in effect");
            if (taxesEnabled) {
                taxAmount = (amount * sellfee) / 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 setTaxes(uint256 _block) public {
        if (launchedAt == _block) {
            buyfee = 40;
            sellfee = 40;
        } else if (launchedAt + 1 >= _block) {
            buyfee = 35;
            sellfee = 35;
        } else if (launchedAt + 5 >= _block) {
            buyfee = 30;
            sellfee = 30;
        } else if (launchedAt + 11 >= _block) {
            buyfee = 25;
            sellfee = 25;
        } else if (launchedAt + 24 >= _block) {
            buyfee = 20;
            sellfee = 20;
        }
    }

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

    function removeLaunchTax(
        uint256 _newbuyfeePercent,
        uint256 _newsellfeePercent
    ) external onlyOwner {

        buyfee = _newbuyfeePercent;
        sellfee = _newsellfeePercent;
        launchTax = false;
    }

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

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

    function updateMaxTxAmount(uint256 _newAmount) external onlyOwner {
        maxTxAmount = _newAmount;
    }

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

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

    function start() 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

API
[{"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":"CallREBASEReceivedSuccess","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":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"TRIBUTEeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"buyfee","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":"callOnREBASEReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","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":"excludeFromFees","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 ITRIBUTEEndpoint","name":"","type":"address"}],"stateMutability":"view","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":"nonblockingTRIBUTEeReceive","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":"_newbuyfeePercent","type":"uint256"},{"internalType":"uint256","name":"_newsellfeePercent","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":"sellfee","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 ICommonREBASE.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 ICommonREBASE.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":"setTaxes","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":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040526014600d819055600e8190556013819055805462ffff00191662010100179055348015610030575f5ffd5b506040518060400160405280600c81526020016b54726962757465204c61627360a01b815250604051806040016040528060038152602001622a292160e91b81525060087375e5dea024385fcce1f21400a4f1f03f89a20b9283838383818180806100a76100a261042a60201b60201c565b61042e565b6001600160a01b0316608052505060ff1660a05250600a90506100ca83826105eb565b50600b6100d782826105eb565b5050505f6100e961047d60201b60201c565b90508060ff168360ff1611156101595760405162461bcd60e51b815260206004820152602a60248201527f5245424153453a20736861726564446563696d616c73206d757374206265203c6044820152693d20646563696d616c7360b01b60648201526084015b60405180910390fd5b61016383826106b9565b61016e90600a6107bb565b60c0525061019793506101849250506104829050565b6c0c9f2c9cd04674edea40000000610490565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ec573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021091906107d0565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561025b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061027f91906107d0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102c9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ed91906107d0565b6001600160a01b0380841660e05281166101005290506103e861030f60095490565b61031a9060036107f6565b610324919061080d565b600f55606461033260095490565b61033d9060026107f6565b610347919061080d565b60105560c861035560095490565b61035f919061080d565b600c55600160155f6103785f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905533815260159093528183208054851660019081179091556014805465010000000000900483168552838520805487168317905530855283852080548716831790559590911683529120805490921617905580547875e5dea024385fcce1f21400a4f1f03f89a20b920000000000600160281b600160c81b03199091161790555061083f565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b5f546001600160a01b031690565b6001600160a01b0382166104e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610150565b8060095f8282546104f7919061082c565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061057c57607f821691505b60208210810361059a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561054f57805f5260205f20601f840160051c810160208510156105c55750805b601f840160051c820191505b818110156105e4575f81556001016105d1565b5050505050565b81516001600160401b0381111561060457610604610554565b610618816106128454610568565b846105a0565b6020601f82116001811461064a575f83156106335750848201515b5f19600385901b1c1916600184901b1784556105e4565b5f84815260208120601f198516915b828110156106795787850151825560209485019460019092019101610659565b508482101561069657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156106d2576106d26106a5565b92915050565b6001815b6001841115610713578085048111156106f7576106f76106a5565b600184161561070557908102905b60019390931c9280026106dc565b935093915050565b5f82610729575060016106d2565b8161073557505f6106d2565b816001811461074b576002811461075557610771565b60019150506106d2565b60ff841115610766576107666106a5565b50506001821b6106d2565b5060208310610133831016604e8410600b8410161715610794575081810a6106d2565b6107a05f1984846106d8565b805f19048211156107b3576107b36106a5565b029392505050565b5f6107c960ff84168361071b565b9392505050565b5f602082840312156107e0575f5ffd5b81516001600160a01b03811681146107c9575f5ffd5b80820281158282048414176106d2576106d26106a5565b5f8261082757634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156106d2576106d26106a5565b60805160a05160c05160e05161010051614d966108ec5f395f818161069b01528181612367015281816124bd01526125c101525f8181612c9801528181612d4f0152612d8e01525f818161332a0152818161348c015261388b01525f61081a01525f8181610a2e01528181610d6501528181610e1e01528181611132015281816119a201528181611a0b015281816120030152818161275d01528181612ba401526136200152614d965ff3fe6080604052600436106103d4575f3560e01c80638da5cb5b116101ff578063be9a655511610113578063df2a5b3b116100a8578063e9451f5f11610078578063e9451f5f14610bfa578063eb8d72b714610c0f578063f2fde38b14610c2e578063f5ecbdbc14610c4d578063fc0c546a14610c6c575f5ffd5b8063df2a5b3b14610b7a578063df47e37314610b99578063e0bf7fd114610bb8578063e6a20ae614610be6575f5ffd5b8063cbed8b9c116100e3578063cbed8b9c14610b0a578063cd87551814610b29578063d1deba1f14610b48578063dd62ed3e14610b5b575f5ffd5b8063be9a655514610aa3578063c024666814610ab7578063c18bc19514610ad6578063c446183414610af5575f5ffd5b8063a4c51df511610194578063b256f7b711610164578063b256f7b7146109fe578063b353aaa714610a1d578063b70143c914610a50578063baf3292d14610a6f578063bccb468714610a8e575f5ffd5b8063a4c51df514610982578063a6c3d165146109a1578063a6fb5dfd146109c0578063a9059cbb146109df575f5ffd5b80639a2095a5116101cf5780639a2095a5146108d55780639bdb9812146108f45780639f38369a14610944578063a457c2d714610963575f5ffd5b80638da5cb5b146108725780639358928b1461088e578063950c8a74146108a257806395d89b41146108c1575f5ffd5b80633d8b38f6116102f65780635b8c41e61161028b578063715018a61161025b578063715018a6146107c35780637533d788146107d757806376203b48146107f6578063857749b0146108095780638cfd8f5c1461083c575f5ffd5b80635b8c41e6146107105780636256d1811461075d578063695ef6bf1461077c57806370a082311461078f575f5ffd5b806349bd5a5e116102c657806349bd5a5e1461068a5780634c42899a146106bd5780634ebc552d146106d057806353371be0146106ef575f5ffd5b80633d8b38f61461060e5780633f1f4fa41461062d57806342d65a8d146106585780634477051514610677575f5ffd5b806323b872dd1161036c578063313ce5671161033c578063313ce5671461057b578063365260b41461059c57806339509351146105d05780633d5369f6146105ef575f5ffd5b806323b872dd146104de5780632784ed03146104fd5780632dc0562d1461051c578063302757441461055c575f5ffd5b80630df37483116103a75780630df374831461046d57806310ddb1371461048c57806318160ddd146104ab5780631dc36945146104c9575f5ffd5b806301ffc9a7146103d857806306fdde031461040c57806307e0db171461042d578063095ea7b31461044e575b5f5ffd5b3480156103e3575f5ffd5b506103f76103f2366004613d79565b610c7e565b60405190151581526020015b60405180910390f35b348015610417575f5ffd5b50610420610cb4565b6040516104039190613dce565b348015610438575f5ffd5b5061044c610447366004613df6565b610d44565b005b348015610459575f5ffd5b506103f7610468366004613e23565b610dc8565b348015610478575f5ffd5b5061044c610487366004613e4d565b610ddf565b348015610497575f5ffd5b5061044c6104a6366004613df6565b610dfd565b3480156104b6575f5ffd5b506009545b604051908152602001610403565b3480156104d4575f5ffd5b506104bb600d5481565b3480156104e9575f5ffd5b506103f76104f8366004613e67565b610e55565b348015610508575f5ffd5b5061044c610517366004613eff565b610e78565b348015610527575f5ffd5b50601454610544906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610403565b348015610567575f5ffd5b5061044c610576366004613f9d565b610f63565b348015610586575f5ffd5b5060125b60405160ff9091168152602001610403565b3480156105a7575f5ffd5b506105bb6105b6366004613fb6565b610f85565b60408051928352602083019190915201610403565b3480156105db575f5ffd5b506103f76105ea366004613e23565b610fd8565b3480156105fa575f5ffd5b5061044c61060936600461400a565b610ff9565b348015610619575f5ffd5b506103f7610628366004614021565b61104a565b348015610638575f5ffd5b506104bb610647366004613df6565b60036020525f908152604090205481565b348015610663575f5ffd5b5061044c610672366004614021565b611113565b348015610682575f5ffd5b506104bb5f81565b348015610695575f5ffd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c8575f5ffd5b5061058a5f81565b3480156106db575f5ffd5b5061044c6106ea36600461400a565b61119d565b3480156106fa575f5ffd5b506014546103f790640100000000900460ff1681565b34801561071b575f5ffd5b506104bb61072a3660046140d9565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610768575f5ffd5b5061044c61077736600461400a565b61123c565b61044c61078a366004614188565b611249565b34801561079a575f5ffd5b506104bb6107a93660046141f6565b6001600160a01b03165f9081526007602052604090205490565b3480156107ce575f5ffd5b5061044c6112b3565b3480156107e2575f5ffd5b506104206107f1366004613df6565b6112c6565b61044c610804366004614211565b61135d565b348015610814575f5ffd5b5061058a7f000000000000000000000000000000000000000000000000000000000000000081565b348015610847575f5ffd5b506104bb6108563660046142be565b600260209081525f928352604080842090915290825290205481565b34801561087d575f5ffd5b505f546001600160a01b0316610544565b348015610899575f5ffd5b506104bb61140a565b3480156108ad575f5ffd5b50600454610544906001600160a01b031681565b3480156108cc575f5ffd5b50610420611419565b3480156108e0575f5ffd5b5061044c6108ef3660046142ef565b611428565b3480156108ff575f5ffd5b506103f761090e3660046140d9565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561094f575f5ffd5b5061042061095e366004613df6565b611550565b34801561096e575f5ffd5b506103f761097d366004613e23565b61166d565b34801561098d575f5ffd5b506105bb61099c3660046143af565b6116e7565b3480156109ac575f5ffd5b5061044c6109bb366004614021565b611773565b3480156109cb575f5ffd5b5061044c6109da3660046141f6565b6117fb565b3480156109ea575f5ffd5b506103f76109f9366004613e23565b611833565b348015610a09575f5ffd5b5061044c610a18366004613f9d565b611840565b348015610a28575f5ffd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b348015610a5b575f5ffd5b5061044c610a6a36600461400a565b611864565b348015610a7a575f5ffd5b5061044c610a893660046141f6565b611875565b348015610a99575f5ffd5b506104bb60125481565b348015610aae575f5ffd5b5061044c6118d1565b348015610ac2575f5ffd5b5061044c610ad1366004614462565b611944565b348015610ae1575f5ffd5b5061044c610af036600461400a565b611976565b348015610b00575f5ffd5b506104bb61271081565b348015610b15575f5ffd5b5061044c610b2436600461448c565b611983565b348015610b34575f5ffd5b5061044c610b43366004613eff565b611a08565b61044c610b56366004613eff565b611c37565b348015610b66575f5ffd5b506104bb610b753660046144f5565b611e53565b348015610b85575f5ffd5b5061044c610b9436600461452c565b611e7d565b348015610ba4575f5ffd5b5061044c610bb3366004614555565b611ee6565b348015610bc3575f5ffd5b506103f7610bd23660046141f6565b60156020525f908152604090205460ff1681565b348015610bf1575f5ffd5b5061058a600181565b348015610c05575f5ffd5b506104bb600e5481565b348015610c1a575f5ffd5b5061044c610c29366004614021565b611f03565b348015610c39575f5ffd5b5061044c610c483660046141f6565b611f5c565b348015610c58575f5ffd5b50610420610c67366004614575565b611fd2565b348015610c77575f5ffd5b5030610544565b5f6001600160e01b03198216631f7ecdf760e01b1480610cae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610cc3906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef906145bf565b8015610d3a5780601f10610d1157610100808354040283529160200191610d3a565b820191905f5260205f20905b815481529060010190602001808311610d1d57829003601f168201915b5050505050905090565b610d4c61207f565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610daf575f5ffd5b505af1158015610dc1573d5f5f3e3d5ffd5b5050505050565b5f33610dd58185856120d8565b5060019392505050565b610de761207f565b61ffff9091165f90815260036020526040902055565b610e0561207f565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610d98565b5f33610e628582856121fb565b610e6d858585612273565b506001949350505050565b333014610ee75760405162461bcd60e51b815260206004820152603260248201527f4e6f6e626c6f636b696e6754524942555445654170703a2063616c6c6572206d60448201527107573742062652054524942555445654170760741b60648201526084015b60405180910390fd5b610f5b8686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f9201919091525061267392505050565b505050505050565b610f6b61207f565b601480549115156101000261ff0019909216919091179055565b5f5f610fc98888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506126f892505050565b91509150965096945050505050565b5f33610dd5818585610fea8383611e53565b610ff49190614605565b6120d8565b61100161207f565b5f81116110455760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610ede565b600f55565b61ffff83165f908152600160205260408120805482919061106a906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611096906145bf565b80156110e15780601f106110b8576101008083540402835291602001916110e1565b820191905f5260205f20905b8154815290600101906020018083116110c457829003601f168201915b5050505050905083836040516110f8929190614618565b60405180910390208180519060200120149150509392505050565b61111b61207f565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d9061116b9086908690869060040161464f565b5f604051808303815f87803b158015611182575f5ffd5b505af1158015611194573d5f5f3e3d5ffd5b50505050505050565b80601154036111b3576028600d819055600e5550565b8060115460016111c39190614605565b106111d5576023600d819055600e5550565b8060115460056111e59190614605565b106111f757601e600d819055600e5550565b80601154600b6112079190614605565b10611219576019600d819055600e5550565b8060115460186112299190614605565b10611239576014600d819055600e555b50565b61124461207f565b600c55565b610f5b8585858561125d60208701876141f6565b61126d60408801602089016141f6565b61127a604089018961466c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506127e792505050565b6112bb61207f565b6112c45f6128d0565b565b60016020525f9081526040902080546112de906145bf565b80601f016020809104026020016040519081016040528092919081815260200182805461130a906145bf565b80156113555780601f1061132c57610100808354040283529160200191611355565b820191905f5260205f20905b81548152906001019060200180831161133857829003601f168201915b505050505081565b6113ff8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92506113a991505060208901896141f6565b6113b960408a0160208b016141f6565b6113c660408b018b61466c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061291f92505050565b505050505050505050565b5f61141460095490565b905090565b6060600b8054610cc3906145bf565b3330146114855760405162461bcd60e51b815260206004820152602560248201527f524542415345436f72653a2063616c6c6572206d75737420626520524542415360448201526445436f726560d81b6064820152608401610ede565b611490308686612a1c565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516114d291815260200190565b60405180910390a3604051631d9f3d3160e11b81526001600160a01b03861690633b3e7a62908390611516908e908e908e908e908e908d908d908d906004016146ae565b5f604051808303815f88803b15801561152d575f5ffd5b5087f115801561153f573d5f5f3e3d5ffd5b505050505050505050505050505050565b61ffff81165f90815260016020526040812080546060929190611572906145bf565b80601f016020809104026020016040519081016040528092919081815260200182805461159e906145bf565b80156115e95780601f106115c0576101008083540402835291602001916115e9565b820191905f5260205f20905b8154815290600101906020018083116115cc57829003601f168201915b5050505050905080515f0361164c5760405162461bcd60e51b815260206004820152602360248201527f54524942555445654170703a206e6f20747275737465642070617468207265636044820152621bdc9960ea1b6064820152608401610ede565b6116665f6014835161165e9190614708565b839190612a6d565b9392505050565b5f338161167a8286611e53565b9050838110156116da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ede565b610e6d82868684036120d8565b5f5f6117618b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612b7992505050565b91509150995099975050505050505050565b61177b61207f565b8181306040516020016117909392919061471b565b60408051601f1981840301815291815261ffff85165f908152600160205220906117ba9082614785565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce8383836040516117ee9392919061464f565b60405180910390a1505050565b61180361207f565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610dd5818585612273565b61184861207f565b60148054911515620100000262ff000019909216919091179055565b61186c61207f565b61123981612c30565b61187d61207f565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b6118d961207f565b601454640100000000900460ff16156119295760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610ede565b601480544360115564ff000000ff1916640100000001179055565b61194c61207f565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b61197e61207f565b601055565b61198b61207f565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c906119df908890889088908890889060040161483f565b5f604051808303815f87803b1580156119f6575f5ffd5b505af11580156113ff573d5f5f3e3d5ffd5b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614611a8c5760405162461bcd60e51b8152602060048201526024808201527f54524942555445654170703a20696e76616c696420656e64706f696e74206361604482015263363632b960e11b6064820152608401610ede565b61ffff86165f9081526001602052604081208054611aa9906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad5906145bf565b8015611b205780601f10611af757610100808354040283529160200191611b20565b820191905f5260205f20905b815481529060010190602001808311611b0357829003601f168201915b50505050509050805186869050148015611b3a57505f8151115b8015611b62575080516020820120604051611b589088908890614618565b6040518091039020145b611bc35760405162461bcd60e51b815260206004820152602c60248201527f54524942555445654170703a20696e76616c696420736f757263652073656e6460448201526b1a5b99c818dbdb9d1c9858dd60a21b6064820152608401610ede565b6111948787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f92019190915250612e1692505050565b61ffff86165f908152600560205260408082209051611c599088908890614618565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611cde5760405162461bcd60e51b815260206004820152602960248201527f4e6f6e626c6f636b696e6754524942555445654170703a206e6f2073746f726560448201526864206d65737361676560b81b6064820152608401610ede565b808383604051611cef929190614618565b604051809103902014611d545760405162461bcd60e51b815260206004820152602760248201527f4e6f6e626c6f636b696e6754524942555445654170703a20696e76616c6964206044820152661c185e5b1bd85960ca1b6064820152608401610ede565b61ffff87165f908152600560205260408082209051611d769089908990614618565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611e0b91899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061267392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611e42959493929190614877565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611e8561207f565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac0906060016117ee565b611eee61207f565b600d91909155600e556014805460ff19169055565b611f0b61207f565b61ffff83165f908152600160205260409020611f288284836148b1565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516117ee9392919061464f565b611f6461207f565b6001600160a01b038116611fc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ede565b611239816128d0565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc906084015f60405180830381865afa15801561204f573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612076919081019061496a565b95945050505050565b5f546001600160a01b031633146112c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ede565b6001600160a01b03831661213a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ede565b6001600160a01b03821661219b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ede565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122068484611e53565b90505f19811461226d57818110156122605760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ede565b61226d84848484036120d8565b50505050565b5f81116122d15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610ede565b601454640100000000900460ff1661234f575f546001600160a01b038481169116148061230a57505f546001600160a01b038381169116145b61234f5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610ede565b6014545f9060ff1615612365576123654361119d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480156123be57506001600160a01b0383165f9081526015602052604090205460ff16155b156124bb57601054826123e5856001600160a01b03165f9081526007602052604090205490565b6123ef9190614605565b11156124345760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610ede565b600c548211156124795760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610ede565b601454610100900460ff16156124a6576064600d548361249991906149de565b6124a39190614a09565b90505b60128054905f6124b583614a1c565b91905055505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561251457506001600160a01b0384165f9081526015602052604090205460ff16155b1561258b57600c5482111561255e5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610ede565b601454610100900460ff161561258b576064600e548361257e91906149de565b6125889190614a09565b90505b305f90815260076020526040902054600f54811080159081906125b857506014546301000000900460ff16155b80156125f657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b801561261a57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126295750601354601254115b1561263957612639600f54612c30565b8215612668575f61264a8486614708565b9050612657873086612e8e565b612662878783612e8e565b50610f5b565b610f5b868686612e8e565b5f61267e8282613037565b905060ff81166126995761269485858585613092565b610dc1565b5f1960ff8216016126b05761269485858585613120565b60405162461bcd60e51b815260206004820152601f60248201527f524542415345436f72653a20756e6b6e6f776e207061636b65742074797065006044820152606401610ede565b5f5f5f6127438761270888613323565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb109061279a908b90309086908b908b90600401614a34565b6040805180830381865afa1580156127b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127d89190614a87565b92509250509550959350505050565b5f6127f4878284816133a8565b6127fd85613485565b50905061280c888888846134c4565b90505f811161285d5760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610ede565b5f61286b8761270884613323565b905061287b8882878787346134f5565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a856040516128bc91815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f612936896001846001600160401b0389166133a8565b61293f87613485565b50905061294e8a8a8a846134c4565b90505f811161299f5760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610ede565b5f6129b5338a6129ae85613323565b8a8a613698565b90506129c58a82878787346134f5565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a0691815260200190565b60405180910390a4509998505050505050505050565b5f33306001600160a01b03861614801590612a495750806001600160a01b0316856001600160a01b031614155b15612a5957612a598582856121fb565b612a64858585612273565b50909392505050565b606081612a7b81601f614605565b1015612aba5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610ede565b612ac48284614605565b84511015612b085760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610ede565b606082158015612b265760405191505f825260208201604052612b70565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b5f578051835260209283019201612b47565b5050858452601f01601f1916604052505b50949350505050565b5f5f5f612b8a338a6129ae8b613323565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612be1908d90309086908b908b90600401614a34565b6040805180830381865afa158015612bfb573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c1f9190614a87565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612c7657612c76614aa9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cf2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d169190614abd565b81600181518110612d2957612d29614aa9565b60200260200101906001600160a01b031690816001600160a01b031681525050612d74307f0000000000000000000000000000000000000000000000000000000000000000846120d8565b60145460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792612dd89287925f92889265010000000000909204909116904290600401614ad8565b5f604051808303815f87803b158015612def575f5ffd5b505af1158015612e01573d5f5f3e3d5ffd5b50506014805463ff0000001916905550505050565b5f5f612e785a6096632784ed0360e01b89898989604051602401612e3d9493929190614b48565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906136d9565b9150915081610f5b57610f5b868686868561375d565b6001600160a01b038316612ef25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ede565b6001600160a01b038216612f545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ede565b6001600160a01b0383165f9081526007602052604090205481811015612fcb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ede565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061302a9086815260200190565b60405180910390a361226d565b5f613043826001614605565b835110156130895760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610ede565b50016001015190565b5f5f61309d836137fc565b90925090506001600160a01b0382166130b65761dead91505b5f6130c082613885565b90506130cd8784836138b9565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161310f91815260200190565b60405180910390a350505050505050565b5f5f5f5f5f61312e866138cb565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516131609190614b9c565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061319285613885565b9050816131fe576131a48b30836138b9565b61ffff8c165f908152600660205260409081902090519192506001916131cb908d90614b9c565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613255576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061226d565b8a8a8a8a8a8a868a5f8a613272578b6001600160401b0316613274565b5a5b90505f5f6132a55a6096639a2095a560e01b8e8e8e8d8d8d8d8d604051602401612e3d989796959493929190614ba7565b9150915081156132fe578751602089012060405161ffff8d16907f6d76c6b2837f234f610c722403fa5f92d7d05f167f2918924b59b8e34f3a43bf906132f0908e908e908690614c19565b60405180910390a25061330b565b61330b8b8b8b8b8561375d565b50505050505050505050505050505050505050505050565b5f8061334f7f000000000000000000000000000000000000000000000000000000000000000084614a09565b90506001600160401b03811115610cae5760405162461bcd60e51b815260206004820152601d60248201527f524542415345436f72653a20616d6f756e745344206f766572666c6f770000006044820152606401610ede565b5f6133b283613986565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806134225760405162461bcd60e51b815260206004820181905260248201527f54524942555445654170703a206d696e4761734c696d6974206e6f74207365746044820152606401610ede565b61342c8382614605565b821015610f5b5760405162461bcd60e51b815260206004820152602160248201527f54524942555445654170703a20676173206c696d697420697320746f6f206c6f6044820152607760f81b6064820152608401610ede565b5f806134b17f000000000000000000000000000000000000000000000000000000000000000084614c46565b90506134bd8184614708565b9150915091565b5f336001600160a01b03861681146134e1576134e18682856121fb565b6134eb86846139ec565b5090949350505050565b61ffff86165f9081526001602052604081208054613512906145bf565b80601f016020809104026020016040519081016040528092919081815260200182805461353e906145bf565b80156135895780601f1061356057610100808354040283529160200191613589565b820191905f5260205f20905b81548152906001019060200180831161356c57829003601f168201915b5050505050905080515f036135ff5760405162461bcd60e51b815260206004820152603660248201527f54524942555445654170703a2064657374696e6174696f6e20636861696e206960448201527573206e6f742061207472757374656420736f7572636560501b6064820152608401610ede565b61360a878751613b1e565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490613661908b9086908c908c908c908c90600401614c59565b5f604051808303818588803b158015613678575f5ffd5b505af115801561368a573d5f5f3e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016136bf96959493929190614cbf565b604051602081830303815290604052905095945050505050565b5f60605f5f5f8661ffff166001600160401b038111156136fb576136fb61406f565b6040519080825280601f01601f191660200182016040528015613725576020820181803683370190505b5090505f5f8751602089015f8d8df191503d925086831115613745578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f208560405161378c9190614b9c565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906137e89087908790879087908790614d0f565b60405180910390a15050505050565b505050565b5f80806138098482613037565b60ff1614801561381a575082516029145b6138665760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610ede565b61387183600d613b9d565b915061387e836021613c01565b9050915091565b5f610cae7f00000000000000000000000000000000000000000000000000000000000000006001600160401b0384166149de565b5f6138c48383613c5d565b5092915050565b5f808060608160016138dd8783613037565b60ff161461392d5760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610ede565b61393886600d613b9d565b9350613945866021613c01565b9250613952866029613d1c565b945061395f866049613c01565b905061397b60518088516139739190614708565b889190612a6d565b915091939590929450565b5f6022825110156139e45760405162461bcd60e51b815260206004820152602260248201527f54524942555445654170703a20696e76616c69642061646170746572506172616044820152616d7360f01b6064820152608401610ede565b506022015190565b6001600160a01b038216613a4c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ede565b6001600160a01b0382165f9081526007602052604090205481811015613abf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ede565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b3e57506127105b808211156137f75760405162461bcd60e51b815260206004820152602660248201527f54524942555445654170703a207061796c6f61642073697a6520697320746f6f604482015265206c6172676560d01b6064820152608401610ede565b5f613ba9826014614605565b83511015613bf15760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610ede565b500160200151600160601b900490565b5f613c0d826008614605565b83511015613c545760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610ede565b50016008015190565b6001600160a01b038216613cb35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610ede565b8060095f828254613cc49190614605565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d28826020614605565b83511015613d705760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610ede565b50016020015190565b5f60208284031215613d89575f5ffd5b81356001600160e01b031981168114611666575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6116666020830184613da0565b803561ffff81168114613df1575f5ffd5b919050565b5f60208284031215613e06575f5ffd5b61166682613de0565b6001600160a01b0381168114611239575f5ffd5b5f5f60408385031215613e34575f5ffd5b8235613e3f81613e0f565b946020939093013593505050565b5f5f60408385031215613e5e575f5ffd5b613e3f83613de0565b5f5f5f60608486031215613e79575f5ffd5b8335613e8481613e0f565b92506020840135613e9481613e0f565b929592945050506040919091013590565b5f5f83601f840112613eb5575f5ffd5b5081356001600160401b03811115613ecb575f5ffd5b602083019150836020828501011115613ee2575f5ffd5b9250929050565b80356001600160401b0381168114613df1575f5ffd5b5f5f5f5f5f5f60808789031215613f14575f5ffd5b613f1d87613de0565b955060208701356001600160401b03811115613f37575f5ffd5b613f4389828a01613ea5565b9096509450613f56905060408801613ee9565b925060608701356001600160401b03811115613f70575f5ffd5b613f7c89828a01613ea5565b979a9699509497509295939492505050565b80358015158114613df1575f5ffd5b5f60208284031215613fad575f5ffd5b61166682613f8e565b5f5f5f5f5f5f60a08789031215613fcb575f5ffd5b613fd487613de0565b95506020870135945060408701359350613ff060608801613f8e565b925060808701356001600160401b03811115613f70575f5ffd5b5f6020828403121561401a575f5ffd5b5035919050565b5f5f5f60408486031215614033575f5ffd5b61403c84613de0565b925060208401356001600160401b03811115614056575f5ffd5b61406286828701613ea5565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156140ab576140ab61406f565b604052919050565b5f6001600160401b038211156140cb576140cb61406f565b50601f01601f191660200190565b5f5f5f606084860312156140eb575f5ffd5b6140f484613de0565b925060208401356001600160401b0381111561410e575f5ffd5b8401601f8101861361411e575f5ffd5b803561413161412c826140b3565b614083565b818152876020838501011115614145575f5ffd5b816020840160208301375f6020838301015280945050505061416960408501613ee9565b90509250925092565b5f60608284031215614182575f5ffd5b50919050565b5f5f5f5f5f60a0868803121561419c575f5ffd5b85356141a781613e0f565b94506141b560208701613de0565b9350604086013592506060860135915060808601356001600160401b038111156141dd575f5ffd5b6141e988828901614172565b9150509295509295909350565b5f60208284031215614206575f5ffd5b813561166681613e0f565b5f5f5f5f5f5f5f5f60e0898b031215614228575f5ffd5b883561423381613e0f565b975061424160208a01613de0565b9650604089013595506060890135945060808901356001600160401b03811115614269575f5ffd5b6142758b828c01613ea5565b9095509350614288905060a08a01613ee9565b915060c08901356001600160401b038111156142a2575f5ffd5b6142ae8b828c01614172565b9150509295985092959890939650565b5f5f604083850312156142cf575f5ffd5b6142d883613de0565b91506142e660208401613de0565b90509250929050565b5f5f5f5f5f5f5f5f5f5f6101008b8d031215614309575f5ffd5b6143128b613de0565b995060208b01356001600160401b0381111561432c575f5ffd5b6143388d828e01613ea5565b909a50985061434b905060408c01613ee9565b965060608b0135955060808b013561436281613e0f565b945060a08b0135935060c08b01356001600160401b03811115614383575f5ffd5b61438f8d828e01613ea5565b9b9e9a9d50989b979a96999598949794969560e090950135949350505050565b5f5f5f5f5f5f5f5f5f60e08a8c0312156143c7575f5ffd5b6143d08a613de0565b985060208a0135975060408a0135965060608a01356001600160401b038111156143f8575f5ffd5b6144048c828d01613ea5565b9097509550614417905060808b01613ee9565b935061442560a08b01613f8e565b925060c08a01356001600160401b0381111561443f575f5ffd5b61444b8c828d01613ea5565b915080935050809150509295985092959850929598565b5f5f60408385031215614473575f5ffd5b823561447e81613e0f565b91506142e660208401613f8e565b5f5f5f5f5f608086880312156144a0575f5ffd5b6144a986613de0565b94506144b760208701613de0565b93506040860135925060608601356001600160401b038111156144d8575f5ffd5b6144e488828901613ea5565b969995985093965092949392505050565b5f5f60408385031215614506575f5ffd5b823561451181613e0f565b9150602083013561452181613e0f565b809150509250929050565b5f5f5f6060848603121561453e575f5ffd5b61454784613de0565b9250613e9460208501613de0565b5f5f60408385031215614566575f5ffd5b50508035926020909101359150565b5f5f5f5f60808587031215614588575f5ffd5b61459185613de0565b935061459f60208601613de0565b925060408501356145af81613e0f565b9396929550929360600135925050565b600181811c908216806145d357607f821691505b60208210810361418257634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610cae57610cae6145f1565b818382375f9101908152919050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f612076604083018486614627565b5f5f8335601e19843603018112614681575f5ffd5b8301803591506001600160401b0382111561469a575f5ffd5b602001915036819003821315613ee2575f5ffd5b61ffff8916815260c060208201525f6146cb60c08301898b614627565b6001600160401b038816604084015286606084015285608084015282810360a08401526146f9818587614627565b9b9a5050505050505050505050565b81810381811115610cae57610cae6145f1565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f757805f5260205f20601f840160051c810160208510156147665750805b601f840160051c820191505b81811015610dc1575f8155600101614772565b81516001600160401b0381111561479e5761479e61406f565b6147b2816147ac84546145bf565b84614741565b6020601f8211600181146147e4575f83156147cd5750848201515b5f19600385901b1c1916600184901b178455610dc1565b5f84815260208120601f198516915b8281101561481357878501518255602094850194600190920191016147f3565b508482101561483057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b61ffff8616815261ffff85166020820152836040820152608060608201525f61486c608083018486614627565b979650505050505050565b61ffff86168152608060208201525f614894608083018688614627565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b038311156148c8576148c861406f565b6148dc836148d683546145bf565b83614741565b5f601f84116001811461490d575f85156148f65750838201355b5f19600387901b1c1916600186901b178355610dc1565b5f83815260208120601f198716915b8281101561493c578685013582556020948501946001909201910161491c565b5086821015614958575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561497a575f5ffd5b81516001600160401b0381111561498f575f5ffd5b8201601f8101841361499f575f5ffd5b80516149ad61412c826140b3565b8181528560208385010111156149c1575f5ffd5b8160208401602083015e5f91810160200191909152949350505050565b8082028115828204841417610cae57610cae6145f1565b634e487b7160e01b5f52601260045260245ffd5b5f82614a1757614a176149f5565b500490565b5f60018201614a2d57614a2d6145f1565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614a6190830186613da0565b84151560608401528281036080840152614a7b8185613da0565b98975050505050505050565b5f5f60408385031215614a98575f5ffd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614acd575f5ffd5b815161166681613e0f565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015614b285783516001600160a01b0316835260209384019390920191600101614b01565b50506001600160a01b039590951660608401525050608001529392505050565b61ffff85168152608060208201525f614b646080830186613da0565b6001600160401b0385166040840152828103606084015261486c8185613da0565b5f81518060208401855e5f93019283525090919050565b5f6116668284614b85565b61ffff8916815261010060208201525f614bc561010083018a613da0565b6001600160401b0389166040840152606083018890526001600160a01b038716608084015260a0830186905282810360c0840152614c038186613da0565b9150508260e08301529998505050505050505050565b606081525f614c2b6060830186613da0565b6001600160401b039490941660208301525060400152919050565b5f82614c5457614c546149f5565b500690565b61ffff8716815260c060208201525f614c7560c0830188613da0565b8281036040840152614c878188613da0565b6001600160a01b0387811660608601528616608085015283810360a08501529050614cb28185613da0565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201526001600160401b0360c01b8560c01b1660218201528360298201526001600160401b0360c01b8360c01b1660498201525f614a7b6051830184614b85565b61ffff8616815260a060208201525f614d2b60a0830187613da0565b6001600160401b03861660408401528281036060840152614d4c8186613da0565b90508281036080840152614a7b8185613da056fea2646970667358221220d418491968f44a8d871250fe2730d645aae864793e4797254ecb40dd1091b10d64736f6c634300081e0033

Deployed Bytecode

0x6080604052600436106103d4575f3560e01c80638da5cb5b116101ff578063be9a655511610113578063df2a5b3b116100a8578063e9451f5f11610078578063e9451f5f14610bfa578063eb8d72b714610c0f578063f2fde38b14610c2e578063f5ecbdbc14610c4d578063fc0c546a14610c6c575f5ffd5b8063df2a5b3b14610b7a578063df47e37314610b99578063e0bf7fd114610bb8578063e6a20ae614610be6575f5ffd5b8063cbed8b9c116100e3578063cbed8b9c14610b0a578063cd87551814610b29578063d1deba1f14610b48578063dd62ed3e14610b5b575f5ffd5b8063be9a655514610aa3578063c024666814610ab7578063c18bc19514610ad6578063c446183414610af5575f5ffd5b8063a4c51df511610194578063b256f7b711610164578063b256f7b7146109fe578063b353aaa714610a1d578063b70143c914610a50578063baf3292d14610a6f578063bccb468714610a8e575f5ffd5b8063a4c51df514610982578063a6c3d165146109a1578063a6fb5dfd146109c0578063a9059cbb146109df575f5ffd5b80639a2095a5116101cf5780639a2095a5146108d55780639bdb9812146108f45780639f38369a14610944578063a457c2d714610963575f5ffd5b80638da5cb5b146108725780639358928b1461088e578063950c8a74146108a257806395d89b41146108c1575f5ffd5b80633d8b38f6116102f65780635b8c41e61161028b578063715018a61161025b578063715018a6146107c35780637533d788146107d757806376203b48146107f6578063857749b0146108095780638cfd8f5c1461083c575f5ffd5b80635b8c41e6146107105780636256d1811461075d578063695ef6bf1461077c57806370a082311461078f575f5ffd5b806349bd5a5e116102c657806349bd5a5e1461068a5780634c42899a146106bd5780634ebc552d146106d057806353371be0146106ef575f5ffd5b80633d8b38f61461060e5780633f1f4fa41461062d57806342d65a8d146106585780634477051514610677575f5ffd5b806323b872dd1161036c578063313ce5671161033c578063313ce5671461057b578063365260b41461059c57806339509351146105d05780633d5369f6146105ef575f5ffd5b806323b872dd146104de5780632784ed03146104fd5780632dc0562d1461051c578063302757441461055c575f5ffd5b80630df37483116103a75780630df374831461046d57806310ddb1371461048c57806318160ddd146104ab5780631dc36945146104c9575f5ffd5b806301ffc9a7146103d857806306fdde031461040c57806307e0db171461042d578063095ea7b31461044e575b5f5ffd5b3480156103e3575f5ffd5b506103f76103f2366004613d79565b610c7e565b60405190151581526020015b60405180910390f35b348015610417575f5ffd5b50610420610cb4565b6040516104039190613dce565b348015610438575f5ffd5b5061044c610447366004613df6565b610d44565b005b348015610459575f5ffd5b506103f7610468366004613e23565b610dc8565b348015610478575f5ffd5b5061044c610487366004613e4d565b610ddf565b348015610497575f5ffd5b5061044c6104a6366004613df6565b610dfd565b3480156104b6575f5ffd5b506009545b604051908152602001610403565b3480156104d4575f5ffd5b506104bb600d5481565b3480156104e9575f5ffd5b506103f76104f8366004613e67565b610e55565b348015610508575f5ffd5b5061044c610517366004613eff565b610e78565b348015610527575f5ffd5b50601454610544906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610403565b348015610567575f5ffd5b5061044c610576366004613f9d565b610f63565b348015610586575f5ffd5b5060125b60405160ff9091168152602001610403565b3480156105a7575f5ffd5b506105bb6105b6366004613fb6565b610f85565b60408051928352602083019190915201610403565b3480156105db575f5ffd5b506103f76105ea366004613e23565b610fd8565b3480156105fa575f5ffd5b5061044c61060936600461400a565b610ff9565b348015610619575f5ffd5b506103f7610628366004614021565b61104a565b348015610638575f5ffd5b506104bb610647366004613df6565b60036020525f908152604090205481565b348015610663575f5ffd5b5061044c610672366004614021565b611113565b348015610682575f5ffd5b506104bb5f81565b348015610695575f5ffd5b506105447f000000000000000000000000d5538d79fdd6be309e0f39c1f7ccc418e1f2e52481565b3480156106c8575f5ffd5b5061058a5f81565b3480156106db575f5ffd5b5061044c6106ea36600461400a565b61119d565b3480156106fa575f5ffd5b506014546103f790640100000000900460ff1681565b34801561071b575f5ffd5b506104bb61072a3660046140d9565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610768575f5ffd5b5061044c61077736600461400a565b61123c565b61044c61078a366004614188565b611249565b34801561079a575f5ffd5b506104bb6107a93660046141f6565b6001600160a01b03165f9081526007602052604090205490565b3480156107ce575f5ffd5b5061044c6112b3565b3480156107e2575f5ffd5b506104206107f1366004613df6565b6112c6565b61044c610804366004614211565b61135d565b348015610814575f5ffd5b5061058a7f000000000000000000000000000000000000000000000000000000000000000881565b348015610847575f5ffd5b506104bb6108563660046142be565b600260209081525f928352604080842090915290825290205481565b34801561087d575f5ffd5b505f546001600160a01b0316610544565b348015610899575f5ffd5b506104bb61140a565b3480156108ad575f5ffd5b50600454610544906001600160a01b031681565b3480156108cc575f5ffd5b50610420611419565b3480156108e0575f5ffd5b5061044c6108ef3660046142ef565b611428565b3480156108ff575f5ffd5b506103f761090e3660046140d9565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561094f575f5ffd5b5061042061095e366004613df6565b611550565b34801561096e575f5ffd5b506103f761097d366004613e23565b61166d565b34801561098d575f5ffd5b506105bb61099c3660046143af565b6116e7565b3480156109ac575f5ffd5b5061044c6109bb366004614021565b611773565b3480156109cb575f5ffd5b5061044c6109da3660046141f6565b6117fb565b3480156109ea575f5ffd5b506103f76109f9366004613e23565b611833565b348015610a09575f5ffd5b5061044c610a18366004613f9d565b611840565b348015610a28575f5ffd5b506105447f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b9281565b348015610a5b575f5ffd5b5061044c610a6a36600461400a565b611864565b348015610a7a575f5ffd5b5061044c610a893660046141f6565b611875565b348015610a99575f5ffd5b506104bb60125481565b348015610aae575f5ffd5b5061044c6118d1565b348015610ac2575f5ffd5b5061044c610ad1366004614462565b611944565b348015610ae1575f5ffd5b5061044c610af036600461400a565b611976565b348015610b00575f5ffd5b506104bb61271081565b348015610b15575f5ffd5b5061044c610b2436600461448c565b611983565b348015610b34575f5ffd5b5061044c610b43366004613eff565b611a08565b61044c610b56366004613eff565b611c37565b348015610b66575f5ffd5b506104bb610b753660046144f5565b611e53565b348015610b85575f5ffd5b5061044c610b9436600461452c565b611e7d565b348015610ba4575f5ffd5b5061044c610bb3366004614555565b611ee6565b348015610bc3575f5ffd5b506103f7610bd23660046141f6565b60156020525f908152604090205460ff1681565b348015610bf1575f5ffd5b5061058a600181565b348015610c05575f5ffd5b506104bb600e5481565b348015610c1a575f5ffd5b5061044c610c29366004614021565b611f03565b348015610c39575f5ffd5b5061044c610c483660046141f6565b611f5c565b348015610c58575f5ffd5b50610420610c67366004614575565b611fd2565b348015610c77575f5ffd5b5030610544565b5f6001600160e01b03198216631f7ecdf760e01b1480610cae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610cc3906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef906145bf565b8015610d3a5780601f10610d1157610100808354040283529160200191610d3a565b820191905f5260205f20905b815481529060010190602001808311610d1d57829003601f168201915b5050505050905090565b610d4c61207f565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b926001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610daf575f5ffd5b505af1158015610dc1573d5f5f3e3d5ffd5b5050505050565b5f33610dd58185856120d8565b5060019392505050565b610de761207f565b61ffff9091165f90815260036020526040902055565b610e0561207f565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b926001600160a01b0316906310ddb13790602401610d98565b5f33610e628582856121fb565b610e6d858585612273565b506001949350505050565b333014610ee75760405162461bcd60e51b815260206004820152603260248201527f4e6f6e626c6f636b696e6754524942555445654170703a2063616c6c6572206d60448201527107573742062652054524942555445654170760741b60648201526084015b60405180910390fd5b610f5b8686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f9201919091525061267392505050565b505050505050565b610f6b61207f565b601480549115156101000261ff0019909216919091179055565b5f5f610fc98888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506126f892505050565b91509150965096945050505050565b5f33610dd5818585610fea8383611e53565b610ff49190614605565b6120d8565b61100161207f565b5f81116110455760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610ede565b600f55565b61ffff83165f908152600160205260408120805482919061106a906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611096906145bf565b80156110e15780601f106110b8576101008083540402835291602001916110e1565b820191905f5260205f20905b8154815290600101906020018083116110c457829003601f168201915b5050505050905083836040516110f8929190614618565b60405180910390208180519060200120149150509392505050565b61111b61207f565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b9216906342d65a8d9061116b9086908690869060040161464f565b5f604051808303815f87803b158015611182575f5ffd5b505af1158015611194573d5f5f3e3d5ffd5b50505050505050565b80601154036111b3576028600d819055600e5550565b8060115460016111c39190614605565b106111d5576023600d819055600e5550565b8060115460056111e59190614605565b106111f757601e600d819055600e5550565b80601154600b6112079190614605565b10611219576019600d819055600e5550565b8060115460186112299190614605565b10611239576014600d819055600e555b50565b61124461207f565b600c55565b610f5b8585858561125d60208701876141f6565b61126d60408801602089016141f6565b61127a604089018961466c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506127e792505050565b6112bb61207f565b6112c45f6128d0565b565b60016020525f9081526040902080546112de906145bf565b80601f016020809104026020016040519081016040528092919081815260200182805461130a906145bf565b80156113555780601f1061132c57610100808354040283529160200191611355565b820191905f5260205f20905b81548152906001019060200180831161133857829003601f168201915b505050505081565b6113ff8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92506113a991505060208901896141f6565b6113b960408a0160208b016141f6565b6113c660408b018b61466c565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061291f92505050565b505050505050505050565b5f61141460095490565b905090565b6060600b8054610cc3906145bf565b3330146114855760405162461bcd60e51b815260206004820152602560248201527f524542415345436f72653a2063616c6c6572206d75737420626520524542415360448201526445436f726560d81b6064820152608401610ede565b611490308686612a1c565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516114d291815260200190565b60405180910390a3604051631d9f3d3160e11b81526001600160a01b03861690633b3e7a62908390611516908e908e908e908e908e908d908d908d906004016146ae565b5f604051808303815f88803b15801561152d575f5ffd5b5087f115801561153f573d5f5f3e3d5ffd5b505050505050505050505050505050565b61ffff81165f90815260016020526040812080546060929190611572906145bf565b80601f016020809104026020016040519081016040528092919081815260200182805461159e906145bf565b80156115e95780601f106115c0576101008083540402835291602001916115e9565b820191905f5260205f20905b8154815290600101906020018083116115cc57829003601f168201915b5050505050905080515f0361164c5760405162461bcd60e51b815260206004820152602360248201527f54524942555445654170703a206e6f20747275737465642070617468207265636044820152621bdc9960ea1b6064820152608401610ede565b6116665f6014835161165e9190614708565b839190612a6d565b9392505050565b5f338161167a8286611e53565b9050838110156116da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ede565b610e6d82868684036120d8565b5f5f6117618b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612b7992505050565b91509150995099975050505050505050565b61177b61207f565b8181306040516020016117909392919061471b565b60408051601f1981840301815291815261ffff85165f908152600160205220906117ba9082614785565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce8383836040516117ee9392919061464f565b60405180910390a1505050565b61180361207f565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610dd5818585612273565b61184861207f565b60148054911515620100000262ff000019909216919091179055565b61186c61207f565b61123981612c30565b61187d61207f565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b6118d961207f565b601454640100000000900460ff16156119295760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610ede565b601480544360115564ff000000ff1916640100000001179055565b61194c61207f565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b61197e61207f565b601055565b61198b61207f565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b92169063cbed8b9c906119df908890889088908890889060040161483f565b5f604051808303815f87803b1580156119f6575f5ffd5b505af11580156113ff573d5f5f3e3d5ffd5b337f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b926001600160a01b031614611a8c5760405162461bcd60e51b8152602060048201526024808201527f54524942555445654170703a20696e76616c696420656e64706f696e74206361604482015263363632b960e11b6064820152608401610ede565b61ffff86165f9081526001602052604081208054611aa9906145bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad5906145bf565b8015611b205780601f10611af757610100808354040283529160200191611b20565b820191905f5260205f20905b815481529060010190602001808311611b0357829003601f168201915b50505050509050805186869050148015611b3a57505f8151115b8015611b62575080516020820120604051611b589088908890614618565b6040518091039020145b611bc35760405162461bcd60e51b815260206004820152602c60248201527f54524942555445654170703a20696e76616c696420736f757263652073656e6460448201526b1a5b99c818dbdb9d1c9858dd60a21b6064820152608401610ede565b6111948787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f92019190915250612e1692505050565b61ffff86165f908152600560205260408082209051611c599088908890614618565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611cde5760405162461bcd60e51b815260206004820152602960248201527f4e6f6e626c6f636b696e6754524942555445654170703a206e6f2073746f726560448201526864206d65737361676560b81b6064820152608401610ede565b808383604051611cef929190614618565b604051809103902014611d545760405162461bcd60e51b815260206004820152602760248201527f4e6f6e626c6f636b696e6754524942555445654170703a20696e76616c6964206044820152661c185e5b1bd85960ca1b6064820152608401610ede565b61ffff87165f908152600560205260408082209051611d769089908990614618565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611e0b91899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061267392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611e42959493929190614877565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611e8561207f565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac0906060016117ee565b611eee61207f565b600d91909155600e556014805460ff19169055565b611f0b61207f565b61ffff83165f908152600160205260409020611f288284836148b1565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516117ee9392919061464f565b611f6461207f565b6001600160a01b038116611fc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ede565b611239816128d0565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b926001600160a01b03169063f5ecbdbc906084015f60405180830381865afa15801561204f573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612076919081019061496a565b95945050505050565b5f546001600160a01b031633146112c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ede565b6001600160a01b03831661213a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ede565b6001600160a01b03821661219b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ede565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6122068484611e53565b90505f19811461226d57818110156122605760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ede565b61226d84848484036120d8565b50505050565b5f81116122d15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610ede565b601454640100000000900460ff1661234f575f546001600160a01b038481169116148061230a57505f546001600160a01b038381169116145b61234f5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610ede565b6014545f9060ff1615612365576123654361119d565b7f000000000000000000000000d5538d79fdd6be309e0f39c1f7ccc418e1f2e5246001600160a01b0316846001600160a01b03161480156123be57506001600160a01b0383165f9081526015602052604090205460ff16155b156124bb57601054826123e5856001600160a01b03165f9081526007602052604090205490565b6123ef9190614605565b11156124345760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610ede565b600c548211156124795760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610ede565b601454610100900460ff16156124a6576064600d548361249991906149de565b6124a39190614a09565b90505b60128054905f6124b583614a1c565b91905055505b7f000000000000000000000000d5538d79fdd6be309e0f39c1f7ccc418e1f2e5246001600160a01b0316836001600160a01b031614801561251457506001600160a01b0384165f9081526015602052604090205460ff16155b1561258b57600c5482111561255e5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610ede565b601454610100900460ff161561258b576064600e548361257e91906149de565b6125889190614a09565b90505b305f90815260076020526040902054600f54811080159081906125b857506014546301000000900460ff16155b80156125f657507f000000000000000000000000d5538d79fdd6be309e0f39c1f7ccc418e1f2e5246001600160a01b0316866001600160a01b031614155b801561261a57506001600160a01b0386165f9081526015602052604090205460ff16155b80156126295750601354601254115b1561263957612639600f54612c30565b8215612668575f61264a8486614708565b9050612657873086612e8e565b612662878783612e8e565b50610f5b565b610f5b868686612e8e565b5f61267e8282613037565b905060ff81166126995761269485858585613092565b610dc1565b5f1960ff8216016126b05761269485858585613120565b60405162461bcd60e51b815260206004820152601f60248201527f524542415345436f72653a20756e6b6e6f776e207061636b65742074797065006044820152606401610ede565b5f5f5f6127438761270888613323565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b9216906340a7bb109061279a908b90309086908b908b90600401614a34565b6040805180830381865afa1580156127b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127d89190614a87565b92509250509550959350505050565b5f6127f4878284816133a8565b6127fd85613485565b50905061280c888888846134c4565b90505f811161285d5760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610ede565b5f61286b8761270884613323565b905061287b8882878787346134f5565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a856040516128bc91815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f612936896001846001600160401b0389166133a8565b61293f87613485565b50905061294e8a8a8a846134c4565b90505f811161299f5760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610ede565b5f6129b5338a6129ae85613323565b8a8a613698565b90506129c58a82878787346134f5565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a0691815260200190565b60405180910390a4509998505050505050505050565b5f33306001600160a01b03861614801590612a495750806001600160a01b0316856001600160a01b031614155b15612a5957612a598582856121fb565b612a64858585612273565b50909392505050565b606081612a7b81601f614605565b1015612aba5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610ede565b612ac48284614605565b84511015612b085760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610ede565b606082158015612b265760405191505f825260208201604052612b70565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612b5f578051835260209283019201612b47565b5050858452601f01601f1916604052505b50949350505050565b5f5f5f612b8a338a6129ae8b613323565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b9216906340a7bb1090612be1908d90309086908b908b90600401614a34565b6040805180830381865afa158015612bfb573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c1f9190614a87565b925092505097509795505050505050565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612c7657612c76614aa9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cf2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d169190614abd565b81600181518110612d2957612d29614aa9565b60200260200101906001600160a01b031690816001600160a01b031681525050612d74307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120d8565b60145460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792612dd89287925f92889265010000000000909204909116904290600401614ad8565b5f604051808303815f87803b158015612def575f5ffd5b505af1158015612e01573d5f5f3e3d5ffd5b50506014805463ff0000001916905550505050565b5f5f612e785a6096632784ed0360e01b89898989604051602401612e3d9493929190614b48565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906136d9565b9150915081610f5b57610f5b868686868561375d565b6001600160a01b038316612ef25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ede565b6001600160a01b038216612f545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ede565b6001600160a01b0383165f9081526007602052604090205481811015612fcb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ede565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061302a9086815260200190565b60405180910390a361226d565b5f613043826001614605565b835110156130895760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610ede565b50016001015190565b5f5f61309d836137fc565b90925090506001600160a01b0382166130b65761dead91505b5f6130c082613885565b90506130cd8784836138b9565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161310f91815260200190565b60405180910390a350505050505050565b5f5f5f5f5f61312e866138cb565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f20896040516131609190614b9c565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff16915061319285613885565b9050816131fe576131a48b30836138b9565b61ffff8c165f908152600660205260409081902090519192506001916131cb908d90614b9c565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613255576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061226d565b8a8a8a8a8a8a868a5f8a613272578b6001600160401b0316613274565b5a5b90505f5f6132a55a6096639a2095a560e01b8e8e8e8d8d8d8d8d604051602401612e3d989796959493929190614ba7565b9150915081156132fe578751602089012060405161ffff8d16907f6d76c6b2837f234f610c722403fa5f92d7d05f167f2918924b59b8e34f3a43bf906132f0908e908e908690614c19565b60405180910390a25061330b565b61330b8b8b8b8b8561375d565b50505050505050505050505050505050505050505050565b5f8061334f7f00000000000000000000000000000000000000000000000000000002540be40084614a09565b90506001600160401b03811115610cae5760405162461bcd60e51b815260206004820152601d60248201527f524542415345436f72653a20616d6f756e745344206f766572666c6f770000006044820152606401610ede565b5f6133b283613986565b61ffff8087165f90815260026020908152604080832093891683529290522054909150806134225760405162461bcd60e51b815260206004820181905260248201527f54524942555445654170703a206d696e4761734c696d6974206e6f74207365746044820152606401610ede565b61342c8382614605565b821015610f5b5760405162461bcd60e51b815260206004820152602160248201527f54524942555445654170703a20676173206c696d697420697320746f6f206c6f6044820152607760f81b6064820152608401610ede565b5f806134b17f00000000000000000000000000000000000000000000000000000002540be40084614c46565b90506134bd8184614708565b9150915091565b5f336001600160a01b03861681146134e1576134e18682856121fb565b6134eb86846139ec565b5090949350505050565b61ffff86165f9081526001602052604081208054613512906145bf565b80601f016020809104026020016040519081016040528092919081815260200182805461353e906145bf565b80156135895780601f1061356057610100808354040283529160200191613589565b820191905f5260205f20905b81548152906001019060200180831161356c57829003601f168201915b5050505050905080515f036135ff5760405162461bcd60e51b815260206004820152603660248201527f54524942555445654170703a2064657374696e6174696f6e20636861696e206960448201527573206e6f742061207472757374656420736f7572636560501b6064820152608401610ede565b61360a878751613b1e565b60405162c5803160e81b81526001600160a01b037f00000000000000000000000075e5dea024385fcce1f21400a4f1f03f89a20b92169063c5803100908490613661908b9086908c908c908c908c90600401614c59565b5f604051808303818588803b158015613678575f5ffd5b505af115801561368a573d5f5f3e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b03891685876040516020016136bf96959493929190614cbf565b604051602081830303815290604052905095945050505050565b5f60605f5f5f8661ffff166001600160401b038111156136fb576136fb61406f565b6040519080825280601f01601f191660200182016040528015613725576020820181803683370190505b5090505f5f8751602089015f8d8df191503d925086831115613745578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f208560405161378c9190614b9c565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906137e89087908790879087908790614d0f565b60405180910390a15050505050565b505050565b5f80806138098482613037565b60ff1614801561381a575082516029145b6138665760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610ede565b61387183600d613b9d565b915061387e836021613c01565b9050915091565b5f610cae7f00000000000000000000000000000000000000000000000000000002540be4006001600160401b0384166149de565b5f6138c48383613c5d565b5092915050565b5f808060608160016138dd8783613037565b60ff161461392d5760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610ede565b61393886600d613b9d565b9350613945866021613c01565b9250613952866029613d1c565b945061395f866049613c01565b905061397b60518088516139739190614708565b889190612a6d565b915091939590929450565b5f6022825110156139e45760405162461bcd60e51b815260206004820152602260248201527f54524942555445654170703a20696e76616c69642061646170746572506172616044820152616d7360f01b6064820152608401610ede565b506022015190565b6001600160a01b038216613a4c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ede565b6001600160a01b0382165f9081526007602052604090205481811015613abf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ede565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b3e57506127105b808211156137f75760405162461bcd60e51b815260206004820152602660248201527f54524942555445654170703a207061796c6f61642073697a6520697320746f6f604482015265206c6172676560d01b6064820152608401610ede565b5f613ba9826014614605565b83511015613bf15760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610ede565b500160200151600160601b900490565b5f613c0d826008614605565b83511015613c545760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610ede565b50016008015190565b6001600160a01b038216613cb35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610ede565b8060095f828254613cc49190614605565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d28826020614605565b83511015613d705760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610ede565b50016020015190565b5f60208284031215613d89575f5ffd5b81356001600160e01b031981168114611666575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6116666020830184613da0565b803561ffff81168114613df1575f5ffd5b919050565b5f60208284031215613e06575f5ffd5b61166682613de0565b6001600160a01b0381168114611239575f5ffd5b5f5f60408385031215613e34575f5ffd5b8235613e3f81613e0f565b946020939093013593505050565b5f5f60408385031215613e5e575f5ffd5b613e3f83613de0565b5f5f5f60608486031215613e79575f5ffd5b8335613e8481613e0f565b92506020840135613e9481613e0f565b929592945050506040919091013590565b5f5f83601f840112613eb5575f5ffd5b5081356001600160401b03811115613ecb575f5ffd5b602083019150836020828501011115613ee2575f5ffd5b9250929050565b80356001600160401b0381168114613df1575f5ffd5b5f5f5f5f5f5f60808789031215613f14575f5ffd5b613f1d87613de0565b955060208701356001600160401b03811115613f37575f5ffd5b613f4389828a01613ea5565b9096509450613f56905060408801613ee9565b925060608701356001600160401b03811115613f70575f5ffd5b613f7c89828a01613ea5565b979a9699509497509295939492505050565b80358015158114613df1575f5ffd5b5f60208284031215613fad575f5ffd5b61166682613f8e565b5f5f5f5f5f5f60a08789031215613fcb575f5ffd5b613fd487613de0565b95506020870135945060408701359350613ff060608801613f8e565b925060808701356001600160401b03811115613f70575f5ffd5b5f6020828403121561401a575f5ffd5b5035919050565b5f5f5f60408486031215614033575f5ffd5b61403c84613de0565b925060208401356001600160401b03811115614056575f5ffd5b61406286828701613ea5565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156140ab576140ab61406f565b604052919050565b5f6001600160401b038211156140cb576140cb61406f565b50601f01601f191660200190565b5f5f5f606084860312156140eb575f5ffd5b6140f484613de0565b925060208401356001600160401b0381111561410e575f5ffd5b8401601f8101861361411e575f5ffd5b803561413161412c826140b3565b614083565b818152876020838501011115614145575f5ffd5b816020840160208301375f6020838301015280945050505061416960408501613ee9565b90509250925092565b5f60608284031215614182575f5ffd5b50919050565b5f5f5f5f5f60a0868803121561419c575f5ffd5b85356141a781613e0f565b94506141b560208701613de0565b9350604086013592506060860135915060808601356001600160401b038111156141dd575f5ffd5b6141e988828901614172565b9150509295509295909350565b5f60208284031215614206575f5ffd5b813561166681613e0f565b5f5f5f5f5f5f5f5f60e0898b031215614228575f5ffd5b883561423381613e0f565b975061424160208a01613de0565b9650604089013595506060890135945060808901356001600160401b03811115614269575f5ffd5b6142758b828c01613ea5565b9095509350614288905060a08a01613ee9565b915060c08901356001600160401b038111156142a2575f5ffd5b6142ae8b828c01614172565b9150509295985092959890939650565b5f5f604083850312156142cf575f5ffd5b6142d883613de0565b91506142e660208401613de0565b90509250929050565b5f5f5f5f5f5f5f5f5f5f6101008b8d031215614309575f5ffd5b6143128b613de0565b995060208b01356001600160401b0381111561432c575f5ffd5b6143388d828e01613ea5565b909a50985061434b905060408c01613ee9565b965060608b0135955060808b013561436281613e0f565b945060a08b0135935060c08b01356001600160401b03811115614383575f5ffd5b61438f8d828e01613ea5565b9b9e9a9d50989b979a96999598949794969560e090950135949350505050565b5f5f5f5f5f5f5f5f5f60e08a8c0312156143c7575f5ffd5b6143d08a613de0565b985060208a0135975060408a0135965060608a01356001600160401b038111156143f8575f5ffd5b6144048c828d01613ea5565b9097509550614417905060808b01613ee9565b935061442560a08b01613f8e565b925060c08a01356001600160401b0381111561443f575f5ffd5b61444b8c828d01613ea5565b915080935050809150509295985092959850929598565b5f5f60408385031215614473575f5ffd5b823561447e81613e0f565b91506142e660208401613f8e565b5f5f5f5f5f608086880312156144a0575f5ffd5b6144a986613de0565b94506144b760208701613de0565b93506040860135925060608601356001600160401b038111156144d8575f5ffd5b6144e488828901613ea5565b969995985093965092949392505050565b5f5f60408385031215614506575f5ffd5b823561451181613e0f565b9150602083013561452181613e0f565b809150509250929050565b5f5f5f6060848603121561453e575f5ffd5b61454784613de0565b9250613e9460208501613de0565b5f5f60408385031215614566575f5ffd5b50508035926020909101359150565b5f5f5f5f60808587031215614588575f5ffd5b61459185613de0565b935061459f60208601613de0565b925060408501356145af81613e0f565b9396929550929360600135925050565b600181811c908216806145d357607f821691505b60208210810361418257634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610cae57610cae6145f1565b818382375f9101908152919050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f612076604083018486614627565b5f5f8335601e19843603018112614681575f5ffd5b8301803591506001600160401b0382111561469a575f5ffd5b602001915036819003821315613ee2575f5ffd5b61ffff8916815260c060208201525f6146cb60c08301898b614627565b6001600160401b038816604084015286606084015285608084015282810360a08401526146f9818587614627565b9b9a5050505050505050505050565b81810381811115610cae57610cae6145f1565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156137f757805f5260205f20601f840160051c810160208510156147665750805b601f840160051c820191505b81811015610dc1575f8155600101614772565b81516001600160401b0381111561479e5761479e61406f565b6147b2816147ac84546145bf565b84614741565b6020601f8211600181146147e4575f83156147cd5750848201515b5f19600385901b1c1916600184901b178455610dc1565b5f84815260208120601f198516915b8281101561481357878501518255602094850194600190920191016147f3565b508482101561483057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b61ffff8616815261ffff85166020820152836040820152608060608201525f61486c608083018486614627565b979650505050505050565b61ffff86168152608060208201525f614894608083018688614627565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b038311156148c8576148c861406f565b6148dc836148d683546145bf565b83614741565b5f601f84116001811461490d575f85156148f65750838201355b5f19600387901b1c1916600186901b178355610dc1565b5f83815260208120601f198716915b8281101561493c578685013582556020948501946001909201910161491c565b5086821015614958575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561497a575f5ffd5b81516001600160401b0381111561498f575f5ffd5b8201601f8101841361499f575f5ffd5b80516149ad61412c826140b3565b8181528560208385010111156149c1575f5ffd5b8160208401602083015e5f91810160200191909152949350505050565b8082028115828204841417610cae57610cae6145f1565b634e487b7160e01b5f52601260045260245ffd5b5f82614a1757614a176149f5565b500490565b5f60018201614a2d57614a2d6145f1565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614a6190830186613da0565b84151560608401528281036080840152614a7b8185613da0565b98975050505050505050565b5f5f60408385031215614a98575f5ffd5b505080516020909101519092909150565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614acd575f5ffd5b815161166681613e0f565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015614b285783516001600160a01b0316835260209384019390920191600101614b01565b50506001600160a01b039590951660608401525050608001529392505050565b61ffff85168152608060208201525f614b646080830186613da0565b6001600160401b0385166040840152828103606084015261486c8185613da0565b5f81518060208401855e5f93019283525090919050565b5f6116668284614b85565b61ffff8916815261010060208201525f614bc561010083018a613da0565b6001600160401b0389166040840152606083018890526001600160a01b038716608084015260a0830186905282810360c0840152614c038186613da0565b9150508260e08301529998505050505050505050565b606081525f614c2b6060830186613da0565b6001600160401b039490941660208301525060400152919050565b5f82614c5457614c546149f5565b500690565b61ffff8716815260c060208201525f614c7560c0830188613da0565b8281036040840152614c878188613da0565b6001600160a01b0387811660608601528616608085015283810360a08501529050614cb28185613da0565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201526001600160401b0360c01b8560c01b1660218201528360298201526001600160401b0360c01b8360c01b1660498201525f614a7b6051830184614b85565b61ffff8616815260a060208201525f614d2b60a0830187613da0565b6001600160401b03861660408401528281036060840152614d4c8186613da0565b90508281036080840152614a7b8185613da056fea2646970667358221220d418491968f44a8d871250fe2730d645aae864793e4797254ecb40dd1091b10d64736f6c634300081e0033

Deployed Bytecode Sourcemap

86168:6396:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65952:214;;;;;;;;;;-1:-1:-1;65952:214:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;65952:214:0;;;;;;;;72864:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47132:123::-;;;;;;;;;;-1:-1:-1;47132:123:0;;;;;:::i;:::-;;:::i;:::-;;75224:201;;;;;;;;;;-1:-1:-1;75224:201:0;;;;;:::i;:::-;;:::i;49041:142::-;;;;;;;;;;-1:-1:-1;49041:142:0;;;;;:::i;:::-;;:::i;47263:129::-;;;;;;;;;;-1:-1:-1;47263:129:0;;;;;:::i;:::-;;:::i;73993:108::-;;;;;;;;;;-1:-1:-1;74081:12:0;;73993:108;;;2326:25:1;;;2314:2;2299:18;73993:108:0;2180:177:1;86275:26:0;;;;;;;;;;;;;;;;76005:261;;;;;;;;;;-1:-1:-1;76005:261:0;;;;;:::i;:::-;;:::i;51503:413::-;;;;;;;;;;-1:-1:-1;51503:413:0;;;;;:::i;:::-;;:::i;86638:24::-;;;;;;;;;;-1:-1:-1;86638:24:0;;;;;;;-1:-1:-1;;;;;86638:24:0;;;;;;-1:-1:-1;;;;;4429:32:1;;;4411:51;;4399:2;4384:18;86638:24:0;4265:203:1;92042:95:0;;;;;;;;;;-1:-1:-1;92042:95:0;;;;;:::i;:::-;;:::i;73835:93::-;;;;;;;;;;-1:-1:-1;73918:2:0;73835:93;;;4995:4:1;4983:17;;;4965:36;;4953:2;4938:18;73835:93:0;4823:184:1;66174:344:0;;;;;;;;;;-1:-1:-1;66174:344:0;;;;;:::i;:::-;;:::i;:::-;;;;5976:25:1;;;6032:2;6017:18;;6010:34;;;;5949:18;66174:344:0;5802:248:1;76675:238:0;;;;;;;;;;-1:-1:-1;76675:238:0;;;;;:::i;:::-;;:::i;91829:205::-;;;;;;;;;;-1:-1:-1;91829:205:0;;;;;:::i;:::-;;:::i;49281:250::-;;;;;;;;;;-1:-1:-1;49281:250:0;;;;;:::i;:::-;;:::i;42984:53::-;;;;;;;;;;-1:-1:-1;42984:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;47400:178;;;;;;;;;;-1:-1:-1;47400:178:0;;;;;:::i;:::-;;:::i;53229:37::-;;;;;;;;;;;;53265:1;53229:37;;86669:38;;;;;;;;;;;;;;;53295:33;;;;;;;;;;;;53327:1;53295:33;;90451:556;;;;;;;;;;-1:-1:-1;90451:556:0;;;;;:::i;:::-;;:::i;86603:26::-;;;;;;;;;;-1:-1:-1;86603:26:0;;;;;;;;;;;50162:85;;;;;;;;;;-1:-1:-1;50162:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91712:109;;;;;;;;;;-1:-1:-1;91712:109:0;;;;;:::i;:::-;;:::i;64805:356::-;;;;;;:::i;:::-;;:::i;74164:127::-;;;;;;;;;;-1:-1:-1;74164:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;74265:18:0;74238:7;74265:18;;;:9;:18;;;;;;;74164:127;41539:103;;;;;;;;;;;;;:::i;42854:51::-;;;;;;;;;;-1:-1:-1;42854:51:0;;;;;:::i;:::-;;:::i;65169:586::-;;;;;;:::i;:::-;;:::i;53386:37::-;;;;;;;;;;;;;;;42912:65;;;;;;;;;;-1:-1:-1;42912:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;40898:87;;;;;;;;;;-1:-1:-1;40944:7:0;40971:6;-1:-1:-1;;;;;40971:6:0;40898:87;;84627:112;;;;;;;;;;;;;:::i;43044:23::-;;;;;;;;;;-1:-1:-1;43044:23:0;;;;-1:-1:-1;;;;;43044:23:0;;;73083:104;;;;;;;;;;;;;:::i;54645:648::-;;;;;;;;;;-1:-1:-1;54645:648:0;;;;;:::i;:::-;;:::i;53432:83::-;;;;;;;;;;-1:-1:-1;53432:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48229:336;;;;;;;;;;-1:-1:-1;48229:336:0;;;;;:::i;:::-;;:::i;77416:436::-;;;;;;;;;;-1:-1:-1;77416:436:0;;;;;:::i;:::-;;:::i;66526:450::-;;;;;;;;;;-1:-1:-1;66526:450:0;;;;;:::i;:::-;;:::i;47940:281::-;;;;;;;;;;-1:-1:-1;47940:281:0;;;;;:::i;:::-;;:::i;91015:111::-;;;;;;;;;;-1:-1:-1;91015:111:0;;;;;:::i;:::-;;:::i;74497:193::-;;;;;;;;;;-1:-1:-1;74497:193:0;;;;;:::i;:::-;;:::i;92349:109::-;;;;;;;;;;-1:-1:-1;92349:109:0;;;;;:::i;:::-;;:::i;42803:44::-;;;;;;;;;;;;;;;92466:95;;;;;;;;;;-1:-1:-1;92466:95:0;;;;;:::i;:::-;;:::i;48573:136::-;;;;;;;;;;-1:-1:-1;48573:136:0;;;;;:::i;:::-;;:::i;86432:19::-;;;;;;;;;;;;;;;;92145:196;;;;;;;;;;;;;:::i;91380:167::-;;;;;;;;;;-1:-1:-1;91380:167:0;;;;;:::i;:::-;;:::i;91555:149::-;;;;;;;;;;-1:-1:-1;91555:149:0;;;;;:::i;:::-;;:::i;42739:55::-;;;;;;;;;;;;42789:5;42739:55;;46877:247;;;;;;;;;;-1:-1:-1;46877:247:0;;;;;:::i;:::-;;:::i;43440:872::-;;;;;;;;;;-1:-1:-1;43440:872:0;;;;;:::i;:::-;;:::i;52151:828::-;;;;;;:::i;:::-;;:::i;74753:151::-;;;;;;;;;;-1:-1:-1;74753:151:0;;;;;:::i;:::-;;:::i;48717:262::-;;;;;;;;;;-1:-1:-1;48717:262:0;;;;;:::i;:::-;;:::i;91134:238::-;;;;;;;;;;-1:-1:-1;91134:238:0;;;;;:::i;:::-;;:::i;86716:51::-;;;;;;;;;;-1:-1:-1;86716:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53335:42;;;;;;;;;;;;53376:1;53335:42;;86308:27;;;;;;;;;;;;;;;;47725:207;;;;;;;;;;-1:-1:-1;47725:207:0;;;;;:::i;:::-;;:::i;41797:201::-;;;;;;;;;;-1:-1:-1;41797:201:0;;;;;:::i;:::-;;:::i;46563:254::-;;;;;;;;;;-1:-1:-1;46563:254:0;;;;;:::i;:::-;;:::i;84747:103::-;;;;;;;;;;-1:-1:-1;84837:4:0;84747:103;;65952:214;66054:4;-1:-1:-1;;;;;;66078:40:0;;-1:-1:-1;;;66078:40:0;;:80;;-1:-1:-1;;;;;;;;;;2756:40:0;;;66122:36;66071:87;65952:214;-1:-1:-1;;65952:214:0:o;72864:100::-;72918:13;72951:5;72944:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72864:100;:::o;47132:123::-;40784:13;:11;:13::i;:::-;47212:35:::1;::::0;-1:-1:-1;;;47212:35:0;;17263:6:1;17251:19;;47212:35:0::1;::::0;::::1;17233:38:1::0;47212:10:0::1;-1:-1:-1::0;;;;;47212:25:0::1;::::0;::::1;::::0;17206:18:1;;47212:35:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47132:123:::0;:::o;75224:201::-;75307:4;39529:10;75363:32;39529:10;75379:7;75388:6;75363:8;:32::i;:::-;-1:-1:-1;75413:4:0;;75224:201;-1:-1:-1;;;75224:201:0:o;49041:142::-;40784:13;:11;:13::i;:::-;49132:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;49041:142::o;47263:129::-;40784:13;:11;:13::i;:::-;47346:38:::1;::::0;-1:-1:-1;;;47346:38:0;;17263:6:1;17251:19;;47346:38:0::1;::::0;::::1;17233::1::0;47346:10:0::1;-1:-1:-1::0;;;;;47346:28:0::1;::::0;::::1;::::0;17206:18:1;;47346:38:0::1;17089:188:1::0;76005:261:0;76102:4;39529:10;76160:38;76176:4;39529:10;76191:6;76160:15;:38::i;:::-;76209:27;76219:4;76225:2;76229:6;76209:9;:27::i;:::-;-1:-1:-1;76254:4:0;;76005:261;-1:-1:-1;;;;76005:261:0:o;51503:413::-;39529:10;51766:4;51742:29;51734:92;;;;-1:-1:-1;;;51734:92:0;;17484:2:1;51734:92:0;;;17466:21:1;17523:2;17503:18;;;17496:30;17562:34;17542:18;;;17535:62;-1:-1:-1;;;17613:18:1;;;17606:48;17671:19;;51734:92:0;;;;;;;;;51837:71;51865:11;51878;;51837:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51837:71:0;;;;;;;;;;;;;;;;;;;;;;51891:6;;-1:-1:-1;51837:71:0;-1:-1:-1;51899:8:0;;;;;;51837:71;;51899:8;;;;51837:71;;;;;;;;;-1:-1:-1;51837:27:0;;-1:-1:-1;;;51837:71:0:i;:::-;51503:413;;;;;;:::o;92042:95::-;40784:13;:11;:13::i;:::-;92107:12:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;92107:22:0;;::::1;::::0;;;::::1;::::0;;92042:95::o;66174:344::-;66388:14;66404:11;66435:75;66452:11;66465:10;66477:7;66486;66495:14;;66435:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66435:16:0;;-1:-1:-1;;;66435:75:0:i;:::-;66428:82;;;;66174:344;;;;;;;;;:::o;76675:238::-;76763:4;39529:10;76819:64;39529:10;76835:7;76872:10;76844:25;39529:10;76835:7;76844:9;:25::i;:::-;:38;;;;:::i;:::-;76819:8;:64::i;91829:205::-;40784:13;:11;:13::i;:::-;91956:1:::1;91941:12;:16;91933:47;;;::::0;-1:-1:-1;;;91933:47:0;;18165:2:1;91933:47:0::1;::::0;::::1;18147:21:1::0;18204:2;18184:18;;;18177:30;-1:-1:-1;;;18223:18:1;;;18216:48;18281:18;;91933:47:0::1;17963:342:1::0;91933:47:0::1;91991:20;:35:::0;91829:205::o;49281:250::-;49423:32;;;49377:4;49423:32;;;:19;:32;;;;;49394:61;;49377:4;;49423:32;49394:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49511:11;;49501:22;;;;;;;:::i;:::-;;;;;;;;49483:13;49473:24;;;;;;:50;49466:57;;;49281:250;;;;;:::o;47400:178::-;40784:13;:11;:13::i;:::-;47515:55:::1;::::0;-1:-1:-1;;;47515:55:0;;-1:-1:-1;;;;;47515:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;47545:11;;47558;;;;47515:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47400:178:::0;;;:::o;90451:556::-;90521:6;90507:10;;:20;90503:497;;90553:2;90544:6;:11;;;90570:7;:12;90451:556;:::o;90503:497::-;90622:6;90604:10;;90617:1;90604:14;;;;:::i;:::-;:24;90600:400;;90654:2;90645:6;:11;;;90671:7;:12;90451:556;:::o;90600:400::-;90723:6;90705:10;;90718:1;90705:14;;;;:::i;:::-;:24;90701:299;;90755:2;90746:6;:11;;;90772:7;:12;90451:556;:::o;90701:299::-;90825:6;90806:10;;90819:2;90806:15;;;;:::i;:::-;:25;90802:198;;90857:2;90848:6;:11;;;90874:7;:12;90451:556;:::o;90802:198::-;90927:6;90908:10;;90921:2;90908:15;;;;:::i;:::-;:25;90904:96;;90959:2;90950:6;:11;;;90976:7;:12;90904:96;90451:556;:::o;91712:109::-;40784:13;:11;:13::i;:::-;91789:11:::1;:24:::0;91712:109::o;64805:356::-;65022:131;65028:5;65035:11;65048:10;65060:7;65069:25;;;;:11;:25;:::i;:::-;65096:29;;;;;;;;:::i;:::-;65127:25;;;;:11;:25;:::i;:::-;65022:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65022:5:0;;-1:-1:-1;;;65022:131:0:i;41539:103::-;40784:13;:11;:13::i;:::-;41604:30:::1;41631:1;41604:18;:30::i;:::-;41539:103::o:0;42854:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65169:586::-;65455:292;65482:5;65502:11;65528:10;65553:7;65575:8;;65455:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65598:14:0;;-1:-1:-1;65627:25:0;;-1:-1:-1;;65627:25:0;;;:11;:25;:::i;:::-;65667:29;;;;;;;;:::i;:::-;65711:25;;;;:11;:25;:::i;:::-;65455:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65455:12:0;;-1:-1:-1;;;65455:292:0:i;:::-;;65169:586;;;;;;;;:::o;84627:112::-;84694:4;84718:13;74081:12;;;73993:108;84718:13;84711:20;;84627:112;:::o;73083:104::-;73139:13;73172:7;73165:14;;;;;:::i;54645:648::-;39529:10;54960:4;54936:29;54928:79;;;;-1:-1:-1;;;54928:79:0;;20176:2:1;54928:79:0;;;20158:21:1;20215:2;20195:18;;;20188:30;20254:34;20234:18;;;20227:62;-1:-1:-1;;;20305:18:1;;;20298:35;20350:19;;54928:79:0;19974:401:1;54928:79:0;55047:42;55069:4;55076:3;55081:7;55047:13;:42::i;:::-;55037:52;;55135:3;-1:-1:-1;;;;;55105:43:0;55122:11;55105:43;;;55140:7;55105:43;;;;2326:25:1;;2314:2;2299:18;;2180:177;55105:43:0;;;;;;;;55178:107;;-1:-1:-1;;;55178:107:0;;-1:-1:-1;;;;;55178:29:0;;;;;55213:11;;55178:107;;55226:11;;55239;;;;55252:6;;55260:5;;55267:7;;55276:8;;;;55178:107;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54645:648;;;;;;;;;;:::o;48229:336::-;48353:35;;;48333:17;48353:35;;;:19;:35;;;;;48333:55;;48308:12;;48333:17;48353:35;48333:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48407:4;:11;48422:1;48407:16;48399:64;;;;-1:-1:-1;;;48399:64:0;;21340:2:1;48399:64:0;;;21322:21:1;21379:2;21359:18;;;21352:30;21418:34;21398:18;;;21391:62;-1:-1:-1;;;21469:18:1;;;21462:33;21512:19;;48399:64:0;21138:399:1;48399:64:0;48481:31;48492:1;48509:2;48495:4;:11;:16;;;;:::i;:::-;48481:4;;:31;:10;:31::i;:::-;48474:38;48229:336;-1:-1:-1;;;48229:336:0:o;77416:436::-;77509:4;39529:10;77509:4;77592:25;39529:10;77609:7;77592:9;:25::i;:::-;77565:52;;77656:15;77636:16;:35;;77628:85;;;;-1:-1:-1;;;77628:85:0;;21877:2:1;77628:85:0;;;21859:21:1;21916:2;21896:18;;;21889:30;21955:34;21935:18;;;21928:62;-1:-1:-1;;;22006:18:1;;;21999:35;22051:19;;77628:85:0;21675:401:1;77628:85:0;77749:60;77758:5;77765:7;77793:15;77774:16;:34;77749:8;:60::i;66526:450::-;66813:14;66829:11;66860:108;66884:11;66897:10;66909:7;66918:8;;66860:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66860:108:0;;;;;;;;;;;;;;;;;;;;;;66928:14;;-1:-1:-1;66944:7:0;;-1:-1:-1;66860:108:0;66953:14;;;;;;66860:108;;66953:14;;;;66860:108;;;;;;;;;-1:-1:-1;66860:23:0;;-1:-1:-1;;;66860:108:0:i;:::-;66853:115;;;;66526:450;;;;;;;;;;;;:::o;47940:281::-;40784:13;:11;:13::i;:::-;48112:14:::1;;48136:4;48095:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;48095:47:0;;::::1;::::0;;;;;;48057:35:::1;::::0;::::1;;::::0;;;:19:::1;48095:47;48057:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;48158:55;48182:14;48198;;48158:55;;;;;;;;:::i;:::-;;;;;;;;47940:281:::0;;;:::o;91015:111::-;40784:13;:11;:13::i;:::-;91093:9:::1;:25:::0;;-1:-1:-1;;;;;91093:25:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;91093:25:0;;::::1;::::0;;;::::1;::::0;;91015:111::o;74497:193::-;74576:4;39529:10;74632:28;39529:10;74649:2;74653:6;74632:9;:28::i;92349:109::-;40784:13;:11;:13::i;:::-;92421::::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;92421:29:0;;::::1;::::0;;;::::1;::::0;;92349:109::o;92466:95::-;40784:13;:11;:13::i;:::-;92533:20:::1;92545:7;92533:11;:20::i;48573:136::-:0;40784:13;:11;:13::i;:::-;48643:8:::1;:20:::0;;-1:-1:-1;;;;;;48643:20:0::1;-1:-1:-1::0;;;;;48643:20:0;::::1;::::0;;::::1;::::0;;;48679:22:::1;::::0;4411:51:1;;;48679:22:0::1;::::0;4399:2:1;4384:18;48679:22:0::1;;;;;;;48573:136:::0;:::o;92145:196::-;40784:13;:11;:13::i;:::-;92201:14:::1;::::0;;;::::1;;;92200:15;92192:46;;;::::0;-1:-1:-1;;;92192:46:0;;24766:2:1;92192:46:0::1;::::0;::::1;24748:21:1::0;24805:2;24785:18;;;24778:30;-1:-1:-1;;;24824:18:1;;;24817:48;24882:18;;92192:46:0::1;24564:342:1::0;92192:46:0::1;92249:14;:21:::0;;92294:12:::1;92281:10;:25:::0;-1:-1:-1;;92317:16:0;;;;;92145:196::o;91380:167::-;40784:13;:11;:13::i;:::-;-1:-1:-1;;;;;91496:29:0;;;::::1;;::::0;;;:19:::1;:29;::::0;;;;:43;;-1:-1:-1;;91496:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91380:167::o;91555:149::-;40784:13;:11;:13::i;:::-;91660:15:::1;:36:::0;91555:149::o;46877:247::-;40784:13;:11;:13::i;:::-;47054:62:::1;::::0;-1:-1:-1;;;47054:62:0;;-1:-1:-1;;;;;47054:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;47075:8;;47085;;47095:11;;47108:7;;;;47054:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43440:872:::0;39529:10;43735;-1:-1:-1;;;;;43711:35:0;;43703:84;;;;-1:-1:-1;;;43703:84:0;;25599:2:1;43703:84:0;;;25581:21:1;25638:2;25618:18;;;25611:30;25677:34;25657:18;;;25650:62;-1:-1:-1;;;25728:18:1;;;25721:34;25772:19;;43703:84:0;25397:400:1;43703:84:0;43829:32;;;43800:26;43829:32;;;:19;:32;;;;;43800:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44049:13;:20;44027:11;;:18;;:42;:70;;;;;44096:1;44073:13;:20;:24;44027:70;:124;;;;-1:-1:-1;44127:24:0;;;;;;44101:22;;;;44111:11;;;;44101:22;:::i;:::-;;;;;;;;:50;44027:124;44005:218;;;;-1:-1:-1;;;44005:218:0;;26004:2:1;44005:218:0;;;25986:21:1;26043:2;26023:18;;;26016:30;26082:34;26062:18;;;26055:62;-1:-1:-1;;;26133:18:1;;;26126:42;26185:19;;44005:218:0;25802:408:1;44005:218:0;44236:68;44261:11;44274;;44236:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44236:68:0;;;;;;;;;;;;;;;;;;;;;;44287:6;;-1:-1:-1;44236:68:0;-1:-1:-1;44295:8:0;;;;;;44236:68;;44295:8;;;;44236:68;;;;;;;;;-1:-1:-1;44236:24:0;;-1:-1:-1;;;44236:68:0:i;52151:828::-;52405:27;;;52383:19;52405:27;;;:14;:27;;;;;;:40;;;;52433:11;;;;52405:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52405:48:0;;;;;;;;;;;;-1:-1:-1;52405:48:0;52464:79;;;;-1:-1:-1;;;52464:79:0;;26417:2:1;52464:79:0;;;26399:21:1;26456:2;26436:18;;;26429:30;26495:34;26475:18;;;26468:62;-1:-1:-1;;;26546:18:1;;;26539:39;26595:19;;52464:79:0;26215:405:1;52464:79:0;52585:11;52572:8;;52562:19;;;;;;;:::i;:::-;;;;;;;;:34;52554:86;;;;-1:-1:-1;;;52554:86:0;;26827:2:1;52554:86:0;;;26809:21:1;26866:2;26846:18;;;26839:30;26905:34;26885:18;;;26878:62;-1:-1:-1;;;26956:18:1;;;26949:37;27003:19;;52554:86:0;26625:403:1;52554:86:0;52688:27;;;52747:1;52688:27;;;:14;:27;;;;;;:40;;;;52716:11;;;;52688:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52688:48:0;;;;;;;;;;;;:61;;;;52818:71;;;;;;;;;;;;;;;;;;;52846:11;;52859;;52818:71;;;;;;52859:11;52818:71;;52859:11;52818:71;;;;;;;;;-1:-1:-1;;52818:71:0;;;;;;;;;;;;;;;;;;;;;;52872:6;;-1:-1:-1;52818:71:0;-1:-1:-1;52880:8:0;;;;;;52818:71;;52880:8;;;;52818:71;;;;;;;;;-1:-1:-1;52818:27:0;;-1:-1:-1;;;52818:71:0:i;:::-;52905:66;52925:11;52938;;52951:6;52959:11;52905:66;;;;;;;;;;:::i;:::-;;;;;;;;52327:652;52151:828;;;;;;:::o;74753:151::-;-1:-1:-1;;;;;74869:18:0;;;74842:7;74869:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;74753:151::o;48717:262::-;40784:13;:11;:13::i;:::-;48857:28:::1;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;48924:47;;27729:38:1;;;27783:18;;27776:47;;;;27839:18;;;27832:34;;;48924:47:0::1;::::0;27717:2:1;27702:18;48924:47:0::1;27531:341:1::0;91134:238:0;40784:13;:11;:13::i;:::-;91271:6:::1;:26:::0;;;;91308:7:::1;:28:::0;91347:9:::1;:17:::0;;-1:-1:-1;;91347:17:0::1;::::0;;91134:238::o;47725:207::-;40784:13;:11;:13::i;:::-;47826:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;47864:5:::0;;47826:35;:43:::1;:::i;:::-;;47885:39;47902:14;47918:5;;47885:39;;;;;;;;:::i;41797:201::-:0;40784:13;:11;:13::i;:::-;-1:-1:-1;;;;;41886:22:0;::::1;41878:73;;;::::0;-1:-1:-1;;;41878:73:0;;29278:2:1;41878:73:0::1;::::0;::::1;29260:21:1::0;29317:2;29297:18;;;29290:30;29356:34;29336:18;;;29329:62;-1:-1:-1;;;29407:18:1;;;29400:36;29453:19;;41878:73:0::1;29076:402:1::0;41878:73:0::1;41962:28;41981:8;41962:18;:28::i;46563:254::-:0;46741:68;;-1:-1:-1;;;46741:68:0;;29740:6:1;29728:19;;;46741:68:0;;;29710:38:1;29784:19;;29764:18;;;29757:47;46790:4:0;29820:18:1;;;29813:60;29889:18;;;29882:34;;;46709:12:0;;46741:10;-1:-1:-1;;;;;46741:20:0;;;;29682:19:1;;46741:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46741:68:0;;;;;;;;;;;;:::i;:::-;46734:75;46563:254;-1:-1:-1;;;;;46563:254:0:o;41063:132::-;40944:7;40971:6;-1:-1:-1;;;;;40971:6:0;39529:10;41127:23;41119:68;;;;-1:-1:-1;;;41119:68:0;;30819:2:1;41119:68:0;;;30801:21:1;;;30838:18;;;30831:30;30897:34;30877:18;;;30870:62;30949:18;;41119:68:0;30617:356:1;81409:346:0;-1:-1:-1;;;;;81511:19:0;;81503:68;;;;-1:-1:-1;;;81503:68:0;;31180:2:1;81503:68:0;;;31162:21:1;31219:2;31199:18;;;31192:30;31258:34;31238:18;;;31231:62;-1:-1:-1;;;31309:18:1;;;31302:34;31353:19;;81503:68:0;30978:400:1;81503:68:0;-1:-1:-1;;;;;81590:21:0;;81582:68;;;;-1:-1:-1;;;81582:68:0;;31585:2:1;81582:68:0;;;31567:21:1;31624:2;31604:18;;;31597:30;31663:34;31643:18;;;31636:62;-1:-1:-1;;;31714:18:1;;;31707:32;31756:19;;81582:68:0;31383:398:1;81582:68:0;-1:-1:-1;;;;;81663:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;81715:32;;2326:25:1;;;81715:32:0;;2299:18:1;81715:32:0;;;;;;;81409:346;;;:::o;82046:419::-;82147:24;82174:25;82184:5;82191:7;82174:9;:25::i;:::-;82147:52;;-1:-1:-1;;82214:16:0;:37;82210:248;;82296:6;82276:16;:26;;82268:68;;;;-1:-1:-1;;;82268:68:0;;31988:2:1;82268:68:0;;;31970:21:1;32027:2;32007:18;;;32000:30;32066:31;32046:18;;;32039:59;32115:18;;82268:68:0;31786:353:1;82268:68:0;82380:51;82389:5;82396:7;82424:6;82405:16;:25;82380:8;:51::i;:::-;82136:329;82046:419;;;:::o;87982:1780::-;88123:1;88114:6;:10;88106:61;;;;-1:-1:-1;;;88106:61:0;;32346:2:1;88106:61:0;;;32328:21:1;32385:2;32365:18;;;32358:30;32424:34;32404:18;;;32397:62;-1:-1:-1;;;32475:18:1;;;32468:36;32521:19;;88106:61:0;32144:402:1;88106:61:0;88185:14;;;;;;;88180:115;;40944:7;40971:6;-1:-1:-1;;;;;88224:15:0;;;40971:6;;88224:15;;:32;;-1:-1:-1;40944:7:0;40971:6;-1:-1:-1;;;;;88243:13:0;;;40971:6;;88243:13;88224:32;88216:67;;;;-1:-1:-1;;;88216:67:0;;32753:2:1;88216:67:0;;;32735:21:1;32792:2;32772:18;;;32765:30;-1:-1:-1;;;32811:18:1;;;32804:52;32873:18;;88216:67:0;32551:346:1;88216:67:0;88341:9;;88307:17;;88341:9;;88337:64;;;88367:22;88376:12;88367:8;:22::i;:::-;88425:13;-1:-1:-1;;;;;88417:21:0;:4;-1:-1:-1;;;;;88417:21:0;;:49;;;;-1:-1:-1;;;;;;88443:23:0;;;;;;:19;:23;;;;;;;;88442:24;88417:49;88413:395;;;88535:15;;88525:6;88509:13;88519:2;-1:-1:-1;;;;;74265:18:0;74238:7;74265:18;;;:9;:18;;;;;;;74164:127;88509:13;:22;;;;:::i;:::-;:41;;88483:123;;;;-1:-1:-1;;;88483:123:0;;33104:2:1;88483:123:0;;;33086:21:1;33143:2;33123:18;;;33116:30;-1:-1:-1;;;33162:18:1;;;33155:50;33222:18;;88483:123:0;32902:344:1;88483:123:0;88639:11;;88629:6;:21;;88621:50;;;;-1:-1:-1;;;88621:50:0;;33453:2:1;88621:50:0;;;33435:21:1;33492:2;33472:18;;;33465:30;-1:-1:-1;;;33511:18:1;;;33504:46;33567:18;;88621:50:0;33251:340:1;88621:50:0;88690:12;;;;;;;88686:88;;;88755:3;88745:6;;88736;:15;;;;:::i;:::-;88735:23;;;;:::i;:::-;88723:35;;88686:88;88790:4;:6;;;:4;:6;;;:::i;:::-;;;;;;88413:395;88830:13;-1:-1:-1;;;;;88824:19:0;:2;-1:-1:-1;;;;;88824:19:0;;:49;;;;-1:-1:-1;;;;;;88848:25:0;;;;;;:19;:25;;;;;;;;88847:26;88824:49;88820:235;;;88908:11;;88898:6;:21;;88890:50;;;;-1:-1:-1;;;88890:50:0;;33453:2:1;88890:50:0;;;33435:21:1;33492:2;33472:18;;;33465:30;-1:-1:-1;;;33511:18:1;;;33504:46;33567:18;;88890:50:0;33251:340:1;88890:50:0;88959:12;;;;;;;88955:89;;;89025:3;89014:7;;89005:6;:16;;;;:::i;:::-;89004:24;;;;:::i;:::-;88992:36;;88955:89;89116:4;89067:28;74265:18;;;:9;:18;;;;;;89186:20;;89162:44;;;;;;;89237:49;;-1:-1:-1;89274:12:0;;;;;;;89273:13;89237:49;:87;;;;;89311:13;-1:-1:-1;;;;;89303:21:0;:4;-1:-1:-1;;;;;89303:21:0;;;89237:87;:130;;;;-1:-1:-1;;;;;;89342:25:0;;;;;;:19;:25;;;;;;;;89341:26;89237:130;:169;;;;;89391:15;;89384:4;;:22;89237:169;89219:259;;;89433:33;89445:20;;89433:11;:33::i;:::-;89494:13;;89490:265;;89524:18;89545;89554:9;89545:6;:18;:::i;:::-;89524:39;;89578:47;89594:4;89608;89615:9;89578:15;:47::i;:::-;89640:37;89656:4;89662:2;89666:10;89640:15;:37::i;:::-;89509:180;89490:265;;;89710:33;89726:4;89732:2;89736:6;89710:15;:33::i;56564:567::-;56765:16;56784:19;:8;56765:16;56784;:19::i;:::-;56765:38;-1:-1:-1;56820:21:0;;;56816:308;;56858:52;56867:11;56880;56893:6;56901:8;56858;:52::i;:::-;56816:308;;;-1:-1:-1;;56932:30:0;;;;56928:196;;56979:59;56995:11;57008;57021:6;57029:8;56979:15;:59::i;56928:196::-;57071:41;;-1:-1:-1;;;57071:41:0;;34368:2:1;57071:41:0;;;34350:21:1;34407:2;34387:18;;;34380:30;34446:33;34426:18;;;34419:61;34497:18;;57071:41:0;34166:355:1;55487:471:0;55693:14;55709:11;55777:20;55800:47;55819:10;55831:15;55838:7;55831:6;:15::i;:::-;62209:48;;;53327:1;62209:48;;;42257:49:1;42322:11;;;42315:27;;;;42398:3;42376:16;;;;-1:-1:-1;;;;;;42372:51:1;42358:12;;;42351:73;62209:48:0;;;;;;;;;42440:12:1;;;;62209:48:0;;;62080:185;55800:47;55865:85;;-1:-1:-1;;;55865:85:0;;55777:70;;-1:-1:-1;;;;;;55865:10:0;:23;;;;:85;;55889:11;;55910:4;;55777:70;;55926:7;;55935:14;;55865:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55858:92;;;;;55487:471;;;;;;;;:::o;57139:843::-;57408:11;57432:66;57447:11;57408;57469:14;57408:11;57432:14;:66::i;:::-;57524:20;57536:7;57524:11;:20::i;:::-;-1:-1:-1;57511:33:0;-1:-1:-1;57564:50:0;57575:5;57582:11;57595:10;57511:33;57564:10;:50::i;:::-;57555:59;;57682:1;57673:6;:10;57665:51;;;;-1:-1:-1;;;57665:51:0;;35723:2:1;57665:51:0;;;35705:21:1;35762:2;35742:18;;;35735:30;35801;35781:18;;;35774:58;35849:18;;57665:51:0;35521:352:1;57665:51:0;57729:22;57754:46;57773:10;57785:14;57792:6;57785;:14::i;57754:46::-;57729:71;;57811:94;57819:11;57832:9;57843:14;57859:18;57879:14;57895:9;57811:7;:94::i;:::-;57955:10;57948:5;-1:-1:-1;;;;;57923:51:0;57935:11;57923:51;;;57967:6;57923:51;;;;2326:25:1;;2314:2;2299:18;;2180:177;57923:51:0;;;;;;;;57421:561;57139:843;;;;;;;;;:::o;42158:191::-;42232:16;42251:6;;-1:-1:-1;;;;;42268:17:0;;;-1:-1:-1;;;;;;42268:17:0;;;;;;42301:40;;42251:6;;;;;;;42301:40;;42232:16;42301:40;42221:128;42158:191;:::o;58455:998::-;58795:11;58819:77;58834:11;53376:1;58865:14;-1:-1:-1;;;;;58819:77:0;;:14;:77::i;:::-;58922:20;58934:7;58922:11;:20::i;:::-;-1:-1:-1;58909:33:0;-1:-1:-1;58962:50:0;58973:5;58980:11;58993:10;58909:33;58962:10;:50::i;:::-;58953:59;;59040:1;59031:6;:10;59023:51;;;;-1:-1:-1;;;59023:51:0;;35723:2:1;59023:51:0;;;35705:21:1;35762:2;35742:18;;;35735:30;35801;35781:18;;;35774:58;35849:18;;59023:51:0;35521:352:1;59023:51:0;59155:22;59180:91;59206:10;59218;59230:14;59237:6;59230;:14::i;:::-;59246:8;59256:14;59180:25;:91::i;:::-;59155:116;;59282:94;59290:11;59303:9;59314:14;59330:18;59350:14;59366:9;59282:7;:94::i;:::-;59426:10;59419:5;-1:-1:-1;;;;;59394:51:0;59406:11;59394:51;;;59438:6;59394:51;;;;2326:25:1;;2314:2;2299:18;;2180:177;59394:51:0;;;;;;;;58808:645;58455:998;;;;;;;;;;;:::o;85595:425::-;85729:4;39529:10;85879:4;-1:-1:-1;;;;;85862:22:0;;;;;;:42;;;85897:7;-1:-1:-1;;;;;85888:16:0;:5;-1:-1:-1;;;;;85888:16:0;;;85862:42;85858:88;;;85906:40;85922:5;85929:7;85938;85906:15;:40::i;:::-;85957:30;85967:5;85974:3;85979:7;85957:9;:30::i;:::-;-1:-1:-1;86005:7:0;;85595:425;-1:-1:-1;;;85595:425:0:o;20561:2833::-;20681:12;20730:7;20714:12;20730:7;20724:2;20714:12;:::i;:::-;:23;;20706:50;;;;-1:-1:-1;;;20706:50:0;;36080:2:1;20706:50:0;;;36062:21:1;36119:2;36099:18;;;36092:30;-1:-1:-1;;;36138:18:1;;;36131:44;36192:18;;20706:50:0;35878:338:1;20706:50:0;20792:16;20801:7;20792:6;:16;:::i;:::-;20775:6;:13;:33;;20767:63;;;;-1:-1:-1;;;20767:63:0;;36423:2:1;20767:63:0;;;36405:21:1;36462:2;36442:18;;;36435:30;-1:-1:-1;;;36481:18:1;;;36474:47;36538:18;;20767:63:0;36221:341:1;20767:63:0;20843:22;20909:15;;20938:2005;;;;23087:4;23081:11;23068:24;;23276:1;23265:9;23258:20;23326:4;23315:9;23311:20;23305:4;23298:34;20902:2445;;20938:2005;21123:4;21117:11;21104:24;;21792:2;21783:7;21779:16;22180:9;22173:17;22167:4;22163:28;22151:9;22140;22136:25;22132:60;22229:7;22225:2;22221:16;22486:6;22472:9;22465:17;22459:4;22455:28;22443:9;22435:6;22431:22;22427:57;22423:70;22257:434;22520:3;22516:2;22513:11;22257:434;;;22662:9;;22651:21;;22562:4;22554:13;;;;22595;22257:434;;;-1:-1:-1;;22711:26:0;;;22923:2;22906:11;-1:-1:-1;;22902:25:0;22896:4;22889:39;-1:-1:-1;20902:2445:0;-1:-1:-1;23377:9:0;20561:2833;-1:-1:-1;;;;20561:2833:0:o;55966:590::-;56243:14;56259:11;56330:20;56353:92;56379:10;56391;56403:15;56410:7;56403:6;:15::i;56353:92::-;56463:85;;-1:-1:-1;;;56463:85:0;;56330:115;;-1:-1:-1;;;;;;56463:10:0;:23;;;;:85;;56487:11;;56508:4;;56330:115;;56524:7;;56533:14;;56463:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56456:92;;;;;55966:590;;;;;;;;;;:::o;89770:673::-;86810:12;:19;;-1:-1:-1;;86810:19:0;;;;;89938:16:::1;::::0;;89952:1:::1;89938:16:::0;;;;;::::1;::::0;;-1:-1:-1;;89938:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;89938:16:0::1;89914:40;;89983:4;89965;89970:1;89965:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;89965:23:0::1;;;-1:-1:-1::0;;;;;89965:23:0::1;;;::::0;::::1;90009:15;-1:-1:-1::0;;;;;90009:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89999:4;90004:1;89999:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;89999:32:0::1;;;-1:-1:-1::0;;;;;89999:32:0::1;;;::::0;::::1;90044:122;90075:4;90103:15;90134:21;90044:8;:122::i;:::-;90385:9;::::0;90205:230:::1;::::0;-1:-1:-1;;;90205:230:0;;-1:-1:-1;;;;;90205:15:0::1;:66:::0;::::1;::::0;::::1;::::0;:230:::1;::::0;90286:21;;90322:1:::1;::::0;90366:4;;90385:9;;;::::1;::::0;;::::1;::::0;90409:15:::1;::::0;90205:230:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;86852:12:0;:20;;-1:-1:-1;;86852:20:0;;;-1:-1:-1;;;;89770:673:0:o;50537:575::-;50736:12;50750:19;50773:209;50821:9;50845:3;50886:40;;;50928:11;50941;50954:6;50962:8;50863:108;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50863:108:0;;;;;;;;;;;;;;-1:-1:-1;;;;;50863:108:0;-1:-1:-1;;;;;;50863:108:0;;;;;;;;;;50781:4;;50773:209;;:33;:209::i;:::-;50735:247;;;;50998:7;50993:112;;51022:71;51042:11;51055;51068:6;51076:8;51086:6;51022:19;:71::i;78322:806::-;-1:-1:-1;;;;;78419:18:0;;78411:68;;;;-1:-1:-1;;;78411:68:0;;38683:2:1;78411:68:0;;;38665:21:1;38722:2;38702:18;;;38695:30;38761:34;38741:18;;;38734:62;-1:-1:-1;;;38812:18:1;;;38805:35;38857:19;;78411:68:0;38481:401:1;78411:68:0;-1:-1:-1;;;;;78498:16:0;;78490:64;;;;-1:-1:-1;;;78490:64:0;;39089:2:1;78490:64:0;;;39071:21:1;39128:2;39108:18;;;39101:30;39167:34;39147:18;;;39140:62;-1:-1:-1;;;39218:18:1;;;39211:33;39261:19;;78490:64:0;38887:399:1;78490:64:0;-1:-1:-1;;;;;78640:15:0;;78618:19;78640:15;;;:9;:15;;;;;;78674:21;;;;78666:72;;;;-1:-1:-1;;;78666:72:0;;39493:2:1;78666:72:0;;;39475:21:1;39532:2;39512:18;;;39505:30;39571:34;39551:18;;;39544:62;-1:-1:-1;;;39622:18:1;;;39615:36;39668:19;;78666:72:0;39291:402:1;78666:72:0;-1:-1:-1;;;;;78774:15:0;;;;;;;:9;:15;;;;;;78792:20;;;78774:38;;78992:13;;;;;;;;;;:23;;;;;;79044:26;;;;;;78806:6;2326:25:1;;2314:2;2299:18;;2180:177;79044:26:0;;;;;;;;79083:37;83065:91;23770:307;23844:5;23887:10;:6;23896:1;23887:10;:::i;:::-;23870:6;:13;:27;;23862:59;;;;-1:-1:-1;;;23862:59:0;;39900:2:1;23862:59:0;;;39882:21:1;39939:2;39919:18;;;39912:30;-1:-1:-1;;;39958:18:1;;;39951:49;40017:18;;23862:59:0;39698:343:1;23862:59:0;-1:-1:-1;24001:29:0;24017:3;24001:29;23995:36;;23770:307::o;57990:457::-;58145:10;58157:15;58176:28;58195:8;58176:18;:28::i;:::-;58144:60;;-1:-1:-1;58144:60:0;-1:-1:-1;;;;;;58219:16:0;;58215:69;;58265:6;58252:20;;58215:69;58296:11;58310:16;58317:8;58310:6;:16::i;:::-;58296:30;;58346:34;58356:11;58369:2;58373:6;58346:9;:34::i;:::-;58337:43;;58428:2;-1:-1:-1;;;;;58398:41:0;58415:11;58398:41;;;58432:6;58398:41;;;;2326:25:1;;2314:2;2299:18;;2180:177;58398:41:0;;;;;;;;58133:314;;;57990:457;;;;:::o;59461:1917::-;59642:12;59656:10;59668:15;59685:27;59714:17;59735:35;59761:8;59735:25;:35::i;:::-;59641:129;;;;;;;;;;59783:13;59799:15;:28;59815:11;59799:28;;;;;;;;;;;;;;;59828:11;59799:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59799:49:0;;;;;;;;;;;;;;-1:-1:-1;59873:16:0;59880:8;59873:6;:16::i;:::-;59859:30;;60020:8;60015:167;;60054:45;60064:11;60085:4;60092:6;60054:9;:45::i;:::-;60114:28;;;;;;;:15;:28;;;;;;;:41;;60045:54;;-1:-1:-1;60166:4:0;;60114:41;;60143:11;;60114:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60114:49:0;;;;;;;;;;:56;;-1:-1:-1;;60114:56:0;;;;;;;;;;60015:167;-1:-1:-1;;;;;61472:20:0;;;60194:97;;60236:22;;-1:-1:-1;;;;;4429:32:1;;4411:51;;60236:22:0;;4399:2:1;4384:18;60236:22:0;;;;;;;60273:7;;;;;;;;;60194:97;60365:11;60413;60450:6;60490:8;60525:4;60554:2;60582:6;60630:14;60345:17;60715:8;:33;;60738:10;-1:-1:-1;;;;;60715:33:0;;;;60726:9;60715:33;60704:44;;60760:12;60774:19;60797:233;60845:9;60869:3;60910:34;;;60946:10;60958;60970:5;60977;60984:3;60989:7;60998:15;61015:3;60887:132;;;;;;;;;;;;;;;:::i;60797:233::-;60759:271;;;;61047:7;61043:328;;;61086:18;;;;;;61124:62;;;;;;;;;;61162:10;;61174:5;;61086:18;;61124:62;:::i;:::-;;;;;;;;61056:142;61043:328;;;61292:67;61312:10;61324;61336:5;61343:7;61352:6;61292:19;:67::i;:::-;59630:1748;;;;;;;;;;;;;;;;;;59461:1917;;;;:::o;61512:241::-;61573:6;;61608:22;86114:9;61608:7;:22;:::i;:::-;61592:38;-1:-1:-1;;;;;;61649:28:0;;;61641:70;;;;-1:-1:-1;;;61641:70:0;;41922:2:1;61641:70:0;;;41904:21:1;41961:2;41941:18;;;41934:30;42000:31;41980:18;;;41973:59;42049:18;;61641:70:0;41720:353:1;45282:475:0;45461:21;45485:28;45498:14;45485:12;:28::i;:::-;45543;;;;45524:16;45543:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;45461:52;;-1:-1:-1;45597:15:0;45589:60;;;;-1:-1:-1;;;45589:60:0;;42665:2:1;45589:60:0;;;42647:21:1;;;42684:18;;;42677:30;42743:34;42723:18;;;42716:62;42795:18;;45589:60:0;42463:356:1;45589:60:0;45688:23;45702:9;45688:11;:23;:::i;:::-;45668:16;:43;;45660:89;;;;-1:-1:-1;;;45660:89:0;;43026:2:1;45660:89:0;;;43008:21:1;43065:2;43045:18;;;43038:30;43104:34;43084:18;;;43077:62;-1:-1:-1;;;43155:18:1;;;43148:31;43196:19;;45660:89:0;42824:397:1;61890:182:0;61956:16;;62003:22;86114:9;62003:7;:22;:::i;:::-;61996:29;-1:-1:-1;62050:14:0;61996:29;62050:7;:14;:::i;:::-;62036:28;;61890:182;;;:::o;85044:329::-;85188:4;39529:10;-1:-1:-1;;;;;85250:16:0;;;;85246:62;;85268:40;85284:5;85291:7;85300;85268:15;:40::i;:::-;85319:21;85325:5;85332:7;85319:5;:21::i;:::-;-1:-1:-1;85358:7:0;;85044:329;-1:-1:-1;;;;85044:329:0:o;44654:620::-;44938:32;;;44909:26;44938:32;;;:19;:32;;;;;44909:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44989:13;:20;45013:1;44989:25;44981:92;;;;-1:-1:-1;;;44981:92:0;;43545:2:1;44981:92:0;;;43527:21:1;43584:2;43564:18;;;43557:30;43623:34;43603:18;;;43596:62;-1:-1:-1;;;43674:18:1;;;43667:52;43736:19;;44981:92:0;43343:418:1;44981:92:0;45084:47;45102:11;45115:8;:15;45084:17;:47::i;:::-;45142:124;;-1:-1:-1;;;45142:124:0;;-1:-1:-1;;;;;45142:10:0;:15;;;;45165:10;;45142:124;;45177:11;;45190:13;;45205:8;;45215:14;;45231:18;;45251:14;;45142:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44898:376;44654:620;;;;;;:::o;62627:366::-;62844:12;53376:1;62911:10;62923:9;-1:-1:-1;;;;;63781:23:0;;62960:14;62976:8;62876:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62869:116;;62627:366;;;;;;;:::o;6612:1309::-;6771:4;6777:12;6839;6862:13;6886:24;6923:8;6913:19;;-1:-1:-1;;;;;6913:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6913:19:0;;6886:46;;7442:1;7412;7374:9;7368:16;7335:4;7324:9;7320:20;7285:1;7246:7;7216:4;7193:275;7181:287;;7537:16;7526:27;;7582:8;7573:7;7570:21;7567:78;;;7622:8;7611:19;;7567:78;7732:7;7719:11;7712:28;7854:7;7851:1;7844:4;7831:11;7827:22;7812:50;7891:8;;;;-1:-1:-1;6612:1309:0;-1:-1:-1;;;;;;6612:1309:0:o;51120:375::-;51396:8;51386:19;;;;;;51335:14;:27;51350:11;51335:27;;;;;;;;;;;;;;;51363:11;51335:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51335:48:0;;;;;;;;;:70;;;;51421:66;;;;51435:11;;51448;;51376:6;;51469:8;;51479:7;;51421:66;:::i;:::-;;;;;;;;51120:375;;;;;:::o;83065:91::-;;;;:::o;62273:346::-;62355:10;;;62403:19;:8;62355:10;62403:16;:19::i;:::-;:30;;;:55;;;;;62437:8;:15;62456:2;62437:21;62403:55;62395:95;;;;-1:-1:-1;;;62395:95:0;;46163:2:1;62395:95:0;;;46145:21:1;46202:2;46182:18;;;46175:30;46241:29;46221:18;;;46214:57;46288:18;;62395:95:0;45961:351:1;62395:95:0;62508:22;:8;62527:2;62508:18;:22::i;:::-;62503:27;-1:-1:-1;62590:21:0;:8;62608:2;62590:17;:21::i;:::-;62579:32;;62273:346;;;:::o;61761:121::-;61826:4;61850:24;86114:9;-1:-1:-1;;;;;61850:24:0;;;:::i;85381:206::-;85511:4;85528:26;85534:10;85546:7;85528:5;:26::i;:::-;-1:-1:-1;85572:7:0;85381:206;-1:-1:-1;;85381:206:0:o;63001:661::-;63140:12;;;63222:20;63140:12;53376:1;63313:19;:8;63140:12;63313:16;:19::i;:::-;:39;;;63305:79;;;;-1:-1:-1;;;63305:79:0;;46163:2:1;63305:79:0;;;46145:21:1;46202:2;46182:18;;;46175:30;46241:29;46221:18;;;46214:57;46288:18;;63305:79:0;45961:351:1;63305:79:0;63402:22;:8;63421:2;63402:18;:22::i;:::-;63397:27;-1:-1:-1;63484:21:0;:8;63502:2;63484:17;:21::i;:::-;63473:32;-1:-1:-1;63523:22:0;:8;63542:2;63523:18;:22::i;:::-;63516:29;-1:-1:-1;63572:21:0;:8;63590:2;63572:17;:21::i;:::-;63556:37;;63614:40;63629:2;63651;63633:8;:15;:20;;;;:::i;:::-;63614:8;;:40;:14;:40::i;:::-;63604:50;;63001:661;;;;;;;:::o;45765:277::-;45847:13;45906:2;45881:14;:21;:27;;45873:74;;;;-1:-1:-1;;;45873:74:0;;46519:2:1;45873:74:0;;;46501:21:1;46558:2;46538:18;;;46531:30;46597:34;46577:18;;;46570:62;-1:-1:-1;;;46648:18:1;;;46641:32;46690:19;;45873:74:0;46317:398:1;45873:74:0;-1:-1:-1;46020:2:0;46000:23;45994:30;;45765:277::o;80296:675::-;-1:-1:-1;;;;;80380:21:0;;80372:67;;;;-1:-1:-1;;;80372:67:0;;46922:2:1;80372:67:0;;;46904:21:1;46961:2;46941:18;;;46934:30;47000:34;46980:18;;;46973:62;-1:-1:-1;;;47051:18:1;;;47044:31;47092:19;;80372:67:0;46720:397:1;80372:67:0;-1:-1:-1;;;;;80539:18:0;;80514:22;80539:18;;;:9;:18;;;;;;80576:24;;;;80568:71;;;;-1:-1:-1;;;80568:71:0;;47324:2:1;80568:71:0;;;47306:21:1;47363:2;47343:18;;;47336:30;47402:34;47382:18;;;47375:62;-1:-1:-1;;;47453:18:1;;;47446:32;47495:19;;80568:71:0;47122:398:1;80568:71:0;-1:-1:-1;;;;;80675:18:0;;;;;;:9;:18;;;;;;;;80696:23;;;80675:44;;80814:12;:22;;;;;;;80865:37;2326:25:1;;;80675:18:0;;;80865:37;;2299:18:1;80865:37:0;;;;;;;83065:91;;;:::o;46050:408::-;46173:35;;;46149:21;46173:35;;;:22;:35;;;;;;;46223:21;;;46219:138;;-1:-1:-1;42789:5:0;46219:138;46391:16;46375:12;:32;;46367:83;;;;-1:-1:-1;;;46367:83:0;;47727:2:1;46367:83:0;;;47709:21:1;47766:2;47746:18;;;47739:30;47805:34;47785:18;;;47778:62;-1:-1:-1;;;47856:18:1;;;47849:36;47902:19;;46367:83:0;47525:402:1;23402:360:0;23478:7;23523:11;:6;23532:2;23523:11;:::i;:::-;23506:6;:13;:28;;23498:62;;;;-1:-1:-1;;;23498:62:0;;48134:2:1;23498:62:0;;;48116:21:1;48173:2;48153:18;;;48146:30;-1:-1:-1;;;48192:18:1;;;48185:51;48253:18;;23498:62:0;47932:345:1;23498:62:0;-1:-1:-1;23652:30:0;23668:4;23652:30;23646:37;-1:-1:-1;;;23642:71:0;;;23402:360::o;24723:311::-;24798:6;24842:10;:6;24851:1;24842:10;:::i;:::-;24825:6;:13;:27;;24817:60;;;;-1:-1:-1;;;24817:60:0;;48484:2:1;24817:60:0;;;48466:21:1;48523:2;48503:18;;;48496:30;-1:-1:-1;;;48542:18:1;;;48535:50;48602:18;;24817:60:0;48282:344:1;24817:60:0;-1:-1:-1;24958:29:0;24974:3;24958:29;24952:36;;24723:311::o;79415:548::-;-1:-1:-1;;;;;79499:21:0;;79491:65;;;;-1:-1:-1;;;79491:65:0;;48833:2:1;79491:65:0;;;48815:21:1;48872:2;48852:18;;;48845:30;48911:33;48891:18;;;48884:61;48962:18;;79491:65:0;48631:355:1;79491:65:0;79647:6;79631:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;79802:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;79857:37;2326:25:1;;;79857:37:0;;2299:18:1;79857:37:0;;;;;;;79415:548;;:::o;26006:326::-;26082:7;26127:11;:6;26136:2;26127:11;:::i;:::-;26110:6;:13;:28;;26102:62;;;;-1:-1:-1;;;26102:62:0;;49193:2:1;26102:62:0;;;49175:21:1;49232:2;49212:18;;;49205:30;-1:-1:-1;;;49251:18:1;;;49244:51;49312:18;;26102:62:0;48991:345:1;26102:62:0;-1:-1:-1;26252:30:0;26268:4;26252:30;26246:37;;26006:326::o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:289;539:3;577:5;571:12;604:6;599:3;592:19;660:6;653:4;646:5;642:16;635:4;630:3;626:14;620:47;712:1;705:4;696:6;691:3;687:16;683:27;676:38;775:4;768:2;764:7;759:2;751:6;747:15;743:29;738:3;734:39;730:50;723:57;;;497:289;;;;:::o;791:220::-;940:2;929:9;922:21;903:4;960:45;1001:2;990:9;986:18;978:6;960:45;:::i;1016:159::-;1083:20;;1143:6;1132:18;;1122:29;;1112:57;;1165:1;1162;1155:12;1112:57;1016:159;;;:::o;1180:184::-;1238:6;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1330:28;1348:9;1330:28;:::i;1369:131::-;-1:-1:-1;;;;;1444:31:1;;1434:42;;1424:70;;1490:1;1487;1480:12;1505:367;1573:6;1581;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;1689:9;1676:23;1708:31;1733:5;1708:31;:::i;:::-;1758:5;1836:2;1821:18;;;;1808:32;;-1:-1:-1;;;1505:367:1:o;1877:298::-;1944:6;1952;2005:2;1993:9;1984:7;1980:23;1976:32;1973:52;;;2021:1;2018;2011:12;1973:52;2044:28;2062:9;2044:28;:::i;2362:508::-;2439:6;2447;2455;2508:2;2496:9;2487:7;2483:23;2479:32;2476:52;;;2524:1;2521;2514:12;2476:52;2563:9;2550:23;2582:31;2607:5;2582:31;:::i;:::-;2632:5;-1:-1:-1;2689:2:1;2674:18;;2661:32;2702:33;2661:32;2702:33;:::i;:::-;2362:508;;2754:7;;-1:-1:-1;;;2834:2:1;2819:18;;;;2806:32;;2362:508::o;2875:347::-;2926:8;2936:6;2990:3;2983:4;2975:6;2971:17;2967:27;2957:55;;3008:1;3005;2998:12;2957:55;-1:-1:-1;3031:20:1;;-1:-1:-1;;;;;3063:30:1;;3060:50;;;3106:1;3103;3096:12;3060:50;3143:4;3135:6;3131:17;3119:29;;3195:3;3188:4;3179:6;3171;3167:19;3163:30;3160:39;3157:59;;;3212:1;3209;3202:12;3157:59;2875:347;;;;;:::o;3227:171::-;3294:20;;-1:-1:-1;;;;;3343:30:1;;3333:41;;3323:69;;3388:1;3385;3378:12;3403:857;3509:6;3517;3525;3533;3541;3549;3602:3;3590:9;3581:7;3577:23;3573:33;3570:53;;;3619:1;3616;3609:12;3570:53;3642:28;3660:9;3642:28;:::i;:::-;3632:38;;3721:2;3710:9;3706:18;3693:32;-1:-1:-1;;;;;3740:6:1;3737:30;3734:50;;;3780:1;3777;3770:12;3734:50;3819:58;3869:7;3860:6;3849:9;3845:22;3819:58;:::i;:::-;3896:8;;-1:-1:-1;3793:84:1;-1:-1:-1;3950:37:1;;-1:-1:-1;3983:2:1;3968:18;;3950:37;:::i;:::-;3940:47;;4040:2;4029:9;4025:18;4012:32;-1:-1:-1;;;;;4059:8:1;4056:32;4053:52;;;4101:1;4098;4091:12;4053:52;4140:60;4192:7;4181:8;4170:9;4166:24;4140:60;:::i;:::-;3403:857;;;;-1:-1:-1;3403:857:1;;-1:-1:-1;3403:857:1;;4219:8;;3403:857;-1:-1:-1;;;3403:857:1:o;4473:160::-;4538:20;;4594:13;;4587:21;4577:32;;4567:60;;4623:1;4620;4613:12;4638:180;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;4786:26;4802:9;4786:26;:::i;5012:785::-;5114:6;5122;5130;5138;5146;5154;5207:3;5195:9;5186:7;5182:23;5178:33;5175:53;;;5224:1;5221;5214:12;5175:53;5247:28;5265:9;5247:28;:::i;:::-;5237:38;-1:-1:-1;5344:2:1;5329:18;;5316:32;;-1:-1:-1;5445:2:1;5430:18;;5417:32;;-1:-1:-1;5494:35:1;5525:2;5510:18;;5494:35;:::i;:::-;5484:45;;5580:3;5569:9;5565:19;5552:33;-1:-1:-1;;;;;5600:6:1;5597:30;5594:50;;;5640:1;5637;5630:12;6055:226;6114:6;6167:2;6155:9;6146:7;6142:23;6138:32;6135:52;;;6183:1;6180;6173:12;6135:52;-1:-1:-1;6228:23:1;;6055:226;-1:-1:-1;6055:226:1:o;6286:481::-;6364:6;6372;6380;6433:2;6421:9;6412:7;6408:23;6404:32;6401:52;;;6449:1;6446;6439:12;6401:52;6472:28;6490:9;6472:28;:::i;:::-;6462:38;;6551:2;6540:9;6536:18;6523:32;-1:-1:-1;;;;;6570:6:1;6567:30;6564:50;;;6610:1;6607;6600:12;6564:50;6649:58;6699:7;6690:6;6679:9;6675:22;6649:58;:::i;:::-;6286:481;;6726:8;;-1:-1:-1;6623:84:1;;-1:-1:-1;;;;6286:481:1:o;6772:127::-;6833:10;6828:3;6824:20;6821:1;6814:31;6864:4;6861:1;6854:15;6888:4;6885:1;6878:15;6904:275;6975:2;6969:9;7040:2;7021:13;;-1:-1:-1;;7017:27:1;7005:40;;-1:-1:-1;;;;;7060:34:1;;7096:22;;;7057:62;7054:88;;;7122:18;;:::i;:::-;7158:2;7151:22;6904:275;;-1:-1:-1;6904:275:1:o;7184:186::-;7232:4;-1:-1:-1;;;;;7257:6:1;7254:30;7251:56;;;7287:18;;:::i;:::-;-1:-1:-1;7353:2:1;7332:15;-1:-1:-1;;7328:29:1;7359:4;7324:40;;7184:186::o;7375:839::-;7459:6;7467;7475;7528:2;7516:9;7507:7;7503:23;7499:32;7496:52;;;7544:1;7541;7534:12;7496:52;7567:28;7585:9;7567:28;:::i;:::-;7557:38;;7646:2;7635:9;7631:18;7618:32;-1:-1:-1;;;;;7665:6:1;7662:30;7659:50;;;7705:1;7702;7695:12;7659:50;7728:22;;7781:4;7773:13;;7769:27;-1:-1:-1;7759:55:1;;7810:1;7807;7800:12;7759:55;7850:2;7837:16;7875:52;7891:35;7919:6;7891:35;:::i;:::-;7875:52;:::i;:::-;7950:6;7943:5;7936:21;7998:7;7993:2;7984:6;7980:2;7976:15;7972:24;7969:37;7966:57;;;8019:1;8016;8009:12;7966:57;8074:6;8069:2;8065;8061:11;8056:2;8049:5;8045:14;8032:49;8126:1;8121:2;8112:6;8105:5;8101:18;8097:27;8090:38;8147:5;8137:15;;;;;8171:37;8204:2;8193:9;8189:18;8171:37;:::i;:::-;8161:47;;7375:839;;;;;:::o;8401:160::-;8466:5;8511:2;8502:6;8497:3;8493:16;8489:25;8486:45;;;8527:1;8524;8517:12;8486:45;-1:-1:-1;8549:6:1;8401:160;-1:-1:-1;8401:160:1:o;8566:813::-;8690:6;8698;8706;8714;8722;8775:3;8763:9;8754:7;8750:23;8746:33;8743:53;;;8792:1;8789;8782:12;8743:53;8831:9;8818:23;8850:31;8875:5;8850:31;:::i;:::-;8900:5;-1:-1:-1;8924:37:1;8957:2;8942:18;;8924:37;:::i;:::-;8914:47;-1:-1:-1;9034:2:1;9019:18;;9006:32;;-1:-1:-1;9137:2:1;9122:18;;9109:32;;-1:-1:-1;9218:3:1;9203:19;;9190:33;-1:-1:-1;;;;;9235:30:1;;9232:50;;;9278:1;9275;9268:12;9232:50;9301:72;9365:7;9356:6;9345:9;9341:22;9301:72;:::i;:::-;9291:82;;;8566:813;;;;;;;;:::o;9384:247::-;9443:6;9496:2;9484:9;9475:7;9471:23;9467:32;9464:52;;;9512:1;9509;9502:12;9464:52;9551:9;9538:23;9570:31;9595:5;9570:31;:::i;9859:1190::-;10011:6;10019;10027;10035;10043;10051;10059;10067;10120:3;10108:9;10099:7;10095:23;10091:33;10088:53;;;10137:1;10134;10127:12;10088:53;10176:9;10163:23;10195:31;10220:5;10195:31;:::i;:::-;10245:5;-1:-1:-1;10269:37:1;10302:2;10287:18;;10269:37;:::i;:::-;10259:47;-1:-1:-1;10379:2:1;10364:18;;10351:32;;-1:-1:-1;10482:2:1;10467:18;;10454:32;;-1:-1:-1;10563:3:1;10548:19;;10535:33;-1:-1:-1;;;;;10580:30:1;;10577:50;;;10623:1;10620;10613:12;10577:50;10662:58;10712:7;10703:6;10692:9;10688:22;10662:58;:::i;:::-;10739:8;;-1:-1:-1;10636:84:1;-1:-1:-1;10793:38:1;;-1:-1:-1;10826:3:1;10811:19;;10793:38;:::i;:::-;10783:48;;10884:3;10873:9;10869:19;10856:33;-1:-1:-1;;;;;10904:8:1;10901:32;10898:52;;;10946:1;10943;10936:12;10898:52;10969:74;11035:7;11024:8;11013:9;11009:24;10969:74;:::i;:::-;10959:84;;;9859:1190;;;;;;;;;;;:::o;11054:256::-;11120:6;11128;11181:2;11169:9;11160:7;11156:23;11152:32;11149:52;;;11197:1;11194;11187:12;11149:52;11220:28;11238:9;11220:28;:::i;:::-;11210:38;;11267:37;11300:2;11289:9;11285:18;11267:37;:::i;:::-;11257:47;;11054:256;;;;;:::o;11315:1356::-;11457:6;11465;11473;11481;11489;11497;11505;11513;11521;11529;11582:3;11570:9;11561:7;11557:23;11553:33;11550:53;;;11599:1;11596;11589:12;11550:53;11622:28;11640:9;11622:28;:::i;:::-;11612:38;;11701:2;11690:9;11686:18;11673:32;-1:-1:-1;;;;;11720:6:1;11717:30;11714:50;;;11760:1;11757;11750:12;11714:50;11799:58;11849:7;11840:6;11829:9;11825:22;11799:58;:::i;:::-;11876:8;;-1:-1:-1;11773:84:1;-1:-1:-1;11930:37:1;;-1:-1:-1;11963:2:1;11948:18;;11930:37;:::i;:::-;11920:47;-1:-1:-1;12036:2:1;12021:18;;12008:32;;-1:-1:-1;12116:3:1;12101:19;;12088:33;12130;12088;12130;:::i;:::-;12182:7;-1:-1:-1;12262:3:1;12247:19;;12234:33;;-1:-1:-1;12346:3:1;12331:19;;12318:33;-1:-1:-1;;;;;12363:32:1;;12360:52;;;12408:1;12405;12398:12;12360:52;12447:60;12499:7;12488:8;12477:9;12473:24;12447:60;:::i;:::-;11315:1356;;;;-1:-1:-1;11315:1356:1;;;;;;;;;;;;;12634:3;12619:19;;;12606:33;;11315:1356;-1:-1:-1;;;;11315:1356:1:o;12676:1162::-;12806:6;12814;12822;12830;12838;12846;12854;12862;12870;12923:3;12911:9;12902:7;12898:23;12894:33;12891:53;;;12940:1;12937;12930:12;12891:53;12963:28;12981:9;12963:28;:::i;:::-;12953:38;-1:-1:-1;13060:2:1;13045:18;;13032:32;;-1:-1:-1;13161:2:1;13146:18;;13133:32;;-1:-1:-1;13242:2:1;13227:18;;13214:32;-1:-1:-1;;;;;13258:30:1;;13255:50;;;13301:1;13298;13291:12;13255:50;13340:58;13390:7;13381:6;13370:9;13366:22;13340:58;:::i;:::-;13417:8;;-1:-1:-1;13314:84:1;-1:-1:-1;13471:38:1;;-1:-1:-1;13504:3:1;13489:19;;13471:38;:::i;:::-;13461:48;;13528:36;13559:3;13548:9;13544:19;13528:36;:::i;:::-;13518:46;;13617:3;13606:9;13602:19;13589:33;-1:-1:-1;;;;;13637:8:1;13634:32;13631:52;;;13679:1;13676;13669:12;13631:52;13718:60;13770:7;13759:8;13748:9;13744:24;13718:60;:::i;:::-;13692:86;;13797:8;13787:18;;;13824:8;13814:18;;;12676:1162;;;;;;;;;;;:::o;14075:315::-;14140:6;14148;14201:2;14189:9;14180:7;14176:23;14172:32;14169:52;;;14217:1;14214;14207:12;14169:52;14256:9;14243:23;14275:31;14300:5;14275:31;:::i;:::-;14325:5;-1:-1:-1;14349:35:1;14380:2;14365:18;;14349:35;:::i;14395:668::-;14490:6;14498;14506;14514;14522;14575:3;14563:9;14554:7;14550:23;14546:33;14543:53;;;14592:1;14589;14582:12;14543:53;14615:28;14633:9;14615:28;:::i;:::-;14605:38;;14662:37;14695:2;14684:9;14680:18;14662:37;:::i;:::-;14652:47;-1:-1:-1;14768:2:1;14753:18;;14740:32;;-1:-1:-1;14847:2:1;14832:18;;14819:32;-1:-1:-1;;;;;14863:30:1;;14860:50;;;14906:1;14903;14896:12;14860:50;14945:58;14995:7;14986:6;14975:9;14971:22;14945:58;:::i;:::-;14395:668;;;;-1:-1:-1;14395:668:1;;-1:-1:-1;15022:8:1;;14919:84;14395:668;-1:-1:-1;;;14395:668:1:o;15068:388::-;15136:6;15144;15197:2;15185:9;15176:7;15172:23;15168:32;15165:52;;;15213:1;15210;15203:12;15165:52;15252:9;15239:23;15271:31;15296:5;15271:31;:::i;:::-;15321:5;-1:-1:-1;15378:2:1;15363:18;;15350:32;15391:33;15350:32;15391:33;:::i;:::-;15443:7;15433:17;;;15068:388;;;;;:::o;15461:370::-;15536:6;15544;15552;15605:2;15593:9;15584:7;15580:23;15576:32;15573:52;;;15621:1;15618;15611:12;15573:52;15644:28;15662:9;15644:28;:::i;:::-;15634:38;;15691:37;15724:2;15713:9;15709:18;15691:37;:::i;15836:346::-;15904:6;15912;15965:2;15953:9;15944:7;15940:23;15936:32;15933:52;;;15981:1;15978;15971:12;15933:52;-1:-1:-1;;16026:23:1;;;16146:2;16131:18;;;16118:32;;-1:-1:-1;15836:346:1:o;16187:512::-;16271:6;16279;16287;16295;16348:3;16336:9;16327:7;16323:23;16319:33;16316:53;;;16365:1;16362;16355:12;16316:53;16388:28;16406:9;16388:28;:::i;:::-;16378:38;;16435:37;16468:2;16457:9;16453:18;16435:37;:::i;:::-;16425:47;;16522:2;16511:9;16507:18;16494:32;16535:31;16560:5;16535:31;:::i;:::-;16187:512;;;;-1:-1:-1;16585:5:1;;16663:2;16648:18;16635:32;;-1:-1:-1;;16187:512:1:o;16704:380::-;16783:1;16779:12;;;;16826;;;16847:61;;16901:4;16893:6;16889:17;16879:27;;16847:61;16954:2;16946:6;16943:14;16923:18;16920:38;16917:161;;17000:10;16995:3;16991:20;16988:1;16981:31;17035:4;17032:1;17025:15;17063:4;17060:1;17053:15;17701:127;17762:10;17757:3;17753:20;17750:1;17743:31;17793:4;17790:1;17783:15;17817:4;17814:1;17807:15;17833:125;17898:9;;;17919:10;;;17916:36;;;17932:18;;:::i;18310:271::-;18493:6;18485;18480:3;18467:33;18449:3;18519:16;;18544:13;;;18519:16;18310:271;-1:-1:-1;18310:271:1:o;18586:266::-;18674:6;18669:3;18662:19;18726:6;18719:5;18712:4;18707:3;18703:14;18690:43;-1:-1:-1;18778:1:1;18753:16;;;18771:4;18749:27;;;18742:38;;;;18834:2;18813:15;;;-1:-1:-1;;18809:29:1;18800:39;;;18796:50;;18586:266::o;18857:326::-;19052:6;19044;19040:19;19029:9;19022:38;19096:2;19091;19080:9;19076:18;19069:30;19003:4;19116:61;19173:2;19162:9;19158:18;19150:6;19142;19116:61;:::i;19448:521::-;19525:4;19531:6;19591:11;19578:25;19685:2;19681:7;19670:8;19654:14;19650:29;19646:43;19626:18;19622:68;19612:96;;19704:1;19701;19694:12;19612:96;19731:33;;19783:20;;;-1:-1:-1;;;;;;19815:30:1;;19812:50;;;19858:1;19855;19848:12;19812:50;19891:4;19879:17;;-1:-1:-1;19922:14:1;19918:27;;;19908:38;;19905:58;;;19959:1;19956;19949:12;20380:753;20713:6;20705;20701:19;20690:9;20683:38;20757:3;20752:2;20741:9;20737:18;20730:31;20664:4;20784:62;20841:3;20830:9;20826:19;20818:6;20810;20784:62;:::i;:::-;-1:-1:-1;;;;;20886:6:1;20882:31;20877:2;20866:9;20862:18;20855:59;20950:6;20945:2;20934:9;20930:18;20923:34;20994:6;20988:3;20977:9;20973:19;20966:35;21050:9;21042:6;21038:22;21032:3;21021:9;21017:19;21010:51;21078:49;21120:6;21112;21104;21078:49;:::i;:::-;21070:57;20380:753;-1:-1:-1;;;;;;;;;;;20380:753:1:o;21542:128::-;21609:9;;;21630:11;;;21627:37;;;21644:18;;:::i;22081:360::-;22292:6;22284;22279:3;22266:33;22362:2;22358:15;;;;-1:-1:-1;;22354:53:1;22318:16;;22343:65;;;22432:2;22424:11;;22081:360;-1:-1:-1;22081:360:1:o;22571:517::-;22672:2;22667:3;22664:11;22661:421;;;22708:5;22705:1;22698:16;22752:4;22749:1;22739:18;22822:2;22810:10;22806:19;22803:1;22799:27;22793:4;22789:38;22858:4;22846:10;22843:20;22840:47;;;-1:-1:-1;22881:4:1;22840:47;22936:2;22931:3;22927:12;22924:1;22920:20;22914:4;22910:31;22900:41;;22991:81;23009:2;23002:5;22999:13;22991:81;;;23068:1;23054:16;;23035:1;23024:13;22991:81;;23264:1295;23388:3;23382:10;-1:-1:-1;;;;;23407:6:1;23404:30;23401:56;;;23437:18;;:::i;:::-;23466:96;23555:6;23515:38;23547:4;23541:11;23515:38;:::i;:::-;23509:4;23466:96;:::i;:::-;23611:4;23642:2;23631:14;;23659:1;23654:648;;;;24346:1;24363:6;24360:89;;;-1:-1:-1;24415:19:1;;;24409:26;24360:89;-1:-1:-1;;23221:1:1;23217:11;;;23213:24;23209:29;23199:40;23245:1;23241:11;;;23196:57;24462:81;;23624:929;;23654:648;22518:1;22511:14;;;22555:4;22542:18;;-1:-1:-1;;23690:20:1;;;23807:222;23821:7;23818:1;23815:14;23807:222;;;23903:19;;;23897:26;23882:42;;24010:4;23995:20;;;;23963:1;23951:14;;;;23837:12;23807:222;;;23811:3;24057:6;24048:7;24045:19;24042:201;;;24118:19;;;24112:26;-1:-1:-1;;24201:1:1;24197:14;;;24213:3;24193:24;24189:37;24185:42;24170:58;24155:74;;24042:201;-1:-1:-1;;;;24289:1:1;24273:14;;;24269:22;24256:36;;-1:-1:-1;23264:1295:1:o;24911:481::-;25160:6;25152;25148:19;25137:9;25130:38;25216:6;25208;25204:19;25199:2;25188:9;25184:18;25177:47;25260:6;25255:2;25244:9;25240:18;25233:34;25303:3;25298:2;25287:9;25283:18;25276:31;25111:4;25324:62;25381:3;25370:9;25366:19;25358:6;25350;25324:62;:::i;:::-;25316:70;24911:481;-1:-1:-1;;;;;;;24911:481:1:o;27033:493::-;27282:6;27274;27270:19;27259:9;27252:38;27326:3;27321:2;27310:9;27306:18;27299:31;27233:4;27347:62;27404:3;27393:9;27389:19;27381:6;27373;27347:62;:::i;:::-;-1:-1:-1;;;;;27445:31:1;;;;27440:2;27425:18;;27418:59;-1:-1:-1;27508:2:1;27493:18;27486:34;27339:70;27033:493;-1:-1:-1;;;27033:493:1:o;27877:1194::-;-1:-1:-1;;;;;27994:3:1;27991:27;27988:53;;;28021:18;;:::i;:::-;28050:93;28139:3;28099:38;28131:4;28125:11;28099:38;:::i;:::-;28093:4;28050:93;:::i;:::-;28169:1;28194:2;28189:3;28186:11;28211:1;28206:607;;;;28857:1;28874:3;28871:93;;;-1:-1:-1;28930:19:1;;;28917:33;28871:93;-1:-1:-1;;23221:1:1;23217:11;;;23213:24;23209:29;23199:40;23245:1;23241:11;;;23196:57;28977:78;;28179:886;;28206:607;22518:1;22511:14;;;22555:4;22542:18;;-1:-1:-1;;28242:17:1;;;28356:229;28370:7;28367:1;28364:14;28356:229;;;28459:19;;;28446:33;28431:49;;28566:4;28551:20;;;;28519:1;28507:14;;;;28386:12;28356:229;;;28360:3;28613;28604:7;28601:16;28598:159;;;28737:1;28733:6;28727:3;28721;28718:1;28714:11;28710:21;28706:34;28702:39;28689:9;28684:3;28680:19;28667:33;28663:79;28655:6;28648:95;28598:159;;;28800:1;28794:3;28791:1;28787:11;28783:19;28777:4;28770:33;28179:886;;27877:1194;;;:::o;29927:685::-;30006:6;30059:2;30047:9;30038:7;30034:23;30030:32;30027:52;;;30075:1;30072;30065:12;30027:52;30108:9;30102:16;-1:-1:-1;;;;;30133:6:1;30130:30;30127:50;;;30173:1;30170;30163:12;30127:50;30196:22;;30249:4;30241:13;;30237:27;-1:-1:-1;30227:55:1;;30278:1;30275;30268:12;30227:55;30311:2;30305:9;30336:52;30352:35;30380:6;30352:35;:::i;30336:52::-;30411:6;30404:5;30397:21;30459:7;30454:2;30445:6;30441:2;30437:15;30433:24;30430:37;30427:57;;;30480:1;30477;30470:12;30427:57;30528:6;30523:2;30519;30515:11;30510:2;30503:5;30499:14;30493:42;30580:1;30555:18;;;30575:2;30551:27;30544:38;;;;30559:5;29927:685;-1:-1:-1;;;;29927:685:1:o;33596:168::-;33669:9;;;33700;;33717:15;;;33711:22;;33697:37;33687:71;;33738:18;;:::i;33769:127::-;33830:10;33825:3;33821:20;33818:1;33811:31;33861:4;33858:1;33851:15;33885:4;33882:1;33875:15;33901:120;33941:1;33967;33957:35;;33972:18;;:::i;:::-;-1:-1:-1;34006:9:1;;33901:120::o;34026:135::-;34065:3;34086:17;;;34083:43;;34106:18;;:::i;:::-;-1:-1:-1;34153:1:1;34142:13;;34026:135::o;34526:642::-;34807:6;34795:19;;34777:38;;-1:-1:-1;;;;;34851:32:1;;34846:2;34831:18;;34824:60;34871:3;34915:2;34900:18;;34893:31;;;-1:-1:-1;;34947:46:1;;34973:19;;34965:6;34947:46;:::i;:::-;35043:6;35036:14;35029:22;35024:2;35013:9;35009:18;35002:50;35101:9;35093:6;35089:22;35083:3;35072:9;35068:19;35061:51;35129:33;35155:6;35147;35129:33;:::i;:::-;35121:41;34526:642;-1:-1:-1;;;;;;;;34526:642:1:o;35173:343::-;35252:6;35260;35313:2;35301:9;35292:7;35288:23;35284:32;35281:52;;;35329:1;35326;35319:12;35281:52;-1:-1:-1;;35374:16:1;;35480:2;35465:18;;;35459:25;35374:16;;35459:25;;-1:-1:-1;35173:343:1:o;36567:127::-;36628:10;36623:3;36619:20;36616:1;36609:31;36659:4;36656:1;36649:15;36683:4;36680:1;36673:15;36699:251;36769:6;36822:2;36810:9;36801:7;36797:23;36793:32;36790:52;;;36838:1;36835;36828:12;36790:52;36870:9;36864:16;36889:31;36914:5;36889:31;:::i;36955:959::-;37217:4;37265:3;37254:9;37250:19;37296:6;37285:9;37278:25;37339:6;37334:2;37323:9;37319:18;37312:34;37382:3;37377:2;37366:9;37362:18;37355:31;37406:6;37441;37435:13;37472:6;37464;37457:22;37510:3;37499:9;37495:19;37488:26;;37549:2;37541:6;37537:15;37523:29;;37570:1;37580:195;37594:6;37591:1;37588:13;37580:195;;;37659:13;;-1:-1:-1;;;;;37655:39:1;37643:52;;37724:2;37750:15;;;;37715:12;;;;37691:1;37609:9;37580:195;;;-1:-1:-1;;;;;;;37831:32:1;;;;37826:2;37811:18;;37804:60;-1:-1:-1;;37895:3:1;37880:19;37873:35;37792:3;36955:959;-1:-1:-1;;;36955:959:1:o;37919:557::-;38176:6;38168;38164:19;38153:9;38146:38;38220:3;38215:2;38204:9;38200:18;38193:31;38127:4;38247:46;38288:3;38277:9;38273:19;38265:6;38247:46;:::i;:::-;-1:-1:-1;;;;;38333:6:1;38329:31;38324:2;38313:9;38309:18;38302:59;38409:9;38401:6;38397:22;38392:2;38381:9;38377:18;38370:50;38437:33;38463:6;38455;38437:33;:::i;40046:211::-;40087:3;40125:5;40119:12;40169:6;40162:4;40155:5;40151:16;40146:3;40140:36;40231:1;40195:16;;40220:13;;;-1:-1:-1;40195:16:1;;40046:211;-1:-1:-1;40046:211:1:o;40262:189::-;40391:3;40416:29;40441:3;40433:6;40416:29;:::i;40456:871::-;40825:6;40817;40813:19;40802:9;40795:38;40869:3;40864:2;40853:9;40849:18;40842:31;40776:4;40896:46;40937:3;40926:9;40922:19;40914:6;40896:46;:::i;:::-;-1:-1:-1;;;;;40978:31:1;;40973:2;40958:18;;40951:59;41041:2;41026:18;;41019:34;;;-1:-1:-1;;;;;41090:32:1;;41084:3;41069:19;;41062:61;41110:3;41139:19;;41132:35;;;41204:22;;;41198:3;41183:19;;41176:51;41244:33;41208:6;41262;41244:33;:::i;:::-;41236:41;;;41314:6;41308:3;41297:9;41293:19;41286:35;40456:871;;;;;;;;;;;:::o;41332:383::-;41533:2;41522:9;41515:21;41496:4;41553:45;41594:2;41583:9;41579:18;41571:6;41553:45;:::i;:::-;-1:-1:-1;;;;;41634:31:1;;;;41629:2;41614:18;;41607:59;-1:-1:-1;41697:2:1;41682:18;41675:34;41545:53;41332:383;-1:-1:-1;41332:383:1:o;43226:112::-;43258:1;43284;43274:35;;43289:18;;:::i;:::-;-1:-1:-1;43323:9:1;;43226:112::o;43766:836::-;44115:6;44107;44103:19;44092:9;44085:38;44159:3;44154:2;44143:9;44139:18;44132:31;44066:4;44186:46;44227:3;44216:9;44212:19;44204:6;44186:46;:::i;:::-;44280:9;44272:6;44268:22;44263:2;44252:9;44248:18;44241:50;44314:33;44340:6;44332;44314:33;:::i;:::-;-1:-1:-1;;;;;44383:32:1;;;44378:2;44363:18;;44356:60;44453:32;;44447:3;44432:19;;44425:61;44523:22;;;44403:3;44502:19;;44495:51;44300:47;-1:-1:-1;44563:33:1;44300:47;44581:6;44563:33;:::i;:::-;44555:41;43766:836;-1:-1:-1;;;;;;;;;43766:836:1:o;44607:625::-;44929:3;44924;44920:13;44911:6;44906:3;44902:16;44898:36;44893:3;44886:49;44964:6;44960:1;44955:3;44951:11;44944:27;-1:-1:-1;;;;;45027:3:1;45023:28;45014:6;45009:3;45005:16;45001:51;44996:2;44991:3;44987:12;44980:73;45083:6;45078:2;45073:3;45069:12;45062:28;-1:-1:-1;;;;;45146:3:1;45142:28;45133:6;45128:3;45124:16;45120:51;45115:2;45110:3;45106:12;45099:73;44868:3;45188:38;45222:2;45217:3;45213:12;45205:6;45188:38;:::i;45237:719::-;45540:6;45532;45528:19;45517:9;45510:38;45584:3;45579:2;45568:9;45564:18;45557:31;45491:4;45611:46;45652:3;45641:9;45637:19;45629:6;45611:46;:::i;:::-;-1:-1:-1;;;;;45697:6:1;45693:31;45688:2;45677:9;45673:18;45666:59;45773:9;45765:6;45761:22;45756:2;45745:9;45741:18;45734:50;45807:33;45833:6;45825;45807:33;:::i;:::-;45793:47;;45889:9;45881:6;45877:22;45871:3;45860:9;45856:19;45849:51;45917:33;45943:6;45935;45917:33;:::i

Swarm Source

ipfs://d418491968f44a8d871250fe2730d645aae864793e4797254ecb40dd1091b10d
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.