ETH Price: $2,786.01 (+6.14%)

Token

Z3RO PUNKS (S3X)
 

Overview

Max Total Supply

0 S3X

Holders

682

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 S3X
0x020732E30F7A57B820D78BBC48a967ca5bb1dC7D
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: BUSL-1.1
// 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, uint _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

// File: 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, uint _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 (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);

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

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

// File: 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() , ".json")) : "";
    }

    /**
     * @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 {
        uint payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint => 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) virtual internal;

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

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

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

pragma solidity ^0.8.7;
contract NFT is Ownable, ERC721, NonblockingReceiver {

    bool public paused = true;
    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 0;
    uint256 MAX_MINT_ETH = 2654;
    uint maxTXMint = 2;
    uint maxPeerWallet = 4; // for 6

    uint gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("Z3RO PUNKS", "S3X") { 
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
    }
    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    function mint(uint8 numTokens) external payable {
        if(msg.sender != _owner){
            require(!paused, "Sale has not started yet");
        }        
        require(numTokens <= maxTXMint , "S3X: Max mint amount per session exceeded");
        require(nextTokenId + numTokens <= MAX_MINT_ETH, "S3X: Mint exceeds supply");
        require(maxPeerWallet >= balanceOf(msg.sender) , "S3X: Max mint amount per wallet exceeded");
        for (uint256 i = 1; i <= numTokens; i++) {
             _safeMint(msg.sender, ++nextTokenId);
        }       
    }    
    function traverseChains(uint16 _chainId, uint 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(tokenId);

        bytes memory payload = abi.encode(msg.sender, tokenId);

        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, "S3X: msg.value not enough to cover messageFee. Send gas for message fees");

        endpoint.send{value: msg.value}(
            _chainId,                           
            trustedRemoteLookup[_chainId],      
            payload,                           
            payable(msg.sender),               
            address(0x0),                       
            adapterParams                      
        );
    }

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

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

    function withdraw(uint amt) external onlyOwner {
        (bool sent, ) = payable(_owner).call{value: amt}("");
        require(sent, "S3X: Failed to withdraw Ether");
    }

    function setGasForDestinationLzReceive(uint newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }


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

        _safeMint(toAddr, tokenId);
    }  

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donateForDevelop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60006101000a81548160ff0219169083151502179055506000600c55610a5e600d556002600e556004600f55620557306010553480156200004857600080fd5b50604051620056683803806200566883398181016040528101906200006e9190620003e2565b6040518060400160405280600a81526020017f5a33524f2050554e4b53000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5333580000000000000000000000000000000000000000000000000000000000815250620000fa620000ee620001d160201b60201c565b620001d960201b60201c565b8160019080519060200190620001129291906200029d565b5080600290805190602001906200012b9291906200029d565b50505033600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b9080519060200190620001c89291906200029d565b5050506200061a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ab9062000511565b90600052602060002090601f016020900481019282620002cf57600085556200031b565b82601f10620002ea57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031a578251825591602001919060010190620002fd565b5b5090506200032a91906200032e565b5090565b5b80821115620003495760008160009055506001016200032f565b5090565b6000620003646200035e8462000471565b62000448565b905082815260208101848484011115620003835762000382620005e0565b5b62000390848285620004db565b509392505050565b600081519050620003a98162000600565b92915050565b600082601f830112620003c757620003c6620005db565b5b8151620003d98482602086016200034d565b91505092915050565b60008060408385031215620003fc57620003fb620005ea565b5b600083015167ffffffffffffffff8111156200041d576200041c620005e5565b5b6200042b85828601620003af565b92505060206200043e8582860162000398565b9150509250929050565b60006200045462000467565b905062000462828262000547565b919050565b6000604051905090565b600067ffffffffffffffff8211156200048f576200048e620005ac565b5b6200049a82620005ef565b9050602081019050919050565b6000620004b482620004bb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004fb578082015181840152602081019050620004de565b838111156200050b576000848401525b50505050565b600060028204905060018216806200052a57607f821691505b602082108114156200054157620005406200057d565b5b50919050565b6200055282620005ef565b810181811067ffffffffffffffff82111715620005745762000573620005ac565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200060b81620004a7565b81146200061757600080fd5b50565b61503e806200062a6000396000f3fe6080604052600436106101d75760003560e01c8063715018a611610102578063b2bdfa7b11610095578063d1deba1f11610064578063d1deba1f1461067b578063e985e9c514610697578063eb8d72b7146106d4578063f2fde38b146106fd576101d7565b8063b2bdfa7b146105ce578063b88d4fde146105f9578063c87b56dd14610622578063cf89fa031461065f576101d7565b80638ee74912116100d15780638ee7491214610513578063943fb8721461055157806395d89b411461057a578063a22cb465146105a5576101d7565b8063715018a61461048a5780637533d788146104a157806377e05b3d146104de5780638da5cb5b146104e8576101d7565b806323b872dd1161017a5780635c975abb116101495780635c975abb146103c95780636352211e146103f45780636ecd23061461043157806370a082311461044d576101d7565b806323b872dd146103255780632e1a7d4d1461034e57806342842e0e1461037757806355f804b3146103a0576101d7565b806306fdde03116101b657806306fdde031461026b578063081812fc14610296578063095ea7b3146102d35780631c37a822146102fc576101d7565b80621d3567146101dc57806301ffc9a71461020557806302329a2914610242575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe91906133f8565b610726565b005b34801561021157600080fd5b5061022c600480360381019061022791906131b5565b610968565b6040516102399190613d6b565b60405180910390f35b34801561024e57600080fd5b5061026960048036038101906102649190613188565b610a4a565b005b34801561027757600080fd5b50610280610ae3565b60405161028d9190613da8565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b891906134d7565b610b75565b6040516102ca9190613cdb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613148565b610bfa565b005b34801561030857600080fd5b50610323600480360381019061031e91906133f8565b610d12565b005b34801561033157600080fd5b5061034c60048036038101906103479190613032565b610d92565b005b34801561035a57600080fd5b50610375600480360381019061037091906134d7565b610df2565b005b34801561038357600080fd5b5061039e60048036038101906103999190613032565b610f40565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061320f565b610f60565b005b3480156103d557600080fd5b506103de610ff6565b6040516103eb9190613d6b565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906134d7565b611009565b6040516104289190613cdb565b60405180910390f35b61044b60048036038101906104469190613544565b6110bb565b005b34801561045957600080fd5b50610474600480360381019061046f9190612f85565b611291565b60405161048191906142a9565b60405180910390f35b34801561049657600080fd5b5061049f611349565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613258565b6113d1565b6040516104d59190613d86565b60405180910390f35b6104e6611471565b005b3480156104f457600080fd5b506104fd611473565b60405161050a9190613cdb565b60405180910390f35b34801561051f57600080fd5b5061053a600480360381019061053591906132e5565b61149c565b6040516105489291906142c4565b60405180910390f35b34801561055d57600080fd5b50610578600480360381019061057391906134d7565b6114f0565b005b34801561058657600080fd5b5061058f611576565b60405161059c9190613da8565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613108565b611608565b005b3480156105da57600080fd5b506105e361161e565b6040516105f09190613cdb565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613085565b611644565b005b34801561062e57600080fd5b50610649600480360381019061064491906134d7565b6116a6565b6040516106569190613da8565b60405180910390f35b61067960048036038101906106749190613497565b61174d565b005b61069560048036038101906106909190613354565b611a40565b005b3480156106a357600080fd5b506106be60048036038101906106b99190612ff2565b611be0565b6040516106cb9190613d6b565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613285565b611c74565b005b34801561070957600080fd5b50610724600480360381019061071f9190612f85565b611d20565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078057600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546107a690614593565b905083511480156107ec5750600960008561ffff1661ffff1681526020019081526020016000206040516107da9190613c54565b60405180910390208380519060200120145b61082b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108229061404a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161086a94939291906141e0565b600060405180830381600087803b15801561088457600080fd5b505af1925050508015610895575060015b610961576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108df9190613c3d565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161095494939291906141e0565b60405180910390a1610962565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a435750610a4282611e18565b5b9050919050565b610a52611e82565b73ffffffffffffffffffffffffffffffffffffffff16610a70611473565b73ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd9061402a565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606060018054610af290614593565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90614593565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b8082611e8a565b610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb69061400a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0582611009565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d906140aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c95611e82565b73ffffffffffffffffffffffffffffffffffffffff161480610cc45750610cc381610cbe611e82565b611be0565b5b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613f6a565b60405180910390fd5b610d0d8383611ef6565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613fca565b60405180910390fd5b610d8c84848484611faf565b50505050565b610da3610d9d611e82565b82611fdc565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906140ea565b60405180910390fd5b610ded8383836120ba565b505050565b610dfa611e82565b73ffffffffffffffffffffffffffffffffffffffff16610e18611473565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061402a565b60405180910390fd5b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610eb690613c9a565b60006040518083038185875af1925050503d8060008114610ef3576040519150601f19603f3d011682016040523d82523d6000602084013e610ef8565b606091505b5050905080610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613dca565b60405180910390fd5b5050565b610f5b83838360405180602001604052806000815250611644565b505050565b610f68611e82565b73ffffffffffffffffffffffffffffffffffffffff16610f86611473565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd39061402a565b60405180910390fd5b80600b9080519060200190610ff2929190612c54565b5050565b600a60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990613faa565b60405180910390fd5b80915050919050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116157600a60009054906101000a900460ff1615611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613dea565b60405180910390fd5b5b600e548160ff1611156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a0906140ca565b60405180910390fd5b600d548160ff16600c546111bd91906143d7565b11156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613e4a565b60405180910390fd5b61120733611291565b600f54101561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613e8a565b60405180910390fd5b6000600190505b8160ff16811161128d5761127a33600c6000815461126f906145f6565b919050819055612316565b8080611285906145f6565b915050611252565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613f8a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611351611e82565b73ffffffffffffffffffffffffffffffffffffffff1661136f611473565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061402a565b60405180910390fd5b6113cf6000612334565b565b600960205280600052604060002060009150905080546113f090614593565b80601f016020809104026020016040519081016040528092919081815260200182805461141c90614593565b80156114695780601f1061143e57610100808354040283529160200191611469565b820191906000526020600020905b81548152906001019060200180831161144c57829003601f168201915b505050505081565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b6114f8611e82565b73ffffffffffffffffffffffffffffffffffffffff16611516611473565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061402a565b60405180910390fd5b8060108190555050565b60606002805461158590614593565b80601f01602080910402602001604051908101604052809291908181526020018280546115b190614593565b80156115fe5780601f106115d3576101008083540402835291602001916115fe565b820191906000526020600020905b8154815290600101906020018083116115e157829003601f168201915b5050505050905090565b61161a611613611e82565b83836123f8565b5050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61165561164f611e82565b83611fdc565b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906140ea565b60405180910390fd5b6116a084848484612565565b50505050565b60606116b182611e8a565b6116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e79061408a565b60405180910390fd5b60006116fa6125c1565b9050600081511161171a5760405180602001604052806000815250611745565b8061172484612653565b604051602001611735929190613c6b565b6040516020818303038152906040525b915050919050565b61175681611009565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613f0a565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546117eb90614593565b90501161182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613eca565b60405180910390fd5b611836816127b4565b6000338260405160200161184b929190613d42565b6040516020818303038152906040529050600060019050600081601054604051602001611879929190613caf565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016118f095949392919061412a565b604080518083038186803b15801561190757600080fd5b505afa15801561191b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193f9190613504565b50905080341015611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613f2a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b8152600401611a0696959493929190614233565b6000604051808303818588803b158015611a1f57600080fd5b505af1158015611a33573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff16815260200190815260200160002085604051611a6b9190613c3d565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad79061410a565b60405180910390fd5b806000015483839050148015611b10575080600101548383604051611b06929190613c24565b6040518091039020145b611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690613eea565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611ba695949392919061418b565b600060405180830381600087803b158015611bc057600080fd5b505af1158015611bd4573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c7c611e82565b73ffffffffffffffffffffffffffffffffffffffff16611c9a611473565b73ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061402a565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611d1a929190612cda565b50505050565b611d28611e82565b73ffffffffffffffffffffffffffffffffffffffff16611d46611473565b73ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d939061402a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390613e2a565b60405180910390fd5b611e1581612334565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f6983611009565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611fc69190612fb2565b91509150611fd48282612316565b505050505050565b6000611fe782611e8a565b612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613f4a565b60405180910390fd5b600061203183611009565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120a057508373ffffffffffffffffffffffffffffffffffffffff1661208884610b75565b73ffffffffffffffffffffffffffffffffffffffff16145b806120b157506120b08185611be0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120da82611009565b73ffffffffffffffffffffffffffffffffffffffff1614612130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121279061406a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219790613e6a565b60405180910390fd5b6121ab8383836128c5565b6121b6600082611ef6565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612206919061445e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225d91906143d7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123308282604051806020016040528060008152506128ca565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90613eaa565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125589190613d6b565b60405180910390a3505050565b6125708484846120ba565b61257c84848484612925565b6125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613e0a565b60405180910390fd5b50505050565b6060600b80546125d090614593565b80601f01602080910402602001604051908101604052809291908181526020018280546125fc90614593565b80156126495780601f1061261e57610100808354040283529160200191612649565b820191906000526020600020905b81548152906001019060200180831161262c57829003601f168201915b5050505050905090565b6060600082141561269b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127af565b600082905060005b600082146126cd5780806126b6906145f6565b915050600a826126c6919061442d565b91506126a3565b60008167ffffffffffffffff8111156126e9576126e8614748565b5b6040519080825280601f01601f19166020018201604052801561271b5781602001600182028036833780820191505090505b5090505b600085146127a857600182612734919061445e565b9150600a85612743919061465b565b603061274f91906143d7565b60f81b81838151811061276557612764614719565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a1919061442d565b945061271f565b8093505050505b919050565b60006127bf82611009565b90506127cd816000846128c5565b6127d8600083611ef6565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612828919061445e565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6128d48383612abc565b6128e16000848484612925565b612920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291790613e0a565b60405180910390fd5b505050565b60006129468473ffffffffffffffffffffffffffffffffffffffff16612c41565b15612aaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296f611e82565b8786866040518563ffffffff1660e01b81526004016129919493929190613cf6565b602060405180830381600087803b1580156129ab57600080fd5b505af19250505080156129dc57506040513d601f19601f820116820180604052508101906129d991906131e2565b60015b612a5f573d8060008114612a0c576040519150601f19603f3d011682016040523d82523d6000602084013e612a11565b606091505b50600081511415612a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4e90613e0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ab4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390613fea565b60405180910390fd5b612b38600083836128c5565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8891906143d7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c6090614593565b90600052602060002090601f016020900481019282612c825760008555612cc9565b82601f10612c9b57805160ff1916838001178555612cc9565b82800160010185558215612cc9579182015b82811115612cc8578251825591602001919060010190612cad565b5b509050612cd69190612d60565b5090565b828054612ce690614593565b90600052602060002090601f016020900481019282612d085760008555612d4f565b82601f10612d2157803560ff1916838001178555612d4f565b82800160010185558215612d4f579182015b82811115612d4e578235825591602001919060010190612d33565b5b509050612d5c9190612d60565b5090565b5b80821115612d79576000816000905550600101612d61565b5090565b6000612d90612d8b84614312565b6142ed565b905082815260208101848484011115612dac57612dab614786565b5b612db7848285614551565b509392505050565b6000612dd2612dcd84614343565b6142ed565b905082815260208101848484011115612dee57612ded614786565b5b612df9848285614551565b509392505050565b600081359050612e1081614f50565b92915050565b600081519050612e2581614f67565b92915050565b600081359050612e3a81614f7e565b92915050565b600081359050612e4f81614f95565b92915050565b600081519050612e6481614f95565b92915050565b60008083601f840112612e8057612e7f61477c565b5b8235905067ffffffffffffffff811115612e9d57612e9c614777565b5b602083019150836001820283011115612eb957612eb8614781565b5b9250929050565b600082601f830112612ed557612ed461477c565b5b8135612ee5848260208601612d7d565b91505092915050565b600082601f830112612f0357612f0261477c565b5b8135612f13848260208601612dbf565b91505092915050565b600081359050612f2b81614fac565b92915050565b600081359050612f4081614fc3565b92915050565b600081519050612f5581614fc3565b92915050565b600081359050612f6a81614fda565b92915050565b600081359050612f7f81614ff1565b92915050565b600060208284031215612f9b57612f9a614790565b5b6000612fa984828501612e01565b91505092915050565b60008060408385031215612fc957612fc8614790565b5b6000612fd785828601612e16565b9250506020612fe885828601612f46565b9150509250929050565b6000806040838503121561300957613008614790565b5b600061301785828601612e01565b925050602061302885828601612e01565b9150509250929050565b60008060006060848603121561304b5761304a614790565b5b600061305986828701612e01565b935050602061306a86828701612e01565b925050604061307b86828701612f31565b9150509250925092565b6000806000806080858703121561309f5761309e614790565b5b60006130ad87828801612e01565b94505060206130be87828801612e01565b93505060406130cf87828801612f31565b925050606085013567ffffffffffffffff8111156130f0576130ef61478b565b5b6130fc87828801612ec0565b91505092959194509250565b6000806040838503121561311f5761311e614790565b5b600061312d85828601612e01565b925050602061313e85828601612e2b565b9150509250929050565b6000806040838503121561315f5761315e614790565b5b600061316d85828601612e01565b925050602061317e85828601612f31565b9150509250929050565b60006020828403121561319e5761319d614790565b5b60006131ac84828501612e2b565b91505092915050565b6000602082840312156131cb576131ca614790565b5b60006131d984828501612e40565b91505092915050565b6000602082840312156131f8576131f7614790565b5b600061320684828501612e55565b91505092915050565b60006020828403121561322557613224614790565b5b600082013567ffffffffffffffff8111156132435761324261478b565b5b61324f84828501612eee565b91505092915050565b60006020828403121561326e5761326d614790565b5b600061327c84828501612f1c565b91505092915050565b60008060006040848603121561329e5761329d614790565b5b60006132ac86828701612f1c565b935050602084013567ffffffffffffffff8111156132cd576132cc61478b565b5b6132d986828701612e6a565b92509250509250925092565b6000806000606084860312156132fe576132fd614790565b5b600061330c86828701612f1c565b935050602084013567ffffffffffffffff81111561332d5761332c61478b565b5b61333986828701612ec0565b925050604061334a86828701612f31565b9150509250925092565b6000806000806000608086880312156133705761336f614790565b5b600061337e88828901612f1c565b955050602086013567ffffffffffffffff81111561339f5761339e61478b565b5b6133ab88828901612ec0565b94505060406133bc88828901612f5b565b935050606086013567ffffffffffffffff8111156133dd576133dc61478b565b5b6133e988828901612e6a565b92509250509295509295909350565b6000806000806080858703121561341257613411614790565b5b600061342087828801612f1c565b945050602085013567ffffffffffffffff8111156134415761344061478b565b5b61344d87828801612ec0565b935050604061345e87828801612f5b565b925050606085013567ffffffffffffffff81111561347f5761347e61478b565b5b61348b87828801612ec0565b91505092959194509250565b600080604083850312156134ae576134ad614790565b5b60006134bc85828601612f1c565b92505060206134cd85828601612f31565b9150509250929050565b6000602082840312156134ed576134ec614790565b5b60006134fb84828501612f31565b91505092915050565b6000806040838503121561351b5761351a614790565b5b600061352985828601612f46565b925050602061353a85828601612f46565b9150509250929050565b60006020828403121561355a57613559614790565b5b600061356884828501612f70565b91505092915050565b61357a816144a4565b82525050565b61358981614492565b82525050565b613598816144b6565b82525050565b6135a7816144c2565b82525050565b60006135b9838561439f565b93506135c6838584614551565b6135cf83614795565b840190509392505050565b60006135e683856143b0565b93506135f3838584614551565b82840190509392505050565b600061360a82614389565b613614818561439f565b9350613624818560208601614560565b61362d81614795565b840191505092915050565b600061364382614389565b61364d81856143b0565b935061365d818560208601614560565b80840191505092915050565b6000815461367681614593565b613680818661439f565b9450600182166000811461369b57600181146136ad576136e0565b60ff19831686526020860193506136e0565b6136b685614374565b60005b838110156136d8578154818901526001820191506020810190506136b9565b808801955050505b50505092915050565b600081546136f681614593565b61370081866143b0565b9450600182166000811461371b576001811461372c5761375f565b60ff1983168652818601935061375f565b61373585614374565b60005b8381101561375757815481890152600182019150602081019050613738565b838801955050505b50505092915050565b600061377382614394565b61377d81856143bb565b935061378d818560208601614560565b61379681614795565b840191505092915050565b60006137ac82614394565b6137b681856143cc565b93506137c6818560208601614560565b80840191505092915050565b60006137df601d836143bb565b91506137ea826147b3565b602082019050919050565b60006138026018836143bb565b915061380d826147dc565b602082019050919050565b60006138256032836143bb565b915061383082614805565b604082019050919050565b60006138486026836143bb565b915061385382614854565b604082019050919050565b600061386b6018836143bb565b9150613876826148a3565b602082019050919050565b600061388e6024836143bb565b9150613899826148cc565b604082019050919050565b60006138b16028836143bb565b91506138bc8261491b565b604082019050919050565b60006138d46019836143bb565b91506138df8261496a565b602082019050919050565b60006138f7602e836143bb565b915061390282614993565b604082019050919050565b600061391a601a836143bb565b9150613925826149e2565b602082019050919050565b600061393d6022836143bb565b915061394882614a0b565b604082019050919050565b60006139606048836143bb565b915061396b82614a5a565b606082019050919050565b6000613983602c836143bb565b915061398e82614acf565b604082019050919050565b60006139a66038836143bb565b91506139b182614b1e565b604082019050919050565b60006139c9602a836143bb565b91506139d482614b6d565b604082019050919050565b60006139ec6029836143bb565b91506139f782614bbc565b604082019050919050565b6000613a0f602b836143bb565b9150613a1a82614c0b565b604082019050919050565b6000613a326020836143bb565b9150613a3d82614c5a565b602082019050919050565b6000613a55602c836143bb565b9150613a6082614c83565b604082019050919050565b6000613a786005836143cc565b9150613a8382614cd2565b600582019050919050565b6000613a9b6020836143bb565b9150613aa682614cfb565b602082019050919050565b6000613abe6034836143bb565b9150613ac982614d24565b604082019050919050565b6000613ae16029836143bb565b9150613aec82614d73565b604082019050919050565b6000613b04602f836143bb565b9150613b0f82614dc2565b604082019050919050565b6000613b276021836143bb565b9150613b3282614e11565b604082019050919050565b6000613b4a6029836143bb565b9150613b5582614e60565b604082019050919050565b6000613b6d6000836143b0565b9150613b7882614eaf565b600082019050919050565b6000613b906031836143bb565b9150613b9b82614eb2565b604082019050919050565b6000613bb36026836143bb565b9150613bbe82614f01565b604082019050919050565b613bd2816144f8565b82525050565b613be9613be4826144f8565b61463f565b82525050565b613bf881614526565b82525050565b613c0f613c0a82614526565b614651565b82525050565b613c1e81614530565b82525050565b6000613c318284866135da565b91508190509392505050565b6000613c498284613638565b915081905092915050565b6000613c6082846136e9565b915081905092915050565b6000613c7782856137a1565b9150613c8382846137a1565b9150613c8e82613a6b565b91508190509392505050565b6000613ca582613b60565b9150819050919050565b6000613cbb8285613bd8565b600282019150613ccb8284613bfe565b6020820191508190509392505050565b6000602082019050613cf06000830184613580565b92915050565b6000608082019050613d0b6000830187613580565b613d186020830186613580565b613d256040830185613bef565b8181036060830152613d3781846135ff565b905095945050505050565b6000604082019050613d576000830185613580565b613d646020830184613bef565b9392505050565b6000602082019050613d80600083018461358f565b92915050565b60006020820190508181036000830152613da081846135ff565b905092915050565b60006020820190508181036000830152613dc28184613768565b905092915050565b60006020820190508181036000830152613de3816137d2565b9050919050565b60006020820190508181036000830152613e03816137f5565b9050919050565b60006020820190508181036000830152613e2381613818565b9050919050565b60006020820190508181036000830152613e438161383b565b9050919050565b60006020820190508181036000830152613e638161385e565b9050919050565b60006020820190508181036000830152613e8381613881565b9050919050565b60006020820190508181036000830152613ea3816138a4565b9050919050565b60006020820190508181036000830152613ec3816138c7565b9050919050565b60006020820190508181036000830152613ee3816138ea565b9050919050565b60006020820190508181036000830152613f038161390d565b9050919050565b60006020820190508181036000830152613f2381613930565b9050919050565b60006020820190508181036000830152613f4381613953565b9050919050565b60006020820190508181036000830152613f6381613976565b9050919050565b60006020820190508181036000830152613f8381613999565b9050919050565b60006020820190508181036000830152613fa3816139bc565b9050919050565b60006020820190508181036000830152613fc3816139df565b9050919050565b60006020820190508181036000830152613fe381613a02565b9050919050565b6000602082019050818103600083015261400381613a25565b9050919050565b6000602082019050818103600083015261402381613a48565b9050919050565b6000602082019050818103600083015261404381613a8e565b9050919050565b6000602082019050818103600083015261406381613ab1565b9050919050565b6000602082019050818103600083015261408381613ad4565b9050919050565b600060208201905081810360008301526140a381613af7565b9050919050565b600060208201905081810360008301526140c381613b1a565b9050919050565b600060208201905081810360008301526140e381613b3d565b9050919050565b6000602082019050818103600083015261410381613b83565b9050919050565b6000602082019050818103600083015261412381613ba6565b9050919050565b600060a08201905061413f6000830188613bc9565b61414c6020830187613580565b818103604083015261415e81866135ff565b905061416d606083018561358f565b818103608083015261417f81846135ff565b90509695505050505050565b60006080820190506141a06000830188613bc9565b81810360208301526141b281876135ff565b90506141c16040830186613c15565b81810360608301526141d48184866135ad565b90509695505050505050565b60006080820190506141f56000830187613bc9565b818103602083015261420781866135ff565b90506142166040830185613c15565b818103606083015261422881846135ff565b905095945050505050565b600060c0820190506142486000830189613bc9565b818103602083015261425a8188613669565b9050818103604083015261426e81876135ff565b905061427d6060830186613571565b61428a6080830185613580565b81810360a083015261429c81846135ff565b9050979650505050505050565b60006020820190506142be6000830184613bef565b92915050565b60006040820190506142d96000830185613bef565b6142e6602083018461359e565b9392505050565b60006142f7614308565b905061430382826145c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561432d5761432c614748565b5b61433682614795565b9050602081019050919050565b600067ffffffffffffffff82111561435e5761435d614748565b5b61436782614795565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143e282614526565b91506143ed83614526565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144225761442161468c565b5b828201905092915050565b600061443882614526565b915061444383614526565b925082614453576144526146bb565b5b828204905092915050565b600061446982614526565b915061447483614526565b9250828210156144875761448661468c565b5b828203905092915050565b600061449d82614506565b9050919050565b60006144af82614506565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561457e578082015181840152602081019050614563565b8381111561458d576000848401525b50505050565b600060028204905060018216806145ab57607f821691505b602082108114156145bf576145be6146ea565b5b50919050565b6145ce82614795565b810181811067ffffffffffffffff821117156145ed576145ec614748565b5b80604052505050565b600061460182614526565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146345761463361468c565b5b600182019050919050565b600061464a826147a6565b9050919050565b6000819050919050565b600061466682614526565b915061467183614526565b925082614681576146806146bb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f5333583a204661696c656420746f207769746864726177204574686572000000600082015250565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5333583a204d696e74206578636565647320737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5333583a204d6178206d696e7420616d6f756e74207065722077616c6c65742060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f5333583a206d73672e76616c7565206e6f7420656e6f75676820746f20636f7660008201527f6572206d6573736167654665652e2053656e642067617320666f72206d65737360208201527f6167652066656573000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5333583a204d6178206d696e7420616d6f756e74207065722073657373696f6e60008201527f2065786365656465640000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b614f5981614492565b8114614f6457600080fd5b50565b614f70816144a4565b8114614f7b57600080fd5b50565b614f87816144b6565b8114614f9257600080fd5b50565b614f9e816144cc565b8114614fa957600080fd5b50565b614fb5816144f8565b8114614fc057600080fd5b50565b614fcc81614526565b8114614fd757600080fd5b50565b614fe381614530565b8114614fee57600080fd5b50565b614ffa81614544565b811461500557600080fd5b5056fea26469706673582212206e49c459dc5802fb1b7d8170aec5d5a8fe34296b8733ce5528aaef464068800e64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57697658324a4a566e68547a464c5a6856464459333361617358703433716737474d4750544e6d54587071422f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d75760003560e01c8063715018a611610102578063b2bdfa7b11610095578063d1deba1f11610064578063d1deba1f1461067b578063e985e9c514610697578063eb8d72b7146106d4578063f2fde38b146106fd576101d7565b8063b2bdfa7b146105ce578063b88d4fde146105f9578063c87b56dd14610622578063cf89fa031461065f576101d7565b80638ee74912116100d15780638ee7491214610513578063943fb8721461055157806395d89b411461057a578063a22cb465146105a5576101d7565b8063715018a61461048a5780637533d788146104a157806377e05b3d146104de5780638da5cb5b146104e8576101d7565b806323b872dd1161017a5780635c975abb116101495780635c975abb146103c95780636352211e146103f45780636ecd23061461043157806370a082311461044d576101d7565b806323b872dd146103255780632e1a7d4d1461034e57806342842e0e1461037757806355f804b3146103a0576101d7565b806306fdde03116101b657806306fdde031461026b578063081812fc14610296578063095ea7b3146102d35780631c37a822146102fc576101d7565b80621d3567146101dc57806301ffc9a71461020557806302329a2914610242575b600080fd5b3480156101e857600080fd5b5061020360048036038101906101fe91906133f8565b610726565b005b34801561021157600080fd5b5061022c600480360381019061022791906131b5565b610968565b6040516102399190613d6b565b60405180910390f35b34801561024e57600080fd5b5061026960048036038101906102649190613188565b610a4a565b005b34801561027757600080fd5b50610280610ae3565b60405161028d9190613da8565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b891906134d7565b610b75565b6040516102ca9190613cdb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613148565b610bfa565b005b34801561030857600080fd5b50610323600480360381019061031e91906133f8565b610d12565b005b34801561033157600080fd5b5061034c60048036038101906103479190613032565b610d92565b005b34801561035a57600080fd5b50610375600480360381019061037091906134d7565b610df2565b005b34801561038357600080fd5b5061039e60048036038101906103999190613032565b610f40565b005b3480156103ac57600080fd5b506103c760048036038101906103c2919061320f565b610f60565b005b3480156103d557600080fd5b506103de610ff6565b6040516103eb9190613d6b565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906134d7565b611009565b6040516104289190613cdb565b60405180910390f35b61044b60048036038101906104469190613544565b6110bb565b005b34801561045957600080fd5b50610474600480360381019061046f9190612f85565b611291565b60405161048191906142a9565b60405180910390f35b34801561049657600080fd5b5061049f611349565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613258565b6113d1565b6040516104d59190613d86565b60405180910390f35b6104e6611471565b005b3480156104f457600080fd5b506104fd611473565b60405161050a9190613cdb565b60405180910390f35b34801561051f57600080fd5b5061053a600480360381019061053591906132e5565b61149c565b6040516105489291906142c4565b60405180910390f35b34801561055d57600080fd5b50610578600480360381019061057391906134d7565b6114f0565b005b34801561058657600080fd5b5061058f611576565b60405161059c9190613da8565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613108565b611608565b005b3480156105da57600080fd5b506105e361161e565b6040516105f09190613cdb565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613085565b611644565b005b34801561062e57600080fd5b50610649600480360381019061064491906134d7565b6116a6565b6040516106569190613da8565b60405180910390f35b61067960048036038101906106749190613497565b61174d565b005b61069560048036038101906106909190613354565b611a40565b005b3480156106a357600080fd5b506106be60048036038101906106b99190612ff2565b611be0565b6040516106cb9190613d6b565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613285565b611c74565b005b34801561070957600080fd5b50610724600480360381019061071f9190612f85565b611d20565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078057600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546107a690614593565b905083511480156107ec5750600960008561ffff1661ffff1681526020019081526020016000206040516107da9190613c54565b60405180910390208380519060200120145b61082b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108229061404a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b815260040161086a94939291906141e0565b600060405180830381600087803b15801561088457600080fd5b505af1925050508015610895575060015b610961576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108df9190613c3d565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d8484848460405161095494939291906141e0565b60405180910390a1610962565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a435750610a4282611e18565b5b9050919050565b610a52611e82565b73ffffffffffffffffffffffffffffffffffffffff16610a70611473565b73ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd9061402a565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606060018054610af290614593565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90614593565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b8082611e8a565b610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb69061400a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0582611009565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d906140aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c95611e82565b73ffffffffffffffffffffffffffffffffffffffff161480610cc45750610cc381610cbe611e82565b611be0565b5b610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613f6a565b60405180910390fd5b610d0d8383611ef6565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613fca565b60405180910390fd5b610d8c84848484611faf565b50505050565b610da3610d9d611e82565b82611fdc565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906140ea565b60405180910390fd5b610ded8383836120ba565b505050565b610dfa611e82565b73ffffffffffffffffffffffffffffffffffffffff16610e18611473565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061402a565b60405180910390fd5b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610eb690613c9a565b60006040518083038185875af1925050503d8060008114610ef3576040519150601f19603f3d011682016040523d82523d6000602084013e610ef8565b606091505b5050905080610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613dca565b60405180910390fd5b5050565b610f5b83838360405180602001604052806000815250611644565b505050565b610f68611e82565b73ffffffffffffffffffffffffffffffffffffffff16610f86611473565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd39061402a565b60405180910390fd5b80600b9080519060200190610ff2929190612c54565b5050565b600a60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990613faa565b60405180910390fd5b80915050919050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116157600a60009054906101000a900460ff1615611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613dea565b60405180910390fd5b5b600e548160ff1611156111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a0906140ca565b60405180910390fd5b600d548160ff16600c546111bd91906143d7565b11156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613e4a565b60405180910390fd5b61120733611291565b600f54101561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290613e8a565b60405180910390fd5b6000600190505b8160ff16811161128d5761127a33600c6000815461126f906145f6565b919050819055612316565b8080611285906145f6565b915050611252565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613f8a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611351611e82565b73ffffffffffffffffffffffffffffffffffffffff1661136f611473565b73ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061402a565b60405180910390fd5b6113cf6000612334565b565b600960205280600052604060002060009150905080546113f090614593565b80601f016020809104026020016040519081016040528092919081815260200182805461141c90614593565b80156114695780601f1061143e57610100808354040283529160200191611469565b820191906000526020600020905b81548152906001019060200180831161144c57829003601f168201915b505050505081565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b6114f8611e82565b73ffffffffffffffffffffffffffffffffffffffff16611516611473565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061402a565b60405180910390fd5b8060108190555050565b60606002805461158590614593565b80601f01602080910402602001604051908101604052809291908181526020018280546115b190614593565b80156115fe5780601f106115d3576101008083540402835291602001916115fe565b820191906000526020600020905b8154815290600101906020018083116115e157829003601f168201915b5050505050905090565b61161a611613611e82565b83836123f8565b5050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61165561164f611e82565b83611fdc565b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906140ea565b60405180910390fd5b6116a084848484612565565b50505050565b60606116b182611e8a565b6116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e79061408a565b60405180910390fd5b60006116fa6125c1565b9050600081511161171a5760405180602001604052806000815250611745565b8061172484612653565b604051602001611735929190613c6b565b6040516020818303038152906040525b915050919050565b61175681611009565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613f0a565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546117eb90614593565b90501161182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613eca565b60405180910390fd5b611836816127b4565b6000338260405160200161184b929190613d42565b6040516020818303038152906040529050600060019050600081601054604051602001611879929190613caf565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016118f095949392919061412a565b604080518083038186803b15801561190757600080fd5b505afa15801561191b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193f9190613504565b50905080341015611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613f2a565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b8152600401611a0696959493929190614233565b6000604051808303818588803b158015611a1f57600080fd5b505af1158015611a33573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff16815260200190815260200160002085604051611a6b9190613c3d565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b81600101541415611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad79061410a565b60405180910390fd5b806000015483839050148015611b10575080600101548383604051611b06929190613c24565b6040518091039020145b611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690613eea565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611ba695949392919061418b565b600060405180830381600087803b158015611bc057600080fd5b505af1158015611bd4573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c7c611e82565b73ffffffffffffffffffffffffffffffffffffffff16611c9a611473565b73ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061402a565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611d1a929190612cda565b50505050565b611d28611e82565b73ffffffffffffffffffffffffffffffffffffffff16611d46611473565b73ffffffffffffffffffffffffffffffffffffffff1614611d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d939061402a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390613e2a565b60405180910390fd5b611e1581612334565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f6983611009565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611fc69190612fb2565b91509150611fd48282612316565b505050505050565b6000611fe782611e8a565b612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613f4a565b60405180910390fd5b600061203183611009565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120a057508373ffffffffffffffffffffffffffffffffffffffff1661208884610b75565b73ffffffffffffffffffffffffffffffffffffffff16145b806120b157506120b08185611be0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120da82611009565b73ffffffffffffffffffffffffffffffffffffffff1614612130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121279061406a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219790613e6a565b60405180910390fd5b6121ab8383836128c5565b6121b6600082611ef6565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612206919061445e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225d91906143d7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123308282604051806020016040528060008152506128ca565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e90613eaa565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125589190613d6b565b60405180910390a3505050565b6125708484846120ba565b61257c84848484612925565b6125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290613e0a565b60405180910390fd5b50505050565b6060600b80546125d090614593565b80601f01602080910402602001604051908101604052809291908181526020018280546125fc90614593565b80156126495780601f1061261e57610100808354040283529160200191612649565b820191906000526020600020905b81548152906001019060200180831161262c57829003601f168201915b5050505050905090565b6060600082141561269b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127af565b600082905060005b600082146126cd5780806126b6906145f6565b915050600a826126c6919061442d565b91506126a3565b60008167ffffffffffffffff8111156126e9576126e8614748565b5b6040519080825280601f01601f19166020018201604052801561271b5781602001600182028036833780820191505090505b5090505b600085146127a857600182612734919061445e565b9150600a85612743919061465b565b603061274f91906143d7565b60f81b81838151811061276557612764614719565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127a1919061442d565b945061271f565b8093505050505b919050565b60006127bf82611009565b90506127cd816000846128c5565b6127d8600083611ef6565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612828919061445e565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6128d48383612abc565b6128e16000848484612925565b612920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291790613e0a565b60405180910390fd5b505050565b60006129468473ffffffffffffffffffffffffffffffffffffffff16612c41565b15612aaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296f611e82565b8786866040518563ffffffff1660e01b81526004016129919493929190613cf6565b602060405180830381600087803b1580156129ab57600080fd5b505af19250505080156129dc57506040513d601f19601f820116820180604052508101906129d991906131e2565b60015b612a5f573d8060008114612a0c576040519150601f19603f3d011682016040523d82523d6000602084013e612a11565b606091505b50600081511415612a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4e90613e0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ab4565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2390613fea565b60405180910390fd5b612b38600083836128c5565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8891906143d7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c6090614593565b90600052602060002090601f016020900481019282612c825760008555612cc9565b82601f10612c9b57805160ff1916838001178555612cc9565b82800160010185558215612cc9579182015b82811115612cc8578251825591602001919060010190612cad565b5b509050612cd69190612d60565b5090565b828054612ce690614593565b90600052602060002090601f016020900481019282612d085760008555612d4f565b82601f10612d2157803560ff1916838001178555612d4f565b82800160010185558215612d4f579182015b82811115612d4e578235825591602001919060010190612d33565b5b509050612d5c9190612d60565b5090565b5b80821115612d79576000816000905550600101612d61565b5090565b6000612d90612d8b84614312565b6142ed565b905082815260208101848484011115612dac57612dab614786565b5b612db7848285614551565b509392505050565b6000612dd2612dcd84614343565b6142ed565b905082815260208101848484011115612dee57612ded614786565b5b612df9848285614551565b509392505050565b600081359050612e1081614f50565b92915050565b600081519050612e2581614f67565b92915050565b600081359050612e3a81614f7e565b92915050565b600081359050612e4f81614f95565b92915050565b600081519050612e6481614f95565b92915050565b60008083601f840112612e8057612e7f61477c565b5b8235905067ffffffffffffffff811115612e9d57612e9c614777565b5b602083019150836001820283011115612eb957612eb8614781565b5b9250929050565b600082601f830112612ed557612ed461477c565b5b8135612ee5848260208601612d7d565b91505092915050565b600082601f830112612f0357612f0261477c565b5b8135612f13848260208601612dbf565b91505092915050565b600081359050612f2b81614fac565b92915050565b600081359050612f4081614fc3565b92915050565b600081519050612f5581614fc3565b92915050565b600081359050612f6a81614fda565b92915050565b600081359050612f7f81614ff1565b92915050565b600060208284031215612f9b57612f9a614790565b5b6000612fa984828501612e01565b91505092915050565b60008060408385031215612fc957612fc8614790565b5b6000612fd785828601612e16565b9250506020612fe885828601612f46565b9150509250929050565b6000806040838503121561300957613008614790565b5b600061301785828601612e01565b925050602061302885828601612e01565b9150509250929050565b60008060006060848603121561304b5761304a614790565b5b600061305986828701612e01565b935050602061306a86828701612e01565b925050604061307b86828701612f31565b9150509250925092565b6000806000806080858703121561309f5761309e614790565b5b60006130ad87828801612e01565b94505060206130be87828801612e01565b93505060406130cf87828801612f31565b925050606085013567ffffffffffffffff8111156130f0576130ef61478b565b5b6130fc87828801612ec0565b91505092959194509250565b6000806040838503121561311f5761311e614790565b5b600061312d85828601612e01565b925050602061313e85828601612e2b565b9150509250929050565b6000806040838503121561315f5761315e614790565b5b600061316d85828601612e01565b925050602061317e85828601612f31565b9150509250929050565b60006020828403121561319e5761319d614790565b5b60006131ac84828501612e2b565b91505092915050565b6000602082840312156131cb576131ca614790565b5b60006131d984828501612e40565b91505092915050565b6000602082840312156131f8576131f7614790565b5b600061320684828501612e55565b91505092915050565b60006020828403121561322557613224614790565b5b600082013567ffffffffffffffff8111156132435761324261478b565b5b61324f84828501612eee565b91505092915050565b60006020828403121561326e5761326d614790565b5b600061327c84828501612f1c565b91505092915050565b60008060006040848603121561329e5761329d614790565b5b60006132ac86828701612f1c565b935050602084013567ffffffffffffffff8111156132cd576132cc61478b565b5b6132d986828701612e6a565b92509250509250925092565b6000806000606084860312156132fe576132fd614790565b5b600061330c86828701612f1c565b935050602084013567ffffffffffffffff81111561332d5761332c61478b565b5b61333986828701612ec0565b925050604061334a86828701612f31565b9150509250925092565b6000806000806000608086880312156133705761336f614790565b5b600061337e88828901612f1c565b955050602086013567ffffffffffffffff81111561339f5761339e61478b565b5b6133ab88828901612ec0565b94505060406133bc88828901612f5b565b935050606086013567ffffffffffffffff8111156133dd576133dc61478b565b5b6133e988828901612e6a565b92509250509295509295909350565b6000806000806080858703121561341257613411614790565b5b600061342087828801612f1c565b945050602085013567ffffffffffffffff8111156134415761344061478b565b5b61344d87828801612ec0565b935050604061345e87828801612f5b565b925050606085013567ffffffffffffffff81111561347f5761347e61478b565b5b61348b87828801612ec0565b91505092959194509250565b600080604083850312156134ae576134ad614790565b5b60006134bc85828601612f1c565b92505060206134cd85828601612f31565b9150509250929050565b6000602082840312156134ed576134ec614790565b5b60006134fb84828501612f31565b91505092915050565b6000806040838503121561351b5761351a614790565b5b600061352985828601612f46565b925050602061353a85828601612f46565b9150509250929050565b60006020828403121561355a57613559614790565b5b600061356884828501612f70565b91505092915050565b61357a816144a4565b82525050565b61358981614492565b82525050565b613598816144b6565b82525050565b6135a7816144c2565b82525050565b60006135b9838561439f565b93506135c6838584614551565b6135cf83614795565b840190509392505050565b60006135e683856143b0565b93506135f3838584614551565b82840190509392505050565b600061360a82614389565b613614818561439f565b9350613624818560208601614560565b61362d81614795565b840191505092915050565b600061364382614389565b61364d81856143b0565b935061365d818560208601614560565b80840191505092915050565b6000815461367681614593565b613680818661439f565b9450600182166000811461369b57600181146136ad576136e0565b60ff19831686526020860193506136e0565b6136b685614374565b60005b838110156136d8578154818901526001820191506020810190506136b9565b808801955050505b50505092915050565b600081546136f681614593565b61370081866143b0565b9450600182166000811461371b576001811461372c5761375f565b60ff1983168652818601935061375f565b61373585614374565b60005b8381101561375757815481890152600182019150602081019050613738565b838801955050505b50505092915050565b600061377382614394565b61377d81856143bb565b935061378d818560208601614560565b61379681614795565b840191505092915050565b60006137ac82614394565b6137b681856143cc565b93506137c6818560208601614560565b80840191505092915050565b60006137df601d836143bb565b91506137ea826147b3565b602082019050919050565b60006138026018836143bb565b915061380d826147dc565b602082019050919050565b60006138256032836143bb565b915061383082614805565b604082019050919050565b60006138486026836143bb565b915061385382614854565b604082019050919050565b600061386b6018836143bb565b9150613876826148a3565b602082019050919050565b600061388e6024836143bb565b9150613899826148cc565b604082019050919050565b60006138b16028836143bb565b91506138bc8261491b565b604082019050919050565b60006138d46019836143bb565b91506138df8261496a565b602082019050919050565b60006138f7602e836143bb565b915061390282614993565b604082019050919050565b600061391a601a836143bb565b9150613925826149e2565b602082019050919050565b600061393d6022836143bb565b915061394882614a0b565b604082019050919050565b60006139606048836143bb565b915061396b82614a5a565b606082019050919050565b6000613983602c836143bb565b915061398e82614acf565b604082019050919050565b60006139a66038836143bb565b91506139b182614b1e565b604082019050919050565b60006139c9602a836143bb565b91506139d482614b6d565b604082019050919050565b60006139ec6029836143bb565b91506139f782614bbc565b604082019050919050565b6000613a0f602b836143bb565b9150613a1a82614c0b565b604082019050919050565b6000613a326020836143bb565b9150613a3d82614c5a565b602082019050919050565b6000613a55602c836143bb565b9150613a6082614c83565b604082019050919050565b6000613a786005836143cc565b9150613a8382614cd2565b600582019050919050565b6000613a9b6020836143bb565b9150613aa682614cfb565b602082019050919050565b6000613abe6034836143bb565b9150613ac982614d24565b604082019050919050565b6000613ae16029836143bb565b9150613aec82614d73565b604082019050919050565b6000613b04602f836143bb565b9150613b0f82614dc2565b604082019050919050565b6000613b276021836143bb565b9150613b3282614e11565b604082019050919050565b6000613b4a6029836143bb565b9150613b5582614e60565b604082019050919050565b6000613b6d6000836143b0565b9150613b7882614eaf565b600082019050919050565b6000613b906031836143bb565b9150613b9b82614eb2565b604082019050919050565b6000613bb36026836143bb565b9150613bbe82614f01565b604082019050919050565b613bd2816144f8565b82525050565b613be9613be4826144f8565b61463f565b82525050565b613bf881614526565b82525050565b613c0f613c0a82614526565b614651565b82525050565b613c1e81614530565b82525050565b6000613c318284866135da565b91508190509392505050565b6000613c498284613638565b915081905092915050565b6000613c6082846136e9565b915081905092915050565b6000613c7782856137a1565b9150613c8382846137a1565b9150613c8e82613a6b565b91508190509392505050565b6000613ca582613b60565b9150819050919050565b6000613cbb8285613bd8565b600282019150613ccb8284613bfe565b6020820191508190509392505050565b6000602082019050613cf06000830184613580565b92915050565b6000608082019050613d0b6000830187613580565b613d186020830186613580565b613d256040830185613bef565b8181036060830152613d3781846135ff565b905095945050505050565b6000604082019050613d576000830185613580565b613d646020830184613bef565b9392505050565b6000602082019050613d80600083018461358f565b92915050565b60006020820190508181036000830152613da081846135ff565b905092915050565b60006020820190508181036000830152613dc28184613768565b905092915050565b60006020820190508181036000830152613de3816137d2565b9050919050565b60006020820190508181036000830152613e03816137f5565b9050919050565b60006020820190508181036000830152613e2381613818565b9050919050565b60006020820190508181036000830152613e438161383b565b9050919050565b60006020820190508181036000830152613e638161385e565b9050919050565b60006020820190508181036000830152613e8381613881565b9050919050565b60006020820190508181036000830152613ea3816138a4565b9050919050565b60006020820190508181036000830152613ec3816138c7565b9050919050565b60006020820190508181036000830152613ee3816138ea565b9050919050565b60006020820190508181036000830152613f038161390d565b9050919050565b60006020820190508181036000830152613f2381613930565b9050919050565b60006020820190508181036000830152613f4381613953565b9050919050565b60006020820190508181036000830152613f6381613976565b9050919050565b60006020820190508181036000830152613f8381613999565b9050919050565b60006020820190508181036000830152613fa3816139bc565b9050919050565b60006020820190508181036000830152613fc3816139df565b9050919050565b60006020820190508181036000830152613fe381613a02565b9050919050565b6000602082019050818103600083015261400381613a25565b9050919050565b6000602082019050818103600083015261402381613a48565b9050919050565b6000602082019050818103600083015261404381613a8e565b9050919050565b6000602082019050818103600083015261406381613ab1565b9050919050565b6000602082019050818103600083015261408381613ad4565b9050919050565b600060208201905081810360008301526140a381613af7565b9050919050565b600060208201905081810360008301526140c381613b1a565b9050919050565b600060208201905081810360008301526140e381613b3d565b9050919050565b6000602082019050818103600083015261410381613b83565b9050919050565b6000602082019050818103600083015261412381613ba6565b9050919050565b600060a08201905061413f6000830188613bc9565b61414c6020830187613580565b818103604083015261415e81866135ff565b905061416d606083018561358f565b818103608083015261417f81846135ff565b90509695505050505050565b60006080820190506141a06000830188613bc9565b81810360208301526141b281876135ff565b90506141c16040830186613c15565b81810360608301526141d48184866135ad565b90509695505050505050565b60006080820190506141f56000830187613bc9565b818103602083015261420781866135ff565b90506142166040830185613c15565b818103606083015261422881846135ff565b905095945050505050565b600060c0820190506142486000830189613bc9565b818103602083015261425a8188613669565b9050818103604083015261426e81876135ff565b905061427d6060830186613571565b61428a6080830185613580565b81810360a083015261429c81846135ff565b9050979650505050505050565b60006020820190506142be6000830184613bef565b92915050565b60006040820190506142d96000830185613bef565b6142e6602083018461359e565b9392505050565b60006142f7614308565b905061430382826145c5565b919050565b6000604051905090565b600067ffffffffffffffff82111561432d5761432c614748565b5b61433682614795565b9050602081019050919050565b600067ffffffffffffffff82111561435e5761435d614748565b5b61436782614795565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143e282614526565b91506143ed83614526565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144225761442161468c565b5b828201905092915050565b600061443882614526565b915061444383614526565b925082614453576144526146bb565b5b828204905092915050565b600061446982614526565b915061447483614526565b9250828210156144875761448661468c565b5b828203905092915050565b600061449d82614506565b9050919050565b60006144af82614506565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561457e578082015181840152602081019050614563565b8381111561458d576000848401525b50505050565b600060028204905060018216806145ab57607f821691505b602082108114156145bf576145be6146ea565b5b50919050565b6145ce82614795565b810181811067ffffffffffffffff821117156145ed576145ec614748565b5b80604052505050565b600061460182614526565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146345761463361468c565b5b600182019050919050565b600061464a826147a6565b9050919050565b6000819050919050565b600061466682614526565b915061467183614526565b925082614681576146806146bb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f5333583a204661696c656420746f207769746864726177204574686572000000600082015250565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5333583a204d696e74206578636565647320737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5333583a204d6178206d696e7420616d6f756e74207065722077616c6c65742060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f5333583a206d73672e76616c7565206e6f7420656e6f75676820746f20636f7660008201527f6572206d6573736167654665652e2053656e642067617320666f72206d65737360208201527f6167652066656573000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5333583a204d6178206d696e7420616d6f756e74207065722073657373696f6e60008201527f2065786365656465640000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b614f5981614492565b8114614f6457600080fd5b50565b614f70816144a4565b8114614f7b57600080fd5b50565b614f87816144b6565b8114614f9257600080fd5b50565b614f9e816144cc565b8114614fa957600080fd5b50565b614fb5816144f8565b8114614fc057600080fd5b50565b614fcc81614526565b8114614fd757600080fd5b50565b614fe381614530565b8114614fee57600080fd5b50565b614ffa81614544565b811461500557600080fd5b5056fea26469706673582212206e49c459dc5802fb1b7d8170aec5d5a8fe34296b8733ce5528aaef464068800e64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57697658324a4a566e68547a464c5a6856464459333361617358703433716737474d4750544e6d54587071422f00000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d57697658324a4a566e68547a464c5a6856464459333361
Arg [4] : 617358703433716737474d4750544e6d54587071422f00000000000000000000


Deployed Bytecode Sourcemap

47273:3196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44528:949;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31591:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47828:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32536:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34105:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33628:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45485:356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34855:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49769:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35265:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49588:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47335:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32230:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47913:569;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31960:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12581:103;;;;;;;;;;;;;:::i;:::-;;44370:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49686:75;;;:::i;:::-;;11930:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44273:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;49952:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32705:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34398:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47367:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35521:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32880:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48492:1088;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46317:758;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34624:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47083:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12839:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44528:949;44690:8;;;;;;;;;;;44668:31;;:10;:31;;;44660:40;;;;;;44811:19;:32;44831:11;44811:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;44789:11;:18;:61;:134;;;;;44890:19;:32;44910:11;44890:32;;;;;;;;;;;;;;;44880:43;;;;;;:::i;:::-;;;;;;;;44864:11;44854:22;;;;;;:69;44789:134;44781:213;;;;;;;;;;;;:::i;:::-;;;;;;;;;45122:4;:16;;;45139:11;45152;45165:6;45173:8;45122:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45118:352;;45329:52;;;;;;;;45344:8;:15;45329:52;;;;45371:8;45361:19;;;;;;45329:52;;;45278:14;:27;45293:11;45278:27;;;;;;;;;;;;;;;45306:11;45278:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;45319:6;45278:48;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;;;;;45401:57;45415:11;45428;45441:6;45449:8;45401:57;;;;;;;;;:::i;:::-;;;;;;;;45118:352;;;;44528:949;;;;:::o;31591:305::-;31693:4;31745:25;31730:40;;;:11;:40;;;;:105;;;;31802:33;31787:48;;;:11;:48;;;;31730:105;:158;;;;31852:36;31876:11;31852:23;:36::i;:::-;31730:158;31710:178;;31591:305;;;:::o;47828:79::-;12161:12;:10;:12::i;:::-;12150:23;;:7;:5;:7::i;:::-;:23;;;12142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47893:6:::1;47884;;:15;;;;;;;;;;;;;;;;;;47828:79:::0;:::o;32536:100::-;32590:13;32623:5;32616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32536:100;:::o;34105:221::-;34181:7;34209:16;34217:7;34209;:16::i;:::-;34201:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34294:15;:24;34310:7;34294:24;;;;;;;;;;;;;;;;;;;;;34287:31;;34105:221;;;:::o;33628:411::-;33709:13;33725:23;33740:7;33725:14;:23::i;:::-;33709:39;;33773:5;33767:11;;:2;:11;;;;33759:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33867:5;33851:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33876:37;33893:5;33900:12;:10;:12::i;:::-;33876:16;:37::i;:::-;33851:62;33829:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34010:21;34019:2;34023:7;34010:8;:21::i;:::-;33698:341;33628:411;;:::o;45485:356::-;45676:4;45654:27;;:10;:27;;;45646:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;45778:55;45790:11;45803;45816:6;45824:8;45778:10;:55::i;:::-;45485:356;;;;:::o;34855:339::-;35050:41;35069:12;:10;:12::i;:::-;35083:7;35050:18;:41::i;:::-;35042:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35158:28;35168:4;35174:2;35178:7;35158:9;:28::i;:::-;34855:339;;;:::o;49769:175::-;12161:12;:10;:12::i;:::-;12150:23;;:7;:5;:7::i;:::-;:23;;;12142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49828:9:::1;49851:6;;;;;;;;;;;49843:20;;49871:3;49843:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49827:52;;;49898:4;49890:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49816:128;49769:175:::0;:::o;35265:185::-;35403:39;35420:4;35426:2;35430:7;35403:39;;;;;;;;;;;;:16;:39::i;:::-;35265:185;;;:::o;49588:90::-;12161:12;:10;:12::i;:::-;12150:23;;:7;:5;:7::i;:::-;:23;;;12142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49667:3:::1;49657:7;:13;;;;;;;;;;;;:::i;:::-;;49588:90:::0;:::o;47335:25::-;;;;;;;;;;;;;:::o;32230:239::-;32302:7;32322:13;32338:7;:16;32346:7;32338:16;;;;;;;;;;;;;;;;;;;;;32322:32;;32390:1;32373:19;;:5;:19;;;;32365:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32456:5;32449:12;;;32230:239;;;:::o;47913:569::-;47989:6;;;;;;;;;;;47975:20;;:10;:20;;;47972:95;;48020:6;;;;;;;;;;;48019:7;48011:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47972:95;48106:9;;48093;:22;;;;48085:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48208:12;;48195:9;48181:23;;:11;;:23;;;;:::i;:::-;:39;;48173:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48285:21;48295:10;48285:9;:21::i;:::-;48268:13;;:38;;48260:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;48368:9;48380:1;48368:13;;48363:105;48388:9;48383:14;;:1;:14;48363:105;;48420:36;48430:10;48444:11;;48442:13;;;;;:::i;:::-;;;;;;;48420:9;:36::i;:::-;48399:3;;;;;:::i;:::-;;;;48363:105;;;;47913:569;:::o;31960:208::-;32032:7;32077:1;32060:19;;:5;:19;;;;32052:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32144:9;:16;32154:5;32144:16;;;;;;;;;;;;;;;;32137:23;;31960:208;;;:::o;12581:103::-;12161:12;:10;:12::i;:::-;12150:23;;:7;:5;:7::i;:::-;:23;;;12142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12646:30:::1;12673:1;12646:18;:30::i;:::-;12581:103::o:0;44370:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49686:75::-;:::o;11930:87::-;11976:7;12003:6;;;;;;;;;;;11996:13;;11930:87;:::o;44273:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49952:125::-;12161:12;:10;:12::i;:::-;12150:23;;:7;:5;:7::i;:::-;:23;;;12142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50063:6:::1;50034:26;:35;;;;49952:125:::0;:::o;32705:104::-;32761:13;32794:7;32787:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32705:104;:::o;34398:155::-;34493:52;34512:12;:10;:12::i;:::-;34526:8;34536;34493:18;:52::i;:::-;34398:155;;:::o;47367:21::-;;;;;;;;;;;;;:::o;35521:328::-;35696:41;35715:12;:10;:12::i;:::-;35729:7;35696:18;:41::i;:::-;35688:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35802:39;35816:4;35822:2;35826:7;35835:5;35802:13;:39::i;:::-;35521:328;;;;:::o;32880:344::-;32953:13;32987:16;32995:7;32987;:16::i;:::-;32979:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33068:21;33092:10;:8;:10::i;:::-;33068:34;;33144:1;33126:7;33120:21;:25;:96;;;;;;;;;;;;;;;;;33172:7;33181:18;:7;:16;:18::i;:::-;33155:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33120:96;33113:103;;;32880:344;;;:::o;48492:1088::-;48595:16;48603:7;48595;:16::i;:::-;48581:30;;:10;:30;;;48573:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48708:1;48669:19;:29;48689:8;48669:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;48661:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48773:14;48779:7;48773:5;:14::i;:::-;48800:20;48834:10;48846:7;48823:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48800:54;;48867:14;48884:1;48867:18;;48896:26;48942:7;48951:26;;48925:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48896:82;;48992:15;49013:8;;;;;;;;;;;:21;;;49035:8;49053:4;49060:7;49069:5;49076:13;49013:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48991:99;;;49132:10;49119:9;:23;;49111:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;49232:8;;;;;;;;;;;:13;;;49253:9;49278:8;49328:19;:29;49348:8;49328:29;;;;;;;;;;;;;;;49378:7;49435:10;49484:3;49526:13;49232:340;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48562:1018;;;;48492:1088;;:::o;46317:758::-;46498:32;46533:14;:27;46548:11;46533:27;;;;;;;;;;;;;;;46561:11;46533:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;46574:6;46533:48;;;;;;;;;;;;;46498:83;;46633:1;46625:10;;46600:9;:21;;;:35;;46592:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;46716:9;:23;;;46697:8;;:15;;:42;:90;;;;;46766:9;:21;;;46753:8;;46743:19;;;;;;;:::i;:::-;;;;;;;;:44;46697:90;46689:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;46892:1;46866:9;:23;;:27;;;;46936:1;46928:10;;46904:9;:21;;:34;;;;47007:4;:16;;;47024:11;47037;47050:6;47058:8;;47007:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46442:633;46317:758;;;;;:::o;34624:164::-;34721:4;34745:18;:25;34764:5;34745:25;;;;;;;;;;;;;;;:35;34771:8;34745:35;;;;;;;;;;;;;;;;;;;;;;;;;34738:42;;34624:164;;;;:::o;47083:158::-;12161:12;:10;:12::i;:::-;12150:23;;:7;:5;:7::i;:::-;:23;;;12142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47219:14:::1;;47187:19;:29;47207:8;47187:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;47083:158:::0;;;:::o;12839:201::-;12161:12;:10;:12::i;:::-;12150:23;;:7;:5;:7::i;:::-;:23;;;12142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12948:1:::1;12928:22;;:8;:22;;;;12920:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13004:28;13023:8;13004:18;:28::i;:::-;12839:201:::0;:::o;24362:157::-;24447:4;24486:25;24471:40;;;:11;:40;;;;24464:47;;24362:157;;;:::o;10654:98::-;10707:7;10734:10;10727:17;;10654:98;:::o;37359:127::-;37424:4;37476:1;37448:30;;:7;:16;37456:7;37448:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37441:37;;37359:127;;;:::o;41272:174::-;41374:2;41347:15;:24;41363:7;41347:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41430:7;41426:2;41392:46;;41401:23;41416:7;41401:14;:23::i;:::-;41392:46;;;;;;;;;;;;41272:174;;:::o;50087:269::-;50240:14;50256:12;50283:8;50272:37;;;;;;;;;;;;:::i;:::-;50239:70;;;;50322:26;50332:6;50340:7;50322:9;:26::i;:::-;50209:147;;50087:269;;;;:::o;37653:348::-;37746:4;37771:16;37779:7;37771;:16::i;:::-;37763:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37847:13;37863:23;37878:7;37863:14;:23::i;:::-;37847:39;;37916:5;37905:16;;:7;:16;;;:51;;;;37949:7;37925:31;;:20;37937:7;37925:11;:20::i;:::-;:31;;;37905:51;:87;;;;37960:32;37977:5;37984:7;37960:16;:32::i;:::-;37905:87;37897:96;;;37653:348;;;;:::o;40576:578::-;40735:4;40708:31;;:23;40723:7;40708:14;:23::i;:::-;:31;;;40700:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40818:1;40804:16;;:2;:16;;;;40796:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40874:39;40895:4;40901:2;40905:7;40874:20;:39::i;:::-;40978:29;40995:1;40999:7;40978:8;:29::i;:::-;41039:1;41020:9;:15;41030:4;41020:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41068:1;41051:9;:13;41061:2;41051:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41099:2;41080:7;:16;41088:7;41080:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41138:7;41134:2;41119:27;;41128:4;41119:27;;;;;;;;;;;;40576:578;;;:::o;38343:110::-;38419:26;38429:2;38433:7;38419:26;;;;;;;;;;;;:9;:26::i;:::-;38343:110;;:::o;13200:191::-;13274:16;13293:6;;;;;;;;;;;13274:25;;13319:8;13310:6;;:17;;;;;;;;;;;;;;;;;;13374:8;13343:40;;13364:8;13343:40;;;;;;;;;;;;13263:128;13200:191;:::o;41588:315::-;41743:8;41734:17;;:5;:17;;;;41726:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41830:8;41792:18;:25;41811:5;41792:25;;;;;;;;;;;;;;;:35;41818:8;41792:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41876:8;41854:41;;41869:5;41854:41;;;41886:8;41854:41;;;;;;:::i;:::-;;;;;;;;41588:315;;;:::o;36731:::-;36888:28;36898:4;36904:2;36908:7;36888:9;:28::i;:::-;36935:48;36958:4;36964:2;36968:7;36977:5;36935:22;:48::i;:::-;36927:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;36731:315;;;;:::o;50366:100::-;50418:13;50451:7;50444:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50366:100;:::o;8216:723::-;8272:13;8502:1;8493:5;:10;8489:53;;;8520:10;;;;;;;;;;;;;;;;;;;;;8489:53;8552:12;8567:5;8552:20;;8583:14;8608:78;8623:1;8615:4;:9;8608:78;;8641:8;;;;;:::i;:::-;;;;8672:2;8664:10;;;;;:::i;:::-;;;8608:78;;;8696:19;8728:6;8718:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8696:39;;8746:154;8762:1;8753:5;:10;8746:154;;8790:1;8780:11;;;;;:::i;:::-;;;8857:2;8849:5;:10;;;;:::i;:::-;8836:2;:24;;;;:::i;:::-;8823:39;;8806:6;8813;8806:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8886:2;8877:11;;;;;:::i;:::-;;;8746:154;;;8924:6;8910:21;;;;;8216:723;;;;:::o;39879:360::-;39939:13;39955:23;39970:7;39955:14;:23::i;:::-;39939:39;;39991:48;40012:5;40027:1;40031:7;39991:20;:48::i;:::-;40080:29;40097:1;40101:7;40080:8;:29::i;:::-;40142:1;40122:9;:16;40132:5;40122:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;40161:7;:16;40169:7;40161:16;;;;;;;;;;;;40154:23;;;;;;;;;;;40223:7;40219:1;40195:36;;40204:5;40195:36;;;;;;;;;;;;39928:311;39879:360;:::o;43839:126::-;;;;:::o;38680:321::-;38810:18;38816:2;38820:7;38810:5;:18::i;:::-;38861:54;38892:1;38896:2;38900:7;38909:5;38861:22;:54::i;:::-;38839:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38680:321;;;:::o;42468:799::-;42623:4;42644:15;:2;:13;;;:15::i;:::-;42640:620;;;42696:2;42680:36;;;42717:12;:10;:12::i;:::-;42731:4;42737:7;42746:5;42680:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42676:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42939:1;42922:6;:13;:18;42918:272;;;42965:60;;;;;;;;;;:::i;:::-;;;;;;;;42918:272;43140:6;43134:13;43125:6;43121:2;43117:15;43110:38;42676:529;42813:41;;;42803:51;;;:6;:51;;;;42796:58;;;;;42640:620;43244:4;43237:11;;42468:799;;;;;;;:::o;39337:313::-;39431:1;39417:16;;:2;:16;;;;39409:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39483:45;39512:1;39516:2;39520:7;39483:20;:45::i;:::-;39558:1;39541:9;:13;39551:2;39541:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39589:2;39570:7;:16;39578:7;39570:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39634:7;39630:2;39609:33;;39626:1;39609:33;;;;;;;;;;;;39337:313;;:::o;14218:387::-;14278:4;14486:12;14553:7;14541:20;14533:28;;14596:1;14589:4;:8;14582:15;;;14218:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:159::-;1051:5;1082:6;1076:13;1067:22;;1098:41;1133:5;1098:41;:::i;:::-;986:159;;;;:::o;1151:133::-;1194:5;1232:6;1219:20;1210:29;;1248:30;1272:5;1248:30;:::i;:::-;1151:133;;;;:::o;1290:137::-;1335:5;1373:6;1360:20;1351:29;;1389:32;1415:5;1389:32;:::i;:::-;1290:137;;;;:::o;1433:141::-;1489:5;1520:6;1514:13;1505:22;;1536:32;1562:5;1536:32;:::i;:::-;1433:141;;;;:::o;1593:552::-;1650:8;1660:6;1710:3;1703:4;1695:6;1691:17;1687:27;1677:122;;1718:79;;:::i;:::-;1677:122;1831:6;1818:20;1808:30;;1861:18;1853:6;1850:30;1847:117;;;1883:79;;:::i;:::-;1847:117;1997:4;1989:6;1985:17;1973:29;;2051:3;2043:4;2035:6;2031:17;2021:8;2017:32;2014:41;2011:128;;;2058:79;;:::i;:::-;2011:128;1593:552;;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:137::-;2913:5;2951:6;2938:20;2929:29;;2967:32;2993:5;2967:32;:::i;:::-;2868:137;;;;:::o;3011:139::-;3057:5;3095:6;3082:20;3073:29;;3111:33;3138:5;3111:33;:::i;:::-;3011:139;;;;:::o;3156:143::-;3213:5;3244:6;3238:13;3229:22;;3260:33;3287:5;3260:33;:::i;:::-;3156:143;;;;:::o;3305:137::-;3350:5;3388:6;3375:20;3366:29;;3404:32;3430:5;3404:32;:::i;:::-;3305:137;;;;:::o;3448:135::-;3492:5;3530:6;3517:20;3508:29;;3546:31;3571:5;3546:31;:::i;:::-;3448:135;;;;:::o;3589:329::-;3648:6;3697:2;3685:9;3676:7;3672:23;3668:32;3665:119;;;3703:79;;:::i;:::-;3665:119;3823:1;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3794:117;3589:329;;;;:::o;3924:523::-;4011:6;4019;4068:2;4056:9;4047:7;4043:23;4039:32;4036:119;;;4074:79;;:::i;:::-;4036:119;4194:1;4219:72;4283:7;4274:6;4263:9;4259:22;4219:72;:::i;:::-;4209:82;;4165:136;4340:2;4366:64;4422:7;4413:6;4402:9;4398:22;4366:64;:::i;:::-;4356:74;;4311:129;3924:523;;;;;:::o;4453:474::-;4521:6;4529;4578:2;4566:9;4557:7;4553:23;4549:32;4546:119;;;4584:79;;:::i;:::-;4546:119;4704:1;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4675:117;4831:2;4857:53;4902:7;4893:6;4882:9;4878:22;4857:53;:::i;:::-;4847:63;;4802:118;4453:474;;;;;:::o;4933:619::-;5010:6;5018;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5201:1;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5172:117;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;4933:619;;;;;:::o;5558:943::-;5653:6;5661;5669;5677;5726:3;5714:9;5705:7;5701:23;5697:33;5694:120;;;5733:79;;:::i;:::-;5694:120;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6108:2;6134:53;6179:7;6170:6;6159:9;6155:22;6134:53;:::i;:::-;6124:63;;6079:118;6264:2;6253:9;6249:18;6236:32;6295:18;6287:6;6284:30;6281:117;;;6317:79;;:::i;:::-;6281:117;6422:62;6476:7;6467:6;6456:9;6452:22;6422:62;:::i;:::-;6412:72;;6207:287;5558:943;;;;;;;:::o;6507:468::-;6572:6;6580;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6726:117;6882:2;6908:50;6950:7;6941:6;6930:9;6926:22;6908:50;:::i;:::-;6898:60;;6853:115;6507:468;;;;;:::o;6981:474::-;7049:6;7057;7106:2;7094:9;7085:7;7081:23;7077:32;7074:119;;;7112:79;;:::i;:::-;7074:119;7232:1;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7203:117;7359:2;7385:53;7430:7;7421:6;7410:9;7406:22;7385:53;:::i;:::-;7375:63;;7330:118;6981:474;;;;;:::o;7461:323::-;7517:6;7566:2;7554:9;7545:7;7541:23;7537:32;7534:119;;;7572:79;;:::i;:::-;7534:119;7692:1;7717:50;7759:7;7750:6;7739:9;7735:22;7717:50;:::i;:::-;7707:60;;7663:114;7461:323;;;;:::o;7790:327::-;7848:6;7897:2;7885:9;7876:7;7872:23;7868:32;7865:119;;;7903:79;;:::i;:::-;7865:119;8023:1;8048:52;8092:7;8083:6;8072:9;8068:22;8048:52;:::i;:::-;8038:62;;7994:116;7790:327;;;;:::o;8123:349::-;8192:6;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:63;8447:7;8438:6;8427:9;8423:22;8392:63;:::i;:::-;8382:73;;8338:127;8123:349;;;;:::o;8478:509::-;8547:6;8596:2;8584:9;8575:7;8571:23;8567:32;8564:119;;;8602:79;;:::i;:::-;8564:119;8750:1;8739:9;8735:17;8722:31;8780:18;8772:6;8769:30;8766:117;;;8802:79;;:::i;:::-;8766:117;8907:63;8962:7;8953:6;8942:9;8938:22;8907:63;:::i;:::-;8897:73;;8693:287;8478:509;;;;:::o;8993:327::-;9051:6;9100:2;9088:9;9079:7;9075:23;9071:32;9068:119;;;9106:79;;:::i;:::-;9068:119;9226:1;9251:52;9295:7;9286:6;9275:9;9271:22;9251:52;:::i;:::-;9241:62;;9197:116;8993:327;;;;:::o;9326:670::-;9404:6;9412;9420;9469:2;9457:9;9448:7;9444:23;9440:32;9437:119;;;9475:79;;:::i;:::-;9437:119;9595:1;9620:52;9664:7;9655:6;9644:9;9640:22;9620:52;:::i;:::-;9610:62;;9566:116;9749:2;9738:9;9734:18;9721:32;9780:18;9772:6;9769:30;9766:117;;;9802:79;;:::i;:::-;9766:117;9915:64;9971:7;9962:6;9951:9;9947:22;9915:64;:::i;:::-;9897:82;;;;9692:297;9326:670;;;;;:::o;10002:795::-;10087:6;10095;10103;10152:2;10140:9;10131:7;10127:23;10123:32;10120:119;;;10158:79;;:::i;:::-;10120:119;10278:1;10303:52;10347:7;10338:6;10327:9;10323:22;10303:52;:::i;:::-;10293:62;;10249:116;10432:2;10421:9;10417:18;10404:32;10463:18;10455:6;10452:30;10449:117;;;10485:79;;:::i;:::-;10449:117;10590:62;10644:7;10635:6;10624:9;10620:22;10590:62;:::i;:::-;10580:72;;10375:287;10701:2;10727:53;10772:7;10763:6;10752:9;10748:22;10727:53;:::i;:::-;10717:63;;10672:118;10002:795;;;;;:::o;10803:1137::-;10907:6;10915;10923;10931;10939;10988:3;10976:9;10967:7;10963:23;10959:33;10956:120;;;10995:79;;:::i;:::-;10956:120;11115:1;11140:52;11184:7;11175:6;11164:9;11160:22;11140:52;:::i;:::-;11130:62;;11086:116;11269:2;11258:9;11254:18;11241:32;11300:18;11292:6;11289:30;11286:117;;;11322:79;;:::i;:::-;11286:117;11427:62;11481:7;11472:6;11461:9;11457:22;11427:62;:::i;:::-;11417:72;;11212:287;11538:2;11564:52;11608:7;11599:6;11588:9;11584:22;11564:52;:::i;:::-;11554:62;;11509:117;11693:2;11682:9;11678:18;11665:32;11724:18;11716:6;11713:30;11710:117;;;11746:79;;:::i;:::-;11710:117;11859:64;11915:7;11906:6;11895:9;11891:22;11859:64;:::i;:::-;11841:82;;;;11636:297;10803:1137;;;;;;;;:::o;11946:1117::-;12048:6;12056;12064;12072;12121:3;12109:9;12100:7;12096:23;12092:33;12089:120;;;12128:79;;:::i;:::-;12089:120;12248:1;12273:52;12317:7;12308:6;12297:9;12293:22;12273:52;:::i;:::-;12263:62;;12219:116;12402:2;12391:9;12387:18;12374:32;12433:18;12425:6;12422:30;12419:117;;;12455:79;;:::i;:::-;12419:117;12560:62;12614:7;12605:6;12594:9;12590:22;12560:62;:::i;:::-;12550:72;;12345:287;12671:2;12697:52;12741:7;12732:6;12721:9;12717:22;12697:52;:::i;:::-;12687:62;;12642:117;12826:2;12815:9;12811:18;12798:32;12857:18;12849:6;12846:30;12843:117;;;12879:79;;:::i;:::-;12843:117;12984:62;13038:7;13029:6;13018:9;13014:22;12984:62;:::i;:::-;12974:72;;12769:287;11946:1117;;;;;;;:::o;13069:472::-;13136:6;13144;13193:2;13181:9;13172:7;13168:23;13164:32;13161:119;;;13199:79;;:::i;:::-;13161:119;13319:1;13344:52;13388:7;13379:6;13368:9;13364:22;13344:52;:::i;:::-;13334:62;;13290:116;13445:2;13471:53;13516:7;13507:6;13496:9;13492:22;13471:53;:::i;:::-;13461:63;;13416:118;13069:472;;;;;:::o;13547:329::-;13606:6;13655:2;13643:9;13634:7;13630:23;13626:32;13623:119;;;13661:79;;:::i;:::-;13623:119;13781:1;13806:53;13851:7;13842:6;13831:9;13827:22;13806:53;:::i;:::-;13796:63;;13752:117;13547:329;;;;:::o;13882:507::-;13961:6;13969;14018:2;14006:9;13997:7;13993:23;13989:32;13986:119;;;14024:79;;:::i;:::-;13986:119;14144:1;14169:64;14225:7;14216:6;14205:9;14201:22;14169:64;:::i;:::-;14159:74;;14115:128;14282:2;14308:64;14364:7;14355:6;14344:9;14340:22;14308:64;:::i;:::-;14298:74;;14253:129;13882:507;;;;;:::o;14395:325::-;14452:6;14501:2;14489:9;14480:7;14476:23;14472:32;14469:119;;;14507:79;;:::i;:::-;14469:119;14627:1;14652:51;14695:7;14686:6;14675:9;14671:22;14652:51;:::i;:::-;14642:61;;14598:115;14395:325;;;;:::o;14726:142::-;14829:32;14855:5;14829:32;:::i;:::-;14824:3;14817:45;14726:142;;:::o;14874:118::-;14961:24;14979:5;14961:24;:::i;:::-;14956:3;14949:37;14874:118;;:::o;14998:109::-;15079:21;15094:5;15079:21;:::i;:::-;15074:3;15067:34;14998:109;;:::o;15113:118::-;15200:24;15218:5;15200:24;:::i;:::-;15195:3;15188:37;15113:118;;:::o;15259:301::-;15355:3;15376:70;15439:6;15434:3;15376:70;:::i;:::-;15369:77;;15456:43;15492:6;15487:3;15480:5;15456:43;:::i;:::-;15524:29;15546:6;15524:29;:::i;:::-;15519:3;15515:39;15508:46;;15259:301;;;;;:::o;15588:314::-;15702:3;15723:88;15804:6;15799:3;15723:88;:::i;:::-;15716:95;;15821:43;15857:6;15852:3;15845:5;15821:43;:::i;:::-;15889:6;15884:3;15880:16;15873:23;;15588:314;;;;;:::o;15908:360::-;15994:3;16022:38;16054:5;16022:38;:::i;:::-;16076:70;16139:6;16134:3;16076:70;:::i;:::-;16069:77;;16155:52;16200:6;16195:3;16188:4;16181:5;16177:16;16155:52;:::i;:::-;16232:29;16254:6;16232:29;:::i;:::-;16227:3;16223:39;16216:46;;15998:270;15908:360;;;;:::o;16274:373::-;16378:3;16406:38;16438:5;16406:38;:::i;:::-;16460:88;16541:6;16536:3;16460:88;:::i;:::-;16453:95;;16557:52;16602:6;16597:3;16590:4;16583:5;16579:16;16557:52;:::i;:::-;16634:6;16629:3;16625:16;16618:23;;16382:265;16274:373;;;;:::o;16675:798::-;16758:3;16795:5;16789:12;16824:36;16850:9;16824:36;:::i;:::-;16876:70;16939:6;16934:3;16876:70;:::i;:::-;16869:77;;16977:1;16966:9;16962:17;16993:1;16988:135;;;;17137:1;17132:335;;;;16955:512;;16988:135;17072:4;17068:9;17057;17053:25;17048:3;17041:38;17108:4;17103:3;17099:14;17092:21;;16988:135;;17132:335;17199:37;17230:5;17199:37;:::i;:::-;17258:1;17272:154;17286:6;17283:1;17280:13;17272:154;;;17360:7;17354:14;17350:1;17345:3;17341:11;17334:35;17410:1;17401:7;17397:15;17386:26;;17308:4;17305:1;17301:12;17296:17;;17272:154;;;17455:1;17450:3;17446:11;17439:18;;17139:328;;16955:512;;16762:711;;16675:798;;;;:::o;17501:841::-;17602:3;17639:5;17633:12;17668:36;17694:9;17668:36;:::i;:::-;17720:88;17801:6;17796:3;17720:88;:::i;:::-;17713:95;;17839:1;17828:9;17824:17;17855:1;17850:137;;;;18001:1;17996:340;;;;17817:519;;17850:137;17934:4;17930:9;17919;17915:25;17910:3;17903:38;17970:6;17965:3;17961:16;17954:23;;17850:137;;17996:340;18063:37;18094:5;18063:37;:::i;:::-;18122:1;18136:154;18150:6;18147:1;18144:13;18136:154;;;18224:7;18218:14;18214:1;18209:3;18205:11;18198:35;18274:1;18265:7;18261:15;18250:26;;18172:4;18169:1;18165:12;18160:17;;18136:154;;;18319:6;18314:3;18310:16;18303:23;;18003:333;;17817:519;;17606:736;;17501:841;;;;:::o;18348:364::-;18436:3;18464:39;18497:5;18464:39;:::i;:::-;18519:71;18583:6;18578:3;18519:71;:::i;:::-;18512:78;;18599:52;18644:6;18639:3;18632:4;18625:5;18621:16;18599:52;:::i;:::-;18676:29;18698:6;18676:29;:::i;:::-;18671:3;18667:39;18660:46;;18440:272;18348:364;;;;:::o;18718:377::-;18824:3;18852:39;18885:5;18852:39;:::i;:::-;18907:89;18989:6;18984:3;18907:89;:::i;:::-;18900:96;;19005:52;19050:6;19045:3;19038:4;19031:5;19027:16;19005:52;:::i;:::-;19082:6;19077:3;19073:16;19066:23;;18828:267;18718:377;;;;:::o;19101:366::-;19243:3;19264:67;19328:2;19323:3;19264:67;:::i;:::-;19257:74;;19340:93;19429:3;19340:93;:::i;:::-;19458:2;19453:3;19449:12;19442:19;;19101:366;;;:::o;19473:::-;19615:3;19636:67;19700:2;19695:3;19636:67;:::i;:::-;19629:74;;19712:93;19801:3;19712:93;:::i;:::-;19830:2;19825:3;19821:12;19814:19;;19473:366;;;:::o;19845:::-;19987:3;20008:67;20072:2;20067:3;20008:67;:::i;:::-;20001:74;;20084:93;20173:3;20084:93;:::i;:::-;20202:2;20197:3;20193:12;20186:19;;19845:366;;;:::o;20217:::-;20359:3;20380:67;20444:2;20439:3;20380:67;:::i;:::-;20373:74;;20456:93;20545:3;20456:93;:::i;:::-;20574:2;20569:3;20565:12;20558:19;;20217:366;;;:::o;20589:::-;20731:3;20752:67;20816:2;20811:3;20752:67;:::i;:::-;20745:74;;20828:93;20917:3;20828:93;:::i;:::-;20946:2;20941:3;20937:12;20930:19;;20589:366;;;:::o;20961:::-;21103:3;21124:67;21188:2;21183:3;21124:67;:::i;:::-;21117:74;;21200:93;21289:3;21200:93;:::i;:::-;21318:2;21313:3;21309:12;21302:19;;20961:366;;;:::o;21333:::-;21475:3;21496:67;21560:2;21555:3;21496:67;:::i;:::-;21489:74;;21572:93;21661:3;21572:93;:::i;:::-;21690:2;21685:3;21681:12;21674:19;;21333:366;;;:::o;21705:::-;21847:3;21868:67;21932:2;21927:3;21868:67;:::i;:::-;21861:74;;21944:93;22033:3;21944:93;:::i;:::-;22062:2;22057:3;22053:12;22046:19;;21705:366;;;:::o;22077:::-;22219:3;22240:67;22304:2;22299:3;22240:67;:::i;:::-;22233:74;;22316:93;22405:3;22316:93;:::i;:::-;22434:2;22429:3;22425:12;22418:19;;22077:366;;;:::o;22449:::-;22591:3;22612:67;22676:2;22671:3;22612:67;:::i;:::-;22605:74;;22688:93;22777:3;22688:93;:::i;:::-;22806:2;22801:3;22797:12;22790:19;;22449:366;;;:::o;22821:::-;22963:3;22984:67;23048:2;23043:3;22984:67;:::i;:::-;22977:74;;23060:93;23149:3;23060:93;:::i;:::-;23178:2;23173:3;23169:12;23162:19;;22821:366;;;:::o;23193:::-;23335:3;23356:67;23420:2;23415:3;23356:67;:::i;:::-;23349:74;;23432:93;23521:3;23432:93;:::i;:::-;23550:2;23545:3;23541:12;23534:19;;23193:366;;;:::o;23565:::-;23707:3;23728:67;23792:2;23787:3;23728:67;:::i;:::-;23721:74;;23804:93;23893:3;23804:93;:::i;:::-;23922:2;23917:3;23913:12;23906:19;;23565:366;;;:::o;23937:::-;24079:3;24100:67;24164:2;24159:3;24100:67;:::i;:::-;24093:74;;24176:93;24265:3;24176:93;:::i;:::-;24294:2;24289:3;24285:12;24278:19;;23937:366;;;:::o;24309:::-;24451:3;24472:67;24536:2;24531:3;24472:67;:::i;:::-;24465:74;;24548:93;24637:3;24548:93;:::i;:::-;24666:2;24661:3;24657:12;24650:19;;24309:366;;;:::o;24681:::-;24823:3;24844:67;24908:2;24903:3;24844:67;:::i;:::-;24837:74;;24920:93;25009:3;24920:93;:::i;:::-;25038:2;25033:3;25029:12;25022:19;;24681:366;;;:::o;25053:::-;25195:3;25216:67;25280:2;25275:3;25216:67;:::i;:::-;25209:74;;25292:93;25381:3;25292:93;:::i;:::-;25410:2;25405:3;25401:12;25394:19;;25053:366;;;:::o;25425:::-;25567:3;25588:67;25652:2;25647:3;25588:67;:::i;:::-;25581:74;;25664:93;25753:3;25664:93;:::i;:::-;25782:2;25777:3;25773:12;25766:19;;25425:366;;;:::o;25797:::-;25939:3;25960:67;26024:2;26019:3;25960:67;:::i;:::-;25953:74;;26036:93;26125:3;26036:93;:::i;:::-;26154:2;26149:3;26145:12;26138:19;;25797:366;;;:::o;26169:400::-;26329:3;26350:84;26432:1;26427:3;26350:84;:::i;:::-;26343:91;;26443:93;26532:3;26443:93;:::i;:::-;26561:1;26556:3;26552:11;26545:18;;26169:400;;;:::o;26575:366::-;26717:3;26738:67;26802:2;26797:3;26738:67;:::i;:::-;26731:74;;26814:93;26903:3;26814:93;:::i;:::-;26932:2;26927:3;26923:12;26916:19;;26575:366;;;:::o;26947:::-;27089:3;27110:67;27174:2;27169:3;27110:67;:::i;:::-;27103:74;;27186:93;27275:3;27186:93;:::i;:::-;27304:2;27299:3;27295:12;27288:19;;26947:366;;;:::o;27319:::-;27461:3;27482:67;27546:2;27541:3;27482:67;:::i;:::-;27475:74;;27558:93;27647:3;27558:93;:::i;:::-;27676:2;27671:3;27667:12;27660:19;;27319:366;;;:::o;27691:::-;27833:3;27854:67;27918:2;27913:3;27854:67;:::i;:::-;27847:74;;27930:93;28019:3;27930:93;:::i;:::-;28048:2;28043:3;28039:12;28032:19;;27691:366;;;:::o;28063:::-;28205:3;28226:67;28290:2;28285:3;28226:67;:::i;:::-;28219:74;;28302:93;28391:3;28302:93;:::i;:::-;28420:2;28415:3;28411:12;28404:19;;28063:366;;;:::o;28435:::-;28577:3;28598:67;28662:2;28657:3;28598:67;:::i;:::-;28591:74;;28674:93;28763:3;28674:93;:::i;:::-;28792:2;28787:3;28783:12;28776:19;;28435:366;;;:::o;28807:398::-;28966:3;28987:83;29068:1;29063:3;28987:83;:::i;:::-;28980:90;;29079:93;29168:3;29079:93;:::i;:::-;29197:1;29192:3;29188:11;29181:18;;28807:398;;;:::o;29211:366::-;29353:3;29374:67;29438:2;29433:3;29374:67;:::i;:::-;29367:74;;29450:93;29539:3;29450:93;:::i;:::-;29568:2;29563:3;29559:12;29552:19;;29211:366;;;:::o;29583:::-;29725:3;29746:67;29810:2;29805:3;29746:67;:::i;:::-;29739:74;;29822:93;29911:3;29822:93;:::i;:::-;29940:2;29935:3;29931:12;29924:19;;29583:366;;;:::o;29955:115::-;30040:23;30057:5;30040:23;:::i;:::-;30035:3;30028:36;29955:115;;:::o;30076:153::-;30179:43;30198:23;30215:5;30198:23;:::i;:::-;30179:43;:::i;:::-;30174:3;30167:56;30076:153;;:::o;30235:118::-;30322:24;30340:5;30322:24;:::i;:::-;30317:3;30310:37;30235:118;;:::o;30359:157::-;30464:45;30484:24;30502:5;30484:24;:::i;:::-;30464:45;:::i;:::-;30459:3;30452:58;30359:157;;:::o;30522:115::-;30607:23;30624:5;30607:23;:::i;:::-;30602:3;30595:36;30522:115;;:::o;30643:291::-;30783:3;30805:103;30904:3;30895:6;30887;30805:103;:::i;:::-;30798:110;;30925:3;30918:10;;30643:291;;;;;:::o;30940:271::-;31070:3;31092:93;31181:3;31172:6;31092:93;:::i;:::-;31085:100;;31202:3;31195:10;;30940:271;;;;:::o;31217:265::-;31344:3;31366:90;31452:3;31443:6;31366:90;:::i;:::-;31359:97;;31473:3;31466:10;;31217:265;;;;:::o;31488:701::-;31769:3;31791:95;31882:3;31873:6;31791:95;:::i;:::-;31784:102;;31903:95;31994:3;31985:6;31903:95;:::i;:::-;31896:102;;32015:148;32159:3;32015:148;:::i;:::-;32008:155;;32180:3;32173:10;;31488:701;;;;;:::o;32195:379::-;32379:3;32401:147;32544:3;32401:147;:::i;:::-;32394:154;;32565:3;32558:10;;32195:379;;;:::o;32580:392::-;32718:3;32733:73;32802:3;32793:6;32733:73;:::i;:::-;32831:1;32826:3;32822:11;32815:18;;32843:75;32914:3;32905:6;32843:75;:::i;:::-;32943:2;32938:3;32934:12;32927:19;;32963:3;32956:10;;32580:392;;;;;:::o;32978:222::-;33071:4;33109:2;33098:9;33094:18;33086:26;;33122:71;33190:1;33179:9;33175:17;33166:6;33122:71;:::i;:::-;32978:222;;;;:::o;33206:640::-;33401:4;33439:3;33428:9;33424:19;33416:27;;33453:71;33521:1;33510:9;33506:17;33497:6;33453:71;:::i;:::-;33534:72;33602:2;33591:9;33587:18;33578:6;33534:72;:::i;:::-;33616;33684:2;33673:9;33669:18;33660:6;33616:72;:::i;:::-;33735:9;33729:4;33725:20;33720:2;33709:9;33705:18;33698:48;33763:76;33834:4;33825:6;33763:76;:::i;:::-;33755:84;;33206:640;;;;;;;:::o;33852:332::-;33973:4;34011:2;34000:9;33996:18;33988:26;;34024:71;34092:1;34081:9;34077:17;34068:6;34024:71;:::i;:::-;34105:72;34173:2;34162:9;34158:18;34149:6;34105:72;:::i;:::-;33852:332;;;;;:::o;34190:210::-;34277:4;34315:2;34304:9;34300:18;34292:26;;34328:65;34390:1;34379:9;34375:17;34366:6;34328:65;:::i;:::-;34190:210;;;;:::o;34406:309::-;34517:4;34555:2;34544:9;34540:18;34532:26;;34604:9;34598:4;34594:20;34590:1;34579:9;34575:17;34568:47;34632:76;34703:4;34694:6;34632:76;:::i;:::-;34624:84;;34406:309;;;;:::o;34721:313::-;34834:4;34872:2;34861:9;34857:18;34849:26;;34921:9;34915:4;34911:20;34907:1;34896:9;34892:17;34885:47;34949:78;35022:4;35013:6;34949:78;:::i;:::-;34941:86;;34721:313;;;;:::o;35040:419::-;35206:4;35244:2;35233:9;35229:18;35221:26;;35293:9;35287:4;35283:20;35279:1;35268:9;35264:17;35257:47;35321:131;35447:4;35321:131;:::i;:::-;35313:139;;35040:419;;;:::o;35465:::-;35631:4;35669:2;35658:9;35654:18;35646:26;;35718:9;35712:4;35708:20;35704:1;35693:9;35689:17;35682:47;35746:131;35872:4;35746:131;:::i;:::-;35738:139;;35465:419;;;:::o;35890:::-;36056:4;36094:2;36083:9;36079:18;36071:26;;36143:9;36137:4;36133:20;36129:1;36118:9;36114:17;36107:47;36171:131;36297:4;36171:131;:::i;:::-;36163:139;;35890:419;;;:::o;36315:::-;36481:4;36519:2;36508:9;36504:18;36496:26;;36568:9;36562:4;36558:20;36554:1;36543:9;36539:17;36532:47;36596:131;36722:4;36596:131;:::i;:::-;36588:139;;36315:419;;;:::o;36740:::-;36906:4;36944:2;36933:9;36929:18;36921:26;;36993:9;36987:4;36983:20;36979:1;36968:9;36964:17;36957:47;37021:131;37147:4;37021:131;:::i;:::-;37013:139;;36740:419;;;:::o;37165:::-;37331:4;37369:2;37358:9;37354:18;37346:26;;37418:9;37412:4;37408:20;37404:1;37393:9;37389:17;37382:47;37446:131;37572:4;37446:131;:::i;:::-;37438:139;;37165:419;;;:::o;37590:::-;37756:4;37794:2;37783:9;37779:18;37771:26;;37843:9;37837:4;37833:20;37829:1;37818:9;37814:17;37807:47;37871:131;37997:4;37871:131;:::i;:::-;37863:139;;37590:419;;;:::o;38015:::-;38181:4;38219:2;38208:9;38204:18;38196:26;;38268:9;38262:4;38258:20;38254:1;38243:9;38239:17;38232:47;38296:131;38422:4;38296:131;:::i;:::-;38288:139;;38015:419;;;:::o;38440:::-;38606:4;38644:2;38633:9;38629:18;38621:26;;38693:9;38687:4;38683:20;38679:1;38668:9;38664:17;38657:47;38721:131;38847:4;38721:131;:::i;:::-;38713:139;;38440:419;;;:::o;38865:::-;39031:4;39069:2;39058:9;39054:18;39046:26;;39118:9;39112:4;39108:20;39104:1;39093:9;39089:17;39082:47;39146:131;39272:4;39146:131;:::i;:::-;39138:139;;38865:419;;;:::o;39290:::-;39456:4;39494:2;39483:9;39479:18;39471:26;;39543:9;39537:4;39533:20;39529:1;39518:9;39514:17;39507:47;39571:131;39697:4;39571:131;:::i;:::-;39563:139;;39290:419;;;:::o;39715:::-;39881:4;39919:2;39908:9;39904:18;39896:26;;39968:9;39962:4;39958:20;39954:1;39943:9;39939:17;39932:47;39996:131;40122:4;39996:131;:::i;:::-;39988:139;;39715:419;;;:::o;40140:::-;40306:4;40344:2;40333:9;40329:18;40321:26;;40393:9;40387:4;40383:20;40379:1;40368:9;40364:17;40357:47;40421:131;40547:4;40421:131;:::i;:::-;40413:139;;40140:419;;;:::o;40565:::-;40731:4;40769:2;40758:9;40754:18;40746:26;;40818:9;40812:4;40808:20;40804:1;40793:9;40789:17;40782:47;40846:131;40972:4;40846:131;:::i;:::-;40838:139;;40565:419;;;:::o;40990:::-;41156:4;41194:2;41183:9;41179:18;41171:26;;41243:9;41237:4;41233:20;41229:1;41218:9;41214:17;41207:47;41271:131;41397:4;41271:131;:::i;:::-;41263:139;;40990:419;;;:::o;41415:::-;41581:4;41619:2;41608:9;41604:18;41596:26;;41668:9;41662:4;41658:20;41654:1;41643:9;41639:17;41632:47;41696:131;41822:4;41696:131;:::i;:::-;41688:139;;41415:419;;;:::o;41840:::-;42006:4;42044:2;42033:9;42029:18;42021:26;;42093:9;42087:4;42083:20;42079:1;42068:9;42064:17;42057:47;42121:131;42247:4;42121:131;:::i;:::-;42113:139;;41840:419;;;:::o;42265:::-;42431:4;42469:2;42458:9;42454:18;42446:26;;42518:9;42512:4;42508:20;42504:1;42493:9;42489:17;42482:47;42546:131;42672:4;42546:131;:::i;:::-;42538:139;;42265:419;;;:::o;42690:::-;42856:4;42894:2;42883:9;42879:18;42871:26;;42943:9;42937:4;42933:20;42929:1;42918:9;42914:17;42907:47;42971:131;43097:4;42971:131;:::i;:::-;42963:139;;42690:419;;;:::o;43115:::-;43281:4;43319:2;43308:9;43304:18;43296:26;;43368:9;43362:4;43358:20;43354:1;43343:9;43339:17;43332:47;43396:131;43522:4;43396:131;:::i;:::-;43388:139;;43115:419;;;:::o;43540:::-;43706:4;43744:2;43733:9;43729:18;43721:26;;43793:9;43787:4;43783:20;43779:1;43768:9;43764:17;43757:47;43821:131;43947:4;43821:131;:::i;:::-;43813:139;;43540:419;;;:::o;43965:::-;44131:4;44169:2;44158:9;44154:18;44146:26;;44218:9;44212:4;44208:20;44204:1;44193:9;44189:17;44182:47;44246:131;44372:4;44246:131;:::i;:::-;44238:139;;43965:419;;;:::o;44390:::-;44556:4;44594:2;44583:9;44579:18;44571:26;;44643:9;44637:4;44633:20;44629:1;44618:9;44614:17;44607:47;44671:131;44797:4;44671:131;:::i;:::-;44663:139;;44390:419;;;:::o;44815:::-;44981:4;45019:2;45008:9;45004:18;44996:26;;45068:9;45062:4;45058:20;45054:1;45043:9;45039:17;45032:47;45096:131;45222:4;45096:131;:::i;:::-;45088:139;;44815:419;;;:::o;45240:::-;45406:4;45444:2;45433:9;45429:18;45421:26;;45493:9;45487:4;45483:20;45479:1;45468:9;45464:17;45457:47;45521:131;45647:4;45521:131;:::i;:::-;45513:139;;45240:419;;;:::o;45665:::-;45831:4;45869:2;45858:9;45854:18;45846:26;;45918:9;45912:4;45908:20;45904:1;45893:9;45889:17;45882:47;45946:131;46072:4;45946:131;:::i;:::-;45938:139;;45665:419;;;:::o;46090:::-;46256:4;46294:2;46283:9;46279:18;46271:26;;46343:9;46337:4;46333:20;46329:1;46318:9;46314:17;46307:47;46371:131;46497:4;46371:131;:::i;:::-;46363:139;;46090:419;;;:::o;46515:822::-;46748:4;46786:3;46775:9;46771:19;46763:27;;46800:69;46866:1;46855:9;46851:17;46842:6;46800:69;:::i;:::-;46879:72;46947:2;46936:9;46932:18;46923:6;46879:72;:::i;:::-;46998:9;46992:4;46988:20;46983:2;46972:9;46968:18;46961:48;47026:76;47097:4;47088:6;47026:76;:::i;:::-;47018:84;;47112:66;47174:2;47163:9;47159:18;47150:6;47112:66;:::i;:::-;47226:9;47220:4;47216:20;47210:3;47199:9;47195:19;47188:49;47254:76;47325:4;47316:6;47254:76;:::i;:::-;47246:84;;46515:822;;;;;;;;:::o;47343:739::-;47562:4;47600:3;47589:9;47585:19;47577:27;;47614:69;47680:1;47669:9;47665:17;47656:6;47614:69;:::i;:::-;47730:9;47724:4;47720:20;47715:2;47704:9;47700:18;47693:48;47758:76;47829:4;47820:6;47758:76;:::i;:::-;47750:84;;47844:70;47910:2;47899:9;47895:18;47886:6;47844:70;:::i;:::-;47961:9;47955:4;47951:20;47946:2;47935:9;47931:18;47924:48;47989:86;48070:4;48061:6;48053;47989:86;:::i;:::-;47981:94;;47343:739;;;;;;;;:::o;48088:719::-;48297:4;48335:3;48324:9;48320:19;48312:27;;48349:69;48415:1;48404:9;48400:17;48391:6;48349:69;:::i;:::-;48465:9;48459:4;48455:20;48450:2;48439:9;48435:18;48428:48;48493:76;48564:4;48555:6;48493:76;:::i;:::-;48485:84;;48579:70;48645:2;48634:9;48630:18;48621:6;48579:70;:::i;:::-;48696:9;48690:4;48686:20;48681:2;48670:9;48666:18;48659:48;48724:76;48795:4;48786:6;48724:76;:::i;:::-;48716:84;;48088:719;;;;;;;:::o;48813:1058::-;49111:4;49149:3;49138:9;49134:19;49126:27;;49163:69;49229:1;49218:9;49214:17;49205:6;49163:69;:::i;:::-;49279:9;49273:4;49269:20;49264:2;49253:9;49249:18;49242:48;49307:73;49375:4;49366:6;49307:73;:::i;:::-;49299:81;;49427:9;49421:4;49417:20;49412:2;49401:9;49397:18;49390:48;49455:76;49526:4;49517:6;49455:76;:::i;:::-;49447:84;;49541:88;49625:2;49614:9;49610:18;49601:6;49541:88;:::i;:::-;49639:73;49707:3;49696:9;49692:19;49683:6;49639:73;:::i;:::-;49760:9;49754:4;49750:20;49744:3;49733:9;49729:19;49722:49;49788:76;49859:4;49850:6;49788:76;:::i;:::-;49780:84;;48813:1058;;;;;;;;;:::o;49877:222::-;49970:4;50008:2;49997:9;49993:18;49985:26;;50021:71;50089:1;50078:9;50074:17;50065:6;50021:71;:::i;:::-;49877:222;;;;:::o;50105:332::-;50226:4;50264:2;50253:9;50249:18;50241:26;;50277:71;50345:1;50334:9;50330:17;50321:6;50277:71;:::i;:::-;50358:72;50426:2;50415:9;50411:18;50402:6;50358:72;:::i;:::-;50105:332;;;;;:::o;50443:129::-;50477:6;50504:20;;:::i;:::-;50494:30;;50533:33;50561:4;50553:6;50533:33;:::i;:::-;50443:129;;;:::o;50578:75::-;50611:6;50644:2;50638:9;50628:19;;50578:75;:::o;50659:307::-;50720:4;50810:18;50802:6;50799:30;50796:56;;;50832:18;;:::i;:::-;50796:56;50870:29;50892:6;50870:29;:::i;:::-;50862:37;;50954:4;50948;50944:15;50936:23;;50659:307;;;:::o;50972:308::-;51034:4;51124:18;51116:6;51113:30;51110:56;;;51146:18;;:::i;:::-;51110:56;51184:29;51206:6;51184:29;:::i;:::-;51176:37;;51268:4;51262;51258:15;51250:23;;50972:308;;;:::o;51286:140::-;51334:4;51357:3;51349:11;;51380:3;51377:1;51370:14;51414:4;51411:1;51401:18;51393:26;;51286:140;;;:::o;51432:98::-;51483:6;51517:5;51511:12;51501:22;;51432:98;;;:::o;51536:99::-;51588:6;51622:5;51616:12;51606:22;;51536:99;;;:::o;51641:168::-;51724:11;51758:6;51753:3;51746:19;51798:4;51793:3;51789:14;51774:29;;51641:168;;;;:::o;51815:147::-;51916:11;51953:3;51938:18;;51815:147;;;;:::o;51968:169::-;52052:11;52086:6;52081:3;52074:19;52126:4;52121:3;52117:14;52102:29;;51968:169;;;;:::o;52143:148::-;52245:11;52282:3;52267:18;;52143:148;;;;:::o;52297:305::-;52337:3;52356:20;52374:1;52356:20;:::i;:::-;52351:25;;52390:20;52408:1;52390:20;:::i;:::-;52385:25;;52544:1;52476:66;52472:74;52469:1;52466:81;52463:107;;;52550:18;;:::i;:::-;52463:107;52594:1;52591;52587:9;52580:16;;52297:305;;;;:::o;52608:185::-;52648:1;52665:20;52683:1;52665:20;:::i;:::-;52660:25;;52699:20;52717:1;52699:20;:::i;:::-;52694:25;;52738:1;52728:35;;52743:18;;:::i;:::-;52728:35;52785:1;52782;52778:9;52773:14;;52608:185;;;;:::o;52799:191::-;52839:4;52859:20;52877:1;52859:20;:::i;:::-;52854:25;;52893:20;52911:1;52893:20;:::i;:::-;52888:25;;52932:1;52929;52926:8;52923:34;;;52937:18;;:::i;:::-;52923:34;52982:1;52979;52975:9;52967:17;;52799:191;;;;:::o;52996:96::-;53033:7;53062:24;53080:5;53062:24;:::i;:::-;53051:35;;52996:96;;;:::o;53098:104::-;53143:7;53172:24;53190:5;53172:24;:::i;:::-;53161:35;;53098:104;;;:::o;53208:90::-;53242:7;53285:5;53278:13;53271:21;53260:32;;53208:90;;;:::o;53304:77::-;53341:7;53370:5;53359:16;;53304:77;;;:::o;53387:149::-;53423:7;53463:66;53456:5;53452:78;53441:89;;53387:149;;;:::o;53542:89::-;53578:7;53618:6;53611:5;53607:18;53596:29;;53542:89;;;:::o;53637:126::-;53674:7;53714:42;53707:5;53703:54;53692:65;;53637:126;;;:::o;53769:77::-;53806:7;53835:5;53824:16;;53769:77;;;:::o;53852:101::-;53888:7;53928:18;53921:5;53917:30;53906:41;;53852:101;;;:::o;53959:86::-;53994:7;54034:4;54027:5;54023:16;54012:27;;53959:86;;;:::o;54051:154::-;54135:6;54130:3;54125;54112:30;54197:1;54188:6;54183:3;54179:16;54172:27;54051:154;;;:::o;54211:307::-;54279:1;54289:113;54303:6;54300:1;54297:13;54289:113;;;54388:1;54383:3;54379:11;54373:18;54369:1;54364:3;54360:11;54353:39;54325:2;54322:1;54318:10;54313:15;;54289:113;;;54420:6;54417:1;54414:13;54411:101;;;54500:1;54491:6;54486:3;54482:16;54475:27;54411:101;54260:258;54211:307;;;:::o;54524:320::-;54568:6;54605:1;54599:4;54595:12;54585:22;;54652:1;54646:4;54642:12;54673:18;54663:81;;54729:4;54721:6;54717:17;54707:27;;54663:81;54791:2;54783:6;54780:14;54760:18;54757:38;54754:84;;;54810:18;;:::i;:::-;54754:84;54575:269;54524:320;;;:::o;54850:281::-;54933:27;54955:4;54933:27;:::i;:::-;54925:6;54921:40;55063:6;55051:10;55048:22;55027:18;55015:10;55012:34;55009:62;55006:88;;;55074:18;;:::i;:::-;55006:88;55114:10;55110:2;55103:22;54893:238;54850:281;;:::o;55137:233::-;55176:3;55199:24;55217:5;55199:24;:::i;:::-;55190:33;;55245:66;55238:5;55235:77;55232:103;;;55315:18;;:::i;:::-;55232:103;55362:1;55355:5;55351:13;55344:20;;55137:233;;;:::o;55376:94::-;55414:7;55443:21;55458:5;55443:21;:::i;:::-;55432:32;;55376:94;;;:::o;55476:79::-;55515:7;55544:5;55533:16;;55476:79;;;:::o;55561:176::-;55593:1;55610:20;55628:1;55610:20;:::i;:::-;55605:25;;55644:20;55662:1;55644:20;:::i;:::-;55639:25;;55683:1;55673:35;;55688:18;;:::i;:::-;55673:35;55729:1;55726;55722:9;55717:14;;55561:176;;;;:::o;55743:180::-;55791:77;55788:1;55781:88;55888:4;55885:1;55878:15;55912:4;55909:1;55902:15;55929:180;55977:77;55974:1;55967:88;56074:4;56071:1;56064:15;56098:4;56095:1;56088:15;56115:180;56163:77;56160:1;56153:88;56260:4;56257:1;56250:15;56284:4;56281:1;56274:15;56301:180;56349:77;56346:1;56339:88;56446:4;56443:1;56436:15;56470:4;56467:1;56460:15;56487:180;56535:77;56532:1;56525:88;56632:4;56629:1;56622:15;56656:4;56653:1;56646:15;56673:117;56782:1;56779;56772:12;56796:117;56905:1;56902;56895:12;56919:117;57028:1;57025;57018:12;57042:117;57151:1;57148;57141:12;57165:117;57274:1;57271;57264:12;57288:117;57397:1;57394;57387:12;57411:102;57452:6;57503:2;57499:7;57494:2;57487:5;57483:14;57479:28;57469:38;;57411:102;;;:::o;57519:96::-;57553:8;57602:5;57597:3;57593:15;57572:36;;57519:96;;;:::o;57621:179::-;57761:31;57757:1;57749:6;57745:14;57738:55;57621:179;:::o;57806:174::-;57946:26;57942:1;57934:6;57930:14;57923:50;57806:174;:::o;57986:237::-;58126:34;58122:1;58114:6;58110:14;58103:58;58195:20;58190:2;58182:6;58178:15;58171:45;57986:237;:::o;58229:225::-;58369:34;58365:1;58357:6;58353:14;58346:58;58438:8;58433:2;58425:6;58421:15;58414:33;58229:225;:::o;58460:174::-;58600:26;58596:1;58588:6;58584:14;58577:50;58460:174;:::o;58640:223::-;58780:34;58776:1;58768:6;58764:14;58757:58;58849:6;58844:2;58836:6;58832:15;58825:31;58640:223;:::o;58869:227::-;59009:34;59005:1;58997:6;58993:14;58986:58;59078:10;59073:2;59065:6;59061:15;59054:35;58869:227;:::o;59102:175::-;59242:27;59238:1;59230:6;59226:14;59219:51;59102:175;:::o;59283:233::-;59423:34;59419:1;59411:6;59407:14;59400:58;59492:16;59487:2;59479:6;59475:15;59468:41;59283:233;:::o;59522:176::-;59662:28;59658:1;59650:6;59646:14;59639:52;59522:176;:::o;59704:221::-;59844:34;59840:1;59832:6;59828:14;59821:58;59913:4;59908:2;59900:6;59896:15;59889:29;59704:221;:::o;59931:296::-;60071:34;60067:1;60059:6;60055:14;60048:58;60140:34;60135:2;60127:6;60123:15;60116:59;60209:10;60204:2;60196:6;60192:15;60185:35;59931:296;:::o;60233:231::-;60373:34;60369:1;60361:6;60357:14;60350:58;60442:14;60437:2;60429:6;60425:15;60418:39;60233:231;:::o;60470:243::-;60610:34;60606:1;60598:6;60594:14;60587:58;60679:26;60674:2;60666:6;60662:15;60655:51;60470:243;:::o;60719:229::-;60859:34;60855:1;60847:6;60843:14;60836:58;60928:12;60923:2;60915:6;60911:15;60904:37;60719:229;:::o;60954:228::-;61094:34;61090:1;61082:6;61078:14;61071:58;61163:11;61158:2;61150:6;61146:15;61139:36;60954:228;:::o;61188:230::-;61328:34;61324:1;61316:6;61312:14;61305:58;61397:13;61392:2;61384:6;61380:15;61373:38;61188:230;:::o;61424:182::-;61564:34;61560:1;61552:6;61548:14;61541:58;61424:182;:::o;61612:231::-;61752:34;61748:1;61740:6;61736:14;61729:58;61821:14;61816:2;61808:6;61804:15;61797:39;61612:231;:::o;61849:155::-;61989:7;61985:1;61977:6;61973:14;61966:31;61849:155;:::o;62010:182::-;62150:34;62146:1;62138:6;62134:14;62127:58;62010:182;:::o;62198:239::-;62338:34;62334:1;62326:6;62322:14;62315:58;62407:22;62402:2;62394:6;62390:15;62383:47;62198:239;:::o;62443:228::-;62583:34;62579:1;62571:6;62567:14;62560:58;62652:11;62647:2;62639:6;62635:15;62628:36;62443:228;:::o;62677:234::-;62817:34;62813:1;62805:6;62801:14;62794:58;62886:17;62881:2;62873:6;62869:15;62862:42;62677:234;:::o;62917:220::-;63057:34;63053:1;63045:6;63041:14;63034:58;63126:3;63121:2;63113:6;63109:15;63102:28;62917:220;:::o;63143:228::-;63283:34;63279:1;63271:6;63267:14;63260:58;63352:11;63347:2;63339:6;63335:15;63328:36;63143:228;:::o;63377:114::-;;:::o;63497:236::-;63637:34;63633:1;63625:6;63621:14;63614:58;63706:19;63701:2;63693:6;63689:15;63682:44;63497:236;:::o;63739:225::-;63879:34;63875:1;63867:6;63863:14;63856:58;63948:8;63943:2;63935:6;63931:15;63924:33;63739:225;:::o;63970:122::-;64043:24;64061:5;64043:24;:::i;:::-;64036:5;64033:35;64023:63;;64082:1;64079;64072:12;64023:63;63970:122;:::o;64098:138::-;64179:32;64205:5;64179:32;:::i;:::-;64172:5;64169:43;64159:71;;64226:1;64223;64216:12;64159:71;64098:138;:::o;64242:116::-;64312:21;64327:5;64312:21;:::i;:::-;64305:5;64302:32;64292:60;;64348:1;64345;64338:12;64292:60;64242:116;:::o;64364:120::-;64436:23;64453:5;64436:23;:::i;:::-;64429:5;64426:34;64416:62;;64474:1;64471;64464:12;64416:62;64364:120;:::o;64490:::-;64562:23;64579:5;64562:23;:::i;:::-;64555:5;64552:34;64542:62;;64600:1;64597;64590:12;64542:62;64490:120;:::o;64616:122::-;64689:24;64707:5;64689:24;:::i;:::-;64682:5;64679:35;64669:63;;64728:1;64725;64718:12;64669:63;64616:122;:::o;64744:120::-;64816:23;64833:5;64816:23;:::i;:::-;64809:5;64806:34;64796:62;;64854:1;64851;64844:12;64796:62;64744:120;:::o;64870:118::-;64941:22;64957:5;64941:22;:::i;:::-;64934:5;64931:33;64921:61;;64978:1;64975;64968:12;64921:61;64870:118;:::o

Swarm Source

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