ETH Price: $3,453.22 (+1.84%)
Gas: 10 Gwei

Token

Omni Bots (OB)
 

Overview

Max Total Supply

0 OB

Holders

751

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 OB
0x1a11c1c70618c8132f6a19fb51bfec058aec1ae2
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:
omnibots

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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;

    string public hiddenMetadataUri;
    
    string public uriSuffix = ".json";

    // 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;

    bool public revealed = false;

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

        if (revealed == false) {
         return hiddenMetadataUri;
         }

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

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

// File: contracts/omnibots-eth.sol

pragma solidity ^0.8.7;

contract omnibots is Ownable, ERC721, NonblockingReceiver {
    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 1000;
    uint256 MAX_MINT_ETHEREUM = 4500;
    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory hiddenMetadataUri_, address _layerZeroEndpoint)
        ERC721("Omni Bots", "OB")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        hiddenMetadataUri = hiddenMetadataUri_;
    }

    // mint function
    // you can choose to mint 1 or 2
    // mint is free, but payments are accepted
    function mint(uint8 numTokens) external payable {
        require(numTokens < 3, "Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_ETHEREUM,
            "Mint exceeds supply"
        );
        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _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,
            " 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 setRevealed(bool _state) public onlyOwner {
    revealed = _state;
    }

    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, "Failed to withdraw Ether");
    }

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

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

    // ------------------
    // 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":"hiddenMetadataUri_","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160039190620001a1565b506009805460ff191690556103e8600e55611194600f55620557306010553480156200005357600080fd5b5060405162003d9438038062003d9483398101604081905262000076916200027a565b604051806040016040528060098152602001684f6d6e6920426f747360b81b8152506040518060400160405280600281526020016127a160f11b815250620000cd620000c76200014d60201b60201c565b62000151565b8151620000e2906001906020850190620001a1565b508051620000f8906004906020840190620001a1565b5050600c80546001600160a01b0319163317905550600980546001600160a01b03831661010002610100600160a81b0319909116179055815162000144906002906020850190620001a1565b505050620003a8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001af906200036b565b90600052602060002090601f016020900481019282620001d357600085556200021e565b82601f10620001ee57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021e57825182559160200191906001019062000201565b506200022c92915062000230565b5090565b5b808211156200022c576000815560010162000231565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200027557600080fd5b919050565b600080604083850312156200028e57600080fd5b82516001600160401b0380821115620002a657600080fd5b818501915085601f830112620002bb57600080fd5b815181811115620002d057620002d062000247565b604051601f8201601f19908116603f01168101908382118183101715620002fb57620002fb62000247565b816040528281526020935088848487010111156200031857600080fd5b600091505b828210156200033c57848201840151818301850152908301906200031d565b828211156200034e5760008484830101525b9550620003609150508582016200025d565b925050509250929050565b600181811c908216806200038057607f821691505b60208210811415620003a257634e487b7160e01b600052602260045260246000fd5b50919050565b6139dc80620003b86000396000f3fe6080604052600436106102185760003560e01c80637533d7881161011d578063b88d4fde116100b0578063e0a808531161007f578063eb8d72b711610064578063eb8d72b714610689578063ed88c68e1461023d578063f2fde38b146106a957600080fd5b8063e0a8085314610613578063e985e9c51461063357600080fd5b8063b88d4fde146105ad578063c87b56dd146105cd578063cf89fa03146105ed578063d1deba1f1461060057600080fd5b806395d89b41116100ec57806395d89b4114610536578063a22cb4651461054b578063a45ba8e71461056b578063b2bdfa7b1461058057600080fd5b80637533d788146104605780638da5cb5b146104805780638ee74912146104ab578063943fb8721461051657600080fd5b80632e1a7d4d116101b057806355f804b31161017f5780636ecd2306116101645780636ecd23061461040a57806370a082311461041d578063715018a61461044b57600080fd5b806355f804b3146103ca5780636352211e146103ea57600080fd5b80632e1a7d4d1461035b57806342842e0e1461037b578063518302271461039b5780635503a0e8146103b557600080fd5b8063095ea7b3116101ec578063095ea7b3146102db57806316ba10e0146102fb5780631c37a8221461031b57806323b872dd1461033b57600080fd5b80621d35671461021d57806301ffc9a71461023f57806306fdde0314610274578063081812fc14610296575b600080fd5b34801561022957600080fd5b5061023d610238366004612f0c565b6106c9565b005b34801561024b57600080fd5b5061025f61025a366004612fbf565b610912565b60405190151581526020015b60405180910390f35b34801561028057600080fd5b506102896109f7565b60405161026b9190613052565b3480156102a257600080fd5b506102b66102b1366004613065565b610a89565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026b565b3480156102e757600080fd5b5061023d6102f63660046130a0565b610b63565b34801561030757600080fd5b5061023d6103163660046130cc565b610cf0565b34801561032757600080fd5b5061023d610336366004612f0c565b610d88565b34801561034757600080fd5b5061023d610356366004613115565b610e23565b34801561036757600080fd5b5061023d610376366004613065565b610ec4565b34801561038757600080fd5b5061023d610396366004613115565b61100f565b3480156103a757600080fd5b5060095461025f9060ff1681565b3480156103c157600080fd5b5061028961102a565b3480156103d657600080fd5b5061023d6103e53660046130cc565b6110b8565b3480156103f657600080fd5b506102b6610405366004613065565b61114c565b61023d610418366004613156565b6111fe565b34801561042957600080fd5b5061043d610438366004613179565b611326565b60405190815260200161026b565b34801561045757600080fd5b5061023d6113f4565b34801561046c57600080fd5b5061028961047b366004613196565b611481565b34801561048c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166102b6565b3480156104b757600080fd5b506105016104c63660046131b1565b600a60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161026b565b34801561052257600080fd5b5061023d610531366004613065565b61149a565b34801561054257600080fd5b50610289611520565b34801561055757600080fd5b5061023d610566366004613218565b61152f565b34801561057757600080fd5b5061028961153a565b34801561058c57600080fd5b50600c546102b69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105b957600080fd5b5061023d6105c836600461324d565b611547565b3480156105d957600080fd5b506102896105e8366004613065565b6115e9565b61023d6105fb3660046132ad565b611798565b61023d61060e366004613312565b611b84565b34801561061f57600080fd5b5061023d61062e36600461339e565b611d76565b34801561063f57600080fd5b5061025f61064e3660046133b9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b5061023d6106a43660046133f2565b611e28565b3480156106b557600080fd5b5061023d6106c4366004613179565b611ec7565b600954610100900473ffffffffffffffffffffffffffffffffffffffff1633146106f257600080fd5b61ffff84166000908152600b60205260409020805461071090613445565b9050835114801561074f575061ffff84166000908152600b602052604090819020905161073d9190613526565b60405180910390208380519060200120145b6107e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610822908790879087908790600401613532565b600060405180830381600087803b15801561083c57600080fd5b505af192505050801561084d575060015b61090c576040518060400160405280825181526020018280519060200120815250600a60008661ffff1661ffff16815260200190815260200160002084604051610897919061357c565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610903908690869086908690613532565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806109a557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109f157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610a0690613445565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3290613445565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b6e8261114c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c555750610c55813361064e565b610ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d7565b610ceb8383611ff4565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d84906003906020840190612ccf565b5050565b333014610e17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016107d7565b61090c84848484612094565b610e2d33826120c1565b610eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b610ceb838383612231565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600c5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610f9f576040519150601f19603f3d011682016040523d82523d6000602084013e610fa4565b606091505b5050905080610d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016107d7565b610ceb83838360405180602001604052806000815250611547565b6003805461103790613445565b80601f016020809104026020016040519081016040528092919081815260200182805461106390613445565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff163314611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d8490600d906020840190612ccf565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107d7565b60038160ff161061126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e00000000000060448201526064016107d7565b600f548160ff16600e5461127f91906135c7565b11156112e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d696e74206578636565647320737570706c790000000000000000000000000060448201526064016107d7565b61130433600e600081546112fa906135df565b9182905550612498565b8060ff16600214156113235761132333600e600081546112fa906135df565b50565b600073ffffffffffffffffffffffffffffffffffffffff82166113cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107d7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b61147f60006124b2565b565b600b602052600090815260409020805461103790613445565b60005473ffffffffffffffffffffffffffffffffffffffff16331461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b601055565b606060048054610a0690613445565b610d84338383612527565b6002805461103790613445565b61155133836120c1565b6115dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b61090c84848484612655565b60008181526005602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107d7565b60095460ff1661173957600280546116b490613445565b80601f01602080910402602001604051908101604052809291908181526020018280546116e090613445565b801561172d5780601f106117025761010080835404028352916020019161172d565b820191906000526020600020905b81548152906001019060200180831161171057829003601f168201915b50505050509050919050565b60006117436126f8565b905060008151116117635760405180602001604052806000815250611791565b8061176d84612707565b600360405160200161178193929190613618565b6040516020818303038152906040525b9392505050565b6117a18161114c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b61ffff82166000908152600b60205260408120805461187990613445565b905011611908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016107d7565b61191181612839565b604080513360208201528082018390528151808203830181526060820183526010547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526009547f40a7bb10000000000000000000000000000000000000000000000000000000009094529092600192600091610100900473ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906119da908990309089908790899060a60161364a565b6040805180830381865afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a91906136a9565b50905080341015611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526044602482018190527f206d73672e76616c7565206e6f7420656e6f75676820746f20636f766572206d908201527f6573736167654665652e2053656e642067617320666f72206d6573736167652060648201527f6665657300000000000000000000000000000000000000000000000000000000608482015260a4016107d7565b60095461ffff87166000908152600b602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815261010090930473ffffffffffffffffffffffffffffffffffffffff169263c5803100923492611b4a928c928b913391908b906004016136cd565b6000604051808303818588803b158015611b6357600080fd5b505af1158015611b77573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600a60205260408082209051611ba590879061357c565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016107d7565b805482148015611c88575080600101548383604051611c7e9291906137e5565b6040518091039020145b611cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016107d7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611d3c90899089908990899089906004016137f5565b600060405180830381600087803b158015611d5657600080fd5b505af1158015611d6a573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611df7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ea9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b61ffff83166000908152600b6020526040902061090c908383612d53565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff8116611feb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107d7565b611323816124b2565b600081815260076020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061204e8261114c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906120ab9190613875565b915091506120b98282612498565b505050505050565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16612172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b600061217d8361114c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121ec57508373ffffffffffffffffffffffffffffffffffffffff166121d484610a89565b73ffffffffffffffffffffffffffffffffffffffff16145b80612229575073ffffffffffffffffffffffffffffffffffffffff80821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166122518261114c565b73ffffffffffffffffffffffffffffffffffffffff16146122f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107d7565b73ffffffffffffffffffffffffffffffffffffffff8216612396576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107d7565b6123a1600082611ff4565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604081208054600192906123d79084906138a3565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604081208054600192906124129084906135c7565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d84828260405180602001604052806000815250612906565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612660848484612231565b61266c848484846129a9565b61090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b6060600d8054610a0690613445565b60608161274757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612771578061275b816135df565b915061276a9050600a836138e9565b915061274b565b60008167ffffffffffffffff81111561278c5761278c612e11565b6040519080825280601f01601f1916602001820160405280156127b6576020820181803683370190505b5090505b8415612229576127cb6001836138a3565b91506127d8600a866138fd565b6127e39060306135c7565b60f81b8183815181106127f8576127f8613911565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612832600a866138e9565b94506127ba565b60006128448261114c565b9050612851600083611ff4565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081208054600192906128879084906138a3565b909155505060008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6129108383612b99565b61291d60008484846129a9565b610ceb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b8e576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a20903390899088908890600401613940565b6020604051808303816000875af1925050508015612a79575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a7691810190613989565b60015b612b43573d808015612aa7576040519150601f19603f3d011682016040523d82523d6000602084013e612aac565b606091505b508051612b3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612229565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612c16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260408120805460019290612c4c9084906135c7565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612cdb90613445565b90600052602060002090601f016020900481019282612cfd5760008555612d43565b82601f10612d1657805160ff1916838001178555612d43565b82800160010185558215612d43579182015b82811115612d43578251825591602001919060010190612d28565b50612d4f929150612de5565b5090565b828054612d5f90613445565b90600052602060002090601f016020900481019282612d815760008555612d43565b82601f10612db8578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612d43565b82800160010185558215612d43579182015b82811115612d43578235825591602001919060010190612dca565b5b80821115612d4f5760008155600101612de6565b803561ffff81168114612e0c57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612e5b57612e5b612e11565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612ea157612ea1612e11565b81604052809350858152868686011115612eba57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612ee557600080fd5b61179183833560208501612e40565b803567ffffffffffffffff81168114612e0c57600080fd5b60008060008060808587031215612f2257600080fd5b612f2b85612dfa565b9350602085013567ffffffffffffffff80821115612f4857600080fd5b612f5488838901612ed4565b9450612f6260408801612ef4565b93506060870135915080821115612f7857600080fd5b50612f8587828801612ed4565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461132357600080fd5b600060208284031215612fd157600080fd5b813561179181612f91565b60005b83811015612ff7578181015183820152602001612fdf565b8381111561090c5750506000910152565b60008151808452613020816020860160208601612fdc565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117916020830184613008565b60006020828403121561307757600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461132357600080fd5b600080604083850312156130b357600080fd5b82356130be8161307e565b946020939093013593505050565b6000602082840312156130de57600080fd5b813567ffffffffffffffff8111156130f557600080fd5b8201601f8101841361310657600080fd5b61222984823560208401612e40565b60008060006060848603121561312a57600080fd5b83356131358161307e565b925060208401356131458161307e565b929592945050506040919091013590565b60006020828403121561316857600080fd5b813560ff8116811461179157600080fd5b60006020828403121561318b57600080fd5b81356117918161307e565b6000602082840312156131a857600080fd5b61179182612dfa565b6000806000606084860312156131c657600080fd5b6131cf84612dfa565b9250602084013567ffffffffffffffff8111156131eb57600080fd5b6131f786828701612ed4565b925050604084013590509250925092565b80358015158114612e0c57600080fd5b6000806040838503121561322b57600080fd5b82356132368161307e565b915061324460208401613208565b90509250929050565b6000806000806080858703121561326357600080fd5b843561326e8161307e565b9350602085013561327e8161307e565b925060408501359150606085013567ffffffffffffffff8111156132a157600080fd5b612f8587828801612ed4565b600080604083850312156132c057600080fd5b6130be83612dfa565b60008083601f8401126132db57600080fd5b50813567ffffffffffffffff8111156132f357600080fd5b60208301915083602082850101111561330b57600080fd5b9250929050565b60008060008060006080868803121561332a57600080fd5b61333386612dfa565b9450602086013567ffffffffffffffff8082111561335057600080fd5b61335c89838a01612ed4565b955061336a60408901612ef4565b9450606088013591508082111561338057600080fd5b5061338d888289016132c9565b969995985093965092949392505050565b6000602082840312156133b057600080fd5b61179182613208565b600080604083850312156133cc57600080fd5b82356133d78161307e565b915060208301356133e78161307e565b809150509250929050565b60008060006040848603121561340757600080fd5b61341084612dfa565b9250602084013567ffffffffffffffff81111561342c57600080fd5b613438868287016132c9565b9497909650939450505050565b600181811c9082168061345957607f821691505b60208210811415613493577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600081546134a681613445565b600182811680156134be57600181146134ed5761351c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061351c565b8560005260208060002060005b858110156135135781548a8201529084019082016134fa565b50505082870194505b5050505092915050565b60006117918284613499565b61ffff8516815260806020820152600061354f6080830186613008565b67ffffffffffffffff8516604084015282810360608401526135718185613008565b979650505050505050565b6000825161358e818460208701612fdc565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156135da576135da613598565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361157613611613598565b5060010190565b6000845161362a818460208901612fdc565b84519083019061363e818360208901612fdc565b61357181830186613499565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a06040820152600061368360a0830186613008565b8415156060840152828103608084015261369d8185613008565b98975050505050505050565b600080604083850312156136bc57600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546136eb81613445565b8060c087015260e060018084166000811461370d57600181146137405761376e565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01526101008901955061376e565b8d6000528660002060005b858110156137665781548b820186015290830190880161374b565b8a0184019650505b505050505083810360408501526137858189613008565b9150506137aa606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526137d88185613008565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006138126080830187613008565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b6000806040838503121561388857600080fd5b82516138938161307e565b6020939093015192949293505050565b6000828210156138b5576138b5613598565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826138f8576138f86138ba565b500490565b60008261390c5761390c6138ba565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261397f6080830184613008565b9695505050505050565b60006020828403121561399b57600080fd5b815161179181612f9156fea264697066735822122018bf5256453d4634867362936511d29ec0f0280ceba7af1fcf638a80e505c23c64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d544347444337724e646934796834695754796f5a6d4b504259636f7a4c3777426d3263487567436a376e77472f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102185760003560e01c80637533d7881161011d578063b88d4fde116100b0578063e0a808531161007f578063eb8d72b711610064578063eb8d72b714610689578063ed88c68e1461023d578063f2fde38b146106a957600080fd5b8063e0a8085314610613578063e985e9c51461063357600080fd5b8063b88d4fde146105ad578063c87b56dd146105cd578063cf89fa03146105ed578063d1deba1f1461060057600080fd5b806395d89b41116100ec57806395d89b4114610536578063a22cb4651461054b578063a45ba8e71461056b578063b2bdfa7b1461058057600080fd5b80637533d788146104605780638da5cb5b146104805780638ee74912146104ab578063943fb8721461051657600080fd5b80632e1a7d4d116101b057806355f804b31161017f5780636ecd2306116101645780636ecd23061461040a57806370a082311461041d578063715018a61461044b57600080fd5b806355f804b3146103ca5780636352211e146103ea57600080fd5b80632e1a7d4d1461035b57806342842e0e1461037b578063518302271461039b5780635503a0e8146103b557600080fd5b8063095ea7b3116101ec578063095ea7b3146102db57806316ba10e0146102fb5780631c37a8221461031b57806323b872dd1461033b57600080fd5b80621d35671461021d57806301ffc9a71461023f57806306fdde0314610274578063081812fc14610296575b600080fd5b34801561022957600080fd5b5061023d610238366004612f0c565b6106c9565b005b34801561024b57600080fd5b5061025f61025a366004612fbf565b610912565b60405190151581526020015b60405180910390f35b34801561028057600080fd5b506102896109f7565b60405161026b9190613052565b3480156102a257600080fd5b506102b66102b1366004613065565b610a89565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161026b565b3480156102e757600080fd5b5061023d6102f63660046130a0565b610b63565b34801561030757600080fd5b5061023d6103163660046130cc565b610cf0565b34801561032757600080fd5b5061023d610336366004612f0c565b610d88565b34801561034757600080fd5b5061023d610356366004613115565b610e23565b34801561036757600080fd5b5061023d610376366004613065565b610ec4565b34801561038757600080fd5b5061023d610396366004613115565b61100f565b3480156103a757600080fd5b5060095461025f9060ff1681565b3480156103c157600080fd5b5061028961102a565b3480156103d657600080fd5b5061023d6103e53660046130cc565b6110b8565b3480156103f657600080fd5b506102b6610405366004613065565b61114c565b61023d610418366004613156565b6111fe565b34801561042957600080fd5b5061043d610438366004613179565b611326565b60405190815260200161026b565b34801561045757600080fd5b5061023d6113f4565b34801561046c57600080fd5b5061028961047b366004613196565b611481565b34801561048c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166102b6565b3480156104b757600080fd5b506105016104c63660046131b1565b600a60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161026b565b34801561052257600080fd5b5061023d610531366004613065565b61149a565b34801561054257600080fd5b50610289611520565b34801561055757600080fd5b5061023d610566366004613218565b61152f565b34801561057757600080fd5b5061028961153a565b34801561058c57600080fd5b50600c546102b69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105b957600080fd5b5061023d6105c836600461324d565b611547565b3480156105d957600080fd5b506102896105e8366004613065565b6115e9565b61023d6105fb3660046132ad565b611798565b61023d61060e366004613312565b611b84565b34801561061f57600080fd5b5061023d61062e36600461339e565b611d76565b34801561063f57600080fd5b5061025f61064e3660046133b9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561069557600080fd5b5061023d6106a43660046133f2565b611e28565b3480156106b557600080fd5b5061023d6106c4366004613179565b611ec7565b600954610100900473ffffffffffffffffffffffffffffffffffffffff1633146106f257600080fd5b61ffff84166000908152600b60205260409020805461071090613445565b9050835114801561074f575061ffff84166000908152600b602052604090819020905161073d9190613526565b60405180910390208380519060200120145b6107e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610822908790879087908790600401613532565b600060405180830381600087803b15801561083c57600080fd5b505af192505050801561084d575060015b61090c576040518060400160405280825181526020018280519060200120815250600a60008661ffff1661ffff16815260200190815260200160002084604051610897919061357c565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610903908690869086908690613532565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806109a557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109f157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610a0690613445565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3290613445565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b6e8261114c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c555750610c55813361064e565b610ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107d7565b610ceb8383611ff4565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d84906003906020840190612ccf565b5050565b333014610e17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016107d7565b61090c84848484612094565b610e2d33826120c1565b610eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b610ceb838383612231565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600c5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610f9f576040519150601f19603f3d011682016040523d82523d6000602084013e610fa4565b606091505b5050905080610d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016107d7565b610ceb83838360405180602001604052806000815250611547565b6003805461103790613445565b80601f016020809104026020016040519081016040528092919081815260200182805461106390613445565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff163314611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610d8490600d906020840190612ccf565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107d7565b60038160ff161061126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d61782032204e46547320706572207472616e73616374696f6e00000000000060448201526064016107d7565b600f548160ff16600e5461127f91906135c7565b11156112e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d696e74206578636565647320737570706c790000000000000000000000000060448201526064016107d7565b61130433600e600081546112fa906135df565b9182905550612498565b8060ff16600214156113235761132333600e600081546112fa906135df565b50565b600073ffffffffffffffffffffffffffffffffffffffff82166113cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107d7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b61147f60006124b2565b565b600b602052600090815260409020805461103790613445565b60005473ffffffffffffffffffffffffffffffffffffffff16331461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b601055565b606060048054610a0690613445565b610d84338383612527565b6002805461103790613445565b61155133836120c1565b6115dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107d7565b61090c84848484612655565b60008181526005602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107d7565b60095460ff1661173957600280546116b490613445565b80601f01602080910402602001604051908101604052809291908181526020018280546116e090613445565b801561172d5780601f106117025761010080835404028352916020019161172d565b820191906000526020600020905b81548152906001019060200180831161171057829003601f168201915b50505050509050919050565b60006117436126f8565b905060008151116117635760405180602001604052806000815250611791565b8061176d84612707565b600360405160200161178193929190613618565b6040516020818303038152906040525b9392505050565b6117a18161114c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016107d7565b61ffff82166000908152600b60205260408120805461187990613445565b905011611908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016107d7565b61191181612839565b604080513360208201528082018390528151808203830181526060820183526010547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526009547f40a7bb10000000000000000000000000000000000000000000000000000000009094529092600192600091610100900473ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906119da908990309089908790899060a60161364a565b6040805180830381865afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1a91906136a9565b50905080341015611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526044602482018190527f206d73672e76616c7565206e6f7420656e6f75676820746f20636f766572206d908201527f6573736167654665652e2053656e642067617320666f72206d6573736167652060648201527f6665657300000000000000000000000000000000000000000000000000000000608482015260a4016107d7565b60095461ffff87166000908152600b602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815261010090930473ffffffffffffffffffffffffffffffffffffffff169263c5803100923492611b4a928c928b913391908b906004016136cd565b6000604051808303818588803b158015611b6357600080fd5b505af1158015611b77573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600a60205260408082209051611ba590879061357c565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016107d7565b805482148015611c88575080600101548383604051611c7e9291906137e5565b6040518091039020145b611cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016107d7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611d3c90899089908990899089906004016137f5565b600060405180830381600087803b158015611d5657600080fd5b505af1158015611d6a573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611df7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ea9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b61ffff83166000908152600b6020526040902061090c908383612d53565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff8116611feb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107d7565b611323816124b2565b600081815260076020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061204e8261114c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906120ab9190613875565b915091506120b98282612498565b505050505050565b60008181526005602052604081205473ffffffffffffffffffffffffffffffffffffffff16612172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107d7565b600061217d8361114c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121ec57508373ffffffffffffffffffffffffffffffffffffffff166121d484610a89565b73ffffffffffffffffffffffffffffffffffffffff16145b80612229575073ffffffffffffffffffffffffffffffffffffffff80821660009081526008602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166122518261114c565b73ffffffffffffffffffffffffffffffffffffffff16146122f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107d7565b73ffffffffffffffffffffffffffffffffffffffff8216612396576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107d7565b6123a1600082611ff4565b73ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604081208054600192906123d79084906138a3565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604081208054600192906124129084906135c7565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d84828260405180602001604052806000815250612906565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526008602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612660848484612231565b61266c848484846129a9565b61090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b6060600d8054610a0690613445565b60608161274757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612771578061275b816135df565b915061276a9050600a836138e9565b915061274b565b60008167ffffffffffffffff81111561278c5761278c612e11565b6040519080825280601f01601f1916602001820160405280156127b6576020820181803683370190505b5090505b8415612229576127cb6001836138a3565b91506127d8600a866138fd565b6127e39060306135c7565b60f81b8183815181106127f8576127f8613911565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612832600a866138e9565b94506127ba565b60006128448261114c565b9050612851600083611ff4565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081208054600192906128879084906138a3565b909155505060008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6129108383612b99565b61291d60008484846129a9565b610ceb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b8e576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a20903390899088908890600401613940565b6020604051808303816000875af1925050508015612a79575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a7691810190613989565b60015b612b43573d808015612aa7576040519150601f19603f3d011682016040523d82523d6000602084013e612aac565b606091505b508051612b3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107d7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612229565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612c16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d7565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260408120805460019290612c4c9084906135c7565b909155505060008181526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612cdb90613445565b90600052602060002090601f016020900481019282612cfd5760008555612d43565b82601f10612d1657805160ff1916838001178555612d43565b82800160010185558215612d43579182015b82811115612d43578251825591602001919060010190612d28565b50612d4f929150612de5565b5090565b828054612d5f90613445565b90600052602060002090601f016020900481019282612d815760008555612d43565b82601f10612db8578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612d43565b82800160010185558215612d43579182015b82811115612d43578235825591602001919060010190612dca565b5b80821115612d4f5760008155600101612de6565b803561ffff81168114612e0c57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612e5b57612e5b612e11565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612ea157612ea1612e11565b81604052809350858152868686011115612eba57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612ee557600080fd5b61179183833560208501612e40565b803567ffffffffffffffff81168114612e0c57600080fd5b60008060008060808587031215612f2257600080fd5b612f2b85612dfa565b9350602085013567ffffffffffffffff80821115612f4857600080fd5b612f5488838901612ed4565b9450612f6260408801612ef4565b93506060870135915080821115612f7857600080fd5b50612f8587828801612ed4565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461132357600080fd5b600060208284031215612fd157600080fd5b813561179181612f91565b60005b83811015612ff7578181015183820152602001612fdf565b8381111561090c5750506000910152565b60008151808452613020816020860160208601612fdc565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117916020830184613008565b60006020828403121561307757600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461132357600080fd5b600080604083850312156130b357600080fd5b82356130be8161307e565b946020939093013593505050565b6000602082840312156130de57600080fd5b813567ffffffffffffffff8111156130f557600080fd5b8201601f8101841361310657600080fd5b61222984823560208401612e40565b60008060006060848603121561312a57600080fd5b83356131358161307e565b925060208401356131458161307e565b929592945050506040919091013590565b60006020828403121561316857600080fd5b813560ff8116811461179157600080fd5b60006020828403121561318b57600080fd5b81356117918161307e565b6000602082840312156131a857600080fd5b61179182612dfa565b6000806000606084860312156131c657600080fd5b6131cf84612dfa565b9250602084013567ffffffffffffffff8111156131eb57600080fd5b6131f786828701612ed4565b925050604084013590509250925092565b80358015158114612e0c57600080fd5b6000806040838503121561322b57600080fd5b82356132368161307e565b915061324460208401613208565b90509250929050565b6000806000806080858703121561326357600080fd5b843561326e8161307e565b9350602085013561327e8161307e565b925060408501359150606085013567ffffffffffffffff8111156132a157600080fd5b612f8587828801612ed4565b600080604083850312156132c057600080fd5b6130be83612dfa565b60008083601f8401126132db57600080fd5b50813567ffffffffffffffff8111156132f357600080fd5b60208301915083602082850101111561330b57600080fd5b9250929050565b60008060008060006080868803121561332a57600080fd5b61333386612dfa565b9450602086013567ffffffffffffffff8082111561335057600080fd5b61335c89838a01612ed4565b955061336a60408901612ef4565b9450606088013591508082111561338057600080fd5b5061338d888289016132c9565b969995985093965092949392505050565b6000602082840312156133b057600080fd5b61179182613208565b600080604083850312156133cc57600080fd5b82356133d78161307e565b915060208301356133e78161307e565b809150509250929050565b60008060006040848603121561340757600080fd5b61341084612dfa565b9250602084013567ffffffffffffffff81111561342c57600080fd5b613438868287016132c9565b9497909650939450505050565b600181811c9082168061345957607f821691505b60208210811415613493577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600081546134a681613445565b600182811680156134be57600181146134ed5761351c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061351c565b8560005260208060002060005b858110156135135781548a8201529084019082016134fa565b50505082870194505b5050505092915050565b60006117918284613499565b61ffff8516815260806020820152600061354f6080830186613008565b67ffffffffffffffff8516604084015282810360608401526135718185613008565b979650505050505050565b6000825161358e818460208701612fdc565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156135da576135da613598565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361157613611613598565b5060010190565b6000845161362a818460208901612fdc565b84519083019061363e818360208901612fdc565b61357181830186613499565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a06040820152600061368360a0830186613008565b8415156060840152828103608084015261369d8185613008565b98975050505050505050565b600080604083850312156136bc57600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546136eb81613445565b8060c087015260e060018084166000811461370d57600181146137405761376e565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a01526101008901955061376e565b8d6000528660002060005b858110156137665781548b820186015290830190880161374b565b8a0184019650505b505050505083810360408501526137858189613008565b9150506137aa606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526137d88185613008565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006138126080830187613008565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b6000806040838503121561388857600080fd5b82516138938161307e565b6020939093015192949293505050565b6000828210156138b5576138b5613598565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826138f8576138f86138ba565b500490565b60008261390c5761390c6138ba565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261397f6080830184613008565b9695505050505050565b60006020828403121561399b57600080fd5b815161179181612f9156fea264697066735822122018bf5256453d4634867362936511d29ec0f0280ceba7af1fcf638a80e505c23c64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d544347444337724e646934796834695754796f5a6d4b504259636f7a4c3777426d3263487567436a376e77472f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : hiddenMetadataUri_ (string): ipfs://QmTCGDC7rNdi4yh4iWTyoZmKPBYcozL7wBm2cHugCj7nwG/hidden.json
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [3] : 697066733a2f2f516d544347444337724e646934796834695754796f5a6d4b50
Arg [4] : 4259636f7a4c3777426d3263487567436a376e77472f68696464656e2e6a736f
Arg [5] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50383:4282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47004:1098;;;;;;;;;;-1:-1:-1;47004:1098:0;;;;;:::i;:::-;;:::i;:::-;;32972:355;;;;;;;;;;-1:-1:-1;32972:355:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;32972:355:0;;;;;;;;34141:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35929:308::-;;;;;;;;;;-1:-1:-1;35929:308:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;35929:308:0;3903:226:1;35452:411:0;;;;;;;;;;-1:-1:-1;35452:411:0;;;;;:::i;:::-;;:::i;53939:100::-;;;;;;;;;;-1:-1:-1;53939:100:0;;;;;:::i;:::-;;:::i;48110:435::-;;;;;;;;;;-1:-1:-1;48110:435:0;;;;;:::i;:::-;;:::i;36848:376::-;;;;;;;;;;-1:-1:-1;36848:376:0;;;;;:::i;:::-;;:::i;53546:173::-;;;;;;;;;;-1:-1:-1;53546:173:0;;;;;:::i;:::-;;:::i;37295:185::-;;;;;;;;;;-1:-1:-1;37295:185:0;;;;;:::i;:::-;;:::i;32631:28::-;;;;;;;;;;-1:-1:-1;32631:28:0;;;;;;;;32100:33;;;;;;;;;;;;;:::i;53225:90::-;;;;;;;;;;-1:-1:-1;53225:90:0;;;;;:::i;:::-;;:::i;33748:326::-;;;;;;;;;;-1:-1:-1;33748:326:0;;;;;:::i;:::-;;:::i;51006:383::-;;;;;;:::i;:::-;;:::i;33391:295::-;;;;;;;;;;-1:-1:-1;33391:295:0;;;;;:::i;:::-;;:::i;:::-;;;6201:25:1;;;6189:2;6174:18;33391:295:0;6055:177:1;13161:103:0;;;;;;;;;;;;;:::i;46803:51::-;;;;;;;;;;-1:-1:-1;46803:51:0;;;;;:::i;:::-;;:::i;12510:87::-;;;;;;;;;;-1:-1:-1;12556:7:0;12583:6;;;12510:87;;46694:102;;;;;;;;;;-1:-1:-1;46694:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7288:25:1;;;7344:2;7329:18;;7322:34;;;;7261:18;46694:102:0;7114:248:1;53803:128:0;;;;;;;;;;-1:-1:-1;53803:128:0;;;;;:::i;:::-;;:::i;34310:104::-;;;;;;;;;;;;;:::i;36309:187::-;;;;;;;;;;-1:-1:-1;36309:187:0;;;;;:::i;:::-;;:::i;32056:31::-;;;;;;;;;;;;;:::i;50448:21::-;;;;;;;;;;-1:-1:-1;50448:21:0;;;;;;;;37551:365;;;;;;;;;;-1:-1:-1;37551:365:0;;;;;:::i;:::-;;:::i;34485:563::-;;;;;;;;;;-1:-1:-1;34485:563:0;;;;;:::i;:::-;;:::i;51528:1689::-;;;;;;:::i;:::-;;:::i;49205:916::-;;;;;;:::i;:::-;;:::i;53327:83::-;;;;;;;;;;-1:-1:-1;53327:83:0;;;;;:::i;:::-;;:::i;36567:214::-;;;;;;;;;;-1:-1:-1;36567:214:0;;;;;:::i;:::-;36738:25;;;;36709:4;36738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36567:214;50129:181;;;;;;;;;;-1:-1:-1;50129:181:0;;;;;:::i;:::-;;:::i;13419:238::-;;;;;;;;;;-1:-1:-1;13419:238:0;;;;;:::i;:::-;;:::i;47004:1098::-;47209:8;;;;;;;47187:10;:31;47179:40;;;;;;47344:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47322:11;:18;:61;:168;;;;-1:-1:-1;47457:32:0;;;;;;;:19;:32;;;;;;;47447:43;;;;47457:32;47447:43;:::i;:::-;;;;;;;;47414:11;47404:22;;;;;;:86;47322:168;47300:270;;;;;;;12571:2:1;47300:270:0;;;12553:21:1;12610:2;12590:18;;;12583:30;12649:34;12629:18;;;12622:62;12720:22;12700:18;;;12693:50;12760:19;;47300:270:0;;;;;;;;;47698:60;;;;;:4;;:16;;:60;;47715:11;;47728;;47741:6;;47749:8;;47698:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47694:401;;47905:101;;;;;;;;47938:8;:15;47905:101;;;;47982:8;47972:19;;;;;;47905:101;;;47854:14;:27;47869:11;47854:27;;;;;;;;;;;;;;;47882:11;47854:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;48026:57;;;;48040:11;;48053;;47895:6;;48074:8;;48026:57;:::i;:::-;;;;;;;;47694:401;47004:1098;;;;:::o;32972:355::-;33119:4;33161:40;;;33176:25;33161:40;;:105;;-1:-1:-1;33218:48:0;;;33233:33;33218:48;33161:105;:158;;;-1:-1:-1;25610:25:0;25595:40;;;;33283:36;33141:178;32972:355;-1:-1:-1;;32972:355:0:o;34141:100::-;34195:13;34228:5;34221:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34141:100;:::o;35929:308::-;36050:7;39552:16;;;:7;:16;;;;;;:30;:16;36075:110;;;;;;;13833:2:1;36075:110:0;;;13815:21:1;13872:2;13852:18;;;13845:30;13911:34;13891:18;;;13884:62;13982:14;13962:18;;;13955:42;14014:19;;36075:110:0;13631:408:1;36075:110:0;-1:-1:-1;36205:24:0;;;;:15;:24;;;;;;;;;35929:308::o;35452:411::-;35533:13;35549:23;35564:7;35549:14;:23::i;:::-;35533:39;;35597:5;35591:11;;:2;:11;;;;35583:57;;;;;;;14246:2:1;35583:57:0;;;14228:21:1;14285:2;14265:18;;;14258:30;14324:34;14304:18;;;14297:62;14395:3;14375:18;;;14368:31;14416:19;;35583:57:0;14044:397:1;35583:57:0;11293:10;35675:21;;;;;:62;;-1:-1:-1;35700:37:0;35717:5;11293:10;36567:214;:::i;35700:37::-;35653:168;;;;;;;14648:2:1;35653:168:0;;;14630:21:1;14687:2;14667:18;;;14660:30;14726:34;14706:18;;;14699:62;14797:26;14777:18;;;14770:54;14841:19;;35653:168:0;14446:420:1;35653:168:0;35834:21;35843:2;35847:7;35834:8;:21::i;:::-;35522:341;35452:411;;:::o;53939:100::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;54011:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53939:100:::0;:::o;48110:435::-;48336:10;48358:4;48336:27;48314:120;;;;;;;15434:2:1;48314:120:0;;;15416:21:1;15473:2;15453:18;;;15446:30;15512:34;15492:18;;;15485:62;15583:13;15563:18;;;15556:41;15614:19;;48314:120:0;15232:407:1;48314:120:0;48483:54;48494:11;48507;48520:6;48528:8;48483:10;:54::i;36848:376::-;37057:41;11293:10;37090:7;37057:18;:41::i;:::-;37035:140;;;;;;;15846:2:1;37035:140:0;;;15828:21:1;15885:2;15865:18;;;15858:30;15924:34;15904:18;;;15897:62;15995:19;15975:18;;;15968:47;16032:19;;37035:140:0;15644:413:1;37035:140:0;37188:28;37198:4;37204:2;37208:7;37188:9;:28::i;53546:173::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53631:6:::1;::::0;53623:36:::1;::::0;53608:9:::1;::::0;53631:6:::1;;::::0;53651:3;;53608:9;53623:36;53608:9;53623:36;53651:3;53631:6;53623:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53607:52;;;53678:4;53670:41;;;::::0;::::1;::::0;;16474:2:1;53670:41:0::1;::::0;::::1;16456:21:1::0;16513:2;16493:18;;;16486:30;16552:26;16532:18;;;16525:54;16596:18;;53670:41:0::1;16272:348:1::0;37295:185:0;37433:39;37450:4;37456:2;37460:7;37433:39;;;;;;;;;;;;:16;:39::i;32100:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53225:90::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53294:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33748:326::-:0;33865:7;33906:16;;;:7;:16;;;;;;;;33955:19;33933:110;;;;;;;16827:2:1;33933:110:0;;;16809:21:1;16866:2;16846:18;;;16839:30;16905:34;16885:18;;;16878:62;16976:11;16956:18;;;16949:39;17005:19;;33933:110:0;16625:405:1;51006:383:0;51085:1;51073:9;:13;;;51065:52;;;;;;;17237:2:1;51065:52:0;;;17219:21:1;17276:2;17256:18;;;17249:30;17315:28;17295:18;;;17288:56;17361:18;;51065:52:0;17035:350:1;51065:52:0;51177:17;;51164:9;51150:23;;:11;;:23;;;;:::i;:::-;:44;;51128:113;;;;;;;17914:2:1;51128:113:0;;;17896:21:1;17953:2;17933:18;;;17926:30;17992:21;17972:18;;;17965:49;18031:18;;51128:113:0;17712:343:1;51128:113:0;51252:36;51262:10;51276:11;;51274:13;;;;;:::i;:::-;;;;;-1:-1:-1;51252:9:0;:36::i;:::-;51303:9;:14;;51316:1;51303:14;51299:83;;;51334:36;51344:10;51358:11;;51356:13;;;;;:::i;51334:36::-;51006:383;:::o;33391:295::-;33508:7;33555:19;;;33533:111;;;;;;;18462:2:1;33533:111:0;;;18444:21:1;18501:2;18481:18;;;18474:30;18540:34;18520:18;;;18513:62;18611:12;18591:18;;;18584:40;18641:19;;33533:111:0;18260:406:1;33533:111:0;-1:-1:-1;33662:16:0;;;;;;:9;:16;;;;;;;33391:295::o;13161:103::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;13226:30:::1;13253:1;13226:18;:30::i;:::-;13161:103::o:0;46803:51::-;;;;;;;;;;;;;;;;:::i;53803:128::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53888:26:::1;:35:::0;53803:128::o;34310:104::-;34366:13;34399:7;34392:14;;;;;:::i;36309:187::-;36436:52;11293:10;36469:8;36479;36436:18;:52::i;32056:31::-;;;;;;;:::i;37551:365::-;37740:41;11293:10;37773:7;37740:18;:41::i;:::-;37718:140;;;;;;;15846:2:1;37718:140:0;;;15828:21:1;15885:2;15865:18;;;15858:30;15924:34;15904:18;;;15897:62;15995:19;15975:18;;;15968:47;16032:19;;37718:140:0;15644:413:1;37718:140:0;37869:39;37883:4;37889:2;37893:7;37902:5;37869:13;:39::i;34485:563::-;39528:4;39552:16;;;:7;:16;;;;;;34603:13;;39552:30;:16;34634:113;;;;;;;18873:2:1;34634:113:0;;;18855:21:1;18912:2;18892:18;;;18885:30;18951:34;18931:18;;;18924:62;19022:17;19002:18;;;18995:45;19057:19;;34634:113:0;18671:411:1;34634:113:0;34764:8;;;;34760:72;;34802:17;34795:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34485:563;;;:::o;34760:72::-;34844:21;34868:10;:8;:10::i;:::-;34844:34;;34933:1;34915:7;34909:21;:25;:131;;;;;;;;;;;;;;;;;34978:7;34987:18;:7;:16;:18::i;:::-;35007:9;34961:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34909:131;34889:151;34485:563;-1:-1:-1;;;34485:563:0:o;51528:1689::-;51648:16;51656:7;51648;:16::i;:::-;51634:30;;:10;:30;;;51612:114;;;;;;;19843:2:1;51612:114:0;;;19825:21:1;19882:2;19862:18;;;19855:30;19921:34;19901:18;;;19894:62;19992:4;19972:18;;;19965:32;20014:19;;51612:114:0;19641:398:1;51612:114:0;51759:29;;;51798:1;51759:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;51737:136;;;;;;;20246:2:1;51737:136:0;;;20228:21:1;20285:2;20265:18;;;20258:30;20324:34;20304:18;;;20297:62;20395:16;20375:18;;;20368:44;20429:19;;51737:136:0;20044:410:1;51737:136:0;51953:14;51959:7;51953:5;:14::i;:::-;52064:31;;;52075:10;52064:31;;;20633:74:1;20723:18;;;20716:34;;;52064:31:0;;;;;;;;;20606:18:1;;;52064:31:0;;52292:26;;20932:16:1;52239:90:0;;;20916:102:1;21034:11;;;;21027:27;;;;52239:90:0;;;;;;;;;;21070:12:1;;;52239:90:0;;;;52508:8;;:153;;;;52064:31;;52198:1;;-1:-1:-1;;52508:8:0;;;;;;:21;;:153;;52544:8;;52575:4;;52064:31;;-1:-1:-1;;52239:90:0;;52508:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52483:178;;;52709:10;52696:9;:23;;52674:141;;;;;;;22215:2:1;52674:141:0;;;22197:21:1;22254:2;22234:18;;;22227:30;;;22293:34;22273:18;;;22266:62;22364:34;22344:18;;;22337:62;22436:6;22415:19;;;22408:35;22460:19;;52674:141:0;22013:472:1;52674:141:0;52828:8;;52920:29;;;;;;;:19;:29;;;;;;52828:381;;;;;:8;;;;;;;:13;;52849:9;;52828:381;;52920:29;;53003:7;;53059:10;;52920:29;53169:13;;52828:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51601:1616;;;;51528:1689;;:::o;49205:916::-;49464:27;;;49429:32;49464:27;;;:14;:27;;;;;;:64;;;;49506:11;;49464:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49569:21;;;;49464:72;;-1:-1:-1;49547:123:0;;;;;;;24239:2:1;49547:123:0;;;24221:21:1;24278:2;24258:18;;;24251:30;24317:34;24297:18;;;24290:62;24388:8;24368:18;;;24361:36;24414:19;;49547:123:0;24037:402:1;49547:123:0;49722:23;;49703:42;;:107;;;;;49789:9;:21;;;49776:8;;49766:19;;;;;;;:::i;:::-;;;;;;;;:44;49703:107;49681:183;;;;;;;24922:2:1;49681:183:0;;;24904:21:1;24961:2;24941:18;;;24934:30;25000:28;24980:18;;;24973:56;25046:18;;49681:183:0;24720:350:1;49681:183:0;49938:1;49912:27;;;49950:21;;;:34;50053:60;;;;;:4;;:16;;:60;;50070:11;;50083;;50096:6;;50104:8;;;;50053:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49373:748;49205:916;;;;;:::o;53327:83::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;53385:8:::1;:17:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;53327:83::o;50129:181::-;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;50256:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50288:14;;50256:46:::1;:::i;13419:238::-:0;12556:7;12583:6;12730:23;12583:6;11293:10;12730:23;12722:68;;;;;;;15073:2:1;12722:68:0;;;15055:21:1;;;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;15203:18;;12722:68:0;14871:356:1;12722:68:0;13522:22:::1;::::0;::::1;13500:110;;;::::0;::::1;::::0;;26059:2:1;13500:110:0::1;::::0;::::1;26041:21:1::0;26098:2;26078:18;;;26071:30;26137:34;26117:18;;;26110:62;26208:8;26188:18;;;26181:36;26234:19;;13500:110:0::1;25857:402:1::0;13500:110:0::1;13621:28;13640:8;13621:18;:28::i;43519:174::-:0;43594:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;43648:23;43594:24;43648:14;:23::i;:::-;43639:46;;;;;;;;;;;;43519:174;;:::o;54130:424::-;54326:14;54342:15;54386:8;54361:77;;;;;;;;;;;;:::i;:::-;54325:113;;;;54520:26;54530:6;54538:7;54520:9;:26::i;:::-;54295:259;;54130:424;;;;:::o;39757:452::-;39886:4;39552:16;;;:7;:16;;;;;;:30;:16;39908:110;;;;;;;26791:2:1;39908:110:0;;;26773:21:1;26830:2;26810:18;;;26803:30;26869:34;26849:18;;;26842:62;26940:14;26920:18;;;26913:42;26972:19;;39908:110:0;26589:408:1;39908:110:0;40029:13;40045:23;40060:7;40045:14;:23::i;:::-;40029:39;;40098:5;40087:16;;:7;:16;;;:64;;;;40144:7;40120:31;;:20;40132:7;40120:11;:20::i;:::-;:31;;;40087:64;:113;;;-1:-1:-1;36738:25:0;;;;36709:4;36738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40168:32;40079:122;39757:452;-1:-1:-1;;;;39757:452:0:o;42786:615::-;42959:4;42932:31;;:23;42947:7;42932:14;:23::i;:::-;:31;;;42910:122;;;;;;;27204:2:1;42910:122:0;;;27186:21:1;27243:2;27223:18;;;27216:30;27282:34;27262:18;;;27255:62;27353:11;27333:18;;;27326:39;27382:19;;42910:122:0;27002:405:1;42910:122:0;43051:16;;;43043:65;;;;;;;27614:2:1;43043:65:0;;;27596:21:1;27653:2;27633:18;;;27626:30;27692:34;27672:18;;;27665:62;27763:6;27743:18;;;27736:34;27787:19;;43043:65:0;27412:400:1;43043:65:0;43225:29;43242:1;43246:7;43225:8;:29::i;:::-;43267:15;;;;;;;:9;:15;;;;;:20;;43286:1;;43267:15;:20;;43286:1;;43267:20;:::i;:::-;;;;-1:-1:-1;;43298:13:0;;;;;;;:9;:13;;;;;:18;;43315:1;;43298:13;:18;;43315:1;;43298:18;:::i;:::-;;;;-1:-1:-1;;43327:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;43366:27;;43327:16;;43366:27;;;;;;;42786:615;;;:::o;40551:110::-;40627:26;40637:2;40641:7;40627:26;;;;;;;;;;;;:9;:26::i;13817:191::-;13891:16;13910:6;;;13927:17;;;;;;;;;;13960:40;;13910:6;;;;;;;13960:40;;13891:16;13960:40;13880:128;13817:191;:::o;43835:315::-;43990:8;43981:17;;:5;:17;;;;43973:55;;;;;;;28149:2:1;43973:55:0;;;28131:21:1;28188:2;28168:18;;;28161:30;28227:27;28207:18;;;28200:55;28272:18;;43973:55:0;27947:349:1;43973:55:0;44039:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;44101:41;;2724::1;;;44101::0;;2697:18:1;44101:41:0;;;;;;;43835:315;;;:::o;38798:352::-;38955:28;38965:4;38971:2;38975:7;38955:9;:28::i;:::-;39016:48;39039:4;39045:2;39049:7;39058:5;39016:22;:48::i;:::-;38994:148;;;;;;;28503:2:1;38994:148:0;;;28485:21:1;28542:2;28522:18;;;28515:30;28581:34;28561:18;;;28554:62;28652:20;28632:18;;;28625:48;28690:19;;38994:148:0;28301:414:1;54562:100:0;54614:13;54647:7;54640:14;;;;;:::i;8745:723::-;8801:13;9022:10;9018:53;;-1:-1:-1;;9049:10:0;;;;;;;;;;;;;;;;;;8745:723::o;9018:53::-;9096:5;9081:12;9137:78;9144:9;;9137:78;;9170:8;;;;:::i;:::-;;-1:-1:-1;9193:10:0;;-1:-1:-1;9201:2:0;9193:10;;:::i;:::-;;;9137:78;;;9225:19;9257:6;9247:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9247:17:0;;9225:39;;9275:154;9282:10;;9275:154;;9309:11;9319:1;9309:11;;:::i;:::-;;-1:-1:-1;9378:10:0;9386:2;9378:5;:10;:::i;:::-;9365:24;;:2;:24;:::i;:::-;9352:39;;9335:6;9342;9335:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9406:11:0;9415:2;9406:11;;:::i;:::-;;;9275:154;;42089:360;42149:13;42165:23;42180:7;42165:14;:23::i;:::-;42149:39;;42290:29;42307:1;42311:7;42290:8;:29::i;:::-;42332:16;;;;;;;:9;:16;;;;;:21;;42352:1;;42332:16;:21;;42352:1;;42332:21;:::i;:::-;;;;-1:-1:-1;;42371:16:0;;;;:7;:16;;;;;;42364:23;;;;;;42405:36;42379:7;;42371:16;42364:23;42405:36;;;;;42371:16;;42405:36;42138:311;42089:360;:::o;40888:321::-;41018:18;41024:2;41028:7;41018:5;:18::i;:::-;41069:54;41100:1;41104:2;41108:7;41117:5;41069:22;:54::i;:::-;41047:154;;;;;;;28503:2:1;41047:154:0;;;28485:21:1;28542:2;28522:18;;;28515:30;28581:34;28561:18;;;28554:62;28652:20;28632:18;;;28625:48;28690:19;;41047:154:0;28301:414:1;44715:980:0;44870:4;44891:13;;;15156:20;15204:8;44887:801;;44944:175;;;;;:36;;;;;;:175;;11293:10;;45038:4;;45065:7;;45095:5;;44944:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44944:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44923:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45302:13:0;;45298:320;;45345:108;;;;;28503:2:1;45345:108:0;;;28485:21:1;28542:2;28522:18;;;28515:30;28581:34;28561:18;;;28554:62;28652:20;28632:18;;;28625:48;28690:19;;45345:108:0;28301:414:1;45298:320:0;45568:6;45562:13;45553:6;45549:2;45545:15;45538:38;44923:710;45183:51;;45193:41;45183:51;;-1:-1:-1;45176:58:0;;44887:801;-1:-1:-1;45672:4:0;44715:980;;;;;;:::o;41547:313::-;41627:16;;;41619:61;;;;;;;30313:2:1;41619:61:0;;;30295:21:1;;;30332:18;;;30325:30;30391:34;30371:18;;;30364:62;30443:18;;41619:61:0;30111:356:1;41619:61:0;41751:13;;;;;;;:9;:13;;;;;:18;;41768:1;;41751:13;:18;;41768:1;;41751:18;:::i;:::-;;;;-1:-1:-1;;41780:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;41819:33;;41780:16;;;41819:33;;41780:16;;41819:33;41547:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:184::-;230:77;227:1;220:88;327:4;324:1;317:15;351:4;348:1;341:15;367:690;431:5;461:18;502:2;494:6;491:14;488:40;;;508:18;;:::i;:::-;642:2;636:9;708:2;696:15;;547:66;692:24;;;718:2;688:33;684:42;672:55;;;742:18;;;762:22;;;739:46;736:72;;;788:18;;:::i;:::-;828:10;824:2;817:22;857:6;848:15;;887:6;879;872:22;927:3;918:6;913:3;909:16;906:25;903:45;;;944:1;941;934:12;903:45;994:6;989:3;982:4;974:6;970:17;957:44;1049:1;1042:4;1033:6;1025;1021:19;1017:30;1010:41;;;;367:690;;;;;:::o;1062:220::-;1104:5;1157:3;1150:4;1142:6;1138:17;1134:27;1124:55;;1175:1;1172;1165:12;1124:55;1197:79;1272:3;1263:6;1250:20;1243:4;1235:6;1231:17;1197:79;:::i;1287:171::-;1354:20;;1414:18;1403:30;;1393:41;;1383:69;;1448:1;1445;1438:12;1463:684;1565:6;1573;1581;1589;1642:3;1630:9;1621:7;1617:23;1613:33;1610:53;;;1659:1;1656;1649:12;1610:53;1682:28;1700:9;1682:28;:::i;:::-;1672:38;;1761:2;1750:9;1746:18;1733:32;1784:18;1825:2;1817:6;1814:14;1811:34;;;1841:1;1838;1831:12;1811:34;1864:49;1905:7;1896:6;1885:9;1881:22;1864:49;:::i;:::-;1854:59;;1932:37;1965:2;1954:9;1950:18;1932:37;:::i;:::-;1922:47;;2022:2;2011:9;2007:18;1994:32;1978:48;;2051:2;2041:8;2038:16;2035:36;;;2067:1;2064;2057:12;2035:36;;2090:51;2133:7;2122:8;2111:9;2107:24;2090:51;:::i;:::-;2080:61;;;1463:684;;;;;;;:::o;2152:177::-;2237:66;2230:5;2226:78;2219:5;2216:89;2206:117;;2319:1;2316;2309:12;2334:245;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2500:9;2487:23;2519:30;2543:5;2519:30;:::i;2776:258::-;2848:1;2858:113;2872:6;2869:1;2866:13;2858:113;;;2948:11;;;2942:18;2929:11;;;2922:39;2894:2;2887:10;2858:113;;;2989:6;2986:1;2983:13;2980:48;;;-1:-1:-1;;3024:1:1;3006:16;;2999:27;2776:258::o;3039:317::-;3081:3;3119:5;3113:12;3146:6;3141:3;3134:19;3162:63;3218:6;3211:4;3206:3;3202:14;3195:4;3188:5;3184:16;3162:63;:::i;:::-;3270:2;3258:15;3275:66;3254:88;3245:98;;;;3345:4;3241:109;;3039:317;-1:-1:-1;;3039:317:1:o;3361:220::-;3510:2;3499:9;3492:21;3473:4;3530:45;3571:2;3560:9;3556:18;3548:6;3530:45;:::i;3586:180::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;-1:-1:-1;3737:23:1;;3586:180;-1:-1:-1;3586:180:1:o;4134:154::-;4220:42;4213:5;4209:54;4202:5;4199:65;4189:93;;4278:1;4275;4268:12;4293:315;4361:6;4369;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4477:9;4464:23;4496:31;4521:5;4496:31;:::i;:::-;4546:5;4598:2;4583:18;;;;4570:32;;-1:-1:-1;;;4293:315:1:o;4613:450::-;4682:6;4735:2;4723:9;4714:7;4710:23;4706:32;4703:52;;;4751:1;4748;4741:12;4703:52;4791:9;4778:23;4824:18;4816:6;4813:30;4810:50;;;4856:1;4853;4846:12;4810:50;4879:22;;4932:4;4924:13;;4920:27;-1:-1:-1;4910:55:1;;4961:1;4958;4951:12;4910:55;4984:73;5049:7;5044:2;5031:16;5026:2;5022;5018:11;4984:73;:::i;5068:456::-;5145:6;5153;5161;5214:2;5202:9;5193:7;5189:23;5185:32;5182:52;;;5230:1;5227;5220:12;5182:52;5269:9;5256:23;5288:31;5313:5;5288:31;:::i;:::-;5338:5;-1:-1:-1;5395:2:1;5380:18;;5367:32;5408:33;5367:32;5408:33;:::i;:::-;5068:456;;5460:7;;-1:-1:-1;;;5514:2:1;5499:18;;;;5486:32;;5068:456::o;5529:269::-;5586:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5744:4;5737:5;5733:16;5726:5;5723:27;5713:55;;5764:1;5761;5754:12;5803:247;5862:6;5915:2;5903:9;5894:7;5890:23;5886:32;5883:52;;;5931:1;5928;5921:12;5883:52;5970:9;5957:23;5989:31;6014:5;5989:31;:::i;6237:184::-;6295:6;6348:2;6336:9;6327:7;6323:23;6319:32;6316:52;;;6364:1;6361;6354:12;6316:52;6387:28;6405:9;6387:28;:::i;6649:460::-;6734:6;6742;6750;6803:2;6791:9;6782:7;6778:23;6774:32;6771:52;;;6819:1;6816;6809:12;6771:52;6842:28;6860:9;6842:28;:::i;:::-;6832:38;;6921:2;6910:9;6906:18;6893:32;6948:18;6940:6;6937:30;6934:50;;;6980:1;6977;6970:12;6934:50;7003:49;7044:7;7035:6;7024:9;7020:22;7003:49;:::i;:::-;6993:59;;;7099:2;7088:9;7084:18;7071:32;7061:42;;6649:460;;;;;:::o;7367:160::-;7432:20;;7488:13;;7481:21;7471:32;;7461:60;;7517:1;7514;7507:12;7532:315;7597:6;7605;7658:2;7646:9;7637:7;7633:23;7629:32;7626:52;;;7674:1;7671;7664:12;7626:52;7713:9;7700:23;7732:31;7757:5;7732:31;:::i;:::-;7782:5;-1:-1:-1;7806:35:1;7837:2;7822:18;;7806:35;:::i;:::-;7796:45;;7532:315;;;;;:::o;7852:665::-;7947:6;7955;7963;7971;8024:3;8012:9;8003:7;7999:23;7995:33;7992:53;;;8041:1;8038;8031:12;7992:53;8080:9;8067:23;8099:31;8124:5;8099:31;:::i;:::-;8149:5;-1:-1:-1;8206:2:1;8191:18;;8178:32;8219:33;8178:32;8219:33;:::i;:::-;8271:7;-1:-1:-1;8325:2:1;8310:18;;8297:32;;-1:-1:-1;8380:2:1;8365:18;;8352:32;8407:18;8396:30;;8393:50;;;8439:1;8436;8429:12;8393:50;8462:49;8503:7;8494:6;8483:9;8479:22;8462:49;:::i;8522:252::-;8589:6;8597;8650:2;8638:9;8629:7;8625:23;8621:32;8618:52;;;8666:1;8663;8656:12;8618:52;8689:28;8707:9;8689:28;:::i;8779:347::-;8830:8;8840:6;8894:3;8887:4;8879:6;8875:17;8871:27;8861:55;;8912:1;8909;8902:12;8861:55;-1:-1:-1;8935:20:1;;8978:18;8967:30;;8964:50;;;9010:1;9007;9000:12;8964:50;9047:4;9039:6;9035:17;9023:29;;9099:3;9092:4;9083:6;9075;9071:19;9067:30;9064:39;9061:59;;;9116:1;9113;9106:12;9061:59;8779:347;;;;;:::o;9131:773::-;9235:6;9243;9251;9259;9267;9320:3;9308:9;9299:7;9295:23;9291:33;9288:53;;;9337:1;9334;9327:12;9288:53;9360:28;9378:9;9360:28;:::i;:::-;9350:38;;9439:2;9428:9;9424:18;9411:32;9462:18;9503:2;9495:6;9492:14;9489:34;;;9519:1;9516;9509:12;9489:34;9542:49;9583:7;9574:6;9563:9;9559:22;9542:49;:::i;:::-;9532:59;;9610:37;9643:2;9632:9;9628:18;9610:37;:::i;:::-;9600:47;;9700:2;9689:9;9685:18;9672:32;9656:48;;9729:2;9719:8;9716:16;9713:36;;;9745:1;9742;9735:12;9713:36;;9784:60;9836:7;9825:8;9814:9;9810:24;9784:60;:::i;:::-;9131:773;;;;-1:-1:-1;9131:773:1;;-1:-1:-1;9863:8:1;;9758:86;9131:773;-1:-1:-1;;;9131:773:1:o;9909:180::-;9965:6;10018:2;10006:9;9997:7;9993:23;9989:32;9986:52;;;10034:1;10031;10024:12;9986:52;10057:26;10073:9;10057:26;:::i;10094:388::-;10162:6;10170;10223:2;10211:9;10202:7;10198:23;10194:32;10191:52;;;10239:1;10236;10229:12;10191:52;10278:9;10265:23;10297:31;10322:5;10297:31;:::i;:::-;10347:5;-1:-1:-1;10404:2:1;10389:18;;10376:32;10417:33;10376:32;10417:33;:::i;:::-;10469:7;10459:17;;;10094:388;;;;;:::o;10487:481::-;10565:6;10573;10581;10634:2;10622:9;10613:7;10609:23;10605:32;10602:52;;;10650:1;10647;10640:12;10602:52;10673:28;10691:9;10673:28;:::i;:::-;10663:38;;10752:2;10741:9;10737:18;10724:32;10779:18;10771:6;10768:30;10765:50;;;10811:1;10808;10801:12;10765:50;10850:58;10900:7;10891:6;10880:9;10876:22;10850:58;:::i;:::-;10487:481;;10927:8;;-1:-1:-1;10824:84:1;;-1:-1:-1;;;;10487:481:1:o;10973:437::-;11052:1;11048:12;;;;11095;;;11116:61;;11170:4;11162:6;11158:17;11148:27;;11116:61;11223:2;11215:6;11212:14;11192:18;11189:38;11186:218;;;11260:77;11257:1;11250:88;11361:4;11358:1;11351:15;11389:4;11386:1;11379:15;11186:218;;10973:437;;;:::o;11415:750::-;11464:3;11505:5;11499:12;11534:36;11560:9;11534:36;:::i;:::-;11589:1;11606:18;;;11633:162;;;;11809:1;11804:355;;;;11599:560;;11633:162;11681:66;11670:9;11666:82;11661:3;11654:95;11778:6;11773:3;11769:16;11762:23;;11633:162;;11804:355;11835:5;11832:1;11825:16;11864:4;11909:2;11906:1;11896:16;11934:1;11948:165;11962:6;11959:1;11956:13;11948:165;;;12040:14;;12027:11;;;12020:35;12083:16;;;;11977:10;;11948:165;;;11952:3;;;12142:6;12137:3;12133:16;12126:23;;11599:560;;;;;11415:750;;;;:::o;12170:194::-;12296:3;12321:37;12354:3;12346:6;12321:37;:::i;12790:557::-;13047:6;13039;13035:19;13024:9;13017:38;13091:3;13086:2;13075:9;13071:18;13064:31;12998:4;13118:46;13159:3;13148:9;13144:19;13136:6;13118:46;:::i;:::-;13212:18;13204:6;13200:31;13195:2;13184:9;13180:18;13173:59;13280:9;13272:6;13268:22;13263:2;13252:9;13248:18;13241:50;13308:33;13334:6;13326;13308:33;:::i;:::-;13300:41;12790:557;-1:-1:-1;;;;;;;12790:557:1:o;13352:274::-;13481:3;13519:6;13513:13;13535:53;13581:6;13576:3;13569:4;13561:6;13557:17;13535:53;:::i;:::-;13604:16;;;;;13352:274;-1:-1:-1;;13352:274:1:o;17390:184::-;17442:77;17439:1;17432:88;17539:4;17536:1;17529:15;17563:4;17560:1;17553:15;17579:128;17619:3;17650:1;17646:6;17643:1;17640:13;17637:39;;;17656:18;;:::i;:::-;-1:-1:-1;17692:9:1;;17579:128::o;18060:195::-;18099:3;18130:66;18123:5;18120:77;18117:103;;;18200:18;;:::i;:::-;-1:-1:-1;18247:1:1;18236:13;;18060:195::o;19087:549::-;19311:3;19349:6;19343:13;19365:53;19411:6;19406:3;19399:4;19391:6;19387:17;19365:53;:::i;:::-;19481:13;;19440:16;;;;19503:57;19481:13;19440:16;19537:4;19525:17;;19503:57;:::i;:::-;19576:54;19620:8;19613:5;19609:20;19601:6;19576:54;:::i;21093:665::-;21374:6;21366;21362:19;21351:9;21344:38;21430:42;21422:6;21418:55;21413:2;21402:9;21398:18;21391:83;21510:3;21505:2;21494:9;21490:18;21483:31;21325:4;21537:46;21578:3;21567:9;21563:19;21555:6;21537:46;:::i;:::-;21633:6;21626:14;21619:22;21614:2;21603:9;21599:18;21592:50;21691:9;21683:6;21679:22;21673:3;21662:9;21658:19;21651:51;21719:33;21745:6;21737;21719:33;:::i;:::-;21711:41;21093:665;-1:-1:-1;;;;;;;;21093:665:1:o;21763:245::-;21842:6;21850;21903:2;21891:9;21882:7;21878:23;21874:32;21871:52;;;21919:1;21916;21909:12;21871:52;-1:-1:-1;;21942:16:1;;21998:2;21983:18;;;21977:25;21942:16;;21977:25;;-1:-1:-1;21763:245:1:o;22490:1542::-;22836:6;22828;22824:19;22813:9;22806:38;22787:4;22863:2;22901:3;22896:2;22885:9;22881:18;22874:31;22925:1;22958:6;22952:13;22988:36;23014:9;22988:36;:::i;:::-;23061:6;23055:3;23044:9;23040:19;23033:35;23087:3;23109:1;23141:2;23130:9;23126:18;23158:1;23153:180;;;;23347:1;23342:354;;;;23119:577;;23153:180;23216:66;23205:9;23201:82;23196:2;23185:9;23181:18;23174:110;23319:3;23308:9;23304:19;23297:26;;23153:180;;23342:354;23373:6;23370:1;23363:17;23421:2;23418:1;23408:16;23446:1;23460:180;23474:6;23471:1;23468:13;23460:180;;;23567:14;;23543:17;;;23539:26;;23532:50;23610:16;;;;23489:10;;23460:180;;;23664:17;;23660:26;;;-1:-1:-1;;23119:577:1;;;;;;23741:9;23736:3;23732:19;23727:2;23716:9;23712:18;23705:47;23775:30;23801:3;23793:6;23775:30;:::i;:::-;23761:44;;;23814:46;23856:2;23845:9;23841:18;23833:6;3848:42;3837:54;3825:67;;3771:127;23814:46;3848:42;3837:54;;23911:3;23896:19;;3825:67;23965:9;23957:6;23953:22;23947:3;23936:9;23932:19;23925:51;23993:33;24019:6;24011;23993:33;:::i;:::-;23985:41;22490:1542;-1:-1:-1;;;;;;;;;22490:1542:1:o;24444:271::-;24627:6;24619;24614:3;24601:33;24583:3;24653:16;;24678:13;;;24653:16;24444:271;-1:-1:-1;24444:271:1:o;25075:777::-;25342:6;25334;25330:19;25319:9;25312:38;25386:3;25381:2;25370:9;25366:18;25359:31;25293:4;25413:46;25454:3;25443:9;25439:19;25431:6;25413:46;:::i;:::-;25507:18;25499:6;25495:31;25490:2;25479:9;25475:18;25468:59;25575:9;25567:6;25563:22;25558:2;25547:9;25543:18;25536:50;25610:6;25602;25595:22;25664:6;25656;25651:2;25643:6;25639:15;25626:45;25717:1;25712:2;25703:6;25695;25691:19;25687:28;25680:39;25843:2;25773:66;25768:2;25760:6;25756:15;25752:88;25744:6;25740:101;25736:110;25728:118;;;25075:777;;;;;;;;:::o;26264:320::-;26351:6;26359;26412:2;26400:9;26391:7;26387:23;26383:32;26380:52;;;26428:1;26425;26418:12;26380:52;26460:9;26454:16;26479:31;26504:5;26479:31;:::i;:::-;26574:2;26559:18;;;;26553:25;26529:5;;26553:25;;-1:-1:-1;;;26264:320:1:o;27817:125::-;27857:4;27885:1;27882;27879:8;27876:34;;;27890:18;;:::i;:::-;-1:-1:-1;27927:9:1;;27817:125::o;28720:184::-;28772:77;28769:1;28762:88;28869:4;28866:1;28859:15;28893:4;28890:1;28883:15;28909:120;28949:1;28975;28965:35;;28980:18;;:::i;:::-;-1:-1:-1;29014:9:1;;28909:120::o;29034:112::-;29066:1;29092;29082:35;;29097:18;;:::i;:::-;-1:-1:-1;29131:9:1;;29034:112::o;29151:184::-;29203:77;29200:1;29193:88;29300:4;29297:1;29290:15;29324:4;29321:1;29314:15;29340:512;29534:4;29563:42;29644:2;29636:6;29632:15;29621:9;29614:34;29696:2;29688:6;29684:15;29679:2;29668:9;29664:18;29657:43;;29736:6;29731:2;29720:9;29716:18;29709:34;29779:3;29774:2;29763:9;29759:18;29752:31;29800:46;29841:3;29830:9;29826:19;29818:6;29800:46;:::i;:::-;29792:54;29340:512;-1:-1:-1;;;;;;29340:512:1:o;29857:249::-;29926:6;29979:2;29967:9;29958:7;29954:23;29950:32;29947:52;;;29995:1;29992;29985:12;29947:52;30027:9;30021:16;30046:30;30070:5;30046:30;:::i

Swarm Source

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