ETH Price: $3,485.51 (+2.74%)

Token

Autograph (AUTOGRAPH)
 

Overview

Max Total Supply

0 AUTOGRAPH

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 AUTOGRAPH
0x00fcaa31a00ca13e2b2f7b28086e8ebbe5eda5c9
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:
Autograph

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Autograph.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

/**
 * @title Autograph
 * @author neuroswish
 *
 * Luxury rap, the Hermes of verses
 * Sophisticated ignorance, write my curses in cursive
 * I get it custom, you a customer
 * You ain't 'customed to going through Customs, you ain't been nowhere, huh?
 */

contract Autograph is ERC721("Autograph", "AUTOGRAPH") {
    // ======== Autograph params ========
    mapping(address => bool) public hasMinted; // sender has minted an autograph card
    mapping(address => mapping(address => bool)) public hasSignedAddress; // sender has signed recipient's card already
    mapping(address => address[]) public signers; // list of signers
    uint256 public lastMintedId; // token Id

    // ======== Events ========
    event Sign(address indexed recipient, address indexed signer);

    // ======== Functions ========
    function mint() public {
        require(hasMinted[msg.sender] == false, "you already have a card");
        uint256 newTokenId = lastMintedId + 1;
        lastMintedId = newTokenId;
        _mint(msg.sender, newTokenId);
        hasMinted[msg.sender] = true;
    }

    function sign(address _recipient) public {
        require(
            hasSignedAddress[msg.sender][_recipient] == false,
            "already signed"
        );
        require(msg.sender != _recipient, "can't sign your own card");
        signers[_recipient].push(msg.sender);
        emit Sign(_recipient, msg.sender);
        hasSignedAddress[msg.sender][_recipient] = true;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_tokenId <= lastMintedId, "token doesn't exist");
        return "ipfs://QmXGGgXjM9111KkkErCWV1or4j1nY3PDUnKqbVxEG7fRFj";
    }

    // ======== Utility ========
    function getSigners(address _address)
        public
        view
        returns (address[] memory)
    {
        return signers[_address];
    }
}

File 2 of 10 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 10 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 4 of 10 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 5 of 10 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 6 of 10 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 10 : Context.sol
// SPDX-License-Identifier: MIT

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 8 of 10 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 9 of 10 : ERC165.sol
// SPDX-License-Identifier: MIT

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 10 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"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":"recipient","type":"address"},{"indexed":true,"internalType":"address","name":"signer","type":"address"}],"name":"Sign","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getSigners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"hasSignedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMintedId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"address","name":"_recipient","type":"address"}],"name":"sign","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"signers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4175746f677261706800000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4155544f47524150480000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000168565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b600060028204905060018216806200018157607f821691505b602082108114156200019857620001976200019e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612bf480620001dd6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610355578063c87b56dd14610371578063e1326b34146103a1578063e985e9c5146103d1578063f71be837146104015761012c565b806370a082311461028b5780637e3ba6af146102bb578063909318f4146102eb57806395d89b411461031b578063a22cb465146103395761012c565b806323b872dd116100f457806323b872dd146101d557806338e21cce146101f157806342842e0e14610221578063620a23581461023d5780636352211e1461025b5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af5780631249c58b146101cb575b600080fd5b61014b60048036038101906101469190611cfd565b61041d565b6040516101589190612178565b60405180910390f35b6101696104ff565b6040516101769190612193565b60405180910390f35b61019960048036038101906101949190611d4f565b610591565b6040516101a691906120ef565b60405180910390f35b6101c960048036038101906101c49190611cc1565b610616565b005b6101d361072e565b005b6101ef60048036038101906101ea9190611bbb565b610840565b005b61020b60048036038101906102069190611b56565b6108a0565b6040516102189190612178565b60405180910390f35b61023b60048036038101906102369190611bbb565b6108c0565b005b6102456108e0565b60405161025291906123d5565b60405180910390f35b61027560048036038101906102709190611d4f565b6108e6565b60405161028291906120ef565b60405180910390f35b6102a560048036038101906102a09190611b56565b610998565b6040516102b291906123d5565b60405180910390f35b6102d560048036038101906102d09190611b56565b610a50565b6040516102e29190612156565b60405180910390f35b61030560048036038101906103009190611b7f565b610b1d565b6040516103129190612178565b60405180910390f35b610323610b4c565b6040516103309190612193565b60405180910390f35b610353600480360381019061034e9190611c85565b610bde565b005b61036f600480360381019061036a9190611c0a565b610d5f565b005b61038b60048036038101906103869190611d4f565b610dc1565b6040516103989190612193565b60405180910390f35b6103bb60048036038101906103b69190611cc1565b610e28565b6040516103c891906120ef565b60405180910390f35b6103eb60048036038101906103e69190611b7f565b610e76565b6040516103f89190612178565b60405180910390f35b61041b60048036038101906104169190611b56565b610f0a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104f857506104f7826111db565b5b9050919050565b60606000805461050e906125f7565b80601f016020809104026020016040519081016040528092919081815260200182805461053a906125f7565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b600061059c82611245565b6105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d290612335565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610621826108e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068990612375565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b16112b1565b73ffffffffffffffffffffffffffffffffffffffff1614806106e057506106df816106da6112b1565b610e76565b5b61071f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610716906122b5565b60405180910390fd5b61072983836112b9565b505050565b60001515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b8906121b5565b60405180910390fd5b600060016009546107d291906124b7565b9050806009819055506107e53382611372565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61085161084b6112b1565b82611540565b610890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610887906123b5565b60405180910390fd5b61089b83838361161e565b505050565b60066020528060005260406000206000915054906101000a900460ff1681565b6108db83838360405180602001604052806000815250610d5f565b505050565b60095481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906122f5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a00906122d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610b1157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610ac7575b50505050509050919050565b60076020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b606060018054610b5b906125f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906125f7565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b610be66112b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612235565b60405180910390fd5b8060056000610c616112b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d0e6112b1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d539190612178565b60405180910390a35050565b610d70610d6a6112b1565b83611540565b610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906123b5565b60405180910390fd5b610dbb8484848461187a565b50505050565b6060600954821115610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90612275565b60405180910390fd5b604051806060016040528060358152602001612b8a603591399050919050565b60086020528160005260406000208181548110610e4457600080fd5b906000526020600020016000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60001515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612395565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090612295565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe93c26560595508140c84cf626a2c2023837227d1f91bd710aa4ee68495e76c460405160405180910390a36001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661132c836108e6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990612315565b60405180910390fd5b6113eb81611245565b1561142b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611422906121f5565b60405180910390fd5b611437600083836118d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148791906124b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061154b82611245565b61158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612255565b60405180910390fd5b6000611595836108e6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160457508373ffffffffffffffffffffffffffffffffffffffff166115ec84610591565b73ffffffffffffffffffffffffffffffffffffffff16145b8061161557506116148185610e76565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163e826108e6565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612215565b60405180910390fd5b61170f8383836118d6565b61171a6000826112b9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176a919061250d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c191906124b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61188584848461161e565b611891848484846118db565b6118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c7906121d5565b60405180910390fd5b50505050565b505050565b60006118fc8473ffffffffffffffffffffffffffffffffffffffff16611a72565b15611a65578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119256112b1565b8786866040518563ffffffff1660e01b8152600401611947949392919061210a565b602060405180830381600087803b15801561196157600080fd5b505af192505050801561199257506040513d601f19601f8201168201806040525081019061198f9190611d26565b60015b611a15573d80600081146119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b50600081511415611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a04906121d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a6a565b600190505b949350505050565b600080823b905060008111915050919050565b6000611a98611a9384612415565b6123f0565b905082815260208101848484011115611ab057600080fd5b611abb8482856125b5565b509392505050565b600081359050611ad281612b2d565b92915050565b600081359050611ae781612b44565b92915050565b600081359050611afc81612b5b565b92915050565b600081519050611b1181612b5b565b92915050565b600082601f830112611b2857600080fd5b8135611b38848260208601611a85565b91505092915050565b600081359050611b5081612b72565b92915050565b600060208284031215611b6857600080fd5b6000611b7684828501611ac3565b91505092915050565b60008060408385031215611b9257600080fd5b6000611ba085828601611ac3565b9250506020611bb185828601611ac3565b9150509250929050565b600080600060608486031215611bd057600080fd5b6000611bde86828701611ac3565b9350506020611bef86828701611ac3565b9250506040611c0086828701611b41565b9150509250925092565b60008060008060808587031215611c2057600080fd5b6000611c2e87828801611ac3565b9450506020611c3f87828801611ac3565b9350506040611c5087828801611b41565b925050606085013567ffffffffffffffff811115611c6d57600080fd5b611c7987828801611b17565b91505092959194509250565b60008060408385031215611c9857600080fd5b6000611ca685828601611ac3565b9250506020611cb785828601611ad8565b9150509250929050565b60008060408385031215611cd457600080fd5b6000611ce285828601611ac3565b9250506020611cf385828601611b41565b9150509250929050565b600060208284031215611d0f57600080fd5b6000611d1d84828501611aed565b91505092915050565b600060208284031215611d3857600080fd5b6000611d4684828501611b02565b91505092915050565b600060208284031215611d6157600080fd5b6000611d6f84828501611b41565b91505092915050565b6000611d848383611d90565b60208301905092915050565b611d9981612541565b82525050565b611da881612541565b82525050565b6000611db982612456565b611dc38185612484565b9350611dce83612446565b8060005b83811015611dff578151611de68882611d78565b9750611df183612477565b925050600181019050611dd2565b5085935050505092915050565b611e1581612553565b82525050565b6000611e2682612461565b611e308185612495565b9350611e408185602086016125c4565b611e49816126e7565b840191505092915050565b6000611e5f8261246c565b611e6981856124a6565b9350611e798185602086016125c4565b611e82816126e7565b840191505092915050565b6000611e9a6017836124a6565b9150611ea5826126f8565b602082019050919050565b6000611ebd6032836124a6565b9150611ec882612721565b604082019050919050565b6000611ee0601c836124a6565b9150611eeb82612770565b602082019050919050565b6000611f036024836124a6565b9150611f0e82612799565b604082019050919050565b6000611f266019836124a6565b9150611f31826127e8565b602082019050919050565b6000611f49602c836124a6565b9150611f5482612811565b604082019050919050565b6000611f6c6013836124a6565b9150611f7782612860565b602082019050919050565b6000611f8f6018836124a6565b9150611f9a82612889565b602082019050919050565b6000611fb26038836124a6565b9150611fbd826128b2565b604082019050919050565b6000611fd5602a836124a6565b9150611fe082612901565b604082019050919050565b6000611ff86029836124a6565b915061200382612950565b604082019050919050565b600061201b6020836124a6565b91506120268261299f565b602082019050919050565b600061203e602c836124a6565b9150612049826129c8565b604082019050919050565b60006120616029836124a6565b915061206c82612a17565b604082019050919050565b60006120846021836124a6565b915061208f82612a66565b604082019050919050565b60006120a7600e836124a6565b91506120b282612ab5565b602082019050919050565b60006120ca6031836124a6565b91506120d582612ade565b604082019050919050565b6120e9816125ab565b82525050565b60006020820190506121046000830184611d9f565b92915050565b600060808201905061211f6000830187611d9f565b61212c6020830186611d9f565b61213960408301856120e0565b818103606083015261214b8184611e1b565b905095945050505050565b600060208201905081810360008301526121708184611dae565b905092915050565b600060208201905061218d6000830184611e0c565b92915050565b600060208201905081810360008301526121ad8184611e54565b905092915050565b600060208201905081810360008301526121ce81611e8d565b9050919050565b600060208201905081810360008301526121ee81611eb0565b9050919050565b6000602082019050818103600083015261220e81611ed3565b9050919050565b6000602082019050818103600083015261222e81611ef6565b9050919050565b6000602082019050818103600083015261224e81611f19565b9050919050565b6000602082019050818103600083015261226e81611f3c565b9050919050565b6000602082019050818103600083015261228e81611f5f565b9050919050565b600060208201905081810360008301526122ae81611f82565b9050919050565b600060208201905081810360008301526122ce81611fa5565b9050919050565b600060208201905081810360008301526122ee81611fc8565b9050919050565b6000602082019050818103600083015261230e81611feb565b9050919050565b6000602082019050818103600083015261232e8161200e565b9050919050565b6000602082019050818103600083015261234e81612031565b9050919050565b6000602082019050818103600083015261236e81612054565b9050919050565b6000602082019050818103600083015261238e81612077565b9050919050565b600060208201905081810360008301526123ae8161209a565b9050919050565b600060208201905081810360008301526123ce816120bd565b9050919050565b60006020820190506123ea60008301846120e0565b92915050565b60006123fa61240b565b90506124068282612629565b919050565b6000604051905090565b600067ffffffffffffffff8211156124305761242f6126b8565b5b612439826126e7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006124c2826125ab565b91506124cd836125ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125025761250161265a565b5b828201905092915050565b6000612518826125ab565b9150612523836125ab565b9250828210156125365761253561265a565b5b828203905092915050565b600061254c8261258b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125e25780820151818401526020810190506125c7565b838111156125f1576000848401525b50505050565b6000600282049050600182168061260f57607f821691505b6020821081141561262357612622612689565b5b50919050565b612632826126e7565b810181811067ffffffffffffffff82111715612651576126506126b8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f796f7520616c7265616479206861766520612063617264000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f746f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f63616e2774207369676e20796f7572206f776e20636172640000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f616c7265616479207369676e6564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612b3681612541565b8114612b4157600080fd5b50565b612b4d81612553565b8114612b5857600080fd5b50565b612b648161255f565b8114612b6f57600080fd5b50565b612b7b816125ab565b8114612b8657600080fd5b5056fe697066733a2f2f516d58474767586a4d393131314b6b6b4572435756316f72346a316e59335044556e4b716256784547376652466aa2646970667358221220bff0922756987b52bbaf2285b27462c7645ac20f583aac1cbad02334204ffd0264736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610355578063c87b56dd14610371578063e1326b34146103a1578063e985e9c5146103d1578063f71be837146104015761012c565b806370a082311461028b5780637e3ba6af146102bb578063909318f4146102eb57806395d89b411461031b578063a22cb465146103395761012c565b806323b872dd116100f457806323b872dd146101d557806338e21cce146101f157806342842e0e14610221578063620a23581461023d5780636352211e1461025b5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af5780631249c58b146101cb575b600080fd5b61014b60048036038101906101469190611cfd565b61041d565b6040516101589190612178565b60405180910390f35b6101696104ff565b6040516101769190612193565b60405180910390f35b61019960048036038101906101949190611d4f565b610591565b6040516101a691906120ef565b60405180910390f35b6101c960048036038101906101c49190611cc1565b610616565b005b6101d361072e565b005b6101ef60048036038101906101ea9190611bbb565b610840565b005b61020b60048036038101906102069190611b56565b6108a0565b6040516102189190612178565b60405180910390f35b61023b60048036038101906102369190611bbb565b6108c0565b005b6102456108e0565b60405161025291906123d5565b60405180910390f35b61027560048036038101906102709190611d4f565b6108e6565b60405161028291906120ef565b60405180910390f35b6102a560048036038101906102a09190611b56565b610998565b6040516102b291906123d5565b60405180910390f35b6102d560048036038101906102d09190611b56565b610a50565b6040516102e29190612156565b60405180910390f35b61030560048036038101906103009190611b7f565b610b1d565b6040516103129190612178565b60405180910390f35b610323610b4c565b6040516103309190612193565b60405180910390f35b610353600480360381019061034e9190611c85565b610bde565b005b61036f600480360381019061036a9190611c0a565b610d5f565b005b61038b60048036038101906103869190611d4f565b610dc1565b6040516103989190612193565b60405180910390f35b6103bb60048036038101906103b69190611cc1565b610e28565b6040516103c891906120ef565b60405180910390f35b6103eb60048036038101906103e69190611b7f565b610e76565b6040516103f89190612178565b60405180910390f35b61041b60048036038101906104169190611b56565b610f0a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104f857506104f7826111db565b5b9050919050565b60606000805461050e906125f7565b80601f016020809104026020016040519081016040528092919081815260200182805461053a906125f7565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b600061059c82611245565b6105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d290612335565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610621826108e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068990612375565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b16112b1565b73ffffffffffffffffffffffffffffffffffffffff1614806106e057506106df816106da6112b1565b610e76565b5b61071f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610716906122b5565b60405180910390fd5b61072983836112b9565b505050565b60001515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b8906121b5565b60405180910390fd5b600060016009546107d291906124b7565b9050806009819055506107e53382611372565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61085161084b6112b1565b82611540565b610890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610887906123b5565b60405180910390fd5b61089b83838361161e565b505050565b60066020528060005260406000206000915054906101000a900460ff1681565b6108db83838360405180602001604052806000815250610d5f565b505050565b60095481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906122f5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a00906122d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610b1157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610ac7575b50505050509050919050565b60076020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b606060018054610b5b906125f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906125f7565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b610be66112b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90612235565b60405180910390fd5b8060056000610c616112b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d0e6112b1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d539190612178565b60405180910390a35050565b610d70610d6a6112b1565b83611540565b610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906123b5565b60405180910390fd5b610dbb8484848461187a565b50505050565b6060600954821115610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90612275565b60405180910390fd5b604051806060016040528060358152602001612b8a603591399050919050565b60086020528160005260406000208181548110610e4457600080fd5b906000526020600020016000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60001515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612395565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090612295565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe93c26560595508140c84cf626a2c2023837227d1f91bd710aa4ee68495e76c460405160405180910390a36001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661132c836108e6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990612315565b60405180910390fd5b6113eb81611245565b1561142b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611422906121f5565b60405180910390fd5b611437600083836118d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148791906124b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061154b82611245565b61158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612255565b60405180910390fd5b6000611595836108e6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160457508373ffffffffffffffffffffffffffffffffffffffff166115ec84610591565b73ffffffffffffffffffffffffffffffffffffffff16145b8061161557506116148185610e76565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661163e826108e6565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612215565b60405180910390fd5b61170f8383836118d6565b61171a6000826112b9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176a919061250d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c191906124b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61188584848461161e565b611891848484846118db565b6118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c7906121d5565b60405180910390fd5b50505050565b505050565b60006118fc8473ffffffffffffffffffffffffffffffffffffffff16611a72565b15611a65578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119256112b1565b8786866040518563ffffffff1660e01b8152600401611947949392919061210a565b602060405180830381600087803b15801561196157600080fd5b505af192505050801561199257506040513d601f19601f8201168201806040525081019061198f9190611d26565b60015b611a15573d80600081146119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b50600081511415611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a04906121d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611a6a565b600190505b949350505050565b600080823b905060008111915050919050565b6000611a98611a9384612415565b6123f0565b905082815260208101848484011115611ab057600080fd5b611abb8482856125b5565b509392505050565b600081359050611ad281612b2d565b92915050565b600081359050611ae781612b44565b92915050565b600081359050611afc81612b5b565b92915050565b600081519050611b1181612b5b565b92915050565b600082601f830112611b2857600080fd5b8135611b38848260208601611a85565b91505092915050565b600081359050611b5081612b72565b92915050565b600060208284031215611b6857600080fd5b6000611b7684828501611ac3565b91505092915050565b60008060408385031215611b9257600080fd5b6000611ba085828601611ac3565b9250506020611bb185828601611ac3565b9150509250929050565b600080600060608486031215611bd057600080fd5b6000611bde86828701611ac3565b9350506020611bef86828701611ac3565b9250506040611c0086828701611b41565b9150509250925092565b60008060008060808587031215611c2057600080fd5b6000611c2e87828801611ac3565b9450506020611c3f87828801611ac3565b9350506040611c5087828801611b41565b925050606085013567ffffffffffffffff811115611c6d57600080fd5b611c7987828801611b17565b91505092959194509250565b60008060408385031215611c9857600080fd5b6000611ca685828601611ac3565b9250506020611cb785828601611ad8565b9150509250929050565b60008060408385031215611cd457600080fd5b6000611ce285828601611ac3565b9250506020611cf385828601611b41565b9150509250929050565b600060208284031215611d0f57600080fd5b6000611d1d84828501611aed565b91505092915050565b600060208284031215611d3857600080fd5b6000611d4684828501611b02565b91505092915050565b600060208284031215611d6157600080fd5b6000611d6f84828501611b41565b91505092915050565b6000611d848383611d90565b60208301905092915050565b611d9981612541565b82525050565b611da881612541565b82525050565b6000611db982612456565b611dc38185612484565b9350611dce83612446565b8060005b83811015611dff578151611de68882611d78565b9750611df183612477565b925050600181019050611dd2565b5085935050505092915050565b611e1581612553565b82525050565b6000611e2682612461565b611e308185612495565b9350611e408185602086016125c4565b611e49816126e7565b840191505092915050565b6000611e5f8261246c565b611e6981856124a6565b9350611e798185602086016125c4565b611e82816126e7565b840191505092915050565b6000611e9a6017836124a6565b9150611ea5826126f8565b602082019050919050565b6000611ebd6032836124a6565b9150611ec882612721565b604082019050919050565b6000611ee0601c836124a6565b9150611eeb82612770565b602082019050919050565b6000611f036024836124a6565b9150611f0e82612799565b604082019050919050565b6000611f266019836124a6565b9150611f31826127e8565b602082019050919050565b6000611f49602c836124a6565b9150611f5482612811565b604082019050919050565b6000611f6c6013836124a6565b9150611f7782612860565b602082019050919050565b6000611f8f6018836124a6565b9150611f9a82612889565b602082019050919050565b6000611fb26038836124a6565b9150611fbd826128b2565b604082019050919050565b6000611fd5602a836124a6565b9150611fe082612901565b604082019050919050565b6000611ff86029836124a6565b915061200382612950565b604082019050919050565b600061201b6020836124a6565b91506120268261299f565b602082019050919050565b600061203e602c836124a6565b9150612049826129c8565b604082019050919050565b60006120616029836124a6565b915061206c82612a17565b604082019050919050565b60006120846021836124a6565b915061208f82612a66565b604082019050919050565b60006120a7600e836124a6565b91506120b282612ab5565b602082019050919050565b60006120ca6031836124a6565b91506120d582612ade565b604082019050919050565b6120e9816125ab565b82525050565b60006020820190506121046000830184611d9f565b92915050565b600060808201905061211f6000830187611d9f565b61212c6020830186611d9f565b61213960408301856120e0565b818103606083015261214b8184611e1b565b905095945050505050565b600060208201905081810360008301526121708184611dae565b905092915050565b600060208201905061218d6000830184611e0c565b92915050565b600060208201905081810360008301526121ad8184611e54565b905092915050565b600060208201905081810360008301526121ce81611e8d565b9050919050565b600060208201905081810360008301526121ee81611eb0565b9050919050565b6000602082019050818103600083015261220e81611ed3565b9050919050565b6000602082019050818103600083015261222e81611ef6565b9050919050565b6000602082019050818103600083015261224e81611f19565b9050919050565b6000602082019050818103600083015261226e81611f3c565b9050919050565b6000602082019050818103600083015261228e81611f5f565b9050919050565b600060208201905081810360008301526122ae81611f82565b9050919050565b600060208201905081810360008301526122ce81611fa5565b9050919050565b600060208201905081810360008301526122ee81611fc8565b9050919050565b6000602082019050818103600083015261230e81611feb565b9050919050565b6000602082019050818103600083015261232e8161200e565b9050919050565b6000602082019050818103600083015261234e81612031565b9050919050565b6000602082019050818103600083015261236e81612054565b9050919050565b6000602082019050818103600083015261238e81612077565b9050919050565b600060208201905081810360008301526123ae8161209a565b9050919050565b600060208201905081810360008301526123ce816120bd565b9050919050565b60006020820190506123ea60008301846120e0565b92915050565b60006123fa61240b565b90506124068282612629565b919050565b6000604051905090565b600067ffffffffffffffff8211156124305761242f6126b8565b5b612439826126e7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006124c2826125ab565b91506124cd836125ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125025761250161265a565b5b828201905092915050565b6000612518826125ab565b9150612523836125ab565b9250828210156125365761253561265a565b5b828203905092915050565b600061254c8261258b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125e25780820151818401526020810190506125c7565b838111156125f1576000848401525b50505050565b6000600282049050600182168061260f57607f821691505b6020821081141561262357612622612689565b5b50919050565b612632826126e7565b810181811067ffffffffffffffff82111715612651576126506126b8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f796f7520616c7265616479206861766520612063617264000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f746f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f63616e2774207369676e20796f7572206f776e20636172640000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f616c7265616479207369676e6564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b612b3681612541565b8114612b4157600080fd5b50565b612b4d81612553565b8114612b5857600080fd5b50565b612b648161255f565b8114612b6f57600080fd5b50565b612b7b816125ab565b8114612b8657600080fd5b5056fe697066733a2f2f516d58474767586a4d393131314b6b6b4572435756316f72346a316e59335044556e4b716256784547376652466aa2646970667358221220bff0922756987b52bbaf2285b27462c7645ac20f583aac1cbad02334204ffd0264736f6c63430008040033

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.