ETH Price: $2,649.17 (-3.28%)

DerpySpooks (DSPOOK)
 

Overview

TokenID

23

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DerpySpooks

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : DerpySpooks.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/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Derpys.sol";

/*****
                                                    
▓█████▄ ▓█████  ██▀███   ██▓███ ▓██   ██▓           
▒██▀ ██▌▓█   ▀ ▓██ ▒ ██▒▓██░  ██▒▒██  ██▒           
░██   █▌▒███   ▓██ ░▄█ ▒▓██░ ██▓▒ ▒██ ██░           
░▓█▄   ▌▒▓█  ▄ ▒██▀▀█▄  ▒██▄█▓▒ ▒ ░ ▐██▓░           
░▒████▓ ░▒████▒░██▓ ▒██▒▒██▒ ░  ░ ░ ██▒▓░           
 ▒▒▓  ▒ ░░ ▒░ ░░ ▒▓ ░▒▓░▒▓▒░ ░  ░  ██▒▒▒            
 ░ ▒  ▒  ░ ░  ░  ░▒ ░ ▒░░▒ ░     ▓██ ░▒░            
 ░ ░  ░    ░     ░░   ░ ░░       ▒ ▒ ░░             
   ░       ░  ░   ░              ░ ░                
 ░                               ░ ░                
  ██████  ██▓███   ▒█████   ▒█████   ██ ▄█▀  ██████ 
▒██    ▒ ▓██░  ██▒▒██▒  ██▒▒██▒  ██▒ ██▄█▒ ▒██    ▒ 
░ ▓██▄   ▓██░ ██▓▒▒██░  ██▒▒██░  ██▒▓███▄░ ░ ▓██▄   
  ▒   ██▒▒██▄█▓▒ ▒▒██   ██░▒██   ██░▓██ █▄   ▒   ██▒
▒██████▒▒▒██▒ ░  ░░ ████▓▒░░ ████▓▒░▒██▒ █▄▒██████▒▒
▒ ▒▓▒ ▒ ░▒▓▒░ ░  ░░ ▒░▒░▒░ ░ ▒░▒░▒░ ▒ ▒▒ ▓▒▒ ▒▓▒ ▒ ░
░ ░▒  ░ ░░▒ ░       ░ ▒ ▒░   ░ ▒ ▒░ ░ ░▒ ▒░░ ░▒  ░ ░
░  ░  ░  ░░       ░ ░ ░ ▒  ░ ░ ░ ▒  ░ ░░ ░ ░  ░  ░  
      ░               ░ ░      ░ ░  ░  ░         ░  
                                                    
*****/

/// @title DerpySpooks
/// @author @CoinFuPanda @DerpysNFT
/** 
 * @notice The DerpySpooks are undead and unsavoury Derpys
 * that have been banished from this realm. They can be summoned 
 * from beyond the Aether if the summoner is willing to pay 
 * the blood price. Summoning costs only a drop of Derpy blood,
 * but if the summoner does not hold a Derpy they can pay in Ether.
 */
contract DerpySpooks is ERC721, ERC721Enumerable, ERC721Pausable, ERC721Burnable, Ownable {
    address payable public derpysContract = payable(0xbC1E44dF6A4C09f87D4f2500c686c61429eeA112);
    bool public SUMMONING = true; 
	uint256 public MAX_SPOOKS = 3110;
    uint256 public AIRDROP_SPOOKS = 100;
    uint256 public BLOOD_PRICE = 0.02 ether;
	string private baseURI;

    /**
     * @param _baseTokenURI is the base address for metadata
     * */
	constructor (
        string memory _baseTokenURI
    ) 
        ERC721("DerpySpooks", "DSPOOK") 
    {
		setBaseURI(_baseTokenURI);
	}

    receive() external payable {
        //allow the contract to accept blood sacrifices
    }

    /**
     * @notice list the ids of all the DerpySpooks in _owner's wallet
     * @param _owner is the wallet address of the DerpySpook owner
     * */
    function listMyDerpys(address _owner) 
        external 
        view 
        returns (uint256[] memory) 
    {
        uint256 nSpooks = balanceOf(_owner);
        // if zero return an empty array
        if (nSpooks == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory spookList = new uint256[](nSpooks);
            uint256 ii;
            for (ii = 0; ii < nSpooks; ii++) {
                spookList[ii] = tokenOfOwnerByIndex(_owner, ii);
            }
            return spookList;
        }
    }

    /**
     * @notice SUMMON DERPYSPOOKS FROM BEYOND THE ETHER
     * @param numSpooks is the number of spooks to summon
     * */
    function summonDerpySpook(uint256 numSpooks) public payable {   
        require(
            SUMMONING == true, 
            "The dead may not be summoned at this time"
        );	
    	require(
            (numSpooks > 0) && (numSpooks <= 100),
            "You can summon between 1 and 100 spooks"
        );
    	require(
            (totalSupply() + numSpooks) <= MAX_SPOOKS,
            "There aren't that many DerpySpooks left"
        );
    	require(
            msg.value >= (bloodOrEther() * numSpooks),
            "The blood price offered is not enough"
        );

        //SUMMON THEM
    	uint256 iderp;
    	for(iderp = 0; iderp < numSpooks; iderp++) {
    		uint256 mintId = totalSupply();
    		_safeMint(msg.sender, mintId);
    	}
    }

    /**
     * @notice will the summoning be paid in blood or Ether?
     * @dev if the msg.sender holds a Derpy mints are free (BLOOD),
     * otherwise they cost ETHER
     * */
    function bloodOrEther() public view returns (uint256) {
        require(
            totalSupply() < MAX_SPOOKS,
            "No spooks remain unsummoned"
        );

        Derpys derpys = Derpys(derpysContract);
        uint256 ownerDerpys = derpys.balanceOf(msg.sender);

        if (ownerDerpys > 0) {
            //summoning paid in Derpy blood, no Ether required
            return 0;
        } else {
            //Ether is required in place of Derpy blood
            return BLOOD_PRICE;
        }
    }

    /**
     * @notice set a new metadata baseUri
     * @param baseURI_ is the new e.g. ipfs metadata root
     * */
    function setBaseURI(string memory baseURI_) public onlyOwner {
    	baseURI = baseURI_;
    }

    /**
     * @notice set a new price for summoning DerpySpooks
     * only payable for non Derpy holders
     * @param newWeiPrice is the new price in wei
     * */
    function setBloodPrice(uint256 newWeiPrice) public onlyOwner {
        BLOOD_PRICE = newWeiPrice;
    }

    /**
     * @notice point this contract to the Derpys contract to check 
     * if minters hold Derpys
     * @param newAddress is the new contract address of Derpys
     * */
    function setDerpysAddress(address payable newAddress) public onlyOwner {
        derpysContract = newAddress;
    }

    /**
     * @notice start or stop the summoning (minting)
     * */
    function flipSummoning() public onlyOwner {
    	SUMMONING = !SUMMONING;
    }

    /**
     * @dev pause all contract functions and token transfers
     * */
    function stopResurrection() public onlyOwner whenNotPaused {
    	_pause();
    }

    /**
     * @dev resume all contract functions and token transfers
     * */
    function startResurrection() public onlyOwner whenPaused {
        _unpause();
    }

    /**
     * @notice reduce the total supply of the collection
     * @param newMax new supply limit for the collection
     * */
    function reduceSupply(uint256 newMax) public onlyOwner {
        require(
            (newMax < MAX_SPOOKS) && (newMax >= totalSupply()), 
            "the supply may only be reduced"
        );
        MAX_SPOOKS = newMax;
    }

    /**
     * @notice withdraw sacrificial offerings
     * */
    function withdrawBloodSacrifice() public payable onlyOwner {
    	payable(msg.sender).transfer(address(this).balance);
    }

    /**
     * @notice airdrop spooks to another wallet
     * */
    function airdropDerpySpooks(uint256 numSpooks, address receiver) public onlyOwner {
    	// 33 DerpySpooks are reserved for airdrops, giveaways and the legends who helped us build this. 
    	// Thanks xx
    	
        uint256 nextTokenId = totalSupply();

        require(
            numSpooks > 0, 
            "Positive integer Spooks only!"
        );
        require(
            (nextTokenId + numSpooks) <= MAX_SPOOKS, 
            "There are not enough Spooks left!"
        );
    	require(
            (AIRDROP_SPOOKS - numSpooks) >= 0,
            "Airdrop quota exceeded!"
        );
        uint256 iDerp;
    	for (iDerp = 0; iDerp < numSpooks; iDerp++) {
    		_safeMint(receiver, (nextTokenId + iDerp));
            AIRDROP_SPOOKS -= 1;
    	}
    }
    
    /**
     * @dev 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;
    }

    /**
    * @dev override _beforeTokenTransfer in ERC721 contracts
    */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal 
    virtual 
    override(ERC721, ERC721Enumerable, ERC721Pausable) {
    	super._beforeTokenTransfer(from, to, tokenId);
    }

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

}

File 2 of 17 : 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 17 : 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 17 : 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 17 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 17 : 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 7 of 17 : 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 8 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 17 : 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 13 of 17 : 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 14 of 17 : 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 15 of 17 : 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 16 of 17 : 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 17 of 17 : 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",
        "devdoc",
        "userdoc",
        "metadata",
        "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_SPOOKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BLOOD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SPOOKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUMMONING","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSpooks","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"airdropDerpySpooks","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":[],"name":"bloodOrEther","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"derpysContract","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSummoning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"newWeiPrice","type":"uint256"}],"name":"setBloodPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"setDerpysAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startResurrection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopResurrection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSpooks","type":"uint256"}],"name":"summonDerpySpook","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBloodSacrifice","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405273bc1e44df6a4c09f87d4f2500c686c61429eea112600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60146101000a81548160ff021916908315150217905550610c26600c556064600d5566470de4df820000600e553480156200009757600080fd5b5060405162005657380380620056578339818101604052810190620000bd919062000475565b6040518060400160405280600b81526020017f446572707953706f6f6b730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4453504f4f4b000000000000000000000000000000000000000000000000000081525081600090805190602001906200014192919062000353565b5080600190805190602001906200015a92919062000353565b5050506000600a60006101000a81548160ff021916908315150217905550620001986200018c620001b060201b60201c565b620001b860201b60201c565b620001a9816200027e60201b60201c565b5062000660565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028e620001b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b46200032960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030490620004fc565b60405180910390fd5b80600f90805190602001906200032592919062000353565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036190620005cc565b90600052602060002090601f016020900481019282620003855760008555620003d1565b82601f10620003a057805160ff1916838001178555620003d1565b82800160010185558215620003d1579182015b82811115620003d0578251825591602001919060010190620003b3565b5b509050620003e09190620003e4565b5090565b5b80821115620003ff576000816000905550600101620003e5565b5090565b60006200041a620004148462000552565b6200051e565b9050828152602081018484840111156200043357600080fd5b6200044084828562000596565b509392505050565b600082601f8301126200045a57600080fd5b81516200046c84826020860162000403565b91505092915050565b6000602082840312156200048857600080fd5b600082015167ffffffffffffffff811115620004a357600080fd5b620004b18482850162000448565b91505092915050565b6000620004c960208362000585565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200051781620004ba565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171562000548576200054762000631565b5b8060405250919050565b600067ffffffffffffffff82111562000570576200056f62000631565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005b657808201518184015260208101905062000599565b83811115620005c6576000848401525b50505050565b60006002820490506001821680620005e557607f821691505b60208210811415620005fc57620005fb62000602565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614fe780620006706000396000f3fe6080604052600436106102295760003560e01c80636352211e1161012357806395d89b41116100ab578063d8e8c24b1161006f578063d8e8c24b146107dd578063e1e8ffba14610806578063e985e9c514610831578063f2fde38b1461086e578063f425e6a41461089757610230565b806395d89b411461070c578063a22cb46514610737578063b88d4fde14610760578063c4aebb5a14610789578063c87b56dd146107a057610230565b8063766b5d93116100f2578063766b5d9314610627578063779cb1a714610650578063806234441461067b5780638156d994146106a45780638da5cb5b146106e157610230565b80636352211e1461056b5780636ee1c7f2146105a857806370a08231146105d3578063715018a61461061057610230565b806326005065116101b157806342966c681161017557806342966c68146104885780634409241b146104b15780634f6ccce7146104da57806355f804b3146105175780635c975abb1461054057610230565b806326005065146103b05780632f745c59146103cc57806332af4c6114610409578063343b73201461043457806342842e0e1461045f57610230565b806310a14212116101f857806310a142121461030357806318160ddd1461031a578063196129b0146103455780631c3ea98c1461035c57806323b872dd1461038757610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613878565b6108a1565b60405161026991906146a3565b60405180910390f35b34801561027e57600080fd5b506102876108b3565b60405161029491906146be565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061390b565b610945565b6040516102d191906145ff565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061383c565b6109ca565b005b34801561030f57600080fd5b50610318610ae2565b005b34801561032657600080fd5b5061032f610b8a565b60405161033c9190614ac0565b60405180910390f35b34801561035157600080fd5b5061035a610b97565b005b34801561036857600080fd5b50610371610c65565b60405161037e9190614ac0565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613736565b610c6b565b005b6103ca60048036038101906103c5919061390b565b610ccb565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061383c565b610e56565b6040516104009190614ac0565b60405180910390f35b34801561041557600080fd5b5061041e610efb565b60405161042b9190614ac0565b60405180910390f35b34801561044057600080fd5b50610449610f01565b6040516104569190614ac0565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613736565b610f07565b005b34801561049457600080fd5b506104af60048036038101906104aa919061390b565b610f27565b005b3480156104bd57600080fd5b506104d860048036038101906104d391906136d1565b610f83565b005b3480156104e657600080fd5b5061050160048036038101906104fc919061390b565b611043565b60405161050e9190614ac0565b60405180910390f35b34801561052357600080fd5b5061053e600480360381019061053991906138ca565b6110da565b005b34801561054c57600080fd5b50610555611170565b60405161056291906146a3565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061390b565b611187565b60405161059f91906145ff565b60405180910390f35b3480156105b457600080fd5b506105bd611239565b6040516105ca919061461a565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906136a8565b61125f565b6040516106079190614ac0565b60405180910390f35b34801561061c57600080fd5b50610625611317565b005b34801561063357600080fd5b5061064e6004803603810190610649919061395d565b61139f565b005b34801561065c57600080fd5b5061066561155e565b6040516106729190614ac0565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061390b565b61167e565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906136a8565b61175b565b6040516106d89190614681565b60405180910390f35b3480156106ed57600080fd5b506106f66118d7565b60405161070391906145ff565b60405180910390f35b34801561071857600080fd5b50610721611901565b60405161072e91906146be565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613800565b611993565b005b34801561076c57600080fd5b5061078760048036038101906107829190613785565b611b14565b005b34801561079557600080fd5b5061079e611b76565b005b3480156107ac57600080fd5b506107c760048036038101906107c2919061390b565b611c43565b6040516107d491906146be565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061390b565b611cea565b005b34801561081257600080fd5b5061081b611d70565b60405161082891906146a3565b60405180910390f35b34801561083d57600080fd5b50610858600480360381019061085391906136fa565b611d83565b60405161086591906146a3565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906136a8565b611e17565b005b61089f611f0f565b005b60006108ac82611fd4565b9050919050565b6060600080546108c290614dc5565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee90614dc5565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b60006109508261204e565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690614920565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d582611187565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d906149c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a656120ba565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e6120ba565b611d83565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca906148a0565b60405180910390fd5b610add83836120c2565b505050565b610aea6120ba565b73ffffffffffffffffffffffffffffffffffffffff16610b086118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590614940565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b6000600880549050905090565b610b9f6120ba565b73ffffffffffffffffffffffffffffffffffffffff16610bbd6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90614940565b60405180910390fd5b610c1b611170565b15610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290614880565b60405180910390fd5b610c6361217b565b565b600c5481565b610c7c610c766120ba565b8261221e565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906149e0565b60405180910390fd5b610cc68383836122fc565b505050565b60011515600b60149054906101000a900460ff16151514610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890614a40565b60405180910390fd5b600081118015610d32575060648111155b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d68906147e0565b60405180910390fd5b600c5481610d7d610b8a565b610d879190614be8565b1115610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90614740565b60405180910390fd5b80610dd161155e565b610ddb9190614c6f565b341015610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490614a60565b60405180910390fd5b60005b81811015610e52576000610e32610b8a565b9050610e3e3382612558565b508080610e4a90614df7565b915050610e20565b5050565b6000610e618361125f565b8210610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990614760565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b600e5481565b610f2283838360405180602001604052806000815250611b14565b505050565b610f38610f326120ba565b8261221e565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90614a80565b60405180910390fd5b610f8081612576565b50565b610f8b6120ba565b73ffffffffffffffffffffffffffffffffffffffff16610fa96118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690614940565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061104d610b8a565b821061108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614a00565b60405180910390fd5b600882815481106110c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110e26120ba565b73ffffffffffffffffffffffffffffffffffffffff166111006118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90614940565b60405180910390fd5b80600f908051906020019061116c9291906134a2565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906148e0565b60405180910390fd5b80915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c7906148c0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131f6120ba565b73ffffffffffffffffffffffffffffffffffffffff1661133d6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90614940565b60405180910390fd5b61139d6000612687565b565b6113a76120ba565b73ffffffffffffffffffffffffffffffffffffffff166113c56118d7565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290614940565b60405180910390fd5b6000611425610b8a565b90506000831161146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614a20565b60405180910390fd5b600c5483826114799190614be8565b11156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614720565b60405180910390fd5b600083600d546114ca9190614cc9565b101561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614800565b60405180910390fd5b60005b838110156115585761152b8382846115269190614be8565b612558565b6001600d600082825461153e9190614cc9565b92505081905550808061155090614df7565b91505061150e565b50505050565b6000600c5461156b610b8a565b106115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290614aa0565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161160d91906145ff565b60206040518083038186803b15801561162557600080fd5b505afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190613934565b905060008111156116735760009250505061167b565b600e54925050505b90565b6116866120ba565b73ffffffffffffffffffffffffffffffffffffffff166116a46118d7565b73ffffffffffffffffffffffffffffffffffffffff16146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614940565b60405180910390fd5b600c5481108015611712575061170e610b8a565b8110155b611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890614960565b60405180910390fd5b80600c8190555050565b606060006117688361125f565b905060008114156117eb57600067ffffffffffffffff8111156117b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117e25781602001602082028036833780820191505090505b509150506118d2565b60008167ffffffffffffffff81111561182d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561185b5781602001602082028036833780820191505090505b50905060005b828110156118cb576118738582610e56565b8282815181106118ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806118c390614df7565b915050611861565b8193505050505b919050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461191090614dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461193c90614dc5565b80156119895780601f1061195e57610100808354040283529160200191611989565b820191906000526020600020905b81548152906001019060200180831161196c57829003601f168201915b5050505050905090565b61199b6120ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614840565b60405180910390fd5b8060056000611a166120ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac36120ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0891906146a3565b60405180910390a35050565b611b25611b1f6120ba565b8361221e565b611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906149e0565b60405180910390fd5b611b708484848461274d565b50505050565b611b7e6120ba565b73ffffffffffffffffffffffffffffffffffffffff16611b9c6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614940565b60405180910390fd5b611bfa611170565b611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614700565b60405180910390fd5b611c416127a9565b565b6060611c4e8261204e565b611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906149a0565b60405180910390fd5b6000611c9761284b565b90506000815111611cb75760405180602001604052806000815250611ce2565b80611cc1846128dd565b604051602001611cd29291906145db565b6040516020818303038152906040525b915050919050565b611cf26120ba565b73ffffffffffffffffffffffffffffffffffffffff16611d106118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90614940565b60405180910390fd5b80600e8190555050565b600b60149054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e1f6120ba565b73ffffffffffffffffffffffffffffffffffffffff16611e3d6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90614940565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa906147a0565b60405180910390fd5b611f0c81612687565b50565b611f176120ba565b73ffffffffffffffffffffffffffffffffffffffff16611f356118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290614940565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611fd1573d6000803e3d6000fd5b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612047575061204682612a8a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213583611187565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612183611170565b156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614880565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122076120ba565b60405161221491906145ff565b60405180910390a1565b60006122298261204e565b612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90614860565b60405180910390fd5b600061227383611187565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122e257508373ffffffffffffffffffffffffffffffffffffffff166122ca84610945565b73ffffffffffffffffffffffffffffffffffffffff16145b806122f357506122f28185611d83565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661231c82611187565b73ffffffffffffffffffffffffffffffffffffffff1614612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990614820565b60405180910390fd5b6123ed838383612b6c565b6123f86000826120c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124489190614cc9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249f9190614be8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612572828260405180602001604052806000815250612b7c565b5050565b600061258182611187565b905061258f81600084612b6c565b61259a6000836120c2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ea9190614cc9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127588484846122fc565b61276484848484612bd7565b6127a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a90614780565b60405180910390fd5b50505050565b6127b1611170565b6127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614700565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6128346120ba565b60405161284191906145ff565b60405180910390a1565b6060600f805461285a90614dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461288690614dc5565b80156128d35780601f106128a8576101008083540402835291602001916128d3565b820191906000526020600020905b8154815290600101906020018083116128b657829003601f168201915b5050505050905090565b60606000821415612925576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a85565b600082905060005b6000821461295757808061294090614df7565b915050600a826129509190614c3e565b915061292d565b60008167ffffffffffffffff811115612999577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129cb5781602001600182028036833780820191505090505b5090505b60008514612a7e576001826129e49190614cc9565b9150600a856129f39190614e40565b60306129ff9190614be8565b60f81b818381518110612a3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a779190614c3e565b94506129cf565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b655750612b6482612d6e565b5b9050919050565b612b77838383612dd8565b505050565b612b868383612e30565b612b936000848484612bd7565b612bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc990614780565b60405180910390fd5b505050565b6000612bf88473ffffffffffffffffffffffffffffffffffffffff16612ffe565b15612d61578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c216120ba565b8786866040518563ffffffff1660e01b8152600401612c439493929190614635565b602060405180830381600087803b158015612c5d57600080fd5b505af1925050508015612c8e57506040513d601f19601f82011682018060405250810190612c8b91906138a1565b60015b612d11573d8060008114612cbe576040519150601f19603f3d011682016040523d82523d6000602084013e612cc3565b606091505b50600081511415612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090614780565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d66565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612de3838383613011565b612deb611170565b15612e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e22906146e0565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9790614900565b60405180910390fd5b612ea98161204e565b15612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee0906147c0565b60405180910390fd5b612ef560008383612b6c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f459190614be8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b61301c838383613125565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561305f5761305a8161312a565b61309e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461309d5761309c8382613173565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130e1576130dc816132e0565b613120565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461311f5761311e8282613423565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131808461125f565b61318a9190614cc9565b905060006007600084815260200190815260200160002054905081811461326f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132f49190614cc9565b905060006009600084815260200190815260200160002054905060006008838154811061334a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613392577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613407577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061342e8361125f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546134ae90614dc5565b90600052602060002090601f0160209004810192826134d05760008555613517565b82601f106134e957805160ff1916838001178555613517565b82800160010185558215613517579182015b828111156135165782518255916020019190600101906134fb565b5b5090506135249190613528565b5090565b5b80821115613541576000816000905550600101613529565b5090565b600061355861355384614b0c565b614adb565b90508281526020810184848401111561357057600080fd5b61357b848285614d83565b509392505050565b600061359661359184614b3c565b614adb565b9050828152602081018484840111156135ae57600080fd5b6135b9848285614d83565b509392505050565b6000813590506135d081614f3e565b92915050565b6000813590506135e581614f55565b92915050565b6000813590506135fa81614f6c565b92915050565b60008135905061360f81614f83565b92915050565b60008151905061362481614f83565b92915050565b600082601f83011261363b57600080fd5b813561364b848260208601613545565b91505092915050565b600082601f83011261366557600080fd5b8135613675848260208601613583565b91505092915050565b60008135905061368d81614f9a565b92915050565b6000815190506136a281614f9a565b92915050565b6000602082840312156136ba57600080fd5b60006136c8848285016135c1565b91505092915050565b6000602082840312156136e357600080fd5b60006136f1848285016135d6565b91505092915050565b6000806040838503121561370d57600080fd5b600061371b858286016135c1565b925050602061372c858286016135c1565b9150509250929050565b60008060006060848603121561374b57600080fd5b6000613759868287016135c1565b935050602061376a868287016135c1565b925050604061377b8682870161367e565b9150509250925092565b6000806000806080858703121561379b57600080fd5b60006137a9878288016135c1565b94505060206137ba878288016135c1565b93505060406137cb8782880161367e565b925050606085013567ffffffffffffffff8111156137e857600080fd5b6137f48782880161362a565b91505092959194509250565b6000806040838503121561381357600080fd5b6000613821858286016135c1565b9250506020613832858286016135eb565b9150509250929050565b6000806040838503121561384f57600080fd5b600061385d858286016135c1565b925050602061386e8582860161367e565b9150509250929050565b60006020828403121561388a57600080fd5b600061389884828501613600565b91505092915050565b6000602082840312156138b357600080fd5b60006138c184828501613615565b91505092915050565b6000602082840312156138dc57600080fd5b600082013567ffffffffffffffff8111156138f657600080fd5b61390284828501613654565b91505092915050565b60006020828403121561391d57600080fd5b600061392b8482850161367e565b91505092915050565b60006020828403121561394657600080fd5b600061395484828501613693565b91505092915050565b6000806040838503121561397057600080fd5b600061397e8582860161367e565b925050602061398f858286016135c1565b9150509250929050565b60006139a583836145bd565b60208301905092915050565b6139ba81614d0f565b82525050565b6139c981614cfd565b82525050565b60006139da82614b7c565b6139e48185614baa565b93506139ef83614b6c565b8060005b83811015613a20578151613a078882613999565b9750613a1283614b9d565b9250506001810190506139f3565b5085935050505092915050565b613a3681614d21565b82525050565b6000613a4782614b87565b613a518185614bbb565b9350613a61818560208601614d92565b613a6a81614f2d565b840191505092915050565b6000613a8082614b92565b613a8a8185614bcc565b9350613a9a818560208601614d92565b613aa381614f2d565b840191505092915050565b6000613ab982614b92565b613ac38185614bdd565b9350613ad3818560208601614d92565b80840191505092915050565b6000613aec602b83614bcc565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b6000613b52601483614bcc565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613b92602183614bcc565b91507f546865726520617265206e6f7420656e6f7567682053706f6f6b73206c65667460008301527f21000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf8602783614bcc565b91507f5468657265206172656e27742074686174206d616e7920446572707953706f6f60008301527f6b73206c656674000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c5e602b83614bcc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc4603283614bcc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d2a602683614bcc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d90601c83614bcc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613dd0602783614bcc565b91507f596f752063616e2073756d6d6f6e206265747765656e203120616e642031303060008301527f2073706f6f6b73000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e36601783614bcc565b91507f41697264726f702071756f7461206578636565646564210000000000000000006000830152602082019050919050565b6000613e76602483614bcc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613edc601983614bcc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f1c602c83614bcc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f82601083614bcc565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613fc2603883614bcc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614028602a83614bcc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061408e602983614bcc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006140f4602083614bcc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614134602c83614bcc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061419a602083614bcc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141da601e83614bcc565b91507f74686520737570706c79206d6179206f6e6c79206265207265647563656400006000830152602082019050919050565b600061421a602983614bcc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614280602f83614bcc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006142e6602183614bcc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061434c603183614bcc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006143b2602c83614bcc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614418601d83614bcc565b91507f506f73697469766520696e74656765722053706f6f6b73206f6e6c79210000006000830152602082019050919050565b6000614458602983614bcc565b91507f5468652064656164206d6179206e6f742062652073756d6d6f6e65642061742060008301527f746869732074696d6500000000000000000000000000000000000000000000006020830152604082019050919050565b60006144be602583614bcc565b91507f54686520626c6f6f64207072696365206f666665726564206973206e6f74206560008301527f6e6f7567680000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614524603083614bcc565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b600061458a601b83614bcc565b91507f4e6f2073706f6f6b732072656d61696e20756e73756d6d6f6e656400000000006000830152602082019050919050565b6145c681614d79565b82525050565b6145d581614d79565b82525050565b60006145e78285613aae565b91506145f38284613aae565b91508190509392505050565b600060208201905061461460008301846139c0565b92915050565b600060208201905061462f60008301846139b1565b92915050565b600060808201905061464a60008301876139c0565b61465760208301866139c0565b61466460408301856145cc565b81810360608301526146768184613a3c565b905095945050505050565b6000602082019050818103600083015261469b81846139cf565b905092915050565b60006020820190506146b86000830184613a2d565b92915050565b600060208201905081810360008301526146d88184613a75565b905092915050565b600060208201905081810360008301526146f981613adf565b9050919050565b6000602082019050818103600083015261471981613b45565b9050919050565b6000602082019050818103600083015261473981613b85565b9050919050565b6000602082019050818103600083015261475981613beb565b9050919050565b6000602082019050818103600083015261477981613c51565b9050919050565b6000602082019050818103600083015261479981613cb7565b9050919050565b600060208201905081810360008301526147b981613d1d565b9050919050565b600060208201905081810360008301526147d981613d83565b9050919050565b600060208201905081810360008301526147f981613dc3565b9050919050565b6000602082019050818103600083015261481981613e29565b9050919050565b6000602082019050818103600083015261483981613e69565b9050919050565b6000602082019050818103600083015261485981613ecf565b9050919050565b6000602082019050818103600083015261487981613f0f565b9050919050565b6000602082019050818103600083015261489981613f75565b9050919050565b600060208201905081810360008301526148b981613fb5565b9050919050565b600060208201905081810360008301526148d98161401b565b9050919050565b600060208201905081810360008301526148f981614081565b9050919050565b60006020820190508181036000830152614919816140e7565b9050919050565b6000602082019050818103600083015261493981614127565b9050919050565b600060208201905081810360008301526149598161418d565b9050919050565b60006020820190508181036000830152614979816141cd565b9050919050565b600060208201905081810360008301526149998161420d565b9050919050565b600060208201905081810360008301526149b981614273565b9050919050565b600060208201905081810360008301526149d9816142d9565b9050919050565b600060208201905081810360008301526149f98161433f565b9050919050565b60006020820190508181036000830152614a19816143a5565b9050919050565b60006020820190508181036000830152614a398161440b565b9050919050565b60006020820190508181036000830152614a598161444b565b9050919050565b60006020820190508181036000830152614a79816144b1565b9050919050565b60006020820190508181036000830152614a9981614517565b9050919050565b60006020820190508181036000830152614ab98161457d565b9050919050565b6000602082019050614ad560008301846145cc565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b0257614b01614efe565b5b8060405250919050565b600067ffffffffffffffff821115614b2757614b26614efe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614b5757614b56614efe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf382614d79565b9150614bfe83614d79565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3357614c32614e71565b5b828201905092915050565b6000614c4982614d79565b9150614c5483614d79565b925082614c6457614c63614ea0565b5b828204905092915050565b6000614c7a82614d79565b9150614c8583614d79565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cbe57614cbd614e71565b5b828202905092915050565b6000614cd482614d79565b9150614cdf83614d79565b925082821015614cf257614cf1614e71565b5b828203905092915050565b6000614d0882614d59565b9050919050565b6000614d1a82614d59565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614db0578082015181840152602081019050614d95565b83811115614dbf576000848401525b50505050565b60006002820490506001821680614ddd57607f821691505b60208210811415614df157614df0614ecf565b5b50919050565b6000614e0282614d79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3557614e34614e71565b5b600182019050919050565b6000614e4b82614d79565b9150614e5683614d79565b925082614e6657614e65614ea0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614f4781614cfd565b8114614f5257600080fd5b50565b614f5e81614d0f565b8114614f6957600080fd5b50565b614f7581614d21565b8114614f8057600080fd5b50565b614f8c81614d2d565b8114614f9757600080fd5b50565b614fa381614d79565b8114614fae57600080fd5b5056fea264697066735822122000dea008168024cd274b050f624325c4e8d77361bcc8ad52495468065e9062e564736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656f554c66656867634672704669484671637a596a4b4778366a6768443665543650717571616b7161396a322f00000000000000000000

Deployed Bytecode

0x6080604052600436106102295760003560e01c80636352211e1161012357806395d89b41116100ab578063d8e8c24b1161006f578063d8e8c24b146107dd578063e1e8ffba14610806578063e985e9c514610831578063f2fde38b1461086e578063f425e6a41461089757610230565b806395d89b411461070c578063a22cb46514610737578063b88d4fde14610760578063c4aebb5a14610789578063c87b56dd146107a057610230565b8063766b5d93116100f2578063766b5d9314610627578063779cb1a714610650578063806234441461067b5780638156d994146106a45780638da5cb5b146106e157610230565b80636352211e1461056b5780636ee1c7f2146105a857806370a08231146105d3578063715018a61461061057610230565b806326005065116101b157806342966c681161017557806342966c68146104885780634409241b146104b15780634f6ccce7146104da57806355f804b3146105175780635c975abb1461054057610230565b806326005065146103b05780632f745c59146103cc57806332af4c6114610409578063343b73201461043457806342842e0e1461045f57610230565b806310a14212116101f857806310a142121461030357806318160ddd1461031a578063196129b0146103455780631c3ea98c1461035c57806323b872dd1461038757610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613878565b6108a1565b60405161026991906146a3565b60405180910390f35b34801561027e57600080fd5b506102876108b3565b60405161029491906146be565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061390b565b610945565b6040516102d191906145ff565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061383c565b6109ca565b005b34801561030f57600080fd5b50610318610ae2565b005b34801561032657600080fd5b5061032f610b8a565b60405161033c9190614ac0565b60405180910390f35b34801561035157600080fd5b5061035a610b97565b005b34801561036857600080fd5b50610371610c65565b60405161037e9190614ac0565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613736565b610c6b565b005b6103ca60048036038101906103c5919061390b565b610ccb565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061383c565b610e56565b6040516104009190614ac0565b60405180910390f35b34801561041557600080fd5b5061041e610efb565b60405161042b9190614ac0565b60405180910390f35b34801561044057600080fd5b50610449610f01565b6040516104569190614ac0565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613736565b610f07565b005b34801561049457600080fd5b506104af60048036038101906104aa919061390b565b610f27565b005b3480156104bd57600080fd5b506104d860048036038101906104d391906136d1565b610f83565b005b3480156104e657600080fd5b5061050160048036038101906104fc919061390b565b611043565b60405161050e9190614ac0565b60405180910390f35b34801561052357600080fd5b5061053e600480360381019061053991906138ca565b6110da565b005b34801561054c57600080fd5b50610555611170565b60405161056291906146a3565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061390b565b611187565b60405161059f91906145ff565b60405180910390f35b3480156105b457600080fd5b506105bd611239565b6040516105ca919061461a565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906136a8565b61125f565b6040516106079190614ac0565b60405180910390f35b34801561061c57600080fd5b50610625611317565b005b34801561063357600080fd5b5061064e6004803603810190610649919061395d565b61139f565b005b34801561065c57600080fd5b5061066561155e565b6040516106729190614ac0565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d919061390b565b61167e565b005b3480156106b057600080fd5b506106cb60048036038101906106c691906136a8565b61175b565b6040516106d89190614681565b60405180910390f35b3480156106ed57600080fd5b506106f66118d7565b60405161070391906145ff565b60405180910390f35b34801561071857600080fd5b50610721611901565b60405161072e91906146be565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613800565b611993565b005b34801561076c57600080fd5b5061078760048036038101906107829190613785565b611b14565b005b34801561079557600080fd5b5061079e611b76565b005b3480156107ac57600080fd5b506107c760048036038101906107c2919061390b565b611c43565b6040516107d491906146be565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff919061390b565b611cea565b005b34801561081257600080fd5b5061081b611d70565b60405161082891906146a3565b60405180910390f35b34801561083d57600080fd5b50610858600480360381019061085391906136fa565b611d83565b60405161086591906146a3565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906136a8565b611e17565b005b61089f611f0f565b005b60006108ac82611fd4565b9050919050565b6060600080546108c290614dc5565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee90614dc5565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b60006109508261204e565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690614920565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d582611187565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d906149c0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a656120ba565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e6120ba565b611d83565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca906148a0565b60405180910390fd5b610add83836120c2565b505050565b610aea6120ba565b73ffffffffffffffffffffffffffffffffffffffff16610b086118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590614940565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b6000600880549050905090565b610b9f6120ba565b73ffffffffffffffffffffffffffffffffffffffff16610bbd6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90614940565b60405180910390fd5b610c1b611170565b15610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290614880565b60405180910390fd5b610c6361217b565b565b600c5481565b610c7c610c766120ba565b8261221e565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906149e0565b60405180910390fd5b610cc68383836122fc565b505050565b60011515600b60149054906101000a900460ff16151514610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890614a40565b60405180910390fd5b600081118015610d32575060648111155b610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d68906147e0565b60405180910390fd5b600c5481610d7d610b8a565b610d879190614be8565b1115610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90614740565b60405180910390fd5b80610dd161155e565b610ddb9190614c6f565b341015610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490614a60565b60405180910390fd5b60005b81811015610e52576000610e32610b8a565b9050610e3e3382612558565b508080610e4a90614df7565b915050610e20565b5050565b6000610e618361125f565b8210610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990614760565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b600e5481565b610f2283838360405180602001604052806000815250611b14565b505050565b610f38610f326120ba565b8261221e565b610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90614a80565b60405180910390fd5b610f8081612576565b50565b610f8b6120ba565b73ffffffffffffffffffffffffffffffffffffffff16610fa96118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690614940565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061104d610b8a565b821061108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614a00565b60405180910390fd5b600882815481106110c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6110e26120ba565b73ffffffffffffffffffffffffffffffffffffffff166111006118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90614940565b60405180910390fd5b80600f908051906020019061116c9291906134a2565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906148e0565b60405180910390fd5b80915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c7906148c0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61131f6120ba565b73ffffffffffffffffffffffffffffffffffffffff1661133d6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90614940565b60405180910390fd5b61139d6000612687565b565b6113a76120ba565b73ffffffffffffffffffffffffffffffffffffffff166113c56118d7565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290614940565b60405180910390fd5b6000611425610b8a565b90506000831161146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614a20565b60405180910390fd5b600c5483826114799190614be8565b11156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614720565b60405180910390fd5b600083600d546114ca9190614cc9565b101561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614800565b60405180910390fd5b60005b838110156115585761152b8382846115269190614be8565b612558565b6001600d600082825461153e9190614cc9565b92505081905550808061155090614df7565b91505061150e565b50505050565b6000600c5461156b610b8a565b106115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290614aa0565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161160d91906145ff565b60206040518083038186803b15801561162557600080fd5b505afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190613934565b905060008111156116735760009250505061167b565b600e54925050505b90565b6116866120ba565b73ffffffffffffffffffffffffffffffffffffffff166116a46118d7565b73ffffffffffffffffffffffffffffffffffffffff16146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614940565b60405180910390fd5b600c5481108015611712575061170e610b8a565b8110155b611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890614960565b60405180910390fd5b80600c8190555050565b606060006117688361125f565b905060008114156117eb57600067ffffffffffffffff8111156117b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117e25781602001602082028036833780820191505090505b509150506118d2565b60008167ffffffffffffffff81111561182d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561185b5781602001602082028036833780820191505090505b50905060005b828110156118cb576118738582610e56565b8282815181106118ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806118c390614df7565b915050611861565b8193505050505b919050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461191090614dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461193c90614dc5565b80156119895780601f1061195e57610100808354040283529160200191611989565b820191906000526020600020905b81548152906001019060200180831161196c57829003601f168201915b5050505050905090565b61199b6120ba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614840565b60405180910390fd5b8060056000611a166120ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac36120ba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0891906146a3565b60405180910390a35050565b611b25611b1f6120ba565b8361221e565b611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906149e0565b60405180910390fd5b611b708484848461274d565b50505050565b611b7e6120ba565b73ffffffffffffffffffffffffffffffffffffffff16611b9c6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614940565b60405180910390fd5b611bfa611170565b611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614700565b60405180910390fd5b611c416127a9565b565b6060611c4e8261204e565b611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c84906149a0565b60405180910390fd5b6000611c9761284b565b90506000815111611cb75760405180602001604052806000815250611ce2565b80611cc1846128dd565b604051602001611cd29291906145db565b6040516020818303038152906040525b915050919050565b611cf26120ba565b73ffffffffffffffffffffffffffffffffffffffff16611d106118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d90614940565b60405180910390fd5b80600e8190555050565b600b60149054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e1f6120ba565b73ffffffffffffffffffffffffffffffffffffffff16611e3d6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90614940565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa906147a0565b60405180910390fd5b611f0c81612687565b50565b611f176120ba565b73ffffffffffffffffffffffffffffffffffffffff16611f356118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290614940565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611fd1573d6000803e3d6000fd5b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612047575061204682612a8a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213583611187565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612183611170565b156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614880565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122076120ba565b60405161221491906145ff565b60405180910390a1565b60006122298261204e565b612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90614860565b60405180910390fd5b600061227383611187565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122e257508373ffffffffffffffffffffffffffffffffffffffff166122ca84610945565b73ffffffffffffffffffffffffffffffffffffffff16145b806122f357506122f28185611d83565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661231c82611187565b73ffffffffffffffffffffffffffffffffffffffff1614612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990614820565b60405180910390fd5b6123ed838383612b6c565b6123f86000826120c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124489190614cc9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249f9190614be8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612572828260405180602001604052806000815250612b7c565b5050565b600061258182611187565b905061258f81600084612b6c565b61259a6000836120c2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ea9190614cc9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127588484846122fc565b61276484848484612bd7565b6127a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279a90614780565b60405180910390fd5b50505050565b6127b1611170565b6127f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e790614700565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6128346120ba565b60405161284191906145ff565b60405180910390a1565b6060600f805461285a90614dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461288690614dc5565b80156128d35780601f106128a8576101008083540402835291602001916128d3565b820191906000526020600020905b8154815290600101906020018083116128b657829003601f168201915b5050505050905090565b60606000821415612925576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a85565b600082905060005b6000821461295757808061294090614df7565b915050600a826129509190614c3e565b915061292d565b60008167ffffffffffffffff811115612999577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129cb5781602001600182028036833780820191505090505b5090505b60008514612a7e576001826129e49190614cc9565b9150600a856129f39190614e40565b60306129ff9190614be8565b60f81b818381518110612a3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a779190614c3e565b94506129cf565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b655750612b6482612d6e565b5b9050919050565b612b77838383612dd8565b505050565b612b868383612e30565b612b936000848484612bd7565b612bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc990614780565b60405180910390fd5b505050565b6000612bf88473ffffffffffffffffffffffffffffffffffffffff16612ffe565b15612d61578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c216120ba565b8786866040518563ffffffff1660e01b8152600401612c439493929190614635565b602060405180830381600087803b158015612c5d57600080fd5b505af1925050508015612c8e57506040513d601f19601f82011682018060405250810190612c8b91906138a1565b60015b612d11573d8060008114612cbe576040519150601f19603f3d011682016040523d82523d6000602084013e612cc3565b606091505b50600081511415612d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0090614780565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d66565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612de3838383613011565b612deb611170565b15612e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e22906146e0565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9790614900565b60405180910390fd5b612ea98161204e565b15612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee0906147c0565b60405180910390fd5b612ef560008383612b6c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f459190614be8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b61301c838383613125565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561305f5761305a8161312a565b61309e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461309d5761309c8382613173565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130e1576130dc816132e0565b613120565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461311f5761311e8282613423565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131808461125f565b61318a9190614cc9565b905060006007600084815260200190815260200160002054905081811461326f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132f49190614cc9565b905060006009600084815260200190815260200160002054905060006008838154811061334a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613392577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613407577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061342e8361125f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546134ae90614dc5565b90600052602060002090601f0160209004810192826134d05760008555613517565b82601f106134e957805160ff1916838001178555613517565b82800160010185558215613517579182015b828111156135165782518255916020019190600101906134fb565b5b5090506135249190613528565b5090565b5b80821115613541576000816000905550600101613529565b5090565b600061355861355384614b0c565b614adb565b90508281526020810184848401111561357057600080fd5b61357b848285614d83565b509392505050565b600061359661359184614b3c565b614adb565b9050828152602081018484840111156135ae57600080fd5b6135b9848285614d83565b509392505050565b6000813590506135d081614f3e565b92915050565b6000813590506135e581614f55565b92915050565b6000813590506135fa81614f6c565b92915050565b60008135905061360f81614f83565b92915050565b60008151905061362481614f83565b92915050565b600082601f83011261363b57600080fd5b813561364b848260208601613545565b91505092915050565b600082601f83011261366557600080fd5b8135613675848260208601613583565b91505092915050565b60008135905061368d81614f9a565b92915050565b6000815190506136a281614f9a565b92915050565b6000602082840312156136ba57600080fd5b60006136c8848285016135c1565b91505092915050565b6000602082840312156136e357600080fd5b60006136f1848285016135d6565b91505092915050565b6000806040838503121561370d57600080fd5b600061371b858286016135c1565b925050602061372c858286016135c1565b9150509250929050565b60008060006060848603121561374b57600080fd5b6000613759868287016135c1565b935050602061376a868287016135c1565b925050604061377b8682870161367e565b9150509250925092565b6000806000806080858703121561379b57600080fd5b60006137a9878288016135c1565b94505060206137ba878288016135c1565b93505060406137cb8782880161367e565b925050606085013567ffffffffffffffff8111156137e857600080fd5b6137f48782880161362a565b91505092959194509250565b6000806040838503121561381357600080fd5b6000613821858286016135c1565b9250506020613832858286016135eb565b9150509250929050565b6000806040838503121561384f57600080fd5b600061385d858286016135c1565b925050602061386e8582860161367e565b9150509250929050565b60006020828403121561388a57600080fd5b600061389884828501613600565b91505092915050565b6000602082840312156138b357600080fd5b60006138c184828501613615565b91505092915050565b6000602082840312156138dc57600080fd5b600082013567ffffffffffffffff8111156138f657600080fd5b61390284828501613654565b91505092915050565b60006020828403121561391d57600080fd5b600061392b8482850161367e565b91505092915050565b60006020828403121561394657600080fd5b600061395484828501613693565b91505092915050565b6000806040838503121561397057600080fd5b600061397e8582860161367e565b925050602061398f858286016135c1565b9150509250929050565b60006139a583836145bd565b60208301905092915050565b6139ba81614d0f565b82525050565b6139c981614cfd565b82525050565b60006139da82614b7c565b6139e48185614baa565b93506139ef83614b6c565b8060005b83811015613a20578151613a078882613999565b9750613a1283614b9d565b9250506001810190506139f3565b5085935050505092915050565b613a3681614d21565b82525050565b6000613a4782614b87565b613a518185614bbb565b9350613a61818560208601614d92565b613a6a81614f2d565b840191505092915050565b6000613a8082614b92565b613a8a8185614bcc565b9350613a9a818560208601614d92565b613aa381614f2d565b840191505092915050565b6000613ab982614b92565b613ac38185614bdd565b9350613ad3818560208601614d92565b80840191505092915050565b6000613aec602b83614bcc565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b6000613b52601483614bcc565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613b92602183614bcc565b91507f546865726520617265206e6f7420656e6f7567682053706f6f6b73206c65667460008301527f21000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf8602783614bcc565b91507f5468657265206172656e27742074686174206d616e7920446572707953706f6f60008301527f6b73206c656674000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c5e602b83614bcc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc4603283614bcc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d2a602683614bcc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d90601c83614bcc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613dd0602783614bcc565b91507f596f752063616e2073756d6d6f6e206265747765656e203120616e642031303060008301527f2073706f6f6b73000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e36601783614bcc565b91507f41697264726f702071756f7461206578636565646564210000000000000000006000830152602082019050919050565b6000613e76602483614bcc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613edc601983614bcc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f1c602c83614bcc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f82601083614bcc565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613fc2603883614bcc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614028602a83614bcc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061408e602983614bcc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006140f4602083614bcc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614134602c83614bcc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061419a602083614bcc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006141da601e83614bcc565b91507f74686520737570706c79206d6179206f6e6c79206265207265647563656400006000830152602082019050919050565b600061421a602983614bcc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614280602f83614bcc565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006142e6602183614bcc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061434c603183614bcc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006143b2602c83614bcc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614418601d83614bcc565b91507f506f73697469766520696e74656765722053706f6f6b73206f6e6c79210000006000830152602082019050919050565b6000614458602983614bcc565b91507f5468652064656164206d6179206e6f742062652073756d6d6f6e65642061742060008301527f746869732074696d6500000000000000000000000000000000000000000000006020830152604082019050919050565b60006144be602583614bcc565b91507f54686520626c6f6f64207072696365206f666665726564206973206e6f74206560008301527f6e6f7567680000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614524603083614bcc565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b600061458a601b83614bcc565b91507f4e6f2073706f6f6b732072656d61696e20756e73756d6d6f6e656400000000006000830152602082019050919050565b6145c681614d79565b82525050565b6145d581614d79565b82525050565b60006145e78285613aae565b91506145f38284613aae565b91508190509392505050565b600060208201905061461460008301846139c0565b92915050565b600060208201905061462f60008301846139b1565b92915050565b600060808201905061464a60008301876139c0565b61465760208301866139c0565b61466460408301856145cc565b81810360608301526146768184613a3c565b905095945050505050565b6000602082019050818103600083015261469b81846139cf565b905092915050565b60006020820190506146b86000830184613a2d565b92915050565b600060208201905081810360008301526146d88184613a75565b905092915050565b600060208201905081810360008301526146f981613adf565b9050919050565b6000602082019050818103600083015261471981613b45565b9050919050565b6000602082019050818103600083015261473981613b85565b9050919050565b6000602082019050818103600083015261475981613beb565b9050919050565b6000602082019050818103600083015261477981613c51565b9050919050565b6000602082019050818103600083015261479981613cb7565b9050919050565b600060208201905081810360008301526147b981613d1d565b9050919050565b600060208201905081810360008301526147d981613d83565b9050919050565b600060208201905081810360008301526147f981613dc3565b9050919050565b6000602082019050818103600083015261481981613e29565b9050919050565b6000602082019050818103600083015261483981613e69565b9050919050565b6000602082019050818103600083015261485981613ecf565b9050919050565b6000602082019050818103600083015261487981613f0f565b9050919050565b6000602082019050818103600083015261489981613f75565b9050919050565b600060208201905081810360008301526148b981613fb5565b9050919050565b600060208201905081810360008301526148d98161401b565b9050919050565b600060208201905081810360008301526148f981614081565b9050919050565b60006020820190508181036000830152614919816140e7565b9050919050565b6000602082019050818103600083015261493981614127565b9050919050565b600060208201905081810360008301526149598161418d565b9050919050565b60006020820190508181036000830152614979816141cd565b9050919050565b600060208201905081810360008301526149998161420d565b9050919050565b600060208201905081810360008301526149b981614273565b9050919050565b600060208201905081810360008301526149d9816142d9565b9050919050565b600060208201905081810360008301526149f98161433f565b9050919050565b60006020820190508181036000830152614a19816143a5565b9050919050565b60006020820190508181036000830152614a398161440b565b9050919050565b60006020820190508181036000830152614a598161444b565b9050919050565b60006020820190508181036000830152614a79816144b1565b9050919050565b60006020820190508181036000830152614a9981614517565b9050919050565b60006020820190508181036000830152614ab98161457d565b9050919050565b6000602082019050614ad560008301846145cc565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614b0257614b01614efe565b5b8060405250919050565b600067ffffffffffffffff821115614b2757614b26614efe565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614b5757614b56614efe565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf382614d79565b9150614bfe83614d79565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3357614c32614e71565b5b828201905092915050565b6000614c4982614d79565b9150614c5483614d79565b925082614c6457614c63614ea0565b5b828204905092915050565b6000614c7a82614d79565b9150614c8583614d79565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cbe57614cbd614e71565b5b828202905092915050565b6000614cd482614d79565b9150614cdf83614d79565b925082821015614cf257614cf1614e71565b5b828203905092915050565b6000614d0882614d59565b9050919050565b6000614d1a82614d59565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614db0578082015181840152602081019050614d95565b83811115614dbf576000848401525b50505050565b60006002820490506001821680614ddd57607f821691505b60208210811415614df157614df0614ecf565b5b50919050565b6000614e0282614d79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e3557614e34614e71565b5b600182019050919050565b6000614e4b82614d79565b9150614e5683614d79565b925082614e6657614e65614ea0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614f4781614cfd565b8114614f5257600080fd5b50565b614f5e81614d0f565b8114614f6957600080fd5b50565b614f7581614d21565b8114614f8057600080fd5b50565b614f8c81614d2d565b8114614f9757600080fd5b50565b614fa381614d79565b8114614fae57600080fd5b5056fea264697066735822122000dea008168024cd274b050f624325c4e8d77361bcc8ad52495468065e9062e564736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656f554c66656867634672704669484671637a596a4b4778366a6768443665543650717571616b7161396a322f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmeoULfehgcFrpFiHFqczYjKGx6jghD6eT6Pquqakqa9j2/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d656f554c66656867634672704669484671637a596a4b47
Arg [3] : 78366a6768443665543650717571616b7161396a322f00000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.