ETH Price: $2,419.79 (+0.08%)

Token

envoverse (ENVO)
 

Overview

Max Total Supply

333 ENVO

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zibzub.eth
Balance
2 ENVO
0x2511a8a4223333d730ecbb3e45d88e86d7f14bde
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Travelled back through time to combat climate change you can find 10,000 Envos fighting for a better tomorrow in the metaverse. Each Envo comes with: 1) A fully rigged 3D Avatar ready for games, animations or the metaverse. 2) Full ownership rights over your Envo 3) Voting...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
envoContract

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : simpleContract.sol
// SPDX-License-Identifier: MIT
/*///////////////////////////////////////////////////////////////////* *////////
/////////////////////////////////////////////////////////////////////, ,////////
/////////////////////////////////////////////////////////////////////  .////////
///////////////////////////////////////////////////////////////////    .////////
///////////////////////////////////////////////////////////////,       ,////////
/////////////////////////////////////////////////////////*             *////////
///////////////////////////////////////////////*,.            Oliver   /////////
////////////////////////////////////*,              Peter              /////////
/////////////////////////////.                             Chris      ,/////////
///////////////////////*                   Ismet                      //////////
////////////////////                               Danish            .//////////
/////////////////                   Ralf                             ///////////
//////////////.                               Erik                  ////////////
////////////                  Lorik                                ,////////////
//////////.                                                       ,/////////////
/////////                                                        ,//////////////
///////,               for                                      ////////////////
//////*                   Marie, Jonas, Julius, Maila,        ./////////////////
//////         */         Dicle, Manolya, Acelya,            ///////////////////
/////*      */.           Jalib and Max                    ,////////////////////
/////,   *//                                             .//////////////////////
/////*,//*             "the next generation"            ////////////////////////
////////                                             ,//////////////////////////
//////.                                           ./////////////////////////////
/////                                          .////////////////////////////////
////     .                                 .////////////////////////////////////
//,      ////                         */////////////////////////////////////////
/*      /////////*,.   ..,****//////////////////////////////////////////////////
/*    .,/////////////////////////////////////////////////////// envoverse.com */
// created by Ralf Schwoebel - https://www.envolabs.io/ - coding for the climate
// Art with purpose: Read up on our 5 year plan to improve the climate with NFTs

pragma solidity 0.8.12;

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

contract envoContract is ERC721Enumerable, Ownable {
    using Strings for uint256;
    // ------------------------------------------------------------------------------
    address public contractCreator;
    mapping(address => uint256) public addressMintedBalance;
    // ------------------------------------------------------------------------------
    uint256 public constant MAX_ENVOS = 10000;
    uint256 public constant VIP_ENVOS = 555;
    uint256 public constant MAX_VIPWA = 1;         // Only 1 in VIP list in the first swing
    uint256 public constant MAX_VIPWAUNLOCK = 20;  // End phase of VIP list, if something is left
    uint256 public constant RES_ENVOS = 500;
    uint256 public ENVOSAVAIL = 9500;
    // ------------------------------------------------------------------------------
    uint256 public currentDonation = 0.5 ether;    // Before anything is starting - if someone "finds" contract by accident
    uint256 public startDonation = 0.399 ether;    // when the public auction starts
    uint256 public endDonation = 0.199 ether;      // when the auction ends
    uint256 public restingDonation = 0.333 ether;  // long term value - remember Issus
    uint256 public vipDate = 1646502955;           // Date and time (GMT) - will be: Saturday, March 5, 2022 5:55:55 PM
    uint256 public vipDateUnlock = 1646546155;     // Date and time (GMT) - will be: Sunday, March 6, 2022 5:55:55 AM - WL go crazy
    uint256 public vipDonation = 0.075 ether;      // VIP value before the auction starts
    uint256 public startDate = 1646675755;         // Start Auction Date and time (GMT) - will be: Monday, March 7, 2022 5:55:55 PM
    uint256 public endDate = 1646762155;           // End Auction Date and time (GMT) - will be: Tuesday, March 8, 2022 5:55:55 PM
    uint256 public vipCounter = 0;
    // ------------------------------------------------------------------------------
    string public baseTokenURI;
    string public baseExtension = ".json";
    bool public isActive = true;
    // ------------------------------------------------------------------------------
    bytes32 public VIPMerkleRoot;
    bytes32[] VIPMerkleProofArr;
    address envolabsWallet = 0x5C8175298d3bdC2B5168773A4ac72d81f5122fF1;   // Secured founders wallet,
    address pumaWallet = 0x4B26BdF68Ac9Abfb19F6146313428E7F8B6041F4;       // thank you,
    address ponderwareWallet = 0xD342a4F0397B4268e6adce89b9B88C746AFA85Ee; // for the support!
    address nineWallet = 0x8c0d2B62F133Db265EC8554282eE60EcA0Fd5a9E;       // 9x9x9, thanks, buddy!

    event mintedEnvo(uint256 indexed id);

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        contractCreator = msg.sender;
        setBaseURI(_initBaseURI);
        mint(envolabsWallet, 14);     // mint the first 16 to the founders envolabs wallet, supporters and honorary
        mint(pumaWallet, 2);          // Thank you for the support, PUMA.eth!
        mint(ponderwareWallet, 4);    // Thank you for the support, mooncats!
        mint(nineWallet, 1);          // Thank you for the support, 9x9x9!
    }

    // internal return the base URI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    // ------------------------------------------------------------------------------------------------
    // public mint function - mints only to sender!
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        currentDonation = calcValue();
        if(msg.sender != contractCreator) {
            require(isActive, "Contract paused!");
        }
        require(_mintAmount > 0, "We can not mint zero...");
        require(supply + _mintAmount <= ENVOSAVAIL, "Supply exhausted, sorry we are sold out!");
        if(msg.sender != contractCreator) {
            require(msg.value >= currentDonation * _mintAmount, "You have not sent enough currency.");
        }
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
            emit mintedEnvo(supply + i);
        }
    }
    // ------------------------------------------------------------------------------------------------
    // VIP Miniting functions (aka Whitelist) - used via envoverse.com website - mints only one!
    function VIPmint(bytes32[] calldata merkleArr) public payable {
        uint256 supply = totalSupply();
        uint256 currentTime = block.timestamp;

        require(currentTime >= vipDate, "VIP cycle has not started yet!");
        require(currentTime <= startDate, "VIP cycle has ended, all ENVOS are now in the same set!");
        // set the proof array for the VIPlist for whitelisters
        VIPMerkleProofArr = merkleArr;
        require(
            MerkleProof.verify(
                VIPMerkleProofArr,
                VIPMerkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ), "Address does not exist in VIP list"
        );
        require(vipCounter < VIP_ENVOS, "VIP list exhausted");
        require(supply + 1 <= ENVOSAVAIL, "max NFT limit exceeded");

        if(currentTime < vipDateUnlock) {
            require(balanceOf(msg.sender) <= MAX_VIPWA, "You have reached your maximum allowance of Envos.");
        } else {
            require(balanceOf(msg.sender) <= MAX_VIPWAUNLOCK, "You have reached your maximum allowance of Envos.");
        }

        require(msg.value >= vipDonation, "You have not sent enough value.");

        _safeMint(msg.sender, supply + 1);
        vipCounter = vipCounter + 1;
        emit mintedEnvo(supply + 1);
    }
    // --------------------------------------------------------------------------------------
    function setVIPMerkleRoot(bytes32 merkleRoot) public onlyOwner {
        VIPMerkleRoot = merkleRoot;
    }
    function setMerkleProof(bytes32[] calldata merkleArr) public onlyOwner {
        VIPMerkleProofArr = merkleArr;
    }
    // ------------------------------------------------------------------------------------------------
    // ------------------------------------------------------------------------------------------------
    // Dutch auction in hourly steps (optional, set to same values, if disabled)
    function calcValue() internal view returns (uint256 nowValue) {
        // local vars to calc time frame and VIP values
        uint256 currentTime = block.timestamp;
        uint256 tickerSteps = endDate - startDate;
        uint256 currentSteps;
        uint256 daValueSteps;

        // check config
        require(isActive, "Donations are paused at the moment!");

        // No VIP sale yet nor did auction start!
        // ----------------------------------- regular value calc
        if(currentTime < startDate) {
            return currentDonation;
        }

        // there is only one value at the end of the auction = final
        if(currentTime > endDate) {
            return restingDonation;
        } else {
            // calc the hourly dropping dutch value
            daValueSteps = (startDonation - endDonation) / tickerSteps;
            currentSteps = currentTime - startDate;
            return startDonation - (daValueSteps * currentSteps);
        }
    }
    // ------------------------------------------------------------------------------------------------
    // ------------------------------------------------------------------------------------------------
    // - useful other tools
    // -
    function showVIPproof() public view returns (bytes32[] memory) {
        return VIPMerkleProofArr;
    }
    // -
    function giveRightNumber(uint256 myNumber) public pure returns (uint) {
        return myNumber % 10;
    }
    // -
    function showCurrentDonation() public view returns (uint256) {
        return calcValue();
    }
    // -
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseTokenURI = _newBaseURI;
    }
    // show current blockchain time
    function showBCtime() public view returns (uint256) {
        return block.timestamp;
    }
    // give complete tokenURI back, if base is set
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, giveRightNumber(tokenId).toString(), "/envo", tokenId.toString(), baseExtension)) : "";
    }
    //---------------------------------------------------------------------------------------
    //---------------------------------------------------------------------------------------
    // config functions, if needed for updating the settings by creator
    function changeReserved(uint256 newTotal) public onlyOwner {
        ENVOSAVAIL = newTotal;
    }
    function setStartDonation(uint256 newStartDonation) public onlyOwner {
        startDonation = newStartDonation;
    }
    function setEndDonation(uint256 newEndDonation) public onlyOwner {
        endDonation = newEndDonation;
    }
    function setStartDate(uint256 newStartTimestamp) public onlyOwner {
        startDate = newStartTimestamp;
    }
    function setEndDate(uint256 newEndTimestamp) public onlyOwner {
        endDate = newEndTimestamp;
    }
    function setVIPDate(uint256 newVIPTimestamp) public onlyOwner {
        vipDate = newVIPTimestamp;
    }
    function setVIPUnlockDate(uint256 newVIPTimestamp) public onlyOwner {
        vipDateUnlock = newVIPTimestamp;
    }
    function setVIPDonation(uint256 newVIPDonation) public onlyOwner {
        vipDonation = newVIPDonation;
    }
    function setRestingDonation(uint256 newRestingDonation) public onlyOwner {
        restingDonation = newRestingDonation;
    }
    // ----------------------------------------------------------------- WITHDRAW
    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
    function withdrawAllToAddress(address addr) public onlyOwner {
        require(payable(addr).send(address(this).balance));
    }
}

File 2 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"mintedEnvo","type":"event"},{"inputs":[],"name":"ENVOSAVAIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ENVOS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VIPWA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VIPWAUNLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RES_ENVOS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VIPMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VIP_ENVOS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleArr","type":"bytes32[]"}],"name":"VIPmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTotal","type":"uint256"}],"name":"changeReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDonation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endDonation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"myNumber","type":"uint256"}],"name":"giveRightNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restingDonation","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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTimestamp","type":"uint256"}],"name":"setEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndDonation","type":"uint256"}],"name":"setEndDonation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleArr","type":"bytes32[]"}],"name":"setMerkleProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRestingDonation","type":"uint256"}],"name":"setRestingDonation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTimestamp","type":"uint256"}],"name":"setStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartDonation","type":"uint256"}],"name":"setStartDonation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVIPTimestamp","type":"uint256"}],"name":"setVIPDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVIPDonation","type":"uint256"}],"name":"setVIPDonation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setVIPMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVIPTimestamp","type":"uint256"}],"name":"setVIPUnlockDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showBCtime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showCurrentDonation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showVIPproof","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startDonation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"vipCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vipDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vipDateUnlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vipDonation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"withdrawAllToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61251c600d556706f05b59d3b20000600e556705898862d1618000600f556702c2fd72164d800060105567049f0dbc56348000601155636223a42b6012556362244ceb60135567010a741a46278000601455636226472b60155563622798ab601655600060175560c06040526005608081905264173539b7b760d91b60a09081526200008f916019919062000c8f565b50601a805460ff19166001179055601d80546001600160a01b0319908116735c8175298d3bdc2b5168773a4ac72d81f5122ff117909155601e80548216734b26bdf68ac9abfb19f6146313428e7f8b6041f4179055601f8054821673d342a4f0397b4268e6adce89b9b88c746afa85ee17905560208054909116738c0d2b62f133db265ec8554282ee60eca0fd5a9e1790553480156200012e57600080fd5b506040516200405b3803806200405b833981016040819052620001519162000e0b565b8251839083906200016a90600090602085019062000c8f565b5080516200018090600190602084019062000c8f565b5050506200019d620001976200022760201b60201c565b6200022b565b600b80546001600160a01b03191633179055620001ba816200027d565b601d54620001d3906001600160a01b0316600e620002f6565b601e54620001ec906001600160a01b03166002620002f6565b601f5462000205906001600160a01b03166004620002f6565b6020546200021e906001600160a01b03166001620002f6565b5050506200103c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620002f290601890602084019062000c8f565b5050565b60006200030260085490565b90506200030e6200051e565b600e55600b546001600160a01b031633146200036b57601a5460ff166200036b5760405162461bcd60e51b815260206004820152601060248201526f436f6e7472616374207061757365642160801b6044820152606401620002d4565b60008211620003bd5760405162461bcd60e51b815260206004820152601760248201527f57652063616e206e6f74206d696e74207a65726f2e2e2e0000000000000000006044820152606401620002d4565b600d54620003cc838362000eb2565b11156200042d5760405162461bcd60e51b815260206004820152602860248201527f537570706c79206578686175737465642c20736f7272792077652061726520736044820152676f6c64206f75742160c01b6064820152608401620002d4565b600b546001600160a01b03163314620004ac5781600e5462000450919062000ecd565b341015620004ac5760405162461bcd60e51b815260206004820152602260248201527f596f752068617665206e6f742073656e7420656e6f7567682063757272656e636044820152613c9760f11b6064820152608401620002d4565b60015b8281116200051857620004ce84620004c8838562000eb2565b62000623565b620004da818362000eb2565b6040517f0896b6017765b065474da082c3f5f89189f576ded5b75f616721650091e34cc390600090a2806200050f8162000eef565b915050620004af565b50505050565b60155460165460009142918391620005369162000f0d565b601a54909150600090819060ff166200059e5760405162461bcd60e51b815260206004820152602360248201527f446f6e6174696f6e73206172652070617573656420617420746865206d6f6d656044820152626e742160e81b6064820152608401620002d4565b601554841015620005b557600e5494505050505090565b601654841115620005cc5760115494505050505090565b82601054600f54620005df919062000f0d565b620005eb919062000f27565b905060155484620005fd919062000f0d565b91506200060b828262000ecd565b600f546200061a919062000f0d565b94505050505090565b620002f28282604051806020016040528060008152506200064560201b60201c565b620006518383620006bd565b62000660600084848462000813565b620006b85760405162461bcd60e51b815260206004820152603260248201526000805160206200403b83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620002d4565b505050565b6001600160a01b038216620007155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620002d4565b6000818152600260205260409020546001600160a01b0316156200077c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002d4565b6200078a600083836200096c565b6001600160a01b0382166000908152600360205260408120805460019290620007b590849062000eb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000834846001600160a01b031662000a4860201b62001b5a1760201c565b156200096057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200086e90339089908890889060040162000f4a565b6020604051808303816000875af1925050508015620008ac575060408051601f3d908101601f19168201909252620008a99181019062000fa0565b60015b62000945573d808015620008dd576040519150601f19603f3d011682016040523d82523d6000602084013e620008e2565b606091505b5080516200093d5760405162461bcd60e51b815260206004820152603260248201526000805160206200403b83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620002d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000964565b5060015b949350505050565b62000984838383620006b860201b62000d801760201c565b6001600160a01b038316620009e257620009dc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000a08565b816001600160a01b0316836001600160a01b03161462000a085762000a08838262000a4e565b6001600160a01b03821662000a2257620006b88162000afb565b826001600160a01b0316826001600160a01b031614620006b857620006b8828262000bb5565b3b151590565b6000600162000a688462000c0660201b620017361760201c565b62000a74919062000f0d565b60008381526007602052604090205490915080821462000ac8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000b0f9060019062000f0d565b6000838152600960205260408120546008805493945090928490811062000b3a5762000b3a62000fd3565b90600052602060002001549050806008838154811062000b5e5762000b5e62000fd3565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b995762000b9962000fe9565b6001900381819060005260206000200160009055905550505050565b600062000bcd8362000c0660201b620017361760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000c735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620002d4565b506001600160a01b031660009081526003602052604090205490565b82805462000c9d9062000fff565b90600052602060002090601f01602090048101928262000cc1576000855562000d0c565b82601f1062000cdc57805160ff191683800117855562000d0c565b8280016001018555821562000d0c579182015b8281111562000d0c57825182559160200191906001019062000cef565b5062000d1a92915062000d1e565b5090565b5b8082111562000d1a576000815560010162000d1f565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000d6857818101518382015260200162000d4e565b83811115620005185750506000910152565b600082601f83011262000d8c57600080fd5b81516001600160401b038082111562000da95762000da962000d35565b604051601f8301601f19908116603f0116810190828211818310171562000dd45762000dd462000d35565b8160405283815286602085880101111562000dee57600080fd5b62000e0184602083016020890162000d4b565b9695505050505050565b60008060006060848603121562000e2157600080fd5b83516001600160401b038082111562000e3957600080fd5b62000e478783880162000d7a565b9450602086015191508082111562000e5e57600080fd5b62000e6c8783880162000d7a565b9350604086015191508082111562000e8357600080fd5b5062000e928682870162000d7a565b9150509250925092565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000ec85762000ec862000e9c565b500190565b600081600019048311821515161562000eea5762000eea62000e9c565b500290565b600060001982141562000f065762000f0662000e9c565b5060010190565b60008282101562000f225762000f2262000e9c565b500390565b60008262000f4557634e487b7160e01b600052601260045260246000fd5b500490565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000f898160a085016020870162000d4b565b601f01601f19169190910160a00195945050505050565b60006020828403121562000fb357600080fd5b81516001600160e01b03198116811462000fcc57600080fd5b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c908216806200101457607f821691505b602082108114156200103657634e487b7160e01b600052602260045260246000fd5b50919050565b612fef806200104c6000396000f3fe6080604052600436106103a25760003560e01c806355f804b3116101e7578063bcabbfb11161010d578063d81f72d6116100a0578063f2fde38b1161006f578063f2fde38b14610a34578063f81c06f514610a54578063fb5dfb8b14610a6a578063fe50e38814610a8057600080fd5b8063d81f72d614610996578063e2423e8b146109ab578063e453369c146109cb578063e985e9c5146109eb57600080fd5b8063c7772da2116100dc578063c7772da21461092b578063c87b56dd1461094b578063d150f8351461096b578063d547cfb71461098157600080fd5b8063bcabbfb1146108d4578063c09ba872146108ea578063c24a0f8b14610900578063c66828621461091657600080fd5b806382d95df51161018557806395d89b411161015457806395d89b411461085f578063a22cb46514610874578063b88d4fde14610894578063bb43dd5f146108b457600080fd5b806382d95df5146107eb578063832473841461080b5780638d21ab671461082b5780638da5cb5b1461084157600080fd5b806370a08231116101c157806370a082311461078a57806370dcf24b146107aa578063715018a6146107c057806381fe49d8146107d557600080fd5b806355f804b31461072a5780635be532e71461074a5780636352211e1461076a57600080fd5b806323b872dd116102cc5780633ccfd60b1161026a57806346843d0d1161023957806346843d0d146106aa5780634d38e5fa146106ca5780634f6ccce7146106ea578063520907491461070a57600080fd5b80633ccfd60b1461064d57806340c10f191461066257806342842e0e14610675578063453815a71461069557600080fd5b80632f745c59116102a65780632f745c59146105e45780633373af2f146106045780633784f0001461061a578063398f0c721461063a57600080fd5b806323b872dd14610598578063258c901f146105b857806326ec7914146105ce57600080fd5b80630b97bc86116103445780631ae005c1116103135780631ae005c1146105355780631bb3c4ea1461054b5780631e2f73b11461055e57806322f3e2d41461057e57600080fd5b80630b97bc86146104bd578063129729e5146104d357806318160ddd146104f357806318cae2691461050857600080fd5b8063063065d211610380578063063065d21461042057806306fdde0314610443578063081812fc14610465578063095ea7b31461049d57600080fd5b806301302924146103a757806301ffc9a7146103c957806305d855b2146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004612855565b610a96565b005b3480156103d557600080fd5b506103e96103e4366004612884565b610ace565b60405190151581526020015b60405180910390f35b34801561040a57600080fd5b50610413610af9565b6040516103f591906128a1565b34801561042c57600080fd5b50610435600181565b6040519081526020016103f5565b34801561044f57600080fd5b50610458610b51565b6040516103f5919061293d565b34801561047157600080fd5b50610485610480366004612855565b610bda565b6040516001600160a01b0390911681526020016103f5565b3480156104a957600080fd5b506103c76104b836600461296c565b610c6f565b3480156104c957600080fd5b5061043560155481565b3480156104df57600080fd5b506103c76104ee366004612855565b610d85565b3480156104ff57600080fd5b50600854610435565b34801561051457600080fd5b50610435610523366004612996565b600c6020526000908152604090205481565b34801561054157600080fd5b5061043561271081565b34801561055757600080fd5b5042610435565b34801561056a57600080fd5b50600b54610485906001600160a01b031681565b34801561058a57600080fd5b50601a546103e99060ff1681565b3480156105a457600080fd5b506103c76105b33660046129b1565b610db4565b3480156105c457600080fd5b5061043560115481565b3480156105da57600080fd5b5061043560145481565b3480156105f057600080fd5b506104356105ff36600461296c565b610de5565b34801561061057600080fd5b5061043560135481565b34801561062657600080fd5b506103c7610635366004612855565b610e7b565b6103c76106483660046129ed565b610eaa565b34801561065957600080fd5b506103c7611230565b6103c761067036600461296c565b6112ce565b34801561068157600080fd5b506103c76106903660046129b1565b6114d6565b3480156106a157600080fd5b506104356114f1565b3480156106b657600080fd5b506103c76106c5366004612855565b611500565b3480156106d657600080fd5b506103c76106e5366004612996565b61152f565b3480156106f657600080fd5b50610435610705366004612855565b611586565b34801561071657600080fd5b506103c76107253660046129ed565b611619565b34801561073657600080fd5b506103c7610745366004612aee565b61164f565b34801561075657600080fd5b506103c7610765366004612855565b611690565b34801561077657600080fd5b50610485610785366004612855565b6116bf565b34801561079657600080fd5b506104356107a5366004612996565b611736565b3480156107b657600080fd5b50610435600d5481565b3480156107cc57600080fd5b506103c76117bd565b3480156107e157600080fd5b5061043560175481565b3480156107f757600080fd5b506103c7610806366004612855565b6117f3565b34801561081757600080fd5b506103c7610826366004612855565b611822565b34801561083757600080fd5b506104356101f481565b34801561084d57600080fd5b50600a546001600160a01b0316610485565b34801561086b57600080fd5b50610458611851565b34801561088057600080fd5b506103c761088f366004612b37565b611860565b3480156108a057600080fd5b506103c76108af366004612b73565b61186b565b3480156108c057600080fd5b506103c76108cf366004612855565b61189d565b3480156108e057600080fd5b50610435600f5481565b3480156108f657600080fd5b5061043561022b81565b34801561090c57600080fd5b5061043560165481565b34801561092257600080fd5b506104586118cc565b34801561093757600080fd5b506103c7610946366004612855565b61195a565b34801561095757600080fd5b50610458610966366004612855565b611989565b34801561097757600080fd5b50610435600e5481565b34801561098d57600080fd5b50610458611a79565b3480156109a257600080fd5b50610435601481565b3480156109b757600080fd5b506104356109c6366004612855565b611a86565b3480156109d757600080fd5b506103c76109e6366004612855565b611a93565b3480156109f757600080fd5b506103e9610a06366004612bef565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4057600080fd5b506103c7610a4f366004612996565b611ac2565b348015610a6057600080fd5b50610435601b5481565b348015610a7657600080fd5b5061043560105481565b348015610a8c57600080fd5b5061043560125481565b600a546001600160a01b03163314610ac95760405162461bcd60e51b8152600401610ac090612c22565b60405180910390fd5b601055565b60006001600160e01b0319821663780e9d6360e01b1480610af35750610af382611b60565b92915050565b6060601c805480602002602001604051908101604052809291908181526020018280548015610b4757602002820191906000526020600020905b815481526020019060010190808311610b33575b5050505050905090565b606060008054610b6090612c57565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c90612c57565b8015610b475780601f10610bae57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610bbc57509395945050505050565b6000818152600260205260408120546001600160a01b0316610c535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ac0565b506000908152600460205260409020546001600160a01b031690565b6000610c7a826116bf565b9050806001600160a01b0316836001600160a01b03161415610ce85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ac0565b336001600160a01b0382161480610d045750610d048133610a06565b610d765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ac0565b610d808383611bb0565b505050565b600a546001600160a01b03163314610daf5760405162461bcd60e51b8152600401610ac090612c22565b600d55565b610dbe3382611c1e565b610dda5760405162461bcd60e51b8152600401610ac090612c92565b610d80838383611d15565b6000610df083611736565b8210610e525760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ac0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ea55760405162461bcd60e51b8152600401610ac090612c22565b601655565b6000610eb560085490565b6012549091504290811015610f0c5760405162461bcd60e51b815260206004820152601e60248201527f564950206379636c6520686173206e6f742073746172746564207965742100006044820152606401610ac0565b601554811115610f845760405162461bcd60e51b815260206004820152603760248201527f564950206379636c652068617320656e6465642c20616c6c20454e564f53206160448201527f7265206e6f7720696e207468652073616d6520736574210000000000000000006064820152608401610ac0565b610f90601c8585612781565b5061102a601c805480602002602001604051908101604052809291908181526020018280548015610fe057602002820191906000526020600020905b815481526020019060010190808311610fcc575b5050601b546040516bffffffffffffffffffffffff193360601b166020820152909350603401915061100f9050565b60405160208183030381529060405280519060200120611ec0565b6110815760405162461bcd60e51b815260206004820152602260248201527f4164647265737320646f6573206e6f7420657869737420696e20564950206c696044820152611cdd60f21b6064820152608401610ac0565b61022b601754106110c95760405162461bcd60e51b8152602060048201526012602482015271159254081b1a5cdd08195e1a185d5cdd195960721b6044820152606401610ac0565b600d546110d7836001612cf9565b111561111e5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610ac0565b60135481101561115657600161113333611736565b11156111515760405162461bcd60e51b8152600401610ac090612d11565b61117f565b601461116133611736565b111561117f5760405162461bcd60e51b8152600401610ac090612d11565b6014543410156111d15760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f742073656e7420656e6f7567682076616c75652e006044820152606401610ac0565b6111e5336111e0846001612cf9565b611ed6565b6017546111f3906001612cf9565b601755611201826001612cf9565b6040517f0896b6017765b065474da082c3f5f89189f576ded5b75f616721650091e34cc390600090a250505050565b600a546001600160a01b0316331461125a5760405162461bcd60e51b8152600401610ac090612c22565b600061126e600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146112b8576040519150601f19603f3d011682016040523d82523d6000602084013e6112bd565b606091505b50509050806112cb57600080fd5b50565b60006112d960085490565b90506112e3611ef0565b600e55600b546001600160a01b0316331461133d57601a5460ff1661133d5760405162461bcd60e51b815260206004820152601060248201526f436f6e7472616374207061757365642160801b6044820152606401610ac0565b6000821161138d5760405162461bcd60e51b815260206004820152601760248201527f57652063616e206e6f74206d696e74207a65726f2e2e2e0000000000000000006044820152606401610ac0565b600d5461139a8383612cf9565b11156113f95760405162461bcd60e51b815260206004820152602860248201527f537570706c79206578686175737465642c20736f7272792077652061726520736044820152676f6c64206f75742160c01b6064820152608401610ac0565b600b546001600160a01b031633146114735781600e546114199190612d62565b3410156114735760405162461bcd60e51b815260206004820152602260248201527f596f752068617665206e6f742073656e7420656e6f7567682063757272656e636044820152613c9760f11b6064820152608401610ac0565b60015b8281116114d05761148b846111e08385612cf9565b6114958183612cf9565b6040517f0896b6017765b065474da082c3f5f89189f576ded5b75f616721650091e34cc390600090a2806114c881612d81565b915050611476565b50505050565b610d808383836040518060200160405280600081525061186b565b60006114fb611ef0565b905090565b600a546001600160a01b0316331461152a5760405162461bcd60e51b8152600401610ac090612c22565b601355565b600a546001600160a01b031633146115595760405162461bcd60e51b8152600401610ac090612c22565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050506112cb57600080fd5b600061159160085490565b82106115f45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ac0565b6008828154811061160757611607612d9c565b90600052602060002001549050919050565b600a546001600160a01b031633146116435760405162461bcd60e51b8152600401610ac090612c22565b610d80601c8383612781565b600a546001600160a01b031633146116795760405162461bcd60e51b8152600401610ac090612c22565b805161168c9060189060208401906127cc565b5050565b600a546001600160a01b031633146116ba5760405162461bcd60e51b8152600401610ac090612c22565b601b55565b6000818152600260205260408120546001600160a01b031680610af35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ac0565b60006001600160a01b0382166117a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ac0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117e75760405162461bcd60e51b8152600401610ac090612c22565b6117f16000611fe5565b565b600a546001600160a01b0316331461181d5760405162461bcd60e51b8152600401610ac090612c22565b601555565b600a546001600160a01b0316331461184c5760405162461bcd60e51b8152600401610ac090612c22565b601155565b606060018054610b6090612c57565b61168c338383612037565b6118753383611c1e565b6118915760405162461bcd60e51b8152600401610ac090612c92565b6114d084848484612106565b600a546001600160a01b031633146118c75760405162461bcd60e51b8152600401610ac090612c22565b601255565b601980546118d990612c57565b80601f016020809104026020016040519081016040528092919081815260200182805461190590612c57565b80156119525780601f1061192757610100808354040283529160200191611952565b820191906000526020600020905b81548152906001019060200180831161193557829003601f168201915b505050505081565b600a546001600160a01b031633146119845760405162461bcd60e51b8152600401610ac090612c22565b601455565b6000818152600260205260409020546060906001600160a01b0316611a085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ac0565b6000611a12612139565b90506000815111611a325760405180602001604052806000815250611a72565b80611a44611a3f85611a86565b612148565b611a4d85612148565b6019604051602001611a629493929190612db2565b6040516020818303038152906040525b9392505050565b601880546118d990612c57565b6000610af3600a83612eb8565b600a546001600160a01b03163314611abd5760405162461bcd60e51b8152600401610ac090612c22565b600f55565b600a546001600160a01b03163314611aec5760405162461bcd60e51b8152600401610ac090612c22565b6001600160a01b038116611b515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac0565b6112cb81611fe5565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611b9157506001600160e01b03198216635b5e139f60e01b145b80610af357506301ffc9a760e01b6001600160e01b0319831614610af3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be5826116bf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ac0565b6000611ca2836116bf565b9050806001600160a01b0316846001600160a01b03161480611cdd5750836001600160a01b0316611cd284610bda565b6001600160a01b0316145b80611d0d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d28826116bf565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ac0565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac0565b611dfd838383612246565b611e08600082611bb0565b6001600160a01b0383166000908152600360205260408120805460019290611e31908490612ecc565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e5f908490612cf9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611ecd85846122fe565b14949350505050565b61168c828260405180602001604052806000815250612372565b60155460165460009142918391611f0691612ecc565b601a54909150600090819060ff16611f6c5760405162461bcd60e51b815260206004820152602360248201527f446f6e6174696f6e73206172652070617573656420617420746865206d6f6d656044820152626e742160e81b6064820152608401610ac0565b601554841015611f8257600e5494505050505090565b601654841115611f985760115494505050505090565b82601054600f54611fa99190612ecc565b611fb39190612ee3565b905060155484611fc39190612ecc565b9150611fcf8282612d62565b600f54611fdc9190612ecc565b94505050505090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ac0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612111848484611d15565b61211d848484846123a5565b6114d05760405162461bcd60e51b8152600401610ac090612ef7565b606060188054610b6090612c57565b60608161216c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612196578061218081612d81565b915061218f9050600a83612ee3565b9150612170565b60008167ffffffffffffffff8111156121b1576121b1612a62565b6040519080825280601f01601f1916602001820160405280156121db576020820181803683370190505b5090505b8415611d0d576121f0600183612ecc565b91506121fd600a86612eb8565b612208906030612cf9565b60f81b81838151811061221d5761221d612d9c565b60200101906001600160f81b031916908160001a90535061223f600a86612ee3565b94506121df565b6001600160a01b0383166122a15761229c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122c4565b816001600160a01b0316836001600160a01b0316146122c4576122c483826124a3565b6001600160a01b0382166122db57610d8081612540565b826001600160a01b0316826001600160a01b031614610d8057610d8082826125ef565b600081815b845181101561236a57600085828151811061232057612320612d9c565b602002602001015190508083116123465760008381526020829052604090209250612357565b600081815260208490526040902092505b508061236281612d81565b915050612303565b509392505050565b61237c8383612633565b61238960008484846123a5565b610d805760405162461bcd60e51b8152600401610ac090612ef7565b60006001600160a01b0384163b1561249857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123e9903390899088908890600401612f49565b6020604051808303816000875af1925050508015612424575060408051601f3d908101601f1916820190925261242191810190612f86565b60015b61247e573d808015612452576040519150601f19603f3d011682016040523d82523d6000602084013e612457565b606091505b5080516124765760405162461bcd60e51b8152600401610ac090612ef7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b506001949350505050565b600060016124b084611736565b6124ba9190612ecc565b60008381526007602052604090205490915080821461250d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061255290600190612ecc565b6000838152600960205260408120546008805493945090928490811061257a5761257a612d9c565b90600052602060002001549050806008838154811061259b5761259b612d9c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125d3576125d3612fa3565b6001900381819060005260206000200160009055905550505050565b60006125fa83611736565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126895760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ac0565b6000818152600260205260409020546001600160a01b0316156126ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ac0565b6126fa60008383612246565b6001600160a01b0382166000908152600360205260408120805460019290612723908490612cf9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280548282559060005260206000209081019282156127bc579160200282015b828111156127bc5782358255916020019190600101906127a1565b506127c8929150612840565b5090565b8280546127d890612c57565b90600052602060002090601f0160209004810192826127fa57600085556127bc565b82601f1061281357805160ff19168380011785556127bc565b828001600101855582156127bc579182015b828111156127bc578251825591602001919060010190612825565b5b808211156127c85760008155600101612841565b60006020828403121561286757600080fd5b5035919050565b6001600160e01b0319811681146112cb57600080fd5b60006020828403121561289657600080fd5b8135611a728161286e565b6020808252825182820181905260009190848201906040850190845b818110156128d9578351835292840192918401916001016128bd565b50909695505050505050565b60005b838110156129005781810151838201526020016128e8565b838111156114d05750506000910152565b600081518084526129298160208601602086016128e5565b601f01601f19169290920160200192915050565b602081526000611a726020830184612911565b80356001600160a01b038116811461296757600080fd5b919050565b6000806040838503121561297f57600080fd5b61298883612950565b946020939093013593505050565b6000602082840312156129a857600080fd5b611a7282612950565b6000806000606084860312156129c657600080fd5b6129cf84612950565b92506129dd60208501612950565b9150604084013590509250925092565b60008060208385031215612a0057600080fd5b823567ffffffffffffffff80821115612a1857600080fd5b818501915085601f830112612a2c57600080fd5b813581811115612a3b57600080fd5b8660208260051b8501011115612a5057600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612a9357612a93612a62565b604051601f8501601f19908116603f01168101908282118183101715612abb57612abb612a62565b81604052809350858152868686011115612ad457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612b0057600080fd5b813567ffffffffffffffff811115612b1757600080fd5b8201601f81018413612b2857600080fd5b611d0d84823560208401612a78565b60008060408385031215612b4a57600080fd5b612b5383612950565b915060208301358015158114612b6857600080fd5b809150509250929050565b60008060008060808587031215612b8957600080fd5b612b9285612950565b9350612ba060208601612950565b925060408501359150606085013567ffffffffffffffff811115612bc357600080fd5b8501601f81018713612bd457600080fd5b612be387823560208401612a78565b91505092959194509250565b60008060408385031215612c0257600080fd5b612c0b83612950565b9150612c1960208401612950565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c6b57607f821691505b60208210811415612c8c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612d0c57612d0c612ce3565b500190565b60208082526031908201527f596f752068617665207265616368656420796f7572206d6178696d756d20616c6040820152703637bbb0b731b29037b31022b73b37b99760791b606082015260800190565b6000816000190483118215151615612d7c57612d7c612ce3565b500290565b6000600019821415612d9557612d95612ce3565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600085516020612dc58285838b016128e5565b865191840191612dd88184848b016128e5565b642f656e766f60d81b92019182528551600590612dfa81838601858b016128e5565b8654930192600090600181811c9080831680612e1757607f831692505b868310811415612e3557634e487b7160e01b85526022600452602485fd5b808015612e495760018114612e5e57612e8f565b60ff1985168988015283890187019550612e8f565b60008c81526020902060005b85811015612e855781548b82018a0152908401908901612e6a565b505086848a010195505b50939d9c50505050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b600082612ec757612ec7612ea2565b500690565b600082821015612ede57612ede612ce3565b500390565b600082612ef257612ef2612ea2565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f7c90830184612911565b9695505050505050565b600060208284031215612f9857600080fd5b8151611a728161286e565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220db498bcda07bb48498dd9241565d6a7926d10509774eb01da9fc3dd2dc3df9bb64736f6c634300080c00334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009656e766f766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454e564f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f656e766f76657273652e636f6d2f656e766f2e7068702f656e766f2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103a25760003560e01c806355f804b3116101e7578063bcabbfb11161010d578063d81f72d6116100a0578063f2fde38b1161006f578063f2fde38b14610a34578063f81c06f514610a54578063fb5dfb8b14610a6a578063fe50e38814610a8057600080fd5b8063d81f72d614610996578063e2423e8b146109ab578063e453369c146109cb578063e985e9c5146109eb57600080fd5b8063c7772da2116100dc578063c7772da21461092b578063c87b56dd1461094b578063d150f8351461096b578063d547cfb71461098157600080fd5b8063bcabbfb1146108d4578063c09ba872146108ea578063c24a0f8b14610900578063c66828621461091657600080fd5b806382d95df51161018557806395d89b411161015457806395d89b411461085f578063a22cb46514610874578063b88d4fde14610894578063bb43dd5f146108b457600080fd5b806382d95df5146107eb578063832473841461080b5780638d21ab671461082b5780638da5cb5b1461084157600080fd5b806370a08231116101c157806370a082311461078a57806370dcf24b146107aa578063715018a6146107c057806381fe49d8146107d557600080fd5b806355f804b31461072a5780635be532e71461074a5780636352211e1461076a57600080fd5b806323b872dd116102cc5780633ccfd60b1161026a57806346843d0d1161023957806346843d0d146106aa5780634d38e5fa146106ca5780634f6ccce7146106ea578063520907491461070a57600080fd5b80633ccfd60b1461064d57806340c10f191461066257806342842e0e14610675578063453815a71461069557600080fd5b80632f745c59116102a65780632f745c59146105e45780633373af2f146106045780633784f0001461061a578063398f0c721461063a57600080fd5b806323b872dd14610598578063258c901f146105b857806326ec7914146105ce57600080fd5b80630b97bc86116103445780631ae005c1116103135780631ae005c1146105355780631bb3c4ea1461054b5780631e2f73b11461055e57806322f3e2d41461057e57600080fd5b80630b97bc86146104bd578063129729e5146104d357806318160ddd146104f357806318cae2691461050857600080fd5b8063063065d211610380578063063065d21461042057806306fdde0314610443578063081812fc14610465578063095ea7b31461049d57600080fd5b806301302924146103a757806301ffc9a7146103c957806305d855b2146103fe575b600080fd5b3480156103b357600080fd5b506103c76103c2366004612855565b610a96565b005b3480156103d557600080fd5b506103e96103e4366004612884565b610ace565b60405190151581526020015b60405180910390f35b34801561040a57600080fd5b50610413610af9565b6040516103f591906128a1565b34801561042c57600080fd5b50610435600181565b6040519081526020016103f5565b34801561044f57600080fd5b50610458610b51565b6040516103f5919061293d565b34801561047157600080fd5b50610485610480366004612855565b610bda565b6040516001600160a01b0390911681526020016103f5565b3480156104a957600080fd5b506103c76104b836600461296c565b610c6f565b3480156104c957600080fd5b5061043560155481565b3480156104df57600080fd5b506103c76104ee366004612855565b610d85565b3480156104ff57600080fd5b50600854610435565b34801561051457600080fd5b50610435610523366004612996565b600c6020526000908152604090205481565b34801561054157600080fd5b5061043561271081565b34801561055757600080fd5b5042610435565b34801561056a57600080fd5b50600b54610485906001600160a01b031681565b34801561058a57600080fd5b50601a546103e99060ff1681565b3480156105a457600080fd5b506103c76105b33660046129b1565b610db4565b3480156105c457600080fd5b5061043560115481565b3480156105da57600080fd5b5061043560145481565b3480156105f057600080fd5b506104356105ff36600461296c565b610de5565b34801561061057600080fd5b5061043560135481565b34801561062657600080fd5b506103c7610635366004612855565b610e7b565b6103c76106483660046129ed565b610eaa565b34801561065957600080fd5b506103c7611230565b6103c761067036600461296c565b6112ce565b34801561068157600080fd5b506103c76106903660046129b1565b6114d6565b3480156106a157600080fd5b506104356114f1565b3480156106b657600080fd5b506103c76106c5366004612855565b611500565b3480156106d657600080fd5b506103c76106e5366004612996565b61152f565b3480156106f657600080fd5b50610435610705366004612855565b611586565b34801561071657600080fd5b506103c76107253660046129ed565b611619565b34801561073657600080fd5b506103c7610745366004612aee565b61164f565b34801561075657600080fd5b506103c7610765366004612855565b611690565b34801561077657600080fd5b50610485610785366004612855565b6116bf565b34801561079657600080fd5b506104356107a5366004612996565b611736565b3480156107b657600080fd5b50610435600d5481565b3480156107cc57600080fd5b506103c76117bd565b3480156107e157600080fd5b5061043560175481565b3480156107f757600080fd5b506103c7610806366004612855565b6117f3565b34801561081757600080fd5b506103c7610826366004612855565b611822565b34801561083757600080fd5b506104356101f481565b34801561084d57600080fd5b50600a546001600160a01b0316610485565b34801561086b57600080fd5b50610458611851565b34801561088057600080fd5b506103c761088f366004612b37565b611860565b3480156108a057600080fd5b506103c76108af366004612b73565b61186b565b3480156108c057600080fd5b506103c76108cf366004612855565b61189d565b3480156108e057600080fd5b50610435600f5481565b3480156108f657600080fd5b5061043561022b81565b34801561090c57600080fd5b5061043560165481565b34801561092257600080fd5b506104586118cc565b34801561093757600080fd5b506103c7610946366004612855565b61195a565b34801561095757600080fd5b50610458610966366004612855565b611989565b34801561097757600080fd5b50610435600e5481565b34801561098d57600080fd5b50610458611a79565b3480156109a257600080fd5b50610435601481565b3480156109b757600080fd5b506104356109c6366004612855565b611a86565b3480156109d757600080fd5b506103c76109e6366004612855565b611a93565b3480156109f757600080fd5b506103e9610a06366004612bef565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4057600080fd5b506103c7610a4f366004612996565b611ac2565b348015610a6057600080fd5b50610435601b5481565b348015610a7657600080fd5b5061043560105481565b348015610a8c57600080fd5b5061043560125481565b600a546001600160a01b03163314610ac95760405162461bcd60e51b8152600401610ac090612c22565b60405180910390fd5b601055565b60006001600160e01b0319821663780e9d6360e01b1480610af35750610af382611b60565b92915050565b6060601c805480602002602001604051908101604052809291908181526020018280548015610b4757602002820191906000526020600020905b815481526020019060010190808311610b33575b5050505050905090565b606060008054610b6090612c57565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c90612c57565b8015610b475780601f10610bae57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610bbc57509395945050505050565b6000818152600260205260408120546001600160a01b0316610c535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ac0565b506000908152600460205260409020546001600160a01b031690565b6000610c7a826116bf565b9050806001600160a01b0316836001600160a01b03161415610ce85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ac0565b336001600160a01b0382161480610d045750610d048133610a06565b610d765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ac0565b610d808383611bb0565b505050565b600a546001600160a01b03163314610daf5760405162461bcd60e51b8152600401610ac090612c22565b600d55565b610dbe3382611c1e565b610dda5760405162461bcd60e51b8152600401610ac090612c92565b610d80838383611d15565b6000610df083611736565b8210610e525760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ac0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ea55760405162461bcd60e51b8152600401610ac090612c22565b601655565b6000610eb560085490565b6012549091504290811015610f0c5760405162461bcd60e51b815260206004820152601e60248201527f564950206379636c6520686173206e6f742073746172746564207965742100006044820152606401610ac0565b601554811115610f845760405162461bcd60e51b815260206004820152603760248201527f564950206379636c652068617320656e6465642c20616c6c20454e564f53206160448201527f7265206e6f7720696e207468652073616d6520736574210000000000000000006064820152608401610ac0565b610f90601c8585612781565b5061102a601c805480602002602001604051908101604052809291908181526020018280548015610fe057602002820191906000526020600020905b815481526020019060010190808311610fcc575b5050601b546040516bffffffffffffffffffffffff193360601b166020820152909350603401915061100f9050565b60405160208183030381529060405280519060200120611ec0565b6110815760405162461bcd60e51b815260206004820152602260248201527f4164647265737320646f6573206e6f7420657869737420696e20564950206c696044820152611cdd60f21b6064820152608401610ac0565b61022b601754106110c95760405162461bcd60e51b8152602060048201526012602482015271159254081b1a5cdd08195e1a185d5cdd195960721b6044820152606401610ac0565b600d546110d7836001612cf9565b111561111e5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610ac0565b60135481101561115657600161113333611736565b11156111515760405162461bcd60e51b8152600401610ac090612d11565b61117f565b601461116133611736565b111561117f5760405162461bcd60e51b8152600401610ac090612d11565b6014543410156111d15760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f742073656e7420656e6f7567682076616c75652e006044820152606401610ac0565b6111e5336111e0846001612cf9565b611ed6565b6017546111f3906001612cf9565b601755611201826001612cf9565b6040517f0896b6017765b065474da082c3f5f89189f576ded5b75f616721650091e34cc390600090a250505050565b600a546001600160a01b0316331461125a5760405162461bcd60e51b8152600401610ac090612c22565b600061126e600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146112b8576040519150601f19603f3d011682016040523d82523d6000602084013e6112bd565b606091505b50509050806112cb57600080fd5b50565b60006112d960085490565b90506112e3611ef0565b600e55600b546001600160a01b0316331461133d57601a5460ff1661133d5760405162461bcd60e51b815260206004820152601060248201526f436f6e7472616374207061757365642160801b6044820152606401610ac0565b6000821161138d5760405162461bcd60e51b815260206004820152601760248201527f57652063616e206e6f74206d696e74207a65726f2e2e2e0000000000000000006044820152606401610ac0565b600d5461139a8383612cf9565b11156113f95760405162461bcd60e51b815260206004820152602860248201527f537570706c79206578686175737465642c20736f7272792077652061726520736044820152676f6c64206f75742160c01b6064820152608401610ac0565b600b546001600160a01b031633146114735781600e546114199190612d62565b3410156114735760405162461bcd60e51b815260206004820152602260248201527f596f752068617665206e6f742073656e7420656e6f7567682063757272656e636044820152613c9760f11b6064820152608401610ac0565b60015b8281116114d05761148b846111e08385612cf9565b6114958183612cf9565b6040517f0896b6017765b065474da082c3f5f89189f576ded5b75f616721650091e34cc390600090a2806114c881612d81565b915050611476565b50505050565b610d808383836040518060200160405280600081525061186b565b60006114fb611ef0565b905090565b600a546001600160a01b0316331461152a5760405162461bcd60e51b8152600401610ac090612c22565b601355565b600a546001600160a01b031633146115595760405162461bcd60e51b8152600401610ac090612c22565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050506112cb57600080fd5b600061159160085490565b82106115f45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ac0565b6008828154811061160757611607612d9c565b90600052602060002001549050919050565b600a546001600160a01b031633146116435760405162461bcd60e51b8152600401610ac090612c22565b610d80601c8383612781565b600a546001600160a01b031633146116795760405162461bcd60e51b8152600401610ac090612c22565b805161168c9060189060208401906127cc565b5050565b600a546001600160a01b031633146116ba5760405162461bcd60e51b8152600401610ac090612c22565b601b55565b6000818152600260205260408120546001600160a01b031680610af35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ac0565b60006001600160a01b0382166117a15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ac0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117e75760405162461bcd60e51b8152600401610ac090612c22565b6117f16000611fe5565b565b600a546001600160a01b0316331461181d5760405162461bcd60e51b8152600401610ac090612c22565b601555565b600a546001600160a01b0316331461184c5760405162461bcd60e51b8152600401610ac090612c22565b601155565b606060018054610b6090612c57565b61168c338383612037565b6118753383611c1e565b6118915760405162461bcd60e51b8152600401610ac090612c92565b6114d084848484612106565b600a546001600160a01b031633146118c75760405162461bcd60e51b8152600401610ac090612c22565b601255565b601980546118d990612c57565b80601f016020809104026020016040519081016040528092919081815260200182805461190590612c57565b80156119525780601f1061192757610100808354040283529160200191611952565b820191906000526020600020905b81548152906001019060200180831161193557829003601f168201915b505050505081565b600a546001600160a01b031633146119845760405162461bcd60e51b8152600401610ac090612c22565b601455565b6000818152600260205260409020546060906001600160a01b0316611a085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ac0565b6000611a12612139565b90506000815111611a325760405180602001604052806000815250611a72565b80611a44611a3f85611a86565b612148565b611a4d85612148565b6019604051602001611a629493929190612db2565b6040516020818303038152906040525b9392505050565b601880546118d990612c57565b6000610af3600a83612eb8565b600a546001600160a01b03163314611abd5760405162461bcd60e51b8152600401610ac090612c22565b600f55565b600a546001600160a01b03163314611aec5760405162461bcd60e51b8152600401610ac090612c22565b6001600160a01b038116611b515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ac0565b6112cb81611fe5565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611b9157506001600160e01b03198216635b5e139f60e01b145b80610af357506301ffc9a760e01b6001600160e01b0319831614610af3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be5826116bf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611c975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ac0565b6000611ca2836116bf565b9050806001600160a01b0316846001600160a01b03161480611cdd5750836001600160a01b0316611cd284610bda565b6001600160a01b0316145b80611d0d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d28826116bf565b6001600160a01b031614611d905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ac0565b6001600160a01b038216611df25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac0565b611dfd838383612246565b611e08600082611bb0565b6001600160a01b0383166000908152600360205260408120805460019290611e31908490612ecc565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e5f908490612cf9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611ecd85846122fe565b14949350505050565b61168c828260405180602001604052806000815250612372565b60155460165460009142918391611f0691612ecc565b601a54909150600090819060ff16611f6c5760405162461bcd60e51b815260206004820152602360248201527f446f6e6174696f6e73206172652070617573656420617420746865206d6f6d656044820152626e742160e81b6064820152608401610ac0565b601554841015611f8257600e5494505050505090565b601654841115611f985760115494505050505090565b82601054600f54611fa99190612ecc565b611fb39190612ee3565b905060155484611fc39190612ecc565b9150611fcf8282612d62565b600f54611fdc9190612ecc565b94505050505090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ac0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612111848484611d15565b61211d848484846123a5565b6114d05760405162461bcd60e51b8152600401610ac090612ef7565b606060188054610b6090612c57565b60608161216c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612196578061218081612d81565b915061218f9050600a83612ee3565b9150612170565b60008167ffffffffffffffff8111156121b1576121b1612a62565b6040519080825280601f01601f1916602001820160405280156121db576020820181803683370190505b5090505b8415611d0d576121f0600183612ecc565b91506121fd600a86612eb8565b612208906030612cf9565b60f81b81838151811061221d5761221d612d9c565b60200101906001600160f81b031916908160001a90535061223f600a86612ee3565b94506121df565b6001600160a01b0383166122a15761229c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122c4565b816001600160a01b0316836001600160a01b0316146122c4576122c483826124a3565b6001600160a01b0382166122db57610d8081612540565b826001600160a01b0316826001600160a01b031614610d8057610d8082826125ef565b600081815b845181101561236a57600085828151811061232057612320612d9c565b602002602001015190508083116123465760008381526020829052604090209250612357565b600081815260208490526040902092505b508061236281612d81565b915050612303565b509392505050565b61237c8383612633565b61238960008484846123a5565b610d805760405162461bcd60e51b8152600401610ac090612ef7565b60006001600160a01b0384163b1561249857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123e9903390899088908890600401612f49565b6020604051808303816000875af1925050508015612424575060408051601f3d908101601f1916820190925261242191810190612f86565b60015b61247e573d808015612452576040519150601f19603f3d011682016040523d82523d6000602084013e612457565b606091505b5080516124765760405162461bcd60e51b8152600401610ac090612ef7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b506001949350505050565b600060016124b084611736565b6124ba9190612ecc565b60008381526007602052604090205490915080821461250d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061255290600190612ecc565b6000838152600960205260408120546008805493945090928490811061257a5761257a612d9c565b90600052602060002001549050806008838154811061259b5761259b612d9c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125d3576125d3612fa3565b6001900381819060005260206000200160009055905550505050565b60006125fa83611736565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126895760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ac0565b6000818152600260205260409020546001600160a01b0316156126ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ac0565b6126fa60008383612246565b6001600160a01b0382166000908152600360205260408120805460019290612723908490612cf9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280548282559060005260206000209081019282156127bc579160200282015b828111156127bc5782358255916020019190600101906127a1565b506127c8929150612840565b5090565b8280546127d890612c57565b90600052602060002090601f0160209004810192826127fa57600085556127bc565b82601f1061281357805160ff19168380011785556127bc565b828001600101855582156127bc579182015b828111156127bc578251825591602001919060010190612825565b5b808211156127c85760008155600101612841565b60006020828403121561286757600080fd5b5035919050565b6001600160e01b0319811681146112cb57600080fd5b60006020828403121561289657600080fd5b8135611a728161286e565b6020808252825182820181905260009190848201906040850190845b818110156128d9578351835292840192918401916001016128bd565b50909695505050505050565b60005b838110156129005781810151838201526020016128e8565b838111156114d05750506000910152565b600081518084526129298160208601602086016128e5565b601f01601f19169290920160200192915050565b602081526000611a726020830184612911565b80356001600160a01b038116811461296757600080fd5b919050565b6000806040838503121561297f57600080fd5b61298883612950565b946020939093013593505050565b6000602082840312156129a857600080fd5b611a7282612950565b6000806000606084860312156129c657600080fd5b6129cf84612950565b92506129dd60208501612950565b9150604084013590509250925092565b60008060208385031215612a0057600080fd5b823567ffffffffffffffff80821115612a1857600080fd5b818501915085601f830112612a2c57600080fd5b813581811115612a3b57600080fd5b8660208260051b8501011115612a5057600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612a9357612a93612a62565b604051601f8501601f19908116603f01168101908282118183101715612abb57612abb612a62565b81604052809350858152868686011115612ad457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612b0057600080fd5b813567ffffffffffffffff811115612b1757600080fd5b8201601f81018413612b2857600080fd5b611d0d84823560208401612a78565b60008060408385031215612b4a57600080fd5b612b5383612950565b915060208301358015158114612b6857600080fd5b809150509250929050565b60008060008060808587031215612b8957600080fd5b612b9285612950565b9350612ba060208601612950565b925060408501359150606085013567ffffffffffffffff811115612bc357600080fd5b8501601f81018713612bd457600080fd5b612be387823560208401612a78565b91505092959194509250565b60008060408385031215612c0257600080fd5b612c0b83612950565b9150612c1960208401612950565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c6b57607f821691505b60208210811415612c8c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612d0c57612d0c612ce3565b500190565b60208082526031908201527f596f752068617665207265616368656420796f7572206d6178696d756d20616c6040820152703637bbb0b731b29037b31022b73b37b99760791b606082015260800190565b6000816000190483118215151615612d7c57612d7c612ce3565b500290565b6000600019821415612d9557612d95612ce3565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600085516020612dc58285838b016128e5565b865191840191612dd88184848b016128e5565b642f656e766f60d81b92019182528551600590612dfa81838601858b016128e5565b8654930192600090600181811c9080831680612e1757607f831692505b868310811415612e3557634e487b7160e01b85526022600452602485fd5b808015612e495760018114612e5e57612e8f565b60ff1985168988015283890187019550612e8f565b60008c81526020902060005b85811015612e855781548b82018a0152908401908901612e6a565b505086848a010195505b50939d9c50505050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b600082612ec757612ec7612ea2565b500690565b600082821015612ede57612ede612ce3565b500390565b600082612ef257612ef2612ea2565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f7c90830184612911565b9695505050505050565b600060208284031215612f9857600080fd5b8151611a728161286e565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220db498bcda07bb48498dd9241565d6a7926d10509774eb01da9fc3dd2dc3df9bb64736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009656e766f766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454e564f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f656e766f76657273652e636f6d2f656e766f2e7068702f656e766f2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): envoverse
Arg [1] : _symbol (string): ENVO
Arg [2] : _initBaseURI (string): https://envoverse.com/envo.php/envo/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 656e766f76657273650000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 454e564f00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [8] : 68747470733a2f2f656e766f76657273652e636f6d2f656e766f2e7068702f65
Arg [9] : 6e766f2f00000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.