ETH Price: $3,476.70 (+2.02%)
Gas: 8 Gwei

Token

CypherHumans (CH)
 

Overview

Max Total Supply

696 CH

Holders

373

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The CypherHumans is a collection of 8,888 astonishing NFTs playable in a 3D online Gaming Metaverse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CypherHumans

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 14 : CypherHumans.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

interface IProxyRegistry {
    function proxies(address) external view returns (address);
}

contract CypherHumans is ERC721Enumerable, Ownable {
    using ECDSA for bytes32;

    bool public openToAll;

    address private signer;

    uint256 public constant TOTAL_SUPPLY = 8888;
    uint256 public RESERVED_TOKENS = 888;
    uint256 public constant PRICE_PER_TOKEN = 0.088 ether;
    uint256 public constant MAX_PUBLIC_MINT = 8;
    uint256 public currentTokenId;
    uint256 public startingIndex;

    string public PROVENANCE;

    string private _baseURIextended;

    string public contractURI = "ipfs://bafkreif2r53gl2u6kzseje3atnzmntwq7u7nzbms3n2gigxuzxcceebqoq";

    string private constant _defaultURI = "ipfs://bafkreifwut2gsujjbel6hmnlelj62sxttfujx4qg4qpg35p7nfec2ybave";

    // OpenSea's Proxy Registry
    IProxyRegistry public immutable proxyRegistry;

    event SetProvenance(string provenance);
    event SaleOpened();
    event SaleClosed();

    modifier onSaleOpen() {
        require(openToAll, "Sale is not open");
        _;
    }

    /**
     * @dev Set the _startTokenId to the first one after the whitelist
     */
    constructor(
        address _signer,
        uint256 _startTokenId,
        IProxyRegistry _proxyRegistry
    ) ERC721("CypherHumans", "CH") {
        signer = _signer;
        currentTokenId = _startTokenId;
        proxyRegistry = _proxyRegistry;
    }

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
        emit SetProvenance(provenance);
    }

    function mintSignature(
        bytes memory _signature,
        uint256 startTokenId,
        uint256 numberOfTokens,
        bool free
    ) public payable {
        require(startTokenId + numberOfTokens <= TOTAL_SUPPLY, "Invalid tokenId");
        if (free) RESERVED_TOKENS -= numberOfTokens;
        else require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        bool allowed = allowedAddress(msg.sender, startTokenId, numberOfTokens, free, _signature);
        require(allowed, "Invalid signature");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(owner(), msg.sender, startTokenId + i);
        }
    }

    function mint(uint256 amount) public payable onSaleOpen {
        require(PRICE_PER_TOKEN * amount <= msg.value, "Ether value sent is not correct");
        require(totalSupply() + amount + RESERVED_TOKENS <= TOTAL_SUPPLY, "Cannot mint more than TOTAL_SUPPLY!");
        require(currentTokenId + amount + RESERVED_TOKENS < TOTAL_SUPPLY, "Reserved tokenId");
        require(balanceOf(msg.sender) + amount <= MAX_PUBLIC_MINT, "Exceeded max token per wallet");

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(owner(), msg.sender, currentTokenId + i);
        }
        currentTokenId += amount;
    }

    function mintSpecific(uint256[] memory _tokenIds) public payable onSaleOpen {
        require(PRICE_PER_TOKEN * _tokenIds.length <= msg.value, "Ether value sent is not correct");
        require(
            totalSupply() + _tokenIds.length + RESERVED_TOKENS <= TOTAL_SUPPLY,
            "Cannot mint more than TOTAL_SUPPLY!"
        );
        require(balanceOf(msg.sender) + _tokenIds.length <= MAX_PUBLIC_MINT, "Exceeded max token per wallet");

        for (uint256 i = 0; i < _tokenIds.length; i++) {
            require(_tokenIds[i] < currentTokenId, "Cannot mint above currentTokenId!");
            _safeMint(owner(), msg.sender, _tokenIds[i]);
        }
    }

    function reserve(uint256[] memory tokenIds, address to) public onlyOwner {
        RESERVED_TOKENS -= tokenIds.length;

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(tokenIds[i] < TOTAL_SUPPLY, "Invalid tokenId");
            _safeMint(owner(), to, tokenIds[i]);
        }
    }

    function setSigner(address _signer) public onlyOwner {
        require(_signer != address(0), "Signer address cannot be zero");
        signer = _signer;
    }

    function allowedAddress(
        address wallet,
        uint256 startTokenId,
        uint256 numberOfTokens,
        bool freeMint,
        bytes memory signature
    ) public view returns (bool) {
        bytes32 hash = getMessage(wallet, startTokenId, numberOfTokens, freeMint);
        bytes32 messageDigest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
        address _signer = ECDSA.recover(messageDigest, signature);
        return _signer == signer;
    }

    function getMessage(
        address wallet,
        uint256 startTokenId,
        uint256 numberOfTokens,
        bool free
    ) public view returns (bytes32) {
        return keccak256(abi.encode(address(this), wallet, startTokenId, numberOfTokens, free));
    }

    function setContractURI(string memory uri) external onlyOwner {
        contractURI = uri;
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        return bytes(_baseURIextended).length > 0 ? super.tokenURI(tokenId) : _defaultURI;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function unmintedTokens() public view returns (uint256[] memory) {
        uint256 tokenCount = TOTAL_SUPPLY - totalSupply();

        uint256 currentIndex = 0;
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < TOTAL_SUPPLY; i++) {
            if (!_exists(i)) {
                tokensId[currentIndex] = i;
                currentIndex++;
            }
        }
        return tokensId;
    }

    function setSaleOpen(bool state) public onlyOwner {
        openToAll = state;
        if (state) {
            emit SaleOpened();
        } else {
            emit SaleClosed();
        }
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex(uint256 index) public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");

        startingIndex = index % TOTAL_SUPPLY;
    }

    function withdraw(address payable to, uint256 amount) external onlyOwner {
        require(to != address(0), "Withdrawal to null address");
        (bool success, ) = to.call{ value: amount }("");
        require(success, "Transfer failed.");
    }

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

    // The following functions are overrides required by Solidity.

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

    /**
     * @notice Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        if (proxyRegistry.proxies(owner) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }
}

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

/// @title ERC721 Token Implementation

// LICENSE
// ERC721.sol modifies OpenZeppelin's ERC721.sol:
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/6618f9f18424ade44116d0221719f4c93be6a078/contracts/token/ERC721/ERC721.sol
//
// ERC721.sol source code copyright OpenZeppelin licensed under the MIT License.
// With modifications by Nounders DAO.
//
//
// MODIFICATIONS:
// `_safeMint` and `_mint` contain an additional `creator` argument and
// emit two `Transfer` logs, rather than one. The first log displays the
// transfer (mint) from `address(0)` to the `creator`. The second displays the
// transfer from the `creator` to the `to` address. This enables correct
// attribution on various NFT marketplaces.

pragma solidity ^0.8.6;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @dev Safely mints `tokenId`, transfers it to `to`, and emits two log events -
     * 1. Credits the `minter` with the mint.
     * 2. Shows transfer from the `minter` 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 creator,
        address to,
        uint256 tokenId
    ) internal virtual {
        _safeMint(creator, 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 creator,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(creator, to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to`, and emits two log events -
     * 1. Credits the `creator` with the mint.
     * 2. Shows transfer from the `creator` 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 creator,
        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), creator, tokenId);
        emit Transfer(creator, to, tokenId);
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

/// @title ERC721 Enumerable Extension

// LICENSE
// ERC721.sol modifies OpenZeppelin's ERC721Enumerable.sol:
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/6618f9f18424ade44116d0221719f4c93be6a078/contracts/token/ERC721/extensions/ERC721Enumerable.sol
//
// ERC721Enumerable.sol source code copyright OpenZeppelin licensed under the MIT License.
// With modifications by Nounders DAO.
//
// MODIFICATIONS:
// Consumes modified `ERC721` contract. See notes in `ERC721.sol`.

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

Settings
{
  "metadata": {
    "bytecodeHash": "none",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_signer","type":"address"},{"internalType":"uint256","name":"_startTokenId","type":"uint256"},{"internalType":"contract IProxyRegistry","name":"_proxyRegistry","type":"address"}],"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":[],"name":"SaleClosed","type":"event"},{"anonymous":false,"inputs":[],"name":"SaleOpened","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"provenance","type":"string"}],"name":"SetProvenance","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"startTokenId","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bool","name":"freeMint","type":"bool"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"allowedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"startTokenId","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bool","name":"free","type":"bool"}],"name":"getMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"startTokenId","type":"uint256"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bool","name":"free","type":"bool"}],"name":"mintSignature","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"mintSpecific","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openToAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"proxyRegistry","outputs":[{"internalType":"contract IProxyRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","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":"unmintedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610378600c55610120604052604260a08181529062003b3060c0398051620000309160119160209091019062000164565b503480156200003e57600080fd5b5060405162003b7238038062003b72833981016040819052620000619162000223565b604080518082018252600c81526b43797068657248756d616e7360a01b602080830191825283518085019094526002845261086960f31b908401528151919291620000af9160009162000164565b508051620000c590600190602084019062000164565b505050620000e2620000dc6200010e60201b60201c565b62000112565b600b80546001600160a01b0319166001600160a01b03948516179055600d9190915516608052620002a8565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000172906200026b565b90600052602060002090601f016020900481019282620001965760008555620001e1565b82601f10620001b157805160ff1916838001178555620001e1565b82800160010185558215620001e1579182015b82811115620001e1578251825591602001919060010190620001c4565b50620001ef929150620001f3565b5090565b5b80821115620001ef5760008155600101620001f4565b6001600160a01b03811681146200022057600080fd5b50565b6000806000606084860312156200023957600080fd5b835162000246816200020a565b60208501516040860151919450925062000260816200020a565b809150509250925092565b600181811c908216806200028057607f821691505b60208210811415620002a257634e487b7160e01b600052602260045260246000fd5b50919050565b608051613865620002cb600039600081816107120152611d0d01526138656000f3fe6080604052600436106102f15760003560e01c8063715018a61161018f578063af979f25116100e1578063e8a3d4851161008a578063f2fde38b11610064578063f2fde38b146107f5578063f3fef3a314610815578063ffe630b51461083557600080fd5b8063e8a3d4851461079f578063e985e9c5146107b4578063ee88d8f2146107d457600080fd5b8063c87b56dd116100bb578063c87b56dd14610754578063cb774d4714610774578063e21827a11461078a57600080fd5b8063af979f25146106e0578063b50cbd9f14610700578063b88d4fde1461073457600080fd5b8063902d55a511610143578063a0712d681161011d578063a0712d681461068d578063a22cb465146106a0578063a8a03a20146106c057600080fd5b8063902d55a514610642578063938e3d7b1461065857806395d89b411461067857600080fd5b8063833b949911610174578063833b9499146105e857806388f2ebcb146106045780638da5cb5b1461062457600080fd5b8063715018a6146105c057806379ce7c03146105d557600080fd5b80634f6ccce7116102485780636373a6b1116101fc57806368fc68c7116101d657806368fc68c71461056a5780636c19e7831461058057806370a08231146105a057600080fd5b80636373a6b11461052057806365f130971461053557806367d05ad61461054a57600080fd5b80635925b7b91161022d5780635925b7b9146104cd5780635e082055146104ed5780636352211e1461050057600080fd5b80634f6ccce71461048d57806355f804b3146104ad57600080fd5b806318160ddd116102aa57806342842e0e1161028457806342842e0e14610420578063438b6300146104405780634f558e791461046d57600080fd5b806318160ddd146103cb57806323b872dd146103e05780632f745c591461040057600080fd5b806306fdde03116102db57806306fdde031461034f578063081812fc14610371578063095ea7b3146103a957600080fd5b80629a9b7b146102f657806301ffc9a71461031f575b600080fd5b34801561030257600080fd5b5061030c600d5481565b6040519081526020015b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004613073565b610855565b6040519015158152602001610316565b34801561035b57600080fd5b50610364610866565b60405161031691906130e8565b34801561037d57600080fd5b5061039161038c3660046130fb565b6108f8565b6040516001600160a01b039091168152602001610316565b3480156103b557600080fd5b506103c96103c4366004613129565b610992565b005b3480156103d757600080fd5b5060085461030c565b3480156103ec57600080fd5b506103c96103fb366004613155565b610aa8565b34801561040c57600080fd5b5061030c61041b366004613129565b610b2f565b34801561042c57600080fd5b506103c961043b366004613155565b610bd7565b34801561044c57600080fd5b5061046061045b366004613196565b610bf2565b60405161031691906131b3565b34801561047957600080fd5b5061033f6104883660046130fb565b610c94565b34801561049957600080fd5b5061030c6104a83660046130fb565b610cb3565b3480156104b957600080fd5b506103c96104c8366004613296565b610d57565b3480156104d957600080fd5b506103c96104e836600461335f565b610db6565b6103c96104fb3660046133e6565b610ec6565b34801561050c57600080fd5b5061039161051b3660046130fb565b61103f565b34801561052c57600080fd5b506103646110ca565b34801561054157600080fd5b5061030c600881565b34801561055657600080fd5b5061033f610565366004613447565b611158565b34801561057657600080fd5b5061030c600c5481565b34801561058c57600080fd5b506103c961059b366004613196565b6111e2565b3480156105ac57600080fd5b5061030c6105bb366004613196565b6112a2565b3480156105cc57600080fd5b506103c961133c565b6103c96105e33660046134bb565b611390565b3480156105f457600080fd5b5061030c670138a388a43c000081565b34801561061057600080fd5b506103c961061f3660046130fb565b6115de565b34801561063057600080fd5b50600a546001600160a01b0316610391565b34801561064e57600080fd5b5061030c6122b881565b34801561066457600080fd5b506103c9610673366004613296565b611688565b34801561068457600080fd5b506103646116e3565b6103c961069b3660046130fb565b6116f2565b3480156106ac57600080fd5b506103c96106bb3660046134f0565b611948565b3480156106cc57600080fd5b5061030c6106db366004613525565b611a0d565b3480156106ec57600080fd5b506103c96106fb366004613562565b611a65565b34801561070c57600080fd5b506103917f000000000000000000000000000000000000000000000000000000000000000081565b34801561074057600080fd5b506103c961074f36600461357d565b611b43565b34801561076057600080fd5b5061036461076f3660046130fb565b611bd1565b34801561078057600080fd5b5061030c600e5481565b34801561079657600080fd5b50610460611c10565b3480156107ab57600080fd5b50610364611cda565b3480156107c057600080fd5b5061033f6107cf3660046135e9565b611ce7565b3480156107e057600080fd5b50600a5461033f90600160a01b900460ff1681565b34801561080157600080fd5b506103c9610810366004613196565b611dcf565b34801561082157600080fd5b506103c9610830366004613129565b611e9c565b34801561084157600080fd5b506103c9610850366004613296565b611fdd565b600061086082612073565b92915050565b60606000805461087590613617565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190613617565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061099d8261103f565b9050806001600160a01b0316836001600160a01b03161415610a0b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096d565b336001600160a01b0382161480610a275750610a278133611ce7565b610a995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096d565b610aa38383612098565b505050565b610ab23382612106565b610b245760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161096d565b610aa38383836121d5565b6000610b3a836112a2565b8210610bae5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161096d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa383838360405180602001604052806000815250611b43565b60606000610bff836112a2565b905060008167ffffffffffffffff811115610c1c57610c1c6131f7565b604051908082528060200260200182016040528015610c45578160200160208202803683370190505b50905060005b82811015610c8c57610c5d8582610b2f565b828281518110610c6f57610c6f613652565b602090810291909101015280610c848161367e565b915050610c4b565b509392505050565b6000818152600260205260408120546001600160a01b03161515610860565b6000610cbe60085490565b8210610d325760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161096d565b60088281548110610d4557610d45613652565b90600052602060002001549050919050565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b8051610db2906010906020840190612fc4565b5050565b600a546001600160a01b03163314610dfe5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b8151600c6000828254610e119190613699565b90915550600090505b8251811015610aa3576122b8838281518110610e3857610e38613652565b602002602001015110610e7f5760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b604482015260640161096d565b610eb4610e94600a546001600160a01b031690565b83858481518110610ea757610ea7613652565b6020026020010151612394565b80610ebe8161367e565b915050610e1a565b6122b8610ed383856136b0565b1115610f135760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b604482015260640161096d565b8015610f365781600c6000828254610f2b9190613699565b90915550610f979050565b34610f4983670138a388a43c00006136c8565b1115610f975760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161096d565b6000610fa63385858589611158565b905080610ff55760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964207369676e6174757265000000000000000000000000000000604482015260640161096d565b60005b8381101561103757611025611015600a546001600160a01b031690565b3361102084896136b0565b612394565b8061102f8161367e565b915050610ff8565b505050505050565b6000818152600260205260408120546001600160a01b0316806108605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161096d565b600f80546110d790613617565b80601f016020809104026020016040519081016040528092919081815260200182805461110390613617565b80156111505780601f1061112557610100808354040283529160200191611150565b820191906000526020600020905b81548152906001019060200180831161113357829003601f168201915b505050505081565b60008061116787878787611a0d565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052909150600090605c0160405160208183030381529060405280519060200120905060006111c482866123af565b600b546001600160a01b039081169116149998505050505050505050565b600a546001600160a01b0316331461122a5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b6001600160a01b0381166112805760405162461bcd60e51b815260206004820152601d60248201527f5369676e657220616464726573732063616e6e6f74206265207a65726f000000604482015260640161096d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166113205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161096d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113845760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b61138e60006123cb565b565b600a54600160a01b900460ff166113dc5760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b604482015260640161096d565b348151670138a388a43c00006113f291906136c8565b11156114405760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161096d565b6122b8600c54825161145160085490565b61145b91906136b0565b61146591906136b0565b11156114bf5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206d696e74206d6f7265207468616e20544f54414c5f535550506044820152624c592160e81b606482015260840161096d565b600881516114cc336112a2565b6114d691906136b0565b11156115245760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e207065722077616c6c6574000000604482015260640161096d565b60005b8151811015610db257600d5482828151811061154557611545613652565b6020026020010151106115a45760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f74206d696e742061626f76652063757272656e74546f6b656e49646044820152602160f81b606482015260840161096d565b6115cc6115b9600a546001600160a01b031690565b33848481518110610ea757610ea7613652565b806115d68161367e565b915050611527565b600a546001600160a01b031633146116265760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b600e54156116765760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161096d565b6116826122b8826136fd565b600e5550565b600a546001600160a01b031633146116d05760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b8051610db2906011906020840190612fc4565b60606001805461087590613617565b600a54600160a01b900460ff1661173e5760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b604482015260640161096d565b3461175182670138a388a43c00006136c8565b111561179f5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161096d565b6122b8600c54826117af60085490565b6117b991906136b0565b6117c391906136b0565b111561181d5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206d696e74206d6f7265207468616e20544f54414c5f535550506044820152624c592160e81b606482015260840161096d565b6122b8600c5482600d5461183191906136b0565b61183b91906136b0565b106118885760405162461bcd60e51b815260206004820152601060248201527f526573657276656420746f6b656e496400000000000000000000000000000000604482015260640161096d565b600881611894336112a2565b61189e91906136b0565b11156118ec5760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e207065722077616c6c6574000000604482015260640161096d565b60005b8181101561192d5761191b61190c600a546001600160a01b031690565b3383600d5461102091906136b0565b806119258161367e565b9150506118ef565b5080600d600082825461194091906136b0565b909155505050565b6001600160a01b0382163314156119a15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513060208201526001600160a01b03861691810191909152606081018490526080810183905281151560a082015260009060c0016040516020818303038152906040528051906020012090505b949350505050565b600a546001600160a01b03163314611aad5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b600a805482158015600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90921691909117909155611b16576040517fcb2d1afee08f05a64e0c510df45b66e43153ca6d0b90429bfdda12f05aa43b8090600090a150565b6040517f4c013bd73202fde3c7cfe26ca486d0882f2c5b2fc9c761b15212f759bd2347dd90600090a15b50565b611b4d3383612106565b611bbf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161096d565b611bcb8484848461241d565b50505050565b6060600060108054611be290613617565b905011611c07576040518060800160405280604281526020016137f760429139610860565b610860826124a6565b60606000611c1d60085490565b611c29906122b8613699565b90506000808267ffffffffffffffff811115611c4757611c476131f7565b604051908082528060200260200182016040528015611c70578160200160208202803683370190505b50905060005b6122b8811015610c8c576000818152600260205260409020546001600160a01b0316611cc85780828481518110611caf57611caf613652565b602090810291909101015282611cc48161367e565b9350505b80611cd28161367e565b915050611c76565b601180546110d790613617565b60405163c455279160e01b81526001600160a01b038381166004830152600091818416917f0000000000000000000000000000000000000000000000000000000000000000169063c45527919060240160206040518083038186803b158015611d4f57600080fd5b505afa158015611d63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d879190613711565b6001600160a01b03161415611d9e57506001610860565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b600a546001600160a01b03163314611e175760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b6001600160a01b038116611e935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161096d565b611b40816123cb565b600a546001600160a01b03163314611ee45760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b6001600160a01b038216611f3a5760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c20746f206e756c6c2061646472657373000000000000604482015260640161096d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f87576040519150601f19603f3d011682016040523d82523d6000602084013e611f8c565b606091505b5050905080610aa35760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161096d565b600a546001600160a01b031633146120255760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b805161203890600f906020840190612fc4565b507f9a15466c5caef68c45172698c3e94fec7de42c88676fa00817bde701c8df89038160405161206891906130e8565b60405180910390a150565b60006001600160e01b0319821663780e9d6360e01b148061086057506108608261258e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120cd8261103f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661217f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096d565b600061218a8361103f565b9050806001600160a01b0316846001600160a01b031614806121c55750836001600160a01b03166121ba846108f8565b6001600160a01b0316145b80611a5d5750611a5d8185611ce7565b826001600160a01b03166121e88261103f565b6001600160a01b0316146122645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161096d565b6001600160a01b0382166122c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096d565b6122d18383836125de565b6122dc600082612098565b6001600160a01b0383166000908152600360205260408120805460019290612305908490613699565b90915550506001600160a01b03821660009081526003602052604081208054600192906123339084906136b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610aa3838383604051806020016040528060008152506125e9565b60008060006123be8585612601565b91509150610c8c81612671565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6124288484846121d5565b6124348484848461282c565b611bcb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161096d565b6000818152600260205260409020546060906001600160a01b03166125335760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161096d565b600061253d61298c565b9050600081511161255d5760405180602001604052806000815250611dc8565b806125678461299b565b60405160200161257892919061372e565b6040516020818303038152906040529392505050565b60006001600160e01b031982166380ac58cd60e01b14806125bf57506001600160e01b03198216635b5e139f60e01b145b8061086057506301ffc9a760e01b6001600160e01b0319831614610860565b610aa3838383612ab1565b6125f4848484612b69565b612434600084848461282c565b6000808251604114156126385760208301516040840151606085015160001a61262c87828585612cff565b9450945050505061266a565b8251604014156126625760208301516040840151612657868383612dec565b93509350505061266a565b506000905060025b9250929050565b60008160048111156126855761268561375d565b141561268e5750565b60018160048111156126a2576126a261375d565b14156126f05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161096d565b60028160048111156127045761270461375d565b14156127525760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161096d565b60038160048111156127665761276661375d565b14156127bf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161096d565b60048160048111156127d3576127d361375d565b1415611b405760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161096d565b60006001600160a01b0384163b1561298457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612870903390899088908890600401613773565b602060405180830381600087803b15801561288a57600080fd5b505af19250505080156128ba575060408051601f3d908101601f191682019092526128b7918101906137af565b60015b61296a573d8080156128e8576040519150601f19603f3d011682016040523d82523d6000602084013e6128ed565b606091505b5080516129625760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161096d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a5d565b506001611a5d565b60606010805461087590613617565b6060816129bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129e957806129d38161367e565b91506129e29050600a836137cc565b91506129c3565b60008167ffffffffffffffff811115612a0457612a046131f7565b6040519080825280601f01601f191660200182016040528015612a2e576020820181803683370190505b5090505b8415611a5d57612a43600183613699565b9150612a50600a866136fd565b612a5b9060306136b0565b60f81b818381518110612a7057612a70613652565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612aaa600a866137cc565b9450612a32565b6001600160a01b038316612b0c57612b0781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b2f565b816001600160a01b0316836001600160a01b031614612b2f57612b2f8382612e34565b6001600160a01b038216612b4657610aa381612ed1565b826001600160a01b0316826001600160a01b031614610aa357610aa38282612f80565b6001600160a01b038216612bbf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161096d565b6000818152600260205260409020546001600160a01b031615612c245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161096d565b612c30600083836125de565b6001600160a01b0382166000908152600360205260408120805460019290612c599084906136b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116919091179091559051839291861691907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d365750600090506003612de3565b8460ff16601b14158015612d4e57508460ff16601c14155b15612d5f5750600090506004612de3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612db3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612ddc57600060019250925050612de3565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01612e2687828885612cff565b935093505050935093915050565b60006001612e41846112a2565b612e4b9190613699565b600083815260076020526040902054909150808214612e9e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612ee390600190613699565b60008381526009602052604081205460088054939450909284908110612f0b57612f0b613652565b906000526020600020015490508060088381548110612f2c57612f2c613652565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f6457612f646137e0565b6001900381819060005260206000200160009055905550505050565b6000612f8b836112a2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612fd090613617565b90600052602060002090601f016020900481019282612ff25760008555613038565b82601f1061300b57805160ff1916838001178555613038565b82800160010185558215613038579182015b8281111561303857825182559160200191906001019061301d565b50613044929150613048565b5090565b5b808211156130445760008155600101613049565b6001600160e01b031981168114611b4057600080fd5b60006020828403121561308557600080fd5b8135611dc88161305d565b60005b838110156130ab578181015183820152602001613093565b83811115611bcb5750506000910152565b600081518084526130d4816020860160208601613090565b601f01601f19169290920160200192915050565b602081526000611dc860208301846130bc565b60006020828403121561310d57600080fd5b5035919050565b6001600160a01b0381168114611b4057600080fd5b6000806040838503121561313c57600080fd5b823561314781613114565b946020939093013593505050565b60008060006060848603121561316a57600080fd5b833561317581613114565b9250602084013561318581613114565b929592945050506040919091013590565b6000602082840312156131a857600080fd5b8135611dc881613114565b6020808252825182820181905260009190848201906040850190845b818110156131eb578351835292840192918401916001016131cf565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613236576132366131f7565b604052919050565b600067ffffffffffffffff831115613258576132586131f7565b61326b601f8401601f191660200161320d565b905082815283838301111561327f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156132a857600080fd5b813567ffffffffffffffff8111156132bf57600080fd5b8201601f810184136132d057600080fd5b611a5d8482356020840161323e565b600082601f8301126132f057600080fd5b8135602067ffffffffffffffff82111561330c5761330c6131f7565b8160051b61331b82820161320d565b928352848101820192828101908785111561333557600080fd5b83870192505b848310156133545782358252918301919083019061333b565b979650505050505050565b6000806040838503121561337257600080fd5b823567ffffffffffffffff81111561338957600080fd5b613395858286016132df565b92505060208301356133a681613114565b809150509250929050565b600082601f8301126133c257600080fd5b611dc88383356020850161323e565b803580151581146133e157600080fd5b919050565b600080600080608085870312156133fc57600080fd5b843567ffffffffffffffff81111561341357600080fd5b61341f878288016133b1565b945050602085013592506040850135915061343c606086016133d1565b905092959194509250565b600080600080600060a0868803121561345f57600080fd5b853561346a81613114565b94506020860135935060408601359250613486606087016133d1565b9150608086013567ffffffffffffffff8111156134a257600080fd5b6134ae888289016133b1565b9150509295509295909350565b6000602082840312156134cd57600080fd5b813567ffffffffffffffff8111156134e457600080fd5b611a5d848285016132df565b6000806040838503121561350357600080fd5b823561350e81613114565b915061351c602084016133d1565b90509250929050565b6000806000806080858703121561353b57600080fd5b843561354681613114565b9350602085013592506040850135915061343c606086016133d1565b60006020828403121561357457600080fd5b611dc8826133d1565b6000806000806080858703121561359357600080fd5b843561359e81613114565b935060208501356135ae81613114565b925060408501359150606085013567ffffffffffffffff8111156135d157600080fd5b6135dd878288016133b1565b91505092959194509250565b600080604083850312156135fc57600080fd5b823561360781613114565b915060208301356133a681613114565b600181811c9082168061362b57607f821691505b6020821081141561364c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561369257613692613668565b5060010190565b6000828210156136ab576136ab613668565b500390565b600082198211156136c3576136c3613668565b500190565b60008160001904831182151516156136e2576136e2613668565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261370c5761370c6136e7565b500690565b60006020828403121561372357600080fd5b8151611dc881613114565b60008351613740818460208801613090565b835190830190613754818360208801613090565b01949350505050565b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526137a560808301846130bc565b9695505050505050565b6000602082840312156137c157600080fd5b8151611dc88161305d565b6000826137db576137db6136e7565b500490565b634e487b7160e01b600052603160045260246000fdfe697066733a2f2f6261666b72656966777574326773756a6a62656c36686d6e6c656c6a36327378747466756a7834716734717067333570376e6665633279626176654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a164736f6c6343000809000a697066733a2f2f6261666b7265696632723533676c3275366b7a73656a653361746e7a6d6e7477713775376e7a626d73336e3267696778757a786363656562716f71000000000000000000000000ee26075ec43fe82715813df815bc9e58b029157d00000000000000000000000000000000000000000000000000000000000006a4000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106102f15760003560e01c8063715018a61161018f578063af979f25116100e1578063e8a3d4851161008a578063f2fde38b11610064578063f2fde38b146107f5578063f3fef3a314610815578063ffe630b51461083557600080fd5b8063e8a3d4851461079f578063e985e9c5146107b4578063ee88d8f2146107d457600080fd5b8063c87b56dd116100bb578063c87b56dd14610754578063cb774d4714610774578063e21827a11461078a57600080fd5b8063af979f25146106e0578063b50cbd9f14610700578063b88d4fde1461073457600080fd5b8063902d55a511610143578063a0712d681161011d578063a0712d681461068d578063a22cb465146106a0578063a8a03a20146106c057600080fd5b8063902d55a514610642578063938e3d7b1461065857806395d89b411461067857600080fd5b8063833b949911610174578063833b9499146105e857806388f2ebcb146106045780638da5cb5b1461062457600080fd5b8063715018a6146105c057806379ce7c03146105d557600080fd5b80634f6ccce7116102485780636373a6b1116101fc57806368fc68c7116101d657806368fc68c71461056a5780636c19e7831461058057806370a08231146105a057600080fd5b80636373a6b11461052057806365f130971461053557806367d05ad61461054a57600080fd5b80635925b7b91161022d5780635925b7b9146104cd5780635e082055146104ed5780636352211e1461050057600080fd5b80634f6ccce71461048d57806355f804b3146104ad57600080fd5b806318160ddd116102aa57806342842e0e1161028457806342842e0e14610420578063438b6300146104405780634f558e791461046d57600080fd5b806318160ddd146103cb57806323b872dd146103e05780632f745c591461040057600080fd5b806306fdde03116102db57806306fdde031461034f578063081812fc14610371578063095ea7b3146103a957600080fd5b80629a9b7b146102f657806301ffc9a71461031f575b600080fd5b34801561030257600080fd5b5061030c600d5481565b6040519081526020015b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004613073565b610855565b6040519015158152602001610316565b34801561035b57600080fd5b50610364610866565b60405161031691906130e8565b34801561037d57600080fd5b5061039161038c3660046130fb565b6108f8565b6040516001600160a01b039091168152602001610316565b3480156103b557600080fd5b506103c96103c4366004613129565b610992565b005b3480156103d757600080fd5b5060085461030c565b3480156103ec57600080fd5b506103c96103fb366004613155565b610aa8565b34801561040c57600080fd5b5061030c61041b366004613129565b610b2f565b34801561042c57600080fd5b506103c961043b366004613155565b610bd7565b34801561044c57600080fd5b5061046061045b366004613196565b610bf2565b60405161031691906131b3565b34801561047957600080fd5b5061033f6104883660046130fb565b610c94565b34801561049957600080fd5b5061030c6104a83660046130fb565b610cb3565b3480156104b957600080fd5b506103c96104c8366004613296565b610d57565b3480156104d957600080fd5b506103c96104e836600461335f565b610db6565b6103c96104fb3660046133e6565b610ec6565b34801561050c57600080fd5b5061039161051b3660046130fb565b61103f565b34801561052c57600080fd5b506103646110ca565b34801561054157600080fd5b5061030c600881565b34801561055657600080fd5b5061033f610565366004613447565b611158565b34801561057657600080fd5b5061030c600c5481565b34801561058c57600080fd5b506103c961059b366004613196565b6111e2565b3480156105ac57600080fd5b5061030c6105bb366004613196565b6112a2565b3480156105cc57600080fd5b506103c961133c565b6103c96105e33660046134bb565b611390565b3480156105f457600080fd5b5061030c670138a388a43c000081565b34801561061057600080fd5b506103c961061f3660046130fb565b6115de565b34801561063057600080fd5b50600a546001600160a01b0316610391565b34801561064e57600080fd5b5061030c6122b881565b34801561066457600080fd5b506103c9610673366004613296565b611688565b34801561068457600080fd5b506103646116e3565b6103c961069b3660046130fb565b6116f2565b3480156106ac57600080fd5b506103c96106bb3660046134f0565b611948565b3480156106cc57600080fd5b5061030c6106db366004613525565b611a0d565b3480156106ec57600080fd5b506103c96106fb366004613562565b611a65565b34801561070c57600080fd5b506103917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561074057600080fd5b506103c961074f36600461357d565b611b43565b34801561076057600080fd5b5061036461076f3660046130fb565b611bd1565b34801561078057600080fd5b5061030c600e5481565b34801561079657600080fd5b50610460611c10565b3480156107ab57600080fd5b50610364611cda565b3480156107c057600080fd5b5061033f6107cf3660046135e9565b611ce7565b3480156107e057600080fd5b50600a5461033f90600160a01b900460ff1681565b34801561080157600080fd5b506103c9610810366004613196565b611dcf565b34801561082157600080fd5b506103c9610830366004613129565b611e9c565b34801561084157600080fd5b506103c9610850366004613296565b611fdd565b600061086082612073565b92915050565b60606000805461087590613617565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190613617565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061099d8261103f565b9050806001600160a01b0316836001600160a01b03161415610a0b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096d565b336001600160a01b0382161480610a275750610a278133611ce7565b610a995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096d565b610aa38383612098565b505050565b610ab23382612106565b610b245760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161096d565b610aa38383836121d5565b6000610b3a836112a2565b8210610bae5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161096d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa383838360405180602001604052806000815250611b43565b60606000610bff836112a2565b905060008167ffffffffffffffff811115610c1c57610c1c6131f7565b604051908082528060200260200182016040528015610c45578160200160208202803683370190505b50905060005b82811015610c8c57610c5d8582610b2f565b828281518110610c6f57610c6f613652565b602090810291909101015280610c848161367e565b915050610c4b565b509392505050565b6000818152600260205260408120546001600160a01b03161515610860565b6000610cbe60085490565b8210610d325760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161096d565b60088281548110610d4557610d45613652565b90600052602060002001549050919050565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b8051610db2906010906020840190612fc4565b5050565b600a546001600160a01b03163314610dfe5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b8151600c6000828254610e119190613699565b90915550600090505b8251811015610aa3576122b8838281518110610e3857610e38613652565b602002602001015110610e7f5760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b604482015260640161096d565b610eb4610e94600a546001600160a01b031690565b83858481518110610ea757610ea7613652565b6020026020010151612394565b80610ebe8161367e565b915050610e1a565b6122b8610ed383856136b0565b1115610f135760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b604482015260640161096d565b8015610f365781600c6000828254610f2b9190613699565b90915550610f979050565b34610f4983670138a388a43c00006136c8565b1115610f975760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161096d565b6000610fa63385858589611158565b905080610ff55760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964207369676e6174757265000000000000000000000000000000604482015260640161096d565b60005b8381101561103757611025611015600a546001600160a01b031690565b3361102084896136b0565b612394565b8061102f8161367e565b915050610ff8565b505050505050565b6000818152600260205260408120546001600160a01b0316806108605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161096d565b600f80546110d790613617565b80601f016020809104026020016040519081016040528092919081815260200182805461110390613617565b80156111505780601f1061112557610100808354040283529160200191611150565b820191906000526020600020905b81548152906001019060200180831161113357829003601f168201915b505050505081565b60008061116787878787611a0d565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052909150600090605c0160405160208183030381529060405280519060200120905060006111c482866123af565b600b546001600160a01b039081169116149998505050505050505050565b600a546001600160a01b0316331461122a5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b6001600160a01b0381166112805760405162461bcd60e51b815260206004820152601d60248201527f5369676e657220616464726573732063616e6e6f74206265207a65726f000000604482015260640161096d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166113205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161096d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113845760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b61138e60006123cb565b565b600a54600160a01b900460ff166113dc5760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b604482015260640161096d565b348151670138a388a43c00006113f291906136c8565b11156114405760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161096d565b6122b8600c54825161145160085490565b61145b91906136b0565b61146591906136b0565b11156114bf5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206d696e74206d6f7265207468616e20544f54414c5f535550506044820152624c592160e81b606482015260840161096d565b600881516114cc336112a2565b6114d691906136b0565b11156115245760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e207065722077616c6c6574000000604482015260640161096d565b60005b8151811015610db257600d5482828151811061154557611545613652565b6020026020010151106115a45760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f74206d696e742061626f76652063757272656e74546f6b656e49646044820152602160f81b606482015260840161096d565b6115cc6115b9600a546001600160a01b031690565b33848481518110610ea757610ea7613652565b806115d68161367e565b915050611527565b600a546001600160a01b031633146116265760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b600e54156116765760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161096d565b6116826122b8826136fd565b600e5550565b600a546001600160a01b031633146116d05760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b8051610db2906011906020840190612fc4565b60606001805461087590613617565b600a54600160a01b900460ff1661173e5760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b604482015260640161096d565b3461175182670138a388a43c00006136c8565b111561179f5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161096d565b6122b8600c54826117af60085490565b6117b991906136b0565b6117c391906136b0565b111561181d5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206d696e74206d6f7265207468616e20544f54414c5f535550506044820152624c592160e81b606482015260840161096d565b6122b8600c5482600d5461183191906136b0565b61183b91906136b0565b106118885760405162461bcd60e51b815260206004820152601060248201527f526573657276656420746f6b656e496400000000000000000000000000000000604482015260640161096d565b600881611894336112a2565b61189e91906136b0565b11156118ec5760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e207065722077616c6c6574000000604482015260640161096d565b60005b8181101561192d5761191b61190c600a546001600160a01b031690565b3383600d5461102091906136b0565b806119258161367e565b9150506118ef565b5080600d600082825461194091906136b0565b909155505050565b6001600160a01b0382163314156119a15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604080513060208201526001600160a01b03861691810191909152606081018490526080810183905281151560a082015260009060c0016040516020818303038152906040528051906020012090505b949350505050565b600a546001600160a01b03163314611aad5760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b600a805482158015600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90921691909117909155611b16576040517fcb2d1afee08f05a64e0c510df45b66e43153ca6d0b90429bfdda12f05aa43b8090600090a150565b6040517f4c013bd73202fde3c7cfe26ca486d0882f2c5b2fc9c761b15212f759bd2347dd90600090a15b50565b611b4d3383612106565b611bbf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161096d565b611bcb8484848461241d565b50505050565b6060600060108054611be290613617565b905011611c07576040518060800160405280604281526020016137f760429139610860565b610860826124a6565b60606000611c1d60085490565b611c29906122b8613699565b90506000808267ffffffffffffffff811115611c4757611c476131f7565b604051908082528060200260200182016040528015611c70578160200160208202803683370190505b50905060005b6122b8811015610c8c576000818152600260205260409020546001600160a01b0316611cc85780828481518110611caf57611caf613652565b602090810291909101015282611cc48161367e565b9350505b80611cd28161367e565b915050611c76565b601180546110d790613617565b60405163c455279160e01b81526001600160a01b038381166004830152600091818416917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1169063c45527919060240160206040518083038186803b158015611d4f57600080fd5b505afa158015611d63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d879190613711565b6001600160a01b03161415611d9e57506001610860565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b600a546001600160a01b03163314611e175760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b6001600160a01b038116611e935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161096d565b611b40816123cb565b600a546001600160a01b03163314611ee45760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b6001600160a01b038216611f3a5760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c20746f206e756c6c2061646472657373000000000000604482015260640161096d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f87576040519150601f19603f3d011682016040523d82523d6000602084013e611f8c565b606091505b5050905080610aa35760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161096d565b600a546001600160a01b031633146120255760405162461bcd60e51b81526020600482018190526024820152600080516020613839833981519152604482015260640161096d565b805161203890600f906020840190612fc4565b507f9a15466c5caef68c45172698c3e94fec7de42c88676fa00817bde701c8df89038160405161206891906130e8565b60405180910390a150565b60006001600160e01b0319821663780e9d6360e01b148061086057506108608261258e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120cd8261103f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661217f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096d565b600061218a8361103f565b9050806001600160a01b0316846001600160a01b031614806121c55750836001600160a01b03166121ba846108f8565b6001600160a01b0316145b80611a5d5750611a5d8185611ce7565b826001600160a01b03166121e88261103f565b6001600160a01b0316146122645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161096d565b6001600160a01b0382166122c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096d565b6122d18383836125de565b6122dc600082612098565b6001600160a01b0383166000908152600360205260408120805460019290612305908490613699565b90915550506001600160a01b03821660009081526003602052604081208054600192906123339084906136b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610aa3838383604051806020016040528060008152506125e9565b60008060006123be8585612601565b91509150610c8c81612671565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6124288484846121d5565b6124348484848461282c565b611bcb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161096d565b6000818152600260205260409020546060906001600160a01b03166125335760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161096d565b600061253d61298c565b9050600081511161255d5760405180602001604052806000815250611dc8565b806125678461299b565b60405160200161257892919061372e565b6040516020818303038152906040529392505050565b60006001600160e01b031982166380ac58cd60e01b14806125bf57506001600160e01b03198216635b5e139f60e01b145b8061086057506301ffc9a760e01b6001600160e01b0319831614610860565b610aa3838383612ab1565b6125f4848484612b69565b612434600084848461282c565b6000808251604114156126385760208301516040840151606085015160001a61262c87828585612cff565b9450945050505061266a565b8251604014156126625760208301516040840151612657868383612dec565b93509350505061266a565b506000905060025b9250929050565b60008160048111156126855761268561375d565b141561268e5750565b60018160048111156126a2576126a261375d565b14156126f05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161096d565b60028160048111156127045761270461375d565b14156127525760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161096d565b60038160048111156127665761276661375d565b14156127bf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161096d565b60048160048111156127d3576127d361375d565b1415611b405760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161096d565b60006001600160a01b0384163b1561298457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612870903390899088908890600401613773565b602060405180830381600087803b15801561288a57600080fd5b505af19250505080156128ba575060408051601f3d908101601f191682019092526128b7918101906137af565b60015b61296a573d8080156128e8576040519150601f19603f3d011682016040523d82523d6000602084013e6128ed565b606091505b5080516129625760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161096d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a5d565b506001611a5d565b60606010805461087590613617565b6060816129bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129e957806129d38161367e565b91506129e29050600a836137cc565b91506129c3565b60008167ffffffffffffffff811115612a0457612a046131f7565b6040519080825280601f01601f191660200182016040528015612a2e576020820181803683370190505b5090505b8415611a5d57612a43600183613699565b9150612a50600a866136fd565b612a5b9060306136b0565b60f81b818381518110612a7057612a70613652565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612aaa600a866137cc565b9450612a32565b6001600160a01b038316612b0c57612b0781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b2f565b816001600160a01b0316836001600160a01b031614612b2f57612b2f8382612e34565b6001600160a01b038216612b4657610aa381612ed1565b826001600160a01b0316826001600160a01b031614610aa357610aa38282612f80565b6001600160a01b038216612bbf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161096d565b6000818152600260205260409020546001600160a01b031615612c245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161096d565b612c30600083836125de565b6001600160a01b0382166000908152600360205260408120805460019290612c599084906136b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116919091179091559051839291861691907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d365750600090506003612de3565b8460ff16601b14158015612d4e57508460ff16601c14155b15612d5f5750600090506004612de3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612db3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612ddc57600060019250925050612de3565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01612e2687828885612cff565b935093505050935093915050565b60006001612e41846112a2565b612e4b9190613699565b600083815260076020526040902054909150808214612e9e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612ee390600190613699565b60008381526009602052604081205460088054939450909284908110612f0b57612f0b613652565b906000526020600020015490508060088381548110612f2c57612f2c613652565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f6457612f646137e0565b6001900381819060005260206000200160009055905550505050565b6000612f8b836112a2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612fd090613617565b90600052602060002090601f016020900481019282612ff25760008555613038565b82601f1061300b57805160ff1916838001178555613038565b82800160010185558215613038579182015b8281111561303857825182559160200191906001019061301d565b50613044929150613048565b5090565b5b808211156130445760008155600101613049565b6001600160e01b031981168114611b4057600080fd5b60006020828403121561308557600080fd5b8135611dc88161305d565b60005b838110156130ab578181015183820152602001613093565b83811115611bcb5750506000910152565b600081518084526130d4816020860160208601613090565b601f01601f19169290920160200192915050565b602081526000611dc860208301846130bc565b60006020828403121561310d57600080fd5b5035919050565b6001600160a01b0381168114611b4057600080fd5b6000806040838503121561313c57600080fd5b823561314781613114565b946020939093013593505050565b60008060006060848603121561316a57600080fd5b833561317581613114565b9250602084013561318581613114565b929592945050506040919091013590565b6000602082840312156131a857600080fd5b8135611dc881613114565b6020808252825182820181905260009190848201906040850190845b818110156131eb578351835292840192918401916001016131cf565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613236576132366131f7565b604052919050565b600067ffffffffffffffff831115613258576132586131f7565b61326b601f8401601f191660200161320d565b905082815283838301111561327f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156132a857600080fd5b813567ffffffffffffffff8111156132bf57600080fd5b8201601f810184136132d057600080fd5b611a5d8482356020840161323e565b600082601f8301126132f057600080fd5b8135602067ffffffffffffffff82111561330c5761330c6131f7565b8160051b61331b82820161320d565b928352848101820192828101908785111561333557600080fd5b83870192505b848310156133545782358252918301919083019061333b565b979650505050505050565b6000806040838503121561337257600080fd5b823567ffffffffffffffff81111561338957600080fd5b613395858286016132df565b92505060208301356133a681613114565b809150509250929050565b600082601f8301126133c257600080fd5b611dc88383356020850161323e565b803580151581146133e157600080fd5b919050565b600080600080608085870312156133fc57600080fd5b843567ffffffffffffffff81111561341357600080fd5b61341f878288016133b1565b945050602085013592506040850135915061343c606086016133d1565b905092959194509250565b600080600080600060a0868803121561345f57600080fd5b853561346a81613114565b94506020860135935060408601359250613486606087016133d1565b9150608086013567ffffffffffffffff8111156134a257600080fd5b6134ae888289016133b1565b9150509295509295909350565b6000602082840312156134cd57600080fd5b813567ffffffffffffffff8111156134e457600080fd5b611a5d848285016132df565b6000806040838503121561350357600080fd5b823561350e81613114565b915061351c602084016133d1565b90509250929050565b6000806000806080858703121561353b57600080fd5b843561354681613114565b9350602085013592506040850135915061343c606086016133d1565b60006020828403121561357457600080fd5b611dc8826133d1565b6000806000806080858703121561359357600080fd5b843561359e81613114565b935060208501356135ae81613114565b925060408501359150606085013567ffffffffffffffff8111156135d157600080fd5b6135dd878288016133b1565b91505092959194509250565b600080604083850312156135fc57600080fd5b823561360781613114565b915060208301356133a681613114565b600181811c9082168061362b57607f821691505b6020821081141561364c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561369257613692613668565b5060010190565b6000828210156136ab576136ab613668565b500390565b600082198211156136c3576136c3613668565b500190565b60008160001904831182151516156136e2576136e2613668565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261370c5761370c6136e7565b500690565b60006020828403121561372357600080fd5b8151611dc881613114565b60008351613740818460208801613090565b835190830190613754818360208801613090565b01949350505050565b634e487b7160e01b600052602160045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526137a560808301846130bc565b9695505050505050565b6000602082840312156137c157600080fd5b8151611dc88161305d565b6000826137db576137db6136e7565b500490565b634e487b7160e01b600052603160045260246000fdfe697066733a2f2f6261666b72656966777574326773756a6a62656c36686d6e6c656c6a36327378747466756a7834716734717067333570376e6665633279626176654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a164736f6c6343000809000a

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

000000000000000000000000ee26075ec43fe82715813df815bc9e58b029157d00000000000000000000000000000000000000000000000000000000000006a4000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _signer (address): 0xeE26075ec43FE82715813dF815bC9E58B029157D
Arg [1] : _startTokenId (uint256): 1700
Arg [2] : _proxyRegistry (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000ee26075ec43fe82715813df815bc9e58b029157d
Arg [1] : 00000000000000000000000000000000000000000000000000000000000006a4
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


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.