ETH Price: $3,400.12 (+2.11%)

Token

Cryptopaka (CPK)
 

Overview

Max Total Supply

34 CPK

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
monashitstain.eth
Balance
11 CPK
0x12d964f702db7b301765c0066a04ec4fbdb59e3a
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:
Cryptopaka

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Cryptopaka.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity =0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Cryptopaka is Context, ERC721Enumerable, Ownable {
    string private _baseTokenURI = "https://api.cryptopaka.com/token/";
    bool private _paused = true;
    uint256 private _lastTimestamp = 0;
    uint256 private _lastPrice = 10000 gwei;

    uint256 public constant basePrice = 10000 gwei;
    bytes32 public searchSeed = 0x0; // prevent "premining"

    // used to verify the parser
    bytes32 public constant jsSHA256 =
        0x1288f5184d996524ea5f6e6d51fc46548caced33616e91dcfe205189d1a03e2e;

    constructor() ERC721("Cryptopaka", "CPK") {}

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused(), "not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     */
    function pause() public whenNotPaused onlyOwner {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     */
    function unpause() public whenPaused onlyOwner {
        searchSeed = blockhash(block.number - 1);
        _paused = false;
        emit Unpaused(_msgSender());
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory uri) public onlyOwner {
        _baseTokenURI = uri; // we will change to a decentralized solution
    }

    /**
     * @dev Returns the current minting cost of a single paka
     */
    function price() public view returns (uint256) {
        uint256 discount = (block.timestamp - _lastTimestamp) * 1 gwei; // 1 gwei/s
        if (_lastPrice > 100000000000000000) {
            discount *= 100; // if price > 0.1 eth then increase the discount
        }
        uint256 ret = (_lastPrice * 6) / 5; // 1.2
        if (discount >= ret - basePrice) {
            return basePrice; // minimum price
        }
        ret -= discount;
        if (ret > 690000000000000000) {
            return 690000000000000000; // clamped at 0.69 eth
        }
        return ret;
    }

    function mint(bytes32 seed) public payable {
        uint256 p = price();
        require(totalSupply() <= 142053); // 142053 + 16 genesis pakas = 142069
        require(p <= msg.value, "ether below range"); // you could pay a bit more
        require(p * 2 > msg.value, "ether above range"); // but not too much

        _lastTimestamp = block.timestamp;
        _lastPrice = p;
        bytes32 h = keccak256(abi.encodePacked(seed, searchSeed));
        require(h[29] | h[30] | h[31] == 0x0, "invalid seed");
        uint256 tokenId = uint256(h >> 216);

        // genesis paka are not mintable
        require(!isGenesis(tokenId));

        _mint(_msgSender(), tokenId);
    }

    function mintGenesis(uint256 tokenId) public onlyOwner {
        require(isGenesis(tokenId)); // owner can only mint genesis pakas
        _mint(_msgSender(), tokenId);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
    }

    function isGenesis(uint256 tokenId) public pure returns (bool) {
        return
            tokenId == 1099511562240 ||
            tokenId == 1099511566336 ||
            tokenId == 1099511570432 ||
            tokenId == 1099511574528 ||
            tokenId == 1099511578624 ||
            tokenId == 1099511582720 ||
            tokenId == 1099511586816 ||
            tokenId == 1099511590912 ||
            tokenId == 1099511595008 ||
            tokenId == 1099511599104 ||
            tokenId == 1099511603200 ||
            tokenId == 1099511607296 ||
            tokenId == 1099511611392 ||
            tokenId == 1099511615488 ||
            tokenId == 1099511619584 ||
            tokenId == 1099511623680;
    }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 3 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isGenesis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"jsSHA256","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"seed","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"searchSeed","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602181526020016200479660219139600b908051906020019062000035929190620001d4565b506001600c60006101000a81548160ff0219169083151502179055506000600d556509184e72a000600e556000801b600f553480156200007457600080fd5b506040518060400160405280600a81526020017f43727970746f70616b61000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43504b00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f9929190620001d4565b50806001908051906020019062000112929190620001d4565b505050600062000127620001cc60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002e9565b600033905090565b828054620001e29062000284565b90600052602060002090601f01602090048101928262000206576000855562000252565b82601f106200022157805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025157825182559160200191906001019062000234565b5b50905062000261919062000265565b5090565b5b808211156200028057600081600090555060010162000266565b5090565b600060028204905060018216806200029d57607f821691505b60208210811415620002b457620002b3620002ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61449d80620002f96000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063ae4f147611610095578063dff6324311610064578063dff6324314610679578063e985e9c5146106a2578063f1e25ea8146106df578063f2fde38b1461071c576101d8565b8063ae4f1476146105bd578063b88d4fde146105e8578063c7876ea414610611578063c87b56dd1461063c576101d8565b806395d89b41116100d157806395d89b4114610522578063a035b1fe1461054d578063a22cb46514610578578063adf2cead146105a1576101d8565b806370a082311461048c578063715018a6146104c95780638456cb59146104e05780638da5cb5b146104f7576101d8565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103be57806355f804b3146103fb5780635c975abb146104245780636352211e1461044f576101d8565b80632f745c591461032a5780633ccfd60b146103675780633f4ba83a1461037e57806342842e0e14610395576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307fd400c14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906130fd565b610745565b604051610211919061368b565b60405180910390f35b34801561022657600080fd5b5061022f6107bf565b60405161023c91906136c1565b60405180910390f35b34801561025157600080fd5b5061025a610851565b60405161026791906136a6565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190613190565b610878565b6040516102a49190613624565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613098565b6108fd565b005b3480156102e257600080fd5b506102eb610a15565b6040516102f891906139c3565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612f92565b610a22565b005b34801561033657600080fd5b50610351600480360381019061034c9190613098565b610a82565b60405161035e91906139c3565b60405180910390f35b34801561037357600080fd5b5061037c610b27565b005b34801561038a57600080fd5b50610393610bf9565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612f92565b610d2b565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613190565b610d4b565b6040516103f291906139c3565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d919061314f565b610de2565b005b34801561043057600080fd5b50610439610e78565b604051610446919061368b565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190613190565b610e8f565b6040516104839190613624565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612f2d565b610f41565b6040516104c091906139c3565b60405180910390f35b3480156104d557600080fd5b506104de610ff9565b005b3480156104ec57600080fd5b506104f5611136565b005b34801561050357600080fd5b5061050c611255565b6040516105199190613624565b60405180910390f35b34801561052e57600080fd5b5061053761127f565b60405161054491906136c1565b60405180910390f35b34801561055957600080fd5b50610562611311565b60405161056f91906139c3565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a919061305c565b6113d5565b005b6105bb60048036038101906105b691906130d4565b611556565b005b3480156105c957600080fd5b506105d26117a0565b6040516105df91906136a6565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612fe1565b6117a6565b005b34801561061d57600080fd5b50610626611808565b60405161063391906139c3565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613190565b611812565b60405161067091906136c1565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613190565b6118b9565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190612f56565b61195b565b6040516106d6919061368b565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613190565b6119ef565b604051610713919061368b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612f2d565b611ae1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b857506107b782611c8d565b5b9050919050565b6060600080546107ce90613c7d565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90613c7d565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b7f1288f5184d996524ea5f6e6d51fc46548caced33616e91dcfe205189d1a03e2e60001b81565b600061088382611d6f565b6108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990613863565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090882610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090613923565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610998611ddb565b73ffffffffffffffffffffffffffffffffffffffff1614806109c757506109c6816109c1611ddb565b61195b565b5b610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd906137c3565b60405180910390fd5b610a108383611de3565b505050565b6000600880549050905090565b610a33610a2d611ddb565b82611e9c565b610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990613943565b60405180910390fd5b610a7d838383611f7a565b505050565b6000610a8d83610f41565b8210610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac5906136e3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b2f611ddb565b73ffffffffffffffffffffffffffffffffffffffff16610b4d611255565b73ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90613883565b60405180910390fd5b6000479050610bb0611ddb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bf5573d6000803e3d6000fd5b5050565b610c01610e78565b610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906139a3565b60405180910390fd5b610c48611ddb565b73ffffffffffffffffffffffffffffffffffffffff16610c66611255565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613883565b60405180910390fd5b600143610cc99190613b89565b40600f819055506000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d14611ddb565b604051610d219190613624565b60405180910390a1565b610d46838383604051806020016040528060008152506117a6565b505050565b6000610d55610a15565b8210610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613963565b60405180910390fd5b60088281548110610dd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610dea611ddb565b73ffffffffffffffffffffffffffffffffffffffff16610e08611255565b73ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590613883565b60405180910390fd5b80600b9080519060200190610e74929190612d3c565b5050565b6000600c60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613803565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa9906137e3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611001611ddb565b73ffffffffffffffffffffffffffffffffffffffff1661101f611255565b73ffffffffffffffffffffffffffffffffffffffff1614611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90613883565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61113e610e78565b1561117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613983565b60405180910390fd5b611186611ddb565b73ffffffffffffffffffffffffffffffffffffffff166111a4611255565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613883565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861123e611ddb565b60405161124b9190613624565b60405180910390a1565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461128e90613c7d565b80601f01602080910402602001604051908101604052809291908181526020018280546112ba90613c7d565b80156113075780601f106112dc57610100808354040283529160200191611307565b820191906000526020600020905b8154815290600101906020018083116112ea57829003601f168201915b5050505050905090565b600080633b9aca00600d54426113279190613b89565b6113319190613b2f565b905067016345785d8a0000600e541115611355576064816113529190613b2f565b90505b600060056006600e546113689190613b2f565b6113729190613afe565b90506509184e72a000816113869190613b89565b821061139c576509184e72a000925050506113d2565b81816113a89190613b89565b90506709935f581f0500008111156113cc576709935f581f050000925050506113d2565b80925050505b90565b6113dd611ddb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290613783565b60405180910390fd5b8060056000611458611ddb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611505611ddb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154a919061368b565b60405180910390a35050565b6000611560611311565b905062022ae561156e610a15565b111561157957600080fd5b348111156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613843565b60405180910390fd5b346002826115ca9190613b2f565b1161160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906138a3565b60405180910390fd5b42600d8190555080600e81905550600082600f5460405160200161162f9291906135d4565b604051602081830303815290604052805190602001209050600060f81b81601f60208110611686577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82601e602081106116c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b83601d60208110611702577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b17177effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613903565b60405180910390fd5b600060d882901c60001c905061177f816119ef565b1561178957600080fd5b61179a611794611ddb565b826121d6565b50505050565b600f5481565b6117b76117b1611ddb565b83611e9c565b6117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90613943565b60405180910390fd5b611802848484846123a4565b50505050565b6509184e72a00081565b606061181d82611d6f565b61185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906138e3565b60405180910390fd5b6000611866612400565b9050600081511161188657604051806020016040528060008152506118b1565b8061189084612492565b6040516020016118a1929190613600565b6040516020818303038152906040525b915050919050565b6118c1611ddb565b73ffffffffffffffffffffffffffffffffffffffff166118df611255565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613883565b60405180910390fd5b61193e816119ef565b61194757600080fd5b611958611952611ddb565b826121d6565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600064ffffff0000821480611a08575064ffffff100082145b80611a17575064ffffff200082145b80611a26575064ffffff300082145b80611a35575064ffffff400082145b80611a44575064ffffff500082145b80611a53575064ffffff600082145b80611a62575064ffffff700082145b80611a71575064ffffff800082145b80611a80575064ffffff900082145b80611a8f575064ffffffa00082145b80611a9e575064ffffffb00082145b80611aad575064ffffffc00082145b80611abc575064ffffffd00082145b80611acb575064ffffffe00082145b80611ada575064fffffff00082145b9050919050565b611ae9611ddb565b73ffffffffffffffffffffffffffffffffffffffff16611b07611255565b73ffffffffffffffffffffffffffffffffffffffff1614611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490613883565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613723565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d5857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d685750611d678261263f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e5683610e8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ea782611d6f565b611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd906137a3565b60405180910390fd5b6000611ef183610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f6057508373ffffffffffffffffffffffffffffffffffffffff16611f4884610878565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f715750611f70818561195b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f9a82610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe7906138c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613763565b60405180910390fd5b61206b8383836126a9565b612076600082611de3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c69190613b89565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211d9190613aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613823565b60405180910390fd5b61224f81611d6f565b1561228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690613743565b60405180910390fd5b61229b600083836126a9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122eb9190613aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6123af848484611f7a565b6123bb84848484612701565b6123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613703565b60405180910390fd5b50505050565b6060600b805461240f90613c7d565b80601f016020809104026020016040519081016040528092919081815260200182805461243b90613c7d565b80156124885780601f1061245d57610100808354040283529160200191612488565b820191906000526020600020905b81548152906001019060200180831161246b57829003601f168201915b5050505050905090565b606060008214156124da576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263a565b600082905060005b6000821461250c5780806124f590613ce0565b915050600a826125059190613afe565b91506124e2565b60008167ffffffffffffffff81111561254e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125805781602001600182028036833780820191505090505b5090505b60008514612633576001826125999190613b89565b9150600a856125a89190613d33565b60306125b49190613aa8565b60f81b8183815181106125f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262c9190613afe565b9450612584565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126b1610e78565b156126f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e890613983565b60405180910390fd5b6126fc838383612898565b505050565b60006127228473ffffffffffffffffffffffffffffffffffffffff166129ac565b1561288b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261274b611ddb565b8786866040518563ffffffff1660e01b815260040161276d949392919061363f565b602060405180830381600087803b15801561278757600080fd5b505af19250505080156127b857506040513d601f19601f820116820180604052508101906127b59190613126565b60015b61283b573d80600081146127e8576040519150601f19603f3d011682016040523d82523d6000602084013e6127ed565b606091505b50600081511415612833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282a90613703565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612890565b600190505b949350505050565b6128a38383836129bf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e6576128e1816129c4565b612925565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612924576129238382612a0d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129685761296381612b7a565b6129a7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129a6576129a58282612cbd565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a1a84610f41565b612a249190613b89565b9050600060076000848152602001908152602001600020549050818114612b09576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b8e9190613b89565b9050600060096000848152602001908152602001600020549050600060088381548110612be4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612c2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ca1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612cc883610f41565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612d4890613c7d565b90600052602060002090601f016020900481019282612d6a5760008555612db1565b82601f10612d8357805160ff1916838001178555612db1565b82800160010185558215612db1579182015b82811115612db0578251825591602001919060010190612d95565b5b509050612dbe9190612dc2565b5090565b5b80821115612ddb576000816000905550600101612dc3565b5090565b6000612df2612ded84613a03565b6139de565b905082815260208101848484011115612e0a57600080fd5b612e15848285613c3b565b509392505050565b6000612e30612e2b84613a34565b6139de565b905082815260208101848484011115612e4857600080fd5b612e53848285613c3b565b509392505050565b600081359050612e6a816143f4565b92915050565b600081359050612e7f8161440b565b92915050565b600081359050612e9481614422565b92915050565b600081359050612ea981614439565b92915050565b600081519050612ebe81614439565b92915050565b600082601f830112612ed557600080fd5b8135612ee5848260208601612ddf565b91505092915050565b600082601f830112612eff57600080fd5b8135612f0f848260208601612e1d565b91505092915050565b600081359050612f2781614450565b92915050565b600060208284031215612f3f57600080fd5b6000612f4d84828501612e5b565b91505092915050565b60008060408385031215612f6957600080fd5b6000612f7785828601612e5b565b9250506020612f8885828601612e5b565b9150509250929050565b600080600060608486031215612fa757600080fd5b6000612fb586828701612e5b565b9350506020612fc686828701612e5b565b9250506040612fd786828701612f18565b9150509250925092565b60008060008060808587031215612ff757600080fd5b600061300587828801612e5b565b945050602061301687828801612e5b565b935050604061302787828801612f18565b925050606085013567ffffffffffffffff81111561304457600080fd5b61305087828801612ec4565b91505092959194509250565b6000806040838503121561306f57600080fd5b600061307d85828601612e5b565b925050602061308e85828601612e70565b9150509250929050565b600080604083850312156130ab57600080fd5b60006130b985828601612e5b565b92505060206130ca85828601612f18565b9150509250929050565b6000602082840312156130e657600080fd5b60006130f484828501612e85565b91505092915050565b60006020828403121561310f57600080fd5b600061311d84828501612e9a565b91505092915050565b60006020828403121561313857600080fd5b600061314684828501612eaf565b91505092915050565b60006020828403121561316157600080fd5b600082013567ffffffffffffffff81111561317b57600080fd5b61318784828501612eee565b91505092915050565b6000602082840312156131a257600080fd5b60006131b084828501612f18565b91505092915050565b6131c281613bbd565b82525050565b6131d181613bcf565b82525050565b6131e081613bdb565b82525050565b6131f76131f282613bdb565b613d29565b82525050565b600061320882613a65565b6132128185613a7b565b9350613222818560208601613c4a565b61322b81613e20565b840191505092915050565b600061324182613a70565b61324b8185613a8c565b935061325b818560208601613c4a565b61326481613e20565b840191505092915050565b600061327a82613a70565b6132848185613a9d565b9350613294818560208601613c4a565b80840191505092915050565b60006132ad602b83613a8c565b91506132b882613e31565b604082019050919050565b60006132d0603283613a8c565b91506132db82613e80565b604082019050919050565b60006132f3602683613a8c565b91506132fe82613ecf565b604082019050919050565b6000613316601c83613a8c565b915061332182613f1e565b602082019050919050565b6000613339602483613a8c565b915061334482613f47565b604082019050919050565b600061335c601983613a8c565b915061336782613f96565b602082019050919050565b600061337f602c83613a8c565b915061338a82613fbf565b604082019050919050565b60006133a2603883613a8c565b91506133ad8261400e565b604082019050919050565b60006133c5602a83613a8c565b91506133d08261405d565b604082019050919050565b60006133e8602983613a8c565b91506133f3826140ac565b604082019050919050565b600061340b602083613a8c565b9150613416826140fb565b602082019050919050565b600061342e601183613a8c565b915061343982614124565b602082019050919050565b6000613451602c83613a8c565b915061345c8261414d565b604082019050919050565b6000613474602083613a8c565b915061347f8261419c565b602082019050919050565b6000613497601183613a8c565b91506134a2826141c5565b602082019050919050565b60006134ba602983613a8c565b91506134c5826141ee565b604082019050919050565b60006134dd602f83613a8c565b91506134e88261423d565b604082019050919050565b6000613500600c83613a8c565b915061350b8261428c565b602082019050919050565b6000613523602183613a8c565b915061352e826142b5565b604082019050919050565b6000613546603183613a8c565b915061355182614304565b604082019050919050565b6000613569602c83613a8c565b915061357482614353565b604082019050919050565b600061358c600683613a8c565b9150613597826143a2565b602082019050919050565b60006135af600a83613a8c565b91506135ba826143cb565b602082019050919050565b6135ce81613c31565b82525050565b60006135e082856131e6565b6020820191506135f082846131e6565b6020820191508190509392505050565b600061360c828561326f565b9150613618828461326f565b91508190509392505050565b600060208201905061363960008301846131b9565b92915050565b600060808201905061365460008301876131b9565b61366160208301866131b9565b61366e60408301856135c5565b818103606083015261368081846131fd565b905095945050505050565b60006020820190506136a060008301846131c8565b92915050565b60006020820190506136bb60008301846131d7565b92915050565b600060208201905081810360008301526136db8184613236565b905092915050565b600060208201905081810360008301526136fc816132a0565b9050919050565b6000602082019050818103600083015261371c816132c3565b9050919050565b6000602082019050818103600083015261373c816132e6565b9050919050565b6000602082019050818103600083015261375c81613309565b9050919050565b6000602082019050818103600083015261377c8161332c565b9050919050565b6000602082019050818103600083015261379c8161334f565b9050919050565b600060208201905081810360008301526137bc81613372565b9050919050565b600060208201905081810360008301526137dc81613395565b9050919050565b600060208201905081810360008301526137fc816133b8565b9050919050565b6000602082019050818103600083015261381c816133db565b9050919050565b6000602082019050818103600083015261383c816133fe565b9050919050565b6000602082019050818103600083015261385c81613421565b9050919050565b6000602082019050818103600083015261387c81613444565b9050919050565b6000602082019050818103600083015261389c81613467565b9050919050565b600060208201905081810360008301526138bc8161348a565b9050919050565b600060208201905081810360008301526138dc816134ad565b9050919050565b600060208201905081810360008301526138fc816134d0565b9050919050565b6000602082019050818103600083015261391c816134f3565b9050919050565b6000602082019050818103600083015261393c81613516565b9050919050565b6000602082019050818103600083015261395c81613539565b9050919050565b6000602082019050818103600083015261397c8161355c565b9050919050565b6000602082019050818103600083015261399c8161357f565b9050919050565b600060208201905081810360008301526139bc816135a2565b9050919050565b60006020820190506139d860008301846135c5565b92915050565b60006139e86139f9565b90506139f48282613caf565b919050565b6000604051905090565b600067ffffffffffffffff821115613a1e57613a1d613df1565b5b613a2782613e20565b9050602081019050919050565b600067ffffffffffffffff821115613a4f57613a4e613df1565b5b613a5882613e20565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ab382613c31565b9150613abe83613c31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613af357613af2613d64565b5b828201905092915050565b6000613b0982613c31565b9150613b1483613c31565b925082613b2457613b23613d93565b5b828204905092915050565b6000613b3a82613c31565b9150613b4583613c31565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b7e57613b7d613d64565b5b828202905092915050565b6000613b9482613c31565b9150613b9f83613c31565b925082821015613bb257613bb1613d64565b5b828203905092915050565b6000613bc882613c11565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c68578082015181840152602081019050613c4d565b83811115613c77576000848401525b50505050565b60006002820490506001821680613c9557607f821691505b60208210811415613ca957613ca8613dc2565b5b50919050565b613cb882613e20565b810181811067ffffffffffffffff82111715613cd757613cd6613df1565b5b80604052505050565b6000613ceb82613c31565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d1e57613d1d613d64565b5b600182019050919050565b6000819050919050565b6000613d3e82613c31565b9150613d4983613c31565b925082613d5957613d58613d93565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f65746865722062656c6f772072616e6765000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f65746865722061626f76652072616e6765000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f696e76616c696420736565640000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f7061757365640000000000000000000000000000000000000000000000000000600082015250565b7f6e6f742070617573656400000000000000000000000000000000000000000000600082015250565b6143fd81613bbd565b811461440857600080fd5b50565b61441481613bcf565b811461441f57600080fd5b50565b61442b81613bdb565b811461443657600080fd5b50565b61444281613be5565b811461444d57600080fd5b50565b61445981613c31565b811461446457600080fd5b5056fea26469706673582212204d90389e823959865b3d7167f6d62a9c53b43d0248c24c5eeaaf6eb7043d679e64736f6c6343000804003368747470733a2f2f6170692e63727970746f70616b612e636f6d2f746f6b656e2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063ae4f147611610095578063dff6324311610064578063dff6324314610679578063e985e9c5146106a2578063f1e25ea8146106df578063f2fde38b1461071c576101d8565b8063ae4f1476146105bd578063b88d4fde146105e8578063c7876ea414610611578063c87b56dd1461063c576101d8565b806395d89b41116100d157806395d89b4114610522578063a035b1fe1461054d578063a22cb46514610578578063adf2cead146105a1576101d8565b806370a082311461048c578063715018a6146104c95780638456cb59146104e05780638da5cb5b146104f7576101d8565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103be57806355f804b3146103fb5780635c975abb146104245780636352211e1461044f576101d8565b80632f745c591461032a5780633ccfd60b146103675780633f4ba83a1461037e57806342842e0e14610395576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307fd400c14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906130fd565b610745565b604051610211919061368b565b60405180910390f35b34801561022657600080fd5b5061022f6107bf565b60405161023c91906136c1565b60405180910390f35b34801561025157600080fd5b5061025a610851565b60405161026791906136a6565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190613190565b610878565b6040516102a49190613624565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613098565b6108fd565b005b3480156102e257600080fd5b506102eb610a15565b6040516102f891906139c3565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612f92565b610a22565b005b34801561033657600080fd5b50610351600480360381019061034c9190613098565b610a82565b60405161035e91906139c3565b60405180910390f35b34801561037357600080fd5b5061037c610b27565b005b34801561038a57600080fd5b50610393610bf9565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612f92565b610d2b565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613190565b610d4b565b6040516103f291906139c3565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d919061314f565b610de2565b005b34801561043057600080fd5b50610439610e78565b604051610446919061368b565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190613190565b610e8f565b6040516104839190613624565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612f2d565b610f41565b6040516104c091906139c3565b60405180910390f35b3480156104d557600080fd5b506104de610ff9565b005b3480156104ec57600080fd5b506104f5611136565b005b34801561050357600080fd5b5061050c611255565b6040516105199190613624565b60405180910390f35b34801561052e57600080fd5b5061053761127f565b60405161054491906136c1565b60405180910390f35b34801561055957600080fd5b50610562611311565b60405161056f91906139c3565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a919061305c565b6113d5565b005b6105bb60048036038101906105b691906130d4565b611556565b005b3480156105c957600080fd5b506105d26117a0565b6040516105df91906136a6565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612fe1565b6117a6565b005b34801561061d57600080fd5b50610626611808565b60405161063391906139c3565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613190565b611812565b60405161067091906136c1565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613190565b6118b9565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190612f56565b61195b565b6040516106d6919061368b565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613190565b6119ef565b604051610713919061368b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612f2d565b611ae1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b857506107b782611c8d565b5b9050919050565b6060600080546107ce90613c7d565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90613c7d565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b7f1288f5184d996524ea5f6e6d51fc46548caced33616e91dcfe205189d1a03e2e60001b81565b600061088382611d6f565b6108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990613863565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090882610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090613923565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610998611ddb565b73ffffffffffffffffffffffffffffffffffffffff1614806109c757506109c6816109c1611ddb565b61195b565b5b610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd906137c3565b60405180910390fd5b610a108383611de3565b505050565b6000600880549050905090565b610a33610a2d611ddb565b82611e9c565b610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990613943565b60405180910390fd5b610a7d838383611f7a565b505050565b6000610a8d83610f41565b8210610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac5906136e3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b2f611ddb565b73ffffffffffffffffffffffffffffffffffffffff16610b4d611255565b73ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90613883565b60405180910390fd5b6000479050610bb0611ddb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bf5573d6000803e3d6000fd5b5050565b610c01610e78565b610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906139a3565b60405180910390fd5b610c48611ddb565b73ffffffffffffffffffffffffffffffffffffffff16610c66611255565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613883565b60405180910390fd5b600143610cc99190613b89565b40600f819055506000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d14611ddb565b604051610d219190613624565b60405180910390a1565b610d46838383604051806020016040528060008152506117a6565b505050565b6000610d55610a15565b8210610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613963565b60405180910390fd5b60088281548110610dd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610dea611ddb565b73ffffffffffffffffffffffffffffffffffffffff16610e08611255565b73ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590613883565b60405180910390fd5b80600b9080519060200190610e74929190612d3c565b5050565b6000600c60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613803565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa9906137e3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611001611ddb565b73ffffffffffffffffffffffffffffffffffffffff1661101f611255565b73ffffffffffffffffffffffffffffffffffffffff1614611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90613883565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61113e610e78565b1561117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613983565b60405180910390fd5b611186611ddb565b73ffffffffffffffffffffffffffffffffffffffff166111a4611255565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613883565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861123e611ddb565b60405161124b9190613624565b60405180910390a1565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461128e90613c7d565b80601f01602080910402602001604051908101604052809291908181526020018280546112ba90613c7d565b80156113075780601f106112dc57610100808354040283529160200191611307565b820191906000526020600020905b8154815290600101906020018083116112ea57829003601f168201915b5050505050905090565b600080633b9aca00600d54426113279190613b89565b6113319190613b2f565b905067016345785d8a0000600e541115611355576064816113529190613b2f565b90505b600060056006600e546113689190613b2f565b6113729190613afe565b90506509184e72a000816113869190613b89565b821061139c576509184e72a000925050506113d2565b81816113a89190613b89565b90506709935f581f0500008111156113cc576709935f581f050000925050506113d2565b80925050505b90565b6113dd611ddb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290613783565b60405180910390fd5b8060056000611458611ddb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611505611ddb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154a919061368b565b60405180910390a35050565b6000611560611311565b905062022ae561156e610a15565b111561157957600080fd5b348111156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613843565b60405180910390fd5b346002826115ca9190613b2f565b1161160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906138a3565b60405180910390fd5b42600d8190555080600e81905550600082600f5460405160200161162f9291906135d4565b604051602081830303815290604052805190602001209050600060f81b81601f60208110611686577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82601e602081106116c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b83601d60208110611702577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b17177effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613903565b60405180910390fd5b600060d882901c60001c905061177f816119ef565b1561178957600080fd5b61179a611794611ddb565b826121d6565b50505050565b600f5481565b6117b76117b1611ddb565b83611e9c565b6117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90613943565b60405180910390fd5b611802848484846123a4565b50505050565b6509184e72a00081565b606061181d82611d6f565b61185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906138e3565b60405180910390fd5b6000611866612400565b9050600081511161188657604051806020016040528060008152506118b1565b8061189084612492565b6040516020016118a1929190613600565b6040516020818303038152906040525b915050919050565b6118c1611ddb565b73ffffffffffffffffffffffffffffffffffffffff166118df611255565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613883565b60405180910390fd5b61193e816119ef565b61194757600080fd5b611958611952611ddb565b826121d6565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600064ffffff0000821480611a08575064ffffff100082145b80611a17575064ffffff200082145b80611a26575064ffffff300082145b80611a35575064ffffff400082145b80611a44575064ffffff500082145b80611a53575064ffffff600082145b80611a62575064ffffff700082145b80611a71575064ffffff800082145b80611a80575064ffffff900082145b80611a8f575064ffffffa00082145b80611a9e575064ffffffb00082145b80611aad575064ffffffc00082145b80611abc575064ffffffd00082145b80611acb575064ffffffe00082145b80611ada575064fffffff00082145b9050919050565b611ae9611ddb565b73ffffffffffffffffffffffffffffffffffffffff16611b07611255565b73ffffffffffffffffffffffffffffffffffffffff1614611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490613883565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613723565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d5857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d685750611d678261263f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e5683610e8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ea782611d6f565b611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd906137a3565b60405180910390fd5b6000611ef183610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f6057508373ffffffffffffffffffffffffffffffffffffffff16611f4884610878565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f715750611f70818561195b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f9a82610e8f565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe7906138c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613763565b60405180910390fd5b61206b8383836126a9565b612076600082611de3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c69190613b89565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211d9190613aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613823565b60405180910390fd5b61224f81611d6f565b1561228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690613743565b60405180910390fd5b61229b600083836126a9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122eb9190613aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6123af848484611f7a565b6123bb84848484612701565b6123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613703565b60405180910390fd5b50505050565b6060600b805461240f90613c7d565b80601f016020809104026020016040519081016040528092919081815260200182805461243b90613c7d565b80156124885780601f1061245d57610100808354040283529160200191612488565b820191906000526020600020905b81548152906001019060200180831161246b57829003601f168201915b5050505050905090565b606060008214156124da576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263a565b600082905060005b6000821461250c5780806124f590613ce0565b915050600a826125059190613afe565b91506124e2565b60008167ffffffffffffffff81111561254e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125805781602001600182028036833780820191505090505b5090505b60008514612633576001826125999190613b89565b9150600a856125a89190613d33565b60306125b49190613aa8565b60f81b8183815181106125f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262c9190613afe565b9450612584565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126b1610e78565b156126f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e890613983565b60405180910390fd5b6126fc838383612898565b505050565b60006127228473ffffffffffffffffffffffffffffffffffffffff166129ac565b1561288b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261274b611ddb565b8786866040518563ffffffff1660e01b815260040161276d949392919061363f565b602060405180830381600087803b15801561278757600080fd5b505af19250505080156127b857506040513d601f19601f820116820180604052508101906127b59190613126565b60015b61283b573d80600081146127e8576040519150601f19603f3d011682016040523d82523d6000602084013e6127ed565b606091505b50600081511415612833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282a90613703565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612890565b600190505b949350505050565b6128a38383836129bf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e6576128e1816129c4565b612925565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612924576129238382612a0d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129685761296381612b7a565b6129a7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129a6576129a58282612cbd565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a1a84610f41565b612a249190613b89565b9050600060076000848152602001908152602001600020549050818114612b09576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b8e9190613b89565b9050600060096000848152602001908152602001600020549050600060088381548110612be4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612c2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ca1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612cc883610f41565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612d4890613c7d565b90600052602060002090601f016020900481019282612d6a5760008555612db1565b82601f10612d8357805160ff1916838001178555612db1565b82800160010185558215612db1579182015b82811115612db0578251825591602001919060010190612d95565b5b509050612dbe9190612dc2565b5090565b5b80821115612ddb576000816000905550600101612dc3565b5090565b6000612df2612ded84613a03565b6139de565b905082815260208101848484011115612e0a57600080fd5b612e15848285613c3b565b509392505050565b6000612e30612e2b84613a34565b6139de565b905082815260208101848484011115612e4857600080fd5b612e53848285613c3b565b509392505050565b600081359050612e6a816143f4565b92915050565b600081359050612e7f8161440b565b92915050565b600081359050612e9481614422565b92915050565b600081359050612ea981614439565b92915050565b600081519050612ebe81614439565b92915050565b600082601f830112612ed557600080fd5b8135612ee5848260208601612ddf565b91505092915050565b600082601f830112612eff57600080fd5b8135612f0f848260208601612e1d565b91505092915050565b600081359050612f2781614450565b92915050565b600060208284031215612f3f57600080fd5b6000612f4d84828501612e5b565b91505092915050565b60008060408385031215612f6957600080fd5b6000612f7785828601612e5b565b9250506020612f8885828601612e5b565b9150509250929050565b600080600060608486031215612fa757600080fd5b6000612fb586828701612e5b565b9350506020612fc686828701612e5b565b9250506040612fd786828701612f18565b9150509250925092565b60008060008060808587031215612ff757600080fd5b600061300587828801612e5b565b945050602061301687828801612e5b565b935050604061302787828801612f18565b925050606085013567ffffffffffffffff81111561304457600080fd5b61305087828801612ec4565b91505092959194509250565b6000806040838503121561306f57600080fd5b600061307d85828601612e5b565b925050602061308e85828601612e70565b9150509250929050565b600080604083850312156130ab57600080fd5b60006130b985828601612e5b565b92505060206130ca85828601612f18565b9150509250929050565b6000602082840312156130e657600080fd5b60006130f484828501612e85565b91505092915050565b60006020828403121561310f57600080fd5b600061311d84828501612e9a565b91505092915050565b60006020828403121561313857600080fd5b600061314684828501612eaf565b91505092915050565b60006020828403121561316157600080fd5b600082013567ffffffffffffffff81111561317b57600080fd5b61318784828501612eee565b91505092915050565b6000602082840312156131a257600080fd5b60006131b084828501612f18565b91505092915050565b6131c281613bbd565b82525050565b6131d181613bcf565b82525050565b6131e081613bdb565b82525050565b6131f76131f282613bdb565b613d29565b82525050565b600061320882613a65565b6132128185613a7b565b9350613222818560208601613c4a565b61322b81613e20565b840191505092915050565b600061324182613a70565b61324b8185613a8c565b935061325b818560208601613c4a565b61326481613e20565b840191505092915050565b600061327a82613a70565b6132848185613a9d565b9350613294818560208601613c4a565b80840191505092915050565b60006132ad602b83613a8c565b91506132b882613e31565b604082019050919050565b60006132d0603283613a8c565b91506132db82613e80565b604082019050919050565b60006132f3602683613a8c565b91506132fe82613ecf565b604082019050919050565b6000613316601c83613a8c565b915061332182613f1e565b602082019050919050565b6000613339602483613a8c565b915061334482613f47565b604082019050919050565b600061335c601983613a8c565b915061336782613f96565b602082019050919050565b600061337f602c83613a8c565b915061338a82613fbf565b604082019050919050565b60006133a2603883613a8c565b91506133ad8261400e565b604082019050919050565b60006133c5602a83613a8c565b91506133d08261405d565b604082019050919050565b60006133e8602983613a8c565b91506133f3826140ac565b604082019050919050565b600061340b602083613a8c565b9150613416826140fb565b602082019050919050565b600061342e601183613a8c565b915061343982614124565b602082019050919050565b6000613451602c83613a8c565b915061345c8261414d565b604082019050919050565b6000613474602083613a8c565b915061347f8261419c565b602082019050919050565b6000613497601183613a8c565b91506134a2826141c5565b602082019050919050565b60006134ba602983613a8c565b91506134c5826141ee565b604082019050919050565b60006134dd602f83613a8c565b91506134e88261423d565b604082019050919050565b6000613500600c83613a8c565b915061350b8261428c565b602082019050919050565b6000613523602183613a8c565b915061352e826142b5565b604082019050919050565b6000613546603183613a8c565b915061355182614304565b604082019050919050565b6000613569602c83613a8c565b915061357482614353565b604082019050919050565b600061358c600683613a8c565b9150613597826143a2565b602082019050919050565b60006135af600a83613a8c565b91506135ba826143cb565b602082019050919050565b6135ce81613c31565b82525050565b60006135e082856131e6565b6020820191506135f082846131e6565b6020820191508190509392505050565b600061360c828561326f565b9150613618828461326f565b91508190509392505050565b600060208201905061363960008301846131b9565b92915050565b600060808201905061365460008301876131b9565b61366160208301866131b9565b61366e60408301856135c5565b818103606083015261368081846131fd565b905095945050505050565b60006020820190506136a060008301846131c8565b92915050565b60006020820190506136bb60008301846131d7565b92915050565b600060208201905081810360008301526136db8184613236565b905092915050565b600060208201905081810360008301526136fc816132a0565b9050919050565b6000602082019050818103600083015261371c816132c3565b9050919050565b6000602082019050818103600083015261373c816132e6565b9050919050565b6000602082019050818103600083015261375c81613309565b9050919050565b6000602082019050818103600083015261377c8161332c565b9050919050565b6000602082019050818103600083015261379c8161334f565b9050919050565b600060208201905081810360008301526137bc81613372565b9050919050565b600060208201905081810360008301526137dc81613395565b9050919050565b600060208201905081810360008301526137fc816133b8565b9050919050565b6000602082019050818103600083015261381c816133db565b9050919050565b6000602082019050818103600083015261383c816133fe565b9050919050565b6000602082019050818103600083015261385c81613421565b9050919050565b6000602082019050818103600083015261387c81613444565b9050919050565b6000602082019050818103600083015261389c81613467565b9050919050565b600060208201905081810360008301526138bc8161348a565b9050919050565b600060208201905081810360008301526138dc816134ad565b9050919050565b600060208201905081810360008301526138fc816134d0565b9050919050565b6000602082019050818103600083015261391c816134f3565b9050919050565b6000602082019050818103600083015261393c81613516565b9050919050565b6000602082019050818103600083015261395c81613539565b9050919050565b6000602082019050818103600083015261397c8161355c565b9050919050565b6000602082019050818103600083015261399c8161357f565b9050919050565b600060208201905081810360008301526139bc816135a2565b9050919050565b60006020820190506139d860008301846135c5565b92915050565b60006139e86139f9565b90506139f48282613caf565b919050565b6000604051905090565b600067ffffffffffffffff821115613a1e57613a1d613df1565b5b613a2782613e20565b9050602081019050919050565b600067ffffffffffffffff821115613a4f57613a4e613df1565b5b613a5882613e20565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ab382613c31565b9150613abe83613c31565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613af357613af2613d64565b5b828201905092915050565b6000613b0982613c31565b9150613b1483613c31565b925082613b2457613b23613d93565b5b828204905092915050565b6000613b3a82613c31565b9150613b4583613c31565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b7e57613b7d613d64565b5b828202905092915050565b6000613b9482613c31565b9150613b9f83613c31565b925082821015613bb257613bb1613d64565b5b828203905092915050565b6000613bc882613c11565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c68578082015181840152602081019050613c4d565b83811115613c77576000848401525b50505050565b60006002820490506001821680613c9557607f821691505b60208210811415613ca957613ca8613dc2565b5b50919050565b613cb882613e20565b810181811067ffffffffffffffff82111715613cd757613cd6613df1565b5b80604052505050565b6000613ceb82613c31565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d1e57613d1d613d64565b5b600182019050919050565b6000819050919050565b6000613d3e82613c31565b9150613d4983613c31565b925082613d5957613d58613d93565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f65746865722062656c6f772072616e6765000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f65746865722061626f76652072616e6765000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f696e76616c696420736565640000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f7061757365640000000000000000000000000000000000000000000000000000600082015250565b7f6e6f742070617573656400000000000000000000000000000000000000000000600082015250565b6143fd81613bbd565b811461440857600080fd5b50565b61441481613bcf565b811461441f57600080fd5b50565b61442b81613bdb565b811461443657600080fd5b50565b61444281613be5565b811461444d57600080fd5b50565b61445981613c31565b811461446457600080fd5b5056fea26469706673582212204d90389e823959865b3d7167f6d62a9c53b43d0248c24c5eeaaf6eb7043d679e64736f6c63430008040033

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.