ETH Price: $3,385.71 (-1.78%)
Gas: 1 Gwei

Token

Derpys (DERP)
 

Overview

Max Total Supply

2,923 DERP

Holders

484

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lilguac.eth
Balance
1 DERP
0xd30ee064b984a5986c0f335bb173888af49d2492
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mission Derpy is a community focused ERC721 NFT project. The contract's tokens are mintable and tradable, and can be used as tokens to take part in various community activities and rewards.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Derpys

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Derpys.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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


// Derpys is an ERC721 contract with the powers to catch Derpys! They are very
// preoccupied running around accumulating stuff, but you can entice them 
// with ETH and catch them. They need to be caught soon, before we are overrun!
// Enticement is denominated in ETH (/wei) and rises in Fibonnacci increments.
// Thank you for signing up for MISSION DERPY. GOOD LUCK OUT THERE.

// Big love to BGANPUNKSV2 - bastardganpunks.club 
// We've used your contract as a reference point for this :)

contract Derpys is ERC721, ERC721Enumerable, ERC721Pausable, Ownable {
	uint256 public constant MAX_DERPYS = 10000;
    uint256 public AIRDROP_DERPYS = 33;
    uint256 public LIMITED_EDERPTIONS = 0; //max is 111

	// Check the ipfs provenance hash here when all derpys are caught
	string public LEGIT_DERPY_HASH = "";

	// Be sure to store metadata at tokenURIs of baseURI/tokenId
	string private baseURI;

	constructor (string memory baseTokenURI) ERC721("Derpys", "DERP") {
		setBaseURI(baseTokenURI);
	}

    //get the next token id accounting for airdropped derps
    function currentSupply() public view returns (uint256) {
        return totalSupply() - LIMITED_EDERPTIONS;
    }

	// get the catch cost in wei for the next loose derpy
	function getCatchCost() public view returns (uint256) {
		require(currentSupply() < MAX_DERPYS, "This derpy does not exist! There are only 10,000");

		uint256 nextDerpy = currentSupply();

        //FIBONNAAACCIIIIIIIIIIIIII! :)
        if (nextDerpy >= 9900) {
            return 1000000000000000000;        // 9900-10000: 1.00 ETH
        } else if (nextDerpy >= 9500) {
            return  890000000000000000;         // 9500-9900: 0.89 ETH
        } else if (nextDerpy >= 9000) {
            return  550000000000000000;         // 9000-9500: 0.55 ETH
        } else if (nextDerpy >= 8500) {
            return  340000000000000000;         // 8500-9000: 0.34 ETH
        } else if (nextDerpy >= 7500) {
            return  210000000000000000;         // 7500-8500: 0.21 ETH
        } else if (nextDerpy >= 6000) {
            return  130000000000000000;         // 6000-7500: 0.13 ETH 
        } else if (nextDerpy >= 4000) {
            return   80000000000000000;         // 4000-6000: 0.08 ETH 
        } else if (nextDerpy >= 2000) {
            return   50000000000000000;         // 2000-4000: 0.05 ETH
        } else if (nextDerpy >= 1000) {
            return   30000000000000000;         // 1000-2000: 0.03 ETH
        } else {
            return   20000000000000000;         //    0-1000: 0.02 ETH
        }
    }

    function catchDerpy(uint256 numDerpys) public payable whenNotPaused {
    	// If you pay attention to this function, you'll see that you can purchase
    	// up to 50 Derpys at the same price. EVEN IF your purchase crosses into
    	// the next price tier. You lucky things ;)
    	
    	require(numDerpys > 0 && numDerpys <= 50, "You can catch between 1 and 50 derpys");
    	require(currentSupply() + numDerpys <= MAX_DERPYS, "There aren't that many Derpys left!");
    	require(msg.value >= (getCatchCost() * numDerpys), "The Ether value sent is less than the needed catch price!");

    	uint256 iderp;
    	for(iderp = 0; iderp < numDerpys; iderp++) {
    		uint256 mintId = currentSupply();
    		_safeMint(msg.sender, mintId);
    	}
    }

    //list all the derpys owned by owner_
    function listMyDerpys(address owner_) external view returns (uint256[] memory) {
    	uint256 nDerpys = balanceOf(owner_);
    	// if zero return an empty array
    	if (nDerpys == 0) {
            return new uint256[](0);
    	}
    	else {
    		uint256[] memory derpList = new uint256[](nDerpys);
    		uint256 ii;
    		for (ii = 0; ii < nDerpys; ii++) {
    			derpList[ii] = tokenOfOwnerByIndex(owner_, ii);
    		}
    		return derpList;
    	}
    }

    //set the ipfs hash
    function setProvenanceHash(string memory hash_) public onlyOwner {
    	LEGIT_DERPY_HASH = hash_;
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
    	baseURI = baseURI_;
    }

    function startMission() public onlyOwner whenPaused {
    	require(bytes(baseURI).length > 0, "Metadata must be uploaded and its location must be set via setBaseURI()");
    	_unpause();
    }

    function stopMission() public onlyOwner whenNotPaused {
    	_pause();
    }

    function withdrawMissionBounty() public payable onlyOwner {
    	require(payable(msg.sender).send(address(this).balance));
    }

    function airdropDerpys(uint256 numDerpys, address receiver) public onlyOwner {
    	// 33 Derpys are reserved for airdrops and for the legends who helped us build this. 
    	// Thanks xx
    	
        uint256 nextTokenId = currentSupply();

        require(numDerpys > 0, "Positive integer Derpys onlY!");
        require((nextTokenId + numDerpys) <= MAX_DERPYS, "There are not enough Derpys left!");
    	require((AIRDROP_DERPYS - numDerpys) >= 0, "Airdrop quota exceeded!");
        uint256 iDerp;
    	for (iDerp = 0; iDerp < numDerpys; iDerp++) {
    		_safeMint(receiver, (nextTokenId + iDerp));
            AIRDROP_DERPYS -= 1;
    	}
    }

    function giveLtdDerpys(uint256 numDerpys, uint256 tokenId, address receiver) public onlyOwner {
        // 111 Limited edition Derpys are reserved for milestone airdrops
        // Ltd Derpys are at ids: 10000 <= id < 10111

        require(numDerpys > 0, "Positive integer Derpys only!");
        require((tokenId >= MAX_DERPYS) && (tokenId + numDerpys <= 10111), "Limited Ederptions are between: 10000 <= id < 10111");
        uint256 iDerp;
        for (iDerp = 0; iDerp < numDerpys; iDerp++) {
            _safeMint(receiver, (tokenId + iDerp));
            LIMITED_EDERPTIONS += 1;
        }
    }

    receive() external payable {
        //allow the contract to receive eth to buy dem derpys
    }
    
    //override _baseURI() method in ERC721.sol to return the base URI for our metadata
    function _baseURI() internal view virtual override returns (string memory) {
    	return baseURI;
    }

    //override inherited hooks and functions
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal 
    virtual 
    override(ERC721, ERC721Enumerable, ERC721Pausable) {
    	super._beforeTokenTransfer(from, to, tokenId);
    }

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

    //test only functions, to get constants for checking
    function testGetBaseURI() public view returns (string memory) {
        return baseURI;
    }
}

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 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 4 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 5 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 6 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 7 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 8 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 9 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 10 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 11 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 12 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 13 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 14 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

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

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

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

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"AIRDROP_DERPYS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEGIT_DERPY_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIMITED_EDERPTIONS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DERPYS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numDerpys","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"airdropDerpys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"numDerpys","type":"uint256"}],"name":"catchDerpy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentSupply","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":"getCatchCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numDerpys","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"giveLtdDerpys","outputs":[],"stateMutability":"nonpayable","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":"owner_","type":"address"}],"name":"listMyDerpys","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash_","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMission","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":[],"name":"testGetBaseURI","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":"withdrawMissionBounty","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526021600b556000600c5560405180602001604052806000815250600d908051906020019062000035929190620002ff565b503480156200004357600080fd5b50604051620054b6380380620054b6833981810160405281019062000069919062000421565b6040518060400160405280600681526020017f44657270797300000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44455250000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ed929190620002ff565b50806001908051906020019062000106929190620002ff565b5050506000600a60006101000a81548160ff02191690831515021790555062000144620001386200015c60201b60201c565b6200016460201b60201c565b62000155816200022a60201b60201c565b506200060c565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023a6200015c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000260620002d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b090620004a8565b60405180910390fd5b80600e9080519060200190620002d1929190620002ff565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200030d9062000578565b90600052602060002090601f0160209004810192826200033157600085556200037d565b82601f106200034c57805160ff19168380011785556200037d565b828001600101855582156200037d579182015b828111156200037c5782518255916020019190600101906200035f565b5b5090506200038c919062000390565b5090565b5b80821115620003ab57600081600090555060010162000391565b5090565b6000620003c6620003c084620004fe565b620004ca565b905082815260208101848484011115620003df57600080fd5b620003ec84828562000542565b509392505050565b600082601f8301126200040657600080fd5b815162000418848260208601620003af565b91505092915050565b6000602082840312156200043457600080fd5b600082015167ffffffffffffffff8111156200044f57600080fd5b6200045d84828501620003f4565b91505092915050565b60006200047560208362000531565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004c38162000466565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620004f457620004f3620005dd565b5b8060405250919050565b600067ffffffffffffffff8211156200051c576200051b620005dd565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b838110156200056257808201518184015260208101905062000545565b8381111562000572576000848401525b50505050565b600060028204905060018216806200059157607f821691505b60208210811415620005a857620005a7620005ae565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614e9a806200061c6000396000f3fe6080604052600436106102135760003560e01c806370a08231116101185780639ff743fe116100a0578063d8e3611b1161006f578063d8e3611b14610789578063de8e6530146107b2578063e985e9c5146107dd578063f24259a01461081a578063f2fde38b146108245761021a565b80639ff743fe146106cf578063a22cb465146106fa578063b88d4fde14610723578063c87b56dd1461074c5761021a565b806384c9a071116100e757806384c9a071146106205780638da5cb5b1461064b57806395d89b4114610676578063991de9a7146106a15780639a4b7523146106b85761021a565b806370a0823114610564578063715018a6146105a1578063771282f6146105b85780638156d994146105e35761021a565b80632f745c591161019b57806355f804b31161016a57806355f804b31461047f5780635c975abb146104a85780635e4df2d8146104d35780636352211e146104fe57806364205d7f1461053b5761021a565b80632f745c59146103c057806334a7614e146103fd57806342842e0e146104195780634f6ccce7146104425761021a565b80630b09da27116101e25780630b09da27146102ed57806310969523146103185780631516e3111461034157806318160ddd1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c45761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061370c565b61084d565b604051610253919061457f565b60405180910390f35b34801561026857600080fd5b5061027161085f565b60405161027e919061459a565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061379f565b6108f1565b6040516102bb91906144f6565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906136d0565b610976565b005b3480156102f957600080fd5b50610302610a8e565b60405161030f919061459a565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061375e565b610b1c565b005b34801561034d57600080fd5b50610356610bb2565b604051610363919061459a565b60405180910390f35b34801561037857600080fd5b50610381610c44565b60405161038e919061499c565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906135ca565b610c51565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906136d0565b610cb1565b6040516103f4919061499c565b60405180910390f35b6104176004803603810190610412919061379f565b610d56565b005b34801561042557600080fd5b50610440600480360381019061043b91906135ca565b610ed3565b005b34801561044e57600080fd5b506104696004803603810190610464919061379f565b610ef3565b604051610476919061499c565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061375e565b610f8a565b005b3480156104b457600080fd5b506104bd611020565b6040516104ca919061457f565b60405180910390f35b3480156104df57600080fd5b506104e8611037565b6040516104f5919061499c565b60405180910390f35b34801561050a57600080fd5b506105256004803603810190610520919061379f565b61103d565b60405161053291906144f6565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906137c8565b6110ef565b005b34801561057057600080fd5b5061058b60048036038101906105869190613565565b6112ae565b604051610598919061499c565b60405180910390f35b3480156105ad57600080fd5b506105b6611366565b005b3480156105c457600080fd5b506105cd6113ee565b6040516105da919061499c565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613565565b61140a565b604051610617919061455d565b60405180910390f35b34801561062c57600080fd5b50610635611586565b604051610642919061499c565b60405180910390f35b34801561065757600080fd5b5061066061158c565b60405161066d91906144f6565b60405180910390f35b34801561068257600080fd5b5061068b6115b6565b604051610698919061459a565b60405180910390f35b3480156106ad57600080fd5b506106b6611648565b005b3480156106c457600080fd5b506106cd611716565b005b3480156106db57600080fd5b506106e4611834565b6040516106f1919061499c565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613694565b61183a565b005b34801561072f57600080fd5b5061074a60048036038101906107459190613619565b6119bb565b005b34801561075857600080fd5b50610773600480360381019061076e919061379f565b611a1d565b604051610780919061459a565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613804565b611ac4565b005b3480156107be57600080fd5b506107c7611c34565b6040516107d4919061499c565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061358e565b611d84565b604051610811919061457f565b60405180910390f35b610822611e18565b005b34801561083057600080fd5b5061084b60048036038101906108469190613565565b611ed4565b005b600061085882611fcc565b9050919050565b60606000805461086e90614c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461089a90614c8f565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60006108fc82612046565b61093b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109329061485c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109818261103d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e9906148dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a116120b2565b73ffffffffffffffffffffffffffffffffffffffff161480610a405750610a3f81610a3a6120b2565b611d84565b5b610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a769061479c565b60405180910390fd5b610a8983836120ba565b505050565b600d8054610a9b90614c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790614c8f565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b610b246120b2565b73ffffffffffffffffffffffffffffffffffffffff16610b4261158c565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f9061487c565b60405180910390fd5b80600d9080519060200190610bae929190613389565b5050565b6060600e8054610bc190614c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed90614c8f565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b6000600880549050905090565b610c62610c5c6120b2565b82612173565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c989061491c565b60405180910390fd5b610cac838383612251565b505050565b6000610cbc836112ae565b8210610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061465c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d5e611020565b15610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061477c565b60405180910390fd5b600081118015610daf575060328111155b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de5906147fc565b60405180910390fd5b61271081610dfa6113ee565b610e049190614ac4565b1115610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c9061495c565b60405180910390fd5b80610e4e611c34565b610e589190614b4b565b341015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e919061483c565b60405180910390fd5b60005b81811015610ecf576000610eaf6113ee565b9050610ebb33826124ad565b508080610ec790614cc1565b915050610e9d565b5050565b610eee838383604051806020016040528060008152506119bb565b505050565b6000610efd610c44565b8210610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f359061493c565b60405180910390fd5b60088281548110610f78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f926120b2565b73ffffffffffffffffffffffffffffffffffffffff16610fb061158c565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd9061487c565b60405180910390fd5b80600e908051906020019061101c929190613389565b5050565b6000600a60009054906101000a900460ff16905090565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906147dc565b60405180910390fd5b80915050919050565b6110f76120b2565b73ffffffffffffffffffffffffffffffffffffffff1661111561158c565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111629061487c565b60405180910390fd5b60006111756113ee565b9050600083116111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906148fc565b60405180910390fd5b61271083826111c99190614ac4565b111561120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061463c565b60405180910390fd5b600083600b5461121a9190614ba5565b101561125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906146dc565b60405180910390fd5b60005b838110156112a85761127b8382846112769190614ac4565b6124ad565b6001600b600082825461128e9190614ba5565b9250508190555080806112a090614cc1565b91505061125e565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611316906147bc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136e6120b2565b73ffffffffffffffffffffffffffffffffffffffff1661138c61158c565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061487c565b60405180910390fd5b6113ec60006124cb565b565b6000600c546113fb610c44565b6114059190614ba5565b905090565b60606000611417836112ae565b9050600081141561149a57600067ffffffffffffffff811115611463577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114915781602001602082028036833780820191505090505b50915050611581565b60008167ffffffffffffffff8111156114dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561150a5781602001602082028036833780820191505090505b50905060005b8281101561157a576115228582610cb1565b82828151811061155b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061157290614cc1565b915050611510565b8193505050505b919050565b600b5481565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115c590614c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546115f190614c8f565b801561163e5780601f106116135761010080835404028352916020019161163e565b820191906000526020600020905b81548152906001019060200180831161162157829003601f168201915b5050505050905090565b6116506120b2565b73ffffffffffffffffffffffffffffffffffffffff1661166e61158c565b73ffffffffffffffffffffffffffffffffffffffff16146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb9061487c565b60405180910390fd5b6116cc611020565b1561170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117039061477c565b60405180910390fd5b611714612591565b565b61171e6120b2565b73ffffffffffffffffffffffffffffffffffffffff1661173c61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117899061487c565b60405180910390fd5b61179a611020565b6117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061461c565b60405180910390fd5b6000600e80546117e890614c8f565b90501161182a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118219061473c565b60405180910390fd5b611832612634565b565b61271081565b6118426120b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a79061471c565b60405180910390fd5b80600560006118bd6120b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196a6120b2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119af919061457f565b60405180910390a35050565b6119cc6119c66120b2565b83612173565b611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a029061491c565b60405180910390fd5b611a17848484846126d6565b50505050565b6060611a2882612046565b611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e906148bc565b60405180910390fd5b6000611a71612732565b90506000815111611a915760405180602001604052806000815250611abc565b80611a9b846127c4565b604051602001611aac9291906144d2565b6040516020818303038152906040525b915050919050565b611acc6120b2565b73ffffffffffffffffffffffffffffffffffffffff16611aea61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061487c565b60405180910390fd5b60008311611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a9061497c565b60405180910390fd5b6127108210158015611ba2575061277f8383611b9f9190614ac4565b11155b611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd8906145bc565b60405180910390fd5b60005b83811015611c2e57611c01828285611bfc9190614ac4565b6124ad565b6001600c6000828254611c149190614ac4565b925050819055508080611c2690614cc1565b915050611be4565b50505050565b6000612710611c416113ee565b10611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c78906145fc565b60405180910390fd5b6000611c8b6113ee565b90506126ac8110611ca757670de0b6b3a7640000915050611d81565b61251c8110611cc157670c59ea48da190000915050611d81565b6123288110611cdb576707a1fe1602770000915050611d81565b6121348110611cf5576704b7ec32d7a20000915050611d81565b611d4c8110611d0f576702ea11e32ad50000915050611d81565b6117708110611d29576701cdda4faccd0000915050611d81565b610fa08110611d435767011c37937e080000915050611d81565b6107d08110611d5c5766b1a2bc2ec50000915050611d81565b6103e88110611d7557666a94d74f430000915050611d81565b66470de4df8200009150505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e206120b2565b73ffffffffffffffffffffffffffffffffffffffff16611e3e61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b9061487c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611ed257600080fd5b565b611edc6120b2565b73ffffffffffffffffffffffffffffffffffffffff16611efa61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061487c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb79061469c565b60405180910390fd5b611fc9816124cb565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061203f575061203e82612971565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661212d8361103d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061217e82612046565b6121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b49061475c565b60405180910390fd5b60006121c88361103d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223757508373ffffffffffffffffffffffffffffffffffffffff1661221f846108f1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224857506122478185611d84565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122718261103d565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be9061489c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e906146fc565b60405180910390fd5b612342838383612a53565b61234d6000826120ba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239d9190614ba5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f49190614ac4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124c7828260405180602001604052806000815250612a63565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612599611020565b156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d09061477c565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861261d6120b2565b60405161262a91906144f6565b60405180910390a1565b61263c611020565b61267b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126729061461c565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126bf6120b2565b6040516126cc91906144f6565b60405180910390a1565b6126e1848484612251565b6126ed84848484612abe565b61272c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127239061467c565b60405180910390fd5b50505050565b6060600e805461274190614c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461276d90614c8f565b80156127ba5780601f1061278f576101008083540402835291602001916127ba565b820191906000526020600020905b81548152906001019060200180831161279d57829003601f168201915b5050505050905090565b6060600082141561280c576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296c565b600082905060005b6000821461283e57808061282790614cc1565b915050600a826128379190614b1a565b9150612814565b60008167ffffffffffffffff811115612880577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128b25781602001600182028036833780820191505090505b5090505b60008514612965576001826128cb9190614ba5565b9150600a856128da9190614d0a565b60306128e69190614ac4565b60f81b818381518110612922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295e9190614b1a565b94506128b6565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a4c5750612a4b82612c55565b5b9050919050565b612a5e838383612cbf565b505050565b612a6d8383612d17565b612a7a6000848484612abe565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab09061467c565b60405180910390fd5b505050565b6000612adf8473ffffffffffffffffffffffffffffffffffffffff16612ee5565b15612c48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b086120b2565b8786866040518563ffffffff1660e01b8152600401612b2a9493929190614511565b602060405180830381600087803b158015612b4457600080fd5b505af1925050508015612b7557506040513d601f19601f82011682018060405250810190612b729190613735565b60015b612bf8573d8060008114612ba5576040519150601f19603f3d011682016040523d82523d6000602084013e612baa565b606091505b50600081511415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be79061467c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4d565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cca838383612ef8565b612cd2611020565b15612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d09906145dc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e9061481c565b60405180910390fd5b612d9081612046565b15612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc7906146bc565b60405180910390fd5b612ddc60008383612a53565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2c9190614ac4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b612f0383838361300c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4657612f4181613011565b612f85565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8457612f83838261305a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc857612fc3816131c7565b613007565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461300657613005828261330a565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613067846112ae565b6130719190614ba5565b9050600060076000848152602001908152602001600020549050818114613156576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131db9190614ba5565b9050600060096000848152602001908152602001600020549050600060088381548110613231577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613279577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613315836112ae565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461339590614c8f565b90600052602060002090601f0160209004810192826133b757600085556133fe565b82601f106133d057805160ff19168380011785556133fe565b828001600101855582156133fe579182015b828111156133fd5782518255916020019190600101906133e2565b5b50905061340b919061340f565b5090565b5b80821115613428576000816000905550600101613410565b5090565b600061343f61343a846149e8565b6149b7565b90508281526020810184848401111561345757600080fd5b613462848285614c4d565b509392505050565b600061347d61347884614a18565b6149b7565b90508281526020810184848401111561349557600080fd5b6134a0848285614c4d565b509392505050565b6000813590506134b781614e08565b92915050565b6000813590506134cc81614e1f565b92915050565b6000813590506134e181614e36565b92915050565b6000815190506134f681614e36565b92915050565b600082601f83011261350d57600080fd5b813561351d84826020860161342c565b91505092915050565b600082601f83011261353757600080fd5b813561354784826020860161346a565b91505092915050565b60008135905061355f81614e4d565b92915050565b60006020828403121561357757600080fd5b6000613585848285016134a8565b91505092915050565b600080604083850312156135a157600080fd5b60006135af858286016134a8565b92505060206135c0858286016134a8565b9150509250929050565b6000806000606084860312156135df57600080fd5b60006135ed868287016134a8565b93505060206135fe868287016134a8565b925050604061360f86828701613550565b9150509250925092565b6000806000806080858703121561362f57600080fd5b600061363d878288016134a8565b945050602061364e878288016134a8565b935050604061365f87828801613550565b925050606085013567ffffffffffffffff81111561367c57600080fd5b613688878288016134fc565b91505092959194509250565b600080604083850312156136a757600080fd5b60006136b5858286016134a8565b92505060206136c6858286016134bd565b9150509250929050565b600080604083850312156136e357600080fd5b60006136f1858286016134a8565b925050602061370285828601613550565b9150509250929050565b60006020828403121561371e57600080fd5b600061372c848285016134d2565b91505092915050565b60006020828403121561374757600080fd5b6000613755848285016134e7565b91505092915050565b60006020828403121561377057600080fd5b600082013567ffffffffffffffff81111561378a57600080fd5b61379684828501613526565b91505092915050565b6000602082840312156137b157600080fd5b60006137bf84828501613550565b91505092915050565b600080604083850312156137db57600080fd5b60006137e985828601613550565b92505060206137fa858286016134a8565b9150509250929050565b60008060006060848603121561381957600080fd5b600061382786828701613550565b935050602061383886828701613550565b9250506040613849868287016134a8565b9150509250925092565b600061385f83836144b4565b60208301905092915050565b61387481614bd9565b82525050565b600061388582614a58565b61388f8185614a86565b935061389a83614a48565b8060005b838110156138cb5781516138b28882613853565b97506138bd83614a79565b92505060018101905061389e565b5085935050505092915050565b6138e181614beb565b82525050565b60006138f282614a63565b6138fc8185614a97565b935061390c818560208601614c5c565b61391581614df7565b840191505092915050565b600061392b82614a6e565b6139358185614aa8565b9350613945818560208601614c5c565b61394e81614df7565b840191505092915050565b600061396482614a6e565b61396e8185614ab9565b935061397e818560208601614c5c565b80840191505092915050565b6000613997603383614aa8565b91507f4c696d6974656420456465727074696f6e7320617265206265747765656e3a2060008301527f3130303030203c3d206964203c203130313131000000000000000000000000006020830152604082019050919050565b60006139fd602b83614aa8565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b6000613a63603083614aa8565b91507f5468697320646572707920646f6573206e6f742065786973742120546865726560008301527f20617265206f6e6c792031302c303030000000000000000000000000000000006020830152604082019050919050565b6000613ac9601483614aa8565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613b09602183614aa8565b91507f546865726520617265206e6f7420656e6f75676820446572707973206c65667460008301527f21000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b6f602b83614aa8565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613bd5603283614aa8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c3b602683614aa8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca1601c83614aa8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613ce1601783614aa8565b91507f41697264726f702071756f7461206578636565646564210000000000000000006000830152602082019050919050565b6000613d21602483614aa8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d87601983614aa8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dc7604783614aa8565b91507f4d65746164617461206d7573742062652075706c6f6164656420616e6420697460008301527f73206c6f636174696f6e206d757374206265207365742076696120736574426160208301527f73655552492829000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613e53602c83614aa8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613eb9601083614aa8565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613ef9603883614aa8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f5f602a83614aa8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc5602983614aa8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061402b602583614aa8565b91507f596f752063616e206361746368206265747765656e203120616e64203530206460008301527f65727079730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614091602083614aa8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006140d1603983614aa8565b91507f5468652045746865722076616c75652073656e74206973206c6573732074686160008301527f6e20746865206e656564656420636174636820707269636521000000000000006020830152604082019050919050565b6000614137602c83614aa8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061419d602083614aa8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141dd602983614aa8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614243602f83614aa8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006142a9602183614aa8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430f601d83614aa8565b91507f506f73697469766520696e746567657220446572707973206f6e6c59210000006000830152602082019050919050565b600061434f603183614aa8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006143b5602c83614aa8565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061441b602383614aa8565b91507f5468657265206172656e27742074686174206d616e7920446572707973206c6560008301527f66742100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614481601d83614aa8565b91507f506f73697469766520696e746567657220446572707973206f6e6c79210000006000830152602082019050919050565b6144bd81614c43565b82525050565b6144cc81614c43565b82525050565b60006144de8285613959565b91506144ea8284613959565b91508190509392505050565b600060208201905061450b600083018461386b565b92915050565b6000608082019050614526600083018761386b565b614533602083018661386b565b61454060408301856144c3565b818103606083015261455281846138e7565b905095945050505050565b60006020820190508181036000830152614577818461387a565b905092915050565b600060208201905061459460008301846138d8565b92915050565b600060208201905081810360008301526145b48184613920565b905092915050565b600060208201905081810360008301526145d58161398a565b9050919050565b600060208201905081810360008301526145f5816139f0565b9050919050565b6000602082019050818103600083015261461581613a56565b9050919050565b6000602082019050818103600083015261463581613abc565b9050919050565b6000602082019050818103600083015261465581613afc565b9050919050565b6000602082019050818103600083015261467581613b62565b9050919050565b6000602082019050818103600083015261469581613bc8565b9050919050565b600060208201905081810360008301526146b581613c2e565b9050919050565b600060208201905081810360008301526146d581613c94565b9050919050565b600060208201905081810360008301526146f581613cd4565b9050919050565b6000602082019050818103600083015261471581613d14565b9050919050565b6000602082019050818103600083015261473581613d7a565b9050919050565b6000602082019050818103600083015261475581613dba565b9050919050565b6000602082019050818103600083015261477581613e46565b9050919050565b6000602082019050818103600083015261479581613eac565b9050919050565b600060208201905081810360008301526147b581613eec565b9050919050565b600060208201905081810360008301526147d581613f52565b9050919050565b600060208201905081810360008301526147f581613fb8565b9050919050565b600060208201905081810360008301526148158161401e565b9050919050565b6000602082019050818103600083015261483581614084565b9050919050565b60006020820190508181036000830152614855816140c4565b9050919050565b600060208201905081810360008301526148758161412a565b9050919050565b6000602082019050818103600083015261489581614190565b9050919050565b600060208201905081810360008301526148b5816141d0565b9050919050565b600060208201905081810360008301526148d581614236565b9050919050565b600060208201905081810360008301526148f58161429c565b9050919050565b6000602082019050818103600083015261491581614302565b9050919050565b6000602082019050818103600083015261493581614342565b9050919050565b60006020820190508181036000830152614955816143a8565b9050919050565b600060208201905081810360008301526149758161440e565b9050919050565b6000602082019050818103600083015261499581614474565b9050919050565b60006020820190506149b160008301846144c3565b92915050565b6000604051905081810181811067ffffffffffffffff821117156149de576149dd614dc8565b5b8060405250919050565b600067ffffffffffffffff821115614a0357614a02614dc8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614a3357614a32614dc8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614acf82614c43565b9150614ada83614c43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0f57614b0e614d3b565b5b828201905092915050565b6000614b2582614c43565b9150614b3083614c43565b925082614b4057614b3f614d6a565b5b828204905092915050565b6000614b5682614c43565b9150614b6183614c43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9a57614b99614d3b565b5b828202905092915050565b6000614bb082614c43565b9150614bbb83614c43565b925082821015614bce57614bcd614d3b565b5b828203905092915050565b6000614be482614c23565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c7a578082015181840152602081019050614c5f565b83811115614c89576000848401525b50505050565b60006002820490506001821680614ca757607f821691505b60208210811415614cbb57614cba614d99565b5b50919050565b6000614ccc82614c43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cff57614cfe614d3b565b5b600182019050919050565b6000614d1582614c43565b9150614d2083614c43565b925082614d3057614d2f614d6a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614e1181614bd9565b8114614e1c57600080fd5b50565b614e2881614beb565b8114614e3357600080fd5b50565b614e3f81614bf7565b8114614e4a57600080fd5b50565b614e5681614c43565b8114614e6157600080fd5b5056fea264697066735822122091827f44ba348a335c5f15d86aef49ef1d092b19898b1e578ab85361d4cb650564736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e704d5639797942706857374c645a4d6833566f456d5850557967434d64474a37336465466e394a595864642f00000000000000000000

Deployed Bytecode

0x6080604052600436106102135760003560e01c806370a08231116101185780639ff743fe116100a0578063d8e3611b1161006f578063d8e3611b14610789578063de8e6530146107b2578063e985e9c5146107dd578063f24259a01461081a578063f2fde38b146108245761021a565b80639ff743fe146106cf578063a22cb465146106fa578063b88d4fde14610723578063c87b56dd1461074c5761021a565b806384c9a071116100e757806384c9a071146106205780638da5cb5b1461064b57806395d89b4114610676578063991de9a7146106a15780639a4b7523146106b85761021a565b806370a0823114610564578063715018a6146105a1578063771282f6146105b85780638156d994146105e35761021a565b80632f745c591161019b57806355f804b31161016a57806355f804b31461047f5780635c975abb146104a85780635e4df2d8146104d35780636352211e146104fe57806364205d7f1461053b5761021a565b80632f745c59146103c057806334a7614e146103fd57806342842e0e146104195780634f6ccce7146104425761021a565b80630b09da27116101e25780630b09da27146102ed57806310969523146103185780631516e3111461034157806318160ddd1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c45761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061370c565b61084d565b604051610253919061457f565b60405180910390f35b34801561026857600080fd5b5061027161085f565b60405161027e919061459a565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061379f565b6108f1565b6040516102bb91906144f6565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906136d0565b610976565b005b3480156102f957600080fd5b50610302610a8e565b60405161030f919061459a565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061375e565b610b1c565b005b34801561034d57600080fd5b50610356610bb2565b604051610363919061459a565b60405180910390f35b34801561037857600080fd5b50610381610c44565b60405161038e919061499c565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906135ca565b610c51565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906136d0565b610cb1565b6040516103f4919061499c565b60405180910390f35b6104176004803603810190610412919061379f565b610d56565b005b34801561042557600080fd5b50610440600480360381019061043b91906135ca565b610ed3565b005b34801561044e57600080fd5b506104696004803603810190610464919061379f565b610ef3565b604051610476919061499c565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061375e565b610f8a565b005b3480156104b457600080fd5b506104bd611020565b6040516104ca919061457f565b60405180910390f35b3480156104df57600080fd5b506104e8611037565b6040516104f5919061499c565b60405180910390f35b34801561050a57600080fd5b506105256004803603810190610520919061379f565b61103d565b60405161053291906144f6565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906137c8565b6110ef565b005b34801561057057600080fd5b5061058b60048036038101906105869190613565565b6112ae565b604051610598919061499c565b60405180910390f35b3480156105ad57600080fd5b506105b6611366565b005b3480156105c457600080fd5b506105cd6113ee565b6040516105da919061499c565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613565565b61140a565b604051610617919061455d565b60405180910390f35b34801561062c57600080fd5b50610635611586565b604051610642919061499c565b60405180910390f35b34801561065757600080fd5b5061066061158c565b60405161066d91906144f6565b60405180910390f35b34801561068257600080fd5b5061068b6115b6565b604051610698919061459a565b60405180910390f35b3480156106ad57600080fd5b506106b6611648565b005b3480156106c457600080fd5b506106cd611716565b005b3480156106db57600080fd5b506106e4611834565b6040516106f1919061499c565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613694565b61183a565b005b34801561072f57600080fd5b5061074a60048036038101906107459190613619565b6119bb565b005b34801561075857600080fd5b50610773600480360381019061076e919061379f565b611a1d565b604051610780919061459a565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613804565b611ac4565b005b3480156107be57600080fd5b506107c7611c34565b6040516107d4919061499c565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061358e565b611d84565b604051610811919061457f565b60405180910390f35b610822611e18565b005b34801561083057600080fd5b5061084b60048036038101906108469190613565565b611ed4565b005b600061085882611fcc565b9050919050565b60606000805461086e90614c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461089a90614c8f565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60006108fc82612046565b61093b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109329061485c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109818261103d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e9906148dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a116120b2565b73ffffffffffffffffffffffffffffffffffffffff161480610a405750610a3f81610a3a6120b2565b611d84565b5b610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a769061479c565b60405180910390fd5b610a8983836120ba565b505050565b600d8054610a9b90614c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790614c8f565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b610b246120b2565b73ffffffffffffffffffffffffffffffffffffffff16610b4261158c565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f9061487c565b60405180910390fd5b80600d9080519060200190610bae929190613389565b5050565b6060600e8054610bc190614c8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed90614c8f565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b5050505050905090565b6000600880549050905090565b610c62610c5c6120b2565b82612173565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c989061491c565b60405180910390fd5b610cac838383612251565b505050565b6000610cbc836112ae565b8210610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061465c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d5e611020565b15610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061477c565b60405180910390fd5b600081118015610daf575060328111155b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de5906147fc565b60405180910390fd5b61271081610dfa6113ee565b610e049190614ac4565b1115610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c9061495c565b60405180910390fd5b80610e4e611c34565b610e589190614b4b565b341015610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e919061483c565b60405180910390fd5b60005b81811015610ecf576000610eaf6113ee565b9050610ebb33826124ad565b508080610ec790614cc1565b915050610e9d565b5050565b610eee838383604051806020016040528060008152506119bb565b505050565b6000610efd610c44565b8210610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f359061493c565b60405180910390fd5b60088281548110610f78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f926120b2565b73ffffffffffffffffffffffffffffffffffffffff16610fb061158c565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd9061487c565b60405180910390fd5b80600e908051906020019061101c929190613389565b5050565b6000600a60009054906101000a900460ff16905090565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906147dc565b60405180910390fd5b80915050919050565b6110f76120b2565b73ffffffffffffffffffffffffffffffffffffffff1661111561158c565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111629061487c565b60405180910390fd5b60006111756113ee565b9050600083116111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906148fc565b60405180910390fd5b61271083826111c99190614ac4565b111561120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061463c565b60405180910390fd5b600083600b5461121a9190614ba5565b101561125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906146dc565b60405180910390fd5b60005b838110156112a85761127b8382846112769190614ac4565b6124ad565b6001600b600082825461128e9190614ba5565b9250508190555080806112a090614cc1565b91505061125e565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611316906147bc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136e6120b2565b73ffffffffffffffffffffffffffffffffffffffff1661138c61158c565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061487c565b60405180910390fd5b6113ec60006124cb565b565b6000600c546113fb610c44565b6114059190614ba5565b905090565b60606000611417836112ae565b9050600081141561149a57600067ffffffffffffffff811115611463577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114915781602001602082028036833780820191505090505b50915050611581565b60008167ffffffffffffffff8111156114dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561150a5781602001602082028036833780820191505090505b50905060005b8281101561157a576115228582610cb1565b82828151811061155b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061157290614cc1565b915050611510565b8193505050505b919050565b600b5481565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115c590614c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546115f190614c8f565b801561163e5780601f106116135761010080835404028352916020019161163e565b820191906000526020600020905b81548152906001019060200180831161162157829003601f168201915b5050505050905090565b6116506120b2565b73ffffffffffffffffffffffffffffffffffffffff1661166e61158c565b73ffffffffffffffffffffffffffffffffffffffff16146116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb9061487c565b60405180910390fd5b6116cc611020565b1561170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117039061477c565b60405180910390fd5b611714612591565b565b61171e6120b2565b73ffffffffffffffffffffffffffffffffffffffff1661173c61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117899061487c565b60405180910390fd5b61179a611020565b6117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061461c565b60405180910390fd5b6000600e80546117e890614c8f565b90501161182a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118219061473c565b60405180910390fd5b611832612634565b565b61271081565b6118426120b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a79061471c565b60405180910390fd5b80600560006118bd6120b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196a6120b2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119af919061457f565b60405180910390a35050565b6119cc6119c66120b2565b83612173565b611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a029061491c565b60405180910390fd5b611a17848484846126d6565b50505050565b6060611a2882612046565b611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e906148bc565b60405180910390fd5b6000611a71612732565b90506000815111611a915760405180602001604052806000815250611abc565b80611a9b846127c4565b604051602001611aac9291906144d2565b6040516020818303038152906040525b915050919050565b611acc6120b2565b73ffffffffffffffffffffffffffffffffffffffff16611aea61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061487c565b60405180910390fd5b60008311611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a9061497c565b60405180910390fd5b6127108210158015611ba2575061277f8383611b9f9190614ac4565b11155b611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd8906145bc565b60405180910390fd5b60005b83811015611c2e57611c01828285611bfc9190614ac4565b6124ad565b6001600c6000828254611c149190614ac4565b925050819055508080611c2690614cc1565b915050611be4565b50505050565b6000612710611c416113ee565b10611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c78906145fc565b60405180910390fd5b6000611c8b6113ee565b90506126ac8110611ca757670de0b6b3a7640000915050611d81565b61251c8110611cc157670c59ea48da190000915050611d81565b6123288110611cdb576707a1fe1602770000915050611d81565b6121348110611cf5576704b7ec32d7a20000915050611d81565b611d4c8110611d0f576702ea11e32ad50000915050611d81565b6117708110611d29576701cdda4faccd0000915050611d81565b610fa08110611d435767011c37937e080000915050611d81565b6107d08110611d5c5766b1a2bc2ec50000915050611d81565b6103e88110611d7557666a94d74f430000915050611d81565b66470de4df8200009150505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e206120b2565b73ffffffffffffffffffffffffffffffffffffffff16611e3e61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b9061487c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611ed257600080fd5b565b611edc6120b2565b73ffffffffffffffffffffffffffffffffffffffff16611efa61158c565b73ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061487c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb79061469c565b60405180910390fd5b611fc9816124cb565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061203f575061203e82612971565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661212d8361103d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061217e82612046565b6121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b49061475c565b60405180910390fd5b60006121c88361103d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223757508373ffffffffffffffffffffffffffffffffffffffff1661221f846108f1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224857506122478185611d84565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122718261103d565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be9061489c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e906146fc565b60405180910390fd5b612342838383612a53565b61234d6000826120ba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239d9190614ba5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f49190614ac4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124c7828260405180602001604052806000815250612a63565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612599611020565b156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d09061477c565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861261d6120b2565b60405161262a91906144f6565b60405180910390a1565b61263c611020565b61267b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126729061461c565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126bf6120b2565b6040516126cc91906144f6565b60405180910390a1565b6126e1848484612251565b6126ed84848484612abe565b61272c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127239061467c565b60405180910390fd5b50505050565b6060600e805461274190614c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461276d90614c8f565b80156127ba5780601f1061278f576101008083540402835291602001916127ba565b820191906000526020600020905b81548152906001019060200180831161279d57829003601f168201915b5050505050905090565b6060600082141561280c576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296c565b600082905060005b6000821461283e57808061282790614cc1565b915050600a826128379190614b1a565b9150612814565b60008167ffffffffffffffff811115612880577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128b25781602001600182028036833780820191505090505b5090505b60008514612965576001826128cb9190614ba5565b9150600a856128da9190614d0a565b60306128e69190614ac4565b60f81b818381518110612922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295e9190614b1a565b94506128b6565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a4c5750612a4b82612c55565b5b9050919050565b612a5e838383612cbf565b505050565b612a6d8383612d17565b612a7a6000848484612abe565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab09061467c565b60405180910390fd5b505050565b6000612adf8473ffffffffffffffffffffffffffffffffffffffff16612ee5565b15612c48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b086120b2565b8786866040518563ffffffff1660e01b8152600401612b2a9493929190614511565b602060405180830381600087803b158015612b4457600080fd5b505af1925050508015612b7557506040513d601f19601f82011682018060405250810190612b729190613735565b60015b612bf8573d8060008114612ba5576040519150601f19603f3d011682016040523d82523d6000602084013e612baa565b606091505b50600081511415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be79061467c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4d565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cca838383612ef8565b612cd2611020565b15612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d09906145dc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e9061481c565b60405180910390fd5b612d9081612046565b15612dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc7906146bc565b60405180910390fd5b612ddc60008383612a53565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2c9190614ac4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b612f0383838361300c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4657612f4181613011565b612f85565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f8457612f83838261305a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc857612fc3816131c7565b613007565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461300657613005828261330a565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613067846112ae565b6130719190614ba5565b9050600060076000848152602001908152602001600020549050818114613156576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131db9190614ba5565b9050600060096000848152602001908152602001600020549050600060088381548110613231577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613279577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613315836112ae565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461339590614c8f565b90600052602060002090601f0160209004810192826133b757600085556133fe565b82601f106133d057805160ff19168380011785556133fe565b828001600101855582156133fe579182015b828111156133fd5782518255916020019190600101906133e2565b5b50905061340b919061340f565b5090565b5b80821115613428576000816000905550600101613410565b5090565b600061343f61343a846149e8565b6149b7565b90508281526020810184848401111561345757600080fd5b613462848285614c4d565b509392505050565b600061347d61347884614a18565b6149b7565b90508281526020810184848401111561349557600080fd5b6134a0848285614c4d565b509392505050565b6000813590506134b781614e08565b92915050565b6000813590506134cc81614e1f565b92915050565b6000813590506134e181614e36565b92915050565b6000815190506134f681614e36565b92915050565b600082601f83011261350d57600080fd5b813561351d84826020860161342c565b91505092915050565b600082601f83011261353757600080fd5b813561354784826020860161346a565b91505092915050565b60008135905061355f81614e4d565b92915050565b60006020828403121561357757600080fd5b6000613585848285016134a8565b91505092915050565b600080604083850312156135a157600080fd5b60006135af858286016134a8565b92505060206135c0858286016134a8565b9150509250929050565b6000806000606084860312156135df57600080fd5b60006135ed868287016134a8565b93505060206135fe868287016134a8565b925050604061360f86828701613550565b9150509250925092565b6000806000806080858703121561362f57600080fd5b600061363d878288016134a8565b945050602061364e878288016134a8565b935050604061365f87828801613550565b925050606085013567ffffffffffffffff81111561367c57600080fd5b613688878288016134fc565b91505092959194509250565b600080604083850312156136a757600080fd5b60006136b5858286016134a8565b92505060206136c6858286016134bd565b9150509250929050565b600080604083850312156136e357600080fd5b60006136f1858286016134a8565b925050602061370285828601613550565b9150509250929050565b60006020828403121561371e57600080fd5b600061372c848285016134d2565b91505092915050565b60006020828403121561374757600080fd5b6000613755848285016134e7565b91505092915050565b60006020828403121561377057600080fd5b600082013567ffffffffffffffff81111561378a57600080fd5b61379684828501613526565b91505092915050565b6000602082840312156137b157600080fd5b60006137bf84828501613550565b91505092915050565b600080604083850312156137db57600080fd5b60006137e985828601613550565b92505060206137fa858286016134a8565b9150509250929050565b60008060006060848603121561381957600080fd5b600061382786828701613550565b935050602061383886828701613550565b9250506040613849868287016134a8565b9150509250925092565b600061385f83836144b4565b60208301905092915050565b61387481614bd9565b82525050565b600061388582614a58565b61388f8185614a86565b935061389a83614a48565b8060005b838110156138cb5781516138b28882613853565b97506138bd83614a79565b92505060018101905061389e565b5085935050505092915050565b6138e181614beb565b82525050565b60006138f282614a63565b6138fc8185614a97565b935061390c818560208601614c5c565b61391581614df7565b840191505092915050565b600061392b82614a6e565b6139358185614aa8565b9350613945818560208601614c5c565b61394e81614df7565b840191505092915050565b600061396482614a6e565b61396e8185614ab9565b935061397e818560208601614c5c565b80840191505092915050565b6000613997603383614aa8565b91507f4c696d6974656420456465727074696f6e7320617265206265747765656e3a2060008301527f3130303030203c3d206964203c203130313131000000000000000000000000006020830152604082019050919050565b60006139fd602b83614aa8565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b6000613a63603083614aa8565b91507f5468697320646572707920646f6573206e6f742065786973742120546865726560008301527f20617265206f6e6c792031302c303030000000000000000000000000000000006020830152604082019050919050565b6000613ac9601483614aa8565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613b09602183614aa8565b91507f546865726520617265206e6f7420656e6f75676820446572707973206c65667460008301527f21000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b6f602b83614aa8565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613bd5603283614aa8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c3b602683614aa8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca1601c83614aa8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613ce1601783614aa8565b91507f41697264726f702071756f7461206578636565646564210000000000000000006000830152602082019050919050565b6000613d21602483614aa8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d87601983614aa8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613dc7604783614aa8565b91507f4d65746164617461206d7573742062652075706c6f6164656420616e6420697460008301527f73206c6f636174696f6e206d757374206265207365742076696120736574426160208301527f73655552492829000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613e53602c83614aa8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613eb9601083614aa8565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613ef9603883614aa8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f5f602a83614aa8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fc5602983614aa8565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061402b602583614aa8565b91507f596f752063616e206361746368206265747765656e203120616e64203530206460008301527f65727079730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614091602083614aa8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006140d1603983614aa8565b91507f5468652045746865722076616c75652073656e74206973206c6573732074686160008301527f6e20746865206e656564656420636174636820707269636521000000000000006020830152604082019050919050565b6000614137602c83614aa8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061419d602083614aa8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141dd602983614aa8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614243602f83614aa8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006142a9602183614aa8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430f601d83614aa8565b91507f506f73697469766520696e746567657220446572707973206f6e6c59210000006000830152602082019050919050565b600061434f603183614aa8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006143b5602c83614aa8565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061441b602383614aa8565b91507f5468657265206172656e27742074686174206d616e7920446572707973206c6560008301527f66742100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614481601d83614aa8565b91507f506f73697469766520696e746567657220446572707973206f6e6c79210000006000830152602082019050919050565b6144bd81614c43565b82525050565b6144cc81614c43565b82525050565b60006144de8285613959565b91506144ea8284613959565b91508190509392505050565b600060208201905061450b600083018461386b565b92915050565b6000608082019050614526600083018761386b565b614533602083018661386b565b61454060408301856144c3565b818103606083015261455281846138e7565b905095945050505050565b60006020820190508181036000830152614577818461387a565b905092915050565b600060208201905061459460008301846138d8565b92915050565b600060208201905081810360008301526145b48184613920565b905092915050565b600060208201905081810360008301526145d58161398a565b9050919050565b600060208201905081810360008301526145f5816139f0565b9050919050565b6000602082019050818103600083015261461581613a56565b9050919050565b6000602082019050818103600083015261463581613abc565b9050919050565b6000602082019050818103600083015261465581613afc565b9050919050565b6000602082019050818103600083015261467581613b62565b9050919050565b6000602082019050818103600083015261469581613bc8565b9050919050565b600060208201905081810360008301526146b581613c2e565b9050919050565b600060208201905081810360008301526146d581613c94565b9050919050565b600060208201905081810360008301526146f581613cd4565b9050919050565b6000602082019050818103600083015261471581613d14565b9050919050565b6000602082019050818103600083015261473581613d7a565b9050919050565b6000602082019050818103600083015261475581613dba565b9050919050565b6000602082019050818103600083015261477581613e46565b9050919050565b6000602082019050818103600083015261479581613eac565b9050919050565b600060208201905081810360008301526147b581613eec565b9050919050565b600060208201905081810360008301526147d581613f52565b9050919050565b600060208201905081810360008301526147f581613fb8565b9050919050565b600060208201905081810360008301526148158161401e565b9050919050565b6000602082019050818103600083015261483581614084565b9050919050565b60006020820190508181036000830152614855816140c4565b9050919050565b600060208201905081810360008301526148758161412a565b9050919050565b6000602082019050818103600083015261489581614190565b9050919050565b600060208201905081810360008301526148b5816141d0565b9050919050565b600060208201905081810360008301526148d581614236565b9050919050565b600060208201905081810360008301526148f58161429c565b9050919050565b6000602082019050818103600083015261491581614302565b9050919050565b6000602082019050818103600083015261493581614342565b9050919050565b60006020820190508181036000830152614955816143a8565b9050919050565b600060208201905081810360008301526149758161440e565b9050919050565b6000602082019050818103600083015261499581614474565b9050919050565b60006020820190506149b160008301846144c3565b92915050565b6000604051905081810181811067ffffffffffffffff821117156149de576149dd614dc8565b5b8060405250919050565b600067ffffffffffffffff821115614a0357614a02614dc8565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614a3357614a32614dc8565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614acf82614c43565b9150614ada83614c43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0f57614b0e614d3b565b5b828201905092915050565b6000614b2582614c43565b9150614b3083614c43565b925082614b4057614b3f614d6a565b5b828204905092915050565b6000614b5682614c43565b9150614b6183614c43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9a57614b99614d3b565b5b828202905092915050565b6000614bb082614c43565b9150614bbb83614c43565b925082821015614bce57614bcd614d3b565b5b828203905092915050565b6000614be482614c23565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c7a578082015181840152602081019050614c5f565b83811115614c89576000848401525b50505050565b60006002820490506001821680614ca757607f821691505b60208210811415614cbb57614cba614d99565b5b50919050565b6000614ccc82614c43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cff57614cfe614d3b565b5b600182019050919050565b6000614d1582614c43565b9150614d2083614c43565b925082614d3057614d2f614d6a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614e1181614bd9565b8114614e1c57600080fd5b50565b614e2881614beb565b8114614e3357600080fd5b50565b614e3f81614bf7565b8114614e4a57600080fd5b50565b614e5681614c43565b8114614e6157600080fd5b5056fea264697066735822122091827f44ba348a335c5f15d86aef49ef1d092b19898b1e578ab85361d4cb650564736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e704d5639797942706857374c645a4d6833566f456d5850557967434d64474a37336465466e394a595864642f00000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string): ipfs://QmNpMV9yyBphW7LdZMh3VoEmXPUygCMdGJ73deFn9JYXdd/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e704d5639797942706857374c645a4d6833566f456d58
Arg [3] : 50557967434d64474a37336465466e394a595864642f00000000000000000000


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.