ETH Price: $3,359.42 (-8.24%)
 

Overview

Max Total Supply

9 WMC

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Null: 0x000...000
Balance
0 WMC
0x0000000000000000000000000000000000000000
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:
WrappedMistCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : WrappedMistCoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "DropBox.sol";


interface DropBoxInt {
    function deposit(uint256 value) external;
}

contract WrappedMistCoin is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {

    event DropBoxCreated(address indexed owner);
    event Wrapped(uint256 indexed value, address indexed owner);
    event Unwrapped(uint256 indexed tokenId, address indexed owner);

    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    // special drop box address for each MistCoin holder who wants to wrap
    mapping(address => address) public dropBoxes;

    // each token corresponds to a bill with a certain denomination
    mapping(uint256 => uint256) public denoms;

    MistCoinInt mistContract = MistCoinInt(0xf4eCEd2f682CE333f96f2D8966C613DeD8fC95DD);
    
    constructor() ERC721("WrappedMistCoin", "WMC") {}

    function createDropBox() public {
        require(dropBoxes[msg.sender] == address(0), "Drop box already exists.");

        DropBox dropContract = new DropBox(address(this));
        dropBoxes[msg.sender] = address(dropContract);
        
        emit DropBoxCreated(msg.sender);
    }

    function wrap(uint256 value) public {
        require(dropBoxes[msg.sender] != address(0), "You must create a drop box first."); 
        
        address dropBox = dropBoxes[msg.sender];

        require(value == 1 || value == 10 || value == 100 || value == 1000 || 
                value == 10000 || value == 100000 || value == 1000000 || value == 10000000, "Invalid denomination.");
        require(mistContract.balanceOf(dropBox) >= value, "Not enough MistCoin in drop box.");

        DropBoxInt(dropBox).deposit(value);
        denoms[_tokenIdCounter.current()] = value;
        _mintToken(msg.sender, value);
        
        emit Wrapped(value, msg.sender);
    }

    function unwrap(uint256 tokenId) public {
        require(_exists(tokenId), "Token does not exist.");
        require(msg.sender == ownerOf(tokenId), "You are not the owner.");

        mistContract.transfer(msg.sender, denoms[tokenId]);
        _burn(tokenId);

        emit Unwrapped(tokenId, msg.sender);
    }

    function _baseURI() internal pure override returns (string memory) {
        return "https://mc.ethyearone.com/";
    }

    function _mintToken(address to, uint256 value) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, value.toString());
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage) 
    {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 16 : DropBox.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;


interface MistCoinInt {
    function balanceOf(address owner) external returns (uint256 balance);
    function transfer(address to, uint256 value) external;
}

contract DropBox {

    address public wrapAddr;

    MistCoinInt mistContract = MistCoinInt(0xf4eCEd2f682CE333f96f2D8966C613DeD8fC95DD);
    
    constructor(address addr) {
        wrapAddr = addr;
    }

    function deposit(uint256 value) public {
        require(msg.sender == wrapAddr, "Only the wrapper contract has permission to deposit.");

        mistContract.transfer(wrapAddr, value);
    }
}

File 3 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 16 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 7 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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 8 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 9 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

    /**
     * @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 10 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 11 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 12 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"DropBoxCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"Wrapped","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":"createDropBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"denoms","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dropBoxes","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273f4eced2f682ce333f96f2d8966c613ded8fc95dd600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600f81526020017f577261707065644d697374436f696e00000000000000000000000000000000008152506040518060400160405280600381526020017f574d4300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000eb929190620001fb565b50806001908051906020019062000104929190620001fb565b505050620001276200011b6200012d60201b60201c565b6200013560201b60201c565b62000310565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020990620002ab565b90600052602060002090601f0160209004810192826200022d576000855562000279565b82601f106200024857805160ff191683800117855562000279565b8280016001018555821562000279579182015b82811115620002785782518255916020019190600101906200025b565b5b5090506200028891906200028c565b5090565b5b80821115620002a75760008160009055506001016200028d565b5090565b60006002820490506001821680620002c457607f821691505b60208210811415620002db57620002da620002e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614cba80620003206000396000f3fe60806040523480156200001157600080fd5b5060043610620001785760003560e01c8063715018a611620000d5578063c87b56dd1162000087578063c87b56dd1462000437578063d6d2bb98146200046d578063de0e9a3e14620004a3578063e985e9c514620004c3578063ea598cb014620004f9578063f2fde38b14620005195762000178565b8063715018a6146200039b5780638da5cb5b14620003a757806395d89b4114620003c9578063a22cb46514620003eb578063b88d4fde146200040b578063b8bdd4b2146200042b5762000178565b80632626e925116200012f5780632626e925146200026d5780632f745c5914620002a357806342842e0e14620002d95780634f6ccce714620002f95780636352211e146200032f57806370a0823114620003655762000178565b806301ffc9a7146200017d57806306fdde0314620001b3578063081812fc14620001d5578063095ea7b3146200020b57806318160ddd146200022b57806323b872dd146200024d575b600080fd5b6200019b60048036038101906200019591906200324e565b62000539565b604051620001aa9190620038a6565b60405180910390f35b620001bd6200054d565b604051620001cc9190620038c3565b60405180910390f35b620001f36004803603810190620001ed9190620032a6565b620005e7565b60405162000202919062003808565b60405180910390f35b6200022960048036038101906200022391906200320d565b62000671565b005b620002356200079a565b60405162000244919062003c5b565b60405180910390f35b6200026b6004803603810190620002659190620030f1565b620007a7565b005b6200028b6004803603810190620002859190620032a6565b62000810565b6040516200029a919062003c5b565b60405180910390f35b620002c16004803603810190620002bb91906200320d565b62000828565b604051620002d0919062003c5b565b60405180910390f35b620002f76004803603810190620002f19190620030f1565b620008d2565b005b620003176004803603810190620003119190620032a6565b620008f4565b60405162000326919062003c5b565b60405180910390f35b6200034d6004803603810190620003479190620032a6565b62000991565b6040516200035c919062003808565b60405180910390f35b6200038360048036038101906200037d919062003084565b62000a46565b60405162000392919062003c5b565b60405180910390f35b620003a562000b01565b005b620003b162000b92565b604051620003c0919062003808565b60405180910390f35b620003d362000bbc565b604051620003e29190620038c3565b60405180910390f35b620004096004803603810190620004039190620031cc565b62000c56565b005b62000429600480360381019062000423919062003147565b62000c70565b005b6200043562000cdb565b005b6200045560048036038101906200044f9190620032a6565b62000ead565b604051620004649190620038c3565b60405180910390f35b6200048b600480360381019062000485919062003084565b62000ec1565b6040516200049a919062003808565b60405180910390f35b620004c16004803603810190620004bb9190620032a6565b62000ef4565b005b620004e16004803603810190620004db9190620030b0565b620010b4565b604051620004f09190620038a6565b60405180910390f35b620005176004803603810190620005119190620032a6565b62001148565b005b62000537600480360381019062000531919062003084565b620014fe565b005b6000620005468262001602565b9050919050565b6060600080546200055e9062003ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546200058c9062003ea5565b8015620005dd5780601f10620005b157610100808354040283529160200191620005dd565b820191906000526020600020905b815481529060010190602001808311620005bf57829003601f168201915b5050505050905090565b6000620005f4826200167f565b62000636576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062d9062003b6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006200067e8262000991565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620006f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e99062003bd3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1662000713620016eb565b73ffffffffffffffffffffffffffffffffffffffff161480620007475750620007468162000740620016eb565b620010b4565b5b62000789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007809062003a7f565b60405180910390fd5b620007958383620016f3565b505050565b6000600880549050905090565b620007bc620007b5620016eb565b82620017ae565b620007fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f59062003bf5565b60405180910390fd5b6200080b83838362001899565b505050565b600e6020528060005260406000206000915090505481565b6000620008358362000a46565b821062000879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087090620038e7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b620008ef8383836040518060200160405280600081525062000c70565b505050565b6000620009006200079a565b821062000944576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093b9062003c39565b60405180910390fd5b600882815481106200097f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000a3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a349062003ac3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab19062003aa1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b62000b0b620016eb565b73ffffffffffffffffffffffffffffffffffffffff1662000b2b62000b92565b73ffffffffffffffffffffffffffffffffffffffff161462000b84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b7b9062003b8f565b60405180910390fd5b62000b90600062001b12565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805462000bcd9062003ea5565b80601f016020809104026020016040519081016040528092919081815260200182805462000bfb9062003ea5565b801562000c4c5780601f1062000c205761010080835404028352916020019162000c4c565b820191906000526020600020905b81548152906001019060200180831162000c2e57829003601f168201915b5050505050905090565b62000c6c62000c64620016eb565b838362001bd8565b5050565b62000c8562000c7e620016eb565b83620017ae565b62000cc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cbe9062003bf5565b60405180910390fd5b62000cd58484848462001d4a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000dac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000da39062003a19565b60405180910390fd5b60003060405162000dbd9062002e84565b62000dc9919062003808565b604051809103906000f08015801562000de6573d6000803e3d6000fd5b50905080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167f2c601b1355d1a6cd1373df5a1e2460c77aedfbb5c16c66b47bb96b35462808e260405160405180910390a250565b606062000eba8262001dad565b9050919050565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b62000eff816200167f565b62000f41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f389062003b29565b60405180910390fd5b62000f4c8162000991565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000fbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fb39062003c17565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600e6000858152602001908152602001600020546040518363ffffffff1660e01b81526004016200102e92919062003879565b600060405180830381600087803b1580156200104957600080fd5b505af11580156200105e573d6000803e3d6000fd5b505050506200106d8162001f16565b3373ffffffffffffffffffffffffffffffffffffffff16817f1d27d1c62712f590d53fa9eb8bbf3a75d09503deae319bb9d99644339cb312e160405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200121a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012119062003a3b565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060018214806200128e5750600a82145b806200129a5750606482145b80620012a757506103e882145b80620012b4575061271082145b80620012c25750620186a082145b80620012d05750620f424082145b80620012de57506298968082145b62001320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013179062003991565b60405180910390fd5b81600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016200137e919062003808565b602060405180830381600087803b1580156200139957600080fd5b505af1158015620013ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013d49190620032d2565b101562001418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200140f90620039b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663b6b55f25836040518263ffffffff1660e01b815260040162001453919062003c5b565b600060405180830381600087803b1580156200146e57600080fd5b505af115801562001483573d6000803e3d6000fd5b5050505081600e600062001498600c62001f24565b815260200190815260200160002081905550620014b6338362001f32565b3373ffffffffffffffffffffffffffffffffffffffff16827f9c307a39a47fdf1a019642a4e8a585ffe9894b5018226029887fe6d4241611bb60405160405180910390a35050565b62001508620016eb565b73ffffffffffffffffffffffffffffffffffffffff166200152862000b92565b73ffffffffffffffffffffffffffffffffffffffff161462001581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620015789062003b8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620015f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620015eb906200392b565b60405180910390fd5b620015ff8162001b12565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620016785750620016778262001f75565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16620017688362000991565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000620017bb826200167f565b620017fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017f49062003a5d565b60405180910390fd5b60006200180a8362000991565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806200184f57506200184e8185620010b4565b5b806200189057508373ffffffffffffffffffffffffffffffffffffffff166200187884620005e7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16620018bb8262000991565b73ffffffffffffffffffffffffffffffffffffffff161462001914576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200190b906200394d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001987576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200197e90620039d5565b60405180910390fd5b620019948383836200205b565b620019a1600082620016f3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620019f3919062003daf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462001a4c919062003d1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462001b0d8383836200206d565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001c4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001c4190620039f7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405162001d3d9190620038a6565b60405180910390a3505050565b62001d5784848462001899565b62001d658484848462002072565b62001da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001d9e9062003909565b60405180910390fd5b50505050565b606062001dba826200167f565b62001dfc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001df39062003b4b565b60405180910390fd5b6000600a6000848152602001908152602001600020805462001e1e9062003ea5565b80601f016020809104026020016040519081016040528092919081815260200182805462001e4c9062003ea5565b801562001e9d5780601f1062001e715761010080835404028352916020019162001e9d565b820191906000526020600020905b81548152906001019060200180831162001e7f57829003601f168201915b50505050509050600062001eb06200221b565b905060008151141562001ec857819250505062001f11565b60008251111562001f0157808260405160200162001ee8929190620037e0565b6040516020818303038152906040529250505062001f11565b62001f0c8462002258565b925050505b919050565b62001f21816200230c565b50565b600081600001549050919050565b600062001f40600c62001f24565b905062001f4e600c62002366565b62001f5a83826200237c565b62001f708162001f6a846200239c565b6200255e565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806200204157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806200205457506200205382620025d9565b5b9050919050565b6200206883838362002643565b505050565b505050565b6000620020958473ffffffffffffffffffffffffffffffffffffffff1662002767565b156200220e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620020c1620016eb565b8786866040518563ffffffff1660e01b8152600401620020e5949392919062003825565b602060405180830381600087803b1580156200210057600080fd5b505af19250505080156200213457506040513d601f19601f820116820180604052508101906200213191906200327a565b60015b620021bd573d806000811462002167576040519150601f19603f3d011682016040523d82523d6000602084013e6200216c565b606091505b50600081511415620021b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620021ac9062003909565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062002213565b600190505b949350505050565b60606040518060400160405280601a81526020017f68747470733a2f2f6d632e657468796561726f6e652e636f6d2f000000000000815250905090565b606062002265826200167f565b620022a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200229e9062003bb1565b60405180910390fd5b6000620022b36200221b565b90506000815111620022d5576040518060200160405280600081525062002304565b80620022e1846200239c565b604051602001620022f4929190620037e0565b6040516020818303038152906040525b915050919050565b62002317816200278a565b6000600a60008381526020019081526020016000208054620023399062003ea5565b9050146200236357600a6000828152602001908152602001600020600062002362919062002e92565b5b50565b6001816000016000828254019250508190555050565b62002398828260405180602001604052806000815250620028b1565b5050565b60606000821415620023e6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905062002559565b600082905060005b600082146200241e578080620024049062003f11565b915050600a8262002416919062003d77565b9150620023ee565b60008167ffffffffffffffff81111562002461577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015620024945781602001600182028036833780820191505090505b5090505b600085146200255257600182620024b0919062003daf565b9150600a85620024c1919062003f5f565b6030620024cf919062003d1a565b60f81b8183815181106200250c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856200254a919062003d77565b945062002498565b8093505050505b919050565b62002569826200167f565b620025ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620025a29062003ae5565b60405180910390fd5b80600a60008481526020019081526020016000209080519060200190620025d492919062002ed8565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6200265083838362002913565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200269757620026918162002918565b620026d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620026d857620026d7838262002961565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002720576200271a8162002ad3565b62002762565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620027615762002760828262002c1b565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000620027978262000991565b9050620027a7816000846200205b565b620027b4600083620016f3565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462002806919062003daf565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620028ad816000846200206d565b5050565b620028bd838362002c9c565b620028cc600084848462002072565b6200290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029059062003909565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620029708462000a46565b6200297c919062003daf565b905060006007600084815260200190815260200160002054905081811462002a62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062002ae9919062003daf565b905060006009600084815260200190815260200160002054905060006008838154811062002b40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062002b89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062002bff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062002c288362000a46565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002d0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002d069062003b07565b60405180910390fd5b62002d1a816200167f565b1562002d5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002d54906200396f565b60405180910390fd5b62002d6b600083836200205b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462002dbd919062003d1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462002e80600083836200206d565b5050565b610508806200477d83390190565b50805462002ea09062003ea5565b6000825580601f1062002eb4575062002ed5565b601f01602090049060005260206000209081019062002ed4919062002f69565b5b50565b82805462002ee69062003ea5565b90600052602060002090601f01602090048101928262002f0a576000855562002f56565b82601f1062002f2557805160ff191683800117855562002f56565b8280016001018555821562002f56579182015b8281111562002f5557825182559160200191906001019062002f38565b5b50905062002f65919062002f69565b5090565b5b8082111562002f8457600081600090555060010162002f6a565b5090565b600062002f9f62002f998462003ca1565b62003c78565b90508281526020810184848401111562002fb857600080fd5b62002fc584828562003e60565b509392505050565b60008135905062002fde8162004714565b92915050565b60008135905062002ff5816200472e565b92915050565b6000813590506200300c8162004748565b92915050565b600081519050620030238162004748565b92915050565b600082601f8301126200303b57600080fd5b81356200304d84826020860162002f88565b91505092915050565b600081359050620030678162004762565b92915050565b6000815190506200307e8162004762565b92915050565b6000602082840312156200309757600080fd5b6000620030a78482850162002fcd565b91505092915050565b60008060408385031215620030c457600080fd5b6000620030d48582860162002fcd565b9250506020620030e78582860162002fcd565b9150509250929050565b6000806000606084860312156200310757600080fd5b6000620031178682870162002fcd565b93505060206200312a8682870162002fcd565b92505060406200313d8682870162003056565b9150509250925092565b600080600080608085870312156200315e57600080fd5b60006200316e8782880162002fcd565b9450506020620031818782880162002fcd565b9350506040620031948782880162003056565b925050606085013567ffffffffffffffff811115620031b257600080fd5b620031c08782880162003029565b91505092959194509250565b60008060408385031215620031e057600080fd5b6000620031f08582860162002fcd565b9250506020620032038582860162002fe4565b9150509250929050565b600080604083850312156200322157600080fd5b6000620032318582860162002fcd565b9250506020620032448582860162003056565b9150509250929050565b6000602082840312156200326157600080fd5b6000620032718482850162002ffb565b91505092915050565b6000602082840312156200328d57600080fd5b60006200329d8482850162003012565b91505092915050565b600060208284031215620032b957600080fd5b6000620032c98482850162003056565b91505092915050565b600060208284031215620032e557600080fd5b6000620032f5848285016200306d565b91505092915050565b620033098162003dea565b82525050565b6200331a8162003dfe565b82525050565b60006200332d8262003cd7565b62003339818562003ced565b93506200334b81856020860162003e6f565b620033568162004053565b840191505092915050565b60006200336e8262003ce2565b6200337a818562003cfe565b93506200338c81856020860162003e6f565b620033978162004053565b840191505092915050565b6000620033af8262003ce2565b620033bb818562003d0f565b9350620033cd81856020860162003e6f565b80840191505092915050565b6000620033e8602b8362003cfe565b9150620033f58262004064565b604082019050919050565b60006200340f60328362003cfe565b91506200341c82620040b3565b604082019050919050565b60006200343660268362003cfe565b9150620034438262004102565b604082019050919050565b60006200345d60258362003cfe565b91506200346a8262004151565b604082019050919050565b600062003484601c8362003cfe565b91506200349182620041a0565b602082019050919050565b6000620034ab60158362003cfe565b9150620034b882620041c9565b602082019050919050565b6000620034d260208362003cfe565b9150620034df82620041f2565b602082019050919050565b6000620034f960248362003cfe565b915062003506826200421b565b604082019050919050565b60006200352060198362003cfe565b91506200352d826200426a565b602082019050919050565b60006200354760188362003cfe565b9150620035548262004293565b602082019050919050565b60006200356e60218362003cfe565b91506200357b82620042bc565b604082019050919050565b600062003595602c8362003cfe565b9150620035a2826200430b565b604082019050919050565b6000620035bc60388362003cfe565b9150620035c9826200435a565b604082019050919050565b6000620035e3602a8362003cfe565b9150620035f082620043a9565b604082019050919050565b60006200360a60298362003cfe565b91506200361782620043f8565b604082019050919050565b600062003631602e8362003cfe565b91506200363e8262004447565b604082019050919050565b60006200365860208362003cfe565b9150620036658262004496565b602082019050919050565b60006200367f60158362003cfe565b91506200368c82620044bf565b602082019050919050565b6000620036a660318362003cfe565b9150620036b382620044e8565b604082019050919050565b6000620036cd602c8362003cfe565b9150620036da8262004537565b604082019050919050565b6000620036f460208362003cfe565b9150620037018262004586565b602082019050919050565b60006200371b602f8362003cfe565b91506200372882620045af565b604082019050919050565b60006200374260218362003cfe565b91506200374f82620045fe565b604082019050919050565b60006200376960318362003cfe565b915062003776826200464d565b604082019050919050565b60006200379060168362003cfe565b91506200379d826200469c565b602082019050919050565b6000620037b7602c8362003cfe565b9150620037c482620046c5565b604082019050919050565b620037da8162003e56565b82525050565b6000620037ee8285620033a2565b9150620037fc8284620033a2565b91508190509392505050565b60006020820190506200381f6000830184620032fe565b92915050565b60006080820190506200383c6000830187620032fe565b6200384b6020830186620032fe565b6200385a6040830185620037cf565b81810360608301526200386e818462003320565b905095945050505050565b6000604082019050620038906000830185620032fe565b6200389f6020830184620037cf565b9392505050565b6000602082019050620038bd60008301846200330f565b92915050565b60006020820190508181036000830152620038df818462003361565b905092915050565b600060208201905081810360008301526200390281620033d9565b9050919050565b60006020820190508181036000830152620039248162003400565b9050919050565b60006020820190508181036000830152620039468162003427565b9050919050565b6000602082019050818103600083015262003968816200344e565b9050919050565b600060208201905081810360008301526200398a8162003475565b9050919050565b60006020820190508181036000830152620039ac816200349c565b9050919050565b60006020820190508181036000830152620039ce81620034c3565b9050919050565b60006020820190508181036000830152620039f081620034ea565b9050919050565b6000602082019050818103600083015262003a128162003511565b9050919050565b6000602082019050818103600083015262003a348162003538565b9050919050565b6000602082019050818103600083015262003a56816200355f565b9050919050565b6000602082019050818103600083015262003a788162003586565b9050919050565b6000602082019050818103600083015262003a9a81620035ad565b9050919050565b6000602082019050818103600083015262003abc81620035d4565b9050919050565b6000602082019050818103600083015262003ade81620035fb565b9050919050565b6000602082019050818103600083015262003b008162003622565b9050919050565b6000602082019050818103600083015262003b228162003649565b9050919050565b6000602082019050818103600083015262003b448162003670565b9050919050565b6000602082019050818103600083015262003b668162003697565b9050919050565b6000602082019050818103600083015262003b8881620036be565b9050919050565b6000602082019050818103600083015262003baa81620036e5565b9050919050565b6000602082019050818103600083015262003bcc816200370c565b9050919050565b6000602082019050818103600083015262003bee8162003733565b9050919050565b6000602082019050818103600083015262003c10816200375a565b9050919050565b6000602082019050818103600083015262003c328162003781565b9050919050565b6000602082019050818103600083015262003c5481620037a8565b9050919050565b600060208201905062003c726000830184620037cf565b92915050565b600062003c8462003c97565b905062003c92828262003edb565b919050565b6000604051905090565b600067ffffffffffffffff82111562003cbf5762003cbe62004024565b5b62003cca8262004053565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600062003d278262003e56565b915062003d348362003e56565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562003d6c5762003d6b62003f97565b5b828201905092915050565b600062003d848262003e56565b915062003d918362003e56565b92508262003da45762003da362003fc6565b5b828204905092915050565b600062003dbc8262003e56565b915062003dc98362003e56565b92508282101562003ddf5762003dde62003f97565b5b828203905092915050565b600062003df78262003e36565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101562003e8f57808201518184015260208101905062003e72565b8381111562003e9f576000848401525b50505050565b6000600282049050600182168062003ebe57607f821691505b6020821081141562003ed55762003ed462003ff5565b5b50919050565b62003ee68262004053565b810181811067ffffffffffffffff8211171562003f085762003f0762004024565b5b80604052505050565b600062003f1e8262003e56565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562003f545762003f5362003f97565b5b600182019050919050565b600062003f6c8262003e56565b915062003f798362003e56565b92508262003f8c5762003f8b62003fc6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c69642064656e6f6d696e6174696f6e2e0000000000000000000000600082015250565b7f4e6f7420656e6f756768204d697374436f696e20696e2064726f7020626f782e600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7020626f7820616c7265616479206578697374732e0000000000000000600082015250565b7f596f75206d7573742063726561746520612064726f7020626f7820666972737460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65722e00000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6200471f8162003dea565b81146200472b57600080fd5b50565b620047398162003dfe565b81146200474557600080fd5b50565b620047538162003e0a565b81146200475f57600080fd5b50565b6200476d8162003e56565b81146200477957600080fd5b5056fe608060405273f4eced2f682ce333f96f2d8966c613ded8fc95dd600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561006557600080fd5b50604051610508380380610508833981810160405281019061008791906100e2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610154565b6000815190506100dc8161013d565b92915050565b6000602082840312156100f457600080fd5b6000610102848285016100cd565b91505092915050565b60006101168261011d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6101468161010b565b811461015157600080fd5b50565b6103a5806101636000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063b6b55f251461003b578063c3f3d46e14610057575b600080fd5b610055600480360381019061005091906101ee565b610075565b005b61005f6101b5565b60405161006c9190610258565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100fa9061029c565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610180929190610273565b600060405180830381600087803b15801561019a57600080fd5b505af11580156101ae573d6000803e3d6000fd5b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000813590506101e881610358565b92915050565b60006020828403121561020057600080fd5b600061020e848285016101d9565b91505092915050565b610220816102cd565b82525050565b60006102336034836102bc565b915061023e82610309565b604082019050919050565b610252816102ff565b82525050565b600060208201905061026d6000830184610217565b92915050565b60006040820190506102886000830185610217565b6102956020830184610249565b9392505050565b600060208201905081810360008301526102b581610226565b9050919050565b600082825260208201905092915050565b60006102d8826102df565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4f6e6c7920746865207772617070657220636f6e74726163742068617320706560008201527f726d697373696f6e20746f206465706f7369742e000000000000000000000000602082015250565b610361816102ff565b811461036c57600080fd5b5056fea26469706673582212202dc5c96ef57d6431566f9f3552c56ec8a9e454d0b7913a41f07ead3b9b29161764736f6c63430008040033a26469706673582212207c4375036687114a2098ebd5b33267372621c3ec232944df19f6d3f48caf318b64736f6c63430008040033

Deployed Bytecode

0x60806040523480156200001157600080fd5b5060043610620001785760003560e01c8063715018a611620000d5578063c87b56dd1162000087578063c87b56dd1462000437578063d6d2bb98146200046d578063de0e9a3e14620004a3578063e985e9c514620004c3578063ea598cb014620004f9578063f2fde38b14620005195762000178565b8063715018a6146200039b5780638da5cb5b14620003a757806395d89b4114620003c9578063a22cb46514620003eb578063b88d4fde146200040b578063b8bdd4b2146200042b5762000178565b80632626e925116200012f5780632626e925146200026d5780632f745c5914620002a357806342842e0e14620002d95780634f6ccce714620002f95780636352211e146200032f57806370a0823114620003655762000178565b806301ffc9a7146200017d57806306fdde0314620001b3578063081812fc14620001d5578063095ea7b3146200020b57806318160ddd146200022b57806323b872dd146200024d575b600080fd5b6200019b60048036038101906200019591906200324e565b62000539565b604051620001aa9190620038a6565b60405180910390f35b620001bd6200054d565b604051620001cc9190620038c3565b60405180910390f35b620001f36004803603810190620001ed9190620032a6565b620005e7565b60405162000202919062003808565b60405180910390f35b6200022960048036038101906200022391906200320d565b62000671565b005b620002356200079a565b60405162000244919062003c5b565b60405180910390f35b6200026b6004803603810190620002659190620030f1565b620007a7565b005b6200028b6004803603810190620002859190620032a6565b62000810565b6040516200029a919062003c5b565b60405180910390f35b620002c16004803603810190620002bb91906200320d565b62000828565b604051620002d0919062003c5b565b60405180910390f35b620002f76004803603810190620002f19190620030f1565b620008d2565b005b620003176004803603810190620003119190620032a6565b620008f4565b60405162000326919062003c5b565b60405180910390f35b6200034d6004803603810190620003479190620032a6565b62000991565b6040516200035c919062003808565b60405180910390f35b6200038360048036038101906200037d919062003084565b62000a46565b60405162000392919062003c5b565b60405180910390f35b620003a562000b01565b005b620003b162000b92565b604051620003c0919062003808565b60405180910390f35b620003d362000bbc565b604051620003e29190620038c3565b60405180910390f35b620004096004803603810190620004039190620031cc565b62000c56565b005b62000429600480360381019062000423919062003147565b62000c70565b005b6200043562000cdb565b005b6200045560048036038101906200044f9190620032a6565b62000ead565b604051620004649190620038c3565b60405180910390f35b6200048b600480360381019062000485919062003084565b62000ec1565b6040516200049a919062003808565b60405180910390f35b620004c16004803603810190620004bb9190620032a6565b62000ef4565b005b620004e16004803603810190620004db9190620030b0565b620010b4565b604051620004f09190620038a6565b60405180910390f35b620005176004803603810190620005119190620032a6565b62001148565b005b62000537600480360381019062000531919062003084565b620014fe565b005b6000620005468262001602565b9050919050565b6060600080546200055e9062003ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546200058c9062003ea5565b8015620005dd5780601f10620005b157610100808354040283529160200191620005dd565b820191906000526020600020905b815481529060010190602001808311620005bf57829003601f168201915b5050505050905090565b6000620005f4826200167f565b62000636576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062d9062003b6d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006200067e8262000991565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620006f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e99062003bd3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1662000713620016eb565b73ffffffffffffffffffffffffffffffffffffffff161480620007475750620007468162000740620016eb565b620010b4565b5b62000789576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007809062003a7f565b60405180910390fd5b620007958383620016f3565b505050565b6000600880549050905090565b620007bc620007b5620016eb565b82620017ae565b620007fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f59062003bf5565b60405180910390fd5b6200080b83838362001899565b505050565b600e6020528060005260406000206000915090505481565b6000620008358362000a46565b821062000879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087090620038e7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b620008ef8383836040518060200160405280600081525062000c70565b505050565b6000620009006200079a565b821062000944576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093b9062003c39565b60405180910390fd5b600882815481106200097f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000a3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a349062003ac3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab19062003aa1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b62000b0b620016eb565b73ffffffffffffffffffffffffffffffffffffffff1662000b2b62000b92565b73ffffffffffffffffffffffffffffffffffffffff161462000b84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b7b9062003b8f565b60405180910390fd5b62000b90600062001b12565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805462000bcd9062003ea5565b80601f016020809104026020016040519081016040528092919081815260200182805462000bfb9062003ea5565b801562000c4c5780601f1062000c205761010080835404028352916020019162000c4c565b820191906000526020600020905b81548152906001019060200180831162000c2e57829003601f168201915b5050505050905090565b62000c6c62000c64620016eb565b838362001bd8565b5050565b62000c8562000c7e620016eb565b83620017ae565b62000cc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cbe9062003bf5565b60405180910390fd5b62000cd58484848462001d4a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000dac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000da39062003a19565b60405180910390fd5b60003060405162000dbd9062002e84565b62000dc9919062003808565b604051809103906000f08015801562000de6573d6000803e3d6000fd5b50905080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff167f2c601b1355d1a6cd1373df5a1e2460c77aedfbb5c16c66b47bb96b35462808e260405160405180910390a250565b606062000eba8262001dad565b9050919050565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b62000eff816200167f565b62000f41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f389062003b29565b60405180910390fd5b62000f4c8162000991565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000fbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fb39062003c17565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600e6000858152602001908152602001600020546040518363ffffffff1660e01b81526004016200102e92919062003879565b600060405180830381600087803b1580156200104957600080fd5b505af11580156200105e573d6000803e3d6000fd5b505050506200106d8162001f16565b3373ffffffffffffffffffffffffffffffffffffffff16817f1d27d1c62712f590d53fa9eb8bbf3a75d09503deae319bb9d99644339cb312e160405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200121a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012119062003a3b565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060018214806200128e5750600a82145b806200129a5750606482145b80620012a757506103e882145b80620012b4575061271082145b80620012c25750620186a082145b80620012d05750620f424082145b80620012de57506298968082145b62001320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013179062003991565b60405180910390fd5b81600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016200137e919062003808565b602060405180830381600087803b1580156200139957600080fd5b505af1158015620013ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013d49190620032d2565b101562001418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200140f90620039b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663b6b55f25836040518263ffffffff1660e01b815260040162001453919062003c5b565b600060405180830381600087803b1580156200146e57600080fd5b505af115801562001483573d6000803e3d6000fd5b5050505081600e600062001498600c62001f24565b815260200190815260200160002081905550620014b6338362001f32565b3373ffffffffffffffffffffffffffffffffffffffff16827f9c307a39a47fdf1a019642a4e8a585ffe9894b5018226029887fe6d4241611bb60405160405180910390a35050565b62001508620016eb565b73ffffffffffffffffffffffffffffffffffffffff166200152862000b92565b73ffffffffffffffffffffffffffffffffffffffff161462001581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620015789062003b8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620015f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620015eb906200392b565b60405180910390fd5b620015ff8162001b12565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480620016785750620016778262001f75565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16620017688362000991565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000620017bb826200167f565b620017fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017f49062003a5d565b60405180910390fd5b60006200180a8362000991565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806200184f57506200184e8185620010b4565b5b806200189057508373ffffffffffffffffffffffffffffffffffffffff166200187884620005e7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16620018bb8262000991565b73ffffffffffffffffffffffffffffffffffffffff161462001914576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200190b906200394d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001987576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200197e90620039d5565b60405180910390fd5b620019948383836200205b565b620019a1600082620016f3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620019f3919062003daf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462001a4c919062003d1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462001b0d8383836200206d565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001c4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001c4190620039f7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405162001d3d9190620038a6565b60405180910390a3505050565b62001d5784848462001899565b62001d658484848462002072565b62001da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001d9e9062003909565b60405180910390fd5b50505050565b606062001dba826200167f565b62001dfc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001df39062003b4b565b60405180910390fd5b6000600a6000848152602001908152602001600020805462001e1e9062003ea5565b80601f016020809104026020016040519081016040528092919081815260200182805462001e4c9062003ea5565b801562001e9d5780601f1062001e715761010080835404028352916020019162001e9d565b820191906000526020600020905b81548152906001019060200180831162001e7f57829003601f168201915b50505050509050600062001eb06200221b565b905060008151141562001ec857819250505062001f11565b60008251111562001f0157808260405160200162001ee8929190620037e0565b6040516020818303038152906040529250505062001f11565b62001f0c8462002258565b925050505b919050565b62001f21816200230c565b50565b600081600001549050919050565b600062001f40600c62001f24565b905062001f4e600c62002366565b62001f5a83826200237c565b62001f708162001f6a846200239c565b6200255e565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806200204157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806200205457506200205382620025d9565b5b9050919050565b6200206883838362002643565b505050565b505050565b6000620020958473ffffffffffffffffffffffffffffffffffffffff1662002767565b156200220e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620020c1620016eb565b8786866040518563ffffffff1660e01b8152600401620020e5949392919062003825565b602060405180830381600087803b1580156200210057600080fd5b505af19250505080156200213457506040513d601f19601f820116820180604052508101906200213191906200327a565b60015b620021bd573d806000811462002167576040519150601f19603f3d011682016040523d82523d6000602084013e6200216c565b606091505b50600081511415620021b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620021ac9062003909565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062002213565b600190505b949350505050565b60606040518060400160405280601a81526020017f68747470733a2f2f6d632e657468796561726f6e652e636f6d2f000000000000815250905090565b606062002265826200167f565b620022a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200229e9062003bb1565b60405180910390fd5b6000620022b36200221b565b90506000815111620022d5576040518060200160405280600081525062002304565b80620022e1846200239c565b604051602001620022f4929190620037e0565b6040516020818303038152906040525b915050919050565b62002317816200278a565b6000600a60008381526020019081526020016000208054620023399062003ea5565b9050146200236357600a6000828152602001908152602001600020600062002362919062002e92565b5b50565b6001816000016000828254019250508190555050565b62002398828260405180602001604052806000815250620028b1565b5050565b60606000821415620023e6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905062002559565b600082905060005b600082146200241e578080620024049062003f11565b915050600a8262002416919062003d77565b9150620023ee565b60008167ffffffffffffffff81111562002461577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015620024945781602001600182028036833780820191505090505b5090505b600085146200255257600182620024b0919062003daf565b9150600a85620024c1919062003f5f565b6030620024cf919062003d1a565b60f81b8183815181106200250c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856200254a919062003d77565b945062002498565b8093505050505b919050565b62002569826200167f565b620025ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620025a29062003ae5565b60405180910390fd5b80600a60008481526020019081526020016000209080519060200190620025d492919062002ed8565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6200265083838362002913565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200269757620026918162002918565b620026d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620026d857620026d7838262002961565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002720576200271a8162002ad3565b62002762565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620027615762002760828262002c1b565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000620027978262000991565b9050620027a7816000846200205b565b620027b4600083620016f3565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462002806919062003daf565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620028ad816000846200206d565b5050565b620028bd838362002c9c565b620028cc600084848462002072565b6200290e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620029059062003909565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620029708462000a46565b6200297c919062003daf565b905060006007600084815260200190815260200160002054905081811462002a62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062002ae9919062003daf565b905060006009600084815260200190815260200160002054905060006008838154811062002b40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062002b89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062002bff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062002c288362000a46565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562002d0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002d069062003b07565b60405180910390fd5b62002d1a816200167f565b1562002d5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002d54906200396f565b60405180910390fd5b62002d6b600083836200205b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462002dbd919062003d1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462002e80600083836200206d565b5050565b610508806200477d83390190565b50805462002ea09062003ea5565b6000825580601f1062002eb4575062002ed5565b601f01602090049060005260206000209081019062002ed4919062002f69565b5b50565b82805462002ee69062003ea5565b90600052602060002090601f01602090048101928262002f0a576000855562002f56565b82601f1062002f2557805160ff191683800117855562002f56565b8280016001018555821562002f56579182015b8281111562002f5557825182559160200191906001019062002f38565b5b50905062002f65919062002f69565b5090565b5b8082111562002f8457600081600090555060010162002f6a565b5090565b600062002f9f62002f998462003ca1565b62003c78565b90508281526020810184848401111562002fb857600080fd5b62002fc584828562003e60565b509392505050565b60008135905062002fde8162004714565b92915050565b60008135905062002ff5816200472e565b92915050565b6000813590506200300c8162004748565b92915050565b600081519050620030238162004748565b92915050565b600082601f8301126200303b57600080fd5b81356200304d84826020860162002f88565b91505092915050565b600081359050620030678162004762565b92915050565b6000815190506200307e8162004762565b92915050565b6000602082840312156200309757600080fd5b6000620030a78482850162002fcd565b91505092915050565b60008060408385031215620030c457600080fd5b6000620030d48582860162002fcd565b9250506020620030e78582860162002fcd565b9150509250929050565b6000806000606084860312156200310757600080fd5b6000620031178682870162002fcd565b93505060206200312a8682870162002fcd565b92505060406200313d8682870162003056565b9150509250925092565b600080600080608085870312156200315e57600080fd5b60006200316e8782880162002fcd565b9450506020620031818782880162002fcd565b9350506040620031948782880162003056565b925050606085013567ffffffffffffffff811115620031b257600080fd5b620031c08782880162003029565b91505092959194509250565b60008060408385031215620031e057600080fd5b6000620031f08582860162002fcd565b9250506020620032038582860162002fe4565b9150509250929050565b600080604083850312156200322157600080fd5b6000620032318582860162002fcd565b9250506020620032448582860162003056565b9150509250929050565b6000602082840312156200326157600080fd5b6000620032718482850162002ffb565b91505092915050565b6000602082840312156200328d57600080fd5b60006200329d8482850162003012565b91505092915050565b600060208284031215620032b957600080fd5b6000620032c98482850162003056565b91505092915050565b600060208284031215620032e557600080fd5b6000620032f5848285016200306d565b91505092915050565b620033098162003dea565b82525050565b6200331a8162003dfe565b82525050565b60006200332d8262003cd7565b62003339818562003ced565b93506200334b81856020860162003e6f565b620033568162004053565b840191505092915050565b60006200336e8262003ce2565b6200337a818562003cfe565b93506200338c81856020860162003e6f565b620033978162004053565b840191505092915050565b6000620033af8262003ce2565b620033bb818562003d0f565b9350620033cd81856020860162003e6f565b80840191505092915050565b6000620033e8602b8362003cfe565b9150620033f58262004064565b604082019050919050565b60006200340f60328362003cfe565b91506200341c82620040b3565b604082019050919050565b60006200343660268362003cfe565b9150620034438262004102565b604082019050919050565b60006200345d60258362003cfe565b91506200346a8262004151565b604082019050919050565b600062003484601c8362003cfe565b91506200349182620041a0565b602082019050919050565b6000620034ab60158362003cfe565b9150620034b882620041c9565b602082019050919050565b6000620034d260208362003cfe565b9150620034df82620041f2565b602082019050919050565b6000620034f960248362003cfe565b915062003506826200421b565b604082019050919050565b60006200352060198362003cfe565b91506200352d826200426a565b602082019050919050565b60006200354760188362003cfe565b9150620035548262004293565b602082019050919050565b60006200356e60218362003cfe565b91506200357b82620042bc565b604082019050919050565b600062003595602c8362003cfe565b9150620035a2826200430b565b604082019050919050565b6000620035bc60388362003cfe565b9150620035c9826200435a565b604082019050919050565b6000620035e3602a8362003cfe565b9150620035f082620043a9565b604082019050919050565b60006200360a60298362003cfe565b91506200361782620043f8565b604082019050919050565b600062003631602e8362003cfe565b91506200363e8262004447565b604082019050919050565b60006200365860208362003cfe565b9150620036658262004496565b602082019050919050565b60006200367f60158362003cfe565b91506200368c82620044bf565b602082019050919050565b6000620036a660318362003cfe565b9150620036b382620044e8565b604082019050919050565b6000620036cd602c8362003cfe565b9150620036da8262004537565b604082019050919050565b6000620036f460208362003cfe565b9150620037018262004586565b602082019050919050565b60006200371b602f8362003cfe565b91506200372882620045af565b604082019050919050565b60006200374260218362003cfe565b91506200374f82620045fe565b604082019050919050565b60006200376960318362003cfe565b915062003776826200464d565b604082019050919050565b60006200379060168362003cfe565b91506200379d826200469c565b602082019050919050565b6000620037b7602c8362003cfe565b9150620037c482620046c5565b604082019050919050565b620037da8162003e56565b82525050565b6000620037ee8285620033a2565b9150620037fc8284620033a2565b91508190509392505050565b60006020820190506200381f6000830184620032fe565b92915050565b60006080820190506200383c6000830187620032fe565b6200384b6020830186620032fe565b6200385a6040830185620037cf565b81810360608301526200386e818462003320565b905095945050505050565b6000604082019050620038906000830185620032fe565b6200389f6020830184620037cf565b9392505050565b6000602082019050620038bd60008301846200330f565b92915050565b60006020820190508181036000830152620038df818462003361565b905092915050565b600060208201905081810360008301526200390281620033d9565b9050919050565b60006020820190508181036000830152620039248162003400565b9050919050565b60006020820190508181036000830152620039468162003427565b9050919050565b6000602082019050818103600083015262003968816200344e565b9050919050565b600060208201905081810360008301526200398a8162003475565b9050919050565b60006020820190508181036000830152620039ac816200349c565b9050919050565b60006020820190508181036000830152620039ce81620034c3565b9050919050565b60006020820190508181036000830152620039f081620034ea565b9050919050565b6000602082019050818103600083015262003a128162003511565b9050919050565b6000602082019050818103600083015262003a348162003538565b9050919050565b6000602082019050818103600083015262003a56816200355f565b9050919050565b6000602082019050818103600083015262003a788162003586565b9050919050565b6000602082019050818103600083015262003a9a81620035ad565b9050919050565b6000602082019050818103600083015262003abc81620035d4565b9050919050565b6000602082019050818103600083015262003ade81620035fb565b9050919050565b6000602082019050818103600083015262003b008162003622565b9050919050565b6000602082019050818103600083015262003b228162003649565b9050919050565b6000602082019050818103600083015262003b448162003670565b9050919050565b6000602082019050818103600083015262003b668162003697565b9050919050565b6000602082019050818103600083015262003b8881620036be565b9050919050565b6000602082019050818103600083015262003baa81620036e5565b9050919050565b6000602082019050818103600083015262003bcc816200370c565b9050919050565b6000602082019050818103600083015262003bee8162003733565b9050919050565b6000602082019050818103600083015262003c10816200375a565b9050919050565b6000602082019050818103600083015262003c328162003781565b9050919050565b6000602082019050818103600083015262003c5481620037a8565b9050919050565b600060208201905062003c726000830184620037cf565b92915050565b600062003c8462003c97565b905062003c92828262003edb565b919050565b6000604051905090565b600067ffffffffffffffff82111562003cbf5762003cbe62004024565b5b62003cca8262004053565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600062003d278262003e56565b915062003d348362003e56565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562003d6c5762003d6b62003f97565b5b828201905092915050565b600062003d848262003e56565b915062003d918362003e56565b92508262003da45762003da362003fc6565b5b828204905092915050565b600062003dbc8262003e56565b915062003dc98362003e56565b92508282101562003ddf5762003dde62003f97565b5b828203905092915050565b600062003df78262003e36565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101562003e8f57808201518184015260208101905062003e72565b8381111562003e9f576000848401525b50505050565b6000600282049050600182168062003ebe57607f821691505b6020821081141562003ed55762003ed462003ff5565b5b50919050565b62003ee68262004053565b810181811067ffffffffffffffff8211171562003f085762003f0762004024565b5b80604052505050565b600062003f1e8262003e56565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562003f545762003f5362003f97565b5b600182019050919050565b600062003f6c8262003e56565b915062003f798362003e56565b92508262003f8c5762003f8b62003fc6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c69642064656e6f6d696e6174696f6e2e0000000000000000000000600082015250565b7f4e6f7420656e6f756768204d697374436f696e20696e2064726f7020626f782e600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7020626f7820616c7265616479206578697374732e0000000000000000600082015250565b7f596f75206d7573742063726561746520612064726f7020626f7820666972737460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65722e00000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6200471f8162003dea565b81146200472b57600080fd5b50565b620047398162003dfe565b81146200474557600080fd5b50565b620047538162003e0a565b81146200475f57600080fd5b50565b6200476d8162003e56565b81146200477957600080fd5b5056fe608060405273f4eced2f682ce333f96f2d8966c613ded8fc95dd600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561006557600080fd5b50604051610508380380610508833981810160405281019061008791906100e2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610154565b6000815190506100dc8161013d565b92915050565b6000602082840312156100f457600080fd5b6000610102848285016100cd565b91505092915050565b60006101168261011d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6101468161010b565b811461015157600080fd5b50565b6103a5806101636000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063b6b55f251461003b578063c3f3d46e14610057575b600080fd5b610055600480360381019061005091906101ee565b610075565b005b61005f6101b5565b60405161006c9190610258565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100fa9061029c565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610180929190610273565b600060405180830381600087803b15801561019a57600080fd5b505af11580156101ae573d6000803e3d6000fd5b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000813590506101e881610358565b92915050565b60006020828403121561020057600080fd5b600061020e848285016101d9565b91505092915050565b610220816102cd565b82525050565b60006102336034836102bc565b915061023e82610309565b604082019050919050565b610252816102ff565b82525050565b600060208201905061026d6000830184610217565b92915050565b60006040820190506102886000830185610217565b6102956020830184610249565b9392505050565b600060208201905081810360008301526102b581610226565b9050919050565b600082825260208201905092915050565b60006102d8826102df565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4f6e6c7920746865207772617070657220636f6e74726163742068617320706560008201527f726d697373696f6e20746f206465706f7369742e000000000000000000000000602082015250565b610361816102ff565b811461036c57600080fd5b5056fea26469706673582212202dc5c96ef57d6431566f9f3552c56ec8a9e454d0b7913a41f07ead3b9b29161764736f6c63430008040033a26469706673582212207c4375036687114a2098ebd5b33267372621c3ec232944df19f6d3f48caf318b64736f6c63430008040033

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.