ETH Price: $2,425.48 (+0.11%)

Token

Cosmic Caps (COSMIC)
 

Overview

Max Total Supply

356 COSMIC

Holders

133

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mabinc.eth
Balance
1 COSMIC
0xb604ADF39e054243aa08840f66226a78fEeDd4B0
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:
CosmicCaps

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Cosmic Caps.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**


╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╭━━━╮
┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱┃╭━╮┃
┃┃╱╰╋━━┳━━┳╮╭┳┳━━╮┃┃╱╰╋━━┳━━┳━━╮
┃┃╱╭┫╭╮┃━━┫╰╯┣┫╭━╯┃┃╱╭┫╭╮┃╭╮┃━━┫
┃╰━╯┃╰╯┣━━┃┃┃┃┃╰━╮┃╰━╯┃╭╮┃╰╯┣━━┃
╰━━━┻━━┻━━┻┻┻┻┻━━╯╰━━━┻╯╰┫╭━┻━━╯
╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃┃
╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰╯



credit to DerpyBirbs contract and team
Cosmic Caps are fungi from far out in the shroomiverse, and they want to chill with you!

*/

contract CosmicCaps is Context, ERC721Enumerable, ERC721Burnable, Ownable {
    uint internal constant MAX_MINTS_PER_TRANSACTION = 32;
    // uint internal constant TOKEN_LIMIT = 10;
    uint internal constant TOKEN_LIMIT = 10000;

    uint private nonce = 0;
    uint[TOKEN_LIMIT] private indices;
    uint private numTokens = 0;

    uint256 internal _mintPrice = 0;




    //  REMOVE TESTNET ADDRESSES BEFORE DEPLOYMENT ON MAINNET
    address payable internal jukabo = payable(0xfF190a4CC92b154635140335791D3779F60DC311);
    //  REMOVE TESTNET ADDRESSES BEFORE DEPLOYMENT ON MAINNET




    string internal _baseTokenURI;
    bool internal saleStarted = false;
    bool internal URISet = false;
    uint internal devSupplyAwarded = 0;

    /**
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol,string memory baseTokenURI) ERC721(name, symbol) {
         _baseTokenURI = baseTokenURI;
        //dont call awardDevs() here, initial supply here, too much gas for one transaction
    }

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

    /**
    * Can only be called twice. Gives 64 total Shrooms to devs for giveaways, marketing purposes and team members.
    * 28 of these will go to Treasure Chests holders.
    */
    function give32TokensToDevs() external onlyOwner {
        require(saleStarted == false,"Sale has already started");
        require(devSupplyAwarded < 64,"Dev supply has already been awarded");
        uint i;
        uint id;

        for(i = 0; i < 32; i++){
            id = randomIndex();
            _mint(jukabo, id);
            numTokens = numTokens + 1;
        }

        devSupplyAwarded = devSupplyAwarded+1;
    }

    /**
    * Credits to LarvaLabs Meebits contract
    */
    function randomIndex() internal returns (uint) {
        uint totalSize = TOKEN_LIMIT - numTokens;
        uint index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
        uint value = 0;

        if (indices[index] != 0) {
            value = indices[index];
        } else {
            value = index;
        }

        // Move last value to selected position
        if (indices[totalSize - 1] == 0) {
            // Array position not initialized, so use position
            indices[index] = totalSize - 1;
        } else {
            // Array position holds a value so use that
            indices[index] = indices[totalSize - 1];
        }
        nonce++;
        // Don't allow a zero index, start counting at 1
        return value+1;
    }

    /**
     * @dev Creates a new token. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     */
    function mint(address to, uint amount) external payable{
        //check sale start
        require(saleStarted == true, "Sale has not started yet.");

        //only 9999 Cosmic Caps
        require(numTokens < TOKEN_LIMIT, "Mint request exceeds total supply!");

        //mint at least one
        require(amount > 0, "Must mint at least one.");

        //32 max per transaction
        require(amount <= MAX_MINTS_PER_TRANSACTION, "Mint exceeds limit per call.");

        //dont overmint
        require(amount <= TOKEN_LIMIT-numTokens,"Mint request exceeds current supply!");

        //check payment
        require(msg.value == _mintPrice * amount, "msg.value invalid");

        uint id;
        uint i;

        for(i = 0; i < amount; i++){
            id = randomIndex();
            _mint(to, id);
            numTokens = numTokens + 1;
        }

    }

    /**
     * @dev Withdraws funds to dev and art teams
     *
     */
    function withdrawFunds() external virtual {
        uint256 balance = address(this).balance;
        jukabo.transfer(balance);
    }

    /**
    * Devs cant change URI after the sale begins
    */
    function setBaseURI(string memory baseTokenURI) external onlyOwner {
        require(saleStarted == false,"Can't change metadata after the sale has started");
        _baseTokenURI = baseTokenURI;
        URISet = true;
    }


    /**
    * Start the sale (cant be stopped later)
    */
    function startSale(uint256 mintPrice) external virtual onlyOwner {
        require(saleStarted == false,"Sale has already started");
        require(URISet == true, "URI not set");
        mintPrice = 0.06 ether;
        require(mintPrice > 0.01 ether,"Price too low");
        _mintPrice = mintPrice;
        saleStarted = true;
    }


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

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

    function getAmountMinted() external view returns (uint256) {
        return numTokens;
    }

    function getMaxSupply() external pure returns (uint256) {
        return TOKEN_LIMIT;
    }

    function getMintPrice() external view returns (uint256) {
        return _mintPrice;
    }

    function hasSaleStarted() external view returns (bool) {
        return saleStarted;
    }

}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 5 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 7 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"give32TokensToDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b55600061271c55600061271d5573ff190a4cc92b154635140335791d3779f60dc31161271e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600061272060006101000a81548160ff021916908315150217905550600061272060016101000a81548160ff021916908315150217905550600061272155348015620000b657600080fd5b5060405162004e6e38038062004e6e8339818101604052810190620000dc919062000345565b82828160009080519060200190620000f692919062000223565b5080600190805190602001906200010f92919062000223565b50505062000132620001266200015560201b60201c565b6200015d60201b60201c565b8061271f90805190602001906200014b92919062000223565b5050505062000556565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000231906200047b565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b6000620002ea620002e4846200040f565b620003e6565b9050828152602081018484840111156200030357600080fd5b6200031084828562000445565b509392505050565b600082601f8301126200032a57600080fd5b81516200033c848260208601620002d3565b91505092915050565b6000806000606084860312156200035b57600080fd5b600084015167ffffffffffffffff8111156200037657600080fd5b620003848682870162000318565b935050602084015167ffffffffffffffff811115620003a257600080fd5b620003b08682870162000318565b925050604084015167ffffffffffffffff811115620003ce57600080fd5b620003dc8682870162000318565b9150509250925092565b6000620003f262000405565b9050620004008282620004b1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200042d576200042c62000516565b5b620004388262000545565b9050602081019050919050565b60005b838110156200046557808201518184015260208101905062000448565b8381111562000475576000848401525b50505050565b600060028204905060018216806200049457607f821691505b60208210811415620004ab57620004aa620004e7565b5b50919050565b620004bc8262000545565b810181811067ffffffffffffffff82111715620004de57620004dd62000516565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61490880620005666000396000f3fe6080604052600436106101c25760003560e01c80634c0f38c2116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461060b578063e777df2014610648578063e985e9c514610673578063f2fde38b146106b0576101c2565b806395d89b4114610563578063a22cb4651461058e578063a7f93ebd146105b7578063b88d4fde146105e2576101c2565b80636352211e116100d15780636352211e146104a757806370a08231146104e4578063715018a6146105215780638da5cb5b14610538576101c2565b80634c0f38c2146104165780634f6ccce71461044157806355f804b31461047e576101c2565b806323b872dd116101645780632f745c591161013e5780632f745c591461036b57806340c10f19146103a857806342842e0e146103c457806342966c68146103ed576101c2565b806323b872dd1461031457806324600fc31461033d57806326c3f3da14610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630e3ab61d1461029557806318160ddd146102be5780631c8b232d146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613197565b6106d9565b6040516101fb9190613844565b60405180910390f35b34801561021057600080fd5b506102196106eb565b604051610226919061385f565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061322a565b61077d565b60405161026391906137dd565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061315b565b610802565b005b3480156102a157600080fd5b506102bc60048036038101906102b7919061322a565b61091a565b005b3480156102ca57600080fd5b506102d3610abe565b6040516102e09190613c41565b60405180910390f35b3480156102f557600080fd5b506102fe610acb565b60405161030b9190613844565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613055565b610ae3565b005b34801561034957600080fd5b50610352610b43565b005b34801561036057600080fd5b50610369610bb5565b005b34801561037757600080fd5b50610392600480360381019061038d919061315b565b610d5b565b60405161039f9190613c41565b60405180910390f35b6103c260048036038101906103bd919061315b565b610e00565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613055565b61101c565b005b3480156103f957600080fd5b50610414600480360381019061040f919061322a565b61103c565b005b34801561042257600080fd5b5061042b611098565b6040516104389190613c41565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061322a565b6110a2565b6040516104759190613c41565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a091906131e9565b611139565b005b3480156104b357600080fd5b506104ce60048036038101906104c9919061322a565b611243565b6040516104db91906137dd565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612ff0565b6112f5565b6040516105189190613c41565b60405180910390f35b34801561052d57600080fd5b506105366113ad565b005b34801561054457600080fd5b5061054d611435565b60405161055a91906137dd565b60405180910390f35b34801561056f57600080fd5b5061057861145f565b604051610585919061385f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b0919061311f565b6114f1565b005b3480156105c357600080fd5b506105cc611672565b6040516105d99190613c41565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906130a4565b61167d565b005b34801561061757600080fd5b50610632600480360381019061062d919061322a565b6116df565b60405161063f919061385f565b60405180910390f35b34801561065457600080fd5b5061065d611786565b60405161066a9190613c41565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613019565b611791565b6040516106a79190613844565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612ff0565b611825565b005b60006106e48261191d565b9050919050565b6060600080546106fa90613ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461072690613ef1565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b600061078882611997565b6107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90613ae1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080d82611243565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087590613b81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089d611a03565b73ffffffffffffffffffffffffffffffffffffffff1614806108cc57506108cb816108c6611a03565b611791565b5b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290613a41565b60405180910390fd5b6109158383611a0b565b505050565b610922611a03565b73ffffffffffffffffffffffffffffffffffffffff16610940611435565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613b01565b60405180910390fd5b6000151561272060009054906101000a900460ff161515146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613aa1565b60405180910390fd5b6001151561272060019054906101000a900460ff16151514610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906138e1565b60405180910390fd5b66d529ae9e8600009050662386f26fc100008111610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613ba1565b60405180910390fd5b8061271d81905550600161272060006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b600061272060009054906101000a900460ff16905090565b610af4610aee611a03565b82611ac4565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613bc1565b60405180910390fd5b610b3e838383611ba2565b505050565b600047905061271e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb1573d6000803e3d6000fd5b5050565b610bbd611a03565b73ffffffffffffffffffffffffffffffffffffffff16610bdb611435565b73ffffffffffffffffffffffffffffffffffffffff1614610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613b01565b60405180910390fd5b6000151561272060009054906101000a900460ff16151514610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90613aa1565b60405180910390fd5b60406127215410610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc5906139e1565b60405180910390fd5b600080600091505b6020821015610d4057610ce7611dfe565b9050610d1661271e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261203c565b600161271c54610d269190613d26565b61271c819055508180610d3890613f54565b925050610cd6565b600161272154610d509190613d26565b612721819055505050565b6000610d66836112f5565b8210610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613901565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6001151561272060009054906101000a900460ff16151514610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613b61565b60405180910390fd5b61271061271c5410610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613961565b60405180910390fd5b60008111610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613a21565b60405180910390fd5b6020811115610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906138c1565b60405180910390fd5b61271c54612710610f369190613e07565b811115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906138a1565b60405180910390fd5b8061271d54610f879190613dad565b3414610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613881565b60405180910390fd5b600080600090505b8281101561101657610fe0611dfe565b9150610fec848361203c565b600161271c54610ffc9190613d26565b61271c81905550808061100e90613f54565b915050610fd0565b50505050565b6110378383836040518060200160405280600081525061167d565b505050565b61104d611047611a03565b82611ac4565b61108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613c01565b60405180910390fd5b6110958161220a565b50565b6000612710905090565b60006110ac610abe565b82106110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490613be1565b60405180910390fd5b60088281548110611127577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611141611a03565b73ffffffffffffffffffffffffffffffffffffffff1661115f611435565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613b01565b60405180910390fd5b6000151561272060009054906101000a900460ff1615151461120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613c21565b60405180910390fd5b8061271f9080519060200190611223929190612e14565b50600161272060016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613a81565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90613a61565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b5611a03565b73ffffffffffffffffffffffffffffffffffffffff166113d3611435565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613b01565b60405180910390fd5b611433600061231b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461146e90613ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461149a90613ef1565b80156114e75780601f106114bc576101008083540402835291602001916114e7565b820191906000526020600020905b8154815290600101906020018083116114ca57829003601f168201915b5050505050905090565b6114f9611a03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906139c1565b60405180910390fd5b8060056000611574611a03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611621611a03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116669190613844565b60405180910390a35050565b600061271d54905090565b61168e611688611a03565b83611ac4565b6116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613bc1565b60405180910390fd5b6116d9848484846123e1565b50505050565b60606116ea82611997565b611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613b41565b60405180910390fd5b600061173361243d565b90506000815111611753576040518060200160405280600081525061177e565b8061175d846124d0565b60405160200161176e92919061376b565b6040516020818303038152906040525b915050919050565b600061271c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182d611a03565b73ffffffffffffffffffffffffffffffffffffffff1661184b611435565b73ffffffffffffffffffffffffffffffffffffffff16146118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613b01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613941565b60405180910390fd5b61191a8161231b565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611990575061198f8261267d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7e83611243565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611acf82611997565b611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613a01565b60405180910390fd5b6000611b1983611243565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8857508373ffffffffffffffffffffffffffffffffffffffff16611b708461077d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b995750611b988185611791565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc282611243565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90613b21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906139a1565b60405180910390fd5b611c9383838361275f565b611c9e600082611a0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cee9190613e07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d459190613d26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008061271c54612710611e129190613e07565b9050600081600b54334442604051602001611e30949392919061378f565b6040516020818303038152906040528051906020012060001c611e539190613fcb565b9050600080600c836127108110611e93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414611ede57600c826127108110611ed5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050611ee2565b8190505b6000600c600185611ef39190613e07565b6127108110611f2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01541415611f8557600183611f409190613e07565b600c836127108110611f7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555061200f565b600c600184611f949190613e07565b6127108110611fcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154600c836127108110612009577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b600b600081548092919061202290613f54565b91905055506001816120349190613d26565b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390613ac1565b60405180910390fd5b6120b581611997565b156120f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ec90613981565b60405180910390fd5b6121016000838361275f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121519190613d26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061221582611243565b90506122238160008461275f565b61222e600083611a0b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227e9190613e07565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123ec848484611ba2565b6123f88484848461276f565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613921565b60405180910390fd5b50505050565b606061271f805461244d90613ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461247990613ef1565b80156124c65780601f1061249b576101008083540402835291602001916124c6565b820191906000526020600020905b8154815290600101906020018083116124a957829003601f168201915b5050505050905090565b60606000821415612518576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612678565b600082905060005b6000821461254a57808061253390613f54565b915050600a826125439190613d7c565b9150612520565b60008167ffffffffffffffff81111561258c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125be5781602001600182028036833780820191505090505b5090505b60008514612671576001826125d79190613e07565b9150600a856125e69190613fcb565b60306125f29190613d26565b60f81b81838151811061262e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561266a9190613d7c565b94506125c2565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061274857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612758575061275782612906565b5b9050919050565b61276a838383612970565b505050565b60006127908473ffffffffffffffffffffffffffffffffffffffff16612a84565b156128f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b9611a03565b8786866040518563ffffffff1660e01b81526004016127db94939291906137f8565b602060405180830381600087803b1580156127f557600080fd5b505af192505050801561282657506040513d601f19601f8201168201806040525081019061282391906131c0565b60015b6128a9573d8060008114612856576040519150601f19603f3d011682016040523d82523d6000602084013e61285b565b606091505b506000815114156128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890613921565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fe565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61297b838383612a97565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129be576129b981612a9c565b6129fd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129fc576129fb8382612ae5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4057612a3b81612c52565b612a7f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a7e57612a7d8282612d95565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612af2846112f5565b612afc9190613e07565b9050600060076000848152602001908152602001600020549050818114612be1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c669190613e07565b9050600060096000848152602001908152602001600020549050600060088381548110612cbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612da0836112f5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e2090613ef1565b90600052602060002090601f016020900481019282612e425760008555612e89565b82601f10612e5b57805160ff1916838001178555612e89565b82800160010185558215612e89579182015b82811115612e88578251825591602001919060010190612e6d565b5b509050612e969190612e9a565b5090565b5b80821115612eb3576000816000905550600101612e9b565b5090565b6000612eca612ec584613c81565b613c5c565b905082815260208101848484011115612ee257600080fd5b612eed848285613eaf565b509392505050565b6000612f08612f0384613cb2565b613c5c565b905082815260208101848484011115612f2057600080fd5b612f2b848285613eaf565b509392505050565b600081359050612f4281614876565b92915050565b600081359050612f578161488d565b92915050565b600081359050612f6c816148a4565b92915050565b600081519050612f81816148a4565b92915050565b600082601f830112612f9857600080fd5b8135612fa8848260208601612eb7565b91505092915050565b600082601f830112612fc257600080fd5b8135612fd2848260208601612ef5565b91505092915050565b600081359050612fea816148bb565b92915050565b60006020828403121561300257600080fd5b600061301084828501612f33565b91505092915050565b6000806040838503121561302c57600080fd5b600061303a85828601612f33565b925050602061304b85828601612f33565b9150509250929050565b60008060006060848603121561306a57600080fd5b600061307886828701612f33565b935050602061308986828701612f33565b925050604061309a86828701612fdb565b9150509250925092565b600080600080608085870312156130ba57600080fd5b60006130c887828801612f33565b94505060206130d987828801612f33565b93505060406130ea87828801612fdb565b925050606085013567ffffffffffffffff81111561310757600080fd5b61311387828801612f87565b91505092959194509250565b6000806040838503121561313257600080fd5b600061314085828601612f33565b925050602061315185828601612f48565b9150509250929050565b6000806040838503121561316e57600080fd5b600061317c85828601612f33565b925050602061318d85828601612fdb565b9150509250929050565b6000602082840312156131a957600080fd5b60006131b784828501612f5d565b91505092915050565b6000602082840312156131d257600080fd5b60006131e084828501612f72565b91505092915050565b6000602082840312156131fb57600080fd5b600082013567ffffffffffffffff81111561321557600080fd5b61322184828501612fb1565b91505092915050565b60006020828403121561323c57600080fd5b600061324a84828501612fdb565b91505092915050565b61325c81613e3b565b82525050565b61327361326e82613e3b565b613f9d565b82525050565b61328281613e4d565b82525050565b600061329382613ce3565b61329d8185613cf9565b93506132ad818560208601613ebe565b6132b6816140b8565b840191505092915050565b60006132cc82613cee565b6132d68185613d0a565b93506132e6818560208601613ebe565b6132ef816140b8565b840191505092915050565b600061330582613cee565b61330f8185613d1b565b935061331f818560208601613ebe565b80840191505092915050565b6000613338601183613d0a565b9150613343826140d6565b602082019050919050565b600061335b602483613d0a565b9150613366826140ff565b604082019050919050565b600061337e601c83613d0a565b91506133898261414e565b602082019050919050565b60006133a1600b83613d0a565b91506133ac82614177565b602082019050919050565b60006133c4602b83613d0a565b91506133cf826141a0565b604082019050919050565b60006133e7603283613d0a565b91506133f2826141ef565b604082019050919050565b600061340a602683613d0a565b91506134158261423e565b604082019050919050565b600061342d602283613d0a565b91506134388261428d565b604082019050919050565b6000613450601c83613d0a565b915061345b826142dc565b602082019050919050565b6000613473602483613d0a565b915061347e82614305565b604082019050919050565b6000613496601983613d0a565b91506134a182614354565b602082019050919050565b60006134b9602383613d0a565b91506134c48261437d565b604082019050919050565b60006134dc602c83613d0a565b91506134e7826143cc565b604082019050919050565b60006134ff601783613d0a565b915061350a8261441b565b602082019050919050565b6000613522603883613d0a565b915061352d82614444565b604082019050919050565b6000613545602a83613d0a565b915061355082614493565b604082019050919050565b6000613568602983613d0a565b9150613573826144e2565b604082019050919050565b600061358b601883613d0a565b915061359682614531565b602082019050919050565b60006135ae602083613d0a565b91506135b98261455a565b602082019050919050565b60006135d1602c83613d0a565b91506135dc82614583565b604082019050919050565b60006135f4602083613d0a565b91506135ff826145d2565b602082019050919050565b6000613617602983613d0a565b9150613622826145fb565b604082019050919050565b600061363a602f83613d0a565b91506136458261464a565b604082019050919050565b600061365d601983613d0a565b915061366882614699565b602082019050919050565b6000613680602183613d0a565b915061368b826146c2565b604082019050919050565b60006136a3600d83613d0a565b91506136ae82614711565b602082019050919050565b60006136c6603183613d0a565b91506136d18261473a565b604082019050919050565b60006136e9602c83613d0a565b91506136f482614789565b604082019050919050565b600061370c603083613d0a565b9150613717826147d8565b604082019050919050565b600061372f603083613d0a565b915061373a82614827565b604082019050919050565b61374e81613ea5565b82525050565b61376561376082613ea5565b613fc1565b82525050565b600061377782856132fa565b915061378382846132fa565b91508190509392505050565b600061379b8287613754565b6020820191506137ab8286613262565b6014820191506137bb8285613754565b6020820191506137cb8284613754565b60208201915081905095945050505050565b60006020820190506137f26000830184613253565b92915050565b600060808201905061380d6000830187613253565b61381a6020830186613253565b6138276040830185613745565b81810360608301526138398184613288565b905095945050505050565b60006020820190506138596000830184613279565b92915050565b6000602082019050818103600083015261387981846132c1565b905092915050565b6000602082019050818103600083015261389a8161332b565b9050919050565b600060208201905081810360008301526138ba8161334e565b9050919050565b600060208201905081810360008301526138da81613371565b9050919050565b600060208201905081810360008301526138fa81613394565b9050919050565b6000602082019050818103600083015261391a816133b7565b9050919050565b6000602082019050818103600083015261393a816133da565b9050919050565b6000602082019050818103600083015261395a816133fd565b9050919050565b6000602082019050818103600083015261397a81613420565b9050919050565b6000602082019050818103600083015261399a81613443565b9050919050565b600060208201905081810360008301526139ba81613466565b9050919050565b600060208201905081810360008301526139da81613489565b9050919050565b600060208201905081810360008301526139fa816134ac565b9050919050565b60006020820190508181036000830152613a1a816134cf565b9050919050565b60006020820190508181036000830152613a3a816134f2565b9050919050565b60006020820190508181036000830152613a5a81613515565b9050919050565b60006020820190508181036000830152613a7a81613538565b9050919050565b60006020820190508181036000830152613a9a8161355b565b9050919050565b60006020820190508181036000830152613aba8161357e565b9050919050565b60006020820190508181036000830152613ada816135a1565b9050919050565b60006020820190508181036000830152613afa816135c4565b9050919050565b60006020820190508181036000830152613b1a816135e7565b9050919050565b60006020820190508181036000830152613b3a8161360a565b9050919050565b60006020820190508181036000830152613b5a8161362d565b9050919050565b60006020820190508181036000830152613b7a81613650565b9050919050565b60006020820190508181036000830152613b9a81613673565b9050919050565b60006020820190508181036000830152613bba81613696565b9050919050565b60006020820190508181036000830152613bda816136b9565b9050919050565b60006020820190508181036000830152613bfa816136dc565b9050919050565b60006020820190508181036000830152613c1a816136ff565b9050919050565b60006020820190508181036000830152613c3a81613722565b9050919050565b6000602082019050613c566000830184613745565b92915050565b6000613c66613c77565b9050613c728282613f23565b919050565b6000604051905090565b600067ffffffffffffffff821115613c9c57613c9b614089565b5b613ca5826140b8565b9050602081019050919050565b600067ffffffffffffffff821115613ccd57613ccc614089565b5b613cd6826140b8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d3182613ea5565b9150613d3c83613ea5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d7157613d70613ffc565b5b828201905092915050565b6000613d8782613ea5565b9150613d9283613ea5565b925082613da257613da161402b565b5b828204905092915050565b6000613db882613ea5565b9150613dc383613ea5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dfc57613dfb613ffc565b5b828202905092915050565b6000613e1282613ea5565b9150613e1d83613ea5565b925082821015613e3057613e2f613ffc565b5b828203905092915050565b6000613e4682613e85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613edc578082015181840152602081019050613ec1565b83811115613eeb576000848401525b50505050565b60006002820490506001821680613f0957607f821691505b60208210811415613f1d57613f1c61405a565b5b50919050565b613f2c826140b8565b810181811067ffffffffffffffff82111715613f4b57613f4a614089565b5b80604052505050565b6000613f5f82613ea5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f9257613f91613ffc565b5b600182019050919050565b6000613fa882613faf565b9050919050565b6000613fba826140c9565b9050919050565b6000819050919050565b6000613fd682613ea5565b9150613fe183613ea5565b925082613ff157613ff061402b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6d73672e76616c756520696e76616c6964000000000000000000000000000000600082015250565b7f4d696e74207265717565737420657863656564732063757272656e742073757060008201527f706c792100000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742065786365656473206c696d6974207065722063616c6c2e00000000600082015250565b7f555249206e6f7420736574000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742072657175657374206578636565647320746f74616c20737570706c60008201527f7921000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44657620737570706c792068617320616c7265616479206265656e206177617260008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e652e000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f507269636520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f43616e2774206368616e6765206d65746164617461206166746572207468652060008201527f73616c6520686173207374617274656400000000000000000000000000000000602082015250565b61487f81613e3b565b811461488a57600080fd5b50565b61489681613e4d565b81146148a157600080fd5b50565b6148ad81613e59565b81146148b857600080fd5b50565b6148c481613ea5565b81146148cf57600080fd5b5056fea2646970667358221220a857eecc58477778967f6b3c85acb1b108d3aae8b3206b24a3efe97ce17e26fd64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b436f736d696320436170730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f534d494300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63437348766a4d734352526a473959504c42315865704e6f5556586f473568334c39335965613873726434772f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80634c0f38c2116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461060b578063e777df2014610648578063e985e9c514610673578063f2fde38b146106b0576101c2565b806395d89b4114610563578063a22cb4651461058e578063a7f93ebd146105b7578063b88d4fde146105e2576101c2565b80636352211e116100d15780636352211e146104a757806370a08231146104e4578063715018a6146105215780638da5cb5b14610538576101c2565b80634c0f38c2146104165780634f6ccce71461044157806355f804b31461047e576101c2565b806323b872dd116101645780632f745c591161013e5780632f745c591461036b57806340c10f19146103a857806342842e0e146103c457806342966c68146103ed576101c2565b806323b872dd1461031457806324600fc31461033d57806326c3f3da14610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630e3ab61d1461029557806318160ddd146102be5780631c8b232d146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613197565b6106d9565b6040516101fb9190613844565b60405180910390f35b34801561021057600080fd5b506102196106eb565b604051610226919061385f565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061322a565b61077d565b60405161026391906137dd565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061315b565b610802565b005b3480156102a157600080fd5b506102bc60048036038101906102b7919061322a565b61091a565b005b3480156102ca57600080fd5b506102d3610abe565b6040516102e09190613c41565b60405180910390f35b3480156102f557600080fd5b506102fe610acb565b60405161030b9190613844565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613055565b610ae3565b005b34801561034957600080fd5b50610352610b43565b005b34801561036057600080fd5b50610369610bb5565b005b34801561037757600080fd5b50610392600480360381019061038d919061315b565b610d5b565b60405161039f9190613c41565b60405180910390f35b6103c260048036038101906103bd919061315b565b610e00565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613055565b61101c565b005b3480156103f957600080fd5b50610414600480360381019061040f919061322a565b61103c565b005b34801561042257600080fd5b5061042b611098565b6040516104389190613c41565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061322a565b6110a2565b6040516104759190613c41565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a091906131e9565b611139565b005b3480156104b357600080fd5b506104ce60048036038101906104c9919061322a565b611243565b6040516104db91906137dd565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612ff0565b6112f5565b6040516105189190613c41565b60405180910390f35b34801561052d57600080fd5b506105366113ad565b005b34801561054457600080fd5b5061054d611435565b60405161055a91906137dd565b60405180910390f35b34801561056f57600080fd5b5061057861145f565b604051610585919061385f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b0919061311f565b6114f1565b005b3480156105c357600080fd5b506105cc611672565b6040516105d99190613c41565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906130a4565b61167d565b005b34801561061757600080fd5b50610632600480360381019061062d919061322a565b6116df565b60405161063f919061385f565b60405180910390f35b34801561065457600080fd5b5061065d611786565b60405161066a9190613c41565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613019565b611791565b6040516106a79190613844565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612ff0565b611825565b005b60006106e48261191d565b9050919050565b6060600080546106fa90613ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461072690613ef1565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b600061078882611997565b6107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90613ae1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080d82611243565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087590613b81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089d611a03565b73ffffffffffffffffffffffffffffffffffffffff1614806108cc57506108cb816108c6611a03565b611791565b5b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290613a41565b60405180910390fd5b6109158383611a0b565b505050565b610922611a03565b73ffffffffffffffffffffffffffffffffffffffff16610940611435565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613b01565b60405180910390fd5b6000151561272060009054906101000a900460ff161515146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613aa1565b60405180910390fd5b6001151561272060019054906101000a900460ff16151514610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b906138e1565b60405180910390fd5b66d529ae9e8600009050662386f26fc100008111610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613ba1565b60405180910390fd5b8061271d81905550600161272060006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b600061272060009054906101000a900460ff16905090565b610af4610aee611a03565b82611ac4565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613bc1565b60405180910390fd5b610b3e838383611ba2565b505050565b600047905061271e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb1573d6000803e3d6000fd5b5050565b610bbd611a03565b73ffffffffffffffffffffffffffffffffffffffff16610bdb611435565b73ffffffffffffffffffffffffffffffffffffffff1614610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613b01565b60405180910390fd5b6000151561272060009054906101000a900460ff16151514610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90613aa1565b60405180910390fd5b60406127215410610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc5906139e1565b60405180910390fd5b600080600091505b6020821015610d4057610ce7611dfe565b9050610d1661271e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261203c565b600161271c54610d269190613d26565b61271c819055508180610d3890613f54565b925050610cd6565b600161272154610d509190613d26565b612721819055505050565b6000610d66836112f5565b8210610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613901565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6001151561272060009054906101000a900460ff16151514610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613b61565b60405180910390fd5b61271061271c5410610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590613961565b60405180910390fd5b60008111610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613a21565b60405180910390fd5b6020811115610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906138c1565b60405180910390fd5b61271c54612710610f369190613e07565b811115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906138a1565b60405180910390fd5b8061271d54610f879190613dad565b3414610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613881565b60405180910390fd5b600080600090505b8281101561101657610fe0611dfe565b9150610fec848361203c565b600161271c54610ffc9190613d26565b61271c81905550808061100e90613f54565b915050610fd0565b50505050565b6110378383836040518060200160405280600081525061167d565b505050565b61104d611047611a03565b82611ac4565b61108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613c01565b60405180910390fd5b6110958161220a565b50565b6000612710905090565b60006110ac610abe565b82106110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490613be1565b60405180910390fd5b60088281548110611127577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611141611a03565b73ffffffffffffffffffffffffffffffffffffffff1661115f611435565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613b01565b60405180910390fd5b6000151561272060009054906101000a900460ff1615151461120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613c21565b60405180910390fd5b8061271f9080519060200190611223929190612e14565b50600161272060016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613a81565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90613a61565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b5611a03565b73ffffffffffffffffffffffffffffffffffffffff166113d3611435565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613b01565b60405180910390fd5b611433600061231b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461146e90613ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461149a90613ef1565b80156114e75780601f106114bc576101008083540402835291602001916114e7565b820191906000526020600020905b8154815290600101906020018083116114ca57829003601f168201915b5050505050905090565b6114f9611a03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906139c1565b60405180910390fd5b8060056000611574611a03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611621611a03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116669190613844565b60405180910390a35050565b600061271d54905090565b61168e611688611a03565b83611ac4565b6116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613bc1565b60405180910390fd5b6116d9848484846123e1565b50505050565b60606116ea82611997565b611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613b41565b60405180910390fd5b600061173361243d565b90506000815111611753576040518060200160405280600081525061177e565b8061175d846124d0565b60405160200161176e92919061376b565b6040516020818303038152906040525b915050919050565b600061271c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182d611a03565b73ffffffffffffffffffffffffffffffffffffffff1661184b611435565b73ffffffffffffffffffffffffffffffffffffffff16146118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613b01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613941565b60405180910390fd5b61191a8161231b565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611990575061198f8261267d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7e83611243565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611acf82611997565b611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613a01565b60405180910390fd5b6000611b1983611243565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8857508373ffffffffffffffffffffffffffffffffffffffff16611b708461077d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b995750611b988185611791565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bc282611243565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90613b21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906139a1565b60405180910390fd5b611c9383838361275f565b611c9e600082611a0b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cee9190613e07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d459190613d26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008061271c54612710611e129190613e07565b9050600081600b54334442604051602001611e30949392919061378f565b6040516020818303038152906040528051906020012060001c611e539190613fcb565b9050600080600c836127108110611e93577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015414611ede57600c826127108110611ed5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050611ee2565b8190505b6000600c600185611ef39190613e07565b6127108110611f2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01541415611f8557600183611f409190613e07565b600c836127108110611f7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555061200f565b600c600184611f949190613e07565b6127108110611fcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154600c836127108110612009577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b600b600081548092919061202290613f54565b91905055506001816120349190613d26565b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a390613ac1565b60405180910390fd5b6120b581611997565b156120f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ec90613981565b60405180910390fd5b6121016000838361275f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121519190613d26565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061221582611243565b90506122238160008461275f565b61222e600083611a0b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227e9190613e07565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123ec848484611ba2565b6123f88484848461276f565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613921565b60405180910390fd5b50505050565b606061271f805461244d90613ef1565b80601f016020809104026020016040519081016040528092919081815260200182805461247990613ef1565b80156124c65780601f1061249b576101008083540402835291602001916124c6565b820191906000526020600020905b8154815290600101906020018083116124a957829003601f168201915b5050505050905090565b60606000821415612518576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612678565b600082905060005b6000821461254a57808061253390613f54565b915050600a826125439190613d7c565b9150612520565b60008167ffffffffffffffff81111561258c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125be5781602001600182028036833780820191505090505b5090505b60008514612671576001826125d79190613e07565b9150600a856125e69190613fcb565b60306125f29190613d26565b60f81b81838151811061262e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561266a9190613d7c565b94506125c2565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061274857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612758575061275782612906565b5b9050919050565b61276a838383612970565b505050565b60006127908473ffffffffffffffffffffffffffffffffffffffff16612a84565b156128f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b9611a03565b8786866040518563ffffffff1660e01b81526004016127db94939291906137f8565b602060405180830381600087803b1580156127f557600080fd5b505af192505050801561282657506040513d601f19601f8201168201806040525081019061282391906131c0565b60015b6128a9573d8060008114612856576040519150601f19603f3d011682016040523d82523d6000602084013e61285b565b606091505b506000815114156128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890613921565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fe565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61297b838383612a97565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129be576129b981612a9c565b6129fd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129fc576129fb8382612ae5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4057612a3b81612c52565b612a7f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a7e57612a7d8282612d95565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612af2846112f5565b612afc9190613e07565b9050600060076000848152602001908152602001600020549050818114612be1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c669190613e07565b9050600060096000848152602001908152602001600020549050600060088381548110612cbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612da0836112f5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e2090613ef1565b90600052602060002090601f016020900481019282612e425760008555612e89565b82601f10612e5b57805160ff1916838001178555612e89565b82800160010185558215612e89579182015b82811115612e88578251825591602001919060010190612e6d565b5b509050612e969190612e9a565b5090565b5b80821115612eb3576000816000905550600101612e9b565b5090565b6000612eca612ec584613c81565b613c5c565b905082815260208101848484011115612ee257600080fd5b612eed848285613eaf565b509392505050565b6000612f08612f0384613cb2565b613c5c565b905082815260208101848484011115612f2057600080fd5b612f2b848285613eaf565b509392505050565b600081359050612f4281614876565b92915050565b600081359050612f578161488d565b92915050565b600081359050612f6c816148a4565b92915050565b600081519050612f81816148a4565b92915050565b600082601f830112612f9857600080fd5b8135612fa8848260208601612eb7565b91505092915050565b600082601f830112612fc257600080fd5b8135612fd2848260208601612ef5565b91505092915050565b600081359050612fea816148bb565b92915050565b60006020828403121561300257600080fd5b600061301084828501612f33565b91505092915050565b6000806040838503121561302c57600080fd5b600061303a85828601612f33565b925050602061304b85828601612f33565b9150509250929050565b60008060006060848603121561306a57600080fd5b600061307886828701612f33565b935050602061308986828701612f33565b925050604061309a86828701612fdb565b9150509250925092565b600080600080608085870312156130ba57600080fd5b60006130c887828801612f33565b94505060206130d987828801612f33565b93505060406130ea87828801612fdb565b925050606085013567ffffffffffffffff81111561310757600080fd5b61311387828801612f87565b91505092959194509250565b6000806040838503121561313257600080fd5b600061314085828601612f33565b925050602061315185828601612f48565b9150509250929050565b6000806040838503121561316e57600080fd5b600061317c85828601612f33565b925050602061318d85828601612fdb565b9150509250929050565b6000602082840312156131a957600080fd5b60006131b784828501612f5d565b91505092915050565b6000602082840312156131d257600080fd5b60006131e084828501612f72565b91505092915050565b6000602082840312156131fb57600080fd5b600082013567ffffffffffffffff81111561321557600080fd5b61322184828501612fb1565b91505092915050565b60006020828403121561323c57600080fd5b600061324a84828501612fdb565b91505092915050565b61325c81613e3b565b82525050565b61327361326e82613e3b565b613f9d565b82525050565b61328281613e4d565b82525050565b600061329382613ce3565b61329d8185613cf9565b93506132ad818560208601613ebe565b6132b6816140b8565b840191505092915050565b60006132cc82613cee565b6132d68185613d0a565b93506132e6818560208601613ebe565b6132ef816140b8565b840191505092915050565b600061330582613cee565b61330f8185613d1b565b935061331f818560208601613ebe565b80840191505092915050565b6000613338601183613d0a565b9150613343826140d6565b602082019050919050565b600061335b602483613d0a565b9150613366826140ff565b604082019050919050565b600061337e601c83613d0a565b91506133898261414e565b602082019050919050565b60006133a1600b83613d0a565b91506133ac82614177565b602082019050919050565b60006133c4602b83613d0a565b91506133cf826141a0565b604082019050919050565b60006133e7603283613d0a565b91506133f2826141ef565b604082019050919050565b600061340a602683613d0a565b91506134158261423e565b604082019050919050565b600061342d602283613d0a565b91506134388261428d565b604082019050919050565b6000613450601c83613d0a565b915061345b826142dc565b602082019050919050565b6000613473602483613d0a565b915061347e82614305565b604082019050919050565b6000613496601983613d0a565b91506134a182614354565b602082019050919050565b60006134b9602383613d0a565b91506134c48261437d565b604082019050919050565b60006134dc602c83613d0a565b91506134e7826143cc565b604082019050919050565b60006134ff601783613d0a565b915061350a8261441b565b602082019050919050565b6000613522603883613d0a565b915061352d82614444565b604082019050919050565b6000613545602a83613d0a565b915061355082614493565b604082019050919050565b6000613568602983613d0a565b9150613573826144e2565b604082019050919050565b600061358b601883613d0a565b915061359682614531565b602082019050919050565b60006135ae602083613d0a565b91506135b98261455a565b602082019050919050565b60006135d1602c83613d0a565b91506135dc82614583565b604082019050919050565b60006135f4602083613d0a565b91506135ff826145d2565b602082019050919050565b6000613617602983613d0a565b9150613622826145fb565b604082019050919050565b600061363a602f83613d0a565b91506136458261464a565b604082019050919050565b600061365d601983613d0a565b915061366882614699565b602082019050919050565b6000613680602183613d0a565b915061368b826146c2565b604082019050919050565b60006136a3600d83613d0a565b91506136ae82614711565b602082019050919050565b60006136c6603183613d0a565b91506136d18261473a565b604082019050919050565b60006136e9602c83613d0a565b91506136f482614789565b604082019050919050565b600061370c603083613d0a565b9150613717826147d8565b604082019050919050565b600061372f603083613d0a565b915061373a82614827565b604082019050919050565b61374e81613ea5565b82525050565b61376561376082613ea5565b613fc1565b82525050565b600061377782856132fa565b915061378382846132fa565b91508190509392505050565b600061379b8287613754565b6020820191506137ab8286613262565b6014820191506137bb8285613754565b6020820191506137cb8284613754565b60208201915081905095945050505050565b60006020820190506137f26000830184613253565b92915050565b600060808201905061380d6000830187613253565b61381a6020830186613253565b6138276040830185613745565b81810360608301526138398184613288565b905095945050505050565b60006020820190506138596000830184613279565b92915050565b6000602082019050818103600083015261387981846132c1565b905092915050565b6000602082019050818103600083015261389a8161332b565b9050919050565b600060208201905081810360008301526138ba8161334e565b9050919050565b600060208201905081810360008301526138da81613371565b9050919050565b600060208201905081810360008301526138fa81613394565b9050919050565b6000602082019050818103600083015261391a816133b7565b9050919050565b6000602082019050818103600083015261393a816133da565b9050919050565b6000602082019050818103600083015261395a816133fd565b9050919050565b6000602082019050818103600083015261397a81613420565b9050919050565b6000602082019050818103600083015261399a81613443565b9050919050565b600060208201905081810360008301526139ba81613466565b9050919050565b600060208201905081810360008301526139da81613489565b9050919050565b600060208201905081810360008301526139fa816134ac565b9050919050565b60006020820190508181036000830152613a1a816134cf565b9050919050565b60006020820190508181036000830152613a3a816134f2565b9050919050565b60006020820190508181036000830152613a5a81613515565b9050919050565b60006020820190508181036000830152613a7a81613538565b9050919050565b60006020820190508181036000830152613a9a8161355b565b9050919050565b60006020820190508181036000830152613aba8161357e565b9050919050565b60006020820190508181036000830152613ada816135a1565b9050919050565b60006020820190508181036000830152613afa816135c4565b9050919050565b60006020820190508181036000830152613b1a816135e7565b9050919050565b60006020820190508181036000830152613b3a8161360a565b9050919050565b60006020820190508181036000830152613b5a8161362d565b9050919050565b60006020820190508181036000830152613b7a81613650565b9050919050565b60006020820190508181036000830152613b9a81613673565b9050919050565b60006020820190508181036000830152613bba81613696565b9050919050565b60006020820190508181036000830152613bda816136b9565b9050919050565b60006020820190508181036000830152613bfa816136dc565b9050919050565b60006020820190508181036000830152613c1a816136ff565b9050919050565b60006020820190508181036000830152613c3a81613722565b9050919050565b6000602082019050613c566000830184613745565b92915050565b6000613c66613c77565b9050613c728282613f23565b919050565b6000604051905090565b600067ffffffffffffffff821115613c9c57613c9b614089565b5b613ca5826140b8565b9050602081019050919050565b600067ffffffffffffffff821115613ccd57613ccc614089565b5b613cd6826140b8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d3182613ea5565b9150613d3c83613ea5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d7157613d70613ffc565b5b828201905092915050565b6000613d8782613ea5565b9150613d9283613ea5565b925082613da257613da161402b565b5b828204905092915050565b6000613db882613ea5565b9150613dc383613ea5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dfc57613dfb613ffc565b5b828202905092915050565b6000613e1282613ea5565b9150613e1d83613ea5565b925082821015613e3057613e2f613ffc565b5b828203905092915050565b6000613e4682613e85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613edc578082015181840152602081019050613ec1565b83811115613eeb576000848401525b50505050565b60006002820490506001821680613f0957607f821691505b60208210811415613f1d57613f1c61405a565b5b50919050565b613f2c826140b8565b810181811067ffffffffffffffff82111715613f4b57613f4a614089565b5b80604052505050565b6000613f5f82613ea5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f9257613f91613ffc565b5b600182019050919050565b6000613fa882613faf565b9050919050565b6000613fba826140c9565b9050919050565b6000819050919050565b6000613fd682613ea5565b9150613fe183613ea5565b925082613ff157613ff061402b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6d73672e76616c756520696e76616c6964000000000000000000000000000000600082015250565b7f4d696e74207265717565737420657863656564732063757272656e742073757060008201527f706c792100000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742065786365656473206c696d6974207065722063616c6c2e00000000600082015250565b7f555249206e6f7420736574000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742072657175657374206578636565647320746f74616c20737570706c60008201527f7921000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44657620737570706c792068617320616c7265616479206265656e206177617260008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e652e000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f507269636520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f43616e2774206368616e6765206d65746164617461206166746572207468652060008201527f73616c6520686173207374617274656400000000000000000000000000000000602082015250565b61487f81613e3b565b811461488a57600080fd5b50565b61489681613e4d565b81146148a157600080fd5b50565b6148ad81613e59565b81146148b857600080fd5b50565b6148c481613ea5565b81146148cf57600080fd5b5056fea2646970667358221220a857eecc58477778967f6b3c85acb1b108d3aae8b3206b24a3efe97ce17e26fd64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b436f736d696320436170730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434f534d494300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63437348766a4d734352526a473959504c42315865704e6f5556586f473568334c39335965613873726434772f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Cosmic Caps
Arg [1] : symbol (string): COSMIC
Arg [2] : baseTokenURI (string): ipfs://QmcCsHvjMsCRRjG9YPLB1XepNoUVXoG5h3L93Yea8srd4w/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 436f736d69632043617073000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 434f534d49430000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d63437348766a4d734352526a473959504c42315865704e
Arg [9] : 6f5556586f473568334c39335965613873726434772f00000000000000000000


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.