ETH Price: $2,521.68 (+1.77%)

Token

Unique Nums (NUMS)
 

Overview

Max Total Supply

100 NUMS

Holders

94

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NUMS
0xd6ecdcd144510859ba7b1e0d10ab3bb0e8a3da8f
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:
NUMS

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : NUMS.sol
// SPDX-License-Identifier: MIT
// twitter: 0x088
// web: uniquenums.com

pragma solidity ^0.8.13;

import "base64-sol/base64.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract NUMS is ERC721, Ownable, IERC2981 {
    uint8[] private nums;
    uint8 private _totalSupply = 0;
    uint256 private constant BASIS_POINT_DENOMINATOR = 100 * 100;
    uint256 public royalty = 100;

    constructor() ERC721("Unique Nums", "NUMS") Ownable() {
        for (uint8 i = 0; i < 100; i++) {
            if (i == 0 || i == 1 || i == 23 || i == 56 || i == 88) {
                _safeMint(_msgSender(), i);
                _totalSupply = _totalSupply + 1;
            } else {
                nums.push(i);
            }
        }
    }

    function totalSupply() public view returns (uint8) {
        return _totalSupply;
    }

    function availableNums() public view returns (uint8[] memory) {
        return nums;
    }

    function mint() public returns (uint8) {
        require(nums.length != 0, "All tokens were minted");
        require(balanceOf(_msgSender()) == 0, "One token per address");
        uint256 index = uint256(keccak256(abi.encodePacked(block.timestamp))) %
            nums.length;
        uint8 num = nums[index];
        _safeMint(_msgSender(), num);
        _totalSupply = _totalSupply + 1;
        nums[index] = nums[nums.length - 1];
        nums.pop();
        return num;
    }

    function setRoyalties(uint256 _royalty) external onlyOwner {
        require(_royalty <= BASIS_POINT_DENOMINATOR, ">100%");
        royalty = _royalty;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(0 <= _tokenId && _tokenId < 100, "Token ID invalid");
        return (owner(), (_salePrice * royalty) / 100);
    }

    function render(uint256 _tokenId) internal pure returns (string memory) {
        return
            string.concat(
                '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 220 170">',
                '<style>.num { font-family: "Times New Roman"; font-size: 200px; }</style>',
                '<rect xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" fill="white" />',
                _tokenId < 10
                    ? '<text x="60" y="150" class="num">'
                    : '<text x="10" y="150" class="num">',
                Strings.toString(_tokenId),
                "</text></svg>"
            );
    }

    function tokenURI(uint256 _tokenId)
        public
        pure
        override
        returns (string memory)
    {
        require(0 <= _tokenId && _tokenId < 100, "Token ID invalid");

        string memory svg = string(abi.encodePacked(render(_tokenId)));
        string memory json = Base64.encode(
            abi.encodePacked(
                '{"name": "Num #',
                Strings.toString(_tokenId),
                '", "description": "Unique 100 (0...99) numbers stored on chain", "image": "data:image/svg+xml;base64,',
                Base64.encode(bytes(svg)),
                '"}'
            )
        );

        return string(abi.encodePacked("data:application/json;base64,", json));
    }
}

File 2 of 13 : 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 3 of 13 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 4 of 13 : 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 5 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 13 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

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

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

File 7 of 13 : 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 8 of 13 : 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 13 : 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 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableNums","outputs":[{"internalType":"uint8[]","name":"","type":"uint8[]"}],"stateMutability":"view","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":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"uint256","name":"_royalty","type":"uint256"}],"name":"setRoyalties","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":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff021916908360ff16021790555060646009553480156200003257600080fd5b506040518060400160405280600b81526020017f556e69717565204e756d730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e554d53000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b7929190620007ae565b508060019080519060200190620000d0929190620007ae565b505050620000f3620000e76200021160201b60201c565b6200021960201b60201c565b60005b60648160ff1610156200020a5760008160ff16148062000119575060018160ff16145b8062000128575060178160ff16145b8062000137575060388160ff16145b8062000146575060588160ff16145b15620001ae5762000170620001606200021160201b60201c565b8260ff16620002df60201b60201c565b6001600860009054906101000a900460ff166200018e91906200089a565b600860006101000a81548160ff021916908360ff160217905550620001f4565b60078190806001815401808255809150506001900390600052602060002090602091828204019190069091909190916101000a81548160ff021916908360ff1602179055505b80806200020190620008d8565b915050620000f6565b5062000d40565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003018282604051806020016040528060008152506200030560201b60201c565b5050565b6200031783836200037360201b60201c565b6200032c60008484846200056c60201b60201c565b6200036e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000365906200098d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003dc90620009ff565b60405180910390fd5b620003f6816200071560201b60201c565b1562000439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004309062000a71565b60405180910390fd5b6200044d600083836200078160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200049f919062000a9d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000568600083836200078660201b60201c565b5050565b60006200059a8473ffffffffffffffffffffffffffffffffffffffff166200078b60201b620011641760201c565b1562000708578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005cc6200021160201b60201c565b8786866040518563ffffffff1660e01b8152600401620005f0949392919062000bf4565b6020604051808303816000875af19250505080156200062f57506040513d601f19601f820116820180604052508101906200062c919062000caa565b60015b620006b7573d806000811462000662576040519150601f19603f3d011682016040523d82523d6000602084013e62000667565b606091505b506000815103620006af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a6906200098d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200070d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620007bc9062000d0b565b90600052602060002090601f016020900481019282620007e057600085556200082c565b82601f10620007fb57805160ff19168380011785556200082c565b828001600101855582156200082c579182015b828111156200082b5782518255916020019190600101906200080e565b5b5090506200083b91906200083f565b5090565b5b808211156200085a57600081600090555060010162000840565b5090565b600060ff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008a7826200085e565b9150620008b4836200085e565b92508260ff03821115620008cd57620008cc6200086b565b5b828201905092915050565b6000620008e5826200085e565b915060ff8203620008fb57620008fa6200086b565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006200097560328362000906565b9150620009828262000917565b604082019050919050565b60006020820190508181036000830152620009a88162000966565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620009e760208362000906565b9150620009f482620009af565b602082019050919050565b6000602082019050818103600083015262000a1a81620009d8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000a59601c8362000906565b915062000a668262000a21565b602082019050919050565b6000602082019050818103600083015262000a8c8162000a4a565b9050919050565b6000819050919050565b600062000aaa8262000a93565b915062000ab78362000a93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000aef5762000aee6200086b565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b278262000afa565b9050919050565b62000b398162000b1a565b82525050565b62000b4a8162000a93565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000b8c57808201518184015260208101905062000b6f565b8381111562000b9c576000848401525b50505050565b6000601f19601f8301169050919050565b600062000bc08262000b50565b62000bcc818562000b5b565b935062000bde81856020860162000b6c565b62000be98162000ba2565b840191505092915050565b600060808201905062000c0b600083018762000b2e565b62000c1a602083018662000b2e565b62000c29604083018562000b3f565b818103606083015262000c3d818462000bb3565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000c848162000c4d565b811462000c9057600080fd5b50565b60008151905062000ca48162000c79565b92915050565b60006020828403121562000cc35762000cc262000c48565b5b600062000cd38482850162000c93565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d2457607f821691505b60208210810362000d3a5762000d3962000cdc565b5b50919050565b613a828062000d506000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806342842e0e116100b857806395d89b411161007c57806395d89b4114610366578063a22cb46514610384578063b88d4fde146103a0578063c87b56dd146103bc578063e985e9c5146103ec578063f2fde38b1461041c57610142565b806342842e0e146102c25780636352211e146102de57806370a082311461030e578063715018a61461033e5780638da5cb5b1461034857610142565b80631249c58b1161010a5780631249c58b146101ff57806318160ddd1461021d57806323b872dd1461023b57806329ee566c146102575780632a55205a146102755780632b80183f146102a657610142565b806301ffc9a71461014757806304b18aee1461017757806306fdde0314610195578063081812fc146101b3578063095ea7b3146101e3575b600080fd5b610161600480360381019061015c9190612089565b610438565b60405161016e91906120d1565b60405180910390f35b61017f61051a565b60405161018c91906121b7565b60405180910390f35b61019d610598565b6040516101aa9190612272565b60405180910390f35b6101cd60048036038101906101c891906122ca565b61062a565b6040516101da9190612338565b60405180910390f35b6101fd60048036038101906101f8919061237f565b6106af565b005b6102076107c6565b60405161021491906123ce565b60405180910390f35b6102256109e8565b60405161023291906123ce565b60405180910390f35b610255600480360381019061025091906123e9565b6109ff565b005b61025f610a5f565b60405161026c919061244b565b60405180910390f35b61028f600480360381019061028a9190612466565b610a65565b60405161029d9291906124a6565b60405180910390f35b6102c060048036038101906102bb91906122ca565b610ae5565b005b6102dc60048036038101906102d791906123e9565b610bb0565b005b6102f860048036038101906102f391906122ca565b610bd0565b6040516103059190612338565b60405180910390f35b610328600480360381019061032391906124cf565b610c81565b604051610335919061244b565b60405180910390f35b610346610d38565b005b610350610dc0565b60405161035d9190612338565b60405180910390f35b61036e610dea565b60405161037b9190612272565b60405180910390f35b61039e60048036038101906103999190612528565b610e7c565b005b6103ba60048036038101906103b5919061269d565b610e92565b005b6103d660048036038101906103d191906122ca565b610ef4565b6040516103e39190612272565b60405180910390f35b61040660048036038101906104019190612720565b610fd9565b60405161041391906120d1565b60405180910390f35b610436600480360381019061043191906124cf565b61106d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610513575061051282611187565b5b9050919050565b6060600780548060200260200160405190810160405280929190818152602001828054801561058e57602002820191906000526020600020906000905b82829054906101000a900460ff1660ff16815260200190600101906020826000010492830192600103820291508084116105575790505b5050505050905090565b6060600080546105a79061278f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d39061278f565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b6000610635826111f1565b610674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066b90612832565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ba82610bd0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361072a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610721906128c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661074961125d565b73ffffffffffffffffffffffffffffffffffffffff16148061077857506107778161077261125d565b610fd9565b5b6107b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ae90612956565b60405180910390fd5b6107c18383611265565b505050565b6000806007805490500361080f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610806906129c2565b60405180910390fd5b600061082161081c61125d565b610c81565b14610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890612a2e565b60405180910390fd5b60006007805490504260405160200161087a9190612a6f565b6040516020818303038152906040528051906020012060001c61089d9190612ab9565b90506000600782815481106108b5576108b4612aea565b5b90600052602060002090602091828204019190069054906101000a900460ff1690506108eb6108e261125d565b8260ff1661131e565b6001600860009054906101000a900460ff166109079190612b48565b600860006101000a81548160ff021916908360ff160217905550600760016007805490506109359190612b7f565b8154811061094657610945612aea565b5b90600052602060002090602091828204019190069054906101000a900460ff166007838154811061097a57610979612aea565b5b90600052602060002090602091828204019190066101000a81548160ff021916908360ff16021790555060078054806109b6576109b5612bb3565b5b60019003818190600052602060002090602091828204019190066101000a81549060ff02191690559055809250505090565b6000600860009054906101000a900460ff16905090565b610a10610a0a61125d565b8261133c565b610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690612c54565b60405180910390fd5b610a5a83838361141a565b505050565b60095481565b60008083600011158015610a795750606484105b610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90612cc0565b60405180910390fd5b610ac0610dc0565b606460095485610ad09190612ce0565b610ada9190612d3a565b915091509250929050565b610aed61125d565b73ffffffffffffffffffffffffffffffffffffffff16610b0b610dc0565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890612db7565b60405180910390fd5b612710811115610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90612e23565b60405180910390fd5b8060098190555050565b610bcb83838360405180602001604052806000815250610e92565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90612eb5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612f47565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d4061125d565b73ffffffffffffffffffffffffffffffffffffffff16610d5e610dc0565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90612db7565b60405180910390fd5b610dbe6000611680565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610df99061278f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e259061278f565b8015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b5050505050905090565b610e8e610e8761125d565b8383611746565b5050565b610ea3610e9d61125d565b8361133c565b610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612c54565b60405180910390fd5b610eee848484846118b2565b50505050565b606081600011158015610f075750606482105b610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90612cc0565b60405180910390fd5b6000610f518361190e565b604051602001610f619190612fa3565b60405160208183030381529060405290506000610fae610f8085611980565b610f8984611ae0565b604051602001610f9a929190613110565b604051602081830303815290604052611ae0565b905080604051602001610fc191906131a1565b60405160208183030381529060405292505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61107561125d565b73ffffffffffffffffffffffffffffffffffffffff16611093610dc0565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090612db7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90613235565b60405180910390fd5b61116181611680565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112d883610bd0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611338828260405180602001604052806000815250611c58565b5050565b6000611347826111f1565b611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906132c7565b60405180910390fd5b600061139183610bd0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d357506113d28185610fd9565b5b8061141157508373ffffffffffffffffffffffffffffffffffffffff166113f98461062a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661143a82610bd0565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790613359565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906133eb565b60405180910390fd5b61150a838383611cb3565b611515600082611265565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115659190612b7f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115bc919061340b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461167b838383611cb8565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906134ad565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a591906120d1565b60405180910390a3505050565b6118bd84848461141a565b6118c984848484611cbd565b611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff9061353f565b60405180910390fd5b50505050565b6060600a821061193657604051806060016040528060218152602001613a0b60219139611950565b604051806060016040528060218152602001613a2c602191395b61195983611980565b60405160200161196a929190613773565b6040516020818303038152906040529050919050565b6060600082036119c7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611adb565b600082905060005b600082146119f95780806119e2906137c7565b915050600a826119f29190612d3a565b91506119cf565b60008167ffffffffffffffff811115611a1557611a14612572565b5b6040519080825280601f01601f191660200182016040528015611a475781602001600182028036833780820191505090505b5090505b60008514611ad457600182611a609190612b7f565b9150600a85611a6f9190612ab9565b6030611a7b919061340b565b60f81b818381518110611a9157611a90612aea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611acd9190612d3a565b9450611a4b565b8093505050505b919050565b60606000825103611b0257604051806020016040528060008152509050611c53565b60006040518060600160405280604081526020016139cb6040913990506000600360028551611b31919061340b565b611b3b9190612d3a565b6004611b479190612ce0565b90506000602082611b58919061340b565b67ffffffffffffffff811115611b7157611b70612572565b5b6040519080825280601f01601f191660200182016040528015611ba35781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611c12576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611bb7565b600389510660018114611c2c5760028114611c3c57611c47565b613d3d60f01b6002830352611c47565b603d60f81b60018303525b50505050508093505050505b919050565b611c628383611e44565b611c6f6000848484611cbd565b611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca59061353f565b60405180910390fd5b505050565b505050565b505050565b6000611cde8473ffffffffffffffffffffffffffffffffffffffff16611164565b15611e37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d0761125d565b8786866040518563ffffffff1660e01b8152600401611d299493929190613864565b6020604051808303816000875af1925050508015611d6557506040513d601f19601f82011682018060405250810190611d6291906138c5565b60015b611de7573d8060008114611d95576040519150601f19603f3d011682016040523d82523d6000602084013e611d9a565b606091505b506000815103611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd69061353f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e3c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa9061393e565b60405180910390fd5b611ebc816111f1565b15611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906139aa565b60405180910390fd5b611f0860008383611cb3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f58919061340b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461201960008383611cb8565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206681612031565b811461207157600080fd5b50565b6000813590506120838161205d565b92915050565b60006020828403121561209f5761209e612027565b5b60006120ad84828501612074565b91505092915050565b60008115159050919050565b6120cb816120b6565b82525050565b60006020820190506120e660008301846120c2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600060ff82169050919050565b61212e81612118565b82525050565b60006121408383612125565b60208301905092915050565b6000602082019050919050565b6000612164826120ec565b61216e81856120f7565b935061217983612108565b8060005b838110156121aa5781516121918882612134565b975061219c8361214c565b92505060018101905061217d565b5085935050505092915050565b600060208201905081810360008301526121d18184612159565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122135780820151818401526020810190506121f8565b83811115612222576000848401525b50505050565b6000601f19601f8301169050919050565b6000612244826121d9565b61224e81856121e4565b935061225e8185602086016121f5565b61226781612228565b840191505092915050565b6000602082019050818103600083015261228c8184612239565b905092915050565b6000819050919050565b6122a781612294565b81146122b257600080fd5b50565b6000813590506122c48161229e565b92915050565b6000602082840312156122e0576122df612027565b5b60006122ee848285016122b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612322826122f7565b9050919050565b61233281612317565b82525050565b600060208201905061234d6000830184612329565b92915050565b61235c81612317565b811461236757600080fd5b50565b60008135905061237981612353565b92915050565b6000806040838503121561239657612395612027565b5b60006123a48582860161236a565b92505060206123b5858286016122b5565b9150509250929050565b6123c881612118565b82525050565b60006020820190506123e360008301846123bf565b92915050565b60008060006060848603121561240257612401612027565b5b60006124108682870161236a565b93505060206124218682870161236a565b9250506040612432868287016122b5565b9150509250925092565b61244581612294565b82525050565b6000602082019050612460600083018461243c565b92915050565b6000806040838503121561247d5761247c612027565b5b600061248b858286016122b5565b925050602061249c858286016122b5565b9150509250929050565b60006040820190506124bb6000830185612329565b6124c8602083018461243c565b9392505050565b6000602082840312156124e5576124e4612027565b5b60006124f38482850161236a565b91505092915050565b612505816120b6565b811461251057600080fd5b50565b600081359050612522816124fc565b92915050565b6000806040838503121561253f5761253e612027565b5b600061254d8582860161236a565b925050602061255e85828601612513565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125aa82612228565b810181811067ffffffffffffffff821117156125c9576125c8612572565b5b80604052505050565b60006125dc61201d565b90506125e882826125a1565b919050565b600067ffffffffffffffff82111561260857612607612572565b5b61261182612228565b9050602081019050919050565b82818337600083830152505050565b600061264061263b846125ed565b6125d2565b90508281526020810184848401111561265c5761265b61256d565b5b61266784828561261e565b509392505050565b600082601f83011261268457612683612568565b5b813561269484826020860161262d565b91505092915050565b600080600080608085870312156126b7576126b6612027565b5b60006126c58782880161236a565b94505060206126d68782880161236a565b93505060406126e7878288016122b5565b925050606085013567ffffffffffffffff8111156127085761270761202c565b5b6127148782880161266f565b91505092959194509250565b6000806040838503121561273757612736612027565b5b60006127458582860161236a565b92505060206127568582860161236a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127a757607f821691505b6020821081036127ba576127b9612760565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061281c602c836121e4565b9150612827826127c0565b604082019050919050565b6000602082019050818103600083015261284b8161280f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ae6021836121e4565b91506128b982612852565b604082019050919050565b600060208201905081810360008301526128dd816128a1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006129406038836121e4565b915061294b826128e4565b604082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f416c6c20746f6b656e732077657265206d696e74656400000000000000000000600082015250565b60006129ac6016836121e4565b91506129b782612976565b602082019050919050565b600060208201905081810360008301526129db8161299f565b9050919050565b7f4f6e6520746f6b656e2070657220616464726573730000000000000000000000600082015250565b6000612a186015836121e4565b9150612a23826129e2565b602082019050919050565b60006020820190508181036000830152612a4781612a0b565b9050919050565b6000819050919050565b612a69612a6482612294565b612a4e565b82525050565b6000612a7b8284612a58565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ac482612294565b9150612acf83612294565b925082612adf57612ade612a8a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b5382612118565b9150612b5e83612118565b92508260ff03821115612b7457612b73612b19565b5b828201905092915050565b6000612b8a82612294565b9150612b9583612294565b925082821015612ba857612ba7612b19565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612c3e6031836121e4565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b6000612caa6010836121e4565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b6000612ceb82612294565b9150612cf683612294565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2f57612d2e612b19565b5b828202905092915050565b6000612d4582612294565b9150612d5083612294565b925082612d6057612d5f612a8a565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612da16020836121e4565b9150612dac82612d6b565b602082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b7f3e31303025000000000000000000000000000000000000000000000000000000600082015250565b6000612e0d6005836121e4565b9150612e1882612dd7565b602082019050919050565b60006020820190508181036000830152612e3c81612e00565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e9f6029836121e4565b9150612eaa82612e43565b604082019050919050565b60006020820190508181036000830152612ece81612e92565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f31602a836121e4565b9150612f3c82612ed5565b604082019050919050565b60006020820190508181036000830152612f6081612f24565b9050919050565b600081905092915050565b6000612f7d826121d9565b612f878185612f67565b9350612f978185602086016121f5565b80840191505092915050565b6000612faf8284612f72565b915081905092915050565b7f7b226e616d65223a20224e756d20230000000000000000000000000000000000600082015250565b6000612ff0600f83612f67565b9150612ffb82612fba565b600f82019050919050565b7f222c20226465736372697074696f6e223a2022556e697175652031303020283060008201527f2e2e2e393929206e756d626572732073746f726564206f6e20636861696e222c60208201527f2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b626160408201527f736536342c000000000000000000000000000000000000000000000000000000606082015250565b60006130ae606583612f67565b91506130b982613006565b606582019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006130fa600283612f67565b9150613105826130c4565b600282019050919050565b600061311b82612fe3565b91506131278285612f72565b9150613132826130a1565b915061313e8284612f72565b9150613149826130ed565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061318b601d83612f67565b915061319682613155565b601d82019050919050565b60006131ac8261317e565b91506131b88284612f72565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061321f6026836121e4565b915061322a826131c3565b604082019050919050565b6000602082019050818103600083015261324e81613212565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006132b1602c836121e4565b91506132bc82613255565b604082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006133436025836121e4565b915061334e826132e7565b604082019050919050565b6000602082019050818103600083015261337281613336565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133d56024836121e4565b91506133e082613379565b604082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b600061341682612294565b915061342183612294565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561345657613455612b19565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006134976019836121e4565b91506134a282613461565b602082019050919050565b600060208201905081810360008301526134c68161348a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135296032836121e4565b9150613534826134cd565b604082019050919050565b600060208201905081810360008301526135588161351c565b9050919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203232302031373060408201527f223e000000000000000000000000000000000000000000000000000000000000606082015250565b6000613607606283612f67565b91506136128261355f565b606282019050919050565b7f3c7374796c653e2e6e756d207b20666f6e742d66616d696c793a202254696d6560008201527f73204e657720526f6d616e223b20666f6e742d73697a653a2032303070783b2060208201527f7d3c2f7374796c653e0000000000000000000000000000000000000000000000604082015250565b600061369f604983612f67565b91506136aa8261361d565b604982019050919050565b7f3c7265637420786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260008201527f3030302f737667222077696474683d223130302522206865696768743d22313060208201527f3025222066696c6c3d22776869746522202f3e00000000000000000000000000604082015250565b6000613737605383612f67565b9150613742826136b5565b605382019050919050565b7f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250565b600061377e826135fa565b915061378982613692565b91506137948261372a565b91506137a08285612f72565b91506137ac8284612f72565b91506137b78261374d565b600d820191508190509392505050565b60006137d282612294565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361380457613803612b19565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006138368261380f565b613840818561381a565b93506138508185602086016121f5565b61385981612228565b840191505092915050565b60006080820190506138796000830187612329565b6138866020830186612329565b613893604083018561243c565b81810360608301526138a5818461382b565b905095945050505050565b6000815190506138bf8161205d565b92915050565b6000602082840312156138db576138da612027565b5b60006138e9848285016138b0565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006139286020836121e4565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613994601c836121e4565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7465787420783d2231302220793d223135302220636c6173733d226e756d223e3c7465787420783d2236302220793d223135302220636c6173733d226e756d223ea264697066735822122066b167bfcabba3d037c83aed4c6b471b55f0d7b90e5f974c31ac12cc0ea61f0b64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806342842e0e116100b857806395d89b411161007c57806395d89b4114610366578063a22cb46514610384578063b88d4fde146103a0578063c87b56dd146103bc578063e985e9c5146103ec578063f2fde38b1461041c57610142565b806342842e0e146102c25780636352211e146102de57806370a082311461030e578063715018a61461033e5780638da5cb5b1461034857610142565b80631249c58b1161010a5780631249c58b146101ff57806318160ddd1461021d57806323b872dd1461023b57806329ee566c146102575780632a55205a146102755780632b80183f146102a657610142565b806301ffc9a71461014757806304b18aee1461017757806306fdde0314610195578063081812fc146101b3578063095ea7b3146101e3575b600080fd5b610161600480360381019061015c9190612089565b610438565b60405161016e91906120d1565b60405180910390f35b61017f61051a565b60405161018c91906121b7565b60405180910390f35b61019d610598565b6040516101aa9190612272565b60405180910390f35b6101cd60048036038101906101c891906122ca565b61062a565b6040516101da9190612338565b60405180910390f35b6101fd60048036038101906101f8919061237f565b6106af565b005b6102076107c6565b60405161021491906123ce565b60405180910390f35b6102256109e8565b60405161023291906123ce565b60405180910390f35b610255600480360381019061025091906123e9565b6109ff565b005b61025f610a5f565b60405161026c919061244b565b60405180910390f35b61028f600480360381019061028a9190612466565b610a65565b60405161029d9291906124a6565b60405180910390f35b6102c060048036038101906102bb91906122ca565b610ae5565b005b6102dc60048036038101906102d791906123e9565b610bb0565b005b6102f860048036038101906102f391906122ca565b610bd0565b6040516103059190612338565b60405180910390f35b610328600480360381019061032391906124cf565b610c81565b604051610335919061244b565b60405180910390f35b610346610d38565b005b610350610dc0565b60405161035d9190612338565b60405180910390f35b61036e610dea565b60405161037b9190612272565b60405180910390f35b61039e60048036038101906103999190612528565b610e7c565b005b6103ba60048036038101906103b5919061269d565b610e92565b005b6103d660048036038101906103d191906122ca565b610ef4565b6040516103e39190612272565b60405180910390f35b61040660048036038101906104019190612720565b610fd9565b60405161041391906120d1565b60405180910390f35b610436600480360381019061043191906124cf565b61106d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610513575061051282611187565b5b9050919050565b6060600780548060200260200160405190810160405280929190818152602001828054801561058e57602002820191906000526020600020906000905b82829054906101000a900460ff1660ff16815260200190600101906020826000010492830192600103820291508084116105575790505b5050505050905090565b6060600080546105a79061278f565b80601f01602080910402602001604051908101604052809291908181526020018280546105d39061278f565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b6000610635826111f1565b610674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066b90612832565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ba82610bd0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361072a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610721906128c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661074961125d565b73ffffffffffffffffffffffffffffffffffffffff16148061077857506107778161077261125d565b610fd9565b5b6107b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ae90612956565b60405180910390fd5b6107c18383611265565b505050565b6000806007805490500361080f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610806906129c2565b60405180910390fd5b600061082161081c61125d565b610c81565b14610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890612a2e565b60405180910390fd5b60006007805490504260405160200161087a9190612a6f565b6040516020818303038152906040528051906020012060001c61089d9190612ab9565b90506000600782815481106108b5576108b4612aea565b5b90600052602060002090602091828204019190069054906101000a900460ff1690506108eb6108e261125d565b8260ff1661131e565b6001600860009054906101000a900460ff166109079190612b48565b600860006101000a81548160ff021916908360ff160217905550600760016007805490506109359190612b7f565b8154811061094657610945612aea565b5b90600052602060002090602091828204019190069054906101000a900460ff166007838154811061097a57610979612aea565b5b90600052602060002090602091828204019190066101000a81548160ff021916908360ff16021790555060078054806109b6576109b5612bb3565b5b60019003818190600052602060002090602091828204019190066101000a81549060ff02191690559055809250505090565b6000600860009054906101000a900460ff16905090565b610a10610a0a61125d565b8261133c565b610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690612c54565b60405180910390fd5b610a5a83838361141a565b505050565b60095481565b60008083600011158015610a795750606484105b610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90612cc0565b60405180910390fd5b610ac0610dc0565b606460095485610ad09190612ce0565b610ada9190612d3a565b915091509250929050565b610aed61125d565b73ffffffffffffffffffffffffffffffffffffffff16610b0b610dc0565b73ffffffffffffffffffffffffffffffffffffffff1614610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890612db7565b60405180910390fd5b612710811115610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90612e23565b60405180910390fd5b8060098190555050565b610bcb83838360405180602001604052806000815250610e92565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90612eb5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890612f47565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d4061125d565b73ffffffffffffffffffffffffffffffffffffffff16610d5e610dc0565b73ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90612db7565b60405180910390fd5b610dbe6000611680565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610df99061278f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e259061278f565b8015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b5050505050905090565b610e8e610e8761125d565b8383611746565b5050565b610ea3610e9d61125d565b8361133c565b610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612c54565b60405180910390fd5b610eee848484846118b2565b50505050565b606081600011158015610f075750606482105b610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90612cc0565b60405180910390fd5b6000610f518361190e565b604051602001610f619190612fa3565b60405160208183030381529060405290506000610fae610f8085611980565b610f8984611ae0565b604051602001610f9a929190613110565b604051602081830303815290604052611ae0565b905080604051602001610fc191906131a1565b60405160208183030381529060405292505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61107561125d565b73ffffffffffffffffffffffffffffffffffffffff16611093610dc0565b73ffffffffffffffffffffffffffffffffffffffff16146110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090612db7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90613235565b60405180910390fd5b61116181611680565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112d883610bd0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611338828260405180602001604052806000815250611c58565b5050565b6000611347826111f1565b611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906132c7565b60405180910390fd5b600061139183610bd0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113d357506113d28185610fd9565b5b8061141157508373ffffffffffffffffffffffffffffffffffffffff166113f98461062a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661143a82610bd0565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790613359565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906133eb565b60405180910390fd5b61150a838383611cb3565b611515600082611265565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115659190612b7f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115bc919061340b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461167b838383611cb8565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906134ad565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a591906120d1565b60405180910390a3505050565b6118bd84848461141a565b6118c984848484611cbd565b611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff9061353f565b60405180910390fd5b50505050565b6060600a821061193657604051806060016040528060218152602001613a0b60219139611950565b604051806060016040528060218152602001613a2c602191395b61195983611980565b60405160200161196a929190613773565b6040516020818303038152906040529050919050565b6060600082036119c7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611adb565b600082905060005b600082146119f95780806119e2906137c7565b915050600a826119f29190612d3a565b91506119cf565b60008167ffffffffffffffff811115611a1557611a14612572565b5b6040519080825280601f01601f191660200182016040528015611a475781602001600182028036833780820191505090505b5090505b60008514611ad457600182611a609190612b7f565b9150600a85611a6f9190612ab9565b6030611a7b919061340b565b60f81b818381518110611a9157611a90612aea565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611acd9190612d3a565b9450611a4b565b8093505050505b919050565b60606000825103611b0257604051806020016040528060008152509050611c53565b60006040518060600160405280604081526020016139cb6040913990506000600360028551611b31919061340b565b611b3b9190612d3a565b6004611b479190612ce0565b90506000602082611b58919061340b565b67ffffffffffffffff811115611b7157611b70612572565b5b6040519080825280601f01601f191660200182016040528015611ba35781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611c12576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611bb7565b600389510660018114611c2c5760028114611c3c57611c47565b613d3d60f01b6002830352611c47565b603d60f81b60018303525b50505050508093505050505b919050565b611c628383611e44565b611c6f6000848484611cbd565b611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca59061353f565b60405180910390fd5b505050565b505050565b505050565b6000611cde8473ffffffffffffffffffffffffffffffffffffffff16611164565b15611e37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d0761125d565b8786866040518563ffffffff1660e01b8152600401611d299493929190613864565b6020604051808303816000875af1925050508015611d6557506040513d601f19601f82011682018060405250810190611d6291906138c5565b60015b611de7573d8060008114611d95576040519150601f19603f3d011682016040523d82523d6000602084013e611d9a565b606091505b506000815103611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd69061353f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e3c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa9061393e565b60405180910390fd5b611ebc816111f1565b15611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906139aa565b60405180910390fd5b611f0860008383611cb3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f58919061340b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461201960008383611cb8565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206681612031565b811461207157600080fd5b50565b6000813590506120838161205d565b92915050565b60006020828403121561209f5761209e612027565b5b60006120ad84828501612074565b91505092915050565b60008115159050919050565b6120cb816120b6565b82525050565b60006020820190506120e660008301846120c2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600060ff82169050919050565b61212e81612118565b82525050565b60006121408383612125565b60208301905092915050565b6000602082019050919050565b6000612164826120ec565b61216e81856120f7565b935061217983612108565b8060005b838110156121aa5781516121918882612134565b975061219c8361214c565b92505060018101905061217d565b5085935050505092915050565b600060208201905081810360008301526121d18184612159565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122135780820151818401526020810190506121f8565b83811115612222576000848401525b50505050565b6000601f19601f8301169050919050565b6000612244826121d9565b61224e81856121e4565b935061225e8185602086016121f5565b61226781612228565b840191505092915050565b6000602082019050818103600083015261228c8184612239565b905092915050565b6000819050919050565b6122a781612294565b81146122b257600080fd5b50565b6000813590506122c48161229e565b92915050565b6000602082840312156122e0576122df612027565b5b60006122ee848285016122b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612322826122f7565b9050919050565b61233281612317565b82525050565b600060208201905061234d6000830184612329565b92915050565b61235c81612317565b811461236757600080fd5b50565b60008135905061237981612353565b92915050565b6000806040838503121561239657612395612027565b5b60006123a48582860161236a565b92505060206123b5858286016122b5565b9150509250929050565b6123c881612118565b82525050565b60006020820190506123e360008301846123bf565b92915050565b60008060006060848603121561240257612401612027565b5b60006124108682870161236a565b93505060206124218682870161236a565b9250506040612432868287016122b5565b9150509250925092565b61244581612294565b82525050565b6000602082019050612460600083018461243c565b92915050565b6000806040838503121561247d5761247c612027565b5b600061248b858286016122b5565b925050602061249c858286016122b5565b9150509250929050565b60006040820190506124bb6000830185612329565b6124c8602083018461243c565b9392505050565b6000602082840312156124e5576124e4612027565b5b60006124f38482850161236a565b91505092915050565b612505816120b6565b811461251057600080fd5b50565b600081359050612522816124fc565b92915050565b6000806040838503121561253f5761253e612027565b5b600061254d8582860161236a565b925050602061255e85828601612513565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125aa82612228565b810181811067ffffffffffffffff821117156125c9576125c8612572565b5b80604052505050565b60006125dc61201d565b90506125e882826125a1565b919050565b600067ffffffffffffffff82111561260857612607612572565b5b61261182612228565b9050602081019050919050565b82818337600083830152505050565b600061264061263b846125ed565b6125d2565b90508281526020810184848401111561265c5761265b61256d565b5b61266784828561261e565b509392505050565b600082601f83011261268457612683612568565b5b813561269484826020860161262d565b91505092915050565b600080600080608085870312156126b7576126b6612027565b5b60006126c58782880161236a565b94505060206126d68782880161236a565b93505060406126e7878288016122b5565b925050606085013567ffffffffffffffff8111156127085761270761202c565b5b6127148782880161266f565b91505092959194509250565b6000806040838503121561273757612736612027565b5b60006127458582860161236a565b92505060206127568582860161236a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127a757607f821691505b6020821081036127ba576127b9612760565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061281c602c836121e4565b9150612827826127c0565b604082019050919050565b6000602082019050818103600083015261284b8161280f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ae6021836121e4565b91506128b982612852565b604082019050919050565b600060208201905081810360008301526128dd816128a1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006129406038836121e4565b915061294b826128e4565b604082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f416c6c20746f6b656e732077657265206d696e74656400000000000000000000600082015250565b60006129ac6016836121e4565b91506129b782612976565b602082019050919050565b600060208201905081810360008301526129db8161299f565b9050919050565b7f4f6e6520746f6b656e2070657220616464726573730000000000000000000000600082015250565b6000612a186015836121e4565b9150612a23826129e2565b602082019050919050565b60006020820190508181036000830152612a4781612a0b565b9050919050565b6000819050919050565b612a69612a6482612294565b612a4e565b82525050565b6000612a7b8284612a58565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ac482612294565b9150612acf83612294565b925082612adf57612ade612a8a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b5382612118565b9150612b5e83612118565b92508260ff03821115612b7457612b73612b19565b5b828201905092915050565b6000612b8a82612294565b9150612b9583612294565b925082821015612ba857612ba7612b19565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612c3e6031836121e4565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b6000612caa6010836121e4565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b6000612ceb82612294565b9150612cf683612294565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2f57612d2e612b19565b5b828202905092915050565b6000612d4582612294565b9150612d5083612294565b925082612d6057612d5f612a8a565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612da16020836121e4565b9150612dac82612d6b565b602082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b7f3e31303025000000000000000000000000000000000000000000000000000000600082015250565b6000612e0d6005836121e4565b9150612e1882612dd7565b602082019050919050565b60006020820190508181036000830152612e3c81612e00565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e9f6029836121e4565b9150612eaa82612e43565b604082019050919050565b60006020820190508181036000830152612ece81612e92565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f31602a836121e4565b9150612f3c82612ed5565b604082019050919050565b60006020820190508181036000830152612f6081612f24565b9050919050565b600081905092915050565b6000612f7d826121d9565b612f878185612f67565b9350612f978185602086016121f5565b80840191505092915050565b6000612faf8284612f72565b915081905092915050565b7f7b226e616d65223a20224e756d20230000000000000000000000000000000000600082015250565b6000612ff0600f83612f67565b9150612ffb82612fba565b600f82019050919050565b7f222c20226465736372697074696f6e223a2022556e697175652031303020283060008201527f2e2e2e393929206e756d626572732073746f726564206f6e20636861696e222c60208201527f2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b626160408201527f736536342c000000000000000000000000000000000000000000000000000000606082015250565b60006130ae606583612f67565b91506130b982613006565b606582019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006130fa600283612f67565b9150613105826130c4565b600282019050919050565b600061311b82612fe3565b91506131278285612f72565b9150613132826130a1565b915061313e8284612f72565b9150613149826130ed565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061318b601d83612f67565b915061319682613155565b601d82019050919050565b60006131ac8261317e565b91506131b88284612f72565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061321f6026836121e4565b915061322a826131c3565b604082019050919050565b6000602082019050818103600083015261324e81613212565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006132b1602c836121e4565b91506132bc82613255565b604082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006133436025836121e4565b915061334e826132e7565b604082019050919050565b6000602082019050818103600083015261337281613336565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133d56024836121e4565b91506133e082613379565b604082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b600061341682612294565b915061342183612294565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561345657613455612b19565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006134976019836121e4565b91506134a282613461565b602082019050919050565b600060208201905081810360008301526134c68161348a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135296032836121e4565b9150613534826134cd565b604082019050919050565b600060208201905081810360008301526135588161351c565b9050919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203232302031373060408201527f223e000000000000000000000000000000000000000000000000000000000000606082015250565b6000613607606283612f67565b91506136128261355f565b606282019050919050565b7f3c7374796c653e2e6e756d207b20666f6e742d66616d696c793a202254696d6560008201527f73204e657720526f6d616e223b20666f6e742d73697a653a2032303070783b2060208201527f7d3c2f7374796c653e0000000000000000000000000000000000000000000000604082015250565b600061369f604983612f67565b91506136aa8261361d565b604982019050919050565b7f3c7265637420786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260008201527f3030302f737667222077696474683d223130302522206865696768743d22313060208201527f3025222066696c6c3d22776869746522202f3e00000000000000000000000000604082015250565b6000613737605383612f67565b9150613742826136b5565b605382019050919050565b7f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250565b600061377e826135fa565b915061378982613692565b91506137948261372a565b91506137a08285612f72565b91506137ac8284612f72565b91506137b78261374d565b600d820191508190509392505050565b60006137d282612294565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361380457613803612b19565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006138368261380f565b613840818561381a565b93506138508185602086016121f5565b61385981612228565b840191505092915050565b60006080820190506138796000830187612329565b6138866020830186612329565b613893604083018561243c565b81810360608301526138a5818461382b565b905095945050505050565b6000815190506138bf8161205d565b92915050565b6000602082840312156138db576138da612027565b5b60006138e9848285016138b0565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006139286020836121e4565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613994601c836121e4565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7465787420783d2231302220793d223135302220636c6173733d226e756d223e3c7465787420783d2236302220793d223135302220636c6173733d226e756d223ea264697066735822122066b167bfcabba3d037c83aed4c6b471b55f0d7b90e5f974c31ac12cc0ea61f0b64736f6c634300080d0033

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.