ETH Price: $4,033.21 (+3.18%)

Token

web3honey POF (HONEY)
 

Overview

Max Total Supply

0 HONEY

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HONEY
0x074083df5e5291b20145d532bfe1426ec5648f92
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:
Web3Honey

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Web3Honey.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

contract Web3Honey is ERC721,  Ownable {
    constructor()ERC721("web3honey POF", "HONEY"){
      _tokenCount = 0;
      _metadataTypes = 12;
      _baseTokenUri = "https://web3honey.infura-ipfs.io/ipfs/QmXqGi5qo5LYEWyq98JYX9Ua3uizESN1oYH4EhUL6FQXju/";
    }

    uint256 _tokenCount;
    uint32 private _metadataTypes;
    string private _baseTokenUri;

    mapping(address => bool) isMinted;
    mapping(uint256 => string) idToNumber;

    function mint() public {
        require(!isMinted[msg.sender], "You cannot mint twice");
        uint random = uint(keccak256(abi.encodePacked(_tokenCount, msg.sender, "Web3Honey")));
        string memory n = Strings.toString(random % _metadataTypes + 1);
        idToNumber[_tokenCount] = n;
        _safeMint(msg.sender, _tokenCount);
        isMinted[msg.sender] = true;
        ++_tokenCount;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721)returns(string memory){
      bytes memory uri = abi.encodePacked(_baseTokenUri, idToNumber[tokenId]);
      return string(uri);
    }

    function setMetadataTypes(uint32 number) public onlyOwner {
      _metadataTypes = number;
    }

    function setBaseTokenUri(string memory  uri) public onlyOwner {
      _baseTokenUri = uri;
    }

    function baseTokenURI()
      public view returns(string memory) {
      return _baseTokenUri;
    }

    function getMetadataTypes()
      public view returns(uint) {
      return _metadataTypes;
    }
}

File 2 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 4 of 12 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 5 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 6 of 12 : 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 7 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 8 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 12 : 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 10 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 12 : 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 12 of 12 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":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":[{"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMetadataTypes","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":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"number","type":"uint32"}],"name":"setMetadataTypes","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f77656233686f6e657920504f46000000000000000000000000000000000000008152506040518060400160405280600581526020017f484f4e455900000000000000000000000000000000000000000000000000000081525081600090816200008f919062000467565b508060019081620000a1919062000467565b505050620000c4620000b86200011f60201b60201c565b6200012760201b60201c565b6000600781905550600c600860006101000a81548163ffffffff021916908363ffffffff16021790555060405180608001604052806055815260200162003608605591396009908162000118919062000467565b506200054e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026f57607f821691505b60208210810362000285576200028462000227565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b0565b620002fb8683620002b0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000348620003426200033c8462000313565b6200031d565b62000313565b9050919050565b6000819050919050565b620003648362000327565b6200037c62000373826200034f565b848454620002bd565b825550505050565b600090565b6200039362000384565b620003a081848462000359565b505050565b5b81811015620003c857620003bc60008262000389565b600181019050620003a6565b5050565b601f8211156200041757620003e1816200028b565b620003ec84620002a0565b81016020851015620003fc578190505b620004146200040b85620002a0565b830182620003a5565b50505b505050565b600082821c905092915050565b60006200043c600019846008026200041c565b1980831691505092915050565b600062000457838362000429565b9150826002028217905092915050565b6200047282620001ed565b67ffffffffffffffff8111156200048e576200048d620001f8565b5b6200049a825462000256565b620004a7828285620003cc565b600060209050601f831160018114620004df5760008415620004ca578287015190505b620004d6858262000449565b86555062000546565b601f198416620004ef866200028b565b60005b828110156200051957848901518255600182019150602085019450602081019050620004f2565b8683101562000539578489015162000535601f89168262000429565b8355505b6001600288020188555050505b505050505050565b6130aa806200055e6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063b88d4fde1161007c578063b88d4fde14610314578063c873ec5e14610330578063c87b56dd1461034c578063d547cfb71461037c578063e985e9c51461039a578063f2fde38b146103ca57610137565b80638da5cb5b1461028257806395652cfa146102a057806395d89b41146102bc578063a22cb465146102da578063b5ab67e6146102f657610137565b806323b872dd116100ff57806323b872dd146101e057806342842e0e146101fc5780636352211e1461021857806370a0823114610248578063715018a61461027857610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780631249c58b146101d6575b600080fd5b61015660048036038101906101519190611b92565b6103e6565b6040516101639190611bda565b60405180910390f35b6101746104c8565b6040516101819190611c8e565b60405180910390f35b6101a4600480360381019061019f9190611ce6565b61055a565b6040516101b19190611d54565b60405180910390f35b6101d460048036038101906101cf9190611d9b565b6105a0565b005b6101de6106b7565b005b6101fa60048036038101906101f59190611ddb565b610853565b005b61021660048036038101906102119190611ddb565b6108b3565b005b610232600480360381019061022d9190611ce6565b6108d3565b60405161023f9190611d54565b60405180910390f35b610262600480360381019061025d9190611e2e565b610984565b60405161026f9190611e6a565b60405180910390f35b610280610a3b565b005b61028a610a4f565b6040516102979190611d54565b60405180910390f35b6102ba60048036038101906102b59190611fba565b610a79565b005b6102c4610a94565b6040516102d19190611c8e565b60405180910390f35b6102f460048036038101906102ef919061202f565b610b26565b005b6102fe610b3c565b60405161030b9190611e6a565b60405180910390f35b61032e60048036038101906103299190612110565b610b5c565b005b61034a600480360381019061034591906121cf565b610bbe565b005b61036660048036038101906103619190611ce6565b610bea565b6040516103739190611c8e565b60405180910390f35b610384610c2e565b6040516103919190611c8e565b60405180910390f35b6103b460048036038101906103af91906121fc565b610cc0565b6040516103c19190611bda565b60405180910390f35b6103e460048036038101906103df9190611e2e565b610d54565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c157506104c082610dd7565b5b9050919050565b6060600080546104d79061226b565b80601f01602080910402602001604051908101604052809291908181526020018280546105039061226b565b80156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b600061056582610e41565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ab826108d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361061b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106129061230e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063a610e8c565b73ffffffffffffffffffffffffffffffffffffffff161480610669575061066881610663610e8c565b610cc0565b5b6106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f906123a0565b60405180910390fd5b6106b28383610e94565b505050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b9061240c565b60405180910390fd5b60006007543360405160200161075b9291906124ec565b6040516020818303038152906040528051906020012060001c905060006107b06001600860009054906101000a900463ffffffff1663ffffffff16846107a19190612552565b6107ab91906125b2565b610f4d565b905080600b6000600754815260200190815260200160002090816107d491906127b4565b506107e1336007546110ad565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060076000815461084890612886565b919050819055505050565b61086461085e610e8c565b826110cb565b6108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90612940565b60405180910390fd5b6108ae838383611160565b505050565b6108ce83838360405180602001604052806000815250610b5c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361097b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610972906129ac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612a3e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a436113c6565b610a4d6000611444565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a816113c6565b8060099081610a9091906127b4565b5050565b606060018054610aa39061226b565b80601f0160208091040260200160405190810160405280929190818152602001828054610acf9061226b565b8015610b1c5780601f10610af157610100808354040283529160200191610b1c565b820191906000526020600020905b815481529060010190602001808311610aff57829003601f168201915b5050505050905090565b610b38610b31610e8c565b838361150a565b5050565b6000600860009054906101000a900463ffffffff1663ffffffff16905090565b610b6d610b67610e8c565b836110cb565b610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390612940565b60405180910390fd5b610bb884848484611676565b50505050565b610bc66113c6565b80600860006101000a81548163ffffffff021916908363ffffffff16021790555050565b606060006009600b6000858152602001908152602001600020604051602001610c14929190612ae1565b604051602081830303815290604052905080915050919050565b606060098054610c3d9061226b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c699061226b565b8015610cb65780601f10610c8b57610100808354040283529160200191610cb6565b820191906000526020600020905b815481529060010190602001808311610c9957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d5c6113c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612b77565b60405180910390fd5b610dd481611444565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610e4a816116d2565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906129ac565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f07836108d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060008203610f94576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506110a8565b600082905060005b60008214610fc6578080610faf90612886565b915050600a82610fbf9190612b97565b9150610f9c565b60008167ffffffffffffffff811115610fe257610fe1611e8f565b5b6040519080825280601f01601f1916602001820160405280156110145781602001600182028036833780820191505090505b5090505b600085146110a15760018261102d9190612bc8565b9150600a8561103c9190612552565b603061104891906125b2565b60f81b81838151811061105e5761105d612bfc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561109a9190612b97565b9450611018565b8093505050505b919050565b6110c782826040518060200160405280600081525061173e565b5050565b6000806110d7836108d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061111957506111188185610cc0565b5b8061115757508373ffffffffffffffffffffffffffffffffffffffff1661113f8461055a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611180826108d3565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612d2f565b60405180910390fd5b611250838383611799565b61125b600082610e94565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ab9190612bc8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130291906125b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113c183838361179e565b505050565b6113ce610e8c565b73ffffffffffffffffffffffffffffffffffffffff166113ec610a4f565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990612d9b565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90612e07565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116699190611bda565b60405180910390a3505050565b611681848484611160565b61168d848484846117a3565b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390612e99565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611748838361192a565b61175560008484846117a3565b611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90612e99565b60405180910390fd5b505050565b505050565b505050565b60006117c48473ffffffffffffffffffffffffffffffffffffffff16611b03565b1561191d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117ed610e8c565b8786866040518563ffffffff1660e01b815260040161180f9493929190612f0e565b6020604051808303816000875af192505050801561184b57506040513d601f19601f820116820180604052508101906118489190612f6f565b60015b6118cd573d806000811461187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b5060008151036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90612e99565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611922565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090612fe8565b60405180910390fd5b6119a2816116d2565b156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990613054565b60405180910390fd5b6119ee60008383611799565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a3e91906125b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aff6000838361179e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b6f81611b3a565b8114611b7a57600080fd5b50565b600081359050611b8c81611b66565b92915050565b600060208284031215611ba857611ba7611b30565b5b6000611bb684828501611b7d565b91505092915050565b60008115159050919050565b611bd481611bbf565b82525050565b6000602082019050611bef6000830184611bcb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c2f578082015181840152602081019050611c14565b83811115611c3e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c6082611bf5565b611c6a8185611c00565b9350611c7a818560208601611c11565b611c8381611c44565b840191505092915050565b60006020820190508181036000830152611ca88184611c55565b905092915050565b6000819050919050565b611cc381611cb0565b8114611cce57600080fd5b50565b600081359050611ce081611cba565b92915050565b600060208284031215611cfc57611cfb611b30565b5b6000611d0a84828501611cd1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d3e82611d13565b9050919050565b611d4e81611d33565b82525050565b6000602082019050611d696000830184611d45565b92915050565b611d7881611d33565b8114611d8357600080fd5b50565b600081359050611d9581611d6f565b92915050565b60008060408385031215611db257611db1611b30565b5b6000611dc085828601611d86565b9250506020611dd185828601611cd1565b9150509250929050565b600080600060608486031215611df457611df3611b30565b5b6000611e0286828701611d86565b9350506020611e1386828701611d86565b9250506040611e2486828701611cd1565b9150509250925092565b600060208284031215611e4457611e43611b30565b5b6000611e5284828501611d86565b91505092915050565b611e6481611cb0565b82525050565b6000602082019050611e7f6000830184611e5b565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ec782611c44565b810181811067ffffffffffffffff82111715611ee657611ee5611e8f565b5b80604052505050565b6000611ef9611b26565b9050611f058282611ebe565b919050565b600067ffffffffffffffff821115611f2557611f24611e8f565b5b611f2e82611c44565b9050602081019050919050565b82818337600083830152505050565b6000611f5d611f5884611f0a565b611eef565b905082815260208101848484011115611f7957611f78611e8a565b5b611f84848285611f3b565b509392505050565b600082601f830112611fa157611fa0611e85565b5b8135611fb1848260208601611f4a565b91505092915050565b600060208284031215611fd057611fcf611b30565b5b600082013567ffffffffffffffff811115611fee57611fed611b35565b5b611ffa84828501611f8c565b91505092915050565b61200c81611bbf565b811461201757600080fd5b50565b60008135905061202981612003565b92915050565b6000806040838503121561204657612045611b30565b5b600061205485828601611d86565b92505060206120658582860161201a565b9150509250929050565b600067ffffffffffffffff82111561208a57612089611e8f565b5b61209382611c44565b9050602081019050919050565b60006120b36120ae8461206f565b611eef565b9050828152602081018484840111156120cf576120ce611e8a565b5b6120da848285611f3b565b509392505050565b600082601f8301126120f7576120f6611e85565b5b81356121078482602086016120a0565b91505092915050565b6000806000806080858703121561212a57612129611b30565b5b600061213887828801611d86565b945050602061214987828801611d86565b935050604061215a87828801611cd1565b925050606085013567ffffffffffffffff81111561217b5761217a611b35565b5b612187878288016120e2565b91505092959194509250565b600063ffffffff82169050919050565b6121ac81612193565b81146121b757600080fd5b50565b6000813590506121c9816121a3565b92915050565b6000602082840312156121e5576121e4611b30565b5b60006121f3848285016121ba565b91505092915050565b6000806040838503121561221357612212611b30565b5b600061222185828601611d86565b925050602061223285828601611d86565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061228357607f821691505b6020821081036122965761229561223c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006122f8602183611c00565b91506123038261229c565b604082019050919050565b60006020820190508181036000830152612327816122eb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061238a603e83611c00565b91506123958261232e565b604082019050919050565b600060208201905081810360008301526123b98161237d565b9050919050565b7f596f752063616e6e6f74206d696e742074776963650000000000000000000000600082015250565b60006123f6601583611c00565b9150612401826123c0565b602082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b6000819050919050565b61244761244282611cb0565b61242c565b82525050565b60008160601b9050919050565b60006124658261244d565b9050919050565b60006124778261245a565b9050919050565b61248f61248a82611d33565b61246c565b82525050565b600081905092915050565b7f57656233486f6e65790000000000000000000000000000000000000000000000600082015250565b60006124d6600983612495565b91506124e1826124a0565b600982019050919050565b60006124f88285612436565b602082019150612508828461247e565b601482019150612517826124c9565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061255d82611cb0565b915061256883611cb0565b92508261257857612577612523565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125bd82611cb0565b91506125c883611cb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125fd576125fc612583565b5b828201905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261266a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261262d565b612674868361262d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126b16126ac6126a784611cb0565b61268c565b611cb0565b9050919050565b6000819050919050565b6126cb83612696565b6126df6126d7826126b8565b84845461263a565b825550505050565b600090565b6126f46126e7565b6126ff8184846126c2565b505050565b5b81811015612723576127186000826126ec565b600181019050612705565b5050565b601f8211156127685761273981612608565b6127428461261d565b81016020851015612751578190505b61276561275d8561261d565b830182612704565b50505b505050565b600082821c905092915050565b600061278b6000198460080261276d565b1980831691505092915050565b60006127a4838361277a565b9150826002028217905092915050565b6127bd82611bf5565b67ffffffffffffffff8111156127d6576127d5611e8f565b5b6127e0825461226b565b6127eb828285612727565b600060209050601f83116001811461281e576000841561280c578287015190505b6128168582612798565b86555061287e565b601f19841661282c86612608565b60005b828110156128545784890151825560018201915060208501945060208101905061282f565b86831015612871578489015161286d601f89168261277a565b8355505b6001600288020188555050505b505050505050565b600061289182611cb0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128c3576128c2612583565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061292a602e83611c00565b9150612935826128ce565b604082019050919050565b600060208201905081810360008301526129598161291d565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612996601883611c00565b91506129a182612960565b602082019050919050565b600060208201905081810360008301526129c581612989565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612a28602983611c00565b9150612a33826129cc565b604082019050919050565b60006020820190508181036000830152612a5781612a1b565b9050919050565b60008154612a6b8161226b565b612a758186612495565b94506001821660008114612a905760018114612aa557612ad8565b60ff1983168652811515820286019350612ad8565b612aae85612608565b60005b83811015612ad057815481890152600182019150602081019050612ab1565b838801955050505b50505092915050565b6000612aed8285612a5e565b9150612af98284612a5e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b61602683611c00565b9150612b6c82612b05565b604082019050919050565b60006020820190508181036000830152612b9081612b54565b9050919050565b6000612ba282611cb0565b9150612bad83611cb0565b925082612bbd57612bbc612523565b5b828204905092915050565b6000612bd382611cb0565b9150612bde83611cb0565b925082821015612bf157612bf0612583565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612c87602583611c00565b9150612c9282612c2b565b604082019050919050565b60006020820190508181036000830152612cb681612c7a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d19602483611c00565b9150612d2482612cbd565b604082019050919050565b60006020820190508181036000830152612d4881612d0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d85602083611c00565b9150612d9082612d4f565b602082019050919050565b60006020820190508181036000830152612db481612d78565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612df1601983611c00565b9150612dfc82612dbb565b602082019050919050565b60006020820190508181036000830152612e2081612de4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612e83603283611c00565b9150612e8e82612e27565b604082019050919050565b60006020820190508181036000830152612eb281612e76565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ee082612eb9565b612eea8185612ec4565b9350612efa818560208601611c11565b612f0381611c44565b840191505092915050565b6000608082019050612f236000830187611d45565b612f306020830186611d45565b612f3d6040830185611e5b565b8181036060830152612f4f8184612ed5565b905095945050505050565b600081519050612f6981611b66565b92915050565b600060208284031215612f8557612f84611b30565b5b6000612f9384828501612f5a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612fd2602083611c00565b9150612fdd82612f9c565b602082019050919050565b6000602082019050818103600083015261300181612fc5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061303e601c83611c00565b915061304982613008565b602082019050919050565b6000602082019050818103600083015261306d81613031565b905091905056fea2646970667358221220b10f436037a6dcd92d6fcec9a941c1e96afb821f62a926f1345fdacadafcfc3564736f6c634300080f003368747470733a2f2f77656233686f6e65792e696e667572612d697066732e696f2f697066732f516d5871476935716f354c594557797139384a59583955613375697a45534e316f5948344568554c364651586a752f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063b88d4fde1161007c578063b88d4fde14610314578063c873ec5e14610330578063c87b56dd1461034c578063d547cfb71461037c578063e985e9c51461039a578063f2fde38b146103ca57610137565b80638da5cb5b1461028257806395652cfa146102a057806395d89b41146102bc578063a22cb465146102da578063b5ab67e6146102f657610137565b806323b872dd116100ff57806323b872dd146101e057806342842e0e146101fc5780636352211e1461021857806370a0823114610248578063715018a61461027857610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780631249c58b146101d6575b600080fd5b61015660048036038101906101519190611b92565b6103e6565b6040516101639190611bda565b60405180910390f35b6101746104c8565b6040516101819190611c8e565b60405180910390f35b6101a4600480360381019061019f9190611ce6565b61055a565b6040516101b19190611d54565b60405180910390f35b6101d460048036038101906101cf9190611d9b565b6105a0565b005b6101de6106b7565b005b6101fa60048036038101906101f59190611ddb565b610853565b005b61021660048036038101906102119190611ddb565b6108b3565b005b610232600480360381019061022d9190611ce6565b6108d3565b60405161023f9190611d54565b60405180910390f35b610262600480360381019061025d9190611e2e565b610984565b60405161026f9190611e6a565b60405180910390f35b610280610a3b565b005b61028a610a4f565b6040516102979190611d54565b60405180910390f35b6102ba60048036038101906102b59190611fba565b610a79565b005b6102c4610a94565b6040516102d19190611c8e565b60405180910390f35b6102f460048036038101906102ef919061202f565b610b26565b005b6102fe610b3c565b60405161030b9190611e6a565b60405180910390f35b61032e60048036038101906103299190612110565b610b5c565b005b61034a600480360381019061034591906121cf565b610bbe565b005b61036660048036038101906103619190611ce6565b610bea565b6040516103739190611c8e565b60405180910390f35b610384610c2e565b6040516103919190611c8e565b60405180910390f35b6103b460048036038101906103af91906121fc565b610cc0565b6040516103c19190611bda565b60405180910390f35b6103e460048036038101906103df9190611e2e565b610d54565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104c157506104c082610dd7565b5b9050919050565b6060600080546104d79061226b565b80601f01602080910402602001604051908101604052809291908181526020018280546105039061226b565b80156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b600061056582610e41565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105ab826108d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361061b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106129061230e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661063a610e8c565b73ffffffffffffffffffffffffffffffffffffffff161480610669575061066881610663610e8c565b610cc0565b5b6106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f906123a0565b60405180910390fd5b6106b28383610e94565b505050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b9061240c565b60405180910390fd5b60006007543360405160200161075b9291906124ec565b6040516020818303038152906040528051906020012060001c905060006107b06001600860009054906101000a900463ffffffff1663ffffffff16846107a19190612552565b6107ab91906125b2565b610f4d565b905080600b6000600754815260200190815260200160002090816107d491906127b4565b506107e1336007546110ad565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060076000815461084890612886565b919050819055505050565b61086461085e610e8c565b826110cb565b6108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90612940565b60405180910390fd5b6108ae838383611160565b505050565b6108ce83838360405180602001604052806000815250610b5c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361097b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610972906129ac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612a3e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a436113c6565b610a4d6000611444565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a816113c6565b8060099081610a9091906127b4565b5050565b606060018054610aa39061226b565b80601f0160208091040260200160405190810160405280929190818152602001828054610acf9061226b565b8015610b1c5780601f10610af157610100808354040283529160200191610b1c565b820191906000526020600020905b815481529060010190602001808311610aff57829003601f168201915b5050505050905090565b610b38610b31610e8c565b838361150a565b5050565b6000600860009054906101000a900463ffffffff1663ffffffff16905090565b610b6d610b67610e8c565b836110cb565b610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390612940565b60405180910390fd5b610bb884848484611676565b50505050565b610bc66113c6565b80600860006101000a81548163ffffffff021916908363ffffffff16021790555050565b606060006009600b6000858152602001908152602001600020604051602001610c14929190612ae1565b604051602081830303815290604052905080915050919050565b606060098054610c3d9061226b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c699061226b565b8015610cb65780601f10610c8b57610100808354040283529160200191610cb6565b820191906000526020600020905b815481529060010190602001808311610c9957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d5c6113c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612b77565b60405180910390fd5b610dd481611444565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610e4a816116d2565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906129ac565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f07836108d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060008203610f94576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506110a8565b600082905060005b60008214610fc6578080610faf90612886565b915050600a82610fbf9190612b97565b9150610f9c565b60008167ffffffffffffffff811115610fe257610fe1611e8f565b5b6040519080825280601f01601f1916602001820160405280156110145781602001600182028036833780820191505090505b5090505b600085146110a15760018261102d9190612bc8565b9150600a8561103c9190612552565b603061104891906125b2565b60f81b81838151811061105e5761105d612bfc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561109a9190612b97565b9450611018565b8093505050505b919050565b6110c782826040518060200160405280600081525061173e565b5050565b6000806110d7836108d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061111957506111188185610cc0565b5b8061115757508373ffffffffffffffffffffffffffffffffffffffff1661113f8461055a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611180826108d3565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612d2f565b60405180910390fd5b611250838383611799565b61125b600082610e94565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ab9190612bc8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130291906125b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113c183838361179e565b505050565b6113ce610e8c565b73ffffffffffffffffffffffffffffffffffffffff166113ec610a4f565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990612d9b565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90612e07565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116699190611bda565b60405180910390a3505050565b611681848484611160565b61168d848484846117a3565b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390612e99565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611748838361192a565b61175560008484846117a3565b611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90612e99565b60405180910390fd5b505050565b505050565b505050565b60006117c48473ffffffffffffffffffffffffffffffffffffffff16611b03565b1561191d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117ed610e8c565b8786866040518563ffffffff1660e01b815260040161180f9493929190612f0e565b6020604051808303816000875af192505050801561184b57506040513d601f19601f820116820180604052508101906118489190612f6f565b60015b6118cd573d806000811461187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b5060008151036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90612e99565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611922565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090612fe8565b60405180910390fd5b6119a2816116d2565b156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990613054565b60405180910390fd5b6119ee60008383611799565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a3e91906125b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aff6000838361179e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b6f81611b3a565b8114611b7a57600080fd5b50565b600081359050611b8c81611b66565b92915050565b600060208284031215611ba857611ba7611b30565b5b6000611bb684828501611b7d565b91505092915050565b60008115159050919050565b611bd481611bbf565b82525050565b6000602082019050611bef6000830184611bcb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c2f578082015181840152602081019050611c14565b83811115611c3e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c6082611bf5565b611c6a8185611c00565b9350611c7a818560208601611c11565b611c8381611c44565b840191505092915050565b60006020820190508181036000830152611ca88184611c55565b905092915050565b6000819050919050565b611cc381611cb0565b8114611cce57600080fd5b50565b600081359050611ce081611cba565b92915050565b600060208284031215611cfc57611cfb611b30565b5b6000611d0a84828501611cd1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d3e82611d13565b9050919050565b611d4e81611d33565b82525050565b6000602082019050611d696000830184611d45565b92915050565b611d7881611d33565b8114611d8357600080fd5b50565b600081359050611d9581611d6f565b92915050565b60008060408385031215611db257611db1611b30565b5b6000611dc085828601611d86565b9250506020611dd185828601611cd1565b9150509250929050565b600080600060608486031215611df457611df3611b30565b5b6000611e0286828701611d86565b9350506020611e1386828701611d86565b9250506040611e2486828701611cd1565b9150509250925092565b600060208284031215611e4457611e43611b30565b5b6000611e5284828501611d86565b91505092915050565b611e6481611cb0565b82525050565b6000602082019050611e7f6000830184611e5b565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ec782611c44565b810181811067ffffffffffffffff82111715611ee657611ee5611e8f565b5b80604052505050565b6000611ef9611b26565b9050611f058282611ebe565b919050565b600067ffffffffffffffff821115611f2557611f24611e8f565b5b611f2e82611c44565b9050602081019050919050565b82818337600083830152505050565b6000611f5d611f5884611f0a565b611eef565b905082815260208101848484011115611f7957611f78611e8a565b5b611f84848285611f3b565b509392505050565b600082601f830112611fa157611fa0611e85565b5b8135611fb1848260208601611f4a565b91505092915050565b600060208284031215611fd057611fcf611b30565b5b600082013567ffffffffffffffff811115611fee57611fed611b35565b5b611ffa84828501611f8c565b91505092915050565b61200c81611bbf565b811461201757600080fd5b50565b60008135905061202981612003565b92915050565b6000806040838503121561204657612045611b30565b5b600061205485828601611d86565b92505060206120658582860161201a565b9150509250929050565b600067ffffffffffffffff82111561208a57612089611e8f565b5b61209382611c44565b9050602081019050919050565b60006120b36120ae8461206f565b611eef565b9050828152602081018484840111156120cf576120ce611e8a565b5b6120da848285611f3b565b509392505050565b600082601f8301126120f7576120f6611e85565b5b81356121078482602086016120a0565b91505092915050565b6000806000806080858703121561212a57612129611b30565b5b600061213887828801611d86565b945050602061214987828801611d86565b935050604061215a87828801611cd1565b925050606085013567ffffffffffffffff81111561217b5761217a611b35565b5b612187878288016120e2565b91505092959194509250565b600063ffffffff82169050919050565b6121ac81612193565b81146121b757600080fd5b50565b6000813590506121c9816121a3565b92915050565b6000602082840312156121e5576121e4611b30565b5b60006121f3848285016121ba565b91505092915050565b6000806040838503121561221357612212611b30565b5b600061222185828601611d86565b925050602061223285828601611d86565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061228357607f821691505b6020821081036122965761229561223c565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006122f8602183611c00565b91506123038261229c565b604082019050919050565b60006020820190508181036000830152612327816122eb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061238a603e83611c00565b91506123958261232e565b604082019050919050565b600060208201905081810360008301526123b98161237d565b9050919050565b7f596f752063616e6e6f74206d696e742074776963650000000000000000000000600082015250565b60006123f6601583611c00565b9150612401826123c0565b602082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b6000819050919050565b61244761244282611cb0565b61242c565b82525050565b60008160601b9050919050565b60006124658261244d565b9050919050565b60006124778261245a565b9050919050565b61248f61248a82611d33565b61246c565b82525050565b600081905092915050565b7f57656233486f6e65790000000000000000000000000000000000000000000000600082015250565b60006124d6600983612495565b91506124e1826124a0565b600982019050919050565b60006124f88285612436565b602082019150612508828461247e565b601482019150612517826124c9565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061255d82611cb0565b915061256883611cb0565b92508261257857612577612523565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125bd82611cb0565b91506125c883611cb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125fd576125fc612583565b5b828201905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261266a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261262d565b612674868361262d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006126b16126ac6126a784611cb0565b61268c565b611cb0565b9050919050565b6000819050919050565b6126cb83612696565b6126df6126d7826126b8565b84845461263a565b825550505050565b600090565b6126f46126e7565b6126ff8184846126c2565b505050565b5b81811015612723576127186000826126ec565b600181019050612705565b5050565b601f8211156127685761273981612608565b6127428461261d565b81016020851015612751578190505b61276561275d8561261d565b830182612704565b50505b505050565b600082821c905092915050565b600061278b6000198460080261276d565b1980831691505092915050565b60006127a4838361277a565b9150826002028217905092915050565b6127bd82611bf5565b67ffffffffffffffff8111156127d6576127d5611e8f565b5b6127e0825461226b565b6127eb828285612727565b600060209050601f83116001811461281e576000841561280c578287015190505b6128168582612798565b86555061287e565b601f19841661282c86612608565b60005b828110156128545784890151825560018201915060208501945060208101905061282f565b86831015612871578489015161286d601f89168261277a565b8355505b6001600288020188555050505b505050505050565b600061289182611cb0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036128c3576128c2612583565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061292a602e83611c00565b9150612935826128ce565b604082019050919050565b600060208201905081810360008301526129598161291d565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612996601883611c00565b91506129a182612960565b602082019050919050565b600060208201905081810360008301526129c581612989565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612a28602983611c00565b9150612a33826129cc565b604082019050919050565b60006020820190508181036000830152612a5781612a1b565b9050919050565b60008154612a6b8161226b565b612a758186612495565b94506001821660008114612a905760018114612aa557612ad8565b60ff1983168652811515820286019350612ad8565b612aae85612608565b60005b83811015612ad057815481890152600182019150602081019050612ab1565b838801955050505b50505092915050565b6000612aed8285612a5e565b9150612af98284612a5e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b61602683611c00565b9150612b6c82612b05565b604082019050919050565b60006020820190508181036000830152612b9081612b54565b9050919050565b6000612ba282611cb0565b9150612bad83611cb0565b925082612bbd57612bbc612523565b5b828204905092915050565b6000612bd382611cb0565b9150612bde83611cb0565b925082821015612bf157612bf0612583565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612c87602583611c00565b9150612c9282612c2b565b604082019050919050565b60006020820190508181036000830152612cb681612c7a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d19602483611c00565b9150612d2482612cbd565b604082019050919050565b60006020820190508181036000830152612d4881612d0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d85602083611c00565b9150612d9082612d4f565b602082019050919050565b60006020820190508181036000830152612db481612d78565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612df1601983611c00565b9150612dfc82612dbb565b602082019050919050565b60006020820190508181036000830152612e2081612de4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612e83603283611c00565b9150612e8e82612e27565b604082019050919050565b60006020820190508181036000830152612eb281612e76565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ee082612eb9565b612eea8185612ec4565b9350612efa818560208601611c11565b612f0381611c44565b840191505092915050565b6000608082019050612f236000830187611d45565b612f306020830186611d45565b612f3d6040830185611e5b565b8181036060830152612f4f8184612ed5565b905095945050505050565b600081519050612f6981611b66565b92915050565b600060208284031215612f8557612f84611b30565b5b6000612f9384828501612f5a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612fd2602083611c00565b9150612fdd82612f9c565b602082019050919050565b6000602082019050818103600083015261300181612fc5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061303e601c83611c00565b915061304982613008565b602082019050919050565b6000602082019050818103600083015261306d81613031565b905091905056fea2646970667358221220b10f436037a6dcd92d6fcec9a941c1e96afb821f62a926f1345fdacadafcfc3564736f6c634300080f0033

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.