ETH Price: $3,294.85 (-3.82%)
Gas: 6 Gwei

Token

FICTZERO (FICTZERO)
 

Overview

Max Total Supply

333 FICTZERO

Holders

333

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 FICTZERO
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FICTZERO

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

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

pragma solidity 0.8.20;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import {ERC721, IERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

contract FICTZERO is ERC721, ERC721Enumerable, Ownable {
    using ECDSA for bytes32;

    address private signerAddress = 0x4Ca9936072B171a08301b59446F34bC0F3CF9f4B;
    string private tokenBaseURI;
    bool public isMintLive = false;
    uint256 private nextTokenId = 1;
    uint256 public reservePrice = 0.8 ether;
    uint256 public mintPrice = 1 ether;
    uint256 public maxSupply = 888;
    uint256 public rewardEnd = block.timestamp;

    struct maxMintPerYear {
        uint256 maxSupply;
        uint256 count;
    }

    struct StakeInfo {
        address staker;
        uint256 stakeStarted;
        uint256 stakeEnded;
        uint256 duration;
    }

    mapping(uint256 => bool) public isClaimed;
    mapping(address => bool) public isMinted;
    mapping(uint256 => StakeInfo) public isStaked;
    mapping(uint256 => maxMintPerYear) public counterMaxMint;

    event MintPriceChanged(address indexed _from, uint256 _value);
    event ReservePriceChanged(address indexed _from, uint256 _value);
    event MintToggled(address indexed _from, bool _value);
    event MintRegistered(
        address indexed _from,
        uint256 _value,
        uint256 _tokenId
    );
    event SignerAddressChanged(
        address indexed _from,
        address _to,
        address _oldAddress
    );
    event RewardClaimed(
        address indexed _from,
        uint256 _value,
        uint256 _tokenId
    );
    event Stake(uint256 indexed _tokenId);
    event Unstake(uint256 indexed tokenId, uint256 stakedAtTimestamp, uint256 removedFromStakeAtTimestamp);

    constructor(address _deployer, string memory _tokenURI)
        ERC721("FICTZERO", "FICTZERO")
    {
        transferOwnership(_deployer);
        tokenBaseURI = _tokenURI;
        counterMaxMint[2024].maxSupply = 333;
        counterMaxMint[2025].maxSupply = 222;
        counterMaxMint[2026].maxSupply = 111;
        counterMaxMint[2027].maxSupply = 99;
        counterMaxMint[2028].maxSupply = 88;
        counterMaxMint[2029].maxSupply = 77;
        counterMaxMint[2030].maxSupply = 55;
        counterMaxMint[2031].maxSupply = 33;
        counterMaxMint[2032].maxSupply = 22;
        counterMaxMint[2033].maxSupply = 11;
    }

    modifier checkSigned(
        address _address,
        uint256 _nonce,
        uint256 _price,
        bytes32 _messageHash,
        bytes memory _signature,
        uint256 _stakeDuration
    ) {
        require(
            _messageHash ==
                ECDSA.toEthSignedMessageHash(
                    hashPacked(_address, _nonce, _price, _stakeDuration)
                ),
            "Invalid message hash"
        );
        require(
            signerAddress == ECDSA.recover(_messageHash, _signature),
            "Invalid signature"
        );
        _;
    }

    modifier stakeSigned(
        address _address,
        uint256 _nonce,
        bytes32 _messageHash,
        bytes memory _signature,
        uint256 _stakeDuration
    ) {
        require(
            _messageHash ==
                ECDSA.toEthSignedMessageHash(
                    hashStakePacked(_address, _nonce, _stakeDuration)
                ),
            "Invalid message hash"
        );
        require(
            signerAddress == ECDSA.recover(_messageHash, _signature),
            "Invalid signature"
        );
        _;
    }

    modifier isNotStaked(uint256 _tokenId) {
        require(isStaked[_tokenId].duration < 1, "Token is Staked");
        _;
    }

    modifier isNotUnStaked(uint256 _tokenId) {
        require(isStaked[_tokenId].duration > 0, "Token is Unstaked");
        _;
    }

    function toggleMint() external onlyOwner {
        isMintLive = !isMintLive;
        emit MintToggled(msg.sender, isMintLive);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
        emit MintPriceChanged(msg.sender, mintPrice);
    }

    function setReservePrice(uint256 _reservePrice) external onlyOwner {
        reservePrice = _reservePrice;
        emit ReservePriceChanged(msg.sender, reservePrice);
    }

    function setRewardEnd(uint256 _rewardEnd) external onlyOwner {
        rewardEnd = _rewardEnd;
    }

    function mintFictZero(
        uint256 _nonce,
        bytes32 _msgHash,
        bytes memory _signature,
        uint256 _stakeDuration
    )
        external
        payable
        checkSigned(
            msg.sender,
            _nonce,
            msg.value,
            _msgHash,
            _signature,
            _stakeDuration
        )
    {
        require(isMintLive, "Mint is not live yet");
        require(!isMinted[msg.sender], "You already Minted!");
        require(nextTokenId <= maxSupply, "Fict Zero is minted out");
        require(msg.value == reservePrice || msg.value == mintPrice, "Price does not match");
        uint256 currentYear = (block.timestamp / 31557600) + 1970;
        if (currentYear < 2034) {
            require(
                counterMaxMint[currentYear].count <
                    counterMaxMint[currentYear].maxSupply,
                "Supply already exceed for this year"
            );
        }

        uint256 tokenId = nextTokenId++;
        _safeMint(msg.sender, tokenId);
        stakeHelper(_stakeDuration, tokenId);
        counterMaxMint[currentYear].count++;
        unchecked {
            isMinted[msg.sender] = true;
            emit MintRegistered(msg.sender, msg.value, tokenId);
        }
    }

    function stakeFictZero(
        uint256 _tokenId,
        uint256 _nonce,
        bytes32 _msgHash,
        bytes memory _signature,
        uint256 _daysValue
    )
        external
        stakeSigned(msg.sender, _nonce, _msgHash, _signature, _daysValue)
        isNotStaked(_tokenId)
    {
        require(ownerOf(_tokenId) == msg.sender, "Not Token Owner");

        stakeHelper(_daysValue, _tokenId);
    }

    function unstakeFictZero(uint256 _tokenId)
        external
        isNotUnStaked(_tokenId)
    {
        require(ownerOf(_tokenId) == msg.sender, "Not Token Owner");
        require(
            block.timestamp > isStaked[_tokenId].stakeEnded,
            "Token still on stake period"
        );
        unchecked {
            uint256 stakedAt = isStaked[_tokenId].stakeStarted;
            delete isStaked[_tokenId];
            emit Unstake(_tokenId, stakedAt, block.timestamp);
        }
    }

    function setSignerAddress(address _newSigner) external onlyOwner {
        require(_newSigner != address(0), "Address is not valid!");
        address oldAddress = signerAddress;
        signerAddress = _newSigner;
        emit SignerAddressChanged(msg.sender, signerAddress, oldAddress);
    }

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

    function stakeHelper(uint256 _daysValue, uint256 _tokenId) internal {
        uint256 _reward = 0;
        if (_daysValue > 0) {
            isStaked[_tokenId].staker = msg.sender;
            isStaked[_tokenId].stakeStarted = block.timestamp;
            isStaked[_tokenId].stakeEnded = block.timestamp + (_daysValue * 86400); // convert from days 60 * 60 * 24
            isStaked[_tokenId].duration = _daysValue;
            emit Stake(_tokenId);
            if (block.timestamp < rewardEnd && !isClaimed[_tokenId]) {
                if (_daysValue == 180) {
                    _reward = 0;
                } else if (_daysValue == 360) {
                    _reward = 0.4 ether;
                } else if (_daysValue == 540) {
                    _reward = 0.6 ether;
                } else if (_daysValue == 720) {
                    _reward = 0.8 ether;
                } else if (_daysValue == 900) {
                    _reward = 1 ether;
                }
                isClaimed[_tokenId] = true;
                if (_reward > 0) {
                    (bool succ, ) = payable(msg.sender).call{value: _reward}(
                        ""
                    );
                    require(succ, "transfer failed");
                    emit RewardClaimed(msg.sender, _reward, _tokenId);
                }
            }
        }
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        tokenBaseURI = baseURI;
    }

    function hashPacked(
        address _address,
        uint256 _nonce,
        uint256 _price,
        uint256 _stakeDuration
    ) private pure returns (bytes32) {
        bytes memory hashData = abi.encodePacked(
            _address,
            _nonce,
            _price,
            _stakeDuration
        );
        bytes32 hash = keccak256(hashData);
        return hash;
    }

    function hashStakePacked(
        address _address,
        uint256 _nonce,
        uint256 _stakeDuration
    ) private pure returns (bytes32) {
        bytes memory hashData = abi.encodePacked(
            _address,
            _nonce,
            _stakeDuration
        );
        bytes32 hash = keccak256(hashData);
        return hash;
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override(ERC721, IERC721) isNotStaked(tokenId) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override(ERC721, IERC721) isNotStaked(tokenId) {
        super.transferFrom(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _update(
        address to,
        uint256 tokenId,
        address auth
    ) internal override(ERC721, ERC721Enumerable) returns (address) {
        return super._update(to, tokenId, auth);
    }

    function _increaseBalance(address account, uint128 value)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._increaseBalance(account, value);
    }

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

    function deposit() external payable onlyOwner {}

    function withdraw() external onlyOwner {
        (bool succ, ) = payable(msg.sender).call{value: address(this).balance}(
            ""
        );
        require(succ, "transfer failed");
    }
}

File 2 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {ERC721} from "../ERC721.sol";
import {IERC721Enumerable} from "./IERC721Enumerable.sol";
import {IERC165} from "../../../utils/introspection/ERC165.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.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @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 returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

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

        return previousOwner;
    }

    /**
     * @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 = balanceOf(to) - 1;
        _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 = balanceOf(from);
        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();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

File 3 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;

import {IERC721} from "./IERC721.sol";
import {IERC721Receiver} from "./IERC721Receiver.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

File 4 of 16 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @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 // Deprecated in v4.8
    }

    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");
        }
    }

    /**
     * @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) {
        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.
            /// @solidity memory-safe-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 {
            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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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 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 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @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 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

File 5 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 6 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 7 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../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);

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

File 9 of 16 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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

pragma solidity ^0.8.0;

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

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

File 11 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../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 12 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../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`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

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

    /**
     * @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);
}

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

pragma solidity ^0.8.0;

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

File 15 of 16 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 16 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_deployer","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"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":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"MintPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MintRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bool","name":"_value","type":"bool"}],"name":"MintToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"ReservePriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"address","name":"_oldAddress","type":"address"}],"name":"SignerAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakedAtTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"removedFromStakeAtTimestamp","type":"uint256"}],"name":"Unstake","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"counterMaxMint","outputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isStaked","outputs":[{"internalType":"address","name":"staker","type":"address"},{"internalType":"uint256","name":"stakeStarted","type":"uint256"},{"internalType":"uint256","name":"stakeEnded","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes32","name":"_msgHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_stakeDuration","type":"uint256"}],"name":"mintFictZero","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservePrice","type":"uint256"}],"name":"setReservePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardEnd","type":"uint256"}],"name":"setRewardEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSigner","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes32","name":"_msgHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_daysValue","type":"uint256"}],"name":"stakeFictZero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unstakeFictZero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b031916734ca9936072b171a08301b59446f34bc0f3cf9f4b179055600d805460ff191690556001600e55670b1a2bc2ec500000600f55670de0b6b3a76400006010556103786011554260125534801562000067575f80fd5b5060405162003009380380620030098339810160408190526200008a91620003d4565b604080518082018252600880825267464943545a45524f60c01b6020808401829052845180860190955291845290830152905f620000c983826200054e565b506001620000d882826200054e565b505050620000f5620000ef6200028a60201b60201c565b6200028e565b6200010082620002df565b600c6200010e82826200054e565b50506016602081905261014d7fc89b9715af38edfbeb7de9147aa42890a2ed353ddfd26adc7c3d170e0234159e5560de7f2ec7f50964820071486b397ebf5491e0359dbbc7a9b6460b1daeb3ff8f596b9155606f7fdf06490639e2453950caefcd9af71fadff9577306d64aab76a3e3db3dcef6f695560637f6f969bd706f7f3c36a4d48779ec59b2d9b33a82e38197bc84fc606dcc573215f5560587f34e06e21a131004060724fd1dfd415a56c8f98acbf19f167f14dc1d2744d61fb55604d7f8956132e30107a6bcd5cf5d923702c451d95d06977237bb62b9d07f30f3085b15560377fa35a09fdfa73a724eff314f4697c5a27745c3b474bb054cdd7e5c9c080f902285560217fa09d40c228ecc8b3b42892fcebe71c7b896f85e3eb46fd83ec18ee7368330e98557f3073503f0367ff661bc083bb6d8c85094e12337d8680feca6faa137ce2afa55555506107f15f52600b7f804a6b95b55a6a1d25fd6f6d24c044c37b84e0986755c7d46a52297bdbde36f15562000616565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620002e962000362565b6001600160a01b038116620003545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6200035f816200028e565b50565b600a546001600160a01b03163314620003be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200034b565b565b634e487b7160e01b5f52604160045260245ffd5b5f8060408385031215620003e6575f80fd5b82516001600160a01b0381168114620003fd575f80fd5b602084810151919350906001600160401b03808211156200041c575f80fd5b818601915086601f83011262000430575f80fd5b815181811115620004455762000445620003c0565b604051601f8201601f19908116603f01168101908382118183101715620004705762000470620003c0565b81604052828152898684870101111562000488575f80fd5b5f93505b82841015620004ab57848401860151818501870152928501926200048c565b5f8684830101528096505050505050509250929050565b600181811c90821680620004d757607f821691505b602082108103620004f657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000549575f81815260208120601f850160051c81016020861015620005245750805b601f850160051c820191505b81811015620005455782815560010162000530565b5050505b505050565b81516001600160401b038111156200056a576200056a620003c0565b62000582816200057b8454620004c2565b84620004fc565b602080601f831160018114620005b8575f8415620005a05750858301515b5f19600386901b1c1916600185901b17855562000545565b5f85815260208120601f198616915b82811015620005e857888601518255948401946001909101908401620005c7565b50858210156200060657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6129e580620006245f395ff3fe608060405260043610610228575f3560e01c8063936020d911610129578063d0e30db0116100a8578063e985e9c51161006d578063e985e9c51461068d578063f2fde38b146106ac578063f4a0a528146106cb578063f9f2a7ce146106ea578063fdfc7aae14610718575f80fd5b8063d0e30db014610628578063d17c2dcb14610630578063d3dd5fe01461064f578063d5abeb0114610663578063db2e1eed14610678575f80fd5b8063baa51f86116100ee578063baa51f8614610542578063c1e534aa146105b6578063c87b56dd146105cb578063ce9c7c0d146105ea578063cf81f35114610609575f80fd5b8063936020d9146104a357806395d89b41146104c25780639e34070f146104d6578063a22cb46514610504578063b88d4fde14610523575f80fd5b806342842e0e116101b55780636817c76c1161017a5780636817c76c146103f757806369a3de741461040c57806370a0823114610453578063715018a6146104725780638da5cb5b14610486575f80fd5b806342842e0e146103685780634f6ccce71461038757806355f804b3146103a657806361477fcc146103c55780636352211e146103d8575f80fd5b8063095ea7b3116101fb578063095ea7b3146102d957806318160ddd146102f857806323b872dd146103165780632f745c59146103355780633ccfd60b14610354575f80fd5b806301ffc9a71461022c578063046dc1661461026057806306fdde0314610281578063081812fc146102a2575b5f80fd5b348015610237575f80fd5b5061024b61024636600461236d565b610731565b60405190151581526020015b60405180910390f35b34801561026b575f80fd5b5061027f61027a3660046123a3565b610741565b005b34801561028c575f80fd5b506102956107fd565b6040516102579190612409565b3480156102ad575f80fd5b506102c16102bc36600461241b565b61088c565b6040516001600160a01b039091168152602001610257565b3480156102e4575f80fd5b5061027f6102f3366004612432565b6108b3565b348015610303575f80fd5b506008545b604051908152602001610257565b348015610321575f80fd5b5061027f61033036600461245a565b6108c2565b348015610340575f80fd5b5061030861034f366004612432565b610905565b34801561035f575f80fd5b5061027f610968565b348015610373575f80fd5b5061027f61038236600461245a565b6109fa565b348015610392575f80fd5b506103086103a136600461241b565b610a19565b3480156103b1575f80fd5b5061027f6103c036600461251a565b610a6e565b61027f6103d336600461257d565b610a82565b3480156103e3575f80fd5b506102c16103f236600461241b565b610e48565b348015610402575f80fd5b5061030860105481565b348015610417575f80fd5b5061043e61042636600461241b565b60166020525f90815260409020805460019091015482565b60408051928352602083019190915201610257565b34801561045e575f80fd5b5061030861046d3660046123a3565b610e52565b34801561047d575f80fd5b5061027f610e97565b348015610491575f80fd5b50600a546001600160a01b03166102c1565b3480156104ae575f80fd5b5061027f6104bd36600461241b565b610eaa565b3480156104cd575f80fd5b5061029561102c565b3480156104e1575f80fd5b5061024b6104f036600461241b565b60136020525f908152604090205460ff1681565b34801561050f575f80fd5b5061027f61051e3660046125d1565b61103b565b34801561052e575f80fd5b5061027f61053d36600461260a565b611046565b34801561054d575f80fd5b5061058c61055c36600461241b565b60156020525f908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b604080516001600160a01b0390951685526020850193909352918301526060820152608001610257565b3480156105c1575f80fd5b5061030860125481565b3480156105d6575f80fd5b506102956105e536600461241b565b61108b565b3480156105f5575f80fd5b5061027f61060436600461241b565b6110f0565b348015610614575f80fd5b5061027f61062336600461266e565b611136565b61027f6112cc565b34801561063b575f80fd5b5061027f61064a36600461241b565b6112d4565b34801561065a575f80fd5b5061027f6112e1565b34801561066e575f80fd5b5061030860115481565b348015610683575f80fd5b50610308600f5481565b348015610698575f80fd5b5061024b6106a73660046126cb565b611338565b3480156106b7575f80fd5b5061027f6106c63660046123a3565b611365565b3480156106d6575f80fd5b5061027f6106e536600461241b565b6113db565b3480156106f5575f80fd5b5061024b6107043660046123a3565b60146020525f908152604090205460ff1681565b348015610723575f80fd5b50600d5461024b9060ff1681565b5f61073b8261141a565b92915050565b61074961143e565b6001600160a01b03811661079c5760405162461bcd60e51b815260206004820152601560248201527441646472657373206973206e6f742076616c69642160581b60448201526064015b60405180910390fd5b600b80546001600160a01b038381166001600160a01b031983168117909355604080519384529116602083018190529133917f7f79a758079c8ff715826ba9a371c85dd9a922cfa735519ecbb8f5bee614a2b4910160405180910390a25050565b60605f805461080b906126fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610837906126fc565b80156108825780601f1061085957610100808354040283529160200191610882565b820191905f5260205f20905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b5f61089682611498565b505f828152600460205260409020546001600160a01b031661073b565b6108be8282336114d0565b5050565b5f8181526015602052604090206003015481906001116108f45760405162461bcd60e51b815260040161079390612734565b6108ff8484846114dd565b50505050565b5f61090f83610e52565b82106109405760405163295f44f760e21b81526001600160a01b038416600482015260248101839052604401610793565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b61097061143e565b6040515f90339047908381818185875af1925050503d805f81146109af576040519150601f19603f3d011682016040523d82523d5f602084013e6109b4565b606091505b50509050806109f75760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610793565b50565b610a1483838360405180602001604052805f815250611046565b505050565b5f610a2360085490565b8210610a4b5760405163295f44f760e21b81525f600482015260248101839052604401610793565b60088281548110610a5e57610a5e61275d565b905f5260205f2001549050919050565b610a7661143e565b600c6108be82826127be565b338434858585610b18610ae6878787856040805160609590951b6bffffffffffffffffffffffff1916602080870191909152603486019490945260548501929092526074808501919091528151808503909101815260949093019052815191012090565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b8314610b5d5760405162461bcd60e51b8152602060048201526014602482015273092dcecc2d8d2c840dacae6e6c2ceca40d0c2e6d60631b6044820152606401610793565b610b678383611560565b600b546001600160a01b03908116911614610bb85760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610793565b600d5460ff16610c015760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b6044820152606401610793565b335f9081526014602052604090205460ff1615610c565760405162461bcd60e51b8152602060048201526013602482015272596f7520616c7265616479204d696e7465642160681b6044820152606401610793565b601154600e541115610caa5760405162461bcd60e51b815260206004820152601760248201527f46696374205a65726f206973206d696e746564206f75740000000000000000006044820152606401610793565b600f54341480610cbb575060105434145b610cfe5760405162461bcd60e51b81526020600482015260146024820152730a0e4d2c6ca40c8decae640dcdee840dac2e8c6d60631b6044820152606401610793565b5f610d0d6301e187e04261288e565b610d19906107b26128ad565b90506107f2811015610d93575f818152601660205260409020805460019091015410610d935760405162461bcd60e51b815260206004820152602360248201527f537570706c7920616c72656164792065786365656420666f722074686973207960448201526232b0b960e91b6064820152608401610793565b600e80545f9182610da3836128c0565b919050559050610db33382611582565b610dbd898261159b565b5f828152601660205260408120600101805491610dd9836128c0565b9091555050335f8181526014602052604090819020805460ff19166001179055517f41c9b891d917f70d74895adfaf4b4409be1dd1729e4645bbb533c90c7fb12be290610e329034908590918252602082015260400190565b60405180910390a2505050505050505050505050565b5f61073b82611498565b5f6001600160a01b038216610e7c576040516322718ad960e21b81525f6004820152602401610793565b506001600160a01b03165f9081526003602052604090205490565b610e9f61143e565b610ea85f611797565b565b5f818152601560205260409020600301548190610efd5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b881a5cc8155b9cdd185ad959607a1b6044820152606401610793565b33610f0783610e48565b6001600160a01b031614610f4f5760405162461bcd60e51b815260206004820152600f60248201526e2737ba102a37b5b2b71027bbb732b960891b6044820152606401610793565b5f828152601560205260409020600201544211610fae5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e207374696c6c206f6e207374616b6520706572696f6400000000006044820152606401610793565b5f8281526015602052604080822060018101805482546001600160a01b031916835590849055600282018490556003909101929092555183907f529f395783b74aeb16a02d6320297d8415f7312f2ff2c398cd0d70e30bebc6c99061101f9084904290918252602082015260400190565b60405180910390a2505050565b60606001805461080b906126fc565b6108be3383836117e8565b5f8281526015602052604090206003015482906001116110785760405162461bcd60e51b815260040161079390612734565b61108485858585611886565b5050505050565b606061109682611498565b505f6110a061189d565b90505f8151116110be5760405180602001604052805f8152506110e9565b806110c8846118ac565b6040516020016110d99291906128d8565b6040516020818303038152906040525b9392505050565b6110f861143e565b600f81905560405181815233907f5dc3e1d733ce0e97562c71aa765e251dec904f170240d5d9fcc61f9b8ccb73f6906020015b60405180910390a250565b3384848484611191610ae68686846040805160609490941b6bffffffffffffffffffffffff19166020808601919091526034850193909352605480850192909252805180850390920182526074909301909252815191012090565b83146111d65760405162461bcd60e51b8152602060048201526014602482015273092dcecc2d8d2c840dacae6e6c2ceca40d0c2e6d60631b6044820152606401610793565b6111e08383611560565b600b546001600160a01b039081169116146112315760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610793565b5f8a8152601560205260409020600301548a906001116112635760405162461bcd60e51b815260040161079390612734565b3361126d8c610e48565b6001600160a01b0316146112b55760405162461bcd60e51b815260206004820152600f60248201526e2737ba102a37b5b2b71027bbb732b960891b6044820152606401610793565b6112bf878c61159b565b5050505050505050505050565b610ea861143e565b6112dc61143e565b601255565b6112e961143e565b600d805460ff8082161560ff19909216821790925560405191161515815233907f0f52b1283a18a7af6f39fc3323c0047971151adb7841f91f92daebec7ad3f0a19060200160405180910390a2565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b61136d61143e565b6001600160a01b0381166113d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610793565b6109f781611797565b6113e361143e565b601081905560405181815233907fbefdf8ffef0a457055ec7561e2db2ed2871640bbbc11a1b20fa87bfd84d387379060200161112b565b5f6001600160e01b0319821663780e9d6360e01b148061073b575061073b8261193c565b600a546001600160a01b03163314610ea85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610793565b5f818152600260205260408120546001600160a01b03168061073b57604051637e27328960e01b815260048101849052602401610793565b610a14838383600161198b565b6001600160a01b03821661150657604051633250574960e11b81525f6004820152602401610793565b5f611512838333611a8f565b9050836001600160a01b0316816001600160a01b0316146108ff576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610793565b5f805f61156d8585611aa3565b9150915061157a81611ae5565b509392505050565b6108be828260405180602001604052805f815250611c2e565b5f8215610a14575f82815260156020526040902080546001600160a01b03191633178155426001909101556115d38362015180612906565b6115dd90426128ad565b5f8381526015602052604080822060028101939093556003909201859055905183917f227a473b70d2f893cc7659219575c030a63b5743024fe1e0c1a680e708b1525a91a26012544210801561164157505f8281526013602052604090205460ff16155b15610a14578260b40361165557505f6116b1565b826101680361166d575067058d15e1762800006116b1565b8261021c036116855750670853a0d2313c00006116b1565b826102d00361169d5750670b1a2bc2ec5000006116b1565b82610384036116b15750670de0b6b3a76400005b5f828152601360205260409020805460ff191660011790558015610a14576040515f90339083908381818185875af1925050503d805f811461170e576040519150601f19603f3d011682016040523d82523d5f602084013e611713565b606091505b50509050806117565760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610793565b604080518381526020810185905233917ff01da32686223933d8a18a391060918c7f11a3648639edd87ae013e2e2731743910160405180910390a250505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661181a57604051630b61174360e31b81526001600160a01b0383166004820152602401610793565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118918484846108c2565b6108ff84848484611c40565b6060600c805461080b906126fc565b60605f6118b883611d5f565b60010190505f8167ffffffffffffffff8111156118d7576118d7612493565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461190b57509392505050565b5f6001600160e01b031982166380ac58cd60e01b148061196c57506001600160e01b03198216635b5e139f60e01b145b8061073b57506301ffc9a760e01b6001600160e01b031983161461073b565b808061199f57506001600160a01b03821615155b15611a60575f6119ae84611498565b90506001600160a01b038316158015906119da5750826001600160a01b0316816001600160a01b031614155b80156119ed57506119eb8184611338565b155b15611a165760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610793565b8115611a5e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b5f611a9b848484611e36565b949350505050565b5f808251604103611ad7576020830151604084015160608501515f1a611acb87828585611f01565b94509450505050611ade565b505f905060025b9250929050565b5f816004811115611af857611af861291d565b03611b005750565b6001816004811115611b1457611b1461291d565b03611b615760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610793565b6002816004811115611b7557611b7561291d565b03611bc25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610793565b6003816004811115611bd657611bd661291d565b036109f75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610793565b611c388383611fbe565b610a145f8484845b6001600160a01b0383163b156108ff57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611c82903390889087908790600401612931565b6020604051808303815f875af1925050508015611cbc575060408051601f3d908101601f19168201909252611cb99181019061296d565b60015b611d23573d808015611ce9576040519150601f19603f3d011682016040523d82523d5f602084013e611cee565b606091505b5080515f03611d1b57604051633250574960e11b81526001600160a01b0385166004820152602401610793565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461108457604051633250574960e11b81526001600160a01b0385166004820152602401610793565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611d9d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611dc9576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611de757662386f26fc10000830492506010015b6305f5e1008310611dff576305f5e100830492506008015b6127108310611e1357612710830492506004015b60648310611e25576064830492506002015b600a831061073b5760010192915050565b5f80611e4385858561201f565b90506001600160a01b038116611e9f57611e9a84600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ec2565b846001600160a01b0316816001600160a01b031614611ec257611ec28185612111565b6001600160a01b038516611ede57611ed98461219e565b611a9b565b846001600160a01b0316816001600160a01b031614611a9b57611a9b8585612245565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611f3657505f90506003611fb5565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f87573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116611faf575f60019250925050611fb5565b91505f90505b94509492505050565b6001600160a01b038216611fe757604051633250574960e11b81525f6004820152602401610793565b5f611ff383835f611a8f565b90506001600160a01b03811615610a14576040516339e3563760e11b81525f6004820152602401610793565b5f828152600260205260408120546001600160a01b039081169083161561204b5761204b818486612293565b6001600160a01b03811615612085576120665f855f8061198b565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b038516156120b3576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b5f61211b83610e52565b5f8381526007602052604090205490915080821461216c576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f906121af90600190612988565b5f83815260096020526040812054600880549394509092849081106121d6576121d661275d565b905f5260205f200154905080600883815481106121f5576121f561275d565b5f91825260208083209091019290925582815260099091526040808220849055858252812055600880548061222c5761222c61299b565b600190038181905f5260205f20015f9055905550505050565b5f600161225184610e52565b61225b9190612988565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61229e8383836122f7565b610a14576001600160a01b0383166122cc57604051637e27328960e01b815260048101829052602401610793565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610793565b5f6001600160a01b03831615801590611a9b5750826001600160a01b0316846001600160a01b0316148061233057506123308484611338565b80611a9b5750505f908152600460205260409020546001600160a01b03908116911614919050565b6001600160e01b0319811681146109f7575f80fd5b5f6020828403121561237d575f80fd5b81356110e981612358565b80356001600160a01b038116811461239e575f80fd5b919050565b5f602082840312156123b3575f80fd5b6110e982612388565b5f5b838110156123d65781810151838201526020016123be565b50505f910152565b5f81518084526123f58160208601602086016123bc565b601f01601f19169290920160200192915050565b602081525f6110e960208301846123de565b5f6020828403121561242b575f80fd5b5035919050565b5f8060408385031215612443575f80fd5b61244c83612388565b946020939093013593505050565b5f805f6060848603121561246c575f80fd5b61247584612388565b925061248360208501612388565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff808411156124c1576124c1612493565b604051601f8501601f19908116603f011681019082821181831017156124e9576124e9612493565b81604052809350858152868686011115612501575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561252a575f80fd5b813567ffffffffffffffff811115612540575f80fd5b8201601f81018413612550575f80fd5b611a9b848235602084016124a7565b5f82601f83011261256e575f80fd5b6110e9838335602085016124a7565b5f805f8060808587031215612590575f80fd5b8435935060208501359250604085013567ffffffffffffffff8111156125b4575f80fd5b6125c08782880161255f565b949793965093946060013593505050565b5f80604083850312156125e2575f80fd5b6125eb83612388565b9150602083013580151581146125ff575f80fd5b809150509250929050565b5f805f806080858703121561261d575f80fd5b61262685612388565b935061263460208601612388565b925060408501359150606085013567ffffffffffffffff811115612656575f80fd5b6126628782880161255f565b91505092959194509250565b5f805f805f60a08688031215612682575f80fd5b853594506020860135935060408601359250606086013567ffffffffffffffff8111156126ad575f80fd5b6126b98882890161255f565b95989497509295608001359392505050565b5f80604083850312156126dc575f80fd5b6126e583612388565b91506126f360208401612388565b90509250929050565b600181811c9082168061271057607f821691505b60208210810361272e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252600f908201526e151bdad95b881a5cc814dd185ad959608a1b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b601f821115610a14575f81815260208120601f850160051c810160208610156127975750805b601f850160051c820191505b818110156127b6578281556001016127a3565b505050505050565b815167ffffffffffffffff8111156127d8576127d8612493565b6127ec816127e684546126fc565b84612771565b602080601f83116001811461281f575f84156128085750858301515b5f19600386901b1c1916600185901b1785556127b6565b5f85815260208120601f198616915b8281101561284d5788860151825594840194600190910190840161282e565b508582101561286a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b5f826128a857634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561073b5761073b61287a565b5f600182016128d1576128d161287a565b5060010190565b5f83516128e98184602088016123bc565b8351908301906128fd8183602088016123bc565b01949350505050565b808202811582820484141761073b5761073b61287a565b634e487b7160e01b5f52602160045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612963908301846123de565b9695505050505050565b5f6020828403121561297d575f80fd5b81516110e981612358565b8181038181111561073b5761073b61287a565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220eef31e2fbbf247af188c80d94908dd4b70fec8d7b49c49e4cc94933060bb8f8b64736f6c63430008140033000000000000000000000000cc9b5d0fac5c2b9bed68341c79c23d34a8e72a9c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7a65726f2d6170692e636f6e66696374696f6e2e636f6d2f666963747a65726f2f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610228575f3560e01c8063936020d911610129578063d0e30db0116100a8578063e985e9c51161006d578063e985e9c51461068d578063f2fde38b146106ac578063f4a0a528146106cb578063f9f2a7ce146106ea578063fdfc7aae14610718575f80fd5b8063d0e30db014610628578063d17c2dcb14610630578063d3dd5fe01461064f578063d5abeb0114610663578063db2e1eed14610678575f80fd5b8063baa51f86116100ee578063baa51f8614610542578063c1e534aa146105b6578063c87b56dd146105cb578063ce9c7c0d146105ea578063cf81f35114610609575f80fd5b8063936020d9146104a357806395d89b41146104c25780639e34070f146104d6578063a22cb46514610504578063b88d4fde14610523575f80fd5b806342842e0e116101b55780636817c76c1161017a5780636817c76c146103f757806369a3de741461040c57806370a0823114610453578063715018a6146104725780638da5cb5b14610486575f80fd5b806342842e0e146103685780634f6ccce71461038757806355f804b3146103a657806361477fcc146103c55780636352211e146103d8575f80fd5b8063095ea7b3116101fb578063095ea7b3146102d957806318160ddd146102f857806323b872dd146103165780632f745c59146103355780633ccfd60b14610354575f80fd5b806301ffc9a71461022c578063046dc1661461026057806306fdde0314610281578063081812fc146102a2575b5f80fd5b348015610237575f80fd5b5061024b61024636600461236d565b610731565b60405190151581526020015b60405180910390f35b34801561026b575f80fd5b5061027f61027a3660046123a3565b610741565b005b34801561028c575f80fd5b506102956107fd565b6040516102579190612409565b3480156102ad575f80fd5b506102c16102bc36600461241b565b61088c565b6040516001600160a01b039091168152602001610257565b3480156102e4575f80fd5b5061027f6102f3366004612432565b6108b3565b348015610303575f80fd5b506008545b604051908152602001610257565b348015610321575f80fd5b5061027f61033036600461245a565b6108c2565b348015610340575f80fd5b5061030861034f366004612432565b610905565b34801561035f575f80fd5b5061027f610968565b348015610373575f80fd5b5061027f61038236600461245a565b6109fa565b348015610392575f80fd5b506103086103a136600461241b565b610a19565b3480156103b1575f80fd5b5061027f6103c036600461251a565b610a6e565b61027f6103d336600461257d565b610a82565b3480156103e3575f80fd5b506102c16103f236600461241b565b610e48565b348015610402575f80fd5b5061030860105481565b348015610417575f80fd5b5061043e61042636600461241b565b60166020525f90815260409020805460019091015482565b60408051928352602083019190915201610257565b34801561045e575f80fd5b5061030861046d3660046123a3565b610e52565b34801561047d575f80fd5b5061027f610e97565b348015610491575f80fd5b50600a546001600160a01b03166102c1565b3480156104ae575f80fd5b5061027f6104bd36600461241b565b610eaa565b3480156104cd575f80fd5b5061029561102c565b3480156104e1575f80fd5b5061024b6104f036600461241b565b60136020525f908152604090205460ff1681565b34801561050f575f80fd5b5061027f61051e3660046125d1565b61103b565b34801561052e575f80fd5b5061027f61053d36600461260a565b611046565b34801561054d575f80fd5b5061058c61055c36600461241b565b60156020525f908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b604080516001600160a01b0390951685526020850193909352918301526060820152608001610257565b3480156105c1575f80fd5b5061030860125481565b3480156105d6575f80fd5b506102956105e536600461241b565b61108b565b3480156105f5575f80fd5b5061027f61060436600461241b565b6110f0565b348015610614575f80fd5b5061027f61062336600461266e565b611136565b61027f6112cc565b34801561063b575f80fd5b5061027f61064a36600461241b565b6112d4565b34801561065a575f80fd5b5061027f6112e1565b34801561066e575f80fd5b5061030860115481565b348015610683575f80fd5b50610308600f5481565b348015610698575f80fd5b5061024b6106a73660046126cb565b611338565b3480156106b7575f80fd5b5061027f6106c63660046123a3565b611365565b3480156106d6575f80fd5b5061027f6106e536600461241b565b6113db565b3480156106f5575f80fd5b5061024b6107043660046123a3565b60146020525f908152604090205460ff1681565b348015610723575f80fd5b50600d5461024b9060ff1681565b5f61073b8261141a565b92915050565b61074961143e565b6001600160a01b03811661079c5760405162461bcd60e51b815260206004820152601560248201527441646472657373206973206e6f742076616c69642160581b60448201526064015b60405180910390fd5b600b80546001600160a01b038381166001600160a01b031983168117909355604080519384529116602083018190529133917f7f79a758079c8ff715826ba9a371c85dd9a922cfa735519ecbb8f5bee614a2b4910160405180910390a25050565b60605f805461080b906126fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610837906126fc565b80156108825780601f1061085957610100808354040283529160200191610882565b820191905f5260205f20905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b5f61089682611498565b505f828152600460205260409020546001600160a01b031661073b565b6108be8282336114d0565b5050565b5f8181526015602052604090206003015481906001116108f45760405162461bcd60e51b815260040161079390612734565b6108ff8484846114dd565b50505050565b5f61090f83610e52565b82106109405760405163295f44f760e21b81526001600160a01b038416600482015260248101839052604401610793565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b61097061143e565b6040515f90339047908381818185875af1925050503d805f81146109af576040519150601f19603f3d011682016040523d82523d5f602084013e6109b4565b606091505b50509050806109f75760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610793565b50565b610a1483838360405180602001604052805f815250611046565b505050565b5f610a2360085490565b8210610a4b5760405163295f44f760e21b81525f600482015260248101839052604401610793565b60088281548110610a5e57610a5e61275d565b905f5260205f2001549050919050565b610a7661143e565b600c6108be82826127be565b338434858585610b18610ae6878787856040805160609590951b6bffffffffffffffffffffffff1916602080870191909152603486019490945260548501929092526074808501919091528151808503909101815260949093019052815191012090565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b8314610b5d5760405162461bcd60e51b8152602060048201526014602482015273092dcecc2d8d2c840dacae6e6c2ceca40d0c2e6d60631b6044820152606401610793565b610b678383611560565b600b546001600160a01b03908116911614610bb85760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610793565b600d5460ff16610c015760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b6044820152606401610793565b335f9081526014602052604090205460ff1615610c565760405162461bcd60e51b8152602060048201526013602482015272596f7520616c7265616479204d696e7465642160681b6044820152606401610793565b601154600e541115610caa5760405162461bcd60e51b815260206004820152601760248201527f46696374205a65726f206973206d696e746564206f75740000000000000000006044820152606401610793565b600f54341480610cbb575060105434145b610cfe5760405162461bcd60e51b81526020600482015260146024820152730a0e4d2c6ca40c8decae640dcdee840dac2e8c6d60631b6044820152606401610793565b5f610d0d6301e187e04261288e565b610d19906107b26128ad565b90506107f2811015610d93575f818152601660205260409020805460019091015410610d935760405162461bcd60e51b815260206004820152602360248201527f537570706c7920616c72656164792065786365656420666f722074686973207960448201526232b0b960e91b6064820152608401610793565b600e80545f9182610da3836128c0565b919050559050610db33382611582565b610dbd898261159b565b5f828152601660205260408120600101805491610dd9836128c0565b9091555050335f8181526014602052604090819020805460ff19166001179055517f41c9b891d917f70d74895adfaf4b4409be1dd1729e4645bbb533c90c7fb12be290610e329034908590918252602082015260400190565b60405180910390a2505050505050505050505050565b5f61073b82611498565b5f6001600160a01b038216610e7c576040516322718ad960e21b81525f6004820152602401610793565b506001600160a01b03165f9081526003602052604090205490565b610e9f61143e565b610ea85f611797565b565b5f818152601560205260409020600301548190610efd5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b881a5cc8155b9cdd185ad959607a1b6044820152606401610793565b33610f0783610e48565b6001600160a01b031614610f4f5760405162461bcd60e51b815260206004820152600f60248201526e2737ba102a37b5b2b71027bbb732b960891b6044820152606401610793565b5f828152601560205260409020600201544211610fae5760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e207374696c6c206f6e207374616b6520706572696f6400000000006044820152606401610793565b5f8281526015602052604080822060018101805482546001600160a01b031916835590849055600282018490556003909101929092555183907f529f395783b74aeb16a02d6320297d8415f7312f2ff2c398cd0d70e30bebc6c99061101f9084904290918252602082015260400190565b60405180910390a2505050565b60606001805461080b906126fc565b6108be3383836117e8565b5f8281526015602052604090206003015482906001116110785760405162461bcd60e51b815260040161079390612734565b61108485858585611886565b5050505050565b606061109682611498565b505f6110a061189d565b90505f8151116110be5760405180602001604052805f8152506110e9565b806110c8846118ac565b6040516020016110d99291906128d8565b6040516020818303038152906040525b9392505050565b6110f861143e565b600f81905560405181815233907f5dc3e1d733ce0e97562c71aa765e251dec904f170240d5d9fcc61f9b8ccb73f6906020015b60405180910390a250565b3384848484611191610ae68686846040805160609490941b6bffffffffffffffffffffffff19166020808601919091526034850193909352605480850192909252805180850390920182526074909301909252815191012090565b83146111d65760405162461bcd60e51b8152602060048201526014602482015273092dcecc2d8d2c840dacae6e6c2ceca40d0c2e6d60631b6044820152606401610793565b6111e08383611560565b600b546001600160a01b039081169116146112315760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610793565b5f8a8152601560205260409020600301548a906001116112635760405162461bcd60e51b815260040161079390612734565b3361126d8c610e48565b6001600160a01b0316146112b55760405162461bcd60e51b815260206004820152600f60248201526e2737ba102a37b5b2b71027bbb732b960891b6044820152606401610793565b6112bf878c61159b565b5050505050505050505050565b610ea861143e565b6112dc61143e565b601255565b6112e961143e565b600d805460ff8082161560ff19909216821790925560405191161515815233907f0f52b1283a18a7af6f39fc3323c0047971151adb7841f91f92daebec7ad3f0a19060200160405180910390a2565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b61136d61143e565b6001600160a01b0381166113d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610793565b6109f781611797565b6113e361143e565b601081905560405181815233907fbefdf8ffef0a457055ec7561e2db2ed2871640bbbc11a1b20fa87bfd84d387379060200161112b565b5f6001600160e01b0319821663780e9d6360e01b148061073b575061073b8261193c565b600a546001600160a01b03163314610ea85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610793565b5f818152600260205260408120546001600160a01b03168061073b57604051637e27328960e01b815260048101849052602401610793565b610a14838383600161198b565b6001600160a01b03821661150657604051633250574960e11b81525f6004820152602401610793565b5f611512838333611a8f565b9050836001600160a01b0316816001600160a01b0316146108ff576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610793565b5f805f61156d8585611aa3565b9150915061157a81611ae5565b509392505050565b6108be828260405180602001604052805f815250611c2e565b5f8215610a14575f82815260156020526040902080546001600160a01b03191633178155426001909101556115d38362015180612906565b6115dd90426128ad565b5f8381526015602052604080822060028101939093556003909201859055905183917f227a473b70d2f893cc7659219575c030a63b5743024fe1e0c1a680e708b1525a91a26012544210801561164157505f8281526013602052604090205460ff16155b15610a14578260b40361165557505f6116b1565b826101680361166d575067058d15e1762800006116b1565b8261021c036116855750670853a0d2313c00006116b1565b826102d00361169d5750670b1a2bc2ec5000006116b1565b82610384036116b15750670de0b6b3a76400005b5f828152601360205260409020805460ff191660011790558015610a14576040515f90339083908381818185875af1925050503d805f811461170e576040519150601f19603f3d011682016040523d82523d5f602084013e611713565b606091505b50509050806117565760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610793565b604080518381526020810185905233917ff01da32686223933d8a18a391060918c7f11a3648639edd87ae013e2e2731743910160405180910390a250505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661181a57604051630b61174360e31b81526001600160a01b0383166004820152602401610793565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118918484846108c2565b6108ff84848484611c40565b6060600c805461080b906126fc565b60605f6118b883611d5f565b60010190505f8167ffffffffffffffff8111156118d7576118d7612493565b6040519080825280601f01601f191660200182016040528015611901576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461190b57509392505050565b5f6001600160e01b031982166380ac58cd60e01b148061196c57506001600160e01b03198216635b5e139f60e01b145b8061073b57506301ffc9a760e01b6001600160e01b031983161461073b565b808061199f57506001600160a01b03821615155b15611a60575f6119ae84611498565b90506001600160a01b038316158015906119da5750826001600160a01b0316816001600160a01b031614155b80156119ed57506119eb8184611338565b155b15611a165760405163a9fbf51f60e01b81526001600160a01b0384166004820152602401610793565b8115611a5e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b5f611a9b848484611e36565b949350505050565b5f808251604103611ad7576020830151604084015160608501515f1a611acb87828585611f01565b94509450505050611ade565b505f905060025b9250929050565b5f816004811115611af857611af861291d565b03611b005750565b6001816004811115611b1457611b1461291d565b03611b615760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610793565b6002816004811115611b7557611b7561291d565b03611bc25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610793565b6003816004811115611bd657611bd661291d565b036109f75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610793565b611c388383611fbe565b610a145f8484845b6001600160a01b0383163b156108ff57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611c82903390889087908790600401612931565b6020604051808303815f875af1925050508015611cbc575060408051601f3d908101601f19168201909252611cb99181019061296d565b60015b611d23573d808015611ce9576040519150601f19603f3d011682016040523d82523d5f602084013e611cee565b606091505b5080515f03611d1b57604051633250574960e11b81526001600160a01b0385166004820152602401610793565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461108457604051633250574960e11b81526001600160a01b0385166004820152602401610793565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611d9d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611dc9576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611de757662386f26fc10000830492506010015b6305f5e1008310611dff576305f5e100830492506008015b6127108310611e1357612710830492506004015b60648310611e25576064830492506002015b600a831061073b5760010192915050565b5f80611e4385858561201f565b90506001600160a01b038116611e9f57611e9a84600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ec2565b846001600160a01b0316816001600160a01b031614611ec257611ec28185612111565b6001600160a01b038516611ede57611ed98461219e565b611a9b565b846001600160a01b0316816001600160a01b031614611a9b57611a9b8585612245565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611f3657505f90506003611fb5565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f87573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116611faf575f60019250925050611fb5565b91505f90505b94509492505050565b6001600160a01b038216611fe757604051633250574960e11b81525f6004820152602401610793565b5f611ff383835f611a8f565b90506001600160a01b03811615610a14576040516339e3563760e11b81525f6004820152602401610793565b5f828152600260205260408120546001600160a01b039081169083161561204b5761204b818486612293565b6001600160a01b03811615612085576120665f855f8061198b565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b038516156120b3576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b5f61211b83610e52565b5f8381526007602052604090205490915080821461216c576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f906121af90600190612988565b5f83815260096020526040812054600880549394509092849081106121d6576121d661275d565b905f5260205f200154905080600883815481106121f5576121f561275d565b5f91825260208083209091019290925582815260099091526040808220849055858252812055600880548061222c5761222c61299b565b600190038181905f5260205f20015f9055905550505050565b5f600161225184610e52565b61225b9190612988565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61229e8383836122f7565b610a14576001600160a01b0383166122cc57604051637e27328960e01b815260048101829052602401610793565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610793565b5f6001600160a01b03831615801590611a9b5750826001600160a01b0316846001600160a01b0316148061233057506123308484611338565b80611a9b5750505f908152600460205260409020546001600160a01b03908116911614919050565b6001600160e01b0319811681146109f7575f80fd5b5f6020828403121561237d575f80fd5b81356110e981612358565b80356001600160a01b038116811461239e575f80fd5b919050565b5f602082840312156123b3575f80fd5b6110e982612388565b5f5b838110156123d65781810151838201526020016123be565b50505f910152565b5f81518084526123f58160208601602086016123bc565b601f01601f19169290920160200192915050565b602081525f6110e960208301846123de565b5f6020828403121561242b575f80fd5b5035919050565b5f8060408385031215612443575f80fd5b61244c83612388565b946020939093013593505050565b5f805f6060848603121561246c575f80fd5b61247584612388565b925061248360208501612388565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff808411156124c1576124c1612493565b604051601f8501601f19908116603f011681019082821181831017156124e9576124e9612493565b81604052809350858152868686011115612501575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561252a575f80fd5b813567ffffffffffffffff811115612540575f80fd5b8201601f81018413612550575f80fd5b611a9b848235602084016124a7565b5f82601f83011261256e575f80fd5b6110e9838335602085016124a7565b5f805f8060808587031215612590575f80fd5b8435935060208501359250604085013567ffffffffffffffff8111156125b4575f80fd5b6125c08782880161255f565b949793965093946060013593505050565b5f80604083850312156125e2575f80fd5b6125eb83612388565b9150602083013580151581146125ff575f80fd5b809150509250929050565b5f805f806080858703121561261d575f80fd5b61262685612388565b935061263460208601612388565b925060408501359150606085013567ffffffffffffffff811115612656575f80fd5b6126628782880161255f565b91505092959194509250565b5f805f805f60a08688031215612682575f80fd5b853594506020860135935060408601359250606086013567ffffffffffffffff8111156126ad575f80fd5b6126b98882890161255f565b95989497509295608001359392505050565b5f80604083850312156126dc575f80fd5b6126e583612388565b91506126f360208401612388565b90509250929050565b600181811c9082168061271057607f821691505b60208210810361272e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252600f908201526e151bdad95b881a5cc814dd185ad959608a1b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b601f821115610a14575f81815260208120601f850160051c810160208610156127975750805b601f850160051c820191505b818110156127b6578281556001016127a3565b505050505050565b815167ffffffffffffffff8111156127d8576127d8612493565b6127ec816127e684546126fc565b84612771565b602080601f83116001811461281f575f84156128085750858301515b5f19600386901b1c1916600185901b1785556127b6565b5f85815260208120601f198616915b8281101561284d5788860151825594840194600190910190840161282e565b508582101561286a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b5f826128a857634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561073b5761073b61287a565b5f600182016128d1576128d161287a565b5060010190565b5f83516128e98184602088016123bc565b8351908301906128fd8183602088016123bc565b01949350505050565b808202811582820484141761073b5761073b61287a565b634e487b7160e01b5f52602160045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612963908301846123de565b9695505050505050565b5f6020828403121561297d575f80fd5b81516110e981612358565b8181038181111561073b5761073b61287a565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220eef31e2fbbf247af188c80d94908dd4b70fec8d7b49c49e4cc94933060bb8f8b64736f6c63430008140033

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

000000000000000000000000cc9b5d0fac5c2b9bed68341c79c23d34a8e72a9c0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7a65726f2d6170692e636f6e66696374696f6e2e636f6d2f666963747a65726f2f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _deployer (address): 0xCC9B5D0FAC5c2B9bEd68341C79c23D34A8e72A9c
Arg [1] : _tokenURI (string): https://zero-api.confiction.com/fictzero/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000cc9b5d0fac5c2b9bed68341c79c23d34a8e72a9c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [3] : 68747470733a2f2f7a65726f2d6170692e636f6e66696374696f6e2e636f6d2f
Arg [4] : 666963747a65726f2f0000000000000000000000000000000000000000000000


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.