ETH Price: $3,287.20 (-0.29%)

Token

nb4 (nb4)
 

Overview

Max Total Supply

0 nb4

Holders

119

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 nb4
0xfc5187b7fdf2a2eab07f71129c1720c7d09a80e3
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:
nb4

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-17
*/

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

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/NonblockingReceiver.sol

pragma solidity ^0.8.6;

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint256 payloadLength;
        bytes32 payloadHash;
    }

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

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

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

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

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

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

    // abstract function
    function _LzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function _lzSend(
        uint16 _dstChainId,
        bytes memory _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _txParam
    ) internal {
        endpoint.send{value: msg.value}(
            _dstChainId,
            trustedRemoteLookup[_dstChainId],
            _payload,
            _refundAddress,
            _zroPaymentAddress,
            _txParam
        );
    }

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

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

    function setTrustedRemotes(
        uint16[] calldata chainIds,
        bytes[] calldata addresses
    ) external onlyOwner {
        for (uint256 i = 0; i < chainIds.length; i++) {
            trustedRemoteLookup[chainIds[i]] = addresses[i];
        }
    }
}

// File: contracts/nb4-eth.sol

pragma solidity ^0.8.7;

contract nb4 is Ownable, ERC721, NonblockingReceiver {
    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 634;
    uint256 MAX_MINT_ETH = 1234;
    uint256 maxMintTx = 5;
    uint256 maxMintWallet = 10;
    uint256 public immutable startTimestamp;
    bool public paused = false;

    uint256 gasForDestinationLzReceive = 350000;

    constructor(
        string memory baseURI_,
        address _layerZeroEndpoint,
        uint256 _startTimestamp
    ) ERC721("nb4", "nb4") {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
        startTimestamp = _startTimestamp;
    }

    // mint function
    // you can choose to mint 1 to 5
    function free_mint(uint8 numTokens) external {
        require(block.timestamp >= startTimestamp, "not live yet");
        require(!paused, "mint is on pause");
        require(numTokens <= maxMintTx, "nb4: max 5 per transaction");
        require(
            numTokens + balanceOf(msg.sender) <= maxMintWallet,
            "nb4: max wallet limit reached"
        );
        require(
            nextTokenId + numTokens <= MAX_MINT_ETH,
            "nb4: mint exceeds supply"
        );
        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function setPauseState(bool state) external onlyOwner {
        paused = state;
    }

    /**
     * pre-mint for community giveaways
     */
    function ownerGiveawayMint(uint8 numTokens) public onlyOwner {
        require(
            nextTokenId + numTokens <= MAX_MINT_ETH,
            "nb4: mint exceeds supply"
        );

        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"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":"uint8","name":"numTokens","type":"uint8"}],"name":"free_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"uint8","name":"numTokens","type":"uint8"}],"name":"ownerGiveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setPauseState","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":"uint16[]","name":"chainIds","type":"uint16[]"},{"internalType":"bytes[]","name":"addresses","type":"bytes[]"}],"name":"setTrustedRemotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405261027a600c556104d2600d556005600e55600a600f556010805460ff19169055620557306011553480156200003857600080fd5b5060405162003250380380620032508339810160408190526200005b916200023d565b604051806040016040528060038152602001621b988d60ea1b815250604051806040016040528060038152602001621b988d60ea1b815250620000ad620000a76200012660201b60201c565b6200012a565b8151620000c29060019060208501906200017a565b508051620000d89060029060208401906200017a565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0385161790555082516200011990600b9060208601906200017a565b50608052506200038a9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001889062000337565b90600052602060002090601f016020900481019282620001ac5760008555620001f7565b82601f10620001c757805160ff1916838001178555620001f7565b82800160010185558215620001f7579182015b82811115620001f7578251825591602001919060010190620001da565b506200020592915062000209565b5090565b5b808211156200020557600081556001016200020a565b80516001600160a01b03811681146200023857600080fd5b919050565b6000806000606084860312156200025357600080fd5b83516001600160401b03808211156200026b57600080fd5b818601915086601f8301126200028057600080fd5b81518181111562000295576200029562000374565b604051601f8201601f19908116603f01168101908382118183101715620002c057620002c062000374565b81604052828152602093508984848701011115620002dd57600080fd5b600091505b82821015620003015784820184015181830185015290830190620002e2565b82821115620003135760008484830101525b96506200032591505086820162000220565b93505050604084015190509250925092565b600181811c908216806200034c57607f821691505b602082108114156200036e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051612ea3620003ad600039600081816105c10152610ece0152612ea36000f3fe6080604052600436106101f85760003560e01c80638ee749121161010d578063cf89fa03116100a0578063eb8d72b71161006f578063eb8d72b71461062c578063ed88c68e1461021d578063f2fde38b1461064c578063f355a70c1461066c578063f7bf55601461068c57600080fd5b8063cf89fa0314610589578063d1deba1f1461059c578063e6fd48bc146105af578063e985e9c5146105e357600080fd5b8063b2bdfa7b116100dc578063b2bdfa7b14610509578063b88d4fde14610529578063c87b56dd14610549578063cdb88ad11461056957600080fd5b80638ee7491214610449578063943fb872146104b457806395d89b41146104d4578063a22cb465146104e957600080fd5b806342842e0e1161019057806370a082311161015f57806370a08231146103a8578063715018a6146103d65780637533d788146103eb5780637c8813ef1461040b5780638da5cb5b1461042b57600080fd5b806342842e0e1461032e57806355f804b31461034e5780635c975abb1461036e5780636352211e1461038857600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631c37a822146102ce57806323b872dd146102ee5780632e1a7d4d1461030e57600080fd5b80621d3567146101fd57806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276575b600080fd5b34801561020957600080fd5b5061021d6102183660046127d8565b6106ac565b005b34801561022b57600080fd5b5061023f61023a366004612608565b6108a6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696108f8565b60405161024b9190612a02565b34801561028257600080fd5b5061029661029136600461286c565b61098a565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c9366004612556565b610a1f565b3480156102da57600080fd5b5061021d6102e93660046127d8565b610b35565b3480156102fa57600080fd5b5061021d610309366004612475565b610ba4565b34801561031a57600080fd5b5061021d61032936600461286c565b610bd5565b34801561033a57600080fd5b5061021d610349366004612475565b610ca6565b34801561035a57600080fd5b5061021d610369366004612642565b610cc1565b34801561037a57600080fd5b5060105461023f9060ff1681565b34801561039457600080fd5b506102966103a336600461286c565b610cfe565b3480156103b457600080fd5b506103c86103c33660046123f1565b610d75565b60405190815260200161024b565b3480156103e257600080fd5b5061021d610dfc565b3480156103f757600080fd5b5061026961040636600461268a565b610e32565b34801561041757600080fd5b5061021d6104263660046128a9565b610ecc565b34801561043757600080fd5b506000546001600160a01b0316610296565b34801561045557600080fd5b5061049f6104643660046126f7565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161024b565b3480156104c057600080fd5b5061021d6104cf36600461286c565b6110c7565b3480156104e057600080fd5b506102696110f6565b3480156104f557600080fd5b5061021d610504366004612521565b611105565b34801561051557600080fd5b50600a54610296906001600160a01b031681565b34801561053557600080fd5b5061021d6105443660046124b6565b611110565b34801561055557600080fd5b5061026961056436600461286c565b611142565b34801561057557600080fd5b5061021d6105843660046125ed565b61121d565b61021d610597366004612850565b61125a565b61021d6105aa36600461274d565b61153c565b3480156105bb57600080fd5b506103c87f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ef57600080fd5b5061023f6105fe36600461243c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063857600080fd5b5061021d6106473660046126a5565b6116c9565b34801561065857600080fd5b5061021d6106673660046123f1565b611711565b34801561067857600080fd5b5061021d6106873660046128a9565b6117ac565b34801561069857600080fd5b5061021d6106a7366004612582565b611866565b6007546001600160a01b031633146106c357600080fd5b61ffff8416600090815260096020526040902080546106e190612d80565b90508351148015610720575061ffff841660009081526009602052604090819020905161070e9190612924565b60405180910390208380519060200120145b61078e5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107b7908790879087908790600401612ba2565b600060405180830381600087803b1580156107d157600080fd5b505af19250505080156107e2575060015b6108a0576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161082c9190612908565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610897908690869086908690612ba2565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806108d757506001600160e01b03198216635b5e139f60e01b145b806108f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461090790612d80565b80601f016020809104026020016040519081016040528092919081815260200182805461093390612d80565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610785565b506000908152600560205260409020546001600160a01b031690565b6000610a2a82610cfe565b9050806001600160a01b0316836001600160a01b03161415610a985760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610785565b336001600160a01b0382161480610ab45750610ab481336105fe565b610b265760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610785565b610b308383611923565b505050565b333014610b985760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610785565b6108a084848484611991565b610bae33826119be565b610bca5760405162461bcd60e51b815260040161078590612a9c565b610b30838383611ab5565b6000546001600160a01b03163314610bff5760405162461bcd60e51b815260040161078590612a67565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610c4c576040519150601f19603f3d011682016040523d82523d6000602084013e610c51565b606091505b5050905080610ca25760405162461bcd60e51b815260206004820152601d60248201527f6e62343a204661696c656420746f2077697468647261772045746865720000006044820152606401610785565b5050565b610b3083838360405180602001604052806000815250611110565b6000546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161078590612a67565b8051610ca290600b906020840190612185565b6000818152600360205260408120546001600160a01b0316806108f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610785565b60006001600160a01b038216610de05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610785565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e265760405162461bcd60e51b815260040161078590612a67565b610e306000611c55565b565b60096020526000908152604090208054610e4b90612d80565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7790612d80565b8015610ec45780601f10610e9957610100808354040283529160200191610ec4565b820191906000526020600020905b815481529060010190602001808311610ea757829003601f168201915b505050505081565b7f0000000000000000000000000000000000000000000000000000000000000000421015610f2b5760405162461bcd60e51b815260206004820152600c60248201526b1b9bdd081b1a5d99481e595d60a21b6044820152606401610785565b60105460ff1615610f715760405162461bcd60e51b815260206004820152601060248201526f6d696e74206973206f6e20706175736560801b6044820152606401610785565b600e548160ff161115610fc65760405162461bcd60e51b815260206004820152601a60248201527f6e62343a206d6178203520706572207472616e73616374696f6e0000000000006044820152606401610785565b600f54610fd233610d75565b610fdf9060ff8416612d11565b111561102d5760405162461bcd60e51b815260206004820152601d60248201527f6e62343a206d61782077616c6c6574206c696d697420726561636865640000006044820152606401610785565b600d548160ff16600c546110419190612d11565b111561108a5760405162461bcd60e51b81526020600482015260186024820152776e62343a206d696e74206578636565647320737570706c7960401b6044820152606401610785565b60005b8160ff16811015610ca2576110b533600c600081546110ab90612dbb565b9182905550611ca5565b806110bf81612dbb565b91505061108d565b6000546001600160a01b031633146110f15760405162461bcd60e51b815260040161078590612a67565b601155565b60606002805461090790612d80565b610ca2338383611cbf565b61111a33836119be565b6111365760405162461bcd60e51b815260040161078590612a9c565b6108a084848484611d8e565b6000818152600360205260409020546060906001600160a01b03166111c15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610785565b60006111cb611dc1565b905060008151116111eb5760405180602001604052806000815250611216565b806111f584611dd0565b604051602001611206929190612996565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112475760405162461bcd60e51b815260040161078590612a67565b6010805460ff1916911515919091179055565b61126381610cfe565b6001600160a01b0316336001600160a01b0316146112ce5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610785565b61ffff8216600090815260096020526040812080546112ec90612d80565b9050116113525760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610785565b61135b81611ecd565b60408051336020820152808201839052815180820383018152606082018352601154600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906113de908990309089908790899060a601612aed565b604080518083038186803b1580156113f557600080fd5b505afa158015611409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142d9190612885565b509050803410156114b75760405162461bcd60e51b815260206004820152604860248201527f6e62343a206d73672e76616c7565206e6f7420656e6f75676820746f20636f7660448201527f6572206d6573736167654665652e2053656e642067617320666f72206d657373606482015267616765206665657360c01b608482015260a401610785565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611502928c928b913391908b90600401612beb565b6000604051808303818588803b15801561151b57600080fd5b505af115801561152f573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161155d908790612908565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506115e45760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610785565b80548214801561160e5750806001015483836040516116049291906128f8565b6040518091039020145b61165a5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610785565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061168f9089908990899089908990600401612b41565b600060405180830381600087803b1580156116a957600080fd5b505af11580156116bd573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146116f35760405162461bcd60e51b815260040161078590612a67565b61ffff831660009081526009602052604090206108a0908383612209565b6000546001600160a01b0316331461173b5760405162461bcd60e51b815260040161078590612a67565b6001600160a01b0381166117a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610785565b6117a981611c55565b50565b6000546001600160a01b031633146117d65760405162461bcd60e51b815260040161078590612a67565b600d548160ff16600c546117ea9190612d11565b11156118335760405162461bcd60e51b81526020600482015260186024820152776e62343a206d696e74206578636565647320737570706c7960401b6044820152606401610785565b60005b8160ff16811015610ca25761185433600c600081546110ab90612dbb565b8061185e81612dbb565b915050611836565b6000546001600160a01b031633146118905760405162461bcd60e51b815260040161078590612a67565b60005b8381101561191c578282828181106118ad576118ad612e16565b90506020028101906118bf9190612ccb565b600960008888868181106118d5576118d5612e16565b90506020020160208101906118ea919061268a565b61ffff1681526020810191909152604001600020611909929091612209565b508061191481612dbb565b915050611893565b5050505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061195882610cfe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906119a8919061240e565b915091506119b68282611ca5565b505050505050565b6000818152600360205260408120546001600160a01b0316611a375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610785565b6000611a4283610cfe565b9050806001600160a01b0316846001600160a01b03161480611a7d5750836001600160a01b0316611a728461098a565b6001600160a01b0316145b80611aad57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ac882610cfe565b6001600160a01b031614611b305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610785565b6001600160a01b038216611b925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610785565b611b9d600082611923565b6001600160a01b0383166000908152600460205260408120805460019290611bc6908490612d3d565b90915550506001600160a01b0382166000908152600460205260408120805460019290611bf4908490612d11565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ca2828260405180602001604052806000815250611f68565b816001600160a01b0316836001600160a01b03161415611d215760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610785565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d99848484611ab5565b611da584848484611f9b565b6108a05760405162461bcd60e51b815260040161078590612a15565b6060600b805461090790612d80565b606081611df45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e1e5780611e0881612dbb565b9150611e179050600a83612d29565b9150611df8565b6000816001600160401b03811115611e3857611e38612e2c565b6040519080825280601f01601f191660200182016040528015611e62576020820181803683370190505b5090505b8415611aad57611e77600183612d3d565b9150611e84600a86612dd6565b611e8f906030612d11565b60f81b818381518110611ea457611ea4612e16565b60200101906001600160f81b031916908160001a905350611ec6600a86612d29565b9450611e66565b6000611ed882610cfe565b9050611ee5600083611923565b6001600160a01b0381166000908152600460205260408120805460019290611f0e908490612d3d565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611f7283836120a8565b611f7f6000848484611f9b565b610b305760405162461bcd60e51b815260040161078590612a15565b60006001600160a01b0384163b1561209d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fdf9033908990889088906004016129c5565b602060405180830381600087803b158015611ff957600080fd5b505af1925050508015612029575060408051601f3d908101601f1916820190925261202691810190612625565b60015b612083573d808015612057576040519150601f19603f3d011682016040523d82523d6000602084013e61205c565b606091505b50805161207b5760405162461bcd60e51b815260040161078590612a15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aad565b506001949350505050565b6001600160a01b0382166120fe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610785565b6001600160a01b0382166000908152600460205260408120805460019290612127908490612d11565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461219190612d80565b90600052602060002090601f0160209004810192826121b357600085556121f9565b82601f106121cc57805160ff19168380011785556121f9565b828001600101855582156121f9579182015b828111156121f95782518255916020019190600101906121de565b5061220592915061227d565b5090565b82805461221590612d80565b90600052602060002090601f01602090048101928261223757600085556121f9565b82601f106122505782800160ff198235161785556121f9565b828001600101855582156121f9579182015b828111156121f9578235825591602001919060010190612262565b5b80821115612205576000815560010161227e565b60006001600160401b03808411156122ac576122ac612e2c565b604051601f8501601f19908116603f011681019082821181831017156122d4576122d4612e2c565b816040528093508581528686860111156122ed57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261231957600080fd5b5081356001600160401b0381111561233057600080fd5b6020830191508360208260051b850101111561234b57600080fd5b9250929050565b8035801515811461236257600080fd5b919050565b60008083601f84011261237957600080fd5b5081356001600160401b0381111561239057600080fd5b60208301915083602082850101111561234b57600080fd5b600082601f8301126123b957600080fd5b61121683833560208501612292565b803561ffff8116811461236257600080fd5b80356001600160401b038116811461236257600080fd5b60006020828403121561240357600080fd5b813561121681612e42565b6000806040838503121561242157600080fd5b825161242c81612e42565b6020939093015192949293505050565b6000806040838503121561244f57600080fd5b823561245a81612e42565b9150602083013561246a81612e42565b809150509250929050565b60008060006060848603121561248a57600080fd5b833561249581612e42565b925060208401356124a581612e42565b929592945050506040919091013590565b600080600080608085870312156124cc57600080fd5b84356124d781612e42565b935060208501356124e781612e42565b92506040850135915060608501356001600160401b0381111561250957600080fd5b612515878288016123a8565b91505092959194509250565b6000806040838503121561253457600080fd5b823561253f81612e42565b915061254d60208401612352565b90509250929050565b6000806040838503121561256957600080fd5b823561257481612e42565b946020939093013593505050565b6000806000806040858703121561259857600080fd5b84356001600160401b03808211156125af57600080fd5b6125bb88838901612307565b909650945060208701359150808211156125d457600080fd5b506125e187828801612307565b95989497509550505050565b6000602082840312156125ff57600080fd5b61121682612352565b60006020828403121561261a57600080fd5b813561121681612e57565b60006020828403121561263757600080fd5b815161121681612e57565b60006020828403121561265457600080fd5b81356001600160401b0381111561266a57600080fd5b8201601f8101841361267b57600080fd5b611aad84823560208401612292565b60006020828403121561269c57600080fd5b611216826123c8565b6000806000604084860312156126ba57600080fd5b6126c3846123c8565b925060208401356001600160401b038111156126de57600080fd5b6126ea86828701612367565b9497909650939450505050565b60008060006060848603121561270c57600080fd5b612715846123c8565b925060208401356001600160401b0381111561273057600080fd5b61273c868287016123a8565b925050604084013590509250925092565b60008060008060006080868803121561276557600080fd5b61276e866123c8565b945060208601356001600160401b038082111561278a57600080fd5b61279689838a016123a8565b95506127a4604089016123da565b945060608801359150808211156127ba57600080fd5b506127c788828901612367565b969995985093965092949392505050565b600080600080608085870312156127ee57600080fd5b6127f7856123c8565b935060208501356001600160401b038082111561281357600080fd5b61281f888389016123a8565b945061282d604088016123da565b9350606087013591508082111561284357600080fd5b50612515878288016123a8565b6000806040838503121561286357600080fd5b612574836123c8565b60006020828403121561287e57600080fd5b5035919050565b6000806040838503121561289857600080fd5b505080516020909101519092909150565b6000602082840312156128bb57600080fd5b813560ff8116811461121657600080fd5b600081518084526128e4816020860160208601612d54565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b6000825161291a818460208701612d54565b9190910192915050565b600080835461293281612d80565b6001828116801561294a576001811461295b5761298a565b60ff1984168752828701945061298a565b8760005260208060002060005b858110156129815781548a820152908401908201612968565b50505082870194505b50929695505050505050565b600083516129a8818460208801612d54565b8351908301906129bc818360208801612d54565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f8908301846128cc565b9695505050505050565b60208152600061121660208301846128cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612b1b908301866128cc565b84151560608401528281036080840152612b3581856128cc565b98975050505050505050565b61ffff86168152608060208201526000612b5e60808301876128cc565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff85168152608060208201526000612bbf60808301866128cc565b6001600160401b03851660408401528281036060840152612be081856128cc565b979650505050505050565b61ffff871681526000602060c08184015260008854612c0981612d80565b8060c087015260e0600180841660008114612c2b5760018114612c4057612c6e565b60ff1985168984015261010089019550612c6e565b8d6000528660002060005b85811015612c665781548b8201860152908301908801612c4b565b8a0184019650505b50505050508381036040850152612c8581896128cc565b915050612c9d60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612cbe81856128cc565b9998505050505050505050565b6000808335601e19843603018112612ce257600080fd5b8301803591506001600160401b03821115612cfc57600080fd5b60200191503681900382131561234b57600080fd5b60008219821115612d2457612d24612dea565b500190565b600082612d3857612d38612e00565b500490565b600082821015612d4f57612d4f612dea565b500390565b60005b83811015612d6f578181015183820152602001612d57565b838111156108a05750506000910152565b600181811c90821680612d9457607f821691505b60208210811415612db557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dcf57612dcf612dea565b5060010190565b600082612de557612de5612e00565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146117a957600080fd5b6001600160e01b0319811681146117a957600080fdfea264697066735822122023d908c64e584442580059a446fe26efa88306f345c08f78aa02f77ff8e47d3264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000006283b8700000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616231667169686a74583579577a565156484b434a36686541667852386b644b444c555945344b636950466a2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f85760003560e01c80638ee749121161010d578063cf89fa03116100a0578063eb8d72b71161006f578063eb8d72b71461062c578063ed88c68e1461021d578063f2fde38b1461064c578063f355a70c1461066c578063f7bf55601461068c57600080fd5b8063cf89fa0314610589578063d1deba1f1461059c578063e6fd48bc146105af578063e985e9c5146105e357600080fd5b8063b2bdfa7b116100dc578063b2bdfa7b14610509578063b88d4fde14610529578063c87b56dd14610549578063cdb88ad11461056957600080fd5b80638ee7491214610449578063943fb872146104b457806395d89b41146104d4578063a22cb465146104e957600080fd5b806342842e0e1161019057806370a082311161015f57806370a08231146103a8578063715018a6146103d65780637533d788146103eb5780637c8813ef1461040b5780638da5cb5b1461042b57600080fd5b806342842e0e1461032e57806355f804b31461034e5780635c975abb1461036e5780636352211e1461038857600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631c37a822146102ce57806323b872dd146102ee5780632e1a7d4d1461030e57600080fd5b80621d3567146101fd57806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276575b600080fd5b34801561020957600080fd5b5061021d6102183660046127d8565b6106ac565b005b34801561022b57600080fd5b5061023f61023a366004612608565b6108a6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696108f8565b60405161024b9190612a02565b34801561028257600080fd5b5061029661029136600461286c565b61098a565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c9366004612556565b610a1f565b3480156102da57600080fd5b5061021d6102e93660046127d8565b610b35565b3480156102fa57600080fd5b5061021d610309366004612475565b610ba4565b34801561031a57600080fd5b5061021d61032936600461286c565b610bd5565b34801561033a57600080fd5b5061021d610349366004612475565b610ca6565b34801561035a57600080fd5b5061021d610369366004612642565b610cc1565b34801561037a57600080fd5b5060105461023f9060ff1681565b34801561039457600080fd5b506102966103a336600461286c565b610cfe565b3480156103b457600080fd5b506103c86103c33660046123f1565b610d75565b60405190815260200161024b565b3480156103e257600080fd5b5061021d610dfc565b3480156103f757600080fd5b5061026961040636600461268a565b610e32565b34801561041757600080fd5b5061021d6104263660046128a9565b610ecc565b34801561043757600080fd5b506000546001600160a01b0316610296565b34801561045557600080fd5b5061049f6104643660046126f7565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161024b565b3480156104c057600080fd5b5061021d6104cf36600461286c565b6110c7565b3480156104e057600080fd5b506102696110f6565b3480156104f557600080fd5b5061021d610504366004612521565b611105565b34801561051557600080fd5b50600a54610296906001600160a01b031681565b34801561053557600080fd5b5061021d6105443660046124b6565b611110565b34801561055557600080fd5b5061026961056436600461286c565b611142565b34801561057557600080fd5b5061021d6105843660046125ed565b61121d565b61021d610597366004612850565b61125a565b61021d6105aa36600461274d565b61153c565b3480156105bb57600080fd5b506103c87f000000000000000000000000000000000000000000000000000000006283b87081565b3480156105ef57600080fd5b5061023f6105fe36600461243c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063857600080fd5b5061021d6106473660046126a5565b6116c9565b34801561065857600080fd5b5061021d6106673660046123f1565b611711565b34801561067857600080fd5b5061021d6106873660046128a9565b6117ac565b34801561069857600080fd5b5061021d6106a7366004612582565b611866565b6007546001600160a01b031633146106c357600080fd5b61ffff8416600090815260096020526040902080546106e190612d80565b90508351148015610720575061ffff841660009081526009602052604090819020905161070e9190612924565b60405180910390208380519060200120145b61078e5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107b7908790879087908790600401612ba2565b600060405180830381600087803b1580156107d157600080fd5b505af19250505080156107e2575060015b6108a0576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161082c9190612908565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610897908690869086908690612ba2565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806108d757506001600160e01b03198216635b5e139f60e01b145b806108f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461090790612d80565b80601f016020809104026020016040519081016040528092919081815260200182805461093390612d80565b80156109805780601f1061095557610100808354040283529160200191610980565b820191906000526020600020905b81548152906001019060200180831161096357829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610785565b506000908152600560205260409020546001600160a01b031690565b6000610a2a82610cfe565b9050806001600160a01b0316836001600160a01b03161415610a985760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610785565b336001600160a01b0382161480610ab45750610ab481336105fe565b610b265760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610785565b610b308383611923565b505050565b333014610b985760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610785565b6108a084848484611991565b610bae33826119be565b610bca5760405162461bcd60e51b815260040161078590612a9c565b610b30838383611ab5565b6000546001600160a01b03163314610bff5760405162461bcd60e51b815260040161078590612a67565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610c4c576040519150601f19603f3d011682016040523d82523d6000602084013e610c51565b606091505b5050905080610ca25760405162461bcd60e51b815260206004820152601d60248201527f6e62343a204661696c656420746f2077697468647261772045746865720000006044820152606401610785565b5050565b610b3083838360405180602001604052806000815250611110565b6000546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161078590612a67565b8051610ca290600b906020840190612185565b6000818152600360205260408120546001600160a01b0316806108f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610785565b60006001600160a01b038216610de05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610785565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e265760405162461bcd60e51b815260040161078590612a67565b610e306000611c55565b565b60096020526000908152604090208054610e4b90612d80565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7790612d80565b8015610ec45780601f10610e9957610100808354040283529160200191610ec4565b820191906000526020600020905b815481529060010190602001808311610ea757829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000006283b870421015610f2b5760405162461bcd60e51b815260206004820152600c60248201526b1b9bdd081b1a5d99481e595d60a21b6044820152606401610785565b60105460ff1615610f715760405162461bcd60e51b815260206004820152601060248201526f6d696e74206973206f6e20706175736560801b6044820152606401610785565b600e548160ff161115610fc65760405162461bcd60e51b815260206004820152601a60248201527f6e62343a206d6178203520706572207472616e73616374696f6e0000000000006044820152606401610785565b600f54610fd233610d75565b610fdf9060ff8416612d11565b111561102d5760405162461bcd60e51b815260206004820152601d60248201527f6e62343a206d61782077616c6c6574206c696d697420726561636865640000006044820152606401610785565b600d548160ff16600c546110419190612d11565b111561108a5760405162461bcd60e51b81526020600482015260186024820152776e62343a206d696e74206578636565647320737570706c7960401b6044820152606401610785565b60005b8160ff16811015610ca2576110b533600c600081546110ab90612dbb565b9182905550611ca5565b806110bf81612dbb565b91505061108d565b6000546001600160a01b031633146110f15760405162461bcd60e51b815260040161078590612a67565b601155565b60606002805461090790612d80565b610ca2338383611cbf565b61111a33836119be565b6111365760405162461bcd60e51b815260040161078590612a9c565b6108a084848484611d8e565b6000818152600360205260409020546060906001600160a01b03166111c15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610785565b60006111cb611dc1565b905060008151116111eb5760405180602001604052806000815250611216565b806111f584611dd0565b604051602001611206929190612996565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112475760405162461bcd60e51b815260040161078590612a67565b6010805460ff1916911515919091179055565b61126381610cfe565b6001600160a01b0316336001600160a01b0316146112ce5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610785565b61ffff8216600090815260096020526040812080546112ec90612d80565b9050116113525760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610785565b61135b81611ecd565b60408051336020820152808201839052815180820383018152606082018352601154600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906113de908990309089908790899060a601612aed565b604080518083038186803b1580156113f557600080fd5b505afa158015611409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142d9190612885565b509050803410156114b75760405162461bcd60e51b815260206004820152604860248201527f6e62343a206d73672e76616c7565206e6f7420656e6f75676820746f20636f7660448201527f6572206d6573736167654665652e2053656e642067617320666f72206d657373606482015267616765206665657360c01b608482015260a401610785565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611502928c928b913391908b90600401612beb565b6000604051808303818588803b15801561151b57600080fd5b505af115801561152f573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161155d908790612908565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506115e45760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610785565b80548214801561160e5750806001015483836040516116049291906128f8565b6040518091039020145b61165a5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610785565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061168f9089908990899089908990600401612b41565b600060405180830381600087803b1580156116a957600080fd5b505af11580156116bd573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146116f35760405162461bcd60e51b815260040161078590612a67565b61ffff831660009081526009602052604090206108a0908383612209565b6000546001600160a01b0316331461173b5760405162461bcd60e51b815260040161078590612a67565b6001600160a01b0381166117a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610785565b6117a981611c55565b50565b6000546001600160a01b031633146117d65760405162461bcd60e51b815260040161078590612a67565b600d548160ff16600c546117ea9190612d11565b11156118335760405162461bcd60e51b81526020600482015260186024820152776e62343a206d696e74206578636565647320737570706c7960401b6044820152606401610785565b60005b8160ff16811015610ca25761185433600c600081546110ab90612dbb565b8061185e81612dbb565b915050611836565b6000546001600160a01b031633146118905760405162461bcd60e51b815260040161078590612a67565b60005b8381101561191c578282828181106118ad576118ad612e16565b90506020028101906118bf9190612ccb565b600960008888868181106118d5576118d5612e16565b90506020020160208101906118ea919061268a565b61ffff1681526020810191909152604001600020611909929091612209565b508061191481612dbb565b915050611893565b5050505050565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061195882610cfe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906119a8919061240e565b915091506119b68282611ca5565b505050505050565b6000818152600360205260408120546001600160a01b0316611a375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610785565b6000611a4283610cfe565b9050806001600160a01b0316846001600160a01b03161480611a7d5750836001600160a01b0316611a728461098a565b6001600160a01b0316145b80611aad57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ac882610cfe565b6001600160a01b031614611b305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610785565b6001600160a01b038216611b925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610785565b611b9d600082611923565b6001600160a01b0383166000908152600460205260408120805460019290611bc6908490612d3d565b90915550506001600160a01b0382166000908152600460205260408120805460019290611bf4908490612d11565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ca2828260405180602001604052806000815250611f68565b816001600160a01b0316836001600160a01b03161415611d215760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610785565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d99848484611ab5565b611da584848484611f9b565b6108a05760405162461bcd60e51b815260040161078590612a15565b6060600b805461090790612d80565b606081611df45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e1e5780611e0881612dbb565b9150611e179050600a83612d29565b9150611df8565b6000816001600160401b03811115611e3857611e38612e2c565b6040519080825280601f01601f191660200182016040528015611e62576020820181803683370190505b5090505b8415611aad57611e77600183612d3d565b9150611e84600a86612dd6565b611e8f906030612d11565b60f81b818381518110611ea457611ea4612e16565b60200101906001600160f81b031916908160001a905350611ec6600a86612d29565b9450611e66565b6000611ed882610cfe565b9050611ee5600083611923565b6001600160a01b0381166000908152600460205260408120805460019290611f0e908490612d3d565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611f7283836120a8565b611f7f6000848484611f9b565b610b305760405162461bcd60e51b815260040161078590612a15565b60006001600160a01b0384163b1561209d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fdf9033908990889088906004016129c5565b602060405180830381600087803b158015611ff957600080fd5b505af1925050508015612029575060408051601f3d908101601f1916820190925261202691810190612625565b60015b612083573d808015612057576040519150601f19603f3d011682016040523d82523d6000602084013e61205c565b606091505b50805161207b5760405162461bcd60e51b815260040161078590612a15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aad565b506001949350505050565b6001600160a01b0382166120fe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610785565b6001600160a01b0382166000908152600460205260408120805460019290612127908490612d11565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461219190612d80565b90600052602060002090601f0160209004810192826121b357600085556121f9565b82601f106121cc57805160ff19168380011785556121f9565b828001600101855582156121f9579182015b828111156121f95782518255916020019190600101906121de565b5061220592915061227d565b5090565b82805461221590612d80565b90600052602060002090601f01602090048101928261223757600085556121f9565b82601f106122505782800160ff198235161785556121f9565b828001600101855582156121f9579182015b828111156121f9578235825591602001919060010190612262565b5b80821115612205576000815560010161227e565b60006001600160401b03808411156122ac576122ac612e2c565b604051601f8501601f19908116603f011681019082821181831017156122d4576122d4612e2c565b816040528093508581528686860111156122ed57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261231957600080fd5b5081356001600160401b0381111561233057600080fd5b6020830191508360208260051b850101111561234b57600080fd5b9250929050565b8035801515811461236257600080fd5b919050565b60008083601f84011261237957600080fd5b5081356001600160401b0381111561239057600080fd5b60208301915083602082850101111561234b57600080fd5b600082601f8301126123b957600080fd5b61121683833560208501612292565b803561ffff8116811461236257600080fd5b80356001600160401b038116811461236257600080fd5b60006020828403121561240357600080fd5b813561121681612e42565b6000806040838503121561242157600080fd5b825161242c81612e42565b6020939093015192949293505050565b6000806040838503121561244f57600080fd5b823561245a81612e42565b9150602083013561246a81612e42565b809150509250929050565b60008060006060848603121561248a57600080fd5b833561249581612e42565b925060208401356124a581612e42565b929592945050506040919091013590565b600080600080608085870312156124cc57600080fd5b84356124d781612e42565b935060208501356124e781612e42565b92506040850135915060608501356001600160401b0381111561250957600080fd5b612515878288016123a8565b91505092959194509250565b6000806040838503121561253457600080fd5b823561253f81612e42565b915061254d60208401612352565b90509250929050565b6000806040838503121561256957600080fd5b823561257481612e42565b946020939093013593505050565b6000806000806040858703121561259857600080fd5b84356001600160401b03808211156125af57600080fd5b6125bb88838901612307565b909650945060208701359150808211156125d457600080fd5b506125e187828801612307565b95989497509550505050565b6000602082840312156125ff57600080fd5b61121682612352565b60006020828403121561261a57600080fd5b813561121681612e57565b60006020828403121561263757600080fd5b815161121681612e57565b60006020828403121561265457600080fd5b81356001600160401b0381111561266a57600080fd5b8201601f8101841361267b57600080fd5b611aad84823560208401612292565b60006020828403121561269c57600080fd5b611216826123c8565b6000806000604084860312156126ba57600080fd5b6126c3846123c8565b925060208401356001600160401b038111156126de57600080fd5b6126ea86828701612367565b9497909650939450505050565b60008060006060848603121561270c57600080fd5b612715846123c8565b925060208401356001600160401b0381111561273057600080fd5b61273c868287016123a8565b925050604084013590509250925092565b60008060008060006080868803121561276557600080fd5b61276e866123c8565b945060208601356001600160401b038082111561278a57600080fd5b61279689838a016123a8565b95506127a4604089016123da565b945060608801359150808211156127ba57600080fd5b506127c788828901612367565b969995985093965092949392505050565b600080600080608085870312156127ee57600080fd5b6127f7856123c8565b935060208501356001600160401b038082111561281357600080fd5b61281f888389016123a8565b945061282d604088016123da565b9350606087013591508082111561284357600080fd5b50612515878288016123a8565b6000806040838503121561286357600080fd5b612574836123c8565b60006020828403121561287e57600080fd5b5035919050565b6000806040838503121561289857600080fd5b505080516020909101519092909150565b6000602082840312156128bb57600080fd5b813560ff8116811461121657600080fd5b600081518084526128e4816020860160208601612d54565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b6000825161291a818460208701612d54565b9190910192915050565b600080835461293281612d80565b6001828116801561294a576001811461295b5761298a565b60ff1984168752828701945061298a565b8760005260208060002060005b858110156129815781548a820152908401908201612968565b50505082870194505b50929695505050505050565b600083516129a8818460208801612d54565b8351908301906129bc818360208801612d54565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f8908301846128cc565b9695505050505050565b60208152600061121660208301846128cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612b1b908301866128cc565b84151560608401528281036080840152612b3581856128cc565b98975050505050505050565b61ffff86168152608060208201526000612b5e60808301876128cc565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff85168152608060208201526000612bbf60808301866128cc565b6001600160401b03851660408401528281036060840152612be081856128cc565b979650505050505050565b61ffff871681526000602060c08184015260008854612c0981612d80565b8060c087015260e0600180841660008114612c2b5760018114612c4057612c6e565b60ff1985168984015261010089019550612c6e565b8d6000528660002060005b85811015612c665781548b8201860152908301908801612c4b565b8a0184019650505b50505050508381036040850152612c8581896128cc565b915050612c9d60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612cbe81856128cc565b9998505050505050505050565b6000808335601e19843603018112612ce257600080fd5b8301803591506001600160401b03821115612cfc57600080fd5b60200191503681900382131561234b57600080fd5b60008219821115612d2457612d24612dea565b500190565b600082612d3857612d38612e00565b500490565b600082821015612d4f57612d4f612dea565b500390565b60005b83811015612d6f578181015183820152602001612d57565b838111156108a05750506000910152565b600181811c90821680612d9457607f821691505b60208210811415612db557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dcf57612dcf612dea565b5060010190565b600082612de557612de5612e00565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146117a957600080fd5b6001600160e01b0319811681146117a957600080fdfea264697066735822122023d908c64e584442580059a446fe26efa88306f345c08f78aa02f77ff8e47d3264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000006283b8700000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d616231667169686a74583579577a565156484b434a36686541667852386b644b444c555945344b636950466a2f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://Qmab1fqihjtX5yWzVQVHKCJ6heAfxR8kdKDLUYE4KciPFj/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [2] : _startTimestamp (uint256): 1652799600

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 000000000000000000000000000000000000000000000000000000006283b870
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d616231667169686a74583579577a565156484b434a3668
Arg [5] : 6541667852386b644b444c555945344b636950466a2f00000000000000000000


Deployed Bytecode Sourcemap

50433:4929:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46786:1098;;;;;;;;;;-1:-1:-1;46786:1098:0;;;;;:::i;:::-;;:::i;:::-;;32851:355;;;;;;;;;;-1:-1:-1;32851:355:0;;;;;:::i;:::-;;:::i;:::-;;;14232:14:1;;14225:22;14207:41;;14195:2;14180:18;32851:355:0;;;;;;;;34020:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35713:308::-;;;;;;;;;;-1:-1:-1;35713:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;13251:32:1;;;13233:51;;13221:2;13206:18;35713:308:0;13087:203:1;35236:411:0;;;;;;;;;;-1:-1:-1;35236:411:0;;;;;:::i;:::-;;:::i;47892:435::-;;;;;;;;;;-1:-1:-1;47892:435:0;;;;;:::i;:::-;;:::i;36632:376::-;;;;;;;;;;-1:-1:-1;36632:376:0;;;;;:::i;:::-;;:::i;53876:178::-;;;;;;;;;;-1:-1:-1;53876:178:0;;;;;:::i;:::-;;:::i;37079:185::-;;;;;;;;;;-1:-1:-1;37079:185:0;;;;;:::i;:::-;;:::i;53650:90::-;;;;;;;;;;-1:-1:-1;53650:90:0;;;;;:::i;:::-;;:::i;50723:26::-;;;;;;;;;;-1:-1:-1;50723:26:0;;;;;;;;33627:326;;;;;;;;;;-1:-1:-1;33627:326:0;;;;;:::i;:::-;;:::i;33270:295::-;;;;;;;;;;-1:-1:-1;33270:295:0;;;;;:::i;:::-;;:::i;:::-;;;29310:25:1;;;29298:2;29283:18;33270:295:0;29164:177:1;13163:103:0;;;;;;;;;;;;;:::i;46585:51::-;;;;;;;;;;-1:-1:-1;46585:51:0;;;;;:::i;:::-;;:::i;51192:618::-;;;;;;;;;;-1:-1:-1;51192:618:0;;;;;:::i;:::-;;:::i;12512:87::-;;;;;;;;;;-1:-1:-1;12558:7:0;12585:6;-1:-1:-1;;;;;12585:6:0;12512:87;;46476:102;;;;;;;;;;-1:-1:-1;46476:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29520:25:1;;;29576:2;29561:18;;29554:34;;;;29493:18;46476:102:0;29346:248:1;54138:128:0;;;;;;;;;;-1:-1:-1;54138:128:0;;;;;:::i;:::-;;:::i;34189:104::-;;;;;;;;;;;;;:::i;36093:187::-;;;;;;;;;;-1:-1:-1;36093:187:0;;;;;:::i;:::-;;:::i;50493:21::-;;;;;;;;;;-1:-1:-1;50493:21:0;;;;-1:-1:-1;;;;;50493:21:0;;;37335:365;;;;;;;;;;-1:-1:-1;37335:365:0;;;;;:::i;:::-;;:::i;34364:468::-;;;;;;;;;;-1:-1:-1;34364:468:0;;;;;:::i;:::-;;:::i;54897:87::-;;;;;;;;;;-1:-1:-1;54897:87:0;;;;;:::i;:::-;;:::i;51949:1693::-;;;;;;:::i;:::-;;:::i;48987:916::-;;;;;;:::i;:::-;;:::i;50677:39::-;;;;;;;;;;;;;;;36351:214;;;;;;;;;;-1:-1:-1;36351:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;36522:25:0;;;36493:4;36522:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36351:214;49911:181;;;;;;;;;;-1:-1:-1;49911:181:0;;;;;:::i;:::-;;:::i;13421:238::-;;;;;;;;;;-1:-1:-1;13421:238:0;;;;;:::i;:::-;;:::i;55051:308::-;;;;;;;;;;-1:-1:-1;55051:308:0;;;;;:::i;:::-;;:::i;50100:265::-;;;;;;;;;;-1:-1:-1;50100:265:0;;;;;:::i;:::-;;:::i;46786:1098::-;46991:8;;-1:-1:-1;;;;;46991:8:0;46969:10;:31;46961:40;;;;;;47126:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47104:11;:18;:61;:168;;;;-1:-1:-1;47239:32:0;;;;;;;:19;:32;;;;;;;47229:43;;;;47239:32;47229:43;:::i;:::-;;;;;;;;47196:11;47186:22;;;;;;:86;47104:168;47082:270;;;;-1:-1:-1;;;47082:270:0;;23121:2:1;47082:270:0;;;23103:21:1;23160:2;23140:18;;;23133:30;23199:34;23179:18;;;23172:62;-1:-1:-1;;;23250:18:1;;;23243:50;23310:19;;47082:270:0;;;;;;;;;47480:60;;-1:-1:-1;;;47480:60:0;;:4;;:16;;:60;;47497:11;;47510;;47523:6;;47531:8;;47480:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47476:401;;47687:101;;;;;;;;47720:8;:15;47687:101;;;;47764:8;47754:19;;;;;;47687:101;;;47636:14;:27;47651:11;47636:27;;;;;;;;;;;;;;;47664:11;47636:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47636:48:0;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47808:57;;;;47822:11;;47835;;47677:6;;47856:8;;47808:57;:::i;:::-;;;;;;;;47476:401;46786:1098;;;;:::o;32851:355::-;32998:4;-1:-1:-1;;;;;;33040:40:0;;-1:-1:-1;;;33040:40:0;;:105;;-1:-1:-1;;;;;;;33097:48:0;;-1:-1:-1;;;33097:48:0;33040:105;:158;;;-1:-1:-1;;;;;;;;;;25597:40:0;;;33162:36;33020:178;32851:355;-1:-1:-1;;32851:355:0:o;34020:100::-;34074:13;34107:5;34100:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34020:100;:::o;35713:308::-;35834:7;39336:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39336:16:0;35859:110;;;;-1:-1:-1;;;35859:110:0;;22347:2:1;35859:110:0;;;22329:21:1;22386:2;22366:18;;;22359:30;22425:34;22405:18;;;22398:62;-1:-1:-1;;;22476:18:1;;;22469:42;22528:19;;35859:110:0;22145:408:1;35859:110:0;-1:-1:-1;35989:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35989:24:0;;35713:308::o;35236:411::-;35317:13;35333:23;35348:7;35333:14;:23::i;:::-;35317:39;;35381:5;-1:-1:-1;;;;;35375:11:0;:2;-1:-1:-1;;;;;35375:11:0;;;35367:57;;;;-1:-1:-1;;;35367:57:0;;24709:2:1;35367:57:0;;;24691:21:1;24748:2;24728:18;;;24721:30;24787:34;24767:18;;;24760:62;-1:-1:-1;;;24838:18:1;;;24831:31;24879:19;;35367:57:0;24507:397:1;35367:57:0;11295:10;-1:-1:-1;;;;;35459:21:0;;;;:62;;-1:-1:-1;35484:37:0;35501:5;11295:10;36351:214;:::i;35484:37::-;35437:168;;;;-1:-1:-1;;;35437:168:0;;20328:2:1;35437:168:0;;;20310:21:1;20367:2;20347:18;;;20340:30;20406:34;20386:18;;;20379:62;20477:26;20457:18;;;20450:54;20521:19;;35437:168:0;20126:420:1;35437:168:0;35618:21;35627:2;35631:7;35618:8;:21::i;:::-;35306:341;35236:411;;:::o;47892:435::-;48118:10;48140:4;48118:27;48096:120;;;;-1:-1:-1;;;48096:120:0;;21574:2:1;48096:120:0;;;21556:21:1;21613:2;21593:18;;;21586:30;21652:34;21632:18;;;21625:62;-1:-1:-1;;;21703:18:1;;;21696:41;21754:19;;48096:120:0;21372:407:1;48096:120:0;48265:54;48276:11;48289;48302:6;48310:8;48265:10;:54::i;36632:376::-;36841:41;11295:10;36874:7;36841:18;:41::i;:::-;36819:140;;;;-1:-1:-1;;;36819:140:0;;;;;;;:::i;:::-;36972:28;36982:4;36988:2;36992:7;36972:9;:28::i;53876:178::-;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;53961:6:::1;::::0;53953:36:::1;::::0;53938:9:::1;::::0;-1:-1:-1;;;;;53961:6:0::1;::::0;53981:3;;53938:9;53953:36;53938:9;53953:36;53981:3;53961:6;53953:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53937:52;;;54008:4;54000:46;;;::::0;-1:-1:-1;;;54000:46:0;;15741:2:1;54000:46:0::1;::::0;::::1;15723:21:1::0;15780:2;15760:18;;;15753:30;15819:31;15799:18;;;15792:59;15868:18;;54000:46:0::1;15539:353:1::0;54000:46:0::1;53926:128;53876:178:::0;:::o;37079:185::-;37217:39;37234:4;37240:2;37244:7;37217:39;;;;;;;;;;;;:16;:39::i;53650:90::-;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;53719:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33627:326::-:0;33744:7;33785:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33785:16:0;33834:19;33812:110;;;;-1:-1:-1;;;33812:110:0;;21164:2:1;33812:110:0;;;21146:21:1;21203:2;21183:18;;;21176:30;21242:34;21222:18;;;21215:62;-1:-1:-1;;;21293:18:1;;;21286:39;21342:19;;33812:110:0;20962:405:1;33270:295:0;33387:7;-1:-1:-1;;;;;33434:19:0;;33412:111;;;;-1:-1:-1;;;33412:111:0;;20753:2:1;33412:111:0;;;20735:21:1;20792:2;20772:18;;;20765:30;20831:34;20811:18;;;20804:62;-1:-1:-1;;;20882:18:1;;;20875:40;20932:19;;33412:111:0;20551:406:1;33412:111:0;-1:-1:-1;;;;;;33541:16:0;;;;;:9;:16;;;;;;;33270:295::o;13163:103::-;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;13228:30:::1;13255:1;13228:18;:30::i;:::-;13163:103::o:0;46585:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51192:618::-;51275:14;51256:15;:33;;51248:58;;;;-1:-1:-1;;;51248:58:0;;24368:2:1;51248:58:0;;;24350:21:1;24407:2;24387:18;;;24380:30;-1:-1:-1;;;24426:18:1;;;24419:42;24478:18;;51248:58:0;24166:336:1;51248:58:0;51326:6;;;;51325:7;51317:36;;;;-1:-1:-1;;;51317:36:0;;16925:2:1;51317:36:0;;;16907:21:1;16964:2;16944:18;;;16937:30;-1:-1:-1;;;16983:18:1;;;16976:46;17039:18;;51317:36:0;16723:340:1;51317:36:0;51385:9;;51372;:22;;;;51364:61;;;;-1:-1:-1;;;51364:61:0;;17270:2:1;51364:61:0;;;17252:21:1;17309:2;17289:18;;;17282:30;17348:28;17328:18;;;17321:56;17394:18;;51364:61:0;17068:350:1;51364:61:0;51495:13;;51470:21;51480:10;51470:9;:21::i;:::-;51458:33;;;;;;:::i;:::-;:50;;51436:129;;;;-1:-1:-1;;;51436:129:0;;17625:2:1;51436:129:0;;;17607:21:1;17664:2;17644:18;;;17637:30;17703:31;17683:18;;;17676:59;17752:18;;51436:129:0;17423:353:1;51436:129:0;51625:12;;51612:9;51598:23;;:11;;:23;;;;:::i;:::-;:39;;51576:113;;;;-1:-1:-1;;;51576:113:0;;15388:2:1;51576:113:0;;;15370:21:1;15427:2;15407:18;;;15400:30;-1:-1:-1;;;15446:18:1;;;15439:54;15510:18;;51576:113:0;15186:348:1;51576:113:0;51705:9;51700:103;51724:9;51720:13;;:1;:13;51700:103;;;51755:36;51765:10;51779:11;;51777:13;;;;;:::i;:::-;;;;;-1:-1:-1;51755:9:0;:36::i;:::-;51735:3;;;;:::i;:::-;;;;51700:103;;54138:128;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;54223:26:::1;:35:::0;54138:128::o;34189:104::-;34245:13;34278:7;34271:14;;;;;:::i;36093:187::-;36220:52;11295:10;36253:8;36263;36220:18;:52::i;37335:365::-;37524:41;11295:10;37557:7;37524:18;:41::i;:::-;37502:140;;;;-1:-1:-1;;;37502:140:0;;;;;;;:::i;:::-;37653:39;37667:4;37673:2;37677:7;37686:5;37653:13;:39::i;34364:468::-;39312:4;39336:16;;;:7;:16;;;;;;34482:13;;-1:-1:-1;;;;;39336:16:0;34513:113;;;;-1:-1:-1;;;34513:113:0;;23952:2:1;34513:113:0;;;23934:21:1;23991:2;23971:18;;;23964:30;24030:34;24010:18;;;24003:62;-1:-1:-1;;;24081:18:1;;;24074:45;24136:19;;34513:113:0;23750:411:1;34513:113:0;34639:21;34663:10;:8;:10::i;:::-;34639:34;;34728:1;34710:7;34704:21;:25;:120;;;;;;;;;;;;;;;;;34773:7;34782:18;:7;:16;:18::i;:::-;34756:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34704:120;34684:140;34364:468;-1:-1:-1;;;34364:468:0:o;54897:87::-;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;54962:6:::1;:14:::0;;-1:-1:-1;;54962:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54897:87::o;51949:1693::-;52069:16;52077:7;52069;:16::i;:::-;-1:-1:-1;;;;;52055:30:0;:10;-1:-1:-1;;;;;52055:30:0;;52033:114;;;;-1:-1:-1;;;52033:114:0;;19512:2:1;52033:114:0;;;19494:21:1;19551:2;19531:18;;;19524:30;19590:34;19570:18;;;19563:62;-1:-1:-1;;;19641:18:1;;;19634:32;19683:19;;52033:114:0;19310:398:1;52033:114:0;52180:29;;;52219:1;52180:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;52158:136;;;;-1:-1:-1;;;52158:136:0;;18742:2:1;52158:136:0;;;18724:21:1;18781:2;18761:18;;;18754:30;18820:34;18800:18;;;18793:62;-1:-1:-1;;;18871:18:1;;;18864:44;18925:19;;52158:136:0;18540:410:1;52158:136:0;52374:14;52380:7;52374:5;:14::i;:::-;52485:31;;;52496:10;52485:31;;;13962:51:1;14029:18;;;14022:34;;;52485:31:0;;;;;;;;;13935:18:1;;;52485:31:0;;52713:26;;-1:-1:-1;;;52660:90:0;;;12961:51:1;13028:11;;;;13021:27;;;;52660:90:0;;;;;;;;;;13064:12:1;;;52660:90:0;;;;52929:8;;-1:-1:-1;;;52929:153:0;;;52485:31;;52619:1;;-1:-1:-1;;;;;;;52929:8:0;;:21;;:153;;52965:8;;52996:4;;52485:31;;-1:-1:-1;;52660:90:0;;52929:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52904:178;;;53130:10;53117:9;:23;;53095:145;;;;-1:-1:-1;;;53095:145:0;;14907:2:1;53095:145:0;;;14889:21:1;14946:2;14926:18;;;14919:30;14985:34;14965:18;;;14958:62;15056:34;15036:18;;;15029:62;-1:-1:-1;;;15107:19:1;;;15100:39;15156:19;;53095:145:0;14705:476:1;53095:145:0;53253:8;;53345:29;;;53253:8;53345:29;;;:19;:29;;;;;;53253:381;;-1:-1:-1;;;53253:381:0;;-1:-1:-1;;;;;53253:8:0;;;;:13;;53274:9;;53253:381;;53299:8;;53428:7;;53484:10;;53253:8;53594:13;;53253:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52022:1620;;;;51949:1693;;:::o;48987:916::-;49246:27;;;49211:32;49246:27;;;:14;:27;;;;;;:64;;;;49288:11;;49246:64;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49246:72:0;;;;;;;;;;49351:21;;;;49246:72;;-1:-1:-1;49329:123:0;;;;-1:-1:-1;;;49329:123:0;;25529:2:1;49329:123:0;;;25511:21:1;25568:2;25548:18;;;25541:30;25607:34;25587:18;;;25580:62;-1:-1:-1;;;25658:18:1;;;25651:36;25704:19;;49329:123:0;25327:402:1;49329:123:0;49504:23;;49485:42;;:107;;;;;49571:9;:21;;;49558:8;;49548:19;;;;;;;:::i;:::-;;;;;;;;:44;49485:107;49463:183;;;;-1:-1:-1;;;49463:183:0;;19157:2:1;49463:183:0;;;19139:21:1;19196:2;19176:18;;;19169:30;19235:28;19215:18;;;19208:56;19281:18;;49463:183:0;18955:350:1;49463:183:0;49720:1;49694:27;;;49732:21;;;:34;49835:60;;-1:-1:-1;;;49835:60:0;;:4;;:16;;:60;;49852:11;;49865;;49878:6;;49886:8;;;;49835:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49155:748;48987:916;;;;;:::o;49911:181::-;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;50038:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50070:14;;50038:46:::1;:::i;13421:238::-:0;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13524:22:0;::::1;13502:110;;;::::0;-1:-1:-1;;;13502:110:0;;16518:2:1;13502:110:0::1;::::0;::::1;16500:21:1::0;16557:2;16537:18;;;16530:30;16596:34;16576:18;;;16569:62;-1:-1:-1;;;16647:18:1;;;16640:36;16693:19;;13502:110:0::1;16316:402:1::0;13502:110:0::1;13623:28;13642:8;13623:18;:28::i;:::-;13421:238:::0;:::o;55051:308::-;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;55172:12:::1;;55159:9;55145:23;;:11;;:23;;;;:::i;:::-;:39;;55123:113;;;::::0;-1:-1:-1;;;55123:113:0;;15388:2:1;55123:113:0::1;::::0;::::1;15370:21:1::0;15427:2;15407:18;;;15400:30;-1:-1:-1;;;15446:18:1;;;15439:54;15510:18;;55123:113:0::1;15186:348:1::0;55123:113:0::1;55254:9;55249:103;55273:9;55269:13;;:1;:13;55249:103;;;55304:36;55314:10;55328:11;;55326:13;;;;;:::i;55304:36::-;55284:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55249:103;;50100:265:::0;12558:7;12585:6;-1:-1:-1;;;;;12585:6:0;11295:10;12732:23;12724:68;;;;-1:-1:-1;;;12724:68:0;;;;;;;:::i;:::-;50243:9:::1;50238:120;50258:19:::0;;::::1;50238:120;;;50334:9;;50344:1;50334:12;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;50299:19;:32;50319:8;;50328:1;50319:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50299:32;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50299:32:0;:47:::1;::::0;:32;;:47:::1;:::i;:::-;-1:-1:-1::0;50279:3:0;::::1;::::0;::::1;:::i;:::-;;;;50238:120;;;;50100:265:::0;;;;:::o;43301:174::-;43376:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43376:29:0;-1:-1:-1;;;;;43376:29:0;;;;;;;;:24;;43430:23;43376:24;43430:14;:23::i;:::-;-1:-1:-1;;;;;43421:46:0;;;;;;;;;;;43301:174;;:::o;54357:424::-;54553:14;54569:15;54613:8;54588:77;;;;;;;;;;;;:::i;:::-;54552:113;;;;54747:26;54757:6;54765:7;54747:9;:26::i;:::-;54522:259;;54357:424;;;;:::o;39541:452::-;39670:4;39336:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39336:16:0;39692:110;;;;-1:-1:-1;;;39692:110:0;;19915:2:1;39692:110:0;;;19897:21:1;19954:2;19934:18;;;19927:30;19993:34;19973:18;;;19966:62;-1:-1:-1;;;20044:18:1;;;20037:42;20096:19;;39692:110:0;19713:408:1;39692:110:0;39813:13;39829:23;39844:7;39829:14;:23::i;:::-;39813:39;;39882:5;-1:-1:-1;;;;;39871:16:0;:7;-1:-1:-1;;;;;39871:16:0;;:64;;;;39928:7;-1:-1:-1;;;;;39904:31:0;:20;39916:7;39904:11;:20::i;:::-;-1:-1:-1;;;;;39904:31:0;;39871:64;:113;;;-1:-1:-1;;;;;;36522:25:0;;;36493:4;36522:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39952:32;39863:122;39541:452;-1:-1:-1;;;;39541:452:0:o;42568:615::-;42741:4;-1:-1:-1;;;;;42714:31:0;:23;42729:7;42714:14;:23::i;:::-;-1:-1:-1;;;;;42714:31:0;;42692:122;;;;-1:-1:-1;;;42692:122:0;;23542:2:1;42692:122:0;;;23524:21:1;23581:2;23561:18;;;23554:30;23620:34;23600:18;;;23593:62;-1:-1:-1;;;23671:18:1;;;23664:39;23720:19;;42692:122:0;23340:405:1;42692:122:0;-1:-1:-1;;;;;42833:16:0;;42825:65;;;;-1:-1:-1;;;42825:65:0;;17983:2:1;42825:65:0;;;17965:21:1;18022:2;18002:18;;;17995:30;18061:34;18041:18;;;18034:62;-1:-1:-1;;;18112:18:1;;;18105:34;18156:19;;42825:65:0;17781:400:1;42825:65:0;43007:29;43024:1;43028:7;43007:8;:29::i;:::-;-1:-1:-1;;;;;43049:15:0;;;;;;:9;:15;;;;;:20;;43068:1;;43049:15;:20;;43068:1;;43049:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43080:13:0;;;;;;:9;:13;;;;;:18;;43097:1;;43080:13;:18;;43097:1;;43080:18;:::i;:::-;;;;-1:-1:-1;;43109:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43109:21:0;-1:-1:-1;;;;;43109:21:0;;;;;;;;;43148:27;;43109:16;;43148:27;;;;;;;42568:615;;;:::o;13819:191::-;13893:16;13912:6;;-1:-1:-1;;;;;13929:17:0;;;-1:-1:-1;;;;;;13929:17:0;;;;;;13962:40;;13912:6;;;;;;;13962:40;;13893:16;13962:40;13882:128;13819:191;:::o;40335:110::-;40411:26;40421:2;40425:7;40411:26;;;;;;;;;;;;:9;:26::i;43617:315::-;43772:8;-1:-1:-1;;;;;43763:17:0;:5;-1:-1:-1;;;;;43763:17:0;;;43755:55;;;;-1:-1:-1;;;43755:55:0;;18388:2:1;43755:55:0;;;18370:21:1;18427:2;18407:18;;;18400:30;18466:27;18446:18;;;18439:55;18511:18;;43755:55:0;18186:349:1;43755:55:0;-1:-1:-1;;;;;43821:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43821:46:0;;;;;;;;;;43883:41;;14207::1;;;43883::0;;14180:18:1;43883:41:0;;;;;;;43617:315;;;:::o;38582:352::-;38739:28;38749:4;38755:2;38759:7;38739:9;:28::i;:::-;38800:48;38823:4;38829:2;38833:7;38842:5;38800:22;:48::i;:::-;38778:148;;;;-1:-1:-1;;;38778:148:0;;;;;;;:::i;54789:100::-;54841:13;54874:7;54867:14;;;;;:::i;8747:723::-;8803:13;9024:10;9020:53;;-1:-1:-1;;9051:10:0;;;;;;;;;;;;-1:-1:-1;;;9051:10:0;;;;;8747:723::o;9020:53::-;9098:5;9083:12;9139:78;9146:9;;9139:78;;9172:8;;;;:::i;:::-;;-1:-1:-1;9195:10:0;;-1:-1:-1;9203:2:0;9195:10;;:::i;:::-;;;9139:78;;;9227:19;9259:6;-1:-1:-1;;;;;9249:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9249:17:0;;9227:39;;9277:154;9284:10;;9277:154;;9311:11;9321:1;9311:11;;:::i;:::-;;-1:-1:-1;9380:10:0;9388:2;9380:5;:10;:::i;:::-;9367:24;;:2;:24;:::i;:::-;9354:39;;9337:6;9344;9337:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9337:56:0;;;;;;;;-1:-1:-1;9408:11:0;9417:2;9408:11;;:::i;:::-;;;9277:154;;41871:360;41931:13;41947:23;41962:7;41947:14;:23::i;:::-;41931:39;;42072:29;42089:1;42093:7;42072:8;:29::i;:::-;-1:-1:-1;;;;;42114:16:0;;;;;;:9;:16;;;;;:21;;42134:1;;42114:16;:21;;42134:1;;42114:21;:::i;:::-;;;;-1:-1:-1;;42153:16:0;;;;:7;:16;;;;;;42146:23;;-1:-1:-1;;;;;;42146:23:0;;;42187:36;42161:7;;42153:16;-1:-1:-1;;;;;42187:36:0;;;;;42153:16;;42187:36;41920:311;41871:360;:::o;40672:321::-;40802:18;40808:2;40812:7;40802:5;:18::i;:::-;40853:54;40884:1;40888:2;40892:7;40901:5;40853:22;:54::i;:::-;40831:154;;;;-1:-1:-1;;;40831:154:0;;;;;;;:::i;44497:980::-;44652:4;-1:-1:-1;;;;;44673:13:0;;15158:20;15206:8;44669:801;;44726:175;;-1:-1:-1;;;44726:175:0;;-1:-1:-1;;;;;44726:36:0;;;;;:175;;11295:10;;44820:4;;44847:7;;44877:5;;44726:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44726:175:0;;;;;;;;-1:-1:-1;;44726:175:0;;;;;;;;;;;;:::i;:::-;;;44705:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45084:13:0;;45080:320;;45127:108;;-1:-1:-1;;;45127:108:0;;;;;;;:::i;45080:320::-;45350:6;45344:13;45335:6;45331:2;45327:15;45320:38;44705:710;-1:-1:-1;;;;;;44965:51:0;-1:-1:-1;;;44965:51:0;;-1:-1:-1;44958:58:0;;44669:801;-1:-1:-1;45454:4:0;44497:980;;;;;;:::o;41329:313::-;-1:-1:-1;;;;;41409:16:0;;41401:61;;;;-1:-1:-1;;;41401:61:0;;21986:2:1;41401:61:0;;;21968:21:1;;;22005:18;;;21998:30;22064:34;22044:18;;;22037:62;22116:18;;41401:61:0;21784:356:1;41401:61:0;-1:-1:-1;;;;;41533:13:0;;;;;;:9;:13;;;;;:18;;41550:1;;41533:13;:18;;41550:1;;41533:18;:::i;:::-;;;;-1:-1:-1;;41562:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41562:21:0;-1:-1:-1;;;;;41562:21:0;;;;;;;;41601:33;;41562:16;;;41601:33;;41562:16;;41601:33;41329:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:374::-;720:8;730:6;784:3;777:4;769:6;765:17;761:27;751:55;;802:1;799;792:12;751:55;-1:-1:-1;825:20:1;;-1:-1:-1;;;;;857:30:1;;854:50;;;900:1;897;890:12;854:50;937:4;929:6;925:17;913:29;;997:3;990:4;980:6;977:1;973:14;965:6;961:27;957:38;954:47;951:67;;;1014:1;1011;1004:12;951:67;650:374;;;;;:::o;1029:160::-;1094:20;;1150:13;;1143:21;1133:32;;1123:60;;1179:1;1176;1169:12;1123:60;1029:160;;;:::o;1194:347::-;1245:8;1255:6;1309:3;1302:4;1294:6;1290:17;1286:27;1276:55;;1327:1;1324;1317:12;1276:55;-1:-1:-1;1350:20:1;;-1:-1:-1;;;;;1382:30:1;;1379:50;;;1425:1;1422;1415:12;1379:50;1462:4;1454:6;1450:17;1438:29;;1514:3;1507:4;1498:6;1490;1486:19;1482:30;1479:39;1476:59;;;1531:1;1528;1521:12;1546:220;1588:5;1641:3;1634:4;1626:6;1622:17;1618:27;1608:55;;1659:1;1656;1649:12;1608:55;1681:79;1756:3;1747:6;1734:20;1727:4;1719:6;1715:17;1681:79;:::i;1771:159::-;1838:20;;1898:6;1887:18;;1877:29;;1867:57;;1920:1;1917;1910:12;1935:171;2002:20;;-1:-1:-1;;;;;2051:30:1;;2041:41;;2031:69;;2096:1;2093;2086:12;2111:247;2170:6;2223:2;2211:9;2202:7;2198:23;2194:32;2191:52;;;2239:1;2236;2229:12;2191:52;2278:9;2265:23;2297:31;2322:5;2297:31;:::i;2363:320::-;2450:6;2458;2511:2;2499:9;2490:7;2486:23;2482:32;2479:52;;;2527:1;2524;2517:12;2479:52;2559:9;2553:16;2578:31;2603:5;2578:31;:::i;:::-;2673:2;2658:18;;;;2652:25;2628:5;;2652:25;;-1:-1:-1;;;2363:320:1:o;2688:388::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2872:9;2859:23;2891:31;2916:5;2891:31;:::i;:::-;2941:5;-1:-1:-1;2998:2:1;2983:18;;2970:32;3011:33;2970:32;3011:33;:::i;:::-;3063:7;3053:17;;;2688:388;;;;;:::o;3081:456::-;3158:6;3166;3174;3227:2;3215:9;3206:7;3202:23;3198:32;3195:52;;;3243:1;3240;3233:12;3195:52;3282:9;3269:23;3301:31;3326:5;3301:31;:::i;:::-;3351:5;-1:-1:-1;3408:2:1;3393:18;;3380:32;3421:33;3380:32;3421:33;:::i;:::-;3081:456;;3473:7;;-1:-1:-1;;;3527:2:1;3512:18;;;;3499:32;;3081:456::o;3542:665::-;3637:6;3645;3653;3661;3714:3;3702:9;3693:7;3689:23;3685:33;3682:53;;;3731:1;3728;3721:12;3682:53;3770:9;3757:23;3789:31;3814:5;3789:31;:::i;:::-;3839:5;-1:-1:-1;3896:2:1;3881:18;;3868:32;3909:33;3868:32;3909:33;:::i;:::-;3961:7;-1:-1:-1;4015:2:1;4000:18;;3987:32;;-1:-1:-1;4070:2:1;4055:18;;4042:32;-1:-1:-1;;;;;4086:30:1;;4083:50;;;4129:1;4126;4119:12;4083:50;4152:49;4193:7;4184:6;4173:9;4169:22;4152:49;:::i;:::-;4142:59;;;3542:665;;;;;;;:::o;4212:315::-;4277:6;4285;4338:2;4326:9;4317:7;4313:23;4309:32;4306:52;;;4354:1;4351;4344:12;4306:52;4393:9;4380:23;4412:31;4437:5;4412:31;:::i;:::-;4462:5;-1:-1:-1;4486:35:1;4517:2;4502:18;;4486:35;:::i;:::-;4476:45;;4212:315;;;;;:::o;4532:::-;4600:6;4608;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4716:9;4703:23;4735:31;4760:5;4735:31;:::i;:::-;4785:5;4837:2;4822:18;;;;4809:32;;-1:-1:-1;;;4532:315:1:o;4852:797::-;4984:6;4992;5000;5008;5061:2;5049:9;5040:7;5036:23;5032:32;5029:52;;;5077:1;5074;5067:12;5029:52;5117:9;5104:23;-1:-1:-1;;;;;5187:2:1;5179:6;5176:14;5173:34;;;5203:1;5200;5193:12;5173:34;5242:77;5311:7;5302:6;5291:9;5287:22;5242:77;:::i;:::-;5338:8;;-1:-1:-1;5216:103:1;-1:-1:-1;5426:2:1;5411:18;;5398:32;;-1:-1:-1;5442:16:1;;;5439:36;;;5471:1;5468;5461:12;5439:36;;5510:79;5581:7;5570:8;5559:9;5555:24;5510:79;:::i;:::-;4852:797;;;;-1:-1:-1;5608:8:1;-1:-1:-1;;;;4852:797:1:o;5654:180::-;5710:6;5763:2;5751:9;5742:7;5738:23;5734:32;5731:52;;;5779:1;5776;5769:12;5731:52;5802:26;5818:9;5802:26;:::i;5839:245::-;5897:6;5950:2;5938:9;5929:7;5925:23;5921:32;5918:52;;;5966:1;5963;5956:12;5918:52;6005:9;5992:23;6024:30;6048:5;6024:30;:::i;6089:249::-;6158:6;6211:2;6199:9;6190:7;6186:23;6182:32;6179:52;;;6227:1;6224;6217:12;6179:52;6259:9;6253:16;6278:30;6302:5;6278:30;:::i;6343:450::-;6412:6;6465:2;6453:9;6444:7;6440:23;6436:32;6433:52;;;6481:1;6478;6471:12;6433:52;6521:9;6508:23;-1:-1:-1;;;;;6546:6:1;6543:30;6540:50;;;6586:1;6583;6576:12;6540:50;6609:22;;6662:4;6654:13;;6650:27;-1:-1:-1;6640:55:1;;6691:1;6688;6681:12;6640:55;6714:73;6779:7;6774:2;6761:16;6756:2;6752;6748:11;6714:73;:::i;6798:184::-;6856:6;6909:2;6897:9;6888:7;6884:23;6880:32;6877:52;;;6925:1;6922;6915:12;6877:52;6948:28;6966:9;6948:28;:::i;6987:481::-;7065:6;7073;7081;7134:2;7122:9;7113:7;7109:23;7105:32;7102:52;;;7150:1;7147;7140:12;7102:52;7173:28;7191:9;7173:28;:::i;:::-;7163:38;;7252:2;7241:9;7237:18;7224:32;-1:-1:-1;;;;;7271:6:1;7268:30;7265:50;;;7311:1;7308;7301:12;7265:50;7350:58;7400:7;7391:6;7380:9;7376:22;7350:58;:::i;:::-;6987:481;;7427:8;;-1:-1:-1;7324:84:1;;-1:-1:-1;;;;6987:481:1:o;7473:460::-;7558:6;7566;7574;7627:2;7615:9;7606:7;7602:23;7598:32;7595:52;;;7643:1;7640;7633:12;7595:52;7666:28;7684:9;7666:28;:::i;:::-;7656:38;;7745:2;7734:9;7730:18;7717:32;-1:-1:-1;;;;;7764:6:1;7761:30;7758:50;;;7804:1;7801;7794:12;7758:50;7827:49;7868:7;7859:6;7848:9;7844:22;7827:49;:::i;:::-;7817:59;;;7923:2;7912:9;7908:18;7895:32;7885:42;;7473:460;;;;;:::o;7938:773::-;8042:6;8050;8058;8066;8074;8127:3;8115:9;8106:7;8102:23;8098:33;8095:53;;;8144:1;8141;8134:12;8095:53;8167:28;8185:9;8167:28;:::i;:::-;8157:38;;8246:2;8235:9;8231:18;8218:32;-1:-1:-1;;;;;8310:2:1;8302:6;8299:14;8296:34;;;8326:1;8323;8316:12;8296:34;8349:49;8390:7;8381:6;8370:9;8366:22;8349:49;:::i;:::-;8339:59;;8417:37;8450:2;8439:9;8435:18;8417:37;:::i;:::-;8407:47;;8507:2;8496:9;8492:18;8479:32;8463:48;;8536:2;8526:8;8523:16;8520:36;;;8552:1;8549;8542:12;8520:36;;8591:60;8643:7;8632:8;8621:9;8617:24;8591:60;:::i;:::-;7938:773;;;;-1:-1:-1;7938:773:1;;-1:-1:-1;8670:8:1;;8565:86;7938:773;-1:-1:-1;;;7938:773:1:o;8716:684::-;8818:6;8826;8834;8842;8895:3;8883:9;8874:7;8870:23;8866:33;8863:53;;;8912:1;8909;8902:12;8863:53;8935:28;8953:9;8935:28;:::i;:::-;8925:38;;9014:2;9003:9;8999:18;8986:32;-1:-1:-1;;;;;9078:2:1;9070:6;9067:14;9064:34;;;9094:1;9091;9084:12;9064:34;9117:49;9158:7;9149:6;9138:9;9134:22;9117:49;:::i;:::-;9107:59;;9185:37;9218:2;9207:9;9203:18;9185:37;:::i;:::-;9175:47;;9275:2;9264:9;9260:18;9247:32;9231:48;;9304:2;9294:8;9291:16;9288:36;;;9320:1;9317;9310:12;9288:36;;9343:51;9386:7;9375:8;9364:9;9360:24;9343:51;:::i;9405:252::-;9472:6;9480;9533:2;9521:9;9512:7;9508:23;9504:32;9501:52;;;9549:1;9546;9539:12;9501:52;9572:28;9590:9;9572:28;:::i;9662:180::-;9721:6;9774:2;9762:9;9753:7;9749:23;9745:32;9742:52;;;9790:1;9787;9780:12;9742:52;-1:-1:-1;9813:23:1;;9662:180;-1:-1:-1;9662:180:1:o;9847:245::-;9926:6;9934;9987:2;9975:9;9966:7;9962:23;9958:32;9955:52;;;10003:1;10000;9993:12;9955:52;-1:-1:-1;;10026:16:1;;10082:2;10067:18;;;10061:25;10026:16;;10061:25;;-1:-1:-1;9847:245:1:o;10097:269::-;10154:6;10207:2;10195:9;10186:7;10182:23;10178:32;10175:52;;;10223:1;10220;10213:12;10175:52;10262:9;10249:23;10312:4;10305:5;10301:16;10294:5;10291:27;10281:55;;10332:1;10329;10322:12;10488:257;10529:3;10567:5;10561:12;10594:6;10589:3;10582:19;10610:63;10666:6;10659:4;10654:3;10650:14;10643:4;10636:5;10632:16;10610:63;:::i;:::-;10727:2;10706:15;-1:-1:-1;;10702:29:1;10693:39;;;;10734:4;10689:50;;10488:257;-1:-1:-1;;10488:257:1:o;10750:271::-;10933:6;10925;10920:3;10907:33;10889:3;10959:16;;10984:13;;;10959:16;10750:271;-1:-1:-1;10750:271:1:o;11026:274::-;11155:3;11193:6;11187:13;11209:53;11255:6;11250:3;11243:4;11235:6;11231:17;11209:53;:::i;:::-;11278:16;;;;;11026:274;-1:-1:-1;;11026:274:1:o;11305:811::-;11431:3;11460:1;11493:6;11487:13;11523:36;11549:9;11523:36;:::i;:::-;11578:1;11595:18;;;11622:104;;;;11740:1;11735:356;;;;11588:503;;11622:104;-1:-1:-1;;11655:24:1;;11643:37;;11700:16;;;;-1:-1:-1;11622:104:1;;11735:356;11766:6;11763:1;11756:17;11796:4;11841:2;11838:1;11828:16;11866:1;11880:165;11894:6;11891:1;11888:13;11880:165;;;11972:14;;11959:11;;;11952:35;12015:16;;;;11909:10;;11880:165;;;11884:3;;;12074:6;12069:3;12065:16;12058:23;;11588:503;-1:-1:-1;12107:3:1;;11305:811;-1:-1:-1;;;;;;11305:811:1:o;12121:470::-;12300:3;12338:6;12332:13;12354:53;12400:6;12395:3;12388:4;12380:6;12376:17;12354:53;:::i;:::-;12470:13;;12429:16;;;;12492:57;12470:13;12429:16;12526:4;12514:17;;12492:57;:::i;:::-;12565:20;;12121:470;-1:-1:-1;;;;12121:470:1:o;13295:488::-;-1:-1:-1;;;;;13564:15:1;;;13546:34;;13616:15;;13611:2;13596:18;;13589:43;13663:2;13648:18;;13641:34;;;13711:3;13706:2;13691:18;;13684:31;;;13489:4;;13732:45;;13757:19;;13749:6;13732:45;:::i;:::-;13724:53;13295:488;-1:-1:-1;;;;;;13295:488:1:o;14259:217::-;14406:2;14395:9;14388:21;14369:4;14426:44;14466:2;14455:9;14451:18;14443:6;14426:44;:::i;15897:414::-;16099:2;16081:21;;;16138:2;16118:18;;;16111:30;16177:34;16172:2;16157:18;;16150:62;-1:-1:-1;;;16243:2:1;16228:18;;16221:48;16301:3;16286:19;;15897:414::o;22558:356::-;22760:2;22742:21;;;22779:18;;;22772:30;22838:34;22833:2;22818:18;;22811:62;22905:2;22890:18;;22558:356::o;24909:413::-;25111:2;25093:21;;;25150:2;25130:18;;;25123:30;25189:34;25184:2;25169:18;;25162:62;-1:-1:-1;;;25255:2:1;25240:18;;25233:47;25312:3;25297:19;;24909:413::o;25734:640::-;26015:6;26003:19;;25985:38;;-1:-1:-1;;;;;26059:32:1;;26054:2;26039:18;;26032:60;26079:3;26123:2;26108:18;;26101:31;;;-1:-1:-1;;26155:45:1;;26180:19;;26172:6;26155:45;:::i;:::-;26250:6;26243:14;26236:22;26231:2;26220:9;26216:18;26209:50;26308:9;26300:6;26296:22;26290:3;26279:9;26275:19;26268:51;26336:32;26361:6;26353;26336:32;:::i;:::-;26328:40;25734:640;-1:-1:-1;;;;;;;;25734:640:1:o;26379:717::-;26646:6;26638;26634:19;26623:9;26616:38;26690:3;26685:2;26674:9;26670:18;26663:31;26597:4;26717:45;26757:3;26746:9;26742:19;26734:6;26717:45;:::i;:::-;-1:-1:-1;;;;;26802:6:1;26798:31;26793:2;26782:9;26778:18;26771:59;26878:9;26870:6;26866:22;26861:2;26850:9;26846:18;26839:50;26913:6;26905;26898:22;26967:6;26959;26954:2;26946:6;26942:15;26929:45;27020:1;27015:2;27006:6;26998;26994:19;26990:28;26983:39;27087:2;27080;27076:7;27071:2;27063:6;27059:15;27055:29;27047:6;27043:42;27039:51;27031:59;;;26379:717;;;;;;;;:::o;27101:555::-;27358:6;27350;27346:19;27335:9;27328:38;27402:3;27397:2;27386:9;27382:18;27375:31;27309:4;27429:45;27469:3;27458:9;27454:19;27446:6;27429:45;:::i;:::-;-1:-1:-1;;;;;27514:6:1;27510:31;27505:2;27494:9;27490:18;27483:59;27590:9;27582:6;27578:22;27573:2;27562:9;27558:18;27551:50;27618:32;27643:6;27635;27618:32;:::i;:::-;27610:40;27101:555;-1:-1:-1;;;;;;;27101:555:1:o;27661:1498::-;28007:6;27999;27995:19;27984:9;27977:38;27958:4;28034:2;28072:3;28067:2;28056:9;28052:18;28045:31;28096:1;28129:6;28123:13;28159:36;28185:9;28159:36;:::i;:::-;28232:6;28226:3;28215:9;28211:19;28204:35;28258:3;28280:1;28312:2;28301:9;28297:18;28329:1;28324:122;;;;28460:1;28455:354;;;;28290:519;;28324:122;-1:-1:-1;;28372:24:1;;28352:18;;;28345:52;28432:3;28417:19;;;-1:-1:-1;28324:122:1;;28455:354;28486:6;28483:1;28476:17;28534:2;28531:1;28521:16;28559:1;28573:180;28587:6;28584:1;28581:13;28573:180;;;28680:14;;28656:17;;;28652:26;;28645:50;28723:16;;;;28602:10;;28573:180;;;28777:17;;28773:26;;;-1:-1:-1;;28290:519:1;;;;;;28854:9;28849:3;28845:19;28840:2;28829:9;28825:18;28818:47;28888:29;28913:3;28905:6;28888:29;:::i;:::-;28874:43;;;28926:54;28976:2;28965:9;28961:18;28953:6;-1:-1:-1;;;;;10445:31:1;10433:44;;10371:112;28926:54;-1:-1:-1;;;;;10445:31:1;;29039:3;29024:19;;10433:44;29093:9;29085:6;29081:22;29075:3;29064:9;29060:19;29053:51;29121:32;29146:6;29138;29121:32;:::i;:::-;29113:40;27661:1498;-1:-1:-1;;;;;;;;;27661:1498:1:o;29599:521::-;29676:4;29682:6;29742:11;29729:25;29836:2;29832:7;29821:8;29805:14;29801:29;29797:43;29777:18;29773:68;29763:96;;29855:1;29852;29845:12;29763:96;29882:33;;29934:20;;;-1:-1:-1;;;;;;29966:30:1;;29963:50;;;30009:1;30006;29999:12;29963:50;30042:4;30030:17;;-1:-1:-1;30073:14:1;30069:27;;;30059:38;;30056:58;;;30110:1;30107;30100:12;30125:128;30165:3;30196:1;30192:6;30189:1;30186:13;30183:39;;;30202:18;;:::i;:::-;-1:-1:-1;30238:9:1;;30125:128::o;30258:120::-;30298:1;30324;30314:35;;30329:18;;:::i;:::-;-1:-1:-1;30363:9:1;;30258:120::o;30383:125::-;30423:4;30451:1;30448;30445:8;30442:34;;;30456:18;;:::i;:::-;-1:-1:-1;30493:9:1;;30383:125::o;30513:258::-;30585:1;30595:113;30609:6;30606:1;30603:13;30595:113;;;30685:11;;;30679:18;30666:11;;;30659:39;30631:2;30624:10;30595:113;;;30726:6;30723:1;30720:13;30717:48;;;-1:-1:-1;;30761:1:1;30743:16;;30736:27;30513:258::o;30776:380::-;30855:1;30851:12;;;;30898;;;30919:61;;30973:4;30965:6;30961:17;30951:27;;30919:61;31026:2;31018:6;31015:14;30995:18;30992:38;30989:161;;;31072:10;31067:3;31063:20;31060:1;31053:31;31107:4;31104:1;31097:15;31135:4;31132:1;31125:15;30989:161;;30776:380;;;:::o;31161:135::-;31200:3;-1:-1:-1;;31221:17:1;;31218:43;;;31241:18;;:::i;:::-;-1:-1:-1;31288:1:1;31277:13;;31161:135::o;31301:112::-;31333:1;31359;31349:35;;31364:18;;:::i;:::-;-1:-1:-1;31398:9:1;;31301:112::o;31418:127::-;31479:10;31474:3;31470:20;31467:1;31460:31;31510:4;31507:1;31500:15;31534:4;31531:1;31524:15;31550:127;31611:10;31606:3;31602:20;31599:1;31592:31;31642:4;31639:1;31632:15;31666:4;31663:1;31656:15;31682:127;31743:10;31738:3;31734:20;31731:1;31724:31;31774:4;31771:1;31764:15;31798:4;31795:1;31788:15;31814:127;31875:10;31870:3;31866:20;31863:1;31856:31;31906:4;31903:1;31896:15;31930:4;31927:1;31920:15;31946:131;-1:-1:-1;;;;;32021:31:1;;32011:42;;32001:70;;32067:1;32064;32057:12;32082:131;-1:-1:-1;;;;;;32156:32:1;;32146:43;;32136:71;;32203:1;32200;32193:12

Swarm Source

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