ETH Price: $2,736.39 (-0.32%)

Token

Goobrrz (GOOB)
 

Overview

Max Total Supply

0 GOOB

Holders

536

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GOOB
0x3584a1e9efa54aae53eddd9f021b6643ebbd6f8b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : nft.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.17;
 
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract NFT is ERC721, Ownable
{
	// Constants
	uint256 public constant TOTAL_SUPPLY = 987;
	
    uint256 public cou_Token;

	/// @dev Base token URI used as a prefix by tokenURI().
	string public baseTokenURI;

	constructor() ERC721("Goobrrz", "GOOB") 
	{
		cou_Token = 0;
		baseTokenURI = "https://tan-secret-tiger-14.mypinata.cloud/ipfs/QmdYjiEud8zG3SGGNDs1NDi5dD6MKxd5TNiaHaZPi8aej7/";
	}

	function mintTo(address recipient) public returns (uint256) 
	{
		require(cou_Token < TOTAL_SUPPLY, "No more Goobrrz left sorry :(");
		cou_Token++;
		
		_safeMint(recipient, cou_Token);
		return cou_Token;
	}

	/// @dev Returns an URI for a given token ID
	function _baseURI() internal view virtual override returns (string memory) 
	{
		return baseTokenURI;
	}

	/// @dev Sets the base token URI prefix.
	function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner 
	{
		baseTokenURI = _baseTokenURI;
	}
	
    function contractURI() public view returns (string memory) 
	{
        return "https://tan-secret-tiger-14.mypinata.cloud/ipfs/QmcoMSA6pNUPkNt382hCAWtW6yNaF5Nb4yx4oW8zyehSJN";
	}
}

File 2 of 11 : 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 3 of 11 : 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 4 of 11 : 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 5 of 11 : 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 6 of 11 : 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 11 : 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 8 of 11 : 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 9 of 11 : 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 10 of 11 : 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 11 of 11 : 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"
      ]
    }
  }
}

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":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cou_Token","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mintTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f476f6f6272727a000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f474f4f420000000000000000000000000000000000000000000000000000000081525081600090816200008f919062000445565b508060019081620000a1919062000445565b505050620000c4620000b8620000fd60201b60201c565b6200010560201b60201c565b60006007819055506040518060800160405280605f81526020016200342f605f913960089081620000f6919062000445565b506200052c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024d57607f821691505b60208210810362000263576200026262000205565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200028e565b620002d986836200028e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000326620003206200031a84620002f1565b620002fb565b620002f1565b9050919050565b6000819050919050565b620003428362000305565b6200035a62000351826200032d565b8484546200029b565b825550505050565b600090565b6200037162000362565b6200037e81848462000337565b505050565b5b81811015620003a6576200039a60008262000367565b60018101905062000384565b5050565b601f821115620003f557620003bf8162000269565b620003ca846200027e565b81016020851015620003da578190505b620003f2620003e9856200027e565b83018262000383565b50505b505050565b600082821c905092915050565b60006200041a60001984600802620003fa565b1980831691505092915050565b600062000435838362000407565b9150826002028217905092915050565b6200045082620001cb565b67ffffffffffffffff8111156200046c576200046b620001d6565b5b62000478825462000234565b62000485828285620003aa565b600060209050601f831160018114620004bd5760008415620004a8578287015190505b620004b4858262000427565b86555062000524565b601f198416620004cd8662000269565b60005b82811015620004f757848901518255600182019150602085019450602081019050620004d0565b8683101562000517578489015162000513601f89168262000407565b8355505b6001600288020188555050505b505050505050565b612ef3806200053c6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637b6b96f0116100b8578063b88d4fde1161007c578063b88d4fde14610363578063c87b56dd1461037f578063d547cfb7146103af578063e8a3d485146103cd578063e985e9c5146103eb578063f2fde38b1461041b57610142565b80637b6b96f0146102cf5780638da5cb5b146102ed578063902d55a51461030b57806395d89b4114610329578063a22cb4651461034757610142565b806330176e131161010a57806330176e13146101fd57806342842e0e146102195780636352211e1461023557806370a0823114610265578063715018a614610295578063755edd171461029f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c9190611b4f565b610437565b60405161016e9190611b97565b60405180910390f35b61017f610519565b60405161018c9190611c42565b60405180910390f35b6101af60048036038101906101aa9190611c9a565b6105ab565b6040516101bc9190611d08565b60405180910390f35b6101df60048036038101906101da9190611d4f565b6105f1565b005b6101fb60048036038101906101f69190611d8f565b610708565b005b61021760048036038101906102129190611f17565b610768565b005b610233600480360381019061022e9190611d8f565b610783565b005b61024f600480360381019061024a9190611c9a565b6107a3565b60405161025c9190611d08565b60405180910390f35b61027f600480360381019061027a9190611f60565b610854565b60405161028c9190611f9c565b60405180910390f35b61029d61090b565b005b6102b960048036038101906102b49190611f60565b61091f565b6040516102c69190611f9c565b60405180910390f35b6102d7610995565b6040516102e49190611f9c565b60405180910390f35b6102f561099b565b6040516103029190611d08565b60405180910390f35b6103136109c5565b6040516103209190611f9c565b60405180910390f35b6103316109cb565b60405161033e9190611c42565b60405180910390f35b610361600480360381019061035c9190611fe3565b610a5d565b005b61037d600480360381019061037891906120c4565b610a73565b005b61039960048036038101906103949190611c9a565b610ad5565b6040516103a69190611c42565b60405180910390f35b6103b7610b3d565b6040516103c49190611c42565b60405180910390f35b6103d5610bcb565b6040516103e29190611c42565b60405180910390f35b61040560048036038101906104009190612147565b610beb565b6040516104129190611b97565b60405180910390f35b61043560048036038101906104309190611f60565b610c7f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610512575061051182610d02565b5b9050919050565b606060008054610528906121b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610554906121b6565b80156105a15780601f10610576576101008083540402835291602001916105a1565b820191906000526020600020905b81548152906001019060200180831161058457829003601f168201915b5050505050905090565b60006105b682610d6c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fc826107a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390612259565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068b610db7565b73ffffffffffffffffffffffffffffffffffffffff1614806106ba57506106b9816106b4610db7565b610beb565b5b6106f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f0906122eb565b60405180910390fd5b6107038383610dbf565b505050565b610719610713610db7565b82610e78565b610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f9061237d565b60405180910390fd5b610763838383610f0d565b505050565b610770611173565b806008908161077f9190612549565b5050565b61079e83838360405180602001604052806000815250610a73565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290612667565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906126f9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610913611173565b61091d60006111f1565b565b60006103db60075410610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90612765565b60405180910390fd5b6007600081548092919061097a906127b4565b919050555061098b826007546112b7565b6007549050919050565b60075481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103db81565b6060600180546109da906121b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a06906121b6565b8015610a535780601f10610a2857610100808354040283529160200191610a53565b820191906000526020600020905b815481529060010190602001808311610a3657829003601f168201915b5050505050905090565b610a6f610a68610db7565b83836112d5565b5050565b610a84610a7e610db7565b83610e78565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061237d565b60405180910390fd5b610acf84848484611441565b50505050565b6060610ae082610d6c565b6000610aea61149d565b90506000815111610b0a5760405180602001604052806000815250610b35565b80610b148461152f565b604051602001610b25929190612838565b6040516020818303038152906040525b915050919050565b60088054610b4a906121b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b76906121b6565b8015610bc35780601f10610b9857610100808354040283529160200191610bc3565b820191906000526020600020905b815481529060010190602001808311610ba657829003601f168201915b505050505081565b60606040518060800160405280605e8152602001612e60605e9139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c87611173565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced906128ce565b60405180910390fd5b610cff816111f1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d758161168f565b610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90612667565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e32836107a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e84836107a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ec65750610ec58185610beb565b5b80610f0457508373ffffffffffffffffffffffffffffffffffffffff16610eec846105ab565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f2d826107a3565b73ffffffffffffffffffffffffffffffffffffffff1614610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90612960565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe9906129f2565b60405180910390fd5b610ffd8383836116fb565b611008600082610dbf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110589190612a12565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110af9190612a46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461116e838383611700565b505050565b61117b610db7565b73ffffffffffffffffffffffffffffffffffffffff1661119961099b565b73ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690612ac6565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6112d1828260405180602001604052806000815250611705565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612b32565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114349190611b97565b60405180910390a3505050565b61144c848484610f0d565b61145884848484611760565b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612bc4565b60405180910390fd5b50505050565b6060600880546114ac906121b6565b80601f01602080910402602001604051908101604052809291908181526020018280546114d8906121b6565b80156115255780601f106114fa57610100808354040283529160200191611525565b820191906000526020600020905b81548152906001019060200180831161150857829003601f168201915b5050505050905090565b606060008203611576576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061168a565b600082905060005b600082146115a8578080611591906127b4565b915050600a826115a19190612c13565b915061157e565b60008167ffffffffffffffff8111156115c4576115c3611dec565b5b6040519080825280601f01601f1916602001820160405280156115f65781602001600182028036833780820191505090505b5090505b600085146116835760018261160f9190612a12565b9150600a8561161e9190612c44565b603061162a9190612a46565b60f81b8183815181106116405761163f612c75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561167c9190612c13565b94506115fa565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61170f83836118e7565b61171c6000848484611760565b61175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290612bc4565b60405180910390fd5b505050565b60006117818473ffffffffffffffffffffffffffffffffffffffff16611ac0565b156118da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117aa610db7565b8786866040518563ffffffff1660e01b81526004016117cc9493929190612cf9565b6020604051808303816000875af192505050801561180857506040513d601f19601f820116820180604052508101906118059190612d5a565b60015b61188a573d8060008114611838576040519150601f19603f3d011682016040523d82523d6000602084013e61183d565b606091505b506000815103611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990612bc4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118df565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612dd3565b60405180910390fd5b61195f8161168f565b1561199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612e3f565b60405180910390fd5b6119ab600083836116fb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fb9190612a46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611abc60008383611700565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b2c81611af7565b8114611b3757600080fd5b50565b600081359050611b4981611b23565b92915050565b600060208284031215611b6557611b64611aed565b5b6000611b7384828501611b3a565b91505092915050565b60008115159050919050565b611b9181611b7c565b82525050565b6000602082019050611bac6000830184611b88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bec578082015181840152602081019050611bd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c1482611bb2565b611c1e8185611bbd565b9350611c2e818560208601611bce565b611c3781611bf8565b840191505092915050565b60006020820190508181036000830152611c5c8184611c09565b905092915050565b6000819050919050565b611c7781611c64565b8114611c8257600080fd5b50565b600081359050611c9481611c6e565b92915050565b600060208284031215611cb057611caf611aed565b5b6000611cbe84828501611c85565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cf282611cc7565b9050919050565b611d0281611ce7565b82525050565b6000602082019050611d1d6000830184611cf9565b92915050565b611d2c81611ce7565b8114611d3757600080fd5b50565b600081359050611d4981611d23565b92915050565b60008060408385031215611d6657611d65611aed565b5b6000611d7485828601611d3a565b9250506020611d8585828601611c85565b9150509250929050565b600080600060608486031215611da857611da7611aed565b5b6000611db686828701611d3a565b9350506020611dc786828701611d3a565b9250506040611dd886828701611c85565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e2482611bf8565b810181811067ffffffffffffffff82111715611e4357611e42611dec565b5b80604052505050565b6000611e56611ae3565b9050611e628282611e1b565b919050565b600067ffffffffffffffff821115611e8257611e81611dec565b5b611e8b82611bf8565b9050602081019050919050565b82818337600083830152505050565b6000611eba611eb584611e67565b611e4c565b905082815260208101848484011115611ed657611ed5611de7565b5b611ee1848285611e98565b509392505050565b600082601f830112611efe57611efd611de2565b5b8135611f0e848260208601611ea7565b91505092915050565b600060208284031215611f2d57611f2c611aed565b5b600082013567ffffffffffffffff811115611f4b57611f4a611af2565b5b611f5784828501611ee9565b91505092915050565b600060208284031215611f7657611f75611aed565b5b6000611f8484828501611d3a565b91505092915050565b611f9681611c64565b82525050565b6000602082019050611fb16000830184611f8d565b92915050565b611fc081611b7c565b8114611fcb57600080fd5b50565b600081359050611fdd81611fb7565b92915050565b60008060408385031215611ffa57611ff9611aed565b5b600061200885828601611d3a565b925050602061201985828601611fce565b9150509250929050565b600067ffffffffffffffff82111561203e5761203d611dec565b5b61204782611bf8565b9050602081019050919050565b600061206761206284612023565b611e4c565b90508281526020810184848401111561208357612082611de7565b5b61208e848285611e98565b509392505050565b600082601f8301126120ab576120aa611de2565b5b81356120bb848260208601612054565b91505092915050565b600080600080608085870312156120de576120dd611aed565b5b60006120ec87828801611d3a565b94505060206120fd87828801611d3a565b935050604061210e87828801611c85565b925050606085013567ffffffffffffffff81111561212f5761212e611af2565b5b61213b87828801612096565b91505092959194509250565b6000806040838503121561215e5761215d611aed565b5b600061216c85828601611d3a565b925050602061217d85828601611d3a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121ce57607f821691505b6020821081036121e1576121e0612187565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612243602183611bbd565b915061224e826121e7565b604082019050919050565b6000602082019050818103600083015261227281612236565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006122d5603e83611bbd565b91506122e082612279565b604082019050919050565b60006020820190508181036000830152612304816122c8565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612367602e83611bbd565b91506123728261230b565b604082019050919050565b600060208201905081810360008301526123968161235a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826123c2565b61240986836123c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061244661244161243c84611c64565b612421565b611c64565b9050919050565b6000819050919050565b6124608361242b565b61247461246c8261244d565b8484546123cf565b825550505050565b600090565b61248961247c565b612494818484612457565b505050565b5b818110156124b8576124ad600082612481565b60018101905061249a565b5050565b601f8211156124fd576124ce8161239d565b6124d7846123b2565b810160208510156124e6578190505b6124fa6124f2856123b2565b830182612499565b50505b505050565b600082821c905092915050565b600061252060001984600802612502565b1980831691505092915050565b6000612539838361250f565b9150826002028217905092915050565b61255282611bb2565b67ffffffffffffffff81111561256b5761256a611dec565b5b61257582546121b6565b6125808282856124bc565b600060209050601f8311600181146125b357600084156125a1578287015190505b6125ab858261252d565b865550612613565b601f1984166125c18661239d565b60005b828110156125e9578489015182556001820191506020850194506020810190506125c4565b868310156126065784890151612602601f89168261250f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612651601883611bbd565b915061265c8261261b565b602082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006126e3602983611bbd565b91506126ee82612687565b604082019050919050565b60006020820190508181036000830152612712816126d6565b9050919050565b7f4e6f206d6f726520476f6f6272727a206c65667420736f727279203a28000000600082015250565b600061274f601d83611bbd565b915061275a82612719565b602082019050919050565b6000602082019050818103600083015261277e81612742565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127bf82611c64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127f1576127f0612785565b5b600182019050919050565b600081905092915050565b600061281282611bb2565b61281c81856127fc565b935061282c818560208601611bce565b80840191505092915050565b60006128448285612807565b91506128508284612807565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128b8602683611bbd565b91506128c38261285c565b604082019050919050565b600060208201905081810360008301526128e7816128ab565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061294a602583611bbd565b9150612955826128ee565b604082019050919050565b600060208201905081810360008301526129798161293d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129dc602483611bbd565b91506129e782612980565b604082019050919050565b60006020820190508181036000830152612a0b816129cf565b9050919050565b6000612a1d82611c64565b9150612a2883611c64565b9250828203905081811115612a4057612a3f612785565b5b92915050565b6000612a5182611c64565b9150612a5c83611c64565b9250828201905080821115612a7457612a73612785565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ab0602083611bbd565b9150612abb82612a7a565b602082019050919050565b60006020820190508181036000830152612adf81612aa3565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b1c601983611bbd565b9150612b2782612ae6565b602082019050919050565b60006020820190508181036000830152612b4b81612b0f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612bae603283611bbd565b9150612bb982612b52565b604082019050919050565b60006020820190508181036000830152612bdd81612ba1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1e82611c64565b9150612c2983611c64565b925082612c3957612c38612be4565b5b828204905092915050565b6000612c4f82611c64565b9150612c5a83611c64565b925082612c6a57612c69612be4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612ccb82612ca4565b612cd58185612caf565b9350612ce5818560208601611bce565b612cee81611bf8565b840191505092915050565b6000608082019050612d0e6000830187611cf9565b612d1b6020830186611cf9565b612d286040830185611f8d565b8181036060830152612d3a8184612cc0565b905095945050505050565b600081519050612d5481611b23565b92915050565b600060208284031215612d7057612d6f611aed565b5b6000612d7e84828501612d45565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612dbd602083611bbd565b9150612dc882612d87565b602082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612e29601c83611bbd565b9150612e3482612df3565b602082019050919050565b60006020820190508181036000830152612e5881612e1c565b905091905056fe68747470733a2f2f74616e2d7365637265742d74696765722d31342e6d7970696e6174612e636c6f75642f697066732f516d636f4d534136704e55506b4e7433383268434157745736794e6146354e62347978346f57387a796568534a4ea2646970667358221220b23ff5b7947d779bfaf33f5012504b7d506e577773812a93f381bf7727ce7b1464736f6c6343000811003368747470733a2f2f74616e2d7365637265742d74696765722d31342e6d7970696e6174612e636c6f75642f697066732f516d64596a69457564387a47335347474e4473314e4469356444364d4b786435544e696148615a50693861656a372f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637b6b96f0116100b8578063b88d4fde1161007c578063b88d4fde14610363578063c87b56dd1461037f578063d547cfb7146103af578063e8a3d485146103cd578063e985e9c5146103eb578063f2fde38b1461041b57610142565b80637b6b96f0146102cf5780638da5cb5b146102ed578063902d55a51461030b57806395d89b4114610329578063a22cb4651461034757610142565b806330176e131161010a57806330176e13146101fd57806342842e0e146102195780636352211e1461023557806370a0823114610265578063715018a614610295578063755edd171461029f57610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c9190611b4f565b610437565b60405161016e9190611b97565b60405180910390f35b61017f610519565b60405161018c9190611c42565b60405180910390f35b6101af60048036038101906101aa9190611c9a565b6105ab565b6040516101bc9190611d08565b60405180910390f35b6101df60048036038101906101da9190611d4f565b6105f1565b005b6101fb60048036038101906101f69190611d8f565b610708565b005b61021760048036038101906102129190611f17565b610768565b005b610233600480360381019061022e9190611d8f565b610783565b005b61024f600480360381019061024a9190611c9a565b6107a3565b60405161025c9190611d08565b60405180910390f35b61027f600480360381019061027a9190611f60565b610854565b60405161028c9190611f9c565b60405180910390f35b61029d61090b565b005b6102b960048036038101906102b49190611f60565b61091f565b6040516102c69190611f9c565b60405180910390f35b6102d7610995565b6040516102e49190611f9c565b60405180910390f35b6102f561099b565b6040516103029190611d08565b60405180910390f35b6103136109c5565b6040516103209190611f9c565b60405180910390f35b6103316109cb565b60405161033e9190611c42565b60405180910390f35b610361600480360381019061035c9190611fe3565b610a5d565b005b61037d600480360381019061037891906120c4565b610a73565b005b61039960048036038101906103949190611c9a565b610ad5565b6040516103a69190611c42565b60405180910390f35b6103b7610b3d565b6040516103c49190611c42565b60405180910390f35b6103d5610bcb565b6040516103e29190611c42565b60405180910390f35b61040560048036038101906104009190612147565b610beb565b6040516104129190611b97565b60405180910390f35b61043560048036038101906104309190611f60565b610c7f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610512575061051182610d02565b5b9050919050565b606060008054610528906121b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610554906121b6565b80156105a15780601f10610576576101008083540402835291602001916105a1565b820191906000526020600020905b81548152906001019060200180831161058457829003601f168201915b5050505050905090565b60006105b682610d6c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fc826107a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390612259565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068b610db7565b73ffffffffffffffffffffffffffffffffffffffff1614806106ba57506106b9816106b4610db7565b610beb565b5b6106f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f0906122eb565b60405180910390fd5b6107038383610dbf565b505050565b610719610713610db7565b82610e78565b610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f9061237d565b60405180910390fd5b610763838383610f0d565b505050565b610770611173565b806008908161077f9190612549565b5050565b61079e83838360405180602001604052806000815250610a73565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290612667565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb906126f9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610913611173565b61091d60006111f1565b565b60006103db60075410610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90612765565b60405180910390fd5b6007600081548092919061097a906127b4565b919050555061098b826007546112b7565b6007549050919050565b60075481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103db81565b6060600180546109da906121b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a06906121b6565b8015610a535780601f10610a2857610100808354040283529160200191610a53565b820191906000526020600020905b815481529060010190602001808311610a3657829003601f168201915b5050505050905090565b610a6f610a68610db7565b83836112d5565b5050565b610a84610a7e610db7565b83610e78565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061237d565b60405180910390fd5b610acf84848484611441565b50505050565b6060610ae082610d6c565b6000610aea61149d565b90506000815111610b0a5760405180602001604052806000815250610b35565b80610b148461152f565b604051602001610b25929190612838565b6040516020818303038152906040525b915050919050565b60088054610b4a906121b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b76906121b6565b8015610bc35780601f10610b9857610100808354040283529160200191610bc3565b820191906000526020600020905b815481529060010190602001808311610ba657829003601f168201915b505050505081565b60606040518060800160405280605e8152602001612e60605e9139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c87611173565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced906128ce565b60405180910390fd5b610cff816111f1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d758161168f565b610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90612667565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e32836107a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e84836107a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ec65750610ec58185610beb565b5b80610f0457508373ffffffffffffffffffffffffffffffffffffffff16610eec846105ab565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f2d826107a3565b73ffffffffffffffffffffffffffffffffffffffff1614610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90612960565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe9906129f2565b60405180910390fd5b610ffd8383836116fb565b611008600082610dbf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110589190612a12565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110af9190612a46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461116e838383611700565b505050565b61117b610db7565b73ffffffffffffffffffffffffffffffffffffffff1661119961099b565b73ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690612ac6565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6112d1828260405180602001604052806000815250611705565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612b32565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114349190611b97565b60405180910390a3505050565b61144c848484610f0d565b61145884848484611760565b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612bc4565b60405180910390fd5b50505050565b6060600880546114ac906121b6565b80601f01602080910402602001604051908101604052809291908181526020018280546114d8906121b6565b80156115255780601f106114fa57610100808354040283529160200191611525565b820191906000526020600020905b81548152906001019060200180831161150857829003601f168201915b5050505050905090565b606060008203611576576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061168a565b600082905060005b600082146115a8578080611591906127b4565b915050600a826115a19190612c13565b915061157e565b60008167ffffffffffffffff8111156115c4576115c3611dec565b5b6040519080825280601f01601f1916602001820160405280156115f65781602001600182028036833780820191505090505b5090505b600085146116835760018261160f9190612a12565b9150600a8561161e9190612c44565b603061162a9190612a46565b60f81b8183815181106116405761163f612c75565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561167c9190612c13565b94506115fa565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61170f83836118e7565b61171c6000848484611760565b61175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290612bc4565b60405180910390fd5b505050565b60006117818473ffffffffffffffffffffffffffffffffffffffff16611ac0565b156118da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117aa610db7565b8786866040518563ffffffff1660e01b81526004016117cc9493929190612cf9565b6020604051808303816000875af192505050801561180857506040513d601f19601f820116820180604052508101906118059190612d5a565b60015b61188a573d8060008114611838576040519150601f19603f3d011682016040523d82523d6000602084013e61183d565b606091505b506000815103611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990612bc4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118df565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612dd3565b60405180910390fd5b61195f8161168f565b1561199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612e3f565b60405180910390fd5b6119ab600083836116fb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fb9190612a46565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611abc60008383611700565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b2c81611af7565b8114611b3757600080fd5b50565b600081359050611b4981611b23565b92915050565b600060208284031215611b6557611b64611aed565b5b6000611b7384828501611b3a565b91505092915050565b60008115159050919050565b611b9181611b7c565b82525050565b6000602082019050611bac6000830184611b88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bec578082015181840152602081019050611bd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c1482611bb2565b611c1e8185611bbd565b9350611c2e818560208601611bce565b611c3781611bf8565b840191505092915050565b60006020820190508181036000830152611c5c8184611c09565b905092915050565b6000819050919050565b611c7781611c64565b8114611c8257600080fd5b50565b600081359050611c9481611c6e565b92915050565b600060208284031215611cb057611caf611aed565b5b6000611cbe84828501611c85565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cf282611cc7565b9050919050565b611d0281611ce7565b82525050565b6000602082019050611d1d6000830184611cf9565b92915050565b611d2c81611ce7565b8114611d3757600080fd5b50565b600081359050611d4981611d23565b92915050565b60008060408385031215611d6657611d65611aed565b5b6000611d7485828601611d3a565b9250506020611d8585828601611c85565b9150509250929050565b600080600060608486031215611da857611da7611aed565b5b6000611db686828701611d3a565b9350506020611dc786828701611d3a565b9250506040611dd886828701611c85565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e2482611bf8565b810181811067ffffffffffffffff82111715611e4357611e42611dec565b5b80604052505050565b6000611e56611ae3565b9050611e628282611e1b565b919050565b600067ffffffffffffffff821115611e8257611e81611dec565b5b611e8b82611bf8565b9050602081019050919050565b82818337600083830152505050565b6000611eba611eb584611e67565b611e4c565b905082815260208101848484011115611ed657611ed5611de7565b5b611ee1848285611e98565b509392505050565b600082601f830112611efe57611efd611de2565b5b8135611f0e848260208601611ea7565b91505092915050565b600060208284031215611f2d57611f2c611aed565b5b600082013567ffffffffffffffff811115611f4b57611f4a611af2565b5b611f5784828501611ee9565b91505092915050565b600060208284031215611f7657611f75611aed565b5b6000611f8484828501611d3a565b91505092915050565b611f9681611c64565b82525050565b6000602082019050611fb16000830184611f8d565b92915050565b611fc081611b7c565b8114611fcb57600080fd5b50565b600081359050611fdd81611fb7565b92915050565b60008060408385031215611ffa57611ff9611aed565b5b600061200885828601611d3a565b925050602061201985828601611fce565b9150509250929050565b600067ffffffffffffffff82111561203e5761203d611dec565b5b61204782611bf8565b9050602081019050919050565b600061206761206284612023565b611e4c565b90508281526020810184848401111561208357612082611de7565b5b61208e848285611e98565b509392505050565b600082601f8301126120ab576120aa611de2565b5b81356120bb848260208601612054565b91505092915050565b600080600080608085870312156120de576120dd611aed565b5b60006120ec87828801611d3a565b94505060206120fd87828801611d3a565b935050604061210e87828801611c85565b925050606085013567ffffffffffffffff81111561212f5761212e611af2565b5b61213b87828801612096565b91505092959194509250565b6000806040838503121561215e5761215d611aed565b5b600061216c85828601611d3a565b925050602061217d85828601611d3a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121ce57607f821691505b6020821081036121e1576121e0612187565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612243602183611bbd565b915061224e826121e7565b604082019050919050565b6000602082019050818103600083015261227281612236565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006122d5603e83611bbd565b91506122e082612279565b604082019050919050565b60006020820190508181036000830152612304816122c8565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612367602e83611bbd565b91506123728261230b565b604082019050919050565b600060208201905081810360008301526123968161235a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826123c2565b61240986836123c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061244661244161243c84611c64565b612421565b611c64565b9050919050565b6000819050919050565b6124608361242b565b61247461246c8261244d565b8484546123cf565b825550505050565b600090565b61248961247c565b612494818484612457565b505050565b5b818110156124b8576124ad600082612481565b60018101905061249a565b5050565b601f8211156124fd576124ce8161239d565b6124d7846123b2565b810160208510156124e6578190505b6124fa6124f2856123b2565b830182612499565b50505b505050565b600082821c905092915050565b600061252060001984600802612502565b1980831691505092915050565b6000612539838361250f565b9150826002028217905092915050565b61255282611bb2565b67ffffffffffffffff81111561256b5761256a611dec565b5b61257582546121b6565b6125808282856124bc565b600060209050601f8311600181146125b357600084156125a1578287015190505b6125ab858261252d565b865550612613565b601f1984166125c18661239d565b60005b828110156125e9578489015182556001820191506020850194506020810190506125c4565b868310156126065784890151612602601f89168261250f565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612651601883611bbd565b915061265c8261261b565b602082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006126e3602983611bbd565b91506126ee82612687565b604082019050919050565b60006020820190508181036000830152612712816126d6565b9050919050565b7f4e6f206d6f726520476f6f6272727a206c65667420736f727279203a28000000600082015250565b600061274f601d83611bbd565b915061275a82612719565b602082019050919050565b6000602082019050818103600083015261277e81612742565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127bf82611c64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127f1576127f0612785565b5b600182019050919050565b600081905092915050565b600061281282611bb2565b61281c81856127fc565b935061282c818560208601611bce565b80840191505092915050565b60006128448285612807565b91506128508284612807565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128b8602683611bbd565b91506128c38261285c565b604082019050919050565b600060208201905081810360008301526128e7816128ab565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061294a602583611bbd565b9150612955826128ee565b604082019050919050565b600060208201905081810360008301526129798161293d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129dc602483611bbd565b91506129e782612980565b604082019050919050565b60006020820190508181036000830152612a0b816129cf565b9050919050565b6000612a1d82611c64565b9150612a2883611c64565b9250828203905081811115612a4057612a3f612785565b5b92915050565b6000612a5182611c64565b9150612a5c83611c64565b9250828201905080821115612a7457612a73612785565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ab0602083611bbd565b9150612abb82612a7a565b602082019050919050565b60006020820190508181036000830152612adf81612aa3565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b1c601983611bbd565b9150612b2782612ae6565b602082019050919050565b60006020820190508181036000830152612b4b81612b0f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612bae603283611bbd565b9150612bb982612b52565b604082019050919050565b60006020820190508181036000830152612bdd81612ba1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1e82611c64565b9150612c2983611c64565b925082612c3957612c38612be4565b5b828204905092915050565b6000612c4f82611c64565b9150612c5a83611c64565b925082612c6a57612c69612be4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612ccb82612ca4565b612cd58185612caf565b9350612ce5818560208601611bce565b612cee81611bf8565b840191505092915050565b6000608082019050612d0e6000830187611cf9565b612d1b6020830186611cf9565b612d286040830185611f8d565b8181036060830152612d3a8184612cc0565b905095945050505050565b600081519050612d5481611b23565b92915050565b600060208284031215612d7057612d6f611aed565b5b6000612d7e84828501612d45565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612dbd602083611bbd565b9150612dc882612d87565b602082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612e29601c83611bbd565b9150612e3482612df3565b602082019050919050565b60006020820190508181036000830152612e5881612e1c565b905091905056fe68747470733a2f2f74616e2d7365637265742d74696765722d31342e6d7970696e6174612e636c6f75642f697066732f516d636f4d534136704e55506b4e7433383268434157745736794e6146354e62347978346f57387a796568534a4ea2646970667358221220b23ff5b7947d779bfaf33f5012504b7d506e577773812a93f381bf7727ce7b1464736f6c63430008110033

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.