ETH Price: $3,347.79 (-3.48%)
Gas: 4 Gwei

Token

wagmi (WAGMI)
 

Overview

Max Total Supply

15 WAGMI

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
web3slinger.eth
Balance
1 WAGMI
0x4f4f87e9ad124da45b34863067ddb1edd8ecf48c
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:
WagmiMintExample

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 11 : WagmiMintExample.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.11;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/utils/Base64.sol';

contract WagmiMintExample is ERC721 {
  uint256 public totalSupply;

  constructor() ERC721('wagmi', 'WAGMI') {}

  function mint() external {
    _safeMint(msg.sender, ++totalSupply);
  }

  function tokenURI(uint256 tokenId)
    public
    pure
    override
    returns (string memory)
  {
    string memory json = Base64.encode(
      bytes(
        string(
          abi.encodePacked(
            '{"name": "wagmi #', toString(tokenId), '", "image": "data:image/svg+xml;base64,',
            Base64.encode(
              bytes(
                '<svg width="1024" height="1024" viewBox="0 0 1024 1024" fill="none" xmlns="http://www.w3.org/2000/svg" style="background-color: black;"><path d="M869 401.5C869 410.613 861.612 418 852.5 418C843.388 418 836 410.613 836 401.5C836 392.387 843.388 385 852.5 385C861.612 385 869 392.387 869 401.5Z" fill="white"/><path d="M663.529 531C670.45 531 676.059 525.404 676.059 518.5V468.5C676.059 461.596 681.668 456 688.588 456H713.647C720.567 456 726.176 461.596 726.176 468.5V518.5C726.176 525.404 731.785 531 738.706 531C745.626 531 751.235 525.404 751.235 518.5V468.5C751.235 461.596 756.844 456 763.765 456H788.824C795.744 456 801.353 461.596 801.353 468.5V518.5C801.353 525.404 806.962 531 813.882 531H851.471C858.391 531 864 525.404 864 518.5V443.5C864 436.596 858.391 431 851.471 431C844.55 431 838.941 436.596 838.941 443.5V499.75C838.941 503.202 836.136 506 832.676 506C829.217 506 826.412 503.202 826.412 499.75V443.5C826.412 436.596 820.803 431 813.882 431H663.529C656.609 431 651 436.596 651 443.5V518.5C651 525.404 656.609 531 663.529 531Z" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M122.655 506C115.723 506 110.103 500.404 110.103 493.5V443.5C110.103 436.596 104.484 431 97.5517 431C90.6196 431 85 436.596 85 443.5V518.5C85 525.404 90.6196 531 97.5517 531H248.172C255.105 531 260.724 525.404 260.724 518.5V468.5C260.724 461.596 266.343 456 273.276 456H417.621C421.086 456 423.897 458.798 423.897 462.25C423.897 465.702 421.086 468.5 417.621 468.5H285.828C278.895 468.5 273.276 474.096 273.276 481V518.5C273.276 525.404 278.895 531 285.828 531H436.448C443.381 531 449 525.404 449 518.5V443.5C449 436.596 443.381 431 436.448 431H248.172C241.24 431 235.621 436.596 235.621 443.5V493.5C235.621 500.404 230.002 506 223.069 506H197.966C191.033 506 185.414 500.404 185.414 493.5V443.5C185.414 436.596 179.794 431 172.862 431C165.93 431 160.31 436.596 160.31 443.5V493.5C160.31 500.404 154.691 506 147.759 506H122.655ZM423.897 499.75C423.897 503.202 421.086 506 417.621 506H304.655C301.19 506 298.379 503.202 298.379 499.75C298.379 496.298 301.19 493.5 304.655 493.5H417.621C421.086 493.5 423.897 496.298 423.897 499.75Z" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M462 518.818C462 525.747 467.628 531.364 474.571 531.364H606.571C610.043 531.364 612.857 534.172 612.857 537.636C612.857 541.1 610.043 543.909 606.571 543.909H474.571C467.628 543.909 462 549.525 462 556.455C462 563.384 467.628 569 474.571 569H625.429C632.372 569 638 563.384 638 556.455V443.545C638 436.617 632.372 431 625.429 431H474.571C467.628 431 462 436.617 462 443.545V518.818ZM499.714 456.091C492.771 456.091 487.143 461.708 487.143 468.636V493.727C487.143 500.656 492.771 506.273 499.714 506.273H600.286C607.229 506.273 612.857 500.656 612.857 493.727V468.636C612.857 461.708 607.229 456.091 600.286 456.091H499.714Z" fill="white"/></svg>'
              )
            ),
            '"}'
          )
        )
      )
    );
    string memory output = string(
      abi.encodePacked('data:application/json;base64,', json)
    );
    return output;
  }

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

File 3 of 11 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 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 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 5 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 6 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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 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 9 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 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 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": true,
    "runs": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040523480156200001157600080fd5b50604051806040016040528060058152602001647761676d6960d81b815250604051806040016040528060058152602001645741474d4960d81b81525081600090805190602001906200006692919062000085565b5080516200007c90600190602084019062000085565b50505062000168565b82805462000093906200012b565b90600052602060002090601f016020900481019282620000b7576000855562000102565b82601f10620000d257805160ff191683800117855562000102565b8280016001018555821562000102579182015b8281111562000102578251825591602001919060010190620000e5565b506200011092915062000114565b5090565b5b8082111562000110576000815560010162000115565b600181811c908216806200014057607f821691505b602082108114156200016257634e487b7160e01b600052602260045260246000fd5b50919050565b6127b780620001786000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342842e0e11610097578063a22cb46511610066578063a22cb465146101f7578063b88d4fde1461020a578063c87b56dd1461021d578063e985e9c51461023057600080fd5b806342842e0e146101b65780636352211e146101c957806370a08231146101dc57806395d89b41146101ef57600080fd5b8063095ea7b3116100d3578063095ea7b31461016f5780631249c58b1461018457806318160ddd1461018c57806323b872dd146101a357600080fd5b806301ffc9a7146100fa57806306fdde0314610122578063081812fc14610137575b600080fd5b61010d6101083660046115ef565b610279565b60405190151581526020015b60405180910390f35b61012a61035e565b6040516101199190611689565b61014a61014536600461169c565b6103f0565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610119565b61018261017d3660046116de565b6104b5565b005b61018261060e565b61019560065481565b604051908152602001610119565b6101826101b1366004611708565b61062d565b6101826101c4366004611708565b6106b4565b61014a6101d736600461169c565b6106cf565b6101956101ea366004611744565b610767565b61012a61081b565b61018261020536600461175f565b61082a565b6101826102183660046117ca565b610839565b61012a61022b36600461169c565b6108c7565b61010d61023e3660046118c4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061030c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061035857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461036d906118f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610399906118f7565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661048c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006104c0826106cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610483565b3373ffffffffffffffffffffffffffffffffffffffff8216148061058d575061058d813361023e565b6105ff5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610483565b610609838361096b565b505050565b61062b336006600081546106219061197a565b9182905550610a0b565b565b6106373382610a25565b6106a95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610483565b610609838383610b7b565b61060983838360405180602001604052806000815250610839565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806103585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610483565b600073ffffffffffffffffffffffffffffffffffffffff82166107f25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610483565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60606001805461036d906118f7565b610835338383610dae565b5050565b6108433383610a25565b6108b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610483565b6108c184848484610ec2565b50505050565b606060006109206108d784610f4b565b6108fb60405180610b400160405280610b208152602001611c22610b20913961107d565b60405160200161090c9291906119b3565b60405160208183030381529060405261107d565b90506000816040516020016109359190611a84565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052949350505050565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906109c5826106cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6108358282604051806020016040528060008152506111d1565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610abc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610483565b6000610ac7836106cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610b35575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80610b7357508373ffffffffffffffffffffffffffffffffffffffff16610b5b846103f0565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16610b9b826106cf565b73ffffffffffffffffffffffffffffffffffffffff1614610c245760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff8216610cac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610483565b610cb760008261096b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290610ced908490611ac9565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290610d28908490611ae0565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610483565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ecd848484610b7b565b610ed98484848461125a565b6108c15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610483565b606081610f8b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610fb55780610f9f8161197a565b9150610fae9050600a83611b27565b9150610f8f565b60008167ffffffffffffffff811115610fd057610fd061179b565b6040519080825280601f01601f191660200182016040528015610ffa576020820181803683370190505b5090505b8415610b735761100f600183611ac9565b915061101c600a86611b3b565b611027906030611ae0565b60f81b81838151811061103c5761103c611b4f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611076600a86611b27565b9450610ffe565b606081516000141561109d57505060408051602081019091526000815290565b600060405180606001604052806040815260200161274260409139905060006003845160026110cc9190611ae0565b6110d69190611b27565b6110e1906004611b7e565b67ffffffffffffffff8111156110f9576110f961179b565b6040519080825280601f01601f191660200182016040528015611123576020820181803683370190505b509050600182016020820185865187015b8082101561118f576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611134565b50506003865106600181146111ab57600281146111be576111c6565b603d6001830353603d60028303536111c6565b603d60018303535b509195945050505050565b6111db8383611430565b6111e8600084848461125a565b6106095760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610483565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611425576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906112d1903390899088908890600401611bbb565b6020604051808303816000875af192505050801561132a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261132791810190611c04565b60015b6113da573d808015611358576040519150601f19603f3d011682016040523d82523d6000602084013e61135d565b606091505b5080516113d25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610483565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610b73565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166114935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610483565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156115055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610483565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061153b908490611ae0565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146115ec57600080fd5b50565b60006020828403121561160157600080fd5b813561160c816115be565b9392505050565b60005b8381101561162e578181015183820152602001611616565b838111156108c15750506000910152565b60008151808452611657816020860160208601611613565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061160c602083018461163f565b6000602082840312156116ae57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff811681146116d957600080fd5b919050565b600080604083850312156116f157600080fd5b6116fa836116b5565b946020939093013593505050565b60008060006060848603121561171d57600080fd5b611726846116b5565b9250611734602085016116b5565b9150604084013590509250925092565b60006020828403121561175657600080fd5b61160c826116b5565b6000806040838503121561177257600080fd5b61177b836116b5565b91506020830135801515811461179057600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080608085870312156117e057600080fd5b6117e9856116b5565b93506117f7602086016116b5565b925060408501359150606085013567ffffffffffffffff8082111561181b57600080fd5b818701915087601f83011261182f57600080fd5b8135818111156118415761184161179b565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156118875761188761179b565b816040528281528a60208487010111156118a057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118d757600080fd5b6118e0836116b5565b91506118ee602084016116b5565b90509250929050565b600181811c9082168061190b57607f821691505b60208210811415611945577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119ac576119ac61194b565b5060010190565b7f7b226e616d65223a20227761676d6920230000000000000000000000000000008152600083516119eb816011850160208801611613565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b6011918401918201527f6261736536342c0000000000000000000000000000000000000000000000000060318201528351611a4e816038840160208801611613565b7f227d00000000000000000000000000000000000000000000000000000000000060389290910191820152603a01949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611abc81601d850160208701611613565b91909101601d0192915050565b600082821015611adb57611adb61194b565b500390565b60008219821115611af357611af361194b565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082611b3657611b36611af8565b500490565b600082611b4a57611b4a611af8565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bb657611bb661194b565b500290565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152611bfa608083018461163f565b9695505050505050565b600060208284031215611c1657600080fd5b815161160c816115be56fe3c7376672077696474683d223130323422206865696768743d2231303234222076696577426f783d2230203020313032342031303234222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a20626c61636b3b223e3c7061746820643d224d383639203430312e3543383639203431302e363133203836312e36313220343138203835322e3520343138433834332e3338382034313820383336203431302e36313320383336203430312e3543383336203339322e333837203834332e33383820333835203835322e3520333835433836312e3631322033383520383639203339322e33383720383639203430312e355a222066696c6c3d227768697465222f3e3c7061746820643d224d3636332e35323920353331433637302e343520353331203637362e303539203532352e343034203637362e303539203531382e35563436382e35433637362e303539203436312e353936203638312e36363820343536203638382e35383820343536483731332e363437433732302e35363720343536203732362e313736203436312e353936203732362e313736203436382e35563531382e35433732362e313736203532352e343034203733312e37383520353331203733382e37303620353331433734352e36323620353331203735312e323335203532352e343034203735312e323335203531382e35563436382e35433735312e323335203436312e353936203735362e38343420343536203736332e37363520343536483738382e383234433739352e37343420343536203830312e333533203436312e353936203830312e333533203436382e35563531382e35433830312e333533203532352e343034203830362e39363220353331203831332e38383220353331483835312e343731433835382e3339312035333120383634203532352e34303420383634203531382e35563434332e3543383634203433362e353936203835382e33393120343331203835312e34373120343331433834342e353520343331203833382e393431203433362e353936203833382e393431203434332e35563439392e3735433833382e393431203530332e323032203833362e31333620353036203833322e36373620353036433832392e32313720353036203832362e343132203530332e323032203832362e343132203439392e3735563434332e35433832362e343132203433362e353936203832302e38303320343331203831332e38383220343331483636332e353239433635362e3630392034333120363531203433362e35393620363531203434332e35563531382e3543363531203532352e343034203635362e36303920353331203636332e353239203533315a222066696c6c3d227768697465222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d3132322e36353520353036433131352e37323320353036203131302e313033203530302e343034203131302e313033203439332e35563434332e35433131302e313033203433362e353936203130342e343834203433312039372e35353137203433314339302e3631393620343331203835203433362e353936203835203434332e35563531382e35433835203532352e3430342039302e36313936203533312039372e3535313720353331483234382e313732433235352e31303520353331203236302e373234203532352e343034203236302e373234203531382e35563436382e35433236302e373234203436312e353936203236362e33343320343536203237332e32373620343536483431372e363231433432312e30383620343536203432332e383937203435382e373938203432332e383937203436322e3235433432332e383937203436352e373032203432312e303836203436382e35203431372e363231203436382e35483238352e383238433237382e383935203436382e35203237332e323736203437342e303936203237332e32373620343831563531382e35433237332e323736203532352e343034203237382e38393520353331203238352e38323820353331483433362e343438433434332e3338312035333120343439203532352e34303420343439203531382e35563434332e3543343439203433362e353936203434332e33383120343331203433362e34343820343331483234382e313732433234312e323420343331203233352e363231203433362e353936203233352e363231203434332e35563439332e35433233352e363231203530302e343034203233302e30303220353036203232332e30363920353036483139372e393636433139312e30333320353036203138352e343134203530302e343034203138352e343134203439332e35563434332e35433138352e343134203433362e353936203137392e37393420343331203137322e38363220343331433136352e393320343331203136302e3331203433362e353936203136302e3331203434332e35563439332e35433136302e3331203530302e343034203135342e36393120353036203134372e37353920353036483132322e3635355a4d3432332e383937203439392e3735433432332e383937203530332e323032203432312e30383620353036203431372e36323120353036483330342e363535433330312e313920353036203239382e333739203530332e323032203239382e333739203439392e3735433239382e333739203439362e323938203330312e3139203439332e35203330342e363535203439332e35483431372e363231433432312e303836203439332e35203432332e383937203439362e323938203432332e383937203439392e37355a222066696c6c3d227768697465222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d343632203531382e38313843343632203532352e373437203436372e363238203533312e333634203437342e353731203533312e333634483630362e353731433631302e303433203533312e333634203631322e383537203533342e313732203631322e383537203533372e363336433631322e383537203534312e31203631302e303433203534332e393039203630362e353731203534332e393039483437342e353731433436372e363238203534332e39303920343632203534392e35323520343632203535362e34353543343632203536332e333834203436372e36323820353639203437342e35373120353639483632352e343239433633322e3337322035363920363338203536332e33383420363338203535362e343535563434332e35343543363338203433362e363137203633322e33373220343331203632352e34323920343331483437342e353731433436372e3632382034333120343632203433362e36313720343632203434332e353435563531382e3831385a4d3439392e373134203435362e303931433439322e373731203435362e303931203438372e313433203436312e373038203438372e313433203436382e363336563439332e373237433438372e313433203530302e363536203439322e373731203530362e323733203439392e373134203530362e323733483630302e323836433630372e323239203530362e323733203631322e383537203530302e363536203631322e383537203439332e373237563436382e363336433631322e383537203436312e373038203630372e323239203435362e303931203630302e323836203435362e303931483439392e3731345a222066696c6c3d227768697465222f3e3c2f7376673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f997dca8fe7be9571a8a7344af66bf92b07925df7c8450618005f5bb1173bc1164736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806342842e0e11610097578063a22cb46511610066578063a22cb465146101f7578063b88d4fde1461020a578063c87b56dd1461021d578063e985e9c51461023057600080fd5b806342842e0e146101b65780636352211e146101c957806370a08231146101dc57806395d89b41146101ef57600080fd5b8063095ea7b3116100d3578063095ea7b31461016f5780631249c58b1461018457806318160ddd1461018c57806323b872dd146101a357600080fd5b806301ffc9a7146100fa57806306fdde0314610122578063081812fc14610137575b600080fd5b61010d6101083660046115ef565b610279565b60405190151581526020015b60405180910390f35b61012a61035e565b6040516101199190611689565b61014a61014536600461169c565b6103f0565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610119565b61018261017d3660046116de565b6104b5565b005b61018261060e565b61019560065481565b604051908152602001610119565b6101826101b1366004611708565b61062d565b6101826101c4366004611708565b6106b4565b61014a6101d736600461169c565b6106cf565b6101956101ea366004611744565b610767565b61012a61081b565b61018261020536600461175f565b61082a565b6101826102183660046117ca565b610839565b61012a61022b36600461169c565b6108c7565b61010d61023e3660046118c4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061030c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061035857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461036d906118f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610399906118f7565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661048c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006104c0826106cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105645760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610483565b3373ffffffffffffffffffffffffffffffffffffffff8216148061058d575061058d813361023e565b6105ff5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610483565b610609838361096b565b505050565b61062b336006600081546106219061197a565b9182905550610a0b565b565b6106373382610a25565b6106a95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610483565b610609838383610b7b565b61060983838360405180602001604052806000815250610839565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806103585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610483565b600073ffffffffffffffffffffffffffffffffffffffff82166107f25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610483565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60606001805461036d906118f7565b610835338383610dae565b5050565b6108433383610a25565b6108b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610483565b6108c184848484610ec2565b50505050565b606060006109206108d784610f4b565b6108fb60405180610b400160405280610b208152602001611c22610b20913961107d565b60405160200161090c9291906119b3565b60405160208183030381529060405261107d565b90506000816040516020016109359190611a84565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052949350505050565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906109c5826106cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6108358282604051806020016040528060008152506111d1565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610abc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610483565b6000610ac7836106cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610b35575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80610b7357508373ffffffffffffffffffffffffffffffffffffffff16610b5b846103f0565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16610b9b826106cf565b73ffffffffffffffffffffffffffffffffffffffff1614610c245760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610483565b73ffffffffffffffffffffffffffffffffffffffff8216610cac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610483565b610cb760008261096b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290610ced908490611ac9565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290610d28908490611ae0565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610483565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ecd848484610b7b565b610ed98484848461125a565b6108c15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610483565b606081610f8b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610fb55780610f9f8161197a565b9150610fae9050600a83611b27565b9150610f8f565b60008167ffffffffffffffff811115610fd057610fd061179b565b6040519080825280601f01601f191660200182016040528015610ffa576020820181803683370190505b5090505b8415610b735761100f600183611ac9565b915061101c600a86611b3b565b611027906030611ae0565b60f81b81838151811061103c5761103c611b4f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611076600a86611b27565b9450610ffe565b606081516000141561109d57505060408051602081019091526000815290565b600060405180606001604052806040815260200161274260409139905060006003845160026110cc9190611ae0565b6110d69190611b27565b6110e1906004611b7e565b67ffffffffffffffff8111156110f9576110f961179b565b6040519080825280601f01601f191660200182016040528015611123576020820181803683370190505b509050600182016020820185865187015b8082101561118f576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611134565b50506003865106600181146111ab57600281146111be576111c6565b603d6001830353603d60028303536111c6565b603d60018303535b509195945050505050565b6111db8383611430565b6111e8600084848461125a565b6106095760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610483565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611425576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906112d1903390899088908890600401611bbb565b6020604051808303816000875af192505050801561132a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261132791810190611c04565b60015b6113da573d808015611358576040519150601f19603f3d011682016040523d82523d6000602084013e61135d565b606091505b5080516113d25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610483565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610b73565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166114935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610483565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156115055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610483565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061153b908490611ae0565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146115ec57600080fd5b50565b60006020828403121561160157600080fd5b813561160c816115be565b9392505050565b60005b8381101561162e578181015183820152602001611616565b838111156108c15750506000910152565b60008151808452611657816020860160208601611613565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061160c602083018461163f565b6000602082840312156116ae57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff811681146116d957600080fd5b919050565b600080604083850312156116f157600080fd5b6116fa836116b5565b946020939093013593505050565b60008060006060848603121561171d57600080fd5b611726846116b5565b9250611734602085016116b5565b9150604084013590509250925092565b60006020828403121561175657600080fd5b61160c826116b5565b6000806040838503121561177257600080fd5b61177b836116b5565b91506020830135801515811461179057600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080608085870312156117e057600080fd5b6117e9856116b5565b93506117f7602086016116b5565b925060408501359150606085013567ffffffffffffffff8082111561181b57600080fd5b818701915087601f83011261182f57600080fd5b8135818111156118415761184161179b565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156118875761188761179b565b816040528281528a60208487010111156118a057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156118d757600080fd5b6118e0836116b5565b91506118ee602084016116b5565b90509250929050565b600181811c9082168061190b57607f821691505b60208210811415611945577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119ac576119ac61194b565b5060010190565b7f7b226e616d65223a20227761676d6920230000000000000000000000000000008152600083516119eb816011850160208801611613565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b6011918401918201527f6261736536342c0000000000000000000000000000000000000000000000000060318201528351611a4e816038840160208801611613565b7f227d00000000000000000000000000000000000000000000000000000000000060389290910191820152603a01949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611abc81601d850160208701611613565b91909101601d0192915050565b600082821015611adb57611adb61194b565b500390565b60008219821115611af357611af361194b565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082611b3657611b36611af8565b500490565b600082611b4a57611b4a611af8565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bb657611bb661194b565b500290565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152611bfa608083018461163f565b9695505050505050565b600060208284031215611c1657600080fd5b815161160c816115be56fe3c7376672077696474683d223130323422206865696768743d2231303234222076696577426f783d2230203020313032342031303234222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723a20626c61636b3b223e3c7061746820643d224d383639203430312e3543383639203431302e363133203836312e36313220343138203835322e3520343138433834332e3338382034313820383336203431302e36313320383336203430312e3543383336203339322e333837203834332e33383820333835203835322e3520333835433836312e3631322033383520383639203339322e33383720383639203430312e355a222066696c6c3d227768697465222f3e3c7061746820643d224d3636332e35323920353331433637302e343520353331203637362e303539203532352e343034203637362e303539203531382e35563436382e35433637362e303539203436312e353936203638312e36363820343536203638382e35383820343536483731332e363437433732302e35363720343536203732362e313736203436312e353936203732362e313736203436382e35563531382e35433732362e313736203532352e343034203733312e37383520353331203733382e37303620353331433734352e36323620353331203735312e323335203532352e343034203735312e323335203531382e35563436382e35433735312e323335203436312e353936203735362e38343420343536203736332e37363520343536483738382e383234433739352e37343420343536203830312e333533203436312e353936203830312e333533203436382e35563531382e35433830312e333533203532352e343034203830362e39363220353331203831332e38383220353331483835312e343731433835382e3339312035333120383634203532352e34303420383634203531382e35563434332e3543383634203433362e353936203835382e33393120343331203835312e34373120343331433834342e353520343331203833382e393431203433362e353936203833382e393431203434332e35563439392e3735433833382e393431203530332e323032203833362e31333620353036203833322e36373620353036433832392e32313720353036203832362e343132203530332e323032203832362e343132203439392e3735563434332e35433832362e343132203433362e353936203832302e38303320343331203831332e38383220343331483636332e353239433635362e3630392034333120363531203433362e35393620363531203434332e35563531382e3543363531203532352e343034203635362e36303920353331203636332e353239203533315a222066696c6c3d227768697465222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d3132322e36353520353036433131352e37323320353036203131302e313033203530302e343034203131302e313033203439332e35563434332e35433131302e313033203433362e353936203130342e343834203433312039372e35353137203433314339302e3631393620343331203835203433362e353936203835203434332e35563531382e35433835203532352e3430342039302e36313936203533312039372e3535313720353331483234382e313732433235352e31303520353331203236302e373234203532352e343034203236302e373234203531382e35563436382e35433236302e373234203436312e353936203236362e33343320343536203237332e32373620343536483431372e363231433432312e30383620343536203432332e383937203435382e373938203432332e383937203436322e3235433432332e383937203436352e373032203432312e303836203436382e35203431372e363231203436382e35483238352e383238433237382e383935203436382e35203237332e323736203437342e303936203237332e32373620343831563531382e35433237332e323736203532352e343034203237382e38393520353331203238352e38323820353331483433362e343438433434332e3338312035333120343439203532352e34303420343439203531382e35563434332e3543343439203433362e353936203434332e33383120343331203433362e34343820343331483234382e313732433234312e323420343331203233352e363231203433362e353936203233352e363231203434332e35563439332e35433233352e363231203530302e343034203233302e30303220353036203232332e30363920353036483139372e393636433139312e30333320353036203138352e343134203530302e343034203138352e343134203439332e35563434332e35433138352e343134203433362e353936203137392e37393420343331203137322e38363220343331433136352e393320343331203136302e3331203433362e353936203136302e3331203434332e35563439332e35433136302e3331203530302e343034203135342e36393120353036203134372e37353920353036483132322e3635355a4d3432332e383937203439392e3735433432332e383937203530332e323032203432312e30383620353036203431372e36323120353036483330342e363535433330312e313920353036203239382e333739203530332e323032203239382e333739203439392e3735433239382e333739203439362e323938203330312e3139203439332e35203330342e363535203439332e35483431372e363231433432312e303836203439332e35203432332e383937203439362e323938203432332e383937203439392e37355a222066696c6c3d227768697465222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d343632203531382e38313843343632203532352e373437203436372e363238203533312e333634203437342e353731203533312e333634483630362e353731433631302e303433203533312e333634203631322e383537203533342e313732203631322e383537203533372e363336433631322e383537203534312e31203631302e303433203534332e393039203630362e353731203534332e393039483437342e353731433436372e363238203534332e39303920343632203534392e35323520343632203535362e34353543343632203536332e333834203436372e36323820353639203437342e35373120353639483632352e343239433633322e3337322035363920363338203536332e33383420363338203535362e343535563434332e35343543363338203433362e363137203633322e33373220343331203632352e34323920343331483437342e353731433436372e3632382034333120343632203433362e36313720343632203434332e353435563531382e3831385a4d3439392e373134203435362e303931433439322e373731203435362e303931203438372e313433203436312e373038203438372e313433203436382e363336563439332e373237433438372e313433203530302e363536203439322e373731203530362e323733203439392e373134203530362e323733483630302e323836433630372e323239203530362e323733203631322e383537203530302e363536203631322e383537203439332e373237563436382e363336433631322e383537203436312e373038203630372e323239203435362e303931203630302e323836203435362e303931483439392e3731345a222066696c6c3d227768697465222f3e3c2f7376673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f997dca8fe7be9571a8a7344af66bf92b07925df7c8450618005f5bb1173bc1164736f6c634300080b0033

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.