ETH Price: $3,997.33 (-0.03%)

Token

ERC-20: Merkly OFT (MERK)

Overview

Max Total Supply

3,676,026.799770999999997174 MERK

Holders

94,508

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9 MERK

Value
$0.00
0xc725463d8a278b3bb767660e4d317cc8f186b3f6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Merkly

Compiler Version
v0.8.19+commit.7dd6d404

ZkSolc Version
v1.3.13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 20 : MerklyOFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./OFT.sol";

contract Merkly is OFT {
    uint public fee = 0.0000025 ether;

    constructor(address _layerZeroEndpoint) OFT("Merkly OFT", "MERK", _layerZeroEndpoint) {}

    function mint(address _to, uint256 _amount) external payable {
        require(_amount * fee <= msg.value, "Not enough ether");
        _mint(_to, _amount * 10 ** decimals());
    }

    function setFee(uint _fee) external onlyOwner {
        fee = _fee;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

File 2 of 20 : BytesLib.sol
// SPDX-License-Identifier: Unlicense
/*
 * @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,
        uint256 _start,
        uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _start) internal pure returns (uint256) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint256 tempUint;

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

        return tempUint;
    }

    function toBytes32(bytes memory _bytes, uint256 _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 3 of 20 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.19;

/**
 * @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 4 of 20 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.19;

import {IERC165} from "./IERC165.sol";

/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 20 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.19;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";

/**
 * @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}.
 *
 * 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}.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        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
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 6 of 20 : ExcessivelySafeCall.sol
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint256 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,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _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,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _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);
        uint256 _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 7 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.19;

/**
 * @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 8 of 20 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.19;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 9 of 20 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.19;

import {IERC20} from "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 10 of 20 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

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

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

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

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

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @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 LayerZero 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() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

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

File 11 of 20 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

File 12 of 20 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

    // @notice set the lzReceive() LayerZero 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 13 of 20 : IOFT.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./IOFTCore.sol";
import "./IERC20.sol";

/**
 * @dev Interface of the OFT standard
 */
interface IOFT is IOFTCore, IERC20 {

}

File 14 of 20 : IOFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./IERC165.sol";

/**
 * @dev Interface of the IOFT core standard
 */
interface IOFTCore is IERC165 {
    /**
     * @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, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);

    /**
     * @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 LayerZero refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
     * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
     */
    function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    /**
     * @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);

    /**
     * @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, bytes _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 SetUseCustomAdapterParams(bool _useCustomAdapterParams);
}

File 15 of 20 : LzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ILayerZeroReceiver.sol";
import "./ILayerZeroUserApplicationConfig.sol";
import "./ILayerZeroEndpoint.sol";
import "./BytesLib.sol";

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

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

    ILayerZeroEndpoint 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) Ownable(msg.sender) {
        lzEndpoint = ILayerZeroEndpoint(_endpoint);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner {
        require(_minGas > 0, "LzApp: invalid minGas");
        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 16 of 20 : NonblockingLzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./LzApp.sol";
import "./ExcessivelySafeCall.sol";

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

    constructor(address _endpoint) LzApp(_endpoint) {}

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

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

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

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

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

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

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

File 17 of 20 : OFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./IERC165.sol";
import "./IOFT.sol";
import "./OFTCore.sol";

// override decimal() function is needed
contract OFT is OFTCore, ERC20, IOFT {
    constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) OFTCore(_lzEndpoint) {}

    function supportsInterface(bytes4 interfaceId) public view virtual override(OFTCore, IERC165) returns (bool) {
        return interfaceId == type(IOFT).interfaceId || interfaceId == type(IERC20).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

    function _debitFrom(address _from, uint16, bytes memory, 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;
    }
}

File 18 of 20 : OFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./NonblockingLzApp.sol";
import "./IOFTCore.sol";
import "./ERC165.sol";

abstract contract OFTCore is NonblockingLzApp, ERC165, IOFTCore {
    using BytesLib for bytes;

    uint public constant NO_EXTRA_GAS = 0;

    // packet type
    uint16 public constant PT_SEND = 0;

    bool public useCustomAdapterParams;

    constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {}

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

    function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) {
        // mock the payload for sendFrom()
        bytes memory payload = abi.encode(PT_SEND, _toAddress, _amount);
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function estimateSendFee2(uint16 _dstChainId, bytes memory payload, bool _useZro, bytes memory _adapterParams) public view virtual returns (uint nativeFee, uint zroFee) {
        return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
    }

    function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) public payable virtual override {
        _send(_from, _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParams);
    }

    function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner {
        useCustomAdapterParams = _useCustomAdapterParams;
        emit SetUseCustomAdapterParams(_useCustomAdapterParams);
    }

    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
        uint16 packetType;
        assembly {
            packetType := mload(add(_payload, 32))
        }

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

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

        uint amount = _debitFrom(_from, _dstChainId, _toAddress, _amount);

        bytes memory lzPayload = abi.encode(PT_SEND, _toAddress, amount);

        (uint nativeFee,) =  estimateSendFee2(_dstChainId, lzPayload, false, _adapterParams);
        require(msg.value >= nativeFee, "Not enough gas to send");
        
        _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, nativeFee);

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

    function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual {
        (, bytes memory toAddressBytes, uint amount) = abi.decode(_payload, (uint16, bytes, uint));

        address to = toAddressBytes.toAddress(0);

        amount = _creditTo(_srcChainId, to, amount);
        emit ReceiveFromChain(_srcChainId, to, amount);
    }

    function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual {
        if (useCustomAdapterParams) {
            _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas);
        } else {
            require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty.");
        }
    }

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

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

File 19 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.19;

import {Context} from "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

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

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 20 of 20 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

/**
 * @dev Standard ERC20 Errors
 * Interface of the ERC6093 custom errors for ERC20 tokens
 * as defined in https://eips.ethereum.org/EIPS/eip-6093
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the ERC6093 custom errors for ERC721 tokens
 * as defined in https://eips.ethereum.org/EIPS/eip-6093
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the ERC6093 custom errors for ERC1155 tokens
 * as defined in https://eips.ethereum.org/EIPS/eip-6093
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "": [
        "ast",
        "storageLayout"
      ],
      "*": [
        "abi"
      ]
    }
  },
  "viaIR": true
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":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":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":false,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"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":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","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":"uint16","name":"","type":"uint16"}],"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":"value","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":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"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":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee2","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","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":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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 ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"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":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","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":"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":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","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":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000955014cf9efe8dc1e28199963ad0d56a2a90c1addf23c3244c3b428f04e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da

Deployed Bytecode

0x0004000000000002000800000000000200000000030100190000006003300270000008b10430019700030000004103550002000000010355000008b10030019d000100000000001f00000001012001900000003a0000c13d0000008001000039000000400010043f0000000003000031000000040130008c000000ab0000413d0000000202000367000000000102043b000000e001100270000008c00410009c0000004a0000213d000008e20410009c000000ad0000a13d000008e30410009c000001ae0000a13d000008e40210009c000002260000a13d000008e50210009c000003a10000213d000008e80210009c000003e80000613d000008e90110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d22c022a50000040f00000004010000390000000201100367000000000101043b0000000c02000039000000000012041b0000000001000019000022c10001042e0000000001000416000000000101004b000000ab0000c13d0000000001000031000000bf02100039000000200800008a000000000282016f000008b203200041000008b30330009c0000007e0000213d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000008c10210009c000000e70000a13d000008c20210009c000001db0000a13d000008c30210009c000002a50000a13d000008c40210009c000003ca0000213d000008c70210009c000003e90000613d000008c80110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000601043b000008b50160009c000000ab0000213d000000000100041a000008b5021001970000000005000411000000000252004b000007e70000c13d000000000206004b000008380000c13d000000400100043d0000090602000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000400020043f0000001f0210018f000000020300036700000005041002720000008c0000613d00000000050000190000000506500210000000000763034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b000000840000413d000000000502004b0000009b0000613d0000000504400210000000000343034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000a00100043d000008b506100197000008b50110009c0000011d0000a13d0000000001000019000022c200010430000008f40210009c000001e40000213d000008fc0210009c000002ac0000213d000009000210009c0000054b0000613d000009010210009c0000054c0000613d000009020110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d0000000a04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000006280000c13d000000400100043d0000000002710436000000000505004b000007f20000613d0000000000400435000000000307004b0000000003000019000007f80000613d000009110400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000000df0000413d000007f80000013d000008d30210009c0000021d0000213d000008db0210009c000002d90000213d000008df0210009c000005780000613d000008e00210009c0000059e0000613d000008e10110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000400310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000002020003670000000401200370000000000101043b0000ffff0310008c000000ab0000213d0000002402200370000000000202043b000800000002001d0000ffff0220008c000000ab0000213d00000000001004350000000201000039000000200010043f0000004002000039000000000100001922c008650000040f000000080200002922c00c060000040f000000000101041a000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000000400400043d000008b60140009c000000440000213d0000004001400039000000400010043f0000000a030000390000000005340436000008b7010000410000000000150435000000400200043d000008b60120009c000000440000213d000500000005001d000400000004001d000600000003001d0000004001200039000000400010043f0000000401000039000700000002001d0000000002120436000008b801000041000200000002001d0000000000120435000000000200041a000008b901200197000800000006001d0000000006000411000000000161019f000000000010041b000008b1010000410000000003000414000008b10430009c0000000001034019000000c001100210000008ba011001c7000008b5052001970000800d020000390000000303000039000008bb04000041000300000008001d22c022b60000040f00000008030000290000000101200190000000ab0000613d000000800030043f00000004010000290000000006010433000008bc0160009c000000070500002900000006040000290000000507000029000000440000213d000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000006280000c13d000000200130008c0000017f0000413d000100000003001d000800000006001d0000000000400435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f0000000102200190000000ab0000613d00000008060000290000001f026000390000000502200270000000200360008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000705000029000000060400002900000005070000290000017f0000813d000000000002041b0000000102200039000000000312004b0000017b0000413d0000001f0160008c0000077a0000a13d000800000006001d0000000000400435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f00000003030000290000000102200190000000ab0000613d000000080700002900000000033701700000002002000039000000000101043b00000004060000290000019e0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001960000413d000000000373004b0000000705000029000001aa0000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000604000029000007850000013d000008ed0410009c000002fb0000213d000008f10210009c000005d20000613d000008f20210009c000004070000613d000008f30110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000000ab0000213d00000000001004350000000301000039000000200010043f0000004002000039000000000100001922c008650000040f000000000101041a000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000008cc0210009c000003050000213d000008d00210009c000005d30000613d000008d10210009c000004320000613d000008d20110009c000000ab0000c13d22c016ca0000040f000008f50210009c000003260000213d000008f90210009c000006050000613d000008fa0210009c000006060000613d000008fb0110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000600310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000002010003670000000402100370000000000202043b0000000003020019000008b50220009c000000ab0000213d0000002402100370000000000202043b000800000002001d000008b50220009c000000ab0000213d0000004401100370000000000401043b000700000004001d00000000020004110000000001030019000600000001001d000000000304001922c01e370000040f00000006010000290000000802000029000000070300002922c01d600000040f0000000101000039000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000008d40210009c000003770000213d000008d80210009c0000060a0000613d000008d90210009c0000062e0000613d000008da0110009c000000ab0000c13d22c015190000040f000008ea0210009c0000044c0000613d000008eb0210009c000004650000613d000008ec0110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d0000000002000031000000040120008a000008b403000041000000600410008c00000000040000190000000004034019000008b401100197000000000501004b000000000300a019000008b40110009c00000000010400190000000001036019000000000101004b000000ab0000c13d00000002030003670000000401300370000000000101043b0000ffff0410008c000000ab0000213d0000002404300370000000000404043b000008bc0540009c000000ab0000213d0000002305400039000008b406000041000000000725004b00000000070000190000000007068019000008b408200197000008b405500197000000000985004b0000000006008019000000000585013f000008b40550009c00000000050700190000000005066019000000000505004b000000ab0000c13d0000000405400039000000000353034f000000000303043b000008bc0530009c000000440000213d0000003f05300039000000200600008a000000000565016f000000400800043d0000000005580019000000000685004b00000000060000190000000106004039000008bc0750009c000000440000213d0000000106600190000000440000c13d0000002406400039000000400050043f000800000008001d00000000043804360000000005630019000000000225004b000000ab0000213d0000001f0230018f000000020560036700000005063002720000027a0000613d000000000700001900000005087002100000000009840019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000002720000413d000000000702004b000002890000613d0000000506600210000000000565034f00000000066400190000000302200210000000000706043300000000072701cf000000000727022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000272019f00000000002604350000000002340019000000000002043500000044020000390000000202200367000000000202043b000700000002001d000008bc0220009c000000ab0000213d00000000001004350000000501000039000000200010043f0000004002000039000000000100001922c008650000040f0000000002010019000000080100002922c012620000040f000000070200002922c012880000040f000000000101041a000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000008c90210009c000004660000613d000008ca0210009c000004670000613d000008cb0110009c000000ab0000c13d22c01b480000040f000008fd0210009c0000062f0000613d000008fe0210009c000006300000613d000008ff0110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000400310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000101043b000800000001001d0000ffff0110008c000000ab0000213d22c022a50000040f000000080100002900000000001004350000000301000039000000200010043f00000024010000390000000201100367000000000101043b000800000001001d0000004002000039000000000100001922c008650000040f0000000802000029000000000021041b0000000001000019000022c10001042e000008dc0210009c000006530000613d000008dd0210009c0000066e0000613d000008de0110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d0000000401000039000000000101041a000008b501100197000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000008ee0410009c000006890000613d000008ef0210009c0000049e0000613d000008f00110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d0000044f0000013d000008cd0210009c000006ba0000613d000008ce0210009c0000049f0000613d000008cf0110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d0000000c01000039000000000101041a000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000008f60210009c000006bb0000613d000008f70210009c000007130000613d000008f80110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000400310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000101043b000800000001001d000008b50110009c000000ab0000213d0000000001000411000700000001001d00000000001004350000000801000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000000ab0000613d000000000101043b00000008020000290000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000000ab0000613d000000000101043b000000000101041a00000024020000390000000202200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000007740000c13d0000000701000029000000080200002922c01de40000040f0000000101000039000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000008d50210009c0000072d0000613d000008d60210009c0000072e0000613d000008d70110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000400100043d000800000001001d000009090100004100000000001004390000000001000412000000040010044300000024000004430000800501000039000000440200003922c0087b0000040f000008b50110019700000008030000290000000000130435000008b101000041000008b10230009c0000000001034019000000400110021000000903011001c7000022c10001042e000008e60210009c000004cb0000613d000008e70110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000101043b000008b50210009c000000ab0000213d00000000001004350000000701000039000000200010043f0000004002000039000000000100001922c008650000040f000000000101041a000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000008c50210009c0000054a0000613d000008c60110009c000000ab0000c13d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000400100043d00000000020004100000000000210435000008b102000041000008b10310009c0000000001028019000000400110021000000903011001c7000022c10001042e22c012990000040f0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d0000000601000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d000000000100003122c00bd40000040f000700000002001d000600000003001d0000ffff0110018f00000000001004350000000101000039000000200010043f0000004002000039000000000100001922c008650000040f000000400200043d000800000002001d22c014370000040f00000008030000290000000002310049000000000103001922c011c70000040f0000000801000029000000001201043422c008650000040f000800000001001d00000000030000310000000701000029000000060200002922c011da0000040f000000001201043422c008650000040f0000000802000029000000000112004b00000000010000190000000101006039000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000400100043d00002710020000390000000000210435000008b102000041000008b10310009c0000000001028019000000400110021000000903011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000400100043d0000000000010435000008b102000041000008b10310009c0000000001028019000000400110021000000903011001c7000022c10001042e22c00cfe0000040f22c01aca0000040f0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000101043b000000000201004b0000000002000019000000010200c039000000000221004b000000ab0000c13d000000000200041a000008b5032001970000000002000411000000000323004b0000080a0000c13d0000000602000039000000000302041a000001000400008a000000000343016f000000000313019f000000000032041b000000400200043d0000000000120435000008b1010000410000000003000414000008b10430009c0000000003018019000008b10420009c00000000010240190000004001100210000000c002300210000000000112019f000008bd011001c70000800d020000390000000103000039000009070400004122c022b60000040f0000000101200190000008470000c13d000000ab0000013d22c00c170000040f0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000400310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000002020003670000000401200370000000000101043b000008b50310009c000000ab0000213d0000002402200370000000000202043b000800000002001d000008b50220009c000000ab0000213d00000000001004350000000801000039000000200010043f0000004002000039000000000100001922c008650000040f000000080200002922c01d470000040f000000000101041a000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d0000000001000031000000040210008a000008b403000041000000800420008c00000000040000190000000004034019000008b402200197000000000502004b000000000300a019000008b40220009c00000000020400190000000002036019000000000202004b000000ab0000c13d00000002020003670000000403200370000000000303043b000800000003001d0000ffff0330008c000000ab0000213d0000002403200370000000000303043b000008bc0430009c000000ab0000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b000000ab0000c13d0000000404300039000000000242034f000000000202043b000008bc0420009c000000440000213d0000003f04200039000000200500008a000000000454016f000000400700043d0000000004470019000000000574004b00000000050000190000000105004039000008bc0640009c000000440000213d0000000105500190000000440000c13d0000002405300039000000400040043f000700000007001d00000000032704360000000004520019000000000114004b000000ab0000213d0000001f0120018f000000020450036700000005052002720000051a0000613d000000000600001900000005076002100000000008730019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000005120000413d000000000601004b000005290000613d0000000505500210000000000454034f00000000055300190000000301100210000000000605043300000000061601cf000000000616022f000000000404043b0000010001100089000000000414022f00000000011401cf000000000161019f00000000001504350000000001230019000000000001043500000002010003670000004402100370000000000302043b000000000203004b0000000002000019000000010200c039000600000003001d000000000223004b000000ab0000c13d0000006401100370000000000101043b000008bc0210009c000000ab0000213d0000000002000031000000040110003922c012150000040f000000000401001900000008010000290000000702000029000000060300002922c021d50000040f000000400300043d000000200430003900000000002404350000000000130435000008b101000041000008b10230009c000000000103401900000040011002100000090b011001c7000022c10001042e22c01c500000040f22c008a70000040f0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000101043b0000091202100197000000000221004b000000ab0000c13d0000000102000039000000000301004b0000056f0000613d000009130310009c0000056f0000613d000009140210009c00000000020000190000000102006039000009150110009c00000000010000190000000101006039000000000221019f000000010120018f000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000000100041a000008b5021001970000000005000411000000000252004b000007510000c13d000008b901100197000000000010041b000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008ba011001c70000800d020000390000000303000039000008bb04000041000000000600001922c022b60000040f0000000101200190000000ab0000613d000008470000013d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000000ab0000213d00000000001004350000000101000039000000200010043f0000004002000039000000000100001922c008650000040f000000400200043d000800000002001d22c014370000040f00000008030000290000000002310049000000000103001922c011c70000040f0000002001000039000000400200043d000700000002001d0000000002120436000000080100002922c00a090000040f00000007040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c10001042e22c00b680000040f0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000004020000390000000201200367000000000101043b000008b50310009c000000ab0000213d000000000300041a000008b5043001970000000003000411000000000434004b000008150000c13d000000000302041a000008b903300197000000000313019f000000000032041b000000400200043d0000000000120435000008b1010000410000000003000414000008b10430009c0000000003018019000008b10420009c00000000010240190000004001100210000000c002300210000000000112019f000008bd011001c70000800d020000390000000103000039000009080400004122c022b60000040f0000000101200190000008470000c13d000000ab0000013d22c00acd0000040f0000000001000416000000000101004b000000ab0000c13d000006710000013d0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d0000000b04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f00000001022001900000075c0000613d0000090c0100004100000000001004350000002201000039000000040010043f0000090501000041000022c20001043022c014740000040f22c00a320000040f0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000400310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000002010003670000000402100370000000000202043b000008b50320009c000000ab0000213d0000002401100370000000000301043b000000000100041122c01de40000040f0000000101000039000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000000100041a000008b501100197000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d0000000901000039000000000101041a000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000000040130008a000008b403000041000000400410008c00000000040000190000000004034019000008b401100197000000000501004b000000000300a019000008b40110009c00000000010400190000000001036019000000000101004b000000ab0000c13d0000000401200370000000000101043b000800000001001d000008b50110009c000000ab0000213d0000000c01000039000000000301041a0000002401200370000000000101043b00000000421300a9000000000401004b000006a50000613d00000000541200d9000000000343004b000007740000c13d0000000003000416000000000232004b0000076e0000a13d000000400100043d00000044021000390000090d0300004100000000003204350000002402100039000000100300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c20001043022c017be0000040f0000000001000416000000000101004b000000ab0000c13d0000000002000031000000040120008a000008b403000041000000a00410008c00000000040000190000000004034019000008b401100197000000000501004b000000000300a019000008b40110009c00000000010400190000000001036019000000000101004b000000ab0000c13d00000002010003670000000403100370000000000303043b000800000003001d0000ffff0330008c000000ab0000213d0000002403100370000000000303043b000008bc0430009c000000ab0000213d0000002304300039000008b405000041000000000624004b00000000060000190000000006058019000008b407200197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b000000ab0000c13d0000000404300039000000000441034f000000000404043b000700000004001d000008bc0440009c000000ab0000213d00000024043000390000000703000029000600000004001d0000000003430019000000000323004b000000ab0000213d0000006403100370000000000403043b000000000304004b0000000003000019000000010300c039000500000004001d000000000334004b000000ab0000c13d0000008401100370000000000101043b000008bc0310009c000000ab0000213d000000040110003922c0088c0000040f00000044030000390000000203300367000000000403043b00000000060100190000000007020019000000080100002900000006020000290000000703000029000000050500002922c020bd0000040f000000400300043d000000200430003900000000002404350000000000130435000008b101000041000008b10230009c000000000103401900000040011002100000090b011001c7000022c10001042e0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000000301004b00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d000000400100043d00000012020000390000000000210435000008b102000041000008b10310009c0000000001028019000000400110021000000903011001c7000022c10001042e22c015770000040f0000000001000416000000000101004b000000ab0000c13d000000040100008a0000000001100031000008b402000041000000400310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000000ab0000c13d00000002010003670000000402100370000000000202043b000008b50320009c000000ab0000213d0000002401100370000000000301043b000000000100041122c01d600000040f0000000101000039000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000000400100043d0000090402000041000000000021043500000004021000390000000000520435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000400100043d0000000002710436000000000505004b000008200000613d0000000000400435000000000307004b0000000003000019000008260000613d0000090a0400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000007660000413d000008260000013d22c01f040000040f0000000002010019000000080100002922c01f120000040f0000000001000019000022c10001042e0000090c0100004100000000001004350000001101000039000000040010043f0000090501000041000022c200010430000000000106004b00000000010000190000077e0000613d00000000010704330000000302600210000000010300008a000000000223022f000000000232013f000000000121016f0000000102600210000000000121019f000000000014041b0000000005050433000008bc0150009c000000440000213d0000000b04000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000006280000c13d000500000003001d000000200130008c000600000004001d000800000005001d000007b70000413d0000000000400435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f0000000102200190000000ab0000613d00000008050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000604000029000007b70000813d000000000002041b0000000102200039000000000312004b000007b30000413d0000001f0150008c000008490000a13d0000000000400435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f00000001022001900000000302000029000000ab0000613d000000080300002900000000032301700000002002000039000000000101043b0000000706000029000007d50000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000007cd0000413d0000000804000029000000000343004b000007e30000813d00000008030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000070400002900000000024200190000000002020433000000000232016f000000000021041b000000010100003900000008020000290000000102200210000008560000013d000000400100043d0000090402000041000000000021043500000004021000390000000000520435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000800000001001d22c011c70000040f000000400100043d000700000001001d000000080200002922c00a1c0000040f00000007040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c10001042e000000400100043d0000090403000041000000000031043500000004031000390000000000230435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000400100043d0000090402000041000000000021043500000004021000390000000000320435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000800000001001d22c011c70000040f000000400100043d000700000001001d000000080200002922c00a1c0000040f00000007040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c10001042e000008b901100197000000000161019f000000000010041b000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008ba011001c70000800d020000390000000303000039000008bb0400004122c022b60000040f0000000101200190000000ab0000613d0000000001000019000022c10001042e0000000801000029000000000101004b00000000010000190000084f0000613d0000000201000029000000000101043300000008040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000602000029000000000012041b000008be010000410000000c02000039000000000012041b000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000008bf01000041000022c10001042e000008b103000041000008b10410009c00000000010380190000004001100210000008b10420009c00000000020380190000006002200210000000000112019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c7000080100200003922c022bb0000040f0000000102200190000008790000613d000000000101043b000000000001042d0000000001000019000022c2000104300000000003010019000008b1010000410000000004000414000008b10540009c0000000001044019000000c001100210000000600220021000000000011200190000091601100041000000000203001922c022bb0000040f00000001022001900000088a0000613d000000000101043b000000000001042d0000000001000019000022c2000104300000001f03100039000008b404000041000000000523004b00000000050000190000000005044019000008b406200197000008b403300197000000000763004b000000000400a019000000000363013f000008b40330009c00000000030500190000000003046019000000000303004b000008a50000613d0000000203100367000000000303043b000008bc0430009c000008a50000213d00000020011000390000000004310019000000000224004b000008a50000213d0000000002030019000000000001042d0000000001000019000022c200010430000a0000000000020000000001000416000000000101004b000008be0000c13d0000000001000031000000040210008a000008b403000041000000800420008c00000000040000190000000004034019000008b402200197000000000502004b000000000300a019000008b40220009c00000000020400190000000002036019000000000202004b000008be0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000008c00000a13d0000000001000019000022c2000104300000002403200370000000000303043b000008bc0430009c000008be0000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b000008be0000c13d0000000404300039000000000442034f000000000b04043b000008bc04b0009c000008be0000213d000000240c300039000000000dcb001900000000031d004b000008be0000213d0000004403200370000000000a03043b000008bc03a0009c000008be0000213d0000006403200370000000000303043b000008bc0430009c000008be0000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b000008be0000c13d0000000404300039000000000242034f000000000402043b000008bc0240009c000008be0000213d0000002402300039000a00000002001d0000000002240019000000000112004b000008be0000213d00000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c70000800502000039000900000009001d00060000000a001d00080000000b001d00070000000c001d000500000004001d00040000000d001d22c022bb0000040f00000009030000290000000102200190000008be0000613d000000000101043b000008b5011001970000000002000411000000000112004b000009370000c13d00000000003004350000000101000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000008be0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000009490000613d0000090c0100004100000000001004350000002201000039000000040010043f0000090501000041000022c200010430000000400100043d00000044021000390000091803000041000000000032043500000024021000390000001e0300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c200010430000000400400043d000200000004001d000100000005001d0000000004540436000300000004001d000000000303004b000009610000613d0000000000100435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f0000000102200190000008be0000613d0000000102000029000000000202004b000009fd0000c13d00000000010000190000000305000029000009690000013d000001000100008a000000000112016f000000030500002900000000001504350000000101000029000000000101004b000000200100003900000000010060190000000204000029000300000005001d000000000245004900000000011200190000001f01100039000000200200008a000000000321016f0000000001430019000000000331004b00000000030000190000000103004039000008bc0410009c000009f70000213d0000000103300190000009f70000c13d000000400010043f000000020300002900000000030304330000000804000029000000000334004b0000000003000019000009e50000c13d0000000803000029000000000303004b0000000003000019000009e50000613d00000008030000290000003f03300039000000000223016f0000000002210019000000000312004b00000000030000190000000103004039000008bc0420009c000009f70000213d0000000103300190000009f70000c13d0000000003000031000000400020043f000000080500002900000000025104360000000404000029000000000334004b0000000704000029000008be0000213d0000001f0350018f00000002044003670000000505500272000009a30000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000099b0000413d000000000603004b000009b20000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000080300002900000000033200190000000000030435000008b103000041000008b10420009c000000000203801900000040022002100000000001010433000008b10410009c00000000010380190000006001100210000000000121019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c7000080100200003922c022bb0000040f0000000102200190000008be0000613d000008b1020000410000000304000029000008b10340009c00000000030200190000000003044019000000400330021000000002040000290000000004040433000008b10540009c00000000040280190000006004400210000000000334019f000000000101043b000400000001001d0000000001000414000008b10410009c0000000001028019000000c001100210000000000131019f000008ba011001c7000080100200003922c022bb0000040f0000000102200190000008be0000613d000000000101043b0000000402000029000000000112004b00000000030000190000000103006039000000010130018f22c01eb50000040f00000000030000310000000701000029000000080200002922c011da0000040f000800000001001d00000000030000310000000a01000029000000050200002922c011da0000040f000000000401001900000009010000290000000802000029000000060300002922c01f5a0000040f0000000001000019000022c10001042e0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000000201043b0000000001000019000000030500002900000001060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00000a010000413d000009690000013d00000000030104330000000002320436000000000403004b00000a150000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b00000a0e0000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b00000a2b0000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000a240000413d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d00020000000000020000000001000416000000000101004b00000a490000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b00000a490000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000a4b0000a13d0000000001000019000022c200010430000000000100041a000008b5021001970000000001000411000000000212004b00000a990000c13d00000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000200000003001d000008b10320009c0000000001024019000000c00110021000000917011001c7000080050200003922c022bb0000040f000000010220019000000a490000613d000000000101043b00000919020000410000000000200439000008b501100197000100000001001d0000000400100443000008b1010000410000000002000414000008b10320009c0000000001024019000000c0011002100000091a011001c7000080020200003922c022bb0000040f0000000203000029000000010220019000000a490000613d000000000101043b000000000101004b00000a490000613d000000400500043d0000091b0100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000a910000613d000008b104000041000008b10310009c0000000001048019000008b10350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000905011001c7000200000005001d22c022b60000040f000000020500002900000000030100190000006003300270000108b10030019d000008b1043001970003000000010355000000010220019000000aa70000613d0000091c0150009c00000aa40000413d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000000400050043f0000000001000019000022c10001042e000000400200043d0000001f0340018f000000050440027200000ab40000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000aac0000413d000000000503004b00000ac30000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c20001043000020000000000020000000001000416000000000101004b00000ae40000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b00000ae40000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000ae60000a13d0000000001000019000022c200010430000000000100041a000008b5021001970000000001000411000000000212004b00000b340000c13d00000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000200000003001d000008b10320009c0000000001024019000000c00110021000000917011001c7000080050200003922c022bb0000040f000000010220019000000ae40000613d000000000101043b00000919020000410000000000200439000008b501100197000100000001001d0000000400100443000008b1010000410000000002000414000008b10320009c0000000001024019000000c0011002100000091a011001c7000080020200003922c022bb0000040f0000000203000029000000010220019000000ae40000613d000000000101043b000000000101004b00000ae40000613d000000400500043d0000091d0100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000b2c0000613d000008b104000041000008b10310009c0000000001048019000008b10350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f00000905011001c7000200000005001d22c022b60000040f000000020500002900000000030100190000006003300270000108b10030019d000008b1043001970003000000010355000000010220019000000b420000613d0000091c0150009c00000b3f0000413d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000000400050043f0000000001000019000022c10001042e000000400200043d0000001f0340018f000000050440027200000b4f0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000b470000413d000000000503004b00000b5e0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c2000104300001000000000002000000040100008a0000000001100031000000010200008a000008b403000041000000000221004b00000000020000190000000002032019000008b401100197000008b40410009c0000000003008019000008b401100167000008b40110009c00000000010200190000000001036019000000000101004b00000bbc0000613d000000000100041a000008b5031001970000000001000411000000000213004b00000b950000c13d000100000003001d0000091e01000041000000000010043900000000010004100000000400100443000008b1010000410000000002000414000008b10320009c0000000001024019000000c0011002100000091a011001c70000800a0200003922c022bb0000040f000000010220019000000bbc0000613d000000000301043b00000000010004140000000105000029000000040250008c00000ba00000c13d0000000102000039000000010100003100000bb60000013d000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000008b102000041000008b10410009c0000000001028019000000c001100210000000000203004b00000bad0000c13d000000000205001922c022b60000040f00030000000103550000006001100270000108b10010019d000008b10110019700000bb60000013d000008ba011001c700008009020000390000000004050019000000000500001922c022b60000040f00030000000103550000006001100270000108b10010019d000008b101100197000000000301004b00000bbe0000c13d000000010120019000000bbc0000613d0000000001000019000022c10001042e0000000001000019000022c2000104300000091c0310009c00000bce0000813d0000003f01100039000000200300008a000000000131016f000000400300043d0000000001130019000000000331004b00000000030000190000000103004039000008bc0410009c00000bce0000213d000000010330019000000bce0000c13d000000400010043f00000bb80000013d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000040210008a000008b4030000410000003f0420008c00000000040000190000000004032019000008b402200197000000000502004b0000000003008019000008b40220009c00000000020400190000000002036019000000000202004b00000c040000613d00000002020003670000000403200370000000000403043b0000ffff0340008c00000c040000213d0000002403200370000000000503043b000008bc0350009c00000c040000213d0000002303500039000008b406000041000000000713004b00000000070000190000000007068019000008b408100197000008b403300197000000000983004b0000000006008019000000000383013f000008b40330009c00000000030700190000000003066019000000000303004b00000c040000c13d0000000403500039000000000232034f000000000302043b000008bc0230009c00000c040000213d00000024025000390000000005230019000000000115004b00000c040000213d0000000001040019000000000001042d0000000001000019000022c2000104300000ffff0220018f0000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000c150000613d000000000101043b000000000001042d0000000001000019000022c20001043000040000000000020000000001000416000000000101004b00000c4a0000c13d0000000001000031000000040210008a000008b403000041000000400420008c00000000040000190000000004034019000008b402200197000000000502004b000000000300a019000008b40220009c00000000020400190000000002036019000000000202004b00000c4a0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000c4a0000213d0000002403200370000000000303043b000008bc0430009c00000c4a0000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b00000c4a0000c13d0000000404300039000000000242034f000000000402043b000008bc0240009c00000c4a0000213d00000024053000390000000002540019000000000112004b00000c4c0000a13d0000000001000019000022c200010430000000000100041a000008b5021001970000000001000411000000000212004b00000cca0000c13d00000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c70000800502000039000400000004001d000300000009001d000200000005001d22c022bb0000040f000000010220019000000c4a0000613d000000000101043b00000919020000410000000000200439000008b501100197000100000001001d0000000400100443000008b1010000410000000002000414000008b10320009c0000000001024019000000c0011002100000091a011001c7000080020200003922c022bb0000040f000000020400002900000003030000290000000408000029000000010220019000000c4a0000613d000000000101043b000000000101004b00000c4a0000613d000000400900043d0000002401900039000000400200003900000000002104350000091f01000041000000000019043500000004019000390000000000310435000000440190003900000000008104350000001f0280018f00000064019000390000000203400367000000050480027200000c910000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000c890000413d000000000502004b00000ca00000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c00000cc20000613d0000001f04800039000000200300008a000000000534016f0000092003000041000009200450009c0000000005038019000008b103000041000008b10490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f000008b10410009c0000000001038019000000c001100210000000000115019f0000090f01100041000400000009001d22c022b60000040f000000040900002900000000030100190000006003300270000108b10030019d000008b1043001970003000000010355000000010220019000000cd80000613d0000091c0190009c00000cd50000413d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000000400090043f0000000001000019000022c10001042e000000400200043d0000001f0340018f000000050440027200000ce50000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000cdd0000413d000000000503004b00000cf40000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c200010430000f0000000000020000000003000031000000040130008a000008b402000041000000df0410008c00000000040000190000000004022019000008b401100197000000000501004b0000000002008019000008b40110009c00000000010400190000000001026019000000000101004b00000d160000613d00000002010003670000000402100370000000000c02043b000008b502c0009c00000d160000213d0000002402100370000000000d02043b0000ffff02d0008c00000d180000a13d0000000001000019000022c2000104300000004402100370000000000402043b000008bc0240009c00000d160000213d0000002302400039000008b405000041000000000632004b00000000060000190000000006058019000008b407300197000008b402200197000000000872004b0000000005008019000000000272013f000008b40220009c00000000020600190000000002056019000000000202004b00000d160000c13d0000000402400039000000000221034f000000000202043b000008bc0520009c00000d160000213d00000024064000390000000004620019000000000434004b00000d160000213d0000008404100370000000000f04043b000008b504f0009c00000d160000213d000000a404100370000000000b04043b000008b504b0009c00000d160000213d000000c404100370000000000404043b000008bc0540009c00000d160000213d0000002305400039000008b407000041000000000835004b00000000080000190000000008078019000008b409300197000008b405500197000000000a95004b0000000007008019000000000595013f000008b40550009c00000000050800190000000005076019000000000505004b00000d160000c13d0000000405400039000000000151034f000000000101043b000008bc0510009c00000d160000213d00000024044000390000000005410019000000000335004b00000d160000213d000f0000000d001d0000003f03200039000000200d00008a0000000003d3016f000000400e00043d00000000033e00190000000007e3004b00000000070000190000000107004039000008bc0830009c000011660000213d0000000107700190000011660000c13d000e0000000b001d000000400030043f0000001f0720018f00000000032e04360000000206600367000000050820027200000d750000613d0000000009000019000000050a900210000000000ba30019000000000aa6034f000000000a0a043b0000000000ab04350000000109900039000000000a89004b00000d6d0000413d000000000907004b00000d840000613d0000000508800210000000000686034f00000000088300190000000307700210000000000908043300000000097901cf000000000979022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000696019f0000000000680435000000000223001900000000000204350000003f021000390000000002d2016f000000400700043d0000000002270019000000000372004b00000000030000190000000103004039000008bc0620009c000011660000213d0000000103300190000011660000c13d000c0000000e001d000b0000000d001d0000000003000031000000400020043f000d00000007001d0000000002170436000000000335004b00000d160000213d00090000000f001d000a0000000c001d0000001f0310018f0000000204400367000000050510027200000da80000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000da00000413d000000000603004b00000db70000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000112001900000000000104350000000d0100002900000000010104330000000602000039000000000202041a000000ff0220019000000dd80000c13d000000000101004b00000dec0000c13d00000064010000390000000201100367000000000101043b000800000001001d00000000020004110000000a01000029000700000002001d000000000121004b00000e360000c13d0000000a01000029000000000101004b00000ec50000c13d000000400100043d0000093302000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000210110008c00000e010000213d000000400100043d00000044021000390000092303000041000000000032043500000024021000390000001c0300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c200010430000000400100043d0000006402100039000009240300004100000000003204350000004402100039000009250300004100000000003204350000002402100039000000260300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c0000000001028019000000400110021000000926011001c7000022c2000104300000000d0100002900000022011000390000000001010433000800000001001d0000000f0100002900000000001004350000000201000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b0000000000000435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b000000000101041a000000000201004b00000e730000c13d000000400100043d00000044021000390000092203000041000000000032043500000024021000390000001a0300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c2000104300000000a0100002900000000001004350000000801000039000600000001001d000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b0000000702000029000008b502200197000500000002001d0000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b000000000201041a000000010100008a000400000002001d000000000112004b00000dca0000613d00000008010000290000000402000029000000000112004b00000e880000813d000000400200043d000f00000002001d00000929010000410000000000120435000000040120003900000007020000290000000403000029000000080400002922c01d580000040f0000000f040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c2000104300000000802000029000000000112004b00000dc10000813d000000400100043d00000044021000390000092103000041000000000032043500000024021000390000001b0300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c2000104300000000a01000029000000000101004b00000e960000c13d000000400100043d0000092802000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c2000104300000000501000029000000000101004b00000ea40000c13d000000400100043d0000092702000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c2000104300000000a0100002900000000001004350000000601000029000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b00000005020000290000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000080200002900000004030000290000000002230049000000000101043b000000000021041b0000000a0100002900000000001004350000000701000039000700000001001d000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b000000000201041a0000000801000029000600000002001d000000000112004b00000eee0000813d000000400200043d000f00000002001d0000093201000041000000000012043500000004012000390000000a020000290000000603000029000000080400002922c01d580000040f0000000f040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c2000104300000000a0100002900000000001004350000000701000029000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000a05000029000000010220019000000d160000613d000000080300002900000006020000290000000002320049000000000101043b000000000021041b0000000901000039000000000201041a0000000002320049000000000021041b000000400100043d0000000000310435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000800d0200003900000003030000390000092a04000041000500000003001d000000000600001922c022b60000040f000000010120019000000d160000613d000000400300043d000000400130003900000060020000390000000000210435000000200130003900000000000104350000000c06000029000000000106043300000080023000390000000000120435000700000003001d000000a002300039000000000301004b00000f300000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b00000f290000413d0000000002210019000000000002043500000007040000290000006002400039000000080300002900000000003204350000009f021000390000000b03000029000000000232016f0000000000240435000000bf01100039000000000131016f0000000002410019000000000112004b00000000010000190000000101004039000600000002001d000008bc0220009c000011660000213d0000000101100190000011660000c13d0000000603000029000000400030043f0000004401300039000000a00200003900000000002104350000002401300039000000000200041000000000002104350000092b0100004100000000001304350000000f010000290000ffff0210018f0000000401300039000300000002001d000000000021043500000007060000290000000002060433000000a4013000390000000000210435000000c401300039000000000302004b00000f630000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b00000f5c0000413d000000000312001900000000000304350000001f022000390000000b03000029000000000232016f000000c0032000390000000605000029000000840450003900000000003404350000006403500039000000000003043500000000011200190000000d0400002900000000060404330000000005610436000000000106004b00000f7c0000613d000000000100001900000000025100190000002001100039000000000341001900000000030304330000000000320435000000000261004b00000f750000413d000f00000005001d000400000006001d00000000015600190000000000010435000009090100004100000000001004390000000001000412000200000001001d00000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c7000080050200003922c022bb0000040f000000010220019000000d160000613d000000000201043b0000000001000414000008b502200197000000040320008c00000f9a0000c13d0000000103000031000000400130008c0000004004000039000000000403401900000fd70000013d00000004030000290000001f033000390000000b04000029000000000343016f00000006060000290000000f0400002900000000046400490000000003340019000008b104000041000008b10560009c000000000504001900000000050640190000004005500210000008b10630009c00000000030480190000006003300210000000000353019f000008b10510009c0000000001048019000000c001100210000000000131019f22c022bb0000040f000000060a00002900000000030100190000006003300270000008b103300197000000400430008c000000400400003900000000040340190000001f0540018f000000050640027200000fc30000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00000fbb0000413d000000000705004b00000fd30000613d0000000506600210000000000761034f000000060800002900000000066800190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f0003000000010355000000010220019000000ffd0000613d0000001f01400039000000e00210018f00000006010000290000000001120019000000000221004b00000000020000190000000102004039000008bc0410009c000011660000213d0000000102200190000011660000c13d000000400010043f000000400130008c00000d160000413d000000060100002900000000020104330000000001000416000600000002001d000000000121004b000010230000813d000000400100043d0000004402100039000009310300004100000000003204350000002402100039000000160300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c200010430000000400200043d0000001f0430018f00000005033002720000100a0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000010020000413d000000000504004b000010190000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c200010430000000030100002900000000001004350000000101000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f0000000004056019000400000004001d0000001f0440008c00000000040000190000000104002039000000010440018f000000000443004b000010440000613d0000090c0100004100000000001004350000002201000039000000040010043f0000090501000041000022c200010430000000400400043d000f00000004001d00000004050000290000000004540436000100000004001d000000000303004b0000105c0000613d0000000000100435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d0000000402000029000000000202004b000010b40000c13d00000000010000190000000105000029000010640000013d000001000100008a000000000112016f000000010500002900000000001504350000000401000029000000000101004b000000200100003900000000010060190000000f03000029000000000235004900000000011200190000001f011000390000000b02000029000000000221016f0000000001320019000000000221004b00000000020000190000000102004039000008bc0310009c000011660000213d0000000102200190000011660000c13d000000400010043f0000000f020000290000000002020433000000000202004b0000108b0000c13d00000064021000390000092f0300004100000000003204350000004402100039000009300300004100000000003204350000002402100039000000300300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c0000000001028019000000400110021000000926011001c7000022c20001043000000007010000290000000001010433000400000001001d000000030100002900000000001004350000000501000029000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000000d160000613d000000000101043b000000000101041a000000000201004b00002710010060390000000402000029000000000121004b000010c00000813d000000400100043d00000044021000390000092e0300004100000000003204350000090e02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c200010430000000000201043b0000000001000019000000010500002900000004060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000010b80000413d000010640000013d00000909010000410000000000100439000000020100002900000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c7000080050200003922c022bb0000040f000000010220019000000d160000613d000000000101043b00000919020000410000000000200439000008b501100197000500000001001d0000000400100443000008b1010000410000000002000414000008b10320009c0000000001024019000000c0011002100000091a011001c7000080020200003922c022bb0000040f000000010220019000000d160000613d000000000101043b000000000101004b00000d160000613d000000400400043d0000002401400039000000c00200003900000000002104350000092c010000410000000001140436000200000001001d0000000401400039000000030200002900000000002104350000000f020000290000000002020433000000c4034000390000000000230435000400000004001d000000e403400039000000000402004b000010fd0000613d0000000004000019000000000534001900000020044000390000000f06000029000000000664001900000000060604330000000000650435000000000524004b000010f50000413d000000000432001900000000000404350000001f022000390000000b04000029000000000242016f00000000023200190000000003120049000000040400002900000044044000390000000000340435000000070300002900000000030304330000000002320436000000000403004b000011150000613d0000000004000019000000000524001900000020044000390000000706000029000000000664001900000000060604330000000000650435000000000534004b0000110d0000413d000000000423001900000000000404350000000e04000029000008b5044001970000000406000029000000840560003900000000004504350000000904000029000008b504400197000000640560003900000000004504350000001f033000390000000b04000029000000000343016f00000000032300190000000001130049000000a40260003900000000001204350000000d0100002900000000020104330000000001230436000000000302004b000011350000613d0000000003000019000000000413001900000020033000390000000d05000029000000000553001900000000050504330000000000540435000000000423004b0000112d0000413d0000000003120019000000000003043500000000030004140000000504000029000000040440008c000011610000613d0000001f022000390000000b04000029000000000242016f000000040500002900000000015100490000000001210019000008b102000041000008b10410009c00000000010280190000006001100210000008b10450009c000000000402001900000000040540190000004004400210000000000141019f000008b10430009c0000000002034019000000c002200210000000000112019f0000000602000029000000000202004b000011540000c13d000000050200002922c022b60000040f0000115a0000013d000008ba011001c7000080090200003900000006030000290000000504000029000000000500001922c022b60000040f000300000001035500000000030100190000006003300270000108b10030019d000008b1043001970000000102200190000011a10000613d0000000401000029000008bc0110009c0000000a030000290000000c020000290000116c0000a13d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c2000104300000000404000029000000400040043f000000400100003900000000001404350000000001020433000000400240003900000000001204350000006002400039000008b506300197000000000301004b000011800000613d0000000003000019000000000423001900000020033000390000000c05000029000000000553001900000000050504330000000000540435000000000413004b000011780000413d000000000221001900000000000204350000000802000029000000020300002900000000002304350000007f011000390000000b02000029000000000121016f000008b1020000410000000404000029000008b10340009c000000000302001900000000030440190000004003300210000008b10410009c00000000010280190000006001100210000000000131019f0000000003000414000008b10430009c0000000002034019000000c002200210000000000112019f000008ba011001c70000800d0200003900000003030000390000092d04000041000000030500002922c022b60000040f000000010120019000000d160000613d0000000001000019000022c10001042e000000400200043d0000001f0340018f0000000504400272000011ae0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000011a60000413d000000000503004b000011bd0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c2000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000008bc0310009c000011d40000213d0000000102200190000011d40000c13d000000400010043f000000000001042d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c20001043000000000040100190000091c0120009c0000120d0000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b00000000060000190000000106004039000008bc0750009c0000120d0000213d00000001066001900000120d0000c13d000000400050043f00000000052104360000000006420019000000000336004b000012130000213d0000001f0320018f00000002044003670000000506200272000011fb0000613d000000000700001900000005087002100000000009850019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000011f30000413d000000000703004b0000120a0000613d0000000506600210000000000464034f00000000066500190000000303300210000000000706043300000000073701cf000000000737022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000373019f000000000036043500000000022500190000000000020435000000000001042d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c2000104300000000001000019000022c20001043000000000030100190000001f01300039000008b404000041000000000521004b00000000050000190000000005044019000008b406200197000008b401100197000000000761004b000000000400a019000000000161013f000008b40110009c00000000010500190000000001046019000000000101004b000012600000613d0000000201300367000000000401043b0000091c0140009c0000125a0000813d0000003f01400039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b00000000060000190000000106004039000008bc0750009c0000125a0000213d00000001066001900000125a0000c13d0000002006300039000000400050043f00000000034104360000000005640019000000000225004b000012600000213d0000001f0240018f00000002056003670000000506400272000012480000613d000000000700001900000005087002100000000009830019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000012400000413d000000000702004b000012570000613d0000000506600210000000000565034f00000000066300190000000302200210000000000706043300000000072701cf000000000727022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000272019f000000000026043500000000024300190000000000020435000000000001042d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c2000104300000000001000019000022c200010430000000400400043d0000000003010433000000000503004b0000126e0000613d000000000500001900000000064500190000002005500039000000000715001900000000070704330000000000760435000000000635004b000012670000413d00000000014300190000000000210435000008b101000041000008b10240009c0000000002010019000000000204401900000040022002100000002003300039000008b10430009c00000000030180190000006003300210000000000223019f0000000003000414000008b10430009c0000000001034019000000c001100210000000000121019f000008ba011001c7000080100200003922c022bb0000040f0000000102200190000012860000613d000000000101043b000000000001042d0000000001000019000022c200010430000008bc022001970000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000012970000613d000000000101043b000000000001042d0000000001000019000022c20001043000030000000000020000000001000416000000000101004b000012ec0000c13d0000000001000031000000040210008a000008b403000041000000800420008c00000000040000190000000004034019000008b402200197000000000502004b000000000300a019000008b40220009c00000000020400190000000002036019000000000202004b000012ec0000c13d00000002030003670000000402300370000000000d02043b0000ffff02d0008c000012ec0000213d0000002402300370000000000402043b000008bc0240009c000012ec0000213d0000002302400039000008b405000041000000000612004b00000000060000190000000006058019000008b407100197000008b402200197000000000872004b0000000005008019000000000272013f000008b40220009c00000000020600190000000002056019000000000202004b000012ec0000c13d0000000402400039000000000223034f000000000202043b000008bc0520009c000012ec0000213d00000024064000390000000004620019000000000414004b000012ec0000213d0000004404300370000000000404043b000008bc0440009c000012ec0000213d0000006404300370000000000404043b000008bc0540009c000012ec0000213d0000002305400039000008b407000041000000000815004b00000000080000190000000008078019000008b409100197000008b405500197000000000a95004b0000000007008019000000000595013f000008b40550009c00000000050800190000000005076019000000000505004b000012ec0000c13d0000000405400039000000000353034f000000000303043b000008bc0530009c000012ec0000213d00000024044000390000000005430019000000000115004b000012ee0000a13d0000000001000019000022c20001043000000000010004100000000007000411000000000117004b000013a90000c13d0000003f07200039000000200100008a000000000817016f000000400700043d0000000008870019000000000978004b00000000090000190000000109004039000008bc0a80009c000013be0000213d0000000109900190000013be0000c13d000000400080043f0000001f0820018f0000000007270436000000020660036700000005092002720000130d0000613d000000000a000019000000050ba00210000000000cb70019000000000bb6034f000000000b0b043b0000000000bc0435000000010aa00039000000000b9a004b000013050000413d000000000a08004b0000131c0000613d0000000509900210000000000696034f00000000099700190000000308800210000000000a090433000000000a8a01cf000000000a8a022f000000000606043b0000010008800089000000000686022f00000000068601cf0000000006a6019f0000000000690435000000000227001900000000000204350000003f02300039000000000612016f000000400200043d0000000006620019000000000726004b00000000070000190000000107004039000008bc0860009c000013be0000213d0000000107700190000013be0000c13d0000000007000031000000400060043f0000000006320436000000000575004b000012ec0000213d00030000000d001d0000001f0530018f000000020440036700000005073002720000133c0000613d00000000080000190000000509800210000000000a960019000000000994034f000000000909043b00000000009a04350000000108800039000000000978004b000013340000413d000000000805004b0000134b0000613d0000000507700210000000000474034f00000000077600190000000305500210000000000807043300000000085801cf000000000858022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000484019f00000000004704350000000003360019000000000003043500000000040604330000ffff03400190000013c40000c13d0000000003020433000008b405000041000000600730008c00000000070000190000000007054019000008b408300197000000000908004b000000000500a019000008b40880009c000000000507c019000000000505004b000012ec0000c13d0000ffff0440008c000012ec0000213d00000040042000390000000005040433000008bc0450009c000012ec0000213d000000000436001900000000052500190000003f03500039000008b406000041000000000743004b00000000070000190000000007068019000008b403300197000008b408400197000000000983004b0000000006008019000000000383013f000008b40330009c00000000030700190000000003066019000000000303004b000012ec0000c13d00000020035000390000000003030433000008bc0630009c000013be0000213d0000003f06300039000000000616016f000000400100043d0000000006610019000000000716004b00000000070000190000000107004039000008bc0860009c000013be0000213d0000000107700190000013be0000c13d000000400060043f000000000631043600000040055000390000000007530019000000000447004b000012ec0000213d000000000403004b000013920000613d000000000400001900000000076400190000000008540019000000000808043300000000008704350000002004400039000000000734004b0000138b0000413d000000000336001900000000000304350000000001010433000000130110008c000013d60000213d000000400100043d00000044021000390000093a0300004100000000003204350000002402100039000000150300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c200010430000000400100043d0000006402100039000009340300004100000000003204350000004402100039000009350300004100000000003204350000002402100039000000260300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c0000000001028019000000400110021000000926011001c7000022c2000104300000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400100043d00000044021000390000093603000041000000000032043500000024021000390000001c0300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c20001043000000060012000390000000001010433000200000001001d0000000001060433000009370210009c000013e70000213d000000400100043d0000093902000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c2000104300000000902000039000000000402041a00000002030000290000000003340019000000000443004b000000000400001900000001040040390000000104400190000013f60000613d0000090c0100004100000000001004350000001101000039000000040010043f0000090501000041000022c2000104300000006001100270000000000032041b000100000001001d00000000001004350000000701000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000012ec0000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000800d0200003900000003030000390000092a040000410000000005000019000000010600002922c022b60000040f00000003050000290000000101200190000012ec0000613d000000400100043d00000002020000290000000000210435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000ffff0550018f0000800d0200003900000003030000390000093804000041000000010600002922c022b60000040f0000000101200190000012ec0000613d0000000001000019000022c10001042e0002000000000002000000000301041a000000010430019000000001053002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000010550018f000000000554004b0000146c0000c13d0000000005620436000000000204004b000014610000613d000200000006001d000100000005001d0000000000100435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f0000000102200190000014720000613d0000000206000029000000000206004b000014680000613d000000000201043b000000000100001900000001050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000014590000413d0000146a0000013d000001000100008a000000000113016f0000000000150435000000000106004b000000200100003900000000010060190000146a0000013d000000000100001900000001050000290000000001150019000000000001042d0000090c0100004100000000001004350000002201000039000000040010043f0000090501000041000022c2000104300000000001000019000022c20001043000030000000000020000000001000416000000000101004b000014c30000c13d000000040100008a0000000001100031000008b402000041000000200310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000014c30000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000014c30000213d00000000001004350000000101000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000014c30000613d000000000601043b000000000206041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000014aa0000613d0000090c0100004100000000001004350000002201000039000000040010043f0000090501000041000022c200010430000000400100043d0000000007510436000000000303004b000014c50000613d000300000005001d000100000007001d000200000001001d0000000000600435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f0000000102200190000014c30000613d0000000306000029000000000206004b000014fc0000c13d000000000500001900000002010000290000000107000029000014cb0000013d0000000001000019000022c200010430000001000300008a000000000232016f0000000000270435000000000205004b00000020050000390000000005006019000000000217004900000000025200190000001f03200039000000200200008a000000000223016f0000000004120019000000000224004b00000000020000190000000102004039000008bc0340009c000014ee0000213d0000000102200190000014ee0000c13d000000400040043f0000000002010433000000000302004b000014f40000c13d00000044024000390000093b03000041000000000032043500000024024000390000001d0300003900000000003204350000090e020000410000000000240435000000040240003900000020030000390000000000320435000008b102000041000008b10340009c0000000001020019000000000104401900000040011002100000090f011001c7000022c2000104300000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000130320008c000015080000213d0000090c0100004100000000001004350000001101000039000000040010043f0000090501000041000022c200010430000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000365004b000015000000413d000014cb0000013d000000140220008a22c01ecd0000040f0000000002010019000000400100043d000300000001001d22c00a1c0000040f00000003040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c10001042e00030000000000020000000001000416000000000101004b000015680000c13d000000040100008a0000000001100031000008b402000041000000400310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b000015680000c13d00000002010003670000000402100370000000000202043b000300000002001d000008b50220009c000015680000213d0000002401100370000000000101043b000200000001001d0000000001000411000100000001001d00000000001004350000000801000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000015680000613d000000000101043b00000003020000290000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000015680000613d000000000101043b000000000301041a0000000204000029000000000143004b0000156a0000813d000000400200043d000100000002001d0000093c0100004100000000001204350000000401200039000000030200002922c01d580000040f00000001040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c2000104300000000001000019000022c20001043000000000034300490000000101000029000000030200002922c01de40000040f0000000101000039000000400200043d0000000000120435000008b101000041000008b10320009c0000000001024019000000400110021000000903011001c7000022c10001042e000b0000000000020000000001000416000000000101004b0000158e0000c13d0000000001000031000000040210008a000008b403000041000000400420008c00000000040000190000000004034019000008b402200197000000000502004b000000000300a019000008b40220009c00000000020400190000000002036019000000000202004b0000158e0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000015900000a13d0000000001000019000022c2000104300000002403200370000000000303043b000008bc0430009c0000158e0000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b0000158e0000c13d0000000404300039000000000442034f000000000504043b000008bc0450009c0000158e0000213d00000024083000390000000003850019000000000113004b0000158e0000213d000000400a00043d000000000100041a000008b5031001970000000001000411000000000313004b000016080000c13d000000000182034f0000001f0650018f000000200ba000390000000507500272000015c00000613d0000000002000019000000050320021000000000043b0019000000000331034f000000000303043b00000000003404350000000102200039000000000372004b000015b80000413d000000000206004b000015cf0000613d0000000502700210000000000121034f00000000022b00190000000303600210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f000000000012043500000000015b0019000000000200041000000060022002100000000000210435000000140150003900000000001a04350000005301500039000000200400008a000000000141016f00000000011a00190000000002a1004b00000000020000190000000102004039000008bc0310009c000016020000213d0000000102200190000016020000c13d00050000000b001d00040000000a001d000800000004001d000600000007001d000700000006001d000000400010043f00000000009004350000000101000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c70000801002000039000b00000005001d000a00000009001d000900000008001d22c022bb0000040f00000009050000290000000a040000290000000b0700002900000001022001900000158e0000613d000000000601043b0000000401000029000000000c010433000008bc01c0009c00000007080000290000000609000029000000080a000029000000050b000029000016120000a13d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000009040200004100000000002a04350000000402a000390000000000120435000008b101000041000008b102a0009c00000000010a4019000000400110021000000905011001c7000022c200010430000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000016230000613d0000090c0100004100000000001004350000002201000039000000040010043f0000090501000041000022c200010430000000200130008c0000164c0000413d000100000003001d00020000000c001d000300000006001d0000000000600435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f00000009050000290000000a040000290000000b0700002900000001022001900000158e0000613d000000020c0000290000001f02c0003900000005022002700000002003c0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000007080000290000000609000029000000080a0000290000000306000029000000050b0000290000164c0000813d000000000002041b0000000102200039000000000312004b000016480000413d0000001f01c0008c000016810000a13d00020000000c001d000300000006001d0000000000600435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f00000001022001900000158e0000613d0000000802000029000000020700002900000000032701700000002002000039000000000101043b00000004060000290000166c0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000016640000413d000000000373004b000016770000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000b070000290000000a04000029000000070800002900000006090000290000000905000029000000080a00002900000003060000290000168c0000013d00000000010c004b0000000001000019000016850000613d00000000010b04330000000302c00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102c00210000000000121019f000000000016041b000000400100043d00000020021000390000004003000039000000000032043500000000004104350000004002100039000000000072043500000060021000390000000203500367000000000409004b000016a10000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b000016990000413d000000000408004b000016b00000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f027000390000000002a2016f000008b103000041000008b10410009c00000000010380190000004001100210000008b10420009c00000000020380190000006002200210000000000112019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c70000800d0200003900000001030000390000093d0400004122c022b60000040f00000001012001900000158e0000613d0000000001000019000022c10001042e00050000000000020000000001000416000000000101004b000017010000c13d0000000001000031000000040210008a000008b403000041000000800420008c00000000040000190000000004034019000008b402200197000000000502004b000000000300a019000008b40220009c00000000020400190000000002036019000000000202004b000017010000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000017010000213d0000002403200370000000000a03043b0000ffff03a0008c000017010000213d0000006403200370000000000303043b000008bc0430009c000017010000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b000017010000c13d0000000404300039000000000242034f000000000402043b000008bc0240009c000017010000213d00000024053000390000000002540019000000000112004b000017030000a13d0000000001000019000022c200010430000000000100041a000008b5021001970000000001000411000000000212004b0000178a0000c13d00000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c70000800502000039000500000004001d000400000009001d00030000000a001d000200000005001d22c022bb0000040f0000000102200190000017010000613d000000000101043b00000919020000410000000000200439000008b501100197000100000001001d0000000400100443000008b1010000410000000002000414000008b10320009c0000000001024019000000c0011002100000091a011001c7000080020200003922c022bb0000040f00000002050000290000000304000029000000040300002900000005080000290000000102200190000017010000613d000000000101043b000000000101004b000017010000613d000000400900043d000000240190003900000000004104350000093e0100004100000000001904350000000401900039000000000031043500000044010000390000000201100367000000000101043b00000064029000390000008003000039000000000032043500000044029000390000000000120435000000840190003900000000008104350000001f0280018f000000a40190003900000002035003670000000504800272000017510000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000017490000413d000000000502004b000017600000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c000017820000613d0000001f04800039000000200300008a000000000534016f0000093f030000410000093f0450009c0000000005038019000008b103000041000008b10490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f000008b10410009c0000000001038019000000c001100210000000000115019f0000094001100041000500000009001d22c022b60000040f000000050900002900000000030100190000006003300270000108b10030019d000008b10430019700030000000103550000000102200190000017980000613d0000091c0190009c000017950000413d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000000400090043f0000000001000019000022c10001042e000000400200043d0000001f0340018f0000000504400272000017a50000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000179d0000413d000000000503004b000017b40000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c20001043000110000000000020000000001000031000000040210008a000008b4030000410000007f0420008c00000000040000190000000004032019000008b402200197000000000502004b0000000003008019000008b40220009c00000000020400190000000002036019000000000202004b000017d20000613d00000002020003670000000403200370000000000b03043b0000ffff03b0008c000017d40000a13d0000000001000019000022c2000104300000002403200370000000000303043b000008bc0430009c000017d20000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b000017d20000c13d0000000404300039000000000442034f000000000904043b000008bc0490009c000017d20000213d000000240c300039000000000dc9001900000000031d004b000017d20000213d0000004403200370000000000a03043b000008bc03a0009c000017d20000213d0000006403200370000000000303043b000008bc0430009c000017d20000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b000017d20000c13d0000000404300039000000000242034f000000000402043b000008bc0240009c000017d20000213d0000002402300039001000000002001d0000000002240019001100000002001d000000000112004b000017d20000213d0000000000b004350000000501000039000a00000001001d000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c70000801002000039000e00000009001d000d0000000a001d000b0000000b001d000f0000000c001d000c00000004001d00090000000d001d22c022bb0000040f0000000f030000290000000e070000290000000102200190000017d20000613d000000400200043d0000001f0870018f0000000203300367000000000101043b0000000509700272000018370000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b0000182f0000413d000000000408004b000018460000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000800000009001d000700000008001d000000000372001900000000001304350000094101000041000009410370009c0000000001074019000008b1030000410000000004000414000008b10540009c0000000004038019000008b10520009c0000000002038019000000400220021000000060011002100000090301100041000600000001001d000000000112019f000000c002400210000000000112019f000008ba011001c7000080100200003922c022bb0000040f00000001022001900000000d02000029000017d20000613d000000000101043b0000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000c060000290000000102200190000017d20000613d000000000101043b000000000201041a000000000102004b000018870000c13d000000400100043d0000006402100039000009450300004100000000003204350000004402100039000009460300004100000000003204350000002402100039000000230300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c0000000001028019000000400110021000000926011001c7000022c200010430000500000002001d0000003f01600039000000200500008a000000000251016f000000400100043d000400000002001d0000000002210019000000000312004b00000000030000190000000103004039000008bc0420009c000019c00000213d0000000103300190000019c00000c13d000200000005001d0000000003000031000000400020043f00000000026104360000001104000029000000000334004b000017d20000213d0000001f0360018f000300000003001d000000100300002900000002033003670000000507600272000018ab0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000018a30000413d000100000007001d0000000304000029000000000404004b000018be0000613d00000001040000290000000504400210000000000343034f000000000442001900000003050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c0300002900000000033200190000000000030435000008b103000041000008b10420009c000000000203801900000040022002100000000001010433000008b10410009c00000000010380190000006001100210000000000121019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c7000080100200003922c022bb0000040f0000000102200190000017d20000613d000000000101043b0000000502000029000000000121004b000019c60000c13d0000000b0100002900000000001004350000000a01000029000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f00000001022001900000000f03000029000017d20000613d000000400200043d0000000203300367000000000101043b0000000807000029000000000407004b000018f60000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000018ee0000413d0000000704000029000000000404004b000019080000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e0300002900000000033200190000000000130435000008b101000041000008b10320009c000000000201801900000040022002100000000603000029000000000232019f0000000003000414000008b10430009c0000000001034019000000c001100210000000000121019f000008ba011001c7000080100200003922c022bb0000040f00000001022001900000000d02000029000017d20000613d000000000101043b0000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f00000009070000290000000f060000290000000e050000290000000102200190000017d20000613d000000000101043b000000000001041b0000003f015000390000000202000029000000000221016f000000400100043d0000000002210019000000000312004b00000000030000190000000103004039000008bc0420009c000019c00000213d0000000103300190000019c00000c13d0000000003000031000000400020043f0000000001510436000000000237004b000017d20000213d00000002026003670000000806000029000000000306004b0000194c0000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b000019440000413d0000000703000029000000000303004b0000195e0000613d00000008030000290000000503300210000000000232034f000000000331001900000007040000290000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000e0200002900000000012100190000000000010435000000400100043d00000004020000290000000002210019000000000312004b00000000030000190000000103004039000008bc0420009c0000000c04000029000019c00000213d0000000103300190000019c00000c13d0000000003000031000000400020043f00000000024104360000001104000029000000000334004b000017d20000213d000000100300002900000002033003670000000107000029000000000407004b000019800000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000019780000413d0000000304000029000000000404004b000019920000613d00000001040000290000000504400210000000000343034f000000000442001900000003050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c030000290000000003320019000000000003043500000000040204330000ffff03400190000019db0000c13d0000000003010433000008b405000041000000600630008c00000000060000190000000006054019000008b407300197000000000807004b000000000500a019000008b40770009c000000000506c019000000000505004b000017d20000c13d0000ffff0440008c000017d20000213d00000040041000390000000004040433000008bc0540009c000017d20000213d000000000323001900000000051400190000003f02500039000008b404000041000000000632004b00000000060000190000000006048019000008b402200197000008b407300197000000000872004b0000000004008019000000000272013f000008b40220009c00000000020600190000000002046019000000000202004b000017d20000c13d00000020025000390000000002020433000008bc0420009c0000000206000029000019ed0000a13d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400100043d0000006402100039000009420300004100000000003204350000004402100039000009430300004100000000003204350000002402100039000000210300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c0000000001028019000000400110021000000926011001c7000022c200010430000000400100043d00000044021000390000093603000041000000000032043500000024021000390000001c0300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c2000104300000003f04200039000000000664016f000000400400043d0000000006640019000000000746004b00000000070000190000000107004039000008bc0860009c000019c00000213d0000000107700190000019c00000c13d000000400060043f000000000624043600000040055000390000000007520019000000000337004b000017d20000213d000000000302004b00001a080000613d000000000300001900000000076300190000000008530019000000000808043300000000008704350000002003300039000000000723004b00001a010000413d000000000226001900000000000204350000000002040433000000130220008c00001a1f0000213d000000400100043d00000044021000390000093a0300004100000000003204350000002402100039000000150300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c20001043000000060011000390000000001010433001100000001001d0000000001060433000009370210009c00001a300000213d000000400100043d0000093902000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c2000104300000000902000039000000000402041a00000011030000290000000003340019000000000443004b00000000040000190000000104004039000000010440019000001a3f0000613d0000090c0100004100000000001004350000001101000039000000040010043f0000090501000041000022c2000104300000006001100270000000000032041b001000000001001d00000000001004350000000701000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000017d20000613d000000000101043b000000000201041a00000011030000290000000002320019000000000021041b000000400100043d0000000000310435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000800d0200003900000003030000390000092a040000410000000005000019000000100600002922c022b60000040f0000000b050000290000000101200190000017d20000613d000000400100043d00000011020000290000000000210435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000800d0200003900000003030000390000093804000041000000100600002922c022b60000040f0000000f060000290000000b050000290000000e040000290000000101200190000017d20000613d000000400100043d000000200210003900000080030000390000000000320435000000000051043500000080021000390000000000420435000000a00210003900000002036003670000000804000029000000000404004b00001a960000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b000000000056043500000001044000390000000805000029000000000554004b00001a8d0000413d0000000704000029000000000404004b00001aa80000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000002320019000000000002043500000060021000390000000504000029000000000042043500000040021000390000000d040000290000000000420435000000bf023000390000000203000029000000000232016f000008b103000041000008b10410009c00000000010380190000004001100210000008b10420009c00000000020380190000006002200210000000000112019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c70000800d020000390000000103000039000009440400004122c022b60000040f0000000101200190000017d20000613d0000000001000019000022c10001042e00030000000000020000000001000416000000000101004b00001ae50000c13d000000040100008a0000000001100031000008b402000041000000600310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b00001ae50000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c00001ae50000213d0000002402100370000000000402043b0000ffff0240008c00001ae70000a13d0000000001000019000022c2000104300000004401100370000000000501043b000000000100041a000008b5021001970000000001000411000000000212004b00001b020000c13d000000000105004b00001b0d0000c13d000000400100043d0000004402100039000009490300004100000000003204350000002402100039000000150300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c200010430000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000100000005001d00000000003004350000000201000039000000200010043f000008b1010000410000000002000414000200000003001d000008b10320009c0000000001024019000000c00110021000000910011001c70000801002000039000300000004001d22c022bb0000040f0000000303000029000000010220019000001ae50000613d000000000101043b0000000000300435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f00000003040000290000000203000029000000010220019000001ae50000613d000000000101043b0000000105000029000000000051041b000000400100043d00000040021000390000000000520435000000200210003900000000004204350000000000310435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f00000947011001c70000800d020000390000000103000039000009480400004122c022b60000040f000000010120019000001ae50000613d0000000001000019000022c10001042e00050000000000020000000001000416000000000101004b00001b5f0000c13d0000000001000031000000040210008a000008b403000041000000400420008c00000000040000190000000004034019000008b402200197000000000502004b000000000300a019000008b40220009c00000000020400190000000002036019000000000202004b00001b5f0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00001b610000a13d0000000001000019000022c2000104300000002403200370000000000303043b000008bc0430009c00001b5f0000213d0000002304300039000008b405000041000000000614004b00000000060000190000000006058019000008b407100197000008b404400197000000000874004b0000000005008019000000000474013f000008b40440009c00000000040600190000000004056019000000000404004b00001b5f0000c13d0000000404300039000000000242034f000000000402043b000008bc0240009c00001b5f0000213d00000024053000390000000002540019000000000112004b00001b5f0000213d000000000100041a000008b5021001970000000001000411000000000212004b00001ba70000c13d00000000009004350000000101000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c70000801002000039000500000004001d000400000009001d000300000005001d22c022bb0000040f000000030600002900000004050000290000000509000029000000010220019000001b5f0000613d000000000401043b000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b00001bb20000613d0000090c0100004100000000001004350000002201000039000000040010043f0000090501000041000022c200010430000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000000200130008c00001bd50000413d000100000003001d000200000004001d0000000000400435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f000000030600002900000004050000290000000509000029000000010220019000001b5f0000613d0000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000020400002900001bd50000813d000000000002041b0000000102200039000000000312004b00001bd10000413d0000001f0190008c00001c040000a13d000200000004001d0000000000400435000008b1010000410000000002000414000008b10320009c0000000001024019000000c001100210000008bd011001c7000080100200003922c022bb0000040f000000030600002900000004050000290000000509000029000000010220019000001b5f0000613d000000200200008a0000000003290170000000000101043b000000000200001900001bf40000613d000000000200001900000000046200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b00001bec0000413d000000000393004b00001c000000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000202200367000000000202043b000000000232016f000000000021041b000000010190021000000001011001bf000000020400002900001c100000013d000000000109004b000000000100001900001c090000613d0000000201600367000000000101043b0000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000014041b000000400100043d0000002002100039000000400300003900000000003204350000000000510435000000400210003900000000009204350000001f0390018f00000060021000390000000204600367000000050590027200001c260000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001c1e0000413d000000000603004b00001c350000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f000008b103000041000008b10410009c00000000010380190000004001100210000008b10420009c00000000020380190000006002200210000000000112019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c70000800d0200003900000001030000390000094a0400004122c022b60000040f000000010120019000001b5f0000613d0000000001000019000022c10001042e00010000000000020000000001000416000000000101004b00001d2b0000c13d000000040100008a0000000001100031000008b402000041000000800310008c00000000030000190000000003024019000008b401100197000000000401004b000000000200a019000008b40110009c00000000010300190000000001026019000000000101004b00001d2b0000c13d00000002030003670000000401300370000000000101043b0000ffff0210008c00001d2b0000213d0000002402300370000000000202043b0000ffff0420008c00001d2b0000213d0000004403300370000000000303043b000008b50330009c00001d2b0000213d000000400500043d000000440350003900000000040004100000000000430435000000240350003900000000002304350000094b0200004100000000002504350000000402500039000000000012043500000064010000390000000201100367000000000101043b000100000005001d0000006402500039000000000012043500000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c7000080050200003922c022bb0000040f000000010220019000001d2b0000613d000000000201043b0000000001000414000008b502200197000000040320008c00001c970000c13d00000003010003670000000103000031000000010800002900001caa0000013d000008b103000041000008b10410009c00000000010380190000000105000029000008b10450009c00000000030540190000004003300210000000c001100210000000000131019f00000926011001c722c022bb0000040f000000010800002900000000030100190000006003300270000108b10030019d000008b1033001970003000000010355000000010220019000001d000000613d0000001f0230018f000000050430027200001cb60000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001cae0000413d000000000502004b00001cc50000613d0000000504400210000000000141034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001404350000001f02300039000000200100008a000000000412016f0000000002840019000000000442004b00000000040000190000000104004039000008bc0520009c00001cfa0000213d000000010440019000001cfa0000c13d000008b404000041000000200530008c00000000050000190000000005044019000008b406300197000000000706004b000000000400a019000008b40660009c000000000405c019000000400020043f000000000404004b00001d2b0000c13d00000001040000290000000004040433000008bc0540009c00001d2b0000213d0000000106000029000000000563001900000000036400190000001f04300039000008b406000041000000000754004b00000000070000190000000007068019000008b404400197000008b408500197000000000984004b0000000006008019000000000484013f000008b40440009c00000000040700190000000004066019000000000404004b00001d2b0000c13d0000000043030434000008bc0630009c00001cfa0000213d0000003f06300039000000000116016f0000000001210019000008bc0610009c00001d260000a13d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400200043d0000001f0430018f000000050330027200001d0d0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00001d050000413d000000000504004b00001d1c0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c200010430000000400010043f00000000013204360000000006430019000000000556004b00001d2d0000a13d0000000001000019000022c200010430000000000503004b00001d370000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000635004b00001d300000413d00000000011300190000000000010435000000400100043d000100000001001d22c00a1c0000040f00000001040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c10001042e000008b5022001970000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001d560000613d000000000101043b000000000001042d0000000001000019000022c2000104300000004005100039000000000045043500000020041000390000000000340435000008b50220019700000000002104350000006001100039000000000001042d0006000000000002000600000003001d000008b50310019800001dba0000613d000100000001001d000008b502200198000300000002001d00001dc50000613d000400000003001d00000000003004350000000701000039000500000001001d000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001db80000613d0000000502000029000000000101043b000000000301041a0000000601000029000200000003001d000000000113004b00001dd00000413d00000004010000290000000000100435000000200020043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001db80000613d000000060200002900000002030000290000000002230049000000000101043b000000000021041b000000030100002900000000001004350000000501000029000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001db80000613d000000000101043b000000000201041a00000006030000290000000002320019000000000021041b000000400100043d0000000000310435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000800d0200003900000003030000390000092a040000410000000405000029000000030600002922c022b60000040f000000010120019000001db80000613d000000000001042d0000000001000019000022c200010430000000400100043d0000093302000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000400100043d0000093902000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000400200043d000500000002001d00000932010000410000000000120435000000040120003900000001020000290000000203000029000000060400002922c01d580000040f00000005040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c2000104300003000000000002000008b50110019800001e210000613d000200000003001d000008b502200198000300000002001d00001e2c0000613d000100000001001d00000000001004350000000801000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000102200190000000030400002900001e1f0000613d000000000101043b0000000000400435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f0000000306000029000000010220019000001e1f0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000800d0200003900000003030000390000094c04000041000000010500002922c022b60000040f000000010120019000001e1f0000613d000000000001042d0000000001000019000022c200010430000000400100043d0000092802000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000400100043d0000092702000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c2000104300005000000000002000400000003001d000500000002001d000008b501100197000200000001001d00000000001004350000000801000039000100000001001d000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001e8b0000613d000000000101043b0000000502000029000008b502200197000300000002001d0000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001e8b0000613d0000000502000029000000000101043b000000000301041a000000010100008a000000000113004b00001e8a0000613d0000000401000029000000000113004b00001e8d0000413d0000000202000029000000000102004b00001e9f0000613d000500000003001d0000000301000029000000000101004b00001eaa0000613d00000000002004350000000101000029000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001e8b0000613d000000000101043b00000003020000290000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000010220019000001e8b0000613d000000040200002900000005030000290000000002230049000000000101043b000000000021041b000000000001042d0000000001000019000022c200010430000000400400043d000300000004001d000009290100004100000000001404350000000401400039000000040400002922c01d580000040f00000003040000290000000001410049000008b102000041000008b10310009c0000000001028019000008b10340009c000000000204401900000040022002100000006001100210000000000121019f000022c200010430000000400100043d0000092802000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000400100043d0000092702000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c200010430000000000101004b00001eb80000613d000000000001042d000000400100043d00000064021000390000094d03000041000000000032043500000044021000390000094e0300004100000000003204350000002402100039000000260300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c0000000001028019000000400110021000000926011001c7000022c20001043000000000030100190000001f0100008a000000000112004b00001eec0000813d0000000001030433000000000121004b00001ef20000413d000000400100043d000000000402004b00001ee90000613d0000001f0420019000000000050000190000002005006039000000000645019f00000000041600190000000005240019000000000754004b00001ee40000813d000000000336001900000000360304340000000004640436000000000654004b00001ee00000413d00000000002104350000001f02400039000000200300008a000000000232016f00001eea0000013d0000000002010436000000400020043f000000000001042d0000090c0100004100000000001004350000001101000039000000040010043f0000090501000041000022c200010430000000400100043d00000044021000390000094f0300004100000000003204350000002402100039000000110300003900000000003204350000090e020000410000000000210435000000040210003900000020030000390000000000320435000008b102000041000008b10310009c000000000102801900000040011002100000090f011001c7000022c200010430000000000201001900000950312000d1000000000302004b00001f0b0000613d00000000322100d9000009500220009c00001f0c0000c13d000000000001042d0000090c0100004100000000001004350000001101000039000000040010043f0000090501000041000022c2000104300002000000000002000008b50410019800001f490000613d0000000901000039000000000301041a000200000002001d0000000002230019000000000332004b00000000030000190000000103004039000000010330019000001f540000c13d000000000021041b00000000004004350000000701000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c70000801002000039000100000004001d22c022bb0000040f000000010220019000001f470000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000008b1020000410000000003000414000008b10430009c0000000003028019000008b10410009c00000000010280190000004001100210000000c002300210000000000112019f000008bd011001c70000800d0200003900000003030000390000092a040000410000000005000019000000010600002922c022b60000040f000000010120019000001f470000613d000000000001042d0000000001000019000022c200010430000000400100043d0000093902000041000000000021043500000004021000390000000000020435000008b102000041000008b10310009c0000000001028019000000400110021000000905011001c7000022c2000104300000090c0100004100000000001004350000001101000039000000040010043f0000090501000041000022c2000104300008000000000002000000000b020019000000000a000414000000400500043d0000004402500039000000800600003900000000006204350000002006500039000009510200004100000000002604350000ffff0210018f0000002401500039000500000002001d000000000021043500000000020b0433000000a4015000390000000000210435000000c401500039000000000702004b00001f760000613d0000000007000019000000000817001900000020077000390000000009b7001900000000090904330000000000980435000000000827004b00001f6f0000413d000000000712001900000000000704350000001f02200039000000200700008a000800000007001d000000000272016f000000a00720003900000084085000390000000000780435000008bc073001970000006403500039000400000007001d0000000000730435000000000212001900000000910404340000000002120436000000000301004b00001f900000613d000000000300001900000000072300190000002003300039000000000843001900000000080804330000000000870435000000000713004b00001f890000413d0000000003210019000000000003043500000000025200490000001f011000390000000803000029000000000131016f0000000001120019000000200210008a00000000002504350000001f01100039000000000131016f0000000008510019000000000118004b00000000010000190000000101004039000008bc0280009c000020b70000213d0000000101100190000020b70000c13d000000400080043f000009520180009c000020b70000213d000000c001800039000000400010043f0000009601000039000000000c180436000000000100003100000002011003670000000002000019000000050320021000000000073c0019000000000331034f000000000303043b00000000003704350000000102200039000000050320008c00001fad0000413d0000000002000410000000040120008c000700000004001d00030000000b001d000600000008001d00001fbe0000c13d0000000102000039000000010100003100001fd80000013d000008b101000041000008b10360009c0000000003010019000000000306401900000040033002100000000005050433000008b10650009c00000000050180190000006005500210000000000335019f000008b105a0009c00000000010a4019000000c001100210000000000113019f000200000009001d00010000000c001d22c022b60000040f000000010c000029000000020900002900000006080000290000000704000029000000010220018f00030000000103550000006001100270000108b10010019d000008b101100197000000960310008c0000009605000039000000000501401900000000005804350000000101000031000000000115004b000020b50000213d00000003030003670000001f0150018f000000050850027200001fec0000613d0000000005000019000000050650021000000000076c0019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b00001fe40000413d000000000501004b00001ffb0000613d0000000505800210000000000353034f00000000065c00190000000301100210000000000506043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000160435000000000102004b000020b40000c13d000008b101000041000008b10290009c0000000002010019000000000209401900000040022002100000000003040433000008b10430009c00000000030180190000006003300210000000000223019f0000000003000414000008b10430009c0000000001034019000000c001100210000000000121019f000008ba011001c7000080100200003922c022bb0000040f0000000102200190000020b50000613d000000000101043b000200000001001d000000050100002900000000001004350000000501000039000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f00000003070000290000000102200190000020b50000613d000000400200043d000000000301043b0000000001070433000000000401004b0000202f0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b000020280000413d00000000042100190000000000340435000008b103000041000008b10420009c000000000203801900000040022002100000002001100039000008b10410009c00000000010380190000006001100210000000000121019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c7000080100200003922c022bb0000040f0000000102200190000020b50000613d000000000101043b00000004020000290000000000200435000000200010043f000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000910011001c7000080100200003922c022bb0000040f000000030800002900000007070000290000000102200190000020b50000613d000000000101043b0000000202000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000050200002900000000002104350000000002080433000000a0031000390000000000230435000000c003100039000000000402004b0000206b0000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b000020640000413d000000000432001900000000000404350000004004100039000000040500002900000000005404350000001f022000390000000804000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000403004b000020830000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b0000207c0000413d000000000423001900000000000404350000001f033000390000000804000029000000000343016f0000000002230019000000000312004900000080041000390000000000340435000000060700002900000000030704330000000002320436000000000403004b000020990000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000020920000413d0000001f043000390000000805000029000000000454016f0000000003230019000000000003043500000000021200490000000002420019000008b103000041000008b10420009c00000000020380190000006002200210000008b10410009c00000000010380190000004001100210000000000112019f0000000002000414000008b10420009c0000000002038019000000c002200210000000000112019f000008ba011001c70000800d020000390000000103000039000009530400004122c022b60000040f0000000101200190000020b50000613d000000000001042d0000000001000019000022c2000104300000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c2000104300005000000000002000000400e00043d0000004008e00039000000600900003900000000009804350000008008e0003900000000003804350000002008e0003900000000000804350000001f0930018f000000a008e000390000000202200367000000050a300272000020d40000613d000000000b000019000000050cb00210000000000dc80019000000000cc2034f000000000c0c043b0000000000cd0435000000010bb00039000000000cab004b000020cc0000413d000000000b09004b000020e30000613d000000050aa002100000000002a2034f000000000aa800190000000309900210000000000b0a0433000000000b9b01cf000000000b9b022f000000000202043b0000010009900089000000000292022f00000000029201cf0000000002b2019f00000000002a0435000000000238001900000000000204350000006002e0003900000000004204350000009f02300039000000200b00008a0000000002b2016f00000000002e0435000000bf023000390000000002b2016f000000000ae2001900000000022a004b00000000020000190000000102004039000008bc03a0009c000021a70000213d0000000102200190000021a70000c13d0000004000a0043f0000004402a00039000000a00300003900000000003204350000000002000410000008b5022001970000002403a0003900000000002304350000092b0200004100000000022a0436000300000002001d0000ffff0210018f0000000401a00039000000000021043500000000020e0433000000a403a000390000000000230435000000c403a00039000000000402004b000021110000613d0000000004000019000000000834001900000020044000390000000009e4001900000000090904330000000000980435000000000824004b0000210a0000413d00000000043200190000000000040435000000000405004b0000000004000019000000010400c0390000006405a0003900000000004504350000001f022000390000000002b2016f000000000232001900000000011200490000008403a0003900000000001304350000001f0170018f0000000008720436000000020260036700000005037002720000212c0000613d000000000400001900000005054002100000000006580019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000021240000413d00040000000b001d00050000000a001d000000000401004b0000213d0000613d0000000503300210000000000232034f00000000033800190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f0000000000130435000200000007001d000100000008001d0000000001780019000000000001043500000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c7000080050200003922c022bb0000040f0000000102200190000000050a000029000021ad0000613d000000000201043b0000000001000414000008b502200197000000040320008c00000004040000290000215c0000c13d0000000103000031000000400130008c00000040040000390000000004034019000021960000013d00000002030000290000001f03300039000000000343016f0000000003a3004900000001040000290000000003430019000008b104000041000008b105a0009c000000000504001900000000050a40190000004005500210000008b10630009c00000000030480190000006003300210000000000353019f000008b10510009c0000000001048019000000c001100210000000000131019f22c022bb0000040f000000050a00002900000000030100190000006003300270000008b103300197000000400430008c000000400400003900000000040340190000001f0540018f0000000506400272000021830000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000217b0000413d000000000705004b000021920000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000102200190000021af0000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b00000000020000190000000102004039000008bc0410009c000021a70000213d0000000102200190000021a70000c13d000000400010043f000000400130008c000021ad0000413d00000000010a043300000003020000290000000002020433000000000001042d0000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c2000104300000000001000019000022c200010430000000400200043d0000001f0430018f0000000503300272000021bc0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000021b40000413d000000000504004b000021cb0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c2000104300005000000000002000000400900043d0000004405900039000000a00600003900000000006504350000002405900039000000000600041000000000006504350000092b050000410000000005590436000400000005001d0000ffff0110018f000000040590003900000000001504350000000005020433000000a4019000390000000000510435000000c401900039000000000605004b000021f10000613d000000000600001900000000071600190000002006600039000000000826001900000000080804330000000000870435000000000756004b000021ea0000413d00000000021500190000000000020435000000000203004b0000000002000019000000010200c039000000640390003900000000002304350000001f02500039000000200300008a000300000003001d000000000232016f000500000009001d0000008403900039000000c0052000390000000000530435000000000112001900000000060404330000000005610436000000000106004b0000220d0000613d000000000100001900000000025100190000002001100039000000000341001900000000030304330000000000320435000000000261004b000022060000413d000200000005001d000100000006001d0000000001560019000000000001043500000909010000410000000000100439000000000100041200000004001004430000002400000443000008b1010000410000000002000414000008b10320009c0000000001024019000000c00110021000000917011001c7000080050200003922c022bb0000040f0000000102200190000000050a000029000022770000613d000000000201043b0000000001000414000008b502200197000000040320008c0000222b0000c13d0000000103000031000000400130008c00000040040000390000000004034019000022660000013d00000001030000290000001f033000390000000304000029000000000343016f00000002040000290000000004a400490000000003340019000008b104000041000008b105a0009c000000000504001900000000050a40190000004005500210000008b10630009c00000000030480190000006003300210000000000353019f000008b10510009c0000000001048019000000c001100210000000000131019f22c022bb0000040f000000050a00002900000000030100190000006003300270000008b103300197000000400430008c000000400400003900000000040340190000001f0540018f0000000506400272000022530000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000224b0000413d000000000705004b000022620000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f000300000001035500000001022001900000227f0000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b00000000020000190000000102004039000008bc0410009c000022790000213d0000000102200190000022790000c13d000000400010043f000000400130008c000022770000413d00000000010a043300000004020000290000000002020433000000000001042d0000000001000019000022c2000104300000090c0100004100000000001004350000004101000039000000040010043f0000090501000041000022c200010430000000400200043d0000001f0430018f00000005033002720000228c0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000022840000413d000000000504004b0000229b0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000008b1010000410000000103000031000008b10430009c0000000003018019000008b10420009c000000000102401900000040011002100000006002300210000000000112019f000022c200010430000000000100041a000008b5021001970000000001000411000000000212004b000022ab0000c13d000000000001042d000000400200043d0000090403000041000000000032043500000004032000390000000000130435000008b101000041000008b10320009c0000000001024019000000400110021000000905011001c7000022c200010430000022b9002104210000000102000039000000000001042d0000000002000019000000000001042d000022be002104230000000102000039000000000001042d0000000002000019000000000001042d000022c000000432000022c10001042e000022c200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000009f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4d65726b6c79204f4654000000000000000000000000000000000000000000004d45524b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffff020000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000246139ca800000000020000000000000000000000000000008000000100000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000baf3292c00000000000000000000000000000000000000000000000000000000df2a5b3a00000000000000000000000000000000000000000000000000000000ed629c5b00000000000000000000000000000000000000000000000000000000f5ecbdbb00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000fc0c546a00000000000000000000000000000000000000000000000000000000ed629c5c00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000eab45d9c00000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000d1deba1e00000000000000000000000000000000000000000000000000000000d1deba1f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000ddca3f4300000000000000000000000000000000000000000000000000000000baf3292d00000000000000000000000000000000000000000000000000000000c446183400000000000000000000000000000000000000000000000000000000cbed8b9c0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a6c3d16400000000000000000000000000000000000000000000000000000000a6c3d16500000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000b353aaa70000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009f38369a00000000000000000000000000000000000000000000000000000000a457c2d7000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000009358928b00000000000000000000000000000000000000000000000000000000950c8a7400000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007533d788000000000000000000000000000000000000000000000000000000008cfd8f5c000000000000000000000000000000000000000000000000000000003ccfd60a000000000000000000000000000000000000000000000000000000004c4289990000000000000000000000000000000000000000000000000000000066ad5c89000000000000000000000000000000000000000000000000000000006d413537000000000000000000000000000000000000000000000000000000006d4135380000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000066ad5c8a0000000000000000000000000000000000000000000000000000000069fe0e2d000000000000000000000000000000000000000000000000000000004c42899a0000000000000000000000000000000000000000000000000000000051905636000000000000000000000000000000000000000000000000000000005b8c41e60000000000000000000000000000000000000000000000000000000040c10f180000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042d65a8d0000000000000000000000000000000000000000000000000000000044770515000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003d8b38f6000000000000000000000000000000000000000000000000000000003f1f4fa40000000000000000000000000000000000000000000000000000000010ddb136000000000000000000000000000000000000000000000000000000002a205e3c000000000000000000000000000000000000000000000000000000002a205e3d00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000007e0db160000000000000000000000000000000000000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000df3748300000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000020000000000000000000000000118cdaa70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000001e4fbdf7000000000000000000000000000000000000000000000000000000001584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a45db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db900000000000000000000000000000000000000400000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000004e6f7420656e6f7567682065746865720000000000000000000000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000200000000000000000000000000000000000040000000000000000000000000c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8ffffffff0000000000000000000000000000000000000000000000000000000036372b070000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000014e4ceea00000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000010ddb137000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3942d65a8d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff9b4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20696e76616c69642061646170746572506172616d7300000000656d7074792e00000000000000000000000000000000000000000000000000004f4654436f72653a205f61646170746572506172616d73206d75737420626520000000000000000000000000000000000000008400000000000000000000000094280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000fb8f41b200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef40a7bb1000000000000000000000000000000000000000000000000000000000c58031000000000000000000000000000000000000000000000000000000000039a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d04c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676561207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f74204e6f7420656e6f7567682067617320746f2073656e6400000000000000000000e450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e00000000000000000000000000000000000000000000000000000000204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062654f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000000000000000000000000000000000000000000000ffffffffffffffffffffffffbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bfec442f0500000000000000000000000000000000000000000000000000000000746f416464726573735f6f75744f66426f756e647300000000000000000000004c7a4170703a206e6f20747275737465642070617468207265636f7264000000a60f030c000000000000000000000000000000000000000000000000000000008c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cecbed8b9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff5b00000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffdf64000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737302000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac04c7a4170703a20696e76616c6964206d696e4761730000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dabf5ecbdbc000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f736c6963655f6f75744f66426f756e64730000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a764000066ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c946e1900f3fb9bc3b7f9be5788b3c343bdd0f33c4604ef2ecfb1d3613d31f705

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

0x0000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da

-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (address): 0x9b896c0e23220469C7AE69cb4BbAE391eAa4C8da

-----Encoded View---------------


[ 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.