ETH Price: $2,490.68 (-1.31%)

Token

Girthy Nft (GGyOMNI)
 

Overview

Max Total Supply

0 GGyOMNI

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 GGyOMNI
0xCdf734d1AC2464399eb9eBEC7f4B4f2f81d36fE4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GirthyGregory

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-29
*/

// SPDX-License-Identifier: GPL-3.0

// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol


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,
        uint256 _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: contracts/interfaces/ILayerZeroEndpoint.sol



pragma solidity >=0.5.0;


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,
        uint256 _gasLimit,
        bytes calldata _payload
    ) external;

    // @notice get the inboundNonce of a receiver 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 (uint256 nativeFee, uint256 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,
        uint256 _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: contracts/interfaces/ILayerZeroReceiver.sol



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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: contracts/NonblockingReceiver.sol


pragma solidity ^0.8.6;




abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {

    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint256 payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages)))
        public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;

    event MessageFailed(
        uint16 _srcChainId,
        bytes _srcAddress,
        uint64 _nonce,
        bytes _payload
    );

    function lzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(
            _srcAddress.length == trustedRemoteLookup[_srcChainId].length &&
                keccak256(_srcAddress) ==
                keccak256(trustedRemoteLookup[_srcChainId]),
            "NonblockingReceiver: invalid source sending contract"
        );

        // try-catch all errors/exceptions
        // having failed messages does not block messages passing
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(
                _payload.length,
                keccak256(_payload)
            );
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) public {
        // only internal transaction
        require(
            msg.sender == address(this),
            "NonblockingReceiver: caller must be Bridge."
        );

        // handle incoming message
        _LzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function
    function _LzReceive(
        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 _txParam
    ) internal {
        endpoint.send{value: msg.value}(
            _dstChainId,
            trustedRemoteLookup[_dstChainId],
            _payload,
            _refundAddress,
            _zroPaymentAddress,
            _txParam
        );
    }

    function retryMessage(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) external payable {
        // assert there is message to retry
        FailedMessages storage failedMsg = failedMessages[_srcChainId][
            _srcAddress
        ][_nonce];
        require(
            failedMsg.payloadHash != bytes32(0),
            "NonblockingReceiver: no stored message"
        );
        require(
            _payload.length == failedMsg.payloadLength &&
                keccak256(_payload) == failedMsg.payloadHash,
            "LayerZero: invalid payload"
        );
        // clear the stored message
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        // execute the message. revert if it fails again
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote)
        external
        onlyOwner
    {
        trustedRemoteLookup[_chainId] = _trustedRemote;
    }
}

//    _____  _____  _____  _______  _    _ __     __           ______  _______  _    _ 
//   / ____||_   _||  __ \|__   __|| |  | |\ \   / /          |  ____||__   __|| |  | |
//  | |  __   | |  | |__) |  | |   | |__| | \ \_/ /   ______  | |__      | |   | |__| |
//  | | |_ |  | |  |  _  /   | |   |  __  |  \   /   |______| |  __|     | |   |  __  |
//  | |__| | _| |_ | | \ \   | |   | |  | |   | |             | |____    | |   | |  | |
//   \_____||_____||_|  \_\  |_|   |_|  |_|   |_|             |______|   |_|   |_|  |_|
                                                                                    
								
pragma solidity ^0.8.7;

contract GirthyGregory is Ownable, ERC721, NonblockingReceiver {


    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 60;
    uint256 MAX_MINT_SUPPLY = 10000;

    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint)
        ERC721("Girthy Nft", "GGyOMNI")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
    }


    // mint function
    // you can choose from mint 1 to 9
    // mint is free, but donations are also accepted											
    function mint(uint8 numTokens) external payable {
        require(numTokens < 10, "Girthy Greg: Max 9 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_SUPPLY,
            "Girthy Greg: Mint exceeds supply"
        );
            for (uint256 i = 1; i <= numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }
	
	


    // This function transfers the nft from your address on the
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint256 tokenId) public payable {
        require(
            msg.sender == ownerOf(tokenId),
            "You must own the token to traverse"
        );
        require(
            trustedRemoteLookup[_chainId].length > 0,
            "This chain is currently unavailable for travel"
        );

        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);

        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender, tokenId);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(
            version,
            gasForDestinationLzReceive
        );

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint256 messageFee, ) = endpoint.estimateFees(
            _chainId,
            address(this),
            payload,
            false,
            adapterParams
        );

        require(
            msg.value >= messageFee,
            "Girthy Greg: msg.value not enough to cover messageFee. Send gas for message fees"
        );

        endpoint.send{value: msg.value}(
            _chainId, // destination chainId
            trustedRemoteLookup[_chainId], // destination address of nft contract
            payload, // abi.encoded()'ed bytes
            payable(msg.sender), // refund address
            address(0x0), // 'zroPaymentAddress' unused for this
            adapterParams // txParameters
        );
    }

    function setBaseURI(string memory URI) external onlyOwner {
        baseURI = URI;
    }

    function donate() external payable {
        // thank you
    }

    // This allows the devs to receive kind donations
    function withdraw(uint256 amt) external onlyOwner {
        (bool sent, ) = payable(_owner).call{value: amt}("");
        require(sent, "Girthy Greg: Failed to withdraw Ether");
    }

    // just in case this fixed variable limits us from future integrations
    function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }

    // ------------------
    // Internal Functions
    // ------------------

    function _LzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal override {
        // decode
        (address toAddr, uint256 tokenId) = abi.decode(
            _payload,
            (address, uint256)
        );

        // mint the tokens back into existence on destination chain
        _safeMint(toAddr, tokenId);
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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"}],"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":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint8","name":"numTokens","type":"uint8"}],"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":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052603c600c55612710600d5562055730600e553480156200002357600080fd5b5060405162002d7a38038062002d7a83398101604081905262000046916200022f565b6040518060400160405280600a81526020016911da5c9d1a1e4813999d60b21b815250604051806040016040528060078152602001664747794f4d4e4960c81b815250620000a36200009d6200011860201b60201c565b6200011c565b8151620000b89060019060208501906200016c565b508051620000ce9060029060208401906200016c565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200010f90600b9060208501906200016c565b50505062000373565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200017a9062000320565b90600052602060002090601f0160209004810192826200019e5760008555620001e9565b82601f10620001b957805160ff1916838001178555620001e9565b82800160010185558215620001e9579182015b82811115620001e9578251825591602001919060010190620001cc565b50620001f7929150620001fb565b5090565b5b80821115620001f75760008155600101620001fc565b80516001600160a01b03811681146200022a57600080fd5b919050565b600080604083850312156200024357600080fd5b82516001600160401b03808211156200025b57600080fd5b818501915085601f8301126200027057600080fd5b8151818111156200028557620002856200035d565b604051601f8201601f19908116603f01168101908382118183101715620002b057620002b06200035d565b81604052828152602093508884848701011115620002cd57600080fd5b600091505b82821015620002f15784820184015181830185015290830190620002d2565b82821115620003035760008484830101525b95506200031591505085820162000212565b925050509250929050565b600181811c908216806200033557607f821691505b602082108114156200035757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129f780620003836000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610531578063eb8d72b71461057a578063ed88c68e146101e6578063f2fde38b1461059a57600080fd5b8063b88d4fde146104cb578063c87b56dd146104eb578063cf89fa031461050b578063d1deba1f1461051e57600080fd5b8063943fb872116100d1578063943fb8721461045657806395d89b4114610476578063a22cb4651461048b578063b2bdfa7b146104ab57600080fd5b80637533d788146103ad5780638da5cb5b146103cd5780638ee74912146103eb57600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103375780636ecd23061461035757806370a082311461036a578063715018a61461039857600080fd5b80632e1a7d4d146102d757806342842e0e146102f757806355f804b31461031757600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102775780631c37a8221461029757806323b872dd146102b757600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612372565b6105ba565b005b3480156101f457600080fd5b506102086102033660046121a2565b6107b4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610806565b604051610214919061259c565b34801561024b57600080fd5b5061025f61025a366004612406565b610898565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506101e6610292366004612176565b61092d565b3480156102a357600080fd5b506101e66102b2366004612372565b610a43565b3480156102c357600080fd5b506101e66102d2366004612097565b610ab2565b3480156102e357600080fd5b506101e66102f2366004612406565b610ae3565b34801561030357600080fd5b506101e6610312366004612097565b610bc2565b34801561032357600080fd5b506101e66103323660046121dc565b610bdd565b34801561034357600080fd5b5061025f610352366004612406565b610c1a565b6101e6610365366004612443565b610c91565b34801561037657600080fd5b5061038a610385366004612013565b610d92565b604051908152602001610214565b3480156103a457600080fd5b506101e6610e19565b3480156103b957600080fd5b506102326103c8366004612224565b610e4f565b3480156103d957600080fd5b506000546001600160a01b031661025f565b3480156103f757600080fd5b50610441610406366004612291565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561046257600080fd5b506101e6610471366004612406565b610ee9565b34801561048257600080fd5b50610232610f18565b34801561049757600080fd5b506101e66104a6366004612143565b610f27565b3480156104b757600080fd5b50600a5461025f906001600160a01b031681565b3480156104d757600080fd5b506101e66104e63660046120d8565b610f32565b3480156104f757600080fd5b50610232610506366004612406565b610f64565b6101e66105193660046123ea565b61103f565b6101e661052c3660046122e7565b611329565b34801561053d57600080fd5b5061020861054c36600461205e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506101e661059536600461223f565b6114b6565b3480156105a657600080fd5b506101e66105b5366004612013565b6114fe565b6007546001600160a01b031633146105d157600080fd5b61ffff8416600090815260096020526040902080546105ef906128d4565b9050835114801561062e575061ffff841660009081526009602052604090819020905161061c91906124be565b60405180910390208380519060200120145b61069c5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106c590879087908790879060040161273c565b600060405180830381600087803b1580156106df57600080fd5b505af19250505080156106f0575060015b6107ae576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161073a91906124a2565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906107a590869086908690869061273c565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107e557506001600160e01b03198216635b5e139f60e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610815906128d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906128d4565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b506000908152600560205260409020546001600160a01b031690565b600061093882610c1a565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610693565b336001600160a01b03821614806109c257506109c2813361054c565b610a345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610693565b610a3e8383611599565b505050565b333014610aa65760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610693565b6107ae84848484611607565b610abc3382611634565b610ad85760405162461bcd60e51b815260040161069390612636565b610a3e83838361172b565b6000546001600160a01b03163314610b0d5760405162461bcd60e51b815260040161069390612601565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b5a576040519150601f19603f3d011682016040523d82523d6000602084013e610b5f565b606091505b5050905080610bbe5760405162461bcd60e51b815260206004820152602560248201527f47697274687920477265673a204661696c656420746f2077697468647261772060448201526422ba3432b960d91b6064820152608401610693565b5050565b610a3e83838360405180602001604052806000815250610f32565b6000546001600160a01b03163314610c075760405162461bcd60e51b815260040161069390612601565b8051610bbe90600b906020840190611dfb565b6000818152600360205260408120546001600160a01b0316806108005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610693565b600a8160ff1610610cf45760405162461bcd60e51b815260206004820152602760248201527f47697274687920477265673a204d61782039204e46547320706572207472616e60448201526639b0b1ba34b7b760c91b6064820152608401610693565b600d548160ff16600c54610d089190612865565b1115610d565760405162461bcd60e51b815260206004820181905260248201527f47697274687920477265673a204d696e74206578636565647320737570706c796044820152606401610693565b60015b8160ff168111610bbe57610d8033600c60008154610d769061290f565b91829055506118cb565b80610d8a8161290f565b915050610d59565b60006001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610693565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e435760405162461bcd60e51b815260040161069390612601565b610e4d60006118e5565b565b60096020526000908152604090208054610e68906128d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e94906128d4565b8015610ee15780601f10610eb657610100808354040283529160200191610ee1565b820191906000526020600020905b815481529060010190602001808311610ec457829003601f168201915b505050505081565b6000546001600160a01b03163314610f135760405162461bcd60e51b815260040161069390612601565b600e55565b606060028054610815906128d4565b610bbe338383611935565b610f3c3383611634565b610f585760405162461bcd60e51b815260040161069390612636565b6107ae84848484611a04565b6000818152600360205260409020546060906001600160a01b0316610fe35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610693565b6000610fed611a37565b9050600081511161100d5760405180602001604052806000815250611038565b8061101784611a46565b604051602001611028929190612530565b6040516020818303038152906040525b9392505050565b61104881610c1a565b6001600160a01b0316336001600160a01b0316146110b35760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610693565b61ffff8216600090815260096020526040812080546110d1906128d4565b9050116111375760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610693565b61114081611b43565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906111c3908990309089908790899060a601612687565b604080518083038186803b1580156111da57600080fd5b505afa1580156111ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611212919061241f565b509050803410156112a45760405162461bcd60e51b815260206004820152605060248201527f47697274687920477265673a206d73672e76616c7565206e6f7420656e6f756760448201527f6820746f20636f766572206d6573736167654665652e2053656e64206761732060648201526f666f72206d657373616765206665657360801b608482015260a401610693565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926112ef928c928b913391908b90600401612785565b6000604051808303818588803b15801561130857600080fd5b505af115801561131c573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161134a9087906124a2565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506113d15760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610693565b8054821480156113fb5750806001015483836040516113f1929190612492565b6040518091039020145b6114475760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610693565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061147c90899089908990899089906004016126db565b600060405180830381600087803b15801561149657600080fd5b505af11580156114aa573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146114e05760405162461bcd60e51b815260040161069390612601565b61ffff831660009081526009602052604090206107ae908383611e7f565b6000546001600160a01b031633146115285760405162461bcd60e51b815260040161069390612601565b6001600160a01b03811661158d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b611596816118e5565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115ce82610c1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808280602001905181019061161e9190612030565b9150915061162c82826118cb565b505050505050565b6000818152600360205260408120546001600160a01b03166116ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b60006116b883610c1a565b9050806001600160a01b0316846001600160a01b031614806116f35750836001600160a01b03166116e884610898565b6001600160a01b0316145b8061172357506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661173e82610c1a565b6001600160a01b0316146117a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610693565b6001600160a01b0382166118085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b611813600082611599565b6001600160a01b038316600090815260046020526040812080546001929061183c908490612891565b90915550506001600160a01b038216600090815260046020526040812080546001929061186a908490612865565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bbe828260405180602001604052806000815250611bde565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156119975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610693565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a0f84848461172b565b611a1b84848484611c11565b6107ae5760405162461bcd60e51b8152600401610693906125af565b6060600b8054610815906128d4565b606081611a6a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a945780611a7e8161290f565b9150611a8d9050600a8361287d565b9150611a6e565b6000816001600160401b03811115611aae57611aae612980565b6040519080825280601f01601f191660200182016040528015611ad8576020820181803683370190505b5090505b841561172357611aed600183612891565b9150611afa600a8661292a565b611b05906030612865565b60f81b818381518110611b1a57611b1a61296a565b60200101906001600160f81b031916908160001a905350611b3c600a8661287d565b9450611adc565b6000611b4e82610c1a565b9050611b5b600083611599565b6001600160a01b0381166000908152600460205260408120805460019290611b84908490612891565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611be88383611d1e565b611bf56000848484611c11565b610a3e5760405162461bcd60e51b8152600401610693906125af565b60006001600160a01b0384163b15611d1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5590339089908890889060040161255f565b602060405180830381600087803b158015611c6f57600080fd5b505af1925050508015611c9f575060408051601f3d908101601f19168201909252611c9c918101906121bf565b60015b611cf9573d808015611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b508051611cf15760405162461bcd60e51b8152600401610693906125af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611723565b506001949350505050565b6001600160a01b038216611d745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610693565b6001600160a01b0382166000908152600460205260408120805460019290611d9d908490612865565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e07906128d4565b90600052602060002090601f016020900481019282611e295760008555611e6f565b82601f10611e4257805160ff1916838001178555611e6f565b82800160010185558215611e6f579182015b82811115611e6f578251825591602001919060010190611e54565b50611e7b929150611ef3565b5090565b828054611e8b906128d4565b90600052602060002090601f016020900481019282611ead5760008555611e6f565b82601f10611ec65782800160ff19823516178555611e6f565b82800160010185558215611e6f579182015b82811115611e6f578235825591602001919060010190611ed8565b5b80821115611e7b5760008155600101611ef4565b60006001600160401b0380841115611f2257611f22612980565b604051601f8501601f19908116603f01168101908282118183101715611f4a57611f4a612980565b81604052809350858152868686011115611f6357600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112611f8f57600080fd5b5081356001600160401b03811115611fa657600080fd5b602083019150836020828501011115611fbe57600080fd5b9250929050565b600082601f830112611fd657600080fd5b61103883833560208501611f08565b803561ffff81168114611ff757600080fd5b919050565b80356001600160401b0381168114611ff757600080fd5b60006020828403121561202557600080fd5b813561103881612996565b6000806040838503121561204357600080fd5b825161204e81612996565b6020939093015192949293505050565b6000806040838503121561207157600080fd5b823561207c81612996565b9150602083013561208c81612996565b809150509250929050565b6000806000606084860312156120ac57600080fd5b83356120b781612996565b925060208401356120c781612996565b929592945050506040919091013590565b600080600080608085870312156120ee57600080fd5b84356120f981612996565b9350602085013561210981612996565b92506040850135915060608501356001600160401b0381111561212b57600080fd5b61213787828801611fc5565b91505092959194509250565b6000806040838503121561215657600080fd5b823561216181612996565b91506020830135801515811461208c57600080fd5b6000806040838503121561218957600080fd5b823561219481612996565b946020939093013593505050565b6000602082840312156121b457600080fd5b8135611038816129ab565b6000602082840312156121d157600080fd5b8151611038816129ab565b6000602082840312156121ee57600080fd5b81356001600160401b0381111561220457600080fd5b8201601f8101841361221557600080fd5b61172384823560208401611f08565b60006020828403121561223657600080fd5b61103882611fe5565b60008060006040848603121561225457600080fd5b61225d84611fe5565b925060208401356001600160401b0381111561227857600080fd5b61228486828701611f7d565b9497909650939450505050565b6000806000606084860312156122a657600080fd5b6122af84611fe5565b925060208401356001600160401b038111156122ca57600080fd5b6122d686828701611fc5565b925050604084013590509250925092565b6000806000806000608086880312156122ff57600080fd5b61230886611fe5565b945060208601356001600160401b038082111561232457600080fd5b61233089838a01611fc5565b955061233e60408901611ffc565b9450606088013591508082111561235457600080fd5b5061236188828901611f7d565b969995985093965092949392505050565b6000806000806080858703121561238857600080fd5b61239185611fe5565b935060208501356001600160401b03808211156123ad57600080fd5b6123b988838901611fc5565b94506123c760408801611ffc565b935060608701359150808211156123dd57600080fd5b5061213787828801611fc5565b600080604083850312156123fd57600080fd5b61219483611fe5565b60006020828403121561241857600080fd5b5035919050565b6000806040838503121561243257600080fd5b505080516020909101519092909150565b60006020828403121561245557600080fd5b813560ff8116811461103857600080fd5b6000815180845261247e8160208601602086016128a8565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516124b48184602087016128a8565b9190910192915050565b60008083546124cc816128d4565b600182811680156124e457600181146124f557612524565b60ff19841687528287019450612524565b8760005260208060002060005b8581101561251b5781548a820152908401908201612502565b50505082870194505b50929695505050505050565b600083516125428184602088016128a8565b8351908301906125568183602088016128a8565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259290830184612466565b9695505050505050565b6020815260006110386020830184612466565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126b590830186612466565b841515606084015282810360808401526126cf8185612466565b98975050505050505050565b61ffff861681526080602082015260006126f86080830187612466565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006127596080830186612466565b6001600160401b0385166040840152828103606084015261277a8185612466565b979650505050505050565b61ffff871681526000602060c081840152600088546127a3816128d4565b8060c087015260e06001808416600081146127c557600181146127da57612808565b60ff1985168984015261010089019550612808565b8d6000528660002060005b858110156128005781548b82018601529083019088016127e5565b8a0184019650505b5050505050838103604085015261281f8189612466565b91505061283760608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526128588185612466565b9998505050505050505050565b600082198211156128785761287861293e565b500190565b60008261288c5761288c612954565b500490565b6000828210156128a3576128a361293e565b500390565b60005b838110156128c35781810151838201526020016128ab565b838111156107ae5750506000910152565b600181811c908216806128e857607f821691505b6020821081141561290957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129235761292361293e565b5060010190565b60008261293957612939612954565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461159657600080fd5b6001600160e01b03198116811461159657600080fdfea264697066735822122060baaf99f24566b6f5161dcbd66e291e13cce53c5fb3940436ed924c7686d9ad64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5150347674637a4d476a4c48485a76554355616b41634670517161417a6a47414d5a586f6434564a4e6b33740000000000000000000000

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610531578063eb8d72b71461057a578063ed88c68e146101e6578063f2fde38b1461059a57600080fd5b8063b88d4fde146104cb578063c87b56dd146104eb578063cf89fa031461050b578063d1deba1f1461051e57600080fd5b8063943fb872116100d1578063943fb8721461045657806395d89b4114610476578063a22cb4651461048b578063b2bdfa7b146104ab57600080fd5b80637533d788146103ad5780638da5cb5b146103cd5780638ee74912146103eb57600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103375780636ecd23061461035757806370a082311461036a578063715018a61461039857600080fd5b80632e1a7d4d146102d757806342842e0e146102f757806355f804b31461031757600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102775780631c37a8221461029757806323b872dd146102b757600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612372565b6105ba565b005b3480156101f457600080fd5b506102086102033660046121a2565b6107b4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610806565b604051610214919061259c565b34801561024b57600080fd5b5061025f61025a366004612406565b610898565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506101e6610292366004612176565b61092d565b3480156102a357600080fd5b506101e66102b2366004612372565b610a43565b3480156102c357600080fd5b506101e66102d2366004612097565b610ab2565b3480156102e357600080fd5b506101e66102f2366004612406565b610ae3565b34801561030357600080fd5b506101e6610312366004612097565b610bc2565b34801561032357600080fd5b506101e66103323660046121dc565b610bdd565b34801561034357600080fd5b5061025f610352366004612406565b610c1a565b6101e6610365366004612443565b610c91565b34801561037657600080fd5b5061038a610385366004612013565b610d92565b604051908152602001610214565b3480156103a457600080fd5b506101e6610e19565b3480156103b957600080fd5b506102326103c8366004612224565b610e4f565b3480156103d957600080fd5b506000546001600160a01b031661025f565b3480156103f757600080fd5b50610441610406366004612291565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561046257600080fd5b506101e6610471366004612406565b610ee9565b34801561048257600080fd5b50610232610f18565b34801561049757600080fd5b506101e66104a6366004612143565b610f27565b3480156104b757600080fd5b50600a5461025f906001600160a01b031681565b3480156104d757600080fd5b506101e66104e63660046120d8565b610f32565b3480156104f757600080fd5b50610232610506366004612406565b610f64565b6101e66105193660046123ea565b61103f565b6101e661052c3660046122e7565b611329565b34801561053d57600080fd5b5061020861054c36600461205e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506101e661059536600461223f565b6114b6565b3480156105a657600080fd5b506101e66105b5366004612013565b6114fe565b6007546001600160a01b031633146105d157600080fd5b61ffff8416600090815260096020526040902080546105ef906128d4565b9050835114801561062e575061ffff841660009081526009602052604090819020905161061c91906124be565b60405180910390208380519060200120145b61069c5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106c590879087908790879060040161273c565b600060405180830381600087803b1580156106df57600080fd5b505af19250505080156106f0575060015b6107ae576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161073a91906124a2565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906107a590869086908690869061273c565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107e557506001600160e01b03198216635b5e139f60e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610815906128d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906128d4565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b506000908152600560205260409020546001600160a01b031690565b600061093882610c1a565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610693565b336001600160a01b03821614806109c257506109c2813361054c565b610a345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610693565b610a3e8383611599565b505050565b333014610aa65760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610693565b6107ae84848484611607565b610abc3382611634565b610ad85760405162461bcd60e51b815260040161069390612636565b610a3e83838361172b565b6000546001600160a01b03163314610b0d5760405162461bcd60e51b815260040161069390612601565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b5a576040519150601f19603f3d011682016040523d82523d6000602084013e610b5f565b606091505b5050905080610bbe5760405162461bcd60e51b815260206004820152602560248201527f47697274687920477265673a204661696c656420746f2077697468647261772060448201526422ba3432b960d91b6064820152608401610693565b5050565b610a3e83838360405180602001604052806000815250610f32565b6000546001600160a01b03163314610c075760405162461bcd60e51b815260040161069390612601565b8051610bbe90600b906020840190611dfb565b6000818152600360205260408120546001600160a01b0316806108005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610693565b600a8160ff1610610cf45760405162461bcd60e51b815260206004820152602760248201527f47697274687920477265673a204d61782039204e46547320706572207472616e60448201526639b0b1ba34b7b760c91b6064820152608401610693565b600d548160ff16600c54610d089190612865565b1115610d565760405162461bcd60e51b815260206004820181905260248201527f47697274687920477265673a204d696e74206578636565647320737570706c796044820152606401610693565b60015b8160ff168111610bbe57610d8033600c60008154610d769061290f565b91829055506118cb565b80610d8a8161290f565b915050610d59565b60006001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610693565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e435760405162461bcd60e51b815260040161069390612601565b610e4d60006118e5565b565b60096020526000908152604090208054610e68906128d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e94906128d4565b8015610ee15780601f10610eb657610100808354040283529160200191610ee1565b820191906000526020600020905b815481529060010190602001808311610ec457829003601f168201915b505050505081565b6000546001600160a01b03163314610f135760405162461bcd60e51b815260040161069390612601565b600e55565b606060028054610815906128d4565b610bbe338383611935565b610f3c3383611634565b610f585760405162461bcd60e51b815260040161069390612636565b6107ae84848484611a04565b6000818152600360205260409020546060906001600160a01b0316610fe35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610693565b6000610fed611a37565b9050600081511161100d5760405180602001604052806000815250611038565b8061101784611a46565b604051602001611028929190612530565b6040516020818303038152906040525b9392505050565b61104881610c1a565b6001600160a01b0316336001600160a01b0316146110b35760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610693565b61ffff8216600090815260096020526040812080546110d1906128d4565b9050116111375760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610693565b61114081611b43565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906111c3908990309089908790899060a601612687565b604080518083038186803b1580156111da57600080fd5b505afa1580156111ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611212919061241f565b509050803410156112a45760405162461bcd60e51b815260206004820152605060248201527f47697274687920477265673a206d73672e76616c7565206e6f7420656e6f756760448201527f6820746f20636f766572206d6573736167654665652e2053656e64206761732060648201526f666f72206d657373616765206665657360801b608482015260a401610693565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926112ef928c928b913391908b90600401612785565b6000604051808303818588803b15801561130857600080fd5b505af115801561131c573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161134a9087906124a2565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506113d15760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610693565b8054821480156113fb5750806001015483836040516113f1929190612492565b6040518091039020145b6114475760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610693565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061147c90899089908990899089906004016126db565b600060405180830381600087803b15801561149657600080fd5b505af11580156114aa573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146114e05760405162461bcd60e51b815260040161069390612601565b61ffff831660009081526009602052604090206107ae908383611e7f565b6000546001600160a01b031633146115285760405162461bcd60e51b815260040161069390612601565b6001600160a01b03811661158d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610693565b611596816118e5565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115ce82610c1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808280602001905181019061161e9190612030565b9150915061162c82826118cb565b505050505050565b6000818152600360205260408120546001600160a01b03166116ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610693565b60006116b883610c1a565b9050806001600160a01b0316846001600160a01b031614806116f35750836001600160a01b03166116e884610898565b6001600160a01b0316145b8061172357506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661173e82610c1a565b6001600160a01b0316146117a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610693565b6001600160a01b0382166118085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610693565b611813600082611599565b6001600160a01b038316600090815260046020526040812080546001929061183c908490612891565b90915550506001600160a01b038216600090815260046020526040812080546001929061186a908490612865565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bbe828260405180602001604052806000815250611bde565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156119975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610693565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a0f84848461172b565b611a1b84848484611c11565b6107ae5760405162461bcd60e51b8152600401610693906125af565b6060600b8054610815906128d4565b606081611a6a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a945780611a7e8161290f565b9150611a8d9050600a8361287d565b9150611a6e565b6000816001600160401b03811115611aae57611aae612980565b6040519080825280601f01601f191660200182016040528015611ad8576020820181803683370190505b5090505b841561172357611aed600183612891565b9150611afa600a8661292a565b611b05906030612865565b60f81b818381518110611b1a57611b1a61296a565b60200101906001600160f81b031916908160001a905350611b3c600a8661287d565b9450611adc565b6000611b4e82610c1a565b9050611b5b600083611599565b6001600160a01b0381166000908152600460205260408120805460019290611b84908490612891565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611be88383611d1e565b611bf56000848484611c11565b610a3e5760405162461bcd60e51b8152600401610693906125af565b60006001600160a01b0384163b15611d1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5590339089908890889060040161255f565b602060405180830381600087803b158015611c6f57600080fd5b505af1925050508015611c9f575060408051601f3d908101601f19168201909252611c9c918101906121bf565b60015b611cf9573d808015611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b508051611cf15760405162461bcd60e51b8152600401610693906125af565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611723565b506001949350505050565b6001600160a01b038216611d745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610693565b6001600160a01b0382166000908152600460205260408120805460019290611d9d908490612865565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e07906128d4565b90600052602060002090601f016020900481019282611e295760008555611e6f565b82601f10611e4257805160ff1916838001178555611e6f565b82800160010185558215611e6f579182015b82811115611e6f578251825591602001919060010190611e54565b50611e7b929150611ef3565b5090565b828054611e8b906128d4565b90600052602060002090601f016020900481019282611ead5760008555611e6f565b82601f10611ec65782800160ff19823516178555611e6f565b82800160010185558215611e6f579182015b82811115611e6f578235825591602001919060010190611ed8565b5b80821115611e7b5760008155600101611ef4565b60006001600160401b0380841115611f2257611f22612980565b604051601f8501601f19908116603f01168101908282118183101715611f4a57611f4a612980565b81604052809350858152868686011115611f6357600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112611f8f57600080fd5b5081356001600160401b03811115611fa657600080fd5b602083019150836020828501011115611fbe57600080fd5b9250929050565b600082601f830112611fd657600080fd5b61103883833560208501611f08565b803561ffff81168114611ff757600080fd5b919050565b80356001600160401b0381168114611ff757600080fd5b60006020828403121561202557600080fd5b813561103881612996565b6000806040838503121561204357600080fd5b825161204e81612996565b6020939093015192949293505050565b6000806040838503121561207157600080fd5b823561207c81612996565b9150602083013561208c81612996565b809150509250929050565b6000806000606084860312156120ac57600080fd5b83356120b781612996565b925060208401356120c781612996565b929592945050506040919091013590565b600080600080608085870312156120ee57600080fd5b84356120f981612996565b9350602085013561210981612996565b92506040850135915060608501356001600160401b0381111561212b57600080fd5b61213787828801611fc5565b91505092959194509250565b6000806040838503121561215657600080fd5b823561216181612996565b91506020830135801515811461208c57600080fd5b6000806040838503121561218957600080fd5b823561219481612996565b946020939093013593505050565b6000602082840312156121b457600080fd5b8135611038816129ab565b6000602082840312156121d157600080fd5b8151611038816129ab565b6000602082840312156121ee57600080fd5b81356001600160401b0381111561220457600080fd5b8201601f8101841361221557600080fd5b61172384823560208401611f08565b60006020828403121561223657600080fd5b61103882611fe5565b60008060006040848603121561225457600080fd5b61225d84611fe5565b925060208401356001600160401b0381111561227857600080fd5b61228486828701611f7d565b9497909650939450505050565b6000806000606084860312156122a657600080fd5b6122af84611fe5565b925060208401356001600160401b038111156122ca57600080fd5b6122d686828701611fc5565b925050604084013590509250925092565b6000806000806000608086880312156122ff57600080fd5b61230886611fe5565b945060208601356001600160401b038082111561232457600080fd5b61233089838a01611fc5565b955061233e60408901611ffc565b9450606088013591508082111561235457600080fd5b5061236188828901611f7d565b969995985093965092949392505050565b6000806000806080858703121561238857600080fd5b61239185611fe5565b935060208501356001600160401b03808211156123ad57600080fd5b6123b988838901611fc5565b94506123c760408801611ffc565b935060608701359150808211156123dd57600080fd5b5061213787828801611fc5565b600080604083850312156123fd57600080fd5b61219483611fe5565b60006020828403121561241857600080fd5b5035919050565b6000806040838503121561243257600080fd5b505080516020909101519092909150565b60006020828403121561245557600080fd5b813560ff8116811461103857600080fd5b6000815180845261247e8160208601602086016128a8565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516124b48184602087016128a8565b9190910192915050565b60008083546124cc816128d4565b600182811680156124e457600181146124f557612524565b60ff19841687528287019450612524565b8760005260208060002060005b8581101561251b5781548a820152908401908201612502565b50505082870194505b50929695505050505050565b600083516125428184602088016128a8565b8351908301906125568183602088016128a8565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259290830184612466565b9695505050505050565b6020815260006110386020830184612466565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126b590830186612466565b841515606084015282810360808401526126cf8185612466565b98975050505050505050565b61ffff861681526080602082015260006126f86080830187612466565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006127596080830186612466565b6001600160401b0385166040840152828103606084015261277a8185612466565b979650505050505050565b61ffff871681526000602060c081840152600088546127a3816128d4565b8060c087015260e06001808416600081146127c557600181146127da57612808565b60ff1985168984015261010089019550612808565b8d6000528660002060005b858110156128005781548b82018601529083019088016127e5565b8a0184019650505b5050505050838103604085015261281f8189612466565b91505061283760608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526128588185612466565b9998505050505050505050565b600082198211156128785761287861293e565b500190565b60008261288c5761288c612954565b500490565b6000828210156128a3576128a361293e565b500390565b60005b838110156128c35781810151838201526020016128ab565b838111156107ae5750506000910152565b600181811c908216806128e857607f821691505b6020821081141561290957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129235761292361293e565b5060010190565b60008261293957612939612954565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461159657600080fd5b6001600160e01b03198116811461159657600080fdfea264697066735822122060baaf99f24566b6f5161dcbd66e291e13cce53c5fb3940436ed924c7686d9ad64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5150347674637a4d476a4c48485a76554355616b41634670517161417a6a47414d5a586f6434564a4e6b33740000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmQP4vtczMGjLHHZvUCUakAcFpQqaAzjGAMZXod4VJNk3t
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d5150347674637a4d476a4c48485a76554355616b416346
Arg [4] : 70517161417a6a47414d5a586f6434564a4e6b33740000000000000000000000


Deployed Bytecode Sourcemap

50824:4120:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46854:1098;;;;;;;;;;-1:-1:-1;46854:1098:0;;;;;:::i;:::-;;:::i;:::-;;32909:355;;;;;;;;;;-1:-1:-1;32909:355:0;;;;;:::i;:::-;;:::i;:::-;;;12802:14:1;;12795:22;12777:41;;12765:2;12750:18;32909:355:0;;;;;;;;34078:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35771:308::-;;;;;;;;;;-1:-1:-1;35771:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11821:32:1;;;11803:51;;11791:2;11776:18;35771:308:0;11657:203:1;35294:411:0;;;;;;;;;;-1:-1:-1;35294:411:0;;;;;:::i;:::-;;:::i;47960:435::-;;;;;;;;;;-1:-1:-1;47960:435:0;;;;;:::i;:::-;;:::i;36690:376::-;;;;;;;;;;-1:-1:-1;36690:376:0;;;;;:::i;:::-;;:::i;53920:186::-;;;;;;;;;;-1:-1:-1;53920:186:0;;;;;:::i;:::-;;:::i;37137:185::-;;;;;;;;;;-1:-1:-1;37137:185:0;;;;;:::i;:::-;;:::i;53694:90::-;;;;;;;;;;-1:-1:-1;53694:90:0;;;;;:::i;:::-;;:::i;33685:326::-;;;;;;;;;;-1:-1:-1;33685:326:0;;;;;:::i;:::-;;:::i;51452:386::-;;;;;;:::i;:::-;;:::i;33328:295::-;;;;;;;;;;-1:-1:-1;33328:295:0;;;;;:::i;:::-;;:::i;:::-;;;26953:25:1;;;26941:2;26926:18;33328:295:0;26807:177:1;13187:103:0;;;;;;;;;;;;;:::i;46653:51::-;;;;;;;;;;-1:-1:-1;46653:51:0;;;;;:::i;:::-;;:::i;12536:87::-;;;;;;;;;;-1:-1:-1;12582:7:0;12609:6;-1:-1:-1;;;;;12609:6:0;12536:87;;46544:102;;;;;;;;;;-1:-1:-1;46544:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27163:25:1;;;27219:2;27204:18;;27197:34;;;;27136:18;46544:102:0;26989:248:1;54190:128:0;;;;;;;;;;-1:-1:-1;54190:128:0;;;;;:::i;:::-;;:::i;34247:104::-;;;;;;;;;;;;;:::i;36151:187::-;;;;;;;;;;-1:-1:-1;36151:187:0;;;;;:::i;:::-;;:::i;50898:21::-;;;;;;;;;;-1:-1:-1;50898:21:0;;;;-1:-1:-1;;;;;50898:21:0;;;37393:365;;;;;;;;;;-1:-1:-1;37393:365:0;;;;;:::i;:::-;;:::i;34422:468::-;;;;;;;;;;-1:-1:-1;34422:468:0;;;;;:::i;:::-;;:::i;51985:1701::-;;;;;;:::i;:::-;;:::i;49055:916::-;;;;;;:::i;:::-;;:::i;36409:214::-;;;;;;;;;;-1:-1:-1;36409:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;36580:25:0;;;36551:4;36580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36409:214;49979:181;;;;;;;;;;-1:-1:-1;49979:181:0;;;;;:::i;:::-;;:::i;13445:238::-;;;;;;;;;;-1:-1:-1;13445:238:0;;;;;:::i;:::-;;:::i;46854:1098::-;47059:8;;-1:-1:-1;;;;;47059:8:0;47037:10;:31;47029:40;;;;;;47194:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47172:11;:18;:61;:168;;;;-1:-1:-1;47307:32:0;;;;;;;:19;:32;;;;;;;47297:43;;;;47307:32;47297:43;:::i;:::-;;;;;;;;47264:11;47254:22;;;;;;:86;47172:168;47150:270;;;;-1:-1:-1;;;47150:270:0;;20616:2:1;47150:270:0;;;20598:21:1;20655:2;20635:18;;;20628:30;20694:34;20674:18;;;20667:62;-1:-1:-1;;;20745:18:1;;;20738:50;20805:19;;47150:270:0;;;;;;;;;47548:60;;-1:-1:-1;;;47548:60:0;;:4;;:16;;:60;;47565:11;;47578;;47591:6;;47599:8;;47548:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47544:401;;47755:101;;;;;;;;47788:8;:15;47755:101;;;;47832:8;47822:19;;;;;;47755:101;;;47704:14;:27;47719:11;47704:27;;;;;;;;;;;;;;;47732:11;47704:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47704:48:0;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47876:57;;;;47890:11;;47903;;47745:6;;47924:8;;47876:57;:::i;:::-;;;;;;;;47544:401;46854:1098;;;;:::o;32909:355::-;33056:4;-1:-1:-1;;;;;;33098:40:0;;-1:-1:-1;;;33098:40:0;;:105;;-1:-1:-1;;;;;;;33155:48:0;;-1:-1:-1;;;33155:48:0;33098:105;:158;;;-1:-1:-1;;;;;;;;;;25631:40:0;;;33220:36;33078:178;32909:355;-1:-1:-1;;32909:355:0:o;34078:100::-;34132:13;34165:5;34158:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34078:100;:::o;35771:308::-;35892:7;39394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39394:16:0;35917:110;;;;-1:-1:-1;;;35917:110:0;;19842:2:1;35917:110:0;;;19824:21:1;19881:2;19861:18;;;19854:30;19920:34;19900:18;;;19893:62;-1:-1:-1;;;19971:18:1;;;19964:42;20023:19;;35917:110:0;19640:408:1;35917:110:0;-1:-1:-1;36047:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36047:24:0;;35771:308::o;35294:411::-;35375:13;35391:23;35406:7;35391:14;:23::i;:::-;35375:39;;35439:5;-1:-1:-1;;;;;35433:11:0;:2;-1:-1:-1;;;;;35433:11:0;;;35425:57;;;;-1:-1:-1;;;35425:57:0;;22352:2:1;35425:57:0;;;22334:21:1;22391:2;22371:18;;;22364:30;22430:34;22410:18;;;22403:62;-1:-1:-1;;;22481:18:1;;;22474:31;22522:19;;35425:57:0;22150:397:1;35425:57:0;11315:10;-1:-1:-1;;;;;35517:21:0;;;;:62;;-1:-1:-1;35542:37:0;35559:5;11315:10;36409:214;:::i;35542:37::-;35495:168;;;;-1:-1:-1;;;35495:168:0;;17823:2:1;35495:168:0;;;17805:21:1;17862:2;17842:18;;;17835:30;17901:34;17881:18;;;17874:62;17972:26;17952:18;;;17945:54;18016:19;;35495:168:0;17621:420:1;35495:168:0;35676:21;35685:2;35689:7;35676:8;:21::i;:::-;35364:341;35294:411;;:::o;47960:435::-;48186:10;48208:4;48186:27;48164:120;;;;-1:-1:-1;;;48164:120:0;;19069:2:1;48164:120:0;;;19051:21:1;19108:2;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;-1:-1:-1;;;19198:18:1;;;19191:41;19249:19;;48164:120:0;18867:407:1;48164:120:0;48333:54;48344:11;48357;48370:6;48378:8;48333:10;:54::i;36690:376::-;36899:41;11315:10;36932:7;36899:18;:41::i;:::-;36877:140;;;;-1:-1:-1;;;36877:140:0;;;;;;;:::i;:::-;37030:28;37040:4;37046:2;37050:7;37030:9;:28::i;53920:186::-;12582:7;12609:6;-1:-1:-1;;;;;12609:6:0;11315:10;12756:23;12748:68;;;;-1:-1:-1;;;12748:68:0;;;;;;;:::i;:::-;54005:6:::1;::::0;53997:36:::1;::::0;53982:9:::1;::::0;-1:-1:-1;;;;;54005:6:0::1;::::0;54025:3;;53982:9;53997:36;53982:9;53997:36;54025:3;54005:6;53997:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53981:52;;;54052:4;54044:54;;;::::0;-1:-1:-1;;;54044:54:0;;17009:2:1;54044:54:0::1;::::0;::::1;16991:21:1::0;17048:2;17028:18;;;17021:30;17087:34;17067:18;;;17060:62;-1:-1:-1;;;17138:18:1;;;17131:35;17183:19;;54044:54:0::1;16807:401:1::0;54044:54:0::1;53970:136;53920:186:::0;:::o;37137:185::-;37275:39;37292:4;37298:2;37302:7;37275:39;;;;;;;;;;;;:16;:39::i;53694:90::-;12582:7;12609:6;-1:-1:-1;;;;;12609:6:0;11315:10;12756:23;12748:68;;;;-1:-1:-1;;;12748:68:0;;;;;;;:::i;:::-;53763:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33685:326::-:0;33802:7;33843:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33843:16:0;33892:19;33870:110;;;;-1:-1:-1;;;33870:110:0;;18659:2:1;33870:110:0;;;18641:21:1;18698:2;18678:18;;;18671:30;18737:34;18717:18;;;18710:62;-1:-1:-1;;;18788:18:1;;;18781:39;18837:19;;33870:110:0;18457:405:1;51452:386:0;51531:2;51519:9;:14;;;51511:66;;;;-1:-1:-1;;;51511:66:0;;17415:2:1;51511:66:0;;;17397:21:1;17454:2;17434:18;;;17427:30;17493:34;17473:18;;;17466:62;-1:-1:-1;;;17544:18:1;;;17537:37;17591:19;;51511:66:0;17213:403:1;51511:66:0;51637:15;;51624:9;51610:23;;:11;;:23;;;;:::i;:::-;:42;;51588:124;;;;-1:-1:-1;;;51588:124:0;;14303:2:1;51588:124:0;;;14285:21:1;;;14322:18;;;14315:30;14381:34;14361:18;;;14354:62;14433:18;;51588:124:0;14101:356:1;51588:124:0;51744:1;51727:104;51752:9;51747:14;;:1;:14;51727:104;;51783:36;51793:10;51807:11;;51805:13;;;;;:::i;:::-;;;;;-1:-1:-1;51783:9:0;:36::i;:::-;51763:3;;;;:::i;:::-;;;;51727:104;;33328:295;33445:7;-1:-1:-1;;;;;33492:19:0;;33470:111;;;;-1:-1:-1;;;33470:111:0;;18248:2:1;33470:111:0;;;18230:21:1;18287:2;18267:18;;;18260:30;18326:34;18306:18;;;18299:62;-1:-1:-1;;;18377:18:1;;;18370:40;18427:19;;33470:111:0;18046:406:1;33470:111:0;-1:-1:-1;;;;;;33599:16:0;;;;;:9;:16;;;;;;;33328:295::o;13187:103::-;12582:7;12609:6;-1:-1:-1;;;;;12609:6:0;11315:10;12756:23;12748:68;;;;-1:-1:-1;;;12748:68:0;;;;;;;:::i;:::-;13252:30:::1;13279:1;13252:18;:30::i;:::-;13187:103::o:0;46653:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54190:128::-;12582:7;12609:6;-1:-1:-1;;;;;12609:6:0;11315:10;12756:23;12748:68;;;;-1:-1:-1;;;12748:68:0;;;;;;;:::i;:::-;54275:26:::1;:35:::0;54190:128::o;34247:104::-;34303:13;34336:7;34329:14;;;;;:::i;36151:187::-;36278:52;11315:10;36311:8;36321;36278:18;:52::i;37393:365::-;37582:41;11315:10;37615:7;37582:18;:41::i;:::-;37560:140;;;;-1:-1:-1;;;37560:140:0;;;;;;;:::i;:::-;37711:39;37725:4;37731:2;37735:7;37744:5;37711:13;:39::i;34422:468::-;39370:4;39394:16;;;:7;:16;;;;;;34540:13;;-1:-1:-1;;;;;39394:16:0;34571:113;;;;-1:-1:-1;;;34571:113:0;;21447:2:1;34571:113:0;;;21429:21:1;21486:2;21466:18;;;21459:30;21525:34;21505:18;;;21498:62;-1:-1:-1;;;21576:18:1;;;21569:45;21631:19;;34571:113:0;21245:411:1;34571:113:0;34697:21;34721:10;:8;:10::i;:::-;34697:34;;34786:1;34768:7;34762:21;:25;:120;;;;;;;;;;;;;;;;;34831:7;34840:18;:7;:16;:18::i;:::-;34814:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34762:120;34742:140;34422:468;-1:-1:-1;;;34422:468:0:o;51985:1701::-;52105:16;52113:7;52105;:16::i;:::-;-1:-1:-1;;;;;52091:30:0;:10;-1:-1:-1;;;;;52091:30:0;;52069:114;;;;-1:-1:-1;;;52069:114:0;;16193:2:1;52069:114:0;;;16175:21:1;16232:2;16212:18;;;16205:30;16271:34;16251:18;;;16244:62;-1:-1:-1;;;16322:18:1;;;16315:32;16364:19;;52069:114:0;15991:398:1;52069:114:0;52216:29;;;52255:1;52216:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;52194:136;;;;-1:-1:-1;;;52194:136:0;;15423:2:1;52194:136:0;;;15405:21:1;15462:2;15442:18;;;15435:30;15501:34;15481:18;;;15474:62;-1:-1:-1;;;15552:18:1;;;15545:44;15606:19;;52194:136:0;15221:410:1;52194:136:0;52410:14;52416:7;52410:5;:14::i;:::-;52521:31;;;52532:10;52521:31;;;12532:51:1;12599:18;;;12592:34;;;52521:31:0;;;;;;;;;12505:18:1;;;52521:31:0;;52749:26;;-1:-1:-1;;;52696:90:0;;;11531:51:1;11598:11;;;;11591:27;;;;52696:90:0;;;;;;;;;;11634:12:1;;;52696:90:0;;;;52965:8;;-1:-1:-1;;;52965:153:0;;;52521:31;;52655:1;;-1:-1:-1;;;;;;;52965:8:0;;:21;;:153;;53001:8;;53032:4;;52521:31;;-1:-1:-1;;52696:90:0;;52965:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52940:178;;;53166:10;53153:9;:23;;53131:153;;;;-1:-1:-1;;;53131:153:0;;21863:2:1;53131:153:0;;;21845:21:1;21902:2;21882:18;;;21875:30;21941:34;21921:18;;;21914:62;22012:34;21992:18;;;21985:62;-1:-1:-1;;;22063:19:1;;;22056:47;22120:19;;53131:153:0;21661:484:1;53131:153:0;53297:8;;53389:29;;;53297:8;53389:29;;;:19;:29;;;;;;53297:381;;-1:-1:-1;;;53297:381:0;;-1:-1:-1;;;;;53297:8:0;;;;:13;;53318:9;;53297:381;;53343:8;;53472:7;;53528:10;;53297:8;53638:13;;53297:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52058:1628;;;;51985:1701;;:::o;49055:916::-;49314:27;;;49279:32;49314:27;;;:14;:27;;;;;;:64;;;;49356:11;;49314:64;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49314:72:0;;;;;;;;;;49419:21;;;;49314:72;;-1:-1:-1;49397:123:0;;;;-1:-1:-1;;;49397:123:0;;23172:2:1;49397:123:0;;;23154:21:1;23211:2;23191:18;;;23184:30;23250:34;23230:18;;;23223:62;-1:-1:-1;;;23301:18:1;;;23294:36;23347:19;;49397:123:0;22970:402:1;49397:123:0;49572:23;;49553:42;;:107;;;;;49639:9;:21;;;49626:8;;49616:19;;;;;;;:::i;:::-;;;;;;;;:44;49553:107;49531:183;;;;-1:-1:-1;;;49531:183:0;;15838:2:1;49531:183:0;;;15820:21:1;15877:2;15857:18;;;15850:30;15916:28;15896:18;;;15889:56;15962:18;;49531:183:0;15636:350:1;49531:183:0;49788:1;49762:27;;;49800:21;;;:34;49903:60;;-1:-1:-1;;;49903:60:0;;:4;;:16;;:60;;49920:11;;49933;;49946:6;;49954:8;;;;49903:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49223:748;49055:916;;;;;:::o;49979:181::-;12582:7;12609:6;-1:-1:-1;;;;;12609:6:0;11315:10;12756:23;12748:68;;;;-1:-1:-1;;;12748:68:0;;;;;;;:::i;:::-;50106:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50138:14;;50106:46:::1;:::i;13445:238::-:0;12582:7;12609:6;-1:-1:-1;;;;;12609:6:0;11315:10;12756:23;12748:68;;;;-1:-1:-1;;;12748:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13548:22:0;::::1;13526:110;;;::::0;-1:-1:-1;;;13526:110:0;;13896:2:1;13526:110:0::1;::::0;::::1;13878:21:1::0;13935:2;13915:18;;;13908:30;13974:34;13954:18;;;13947:62;-1:-1:-1;;;14025:18:1;;;14018:36;14071:19;;13526:110:0::1;13694:402:1::0;13526:110:0::1;13647:28;13666:8;13647:18;:28::i;:::-;13445:238:::0;:::o;43359:174::-;43434:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43434:29:0;-1:-1:-1;;;;;43434:29:0;;;;;;;;:24;;43488:23;43434:24;43488:14;:23::i;:::-;-1:-1:-1;;;;;43479:46:0;;;;;;;;;;;43359:174;;:::o;54409:424::-;54605:14;54621:15;54665:8;54640:77;;;;;;;;;;;;:::i;:::-;54604:113;;;;54799:26;54809:6;54817:7;54799:9;:26::i;:::-;54574:259;;54409:424;;;;:::o;39599:452::-;39728:4;39394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39394:16:0;39750:110;;;;-1:-1:-1;;;39750:110:0;;16596:2:1;39750:110:0;;;16578:21:1;16635:2;16615:18;;;16608:30;16674:34;16654:18;;;16647:62;-1:-1:-1;;;16725:18:1;;;16718:42;16777:19;;39750:110:0;16394:408:1;39750:110:0;39871:13;39887:23;39902:7;39887:14;:23::i;:::-;39871:39;;39940:5;-1:-1:-1;;;;;39929:16:0;:7;-1:-1:-1;;;;;39929:16:0;;:64;;;;39986:7;-1:-1:-1;;;;;39962:31:0;:20;39974:7;39962:11;:20::i;:::-;-1:-1:-1;;;;;39962:31:0;;39929:64;:113;;;-1:-1:-1;;;;;;36580:25:0;;;36551:4;36580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40010:32;39921:122;39599:452;-1:-1:-1;;;;39599:452:0:o;42626:615::-;42799:4;-1:-1:-1;;;;;42772:31:0;:23;42787:7;42772:14;:23::i;:::-;-1:-1:-1;;;;;42772:31:0;;42750:122;;;;-1:-1:-1;;;42750:122:0;;21037:2:1;42750:122:0;;;21019:21:1;21076:2;21056:18;;;21049:30;21115:34;21095:18;;;21088:62;-1:-1:-1;;;21166:18:1;;;21159:39;21215:19;;42750:122:0;20835:405:1;42750:122:0;-1:-1:-1;;;;;42891:16:0;;42883:65;;;;-1:-1:-1;;;42883:65:0;;14664:2:1;42883:65:0;;;14646:21:1;14703:2;14683:18;;;14676:30;14742:34;14722:18;;;14715:62;-1:-1:-1;;;14793:18:1;;;14786:34;14837:19;;42883:65:0;14462:400:1;42883:65:0;43065:29;43082:1;43086:7;43065:8;:29::i;:::-;-1:-1:-1;;;;;43107:15:0;;;;;;:9;:15;;;;;:20;;43126:1;;43107:15;:20;;43126:1;;43107:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43138:13:0;;;;;;:9;:13;;;;;:18;;43155:1;;43138:13;:18;;43155:1;;43138:18;:::i;:::-;;;;-1:-1:-1;;43167:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43167:21:0;-1:-1:-1;;;;;43167:21:0;;;;;;;;;43206:27;;43167:16;;43206:27;;;;;;;42626:615;;;:::o;40393:110::-;40469:26;40479:2;40483:7;40469:26;;;;;;;;;;;;:9;:26::i;13843:191::-;13917:16;13936:6;;-1:-1:-1;;;;;13953:17:0;;;-1:-1:-1;;;;;;13953:17:0;;;;;;13986:40;;13936:6;;;;;;;13986:40;;13917:16;13986:40;13906:128;13843:191;:::o;43675:315::-;43830:8;-1:-1:-1;;;;;43821:17:0;:5;-1:-1:-1;;;;;43821:17:0;;;43813:55;;;;-1:-1:-1;;;43813:55:0;;15069:2:1;43813:55:0;;;15051:21:1;15108:2;15088:18;;;15081:30;15147:27;15127:18;;;15120:55;15192:18;;43813:55:0;14867:349:1;43813:55:0;-1:-1:-1;;;;;43879:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43879:46:0;;;;;;;;;;43941:41;;12777::1;;;43941::0;;12750:18:1;43941:41:0;;;;;;;43675:315;;;:::o;38640:352::-;38797:28;38807:4;38813:2;38817:7;38797:9;:28::i;:::-;38858:48;38881:4;38887:2;38891:7;38900:5;38858:22;:48::i;:::-;38836:148;;;;-1:-1:-1;;;38836:148:0;;;;;;;:::i;54841:100::-;54893:13;54926:7;54919:14;;;;;:::i;8765:723::-;8821:13;9042:10;9038:53;;-1:-1:-1;;9069:10:0;;;;;;;;;;;;-1:-1:-1;;;9069:10:0;;;;;8765:723::o;9038:53::-;9116:5;9101:12;9157:78;9164:9;;9157:78;;9190:8;;;;:::i;:::-;;-1:-1:-1;9213:10:0;;-1:-1:-1;9221:2:0;9213:10;;:::i;:::-;;;9157:78;;;9245:19;9277:6;-1:-1:-1;;;;;9267:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9267:17:0;;9245:39;;9295:154;9302:10;;9295:154;;9329:11;9339:1;9329:11;;:::i;:::-;;-1:-1:-1;9398:10:0;9406:2;9398:5;:10;:::i;:::-;9385:24;;:2;:24;:::i;:::-;9372:39;;9355:6;9362;9355:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9355:56:0;;;;;;;;-1:-1:-1;9426:11:0;9435:2;9426:11;;:::i;:::-;;;9295:154;;41929:360;41989:13;42005:23;42020:7;42005:14;:23::i;:::-;41989:39;;42130:29;42147:1;42151:7;42130:8;:29::i;:::-;-1:-1:-1;;;;;42172:16:0;;;;;;:9;:16;;;;;:21;;42192:1;;42172:16;:21;;42192:1;;42172:21;:::i;:::-;;;;-1:-1:-1;;42211:16:0;;;;:7;:16;;;;;;42204:23;;-1:-1:-1;;;;;;42204:23:0;;;42245:36;42219:7;;42211:16;-1:-1:-1;;;;;42245:36:0;;;;;42211:16;;42245:36;41978:311;41929:360;:::o;40730:321::-;40860:18;40866:2;40870:7;40860:5;:18::i;:::-;40911:54;40942:1;40946:2;40950:7;40959:5;40911:22;:54::i;:::-;40889:154;;;;-1:-1:-1;;;40889:154:0;;;;;;;:::i;44555:980::-;44710:4;-1:-1:-1;;;;;44731:13:0;;15184:20;15232:8;44727:801;;44784:175;;-1:-1:-1;;;44784:175:0;;-1:-1:-1;;;;;44784:36:0;;;;;:175;;11315:10;;44878:4;;44905:7;;44935:5;;44784:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44784:175:0;;;;;;;;-1:-1:-1;;44784:175:0;;;;;;;;;;;;:::i;:::-;;;44763:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45142:13:0;;45138:320;;45185:108;;-1:-1:-1;;;45185:108:0;;;;;;;:::i;45138:320::-;45408:6;45402:13;45393:6;45389:2;45385:15;45378:38;44763:710;-1:-1:-1;;;;;;45023:51:0;-1:-1:-1;;;45023:51:0;;-1:-1:-1;45016:58:0;;44727:801;-1:-1:-1;45512:4:0;44555:980;;;;;;:::o;41387:313::-;-1:-1:-1;;;;;41467:16:0;;41459:61;;;;-1:-1:-1;;;41459:61:0;;19481:2:1;41459:61:0;;;19463:21:1;;;19500:18;;;19493:30;19559:34;19539:18;;;19532:62;19611:18;;41459:61:0;19279:356:1;41459:61:0;-1:-1:-1;;;;;41591:13:0;;;;;;:9;:13;;;;;:18;;41608:1;;41591:13;:18;;41608:1;;41591:18;:::i;:::-;;;;-1:-1:-1;;41620:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41620:21:0;-1:-1:-1;;;;;41620:21:0;;;;;;;;41659:33;;41620:16;;;41659:33;;41620:16;;41659:33;41387:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:347::-;701:8;711:6;765:3;758:4;750:6;746:17;742:27;732:55;;783:1;780;773:12;732:55;-1:-1:-1;806:20:1;;-1:-1:-1;;;;;838:30:1;;835:50;;;881:1;878;871:12;835:50;918:4;910:6;906:17;894:29;;970:3;963:4;954:6;946;942:19;938:30;935:39;932:59;;;987:1;984;977:12;932:59;650:347;;;;;:::o;1002:220::-;1044:5;1097:3;1090:4;1082:6;1078:17;1074:27;1064:55;;1115:1;1112;1105:12;1064:55;1137:79;1212:3;1203:6;1190:20;1183:4;1175:6;1171:17;1137:79;:::i;1227:159::-;1294:20;;1354:6;1343:18;;1333:29;;1323:57;;1376:1;1373;1366:12;1323:57;1227:159;;;:::o;1391:171::-;1458:20;;-1:-1:-1;;;;;1507:30:1;;1497:41;;1487:69;;1552:1;1549;1542:12;1567:247;1626:6;1679:2;1667:9;1658:7;1654:23;1650:32;1647:52;;;1695:1;1692;1685:12;1647:52;1734:9;1721:23;1753:31;1778:5;1753:31;:::i;1819:320::-;1906:6;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2015:9;2009:16;2034:31;2059:5;2034:31;:::i;:::-;2129:2;2114:18;;;;2108:25;2084:5;;2108:25;;-1:-1:-1;;;1819:320:1:o;2144:388::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2328:9;2315:23;2347:31;2372:5;2347:31;:::i;:::-;2397:5;-1:-1:-1;2454:2:1;2439:18;;2426:32;2467:33;2426:32;2467:33;:::i;:::-;2519:7;2509:17;;;2144:388;;;;;:::o;2537:456::-;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2738:9;2725:23;2757:31;2782:5;2757:31;:::i;:::-;2807:5;-1:-1:-1;2864:2:1;2849:18;;2836:32;2877:33;2836:32;2877:33;:::i;:::-;2537:456;;2929:7;;-1:-1:-1;;;2983:2:1;2968:18;;;;2955:32;;2537:456::o;2998:665::-;3093:6;3101;3109;3117;3170:3;3158:9;3149:7;3145:23;3141:33;3138:53;;;3187:1;3184;3177:12;3138:53;3226:9;3213:23;3245:31;3270:5;3245:31;:::i;:::-;3295:5;-1:-1:-1;3352:2:1;3337:18;;3324:32;3365:33;3324:32;3365:33;:::i;:::-;3417:7;-1:-1:-1;3471:2:1;3456:18;;3443:32;;-1:-1:-1;3526:2:1;3511:18;;3498:32;-1:-1:-1;;;;;3542:30:1;;3539:50;;;3585:1;3582;3575:12;3539:50;3608:49;3649:7;3640:6;3629:9;3625:22;3608:49;:::i;:::-;3598:59;;;2998:665;;;;;;;:::o;3668:416::-;3733:6;3741;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;3849:9;3836:23;3868:31;3893:5;3868:31;:::i;:::-;3918:5;-1:-1:-1;3975:2:1;3960:18;;3947:32;4017:15;;4010:23;3998:36;;3988:64;;4048:1;4045;4038:12;4089:315;4157:6;4165;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4273:9;4260:23;4292:31;4317:5;4292:31;:::i;:::-;4342:5;4394:2;4379:18;;;;4366:32;;-1:-1:-1;;;4089:315:1:o;4409:245::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4575:9;4562:23;4594:30;4618:5;4594:30;:::i;4659:249::-;4728:6;4781:2;4769:9;4760:7;4756:23;4752:32;4749:52;;;4797:1;4794;4787:12;4749:52;4829:9;4823:16;4848:30;4872:5;4848:30;:::i;4913:450::-;4982:6;5035:2;5023:9;5014:7;5010:23;5006:32;5003:52;;;5051:1;5048;5041:12;5003:52;5091:9;5078:23;-1:-1:-1;;;;;5116:6:1;5113:30;5110:50;;;5156:1;5153;5146:12;5110:50;5179:22;;5232:4;5224:13;;5220:27;-1:-1:-1;5210:55:1;;5261:1;5258;5251:12;5210:55;5284:73;5349:7;5344:2;5331:16;5326:2;5322;5318:11;5284:73;:::i;5368:184::-;5426:6;5479:2;5467:9;5458:7;5454:23;5450:32;5447:52;;;5495:1;5492;5485:12;5447:52;5518:28;5536:9;5518:28;:::i;5557:481::-;5635:6;5643;5651;5704:2;5692:9;5683:7;5679:23;5675:32;5672:52;;;5720:1;5717;5710:12;5672:52;5743:28;5761:9;5743:28;:::i;:::-;5733:38;;5822:2;5811:9;5807:18;5794:32;-1:-1:-1;;;;;5841:6:1;5838:30;5835:50;;;5881:1;5878;5871:12;5835:50;5920:58;5970:7;5961:6;5950:9;5946:22;5920:58;:::i;:::-;5557:481;;5997:8;;-1:-1:-1;5894:84:1;;-1:-1:-1;;;;5557:481:1:o;6043:460::-;6128:6;6136;6144;6197:2;6185:9;6176:7;6172:23;6168:32;6165:52;;;6213:1;6210;6203:12;6165:52;6236:28;6254:9;6236:28;:::i;:::-;6226:38;;6315:2;6304:9;6300:18;6287:32;-1:-1:-1;;;;;6334:6:1;6331:30;6328:50;;;6374:1;6371;6364:12;6328:50;6397:49;6438:7;6429:6;6418:9;6414:22;6397:49;:::i;:::-;6387:59;;;6493:2;6482:9;6478:18;6465:32;6455:42;;6043:460;;;;;:::o;6508:773::-;6612:6;6620;6628;6636;6644;6697:3;6685:9;6676:7;6672:23;6668:33;6665:53;;;6714:1;6711;6704:12;6665:53;6737:28;6755:9;6737:28;:::i;:::-;6727:38;;6816:2;6805:9;6801:18;6788:32;-1:-1:-1;;;;;6880:2:1;6872:6;6869:14;6866:34;;;6896:1;6893;6886:12;6866:34;6919:49;6960:7;6951:6;6940:9;6936:22;6919:49;:::i;:::-;6909:59;;6987:37;7020:2;7009:9;7005:18;6987:37;:::i;:::-;6977:47;;7077:2;7066:9;7062:18;7049:32;7033:48;;7106:2;7096:8;7093:16;7090:36;;;7122:1;7119;7112:12;7090:36;;7161:60;7213:7;7202:8;7191:9;7187:24;7161:60;:::i;:::-;6508:773;;;;-1:-1:-1;6508:773:1;;-1:-1:-1;7240:8:1;;7135:86;6508:773;-1:-1:-1;;;6508:773:1:o;7286:684::-;7388:6;7396;7404;7412;7465:3;7453:9;7444:7;7440:23;7436:33;7433:53;;;7482:1;7479;7472:12;7433:53;7505:28;7523:9;7505:28;:::i;:::-;7495:38;;7584:2;7573:9;7569:18;7556:32;-1:-1:-1;;;;;7648:2:1;7640:6;7637:14;7634:34;;;7664:1;7661;7654:12;7634:34;7687:49;7728:7;7719:6;7708:9;7704:22;7687:49;:::i;:::-;7677:59;;7755:37;7788:2;7777:9;7773:18;7755:37;:::i;:::-;7745:47;;7845:2;7834:9;7830:18;7817:32;7801:48;;7874:2;7864:8;7861:16;7858:36;;;7890:1;7887;7880:12;7858:36;;7913:51;7956:7;7945:8;7934:9;7930:24;7913:51;:::i;7975:252::-;8042:6;8050;8103:2;8091:9;8082:7;8078:23;8074:32;8071:52;;;8119:1;8116;8109:12;8071:52;8142:28;8160:9;8142:28;:::i;8232:180::-;8291:6;8344:2;8332:9;8323:7;8319:23;8315:32;8312:52;;;8360:1;8357;8350:12;8312:52;-1:-1:-1;8383:23:1;;8232:180;-1:-1:-1;8232:180:1:o;8417:245::-;8496:6;8504;8557:2;8545:9;8536:7;8532:23;8528:32;8525:52;;;8573:1;8570;8563:12;8525:52;-1:-1:-1;;8596:16:1;;8652:2;8637:18;;;8631:25;8596:16;;8631:25;;-1:-1:-1;8417:245:1:o;8667:269::-;8724:6;8777:2;8765:9;8756:7;8752:23;8748:32;8745:52;;;8793:1;8790;8783:12;8745:52;8832:9;8819:23;8882:4;8875:5;8871:16;8864:5;8861:27;8851:55;;8902:1;8899;8892:12;9058:257;9099:3;9137:5;9131:12;9164:6;9159:3;9152:19;9180:63;9236:6;9229:4;9224:3;9220:14;9213:4;9206:5;9202:16;9180:63;:::i;:::-;9297:2;9276:15;-1:-1:-1;;9272:29:1;9263:39;;;;9304:4;9259:50;;9058:257;-1:-1:-1;;9058:257:1:o;9320:271::-;9503:6;9495;9490:3;9477:33;9459:3;9529:16;;9554:13;;;9529:16;9320:271;-1:-1:-1;9320:271:1:o;9596:274::-;9725:3;9763:6;9757:13;9779:53;9825:6;9820:3;9813:4;9805:6;9801:17;9779:53;:::i;:::-;9848:16;;;;;9596:274;-1:-1:-1;;9596:274:1:o;9875:811::-;10001:3;10030:1;10063:6;10057:13;10093:36;10119:9;10093:36;:::i;:::-;10148:1;10165:18;;;10192:104;;;;10310:1;10305:356;;;;10158:503;;10192:104;-1:-1:-1;;10225:24:1;;10213:37;;10270:16;;;;-1:-1:-1;10192:104:1;;10305:356;10336:6;10333:1;10326:17;10366:4;10411:2;10408:1;10398:16;10436:1;10450:165;10464:6;10461:1;10458:13;10450:165;;;10542:14;;10529:11;;;10522:35;10585:16;;;;10479:10;;10450:165;;;10454:3;;;10644:6;10639:3;10635:16;10628:23;;10158:503;-1:-1:-1;10677:3:1;;9875:811;-1:-1:-1;;;;;;9875:811:1:o;10691:470::-;10870:3;10908:6;10902:13;10924:53;10970:6;10965:3;10958:4;10950:6;10946:17;10924:53;:::i;:::-;11040:13;;10999:16;;;;11062:57;11040:13;10999:16;11096:4;11084:17;;11062:57;:::i;:::-;11135:20;;10691:470;-1:-1:-1;;;;10691:470:1:o;11865:488::-;-1:-1:-1;;;;;12134:15:1;;;12116:34;;12186:15;;12181:2;12166:18;;12159:43;12233:2;12218:18;;12211:34;;;12281:3;12276:2;12261:18;;12254:31;;;12059:4;;12302:45;;12327:19;;12319:6;12302:45;:::i;:::-;12294:53;11865:488;-1:-1:-1;;;;;;11865:488:1:o;12829:217::-;12976:2;12965:9;12958:21;12939:4;12996:44;13036:2;13025:9;13021:18;13013:6;12996:44;:::i;13275:414::-;13477:2;13459:21;;;13516:2;13496:18;;;13489:30;13555:34;13550:2;13535:18;;13528:62;-1:-1:-1;;;13621:2:1;13606:18;;13599:48;13679:3;13664:19;;13275:414::o;20053:356::-;20255:2;20237:21;;;20274:18;;;20267:30;20333:34;20328:2;20313:18;;20306:62;20400:2;20385:18;;20053:356::o;22552:413::-;22754:2;22736:21;;;22793:2;22773:18;;;22766:30;22832:34;22827:2;22812:18;;22805:62;-1:-1:-1;;;22898:2:1;22883:18;;22876:47;22955:3;22940:19;;22552:413::o;23377:640::-;23658:6;23646:19;;23628:38;;-1:-1:-1;;;;;23702:32:1;;23697:2;23682:18;;23675:60;23722:3;23766:2;23751:18;;23744:31;;;-1:-1:-1;;23798:45:1;;23823:19;;23815:6;23798:45;:::i;:::-;23893:6;23886:14;23879:22;23874:2;23863:9;23859:18;23852:50;23951:9;23943:6;23939:22;23933:3;23922:9;23918:19;23911:51;23979:32;24004:6;23996;23979:32;:::i;:::-;23971:40;23377:640;-1:-1:-1;;;;;;;;23377:640:1:o;24022:717::-;24289:6;24281;24277:19;24266:9;24259:38;24333:3;24328:2;24317:9;24313:18;24306:31;24240:4;24360:45;24400:3;24389:9;24385:19;24377:6;24360:45;:::i;:::-;-1:-1:-1;;;;;24445:6:1;24441:31;24436:2;24425:9;24421:18;24414:59;24521:9;24513:6;24509:22;24504:2;24493:9;24489:18;24482:50;24556:6;24548;24541:22;24610:6;24602;24597:2;24589:6;24585:15;24572:45;24663:1;24658:2;24649:6;24641;24637:19;24633:28;24626:39;24730:2;24723;24719:7;24714:2;24706:6;24702:15;24698:29;24690:6;24686:42;24682:51;24674:59;;;24022:717;;;;;;;;:::o;24744:555::-;25001:6;24993;24989:19;24978:9;24971:38;25045:3;25040:2;25029:9;25025:18;25018:31;24952:4;25072:45;25112:3;25101:9;25097:19;25089:6;25072:45;:::i;:::-;-1:-1:-1;;;;;25157:6:1;25153:31;25148:2;25137:9;25133:18;25126:59;25233:9;25225:6;25221:22;25216:2;25205:9;25201:18;25194:50;25261:32;25286:6;25278;25261:32;:::i;:::-;25253:40;24744:555;-1:-1:-1;;;;;;;24744:555:1:o;25304:1498::-;25650:6;25642;25638:19;25627:9;25620:38;25601:4;25677:2;25715:3;25710:2;25699:9;25695:18;25688:31;25739:1;25772:6;25766:13;25802:36;25828:9;25802:36;:::i;:::-;25875:6;25869:3;25858:9;25854:19;25847:35;25901:3;25923:1;25955:2;25944:9;25940:18;25972:1;25967:122;;;;26103:1;26098:354;;;;25933:519;;25967:122;-1:-1:-1;;26015:24:1;;25995:18;;;25988:52;26075:3;26060:19;;;-1:-1:-1;25967:122:1;;26098:354;26129:6;26126:1;26119:17;26177:2;26174:1;26164:16;26202:1;26216:180;26230:6;26227:1;26224:13;26216:180;;;26323:14;;26299:17;;;26295:26;;26288:50;26366:16;;;;26245:10;;26216:180;;;26420:17;;26416:26;;;-1:-1:-1;;25933:519:1;;;;;;26497:9;26492:3;26488:19;26483:2;26472:9;26468:18;26461:47;26531:29;26556:3;26548:6;26531:29;:::i;:::-;26517:43;;;26569:54;26619:2;26608:9;26604:18;26596:6;-1:-1:-1;;;;;9015:31:1;9003:44;;8941:112;26569:54;-1:-1:-1;;;;;9015:31:1;;26682:3;26667:19;;9003:44;26736:9;26728:6;26724:22;26718:3;26707:9;26703:19;26696:51;26764:32;26789:6;26781;26764:32;:::i;:::-;26756:40;25304:1498;-1:-1:-1;;;;;;;;;25304:1498:1:o;27242:128::-;27282:3;27313:1;27309:6;27306:1;27303:13;27300:39;;;27319:18;;:::i;:::-;-1:-1:-1;27355:9:1;;27242:128::o;27375:120::-;27415:1;27441;27431:35;;27446:18;;:::i;:::-;-1:-1:-1;27480:9:1;;27375:120::o;27500:125::-;27540:4;27568:1;27565;27562:8;27559:34;;;27573:18;;:::i;:::-;-1:-1:-1;27610:9:1;;27500:125::o;27630:258::-;27702:1;27712:113;27726:6;27723:1;27720:13;27712:113;;;27802:11;;;27796:18;27783:11;;;27776:39;27748:2;27741:10;27712:113;;;27843:6;27840:1;27837:13;27834:48;;;-1:-1:-1;;27878:1:1;27860:16;;27853:27;27630:258::o;27893:380::-;27972:1;27968:12;;;;28015;;;28036:61;;28090:4;28082:6;28078:17;28068:27;;28036:61;28143:2;28135:6;28132:14;28112:18;28109:38;28106:161;;;28189:10;28184:3;28180:20;28177:1;28170:31;28224:4;28221:1;28214:15;28252:4;28249:1;28242:15;28106:161;;27893:380;;;:::o;28278:135::-;28317:3;-1:-1:-1;;28338:17:1;;28335:43;;;28358:18;;:::i;:::-;-1:-1:-1;28405:1:1;28394:13;;28278:135::o;28418:112::-;28450:1;28476;28466:35;;28481:18;;:::i;:::-;-1:-1:-1;28515:9:1;;28418:112::o;28535:127::-;28596:10;28591:3;28587:20;28584:1;28577:31;28627:4;28624:1;28617:15;28651:4;28648:1;28641:15;28667:127;28728:10;28723:3;28719:20;28716:1;28709:31;28759:4;28756:1;28749:15;28783:4;28780:1;28773:15;28799:127;28860:10;28855:3;28851:20;28848:1;28841:31;28891:4;28888:1;28881:15;28915:4;28912:1;28905:15;28931:127;28992:10;28987:3;28983:20;28980:1;28973:31;29023:4;29020:1;29013:15;29047:4;29044:1;29037:15;29063:131;-1:-1:-1;;;;;29138:31:1;;29128:42;;29118:70;;29184:1;29181;29174:12;29199:131;-1:-1:-1;;;;;;29273:32:1;;29263:43;;29253:71;;29320:1;29317;29310:12

Swarm Source

ipfs://60baaf99f24566b6f5161dcbd66e291e13cce53c5fb3940436ed924c7686d9ad
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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