ETH Price: $3,292.55 (-3.50%)
Gas: 21 Gwei

Token

tiny cats (cat)
 

Overview

Max Total Supply

0 cat

Holders

1,478

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xscam.eth
Balance
1 cat
0x07b2cfb7674876fb34eeed3248e99bc63d238f91
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:
tinycats

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : tinycats.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./NonblockingReceiver.sol";

contract tinycats is ERC721, NonblockingReceiver {

    string public baseURI = "ipfs://QmWNnt3f2Ap6VuBFx5VZXAhBnREjQzpFfrSQaJeRDj8hFY/";
    string public contractURI = "ipfs://QmZTPht2Ud1mUZ3o5jzQhuaEYa37ufMZdJZWmZLCZfisMj";
    string public constant baseExtension = ".json";

    uint256 nextTokenId;
    uint256 MAX_MINT;

    uint256 gasForDestinationLzReceive = 350000;

    uint256 public constant MAX_PER_TX = 2;
    uint256 public constant MAX_PER_WALLET = 30;
    mapping(address => uint256) public minted;

    bool public paused = true;

    constructor(
        address _endpoint,
        uint256 startId,
        uint256 _max
    ) ERC721("tiny cats", "cat") {
        endpoint = ILayerZeroEndpoint(_endpoint);
        nextTokenId = startId;
        MAX_MINT = _max;
    }

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "tiny cats: Paused");
        require(nextTokenId + _amount <= MAX_MINT, "tiny cats: Mint exceeds supply");
        require(MAX_PER_TX >= _amount , "tiny cats: Excess max per tx");
        require(MAX_PER_WALLET >= minted[_caller] + _amount, "tiny cats: Excess max per wallet");
        minted[_caller] += _amount;

        for(uint256 i = 0; i < _amount; i++) {
            _safeMint(_caller, ++nextTokenId);
        }
    }

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

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

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

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

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

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

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

    function getEstimatedFees(uint16 _chainId, uint256 tokenId) public view returns (uint) {
        bytes memory payload = abi.encode(msg.sender, tokenId);
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);
        (uint quotedLayerZeroFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        return quotedLayerZeroFee;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }

    function setGasForDestinationLzReceive(uint256 _gasForDestinationLzReceive) external onlyOwner {
        gasForDestinationLzReceive = _gasForDestinationLzReceive;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

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

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

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

}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 15 : NonblockingReceiver.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ILayerZeroEndpoint.sol";
import "./interfaces/ILayerZeroReceiver.sol";

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

File 4 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 5 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// 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 6 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 7 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 8 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// 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 9 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// 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 10 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * 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 11 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 12 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 13 of 15 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

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

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

    // @notice get the inboundNonce of a 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 14 of 15 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: BUSL-1.1

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 15 of 15 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: BUSL-1.1

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_endpoint","type":"address"},{"internalType":"uint256","name":"startId","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getEstimatedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gasForDestinationLzReceive","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620030c260a03980516200002991600a91602090910190620001a1565b50604051806060016040528060358152602001620030f86035913980516200005a91600b91602090910190620001a1565b5062055730600e556010805460ff191660011790553480156200007c57600080fd5b506040516200312d3803806200312d8339810160408190526200009f9162000247565b604080518082018252600981526874696e79206361747360b81b60208083019182528351808501909452600384526218d85d60ea1b908401528151919291620000eb91600091620001a1565b50805162000101906001906020840190620001a1565b5050506200011e620001186200014b60201b60201c565b6200014f565b600780546001600160a01b0319166001600160a01b039490941693909317909255600c55600d55620002c9565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001af906200028c565b90600052602060002090601f016020900481019282620001d357600085556200021e565b82601f10620001ee57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021e57825182559160200191906001019062000201565b506200022c92915062000230565b5090565b5b808211156200022c576000815560010162000231565b6000806000606084860312156200025d57600080fd5b83516001600160a01b03811681146200027557600080fd5b602085015160409095015190969495509392505050565b600181811c90821680620002a157607f821691505b60208210811415620002c357634e487b7160e01b600052602260045260246000fd5b50919050565b612de980620002d96000396000f3fe6080604052600436106102195760003560e01c80637533d78811610123578063c6682862116100ab578063e8a3d4851161006f578063e8a3d48514610660578063e985e9c514610675578063eb8d72b7146106be578063f2fde38b146106de578063f43a22dc146106fe57600080fd5b8063c6682862146105c9578063c7afa661146105fa578063c87b56dd1461061a578063cf89fa031461063a578063d1deba1f1461064d57600080fd5b8063943fb872116100f2578063943fb8721461054157806395d89b4114610561578063a0712d6814610576578063a22cb46514610589578063b88d4fde146105a957600080fd5b80637533d788146104785780638da5cb5b146104985780638ee74912146104b6578063938e3d7b1461052157600080fd5b806323b872dd116101a65780635c975abb116101755780635c975abb146103f45780636352211e1461040e5780636c0360eb1461042e57806370a0823114610443578063715018a61461046357600080fd5b806323b872dd1461037f5780633ccfd60b1461039f57806342842e0e146103b457806355f804b3146103d457600080fd5b8063081812fc116101ed578063081812fc146102b7578063095ea7b3146102ef5780630f2cdd6c1461030f5780631c37a822146103325780631e7269c51461035257600080fd5b80621d35671461021e57806301ffc9a71461024057806302329a291461027557806306fdde0314610295575b600080fd5b34801561022a57600080fd5b5061023e6102393660046123b6565b610713565b005b34801561024c57600080fd5b5061026061025b366004612450565b61090d565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061023e61029036600461247d565b61095f565b3480156102a157600080fd5b506102aa61099c565b60405161026c91906124f0565b3480156102c357600080fd5b506102d76102d2366004612503565b610a2e565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b5061023e61030a366004612531565b610ac3565b34801561031b57600080fd5b50610324601e81565b60405190815260200161026c565b34801561033e57600080fd5b5061023e61034d3660046123b6565b610bd9565b34801561035e57600080fd5b5061032461036d36600461255d565b600f6020526000908152604090205481565b34801561038b57600080fd5b5061023e61039a36600461257a565b610c48565b3480156103ab57600080fd5b5061023e610c79565b3480156103c057600080fd5b5061023e6103cf36600461257a565b610d32565b3480156103e057600080fd5b5061023e6103ef3660046125bb565b610d4d565b34801561040057600080fd5b506010546102609060ff1681565b34801561041a57600080fd5b506102d7610429366004612503565b610d8a565b34801561043a57600080fd5b506102aa610e01565b34801561044f57600080fd5b5061032461045e36600461255d565b610e8f565b34801561046f57600080fd5b5061023e610f16565b34801561048457600080fd5b506102aa610493366004612603565b610f4c565b3480156104a457600080fd5b506006546001600160a01b03166102d7565b3480156104c257600080fd5b5061050c6104d136600461261e565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161026c565b34801561052d57600080fd5b5061023e61053c3660046125bb565b610f65565b34801561054d57600080fd5b5061023e61055c366004612503565b610fa2565b34801561056d57600080fd5b506102aa610fd1565b61023e610584366004612503565b610fe0565b34801561059557600080fd5b5061023e6105a4366004612674565b6111b5565b3480156105b557600080fd5b5061023e6105c43660046126a9565b6111c0565b3480156105d557600080fd5b506102aa60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561060657600080fd5b50610324610615366004612708565b6111f2565b34801561062657600080fd5b506102aa610635366004612503565b6112d4565b61023e610648366004612708565b6113ae565b61023e61065b36600461276c565b611696565b34801561066c57600080fd5b506102aa611823565b34801561068157600080fd5b506102606106903660046127f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ca57600080fd5b5061023e6106d9366004612830565b611830565b3480156106ea57600080fd5b5061023e6106f936600461255d565b611878565b34801561070a57600080fd5b50610324600281565b6007546001600160a01b0316331461072a57600080fd5b61ffff84166000908152600960205260409020805461074890612882565b90508351148015610787575061ffff8416600090815260096020526040908190209051610775919061292c565b60405180910390208380519060200120145b6107f55760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a8229061081e908790879087908790600401612938565b600060405180830381600087803b15801561083857600080fd5b505af1925050508015610849575060015b610907576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108939190612981565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108fe908690869086908690612938565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b148061093e57506001600160e01b03198216635b5e139f60e01b145b8061095957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146109895760405162461bcd60e51b81526004016107ec9061299d565b6010805460ff1916911515919091179055565b6060600080546109ab90612882565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790612882565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b506000908152600460205260409020546001600160a01b031690565b6000610ace82610d8a565b9050806001600160a01b0316836001600160a01b03161415610b3c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ec565b336001600160a01b0382161480610b585750610b588133610690565b610bca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ec565b610bd48383611913565b505050565b333014610c3c5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b60648201526084016107ec565b61090784848484611981565b610c5233826119ae565b610c6e5760405162461bcd60e51b81526004016107ec906129d2565b610bd4838383611aa5565b6006546001600160a01b03163314610ca35760405162461bcd60e51b81526004016107ec9061299d565b6040514790600090339083908381818185875af1925050503d8060008114610ce7576040519150601f19603f3d011682016040523d82523d6000602084013e610cec565b606091505b5050905080610d2e5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107ec565b5050565b610bd4838383604051806020016040528060008152506111c0565b6006546001600160a01b03163314610d775760405162461bcd60e51b81526004016107ec9061299d565b8051610d2e90600a9060208401906121c9565b6000818152600260205260408120546001600160a01b0316806109595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ec565b600a8054610e0e90612882565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90612882565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b60006001600160a01b038216610efa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f405760405162461bcd60e51b81526004016107ec9061299d565b610f4a6000611c41565b565b60096020526000908152604090208054610e0e90612882565b6006546001600160a01b03163314610f8f5760405162461bcd60e51b81526004016107ec9061299d565b8051610d2e90600b9060208401906121c9565b6006546001600160a01b03163314610fcc5760405162461bcd60e51b81526004016107ec9061299d565b600e55565b6060600180546109ab90612882565b601054339060ff16156110295760405162461bcd60e51b81526020600482015260116024820152701d1a5b9e4818d85d1cce8814185d5cd959607a1b60448201526064016107ec565b600d5482600c5461103a9190612a39565b11156110885760405162461bcd60e51b815260206004820152601e60248201527f74696e7920636174733a204d696e74206578636565647320737570706c79000060448201526064016107ec565b81600210156110d95760405162461bcd60e51b815260206004820152601c60248201527f74696e7920636174733a20457863657373206d6178207065722074780000000060448201526064016107ec565b6001600160a01b0381166000908152600f60205260409020546110fd908390612a39565b601e101561114d5760405162461bcd60e51b815260206004820181905260248201527f74696e7920636174733a20457863657373206d6178207065722077616c6c657460448201526064016107ec565b6001600160a01b0381166000908152600f602052604081208054849290611175908490612a39565b90915550600090505b82811015610bd4576111a382600c6000815461119990612a51565b9182905550611c93565b806111ad81612a51565b91505061117e565b610d2e338383611cad565b6111ca33836119ae565b6111e65760405162461bcd60e51b81526004016107ec906129d2565b61090784848484611d7c565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b909452600093919260019285916001600160a01b03909116906340a7bb1090611279908a90309089908790899060a601612a6c565b604080518083038186803b15801561129057600080fd5b505afa1580156112a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c89190612ac0565b50979650505050505050565b6000818152600260205260409020546060906001600160a01b03166113335760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107ec565b6000600a805461134290612882565b90501161135e5760405180602001604052806000815250610959565b600a61136983611daf565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161139993929190612ae4565b60405160208183030381529060405292915050565b6113b781610d8a565b6001600160a01b0316336001600160a01b0316146114225760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b60648201526084016107ec565b61ffff82166000908152600960205260408120805461144090612882565b9050116114a65760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b60648201526084016107ec565b6114af81611eac565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb1090611532908990309089908790899060a601612a6c565b604080518083038186803b15801561154957600080fd5b505afa15801561155d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115819190612ac0565b509050803410156116115760405162461bcd60e51b815260206004820152604e60248201527f74696e7920636174733a206d73672e76616c7565206e6f7420656e6f7567682060448201527f746f20636f766572206d6573736167654665652e2053656e642067617320666f60648201526d72206d657373616765206665657360901b608482015260a4016107ec565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c580310092349261165c928c928b913391908b90600401612b1d565b6000604051808303818588803b15801561167557600080fd5b505af1158015611689573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516116b7908790612981565b90815260408051602092819003830190206001600160401b038716600090815292529020600181015490915061173e5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b60648201526084016107ec565b80548214801561176857508060010154838360405161175e929190612bfd565b6040518091039020145b6117b45760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016107ec565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906117e99089908990899089908990600401612c0d565b600060405180830381600087803b15801561180357600080fd5b505af1158015611817573d6000803e3d6000fd5b50505050505050505050565b600b8054610e0e90612882565b6006546001600160a01b0316331461185a5760405162461bcd60e51b81526004016107ec9061299d565b61ffff8316600090815260096020526040902061090790838361224d565b6006546001600160a01b031633146118a25760405162461bcd60e51b81526004016107ec9061299d565b6001600160a01b0381166119075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ec565b61191081611c41565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061194882610d8a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906119989190612c6e565b915091506119a68282611c93565b505050505050565b6000818152600260205260408120546001600160a01b0316611a275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b6000611a3283610d8a565b9050806001600160a01b0316846001600160a01b03161480611a6d5750836001600160a01b0316611a6284610a2e565b6001600160a01b0316145b80611a9d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ab882610d8a565b6001600160a01b031614611b1c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107ec565b6001600160a01b038216611b7e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ec565b611b89600082611913565b6001600160a01b0383166000908152600360205260408120805460019290611bb2908490612c9c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611be0908490612a39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d2e828260405180602001604052806000815250611f47565b816001600160a01b0316836001600160a01b03161415611d0f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d87848484611aa5565b611d9384848484611f7a565b6109075760405162461bcd60e51b81526004016107ec90612cb3565b606081611dd35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfd5780611de781612a51565b9150611df69050600a83612d1b565b9150611dd7565b6000816001600160401b03811115611e1757611e176122ed565b6040519080825280601f01601f191660200182016040528015611e41576020820181803683370190505b5090505b8415611a9d57611e56600183612c9c565b9150611e63600a86612d2f565b611e6e906030612a39565b60f81b818381518110611e8357611e83612d43565b60200101906001600160f81b031916908160001a905350611ea5600a86612d1b565b9450611e45565b6000611eb782610d8a565b9050611ec4600083611913565b6001600160a01b0381166000908152600360205260408120805460019290611eed908490612c9c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611f518383612087565b611f5e6000848484611f7a565b610bd45760405162461bcd60e51b81526004016107ec90612cb3565b60006001600160a01b0384163b1561207c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbe903390899088908890600401612d59565b602060405180830381600087803b158015611fd857600080fd5b505af1925050508015612008575060408051601f3d908101601f1916820190925261200591810190612d96565b60015b612062573d808015612036576040519150601f19603f3d011682016040523d82523d6000602084013e61203b565b606091505b50805161205a5760405162461bcd60e51b81526004016107ec90612cb3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9d565b506001949350505050565b6001600160a01b0382166120dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ec565b6000818152600260205260409020546001600160a01b0316156121425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ec565b6001600160a01b038216600090815260036020526040812080546001929061216b908490612a39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121d590612882565b90600052602060002090601f0160209004810192826121f7576000855561223d565b82601f1061221057805160ff191683800117855561223d565b8280016001018555821561223d579182015b8281111561223d578251825591602001919060010190612222565b506122499291506122c1565b5090565b82805461225990612882565b90600052602060002090601f01602090048101928261227b576000855561223d565b82601f106122945782800160ff1982351617855561223d565b8280016001018555821561223d579182015b8281111561223d5782358255916020019190600101906122a6565b5b8082111561224957600081556001016122c2565b803561ffff811681146122e857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561231d5761231d6122ed565b604051601f8501601f19908116603f01168101908282118183101715612345576123456122ed565b8160405280935085815286868601111561235e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261238957600080fd5b61239883833560208501612303565b9392505050565b80356001600160401b03811681146122e857600080fd5b600080600080608085870312156123cc57600080fd5b6123d5856122d6565b935060208501356001600160401b03808211156123f157600080fd5b6123fd88838901612378565b945061240b6040880161239f565b9350606087013591508082111561242157600080fd5b5061242e87828801612378565b91505092959194509250565b6001600160e01b03198116811461191057600080fd5b60006020828403121561246257600080fd5b81356123988161243a565b803580151581146122e857600080fd5b60006020828403121561248f57600080fd5b6123988261246d565b60005b838110156124b357818101518382015260200161249b565b838111156109075750506000910152565b600081518084526124dc816020860160208601612498565b601f01601f19169290920160200192915050565b60208152600061239860208301846124c4565b60006020828403121561251557600080fd5b5035919050565b6001600160a01b038116811461191057600080fd5b6000806040838503121561254457600080fd5b823561254f8161251c565b946020939093013593505050565b60006020828403121561256f57600080fd5b81356123988161251c565b60008060006060848603121561258f57600080fd5b833561259a8161251c565b925060208401356125aa8161251c565b929592945050506040919091013590565b6000602082840312156125cd57600080fd5b81356001600160401b038111156125e357600080fd5b8201601f810184136125f457600080fd5b611a9d84823560208401612303565b60006020828403121561261557600080fd5b612398826122d6565b60008060006060848603121561263357600080fd5b61263c846122d6565b925060208401356001600160401b0381111561265757600080fd5b61266386828701612378565b925050604084013590509250925092565b6000806040838503121561268757600080fd5b82356126928161251c565b91506126a06020840161246d565b90509250929050565b600080600080608085870312156126bf57600080fd5b84356126ca8161251c565b935060208501356126da8161251c565b92506040850135915060608501356001600160401b038111156126fc57600080fd5b61242e87828801612378565b6000806040838503121561271b57600080fd5b61254f836122d6565b60008083601f84011261273657600080fd5b5081356001600160401b0381111561274d57600080fd5b60208301915083602082850101111561276557600080fd5b9250929050565b60008060008060006080868803121561278457600080fd5b61278d866122d6565b945060208601356001600160401b03808211156127a957600080fd5b6127b589838a01612378565b95506127c36040890161239f565b945060608801359150808211156127d957600080fd5b506127e688828901612724565b969995985093965092949392505050565b6000806040838503121561280a57600080fd5b82356128158161251c565b915060208301356128258161251c565b809150509250929050565b60008060006040848603121561284557600080fd5b61284e846122d6565b925060208401356001600160401b0381111561286957600080fd5b61287586828701612724565b9497909650939450505050565b600181811c9082168061289657607f821691505b602082108114156128b757634e487b7160e01b600052602260045260246000fd5b50919050565b600081546128ca81612882565b600182811680156128e257600181146128f357612922565b60ff19841687528287019450612922565b8560005260208060002060005b858110156129195781548a820152908401908201612900565b50505082870194505b5050505092915050565b600061239882846128bd565b61ffff8516815260806020820152600061295560808301866124c4565b6001600160401b0385166040840152828103606084015261297681856124c4565b979650505050505050565b60008251612993818460208701612498565b9190910192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a4c57612a4c612a23565b500190565b6000600019821415612a6557612a65612a23565b5060010190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612a9a908301866124c4565b84151560608401528281036080840152612ab481856124c4565b98975050505050505050565b60008060408385031215612ad357600080fd5b505080516020909101519092909150565b6000612af082866128bd565b8451612b00818360208901612498565b8451910190612b13818360208801612498565b0195945050505050565b61ffff871681526000602060c08184015260008854612b3b81612882565b8060c087015260e0600180841660008114612b5d5760018114612b7257612ba0565b60ff1985168984015261010089019550612ba0565b8d6000528660002060005b85811015612b985781548b8201860152908301908801612b7d565b8a0184019650505b50505050508381036040850152612bb781896124c4565b915050612bcf60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612bf081856124c4565b9998505050505050505050565b8183823760009101908152919050565b61ffff86168152608060208201526000612c2a60808301876124c4565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b60008060408385031215612c8157600080fd5b8251612c8c8161251c565b6020939093015192949293505050565b600082821015612cae57612cae612a23565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612d2a57612d2a612d05565b500490565b600082612d3e57612d3e612d05565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8c908301846124c4565b9695505050505050565b600060208284031215612da857600080fd5b81516123988161243a56fea26469706673582212201b8d4ddd3e9499bbbb84512e12a883a49cff664731bf6874e3859eaba83adcfd64736f6c63430008090033697066733a2f2f516d574e6e74336632417036567542467835565a584168426e52456a517a704666725351614a6552446a386846592f697066733a2f2f516d5a54506874325564316d555a336f356a7a51687561455961333775664d5a644a5a576d5a4c435a6669734d6a00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f9f

Deployed Bytecode

0x6080604052600436106102195760003560e01c80637533d78811610123578063c6682862116100ab578063e8a3d4851161006f578063e8a3d48514610660578063e985e9c514610675578063eb8d72b7146106be578063f2fde38b146106de578063f43a22dc146106fe57600080fd5b8063c6682862146105c9578063c7afa661146105fa578063c87b56dd1461061a578063cf89fa031461063a578063d1deba1f1461064d57600080fd5b8063943fb872116100f2578063943fb8721461054157806395d89b4114610561578063a0712d6814610576578063a22cb46514610589578063b88d4fde146105a957600080fd5b80637533d788146104785780638da5cb5b146104985780638ee74912146104b6578063938e3d7b1461052157600080fd5b806323b872dd116101a65780635c975abb116101755780635c975abb146103f45780636352211e1461040e5780636c0360eb1461042e57806370a0823114610443578063715018a61461046357600080fd5b806323b872dd1461037f5780633ccfd60b1461039f57806342842e0e146103b457806355f804b3146103d457600080fd5b8063081812fc116101ed578063081812fc146102b7578063095ea7b3146102ef5780630f2cdd6c1461030f5780631c37a822146103325780631e7269c51461035257600080fd5b80621d35671461021e57806301ffc9a71461024057806302329a291461027557806306fdde0314610295575b600080fd5b34801561022a57600080fd5b5061023e6102393660046123b6565b610713565b005b34801561024c57600080fd5b5061026061025b366004612450565b61090d565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061023e61029036600461247d565b61095f565b3480156102a157600080fd5b506102aa61099c565b60405161026c91906124f0565b3480156102c357600080fd5b506102d76102d2366004612503565b610a2e565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b5061023e61030a366004612531565b610ac3565b34801561031b57600080fd5b50610324601e81565b60405190815260200161026c565b34801561033e57600080fd5b5061023e61034d3660046123b6565b610bd9565b34801561035e57600080fd5b5061032461036d36600461255d565b600f6020526000908152604090205481565b34801561038b57600080fd5b5061023e61039a36600461257a565b610c48565b3480156103ab57600080fd5b5061023e610c79565b3480156103c057600080fd5b5061023e6103cf36600461257a565b610d32565b3480156103e057600080fd5b5061023e6103ef3660046125bb565b610d4d565b34801561040057600080fd5b506010546102609060ff1681565b34801561041a57600080fd5b506102d7610429366004612503565b610d8a565b34801561043a57600080fd5b506102aa610e01565b34801561044f57600080fd5b5061032461045e36600461255d565b610e8f565b34801561046f57600080fd5b5061023e610f16565b34801561048457600080fd5b506102aa610493366004612603565b610f4c565b3480156104a457600080fd5b506006546001600160a01b03166102d7565b3480156104c257600080fd5b5061050c6104d136600461261e565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161026c565b34801561052d57600080fd5b5061023e61053c3660046125bb565b610f65565b34801561054d57600080fd5b5061023e61055c366004612503565b610fa2565b34801561056d57600080fd5b506102aa610fd1565b61023e610584366004612503565b610fe0565b34801561059557600080fd5b5061023e6105a4366004612674565b6111b5565b3480156105b557600080fd5b5061023e6105c43660046126a9565b6111c0565b3480156105d557600080fd5b506102aa60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561060657600080fd5b50610324610615366004612708565b6111f2565b34801561062657600080fd5b506102aa610635366004612503565b6112d4565b61023e610648366004612708565b6113ae565b61023e61065b36600461276c565b611696565b34801561066c57600080fd5b506102aa611823565b34801561068157600080fd5b506102606106903660046127f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ca57600080fd5b5061023e6106d9366004612830565b611830565b3480156106ea57600080fd5b5061023e6106f936600461255d565b611878565b34801561070a57600080fd5b50610324600281565b6007546001600160a01b0316331461072a57600080fd5b61ffff84166000908152600960205260409020805461074890612882565b90508351148015610787575061ffff8416600090815260096020526040908190209051610775919061292c565b60405180910390208380519060200120145b6107f55760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a8229061081e908790879087908790600401612938565b600060405180830381600087803b15801561083857600080fd5b505af1925050508015610849575060015b610907576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108939190612981565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108fe908690869086908690612938565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b148061093e57506001600160e01b03198216635b5e139f60e01b145b8061095957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146109895760405162461bcd60e51b81526004016107ec9061299d565b6010805460ff1916911515919091179055565b6060600080546109ab90612882565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790612882565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b506000908152600460205260409020546001600160a01b031690565b6000610ace82610d8a565b9050806001600160a01b0316836001600160a01b03161415610b3c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ec565b336001600160a01b0382161480610b585750610b588133610690565b610bca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ec565b610bd48383611913565b505050565b333014610c3c5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b60648201526084016107ec565b61090784848484611981565b610c5233826119ae565b610c6e5760405162461bcd60e51b81526004016107ec906129d2565b610bd4838383611aa5565b6006546001600160a01b03163314610ca35760405162461bcd60e51b81526004016107ec9061299d565b6040514790600090339083908381818185875af1925050503d8060008114610ce7576040519150601f19603f3d011682016040523d82523d6000602084013e610cec565b606091505b5050905080610d2e5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107ec565b5050565b610bd4838383604051806020016040528060008152506111c0565b6006546001600160a01b03163314610d775760405162461bcd60e51b81526004016107ec9061299d565b8051610d2e90600a9060208401906121c9565b6000818152600260205260408120546001600160a01b0316806109595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ec565b600a8054610e0e90612882565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90612882565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b505050505081565b60006001600160a01b038216610efa5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f405760405162461bcd60e51b81526004016107ec9061299d565b610f4a6000611c41565b565b60096020526000908152604090208054610e0e90612882565b6006546001600160a01b03163314610f8f5760405162461bcd60e51b81526004016107ec9061299d565b8051610d2e90600b9060208401906121c9565b6006546001600160a01b03163314610fcc5760405162461bcd60e51b81526004016107ec9061299d565b600e55565b6060600180546109ab90612882565b601054339060ff16156110295760405162461bcd60e51b81526020600482015260116024820152701d1a5b9e4818d85d1cce8814185d5cd959607a1b60448201526064016107ec565b600d5482600c5461103a9190612a39565b11156110885760405162461bcd60e51b815260206004820152601e60248201527f74696e7920636174733a204d696e74206578636565647320737570706c79000060448201526064016107ec565b81600210156110d95760405162461bcd60e51b815260206004820152601c60248201527f74696e7920636174733a20457863657373206d6178207065722074780000000060448201526064016107ec565b6001600160a01b0381166000908152600f60205260409020546110fd908390612a39565b601e101561114d5760405162461bcd60e51b815260206004820181905260248201527f74696e7920636174733a20457863657373206d6178207065722077616c6c657460448201526064016107ec565b6001600160a01b0381166000908152600f602052604081208054849290611175908490612a39565b90915550600090505b82811015610bd4576111a382600c6000815461119990612a51565b9182905550611c93565b806111ad81612a51565b91505061117e565b610d2e338383611cad565b6111ca33836119ae565b6111e65760405162461bcd60e51b81526004016107ec906129d2565b61090784848484611d7c565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b909452600093919260019285916001600160a01b03909116906340a7bb1090611279908a90309089908790899060a601612a6c565b604080518083038186803b15801561129057600080fd5b505afa1580156112a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c89190612ac0565b50979650505050505050565b6000818152600260205260409020546060906001600160a01b03166113335760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107ec565b6000600a805461134290612882565b90501161135e5760405180602001604052806000815250610959565b600a61136983611daf565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161139993929190612ae4565b60405160208183030381529060405292915050565b6113b781610d8a565b6001600160a01b0316336001600160a01b0316146114225760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b60648201526084016107ec565b61ffff82166000908152600960205260408120805461144090612882565b9050116114a65760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b60648201526084016107ec565b6114af81611eac565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb1090611532908990309089908790899060a601612a6c565b604080518083038186803b15801561154957600080fd5b505afa15801561155d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115819190612ac0565b509050803410156116115760405162461bcd60e51b815260206004820152604e60248201527f74696e7920636174733a206d73672e76616c7565206e6f7420656e6f7567682060448201527f746f20636f766572206d6573736167654665652e2053656e642067617320666f60648201526d72206d657373616765206665657360901b608482015260a4016107ec565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c580310092349261165c928c928b913391908b90600401612b1d565b6000604051808303818588803b15801561167557600080fd5b505af1158015611689573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516116b7908790612981565b90815260408051602092819003830190206001600160401b038716600090815292529020600181015490915061173e5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b60648201526084016107ec565b80548214801561176857508060010154838360405161175e929190612bfd565b6040518091039020145b6117b45760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016107ec565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906117e99089908990899089908990600401612c0d565b600060405180830381600087803b15801561180357600080fd5b505af1158015611817573d6000803e3d6000fd5b50505050505050505050565b600b8054610e0e90612882565b6006546001600160a01b0316331461185a5760405162461bcd60e51b81526004016107ec9061299d565b61ffff8316600090815260096020526040902061090790838361224d565b6006546001600160a01b031633146118a25760405162461bcd60e51b81526004016107ec9061299d565b6001600160a01b0381166119075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ec565b61191081611c41565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061194882610d8a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906119989190612c6e565b915091506119a68282611c93565b505050505050565b6000818152600260205260408120546001600160a01b0316611a275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ec565b6000611a3283610d8a565b9050806001600160a01b0316846001600160a01b03161480611a6d5750836001600160a01b0316611a6284610a2e565b6001600160a01b0316145b80611a9d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ab882610d8a565b6001600160a01b031614611b1c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107ec565b6001600160a01b038216611b7e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ec565b611b89600082611913565b6001600160a01b0383166000908152600360205260408120805460019290611bb2908490612c9c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611be0908490612a39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d2e828260405180602001604052806000815250611f47565b816001600160a01b0316836001600160a01b03161415611d0f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d87848484611aa5565b611d9384848484611f7a565b6109075760405162461bcd60e51b81526004016107ec90612cb3565b606081611dd35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfd5780611de781612a51565b9150611df69050600a83612d1b565b9150611dd7565b6000816001600160401b03811115611e1757611e176122ed565b6040519080825280601f01601f191660200182016040528015611e41576020820181803683370190505b5090505b8415611a9d57611e56600183612c9c565b9150611e63600a86612d2f565b611e6e906030612a39565b60f81b818381518110611e8357611e83612d43565b60200101906001600160f81b031916908160001a905350611ea5600a86612d1b565b9450611e45565b6000611eb782610d8a565b9050611ec4600083611913565b6001600160a01b0381166000908152600360205260408120805460019290611eed908490612c9c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611f518383612087565b611f5e6000848484611f7a565b610bd45760405162461bcd60e51b81526004016107ec90612cb3565b60006001600160a01b0384163b1561207c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbe903390899088908890600401612d59565b602060405180830381600087803b158015611fd857600080fd5b505af1925050508015612008575060408051601f3d908101601f1916820190925261200591810190612d96565b60015b612062573d808015612036576040519150601f19603f3d011682016040523d82523d6000602084013e61203b565b606091505b50805161205a5760405162461bcd60e51b81526004016107ec90612cb3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9d565b506001949350505050565b6001600160a01b0382166120dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ec565b6000818152600260205260409020546001600160a01b0316156121425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ec565b6001600160a01b038216600090815260036020526040812080546001929061216b908490612a39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121d590612882565b90600052602060002090601f0160209004810192826121f7576000855561223d565b82601f1061221057805160ff191683800117855561223d565b8280016001018555821561223d579182015b8281111561223d578251825591602001919060010190612222565b506122499291506122c1565b5090565b82805461225990612882565b90600052602060002090601f01602090048101928261227b576000855561223d565b82601f106122945782800160ff1982351617855561223d565b8280016001018555821561223d579182015b8281111561223d5782358255916020019190600101906122a6565b5b8082111561224957600081556001016122c2565b803561ffff811681146122e857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561231d5761231d6122ed565b604051601f8501601f19908116603f01168101908282118183101715612345576123456122ed565b8160405280935085815286868601111561235e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261238957600080fd5b61239883833560208501612303565b9392505050565b80356001600160401b03811681146122e857600080fd5b600080600080608085870312156123cc57600080fd5b6123d5856122d6565b935060208501356001600160401b03808211156123f157600080fd5b6123fd88838901612378565b945061240b6040880161239f565b9350606087013591508082111561242157600080fd5b5061242e87828801612378565b91505092959194509250565b6001600160e01b03198116811461191057600080fd5b60006020828403121561246257600080fd5b81356123988161243a565b803580151581146122e857600080fd5b60006020828403121561248f57600080fd5b6123988261246d565b60005b838110156124b357818101518382015260200161249b565b838111156109075750506000910152565b600081518084526124dc816020860160208601612498565b601f01601f19169290920160200192915050565b60208152600061239860208301846124c4565b60006020828403121561251557600080fd5b5035919050565b6001600160a01b038116811461191057600080fd5b6000806040838503121561254457600080fd5b823561254f8161251c565b946020939093013593505050565b60006020828403121561256f57600080fd5b81356123988161251c565b60008060006060848603121561258f57600080fd5b833561259a8161251c565b925060208401356125aa8161251c565b929592945050506040919091013590565b6000602082840312156125cd57600080fd5b81356001600160401b038111156125e357600080fd5b8201601f810184136125f457600080fd5b611a9d84823560208401612303565b60006020828403121561261557600080fd5b612398826122d6565b60008060006060848603121561263357600080fd5b61263c846122d6565b925060208401356001600160401b0381111561265757600080fd5b61266386828701612378565b925050604084013590509250925092565b6000806040838503121561268757600080fd5b82356126928161251c565b91506126a06020840161246d565b90509250929050565b600080600080608085870312156126bf57600080fd5b84356126ca8161251c565b935060208501356126da8161251c565b92506040850135915060608501356001600160401b038111156126fc57600080fd5b61242e87828801612378565b6000806040838503121561271b57600080fd5b61254f836122d6565b60008083601f84011261273657600080fd5b5081356001600160401b0381111561274d57600080fd5b60208301915083602082850101111561276557600080fd5b9250929050565b60008060008060006080868803121561278457600080fd5b61278d866122d6565b945060208601356001600160401b03808211156127a957600080fd5b6127b589838a01612378565b95506127c36040890161239f565b945060608801359150808211156127d957600080fd5b506127e688828901612724565b969995985093965092949392505050565b6000806040838503121561280a57600080fd5b82356128158161251c565b915060208301356128258161251c565b809150509250929050565b60008060006040848603121561284557600080fd5b61284e846122d6565b925060208401356001600160401b0381111561286957600080fd5b61287586828701612724565b9497909650939450505050565b600181811c9082168061289657607f821691505b602082108114156128b757634e487b7160e01b600052602260045260246000fd5b50919050565b600081546128ca81612882565b600182811680156128e257600181146128f357612922565b60ff19841687528287019450612922565b8560005260208060002060005b858110156129195781548a820152908401908201612900565b50505082870194505b5050505092915050565b600061239882846128bd565b61ffff8516815260806020820152600061295560808301866124c4565b6001600160401b0385166040840152828103606084015261297681856124c4565b979650505050505050565b60008251612993818460208701612498565b9190910192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a4c57612a4c612a23565b500190565b6000600019821415612a6557612a65612a23565b5060010190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612a9a908301866124c4565b84151560608401528281036080840152612ab481856124c4565b98975050505050505050565b60008060408385031215612ad357600080fd5b505080516020909101519092909150565b6000612af082866128bd565b8451612b00818360208901612498565b8451910190612b13818360208801612498565b0195945050505050565b61ffff871681526000602060c08184015260008854612b3b81612882565b8060c087015260e0600180841660008114612b5d5760018114612b7257612ba0565b60ff1985168984015261010089019550612ba0565b8d6000528660002060005b85811015612b985781548b8201860152908301908801612b7d565b8a0184019650505b50505050508381036040850152612bb781896124c4565b915050612bcf60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612bf081856124c4565b9998505050505050505050565b8183823760009101908152919050565b61ffff86168152608060208201526000612c2a60808301876124c4565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b60008060408385031215612c8157600080fd5b8251612c8c8161251c565b6020939093015192949293505050565b600082821015612cae57612cae612a23565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612d2a57612d2a612d05565b500490565b600082612d3e57612d3e612d05565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8c908301846124c4565b9695505050505050565b600060208284031215612da857600080fd5b81516123988161243a56fea26469706673582212201b8d4ddd3e9499bbbb84512e12a883a49cff664731bf6874e3859eaba83adcfd64736f6c63430008090033

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

00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f9f

-----Decoded View---------------
Arg [0] : _endpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [1] : startId (uint256): 0
Arg [2] : _max (uint256): 3999

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000f9f


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.