Holesky Testnet

Token

FundingVault Grant (Funding Grant)
ERC-721

Overview

Max Total Supply

12 Funding Grant

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
1 Funding Grant
0x6Cc9397c3B38739daCbfaA68EaD5F5D77Ba5F455
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:
FundingVaultToken

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 16 : FundingVaultToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

/*
##################################################################
#                Holešovice Funding Vault                        #
#                                                                #
# This contract is used to distribute fund reserves to faucets   #
# or other projects that have a ongoing need for testnet funds.  #
#                                                                #
#  Vault contract:  0x610866c6089768dA95524bcc4cE7dB61eDa3931c   #
#                                                                #
# see https://dev.pk910.de/ethvault               by pk910.eth   #
##################################################################
*/

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "./IFundingVaultToken.sol";
import "./IFundingVault.sol";

contract FundingVaultToken is ERC721Enumerable, IFundingVaultToken {
  address private _fundingVault;

  constructor(address fundingVault) ERC721("FundingVault Grant", "Funding Grant") {
    _fundingVault = fundingVault;
  }

  receive() external payable {
    if(msg.value > 0) {
      (bool sent, ) = payable(_fundingVault).call{value: msg.value}("");
      require(sent, "failed to forward ether");
    }
  }

  function getVault() public view returns (address) {
    return _fundingVault;
  }

  function _baseURI() internal view override returns (string memory) {
    return string(abi.encodePacked("https://dev.pk910.de/ethvault?c=", Strings.toString(block.chainid), "&v=",  Strings.toHexString(uint160(_fundingVault), 20), "&p="));
  }

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

    IFundingVault(_fundingVault).notifyGrantTransfer(uint64(tokenId));
  }

  function tokenUpdate(uint64 tokenId, address targetAddr) public {
    require(_msgSender() == _fundingVault, "not vault contract");

    if(targetAddr != address(0)) {
      if(!_exists(tokenId)) {
        _safeMint(targetAddr, tokenId);
      }
      else if(_ownerOf(tokenId) != targetAddr) {
        _safeTransfer(_ownerOf(tokenId), targetAddr, tokenId, "");
      }
    }
    else if(_exists(tokenId)) {
      _burn(tokenId);
    }
  }

}

File 2 of 16 : IFundingVault.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

interface IFundingVault {
  function notifyGrantTransfer(uint64 grantId) external;
}

File 3 of 16 : IFundingVaultToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

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

interface IFundingVaultToken is IERC721Enumerable {
  function tokenUpdate(uint64 tokenId, address targetAddr) external;
}

File 4 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @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 virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being 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`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 7 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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 caller.
     *
     * 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 8 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 9 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 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 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 12 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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": 2000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"fundingVault","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVault","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"tokenId","type":"uint64"},{"internalType":"address","name":"targetAddr","type":"address"}],"name":"tokenUpdate","outputs":[],"stateMutability":"nonpayable","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"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b5060405162002516380380620025168339810160408190526200003391620000cd565b60405180604001604052806012815260200171119d5b991a5b99d5985d5b1d0811dc985b9d60721b8152506040518060400160405280600d81526020016c119d5b991a5b99c811dc985b9d609a1b815250815f90816200009491906200019c565b506001620000a382826200019c565b5050600a80546001600160a01b0319166001600160a01b0393909316929092179091555062000264565b5f60208284031215620000de575f80fd5b81516001600160a01b0381168114620000f5575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200012557607f821691505b6020821081036200014457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000197575f81815260208120601f850160051c81016020861015620001725750805b601f850160051c820191505b8181101562000193578281556001016200017e565b5050505b505050565b81516001600160401b03811115620001b857620001b8620000fc565b620001d081620001c9845462000110565b846200014a565b602080601f83116001811462000206575f8415620001ee5750858301515b5f19600386901b1c1916600185901b17855562000193565b5f85815260208120601f198616915b82811015620002365788860151825594840194600190910190840162000215565b50858210156200025457878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6122a480620002725f395ff3fe608060405260043610610126575f3560e01c80634f6ccce7116100a157806395d89b4111610071578063b88d4fde11610057578063b88d4fde146103d0578063c87b56dd146103ef578063e985e9c51461040e575f80fd5b806395d89b411461039d578063a22cb465146103b1575f80fd5b80634f6ccce7146103235780636352211e1461034257806370a08231146103615780638d928af814610380575f80fd5b80630e242232116100f657806323b872dd116100dc57806323b872dd146102c65780632f745c59146102e557806342842e0e14610304575f80fd5b80630e2422321461028957806318160ddd146102a8575f80fd5b806301ffc9a7146101de57806306fdde0314610212578063081812fc14610233578063095ea7b31461026a575f80fd5b366101da5734156101d857600a546040515f916001600160a01b03169034908381818185875af1925050503d805f811461017b576040519150601f19603f3d011682016040523d82523d5f602084013e610180565b606091505b50509050806101d65760405162461bcd60e51b815260206004820152601760248201527f6661696c656420746f20666f727761726420657468657200000000000000000060448201526064015b60405180910390fd5b505b005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611dd8565b610455565b60405190151581526020015b60405180910390f35b34801561021d575f80fd5b506102266104b0565b6040516102099190611e40565b34801561023e575f80fd5b5061025261024d366004611e52565b61053f565b6040516001600160a01b039091168152602001610209565b348015610275575f80fd5b506101d8610284366004611e84565b610564565b348015610294575f80fd5b506101d86102a3366004611eac565b610694565b3480156102b3575f80fd5b506008545b604051908152602001610209565b3480156102d1575f80fd5b506101d86102e0366004611eeb565b610809565b3480156102f0575f80fd5b506102b86102ff366004611e84565b610890565b34801561030f575f80fd5b506101d861031e366004611eeb565b610936565b34801561032e575f80fd5b506102b861033d366004611e52565b610950565b34801561034d575f80fd5b5061025261035c366004611e52565b6109f1565b34801561036c575f80fd5b506102b861037b366004611f24565b610a55565b34801561038b575f80fd5b50600a546001600160a01b0316610252565b3480156103a8575f80fd5b50610226610aed565b3480156103bc575f80fd5b506101d86103cb366004611f3d565b610afc565b3480156103db575f80fd5b506101d86103ea366004611f8a565b610b07565b3480156103fa575f80fd5b50610226610409366004611e52565b610b95565b348015610419575f80fd5b506101fd61042836600461205f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104aa57506104aa82610bf9565b92915050565b60605f80546104be90612079565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea90612079565b80156105355780601f1061050c57610100808354040283529160200191610535565b820191905f5260205f20905b81548152906001019060200180831161051857829003601f168201915b5050505050905090565b5f61054982610cdb565b505f908152600460205260409020546001600160a01b031690565b5f61056e826109f1565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016101cd565b336001600160a01b038216148061061357506106138133610428565b6106855760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016101cd565b61068f8383610d41565b505050565b600a546001600160a01b0316336001600160a01b0316146106f75760405162461bcd60e51b815260206004820152601260248201527f6e6f74207661756c7420636f6e7472616374000000000000000000000000000060448201526064016101cd565b6001600160a01b038116156107cf5767ffffffffffffffff82165f908152600260205260409020546001600160a01b031661074457610740818367ffffffffffffffff16610dbb565b5050565b806001600160a01b03166107768367ffffffffffffffff165f908152600260205260409020546001600160a01b031690565b6001600160a01b031614610740576107406107af8367ffffffffffffffff165f908152600260205260409020546001600160a01b031690565b828467ffffffffffffffff1660405180602001604052805f815250610dd4565b67ffffffffffffffff82165f908152600260205260409020546001600160a01b031615610740576107408267ffffffffffffffff16610e5d565b6108133382610f09565b6108855760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016101cd565b61068f838383610f86565b5f61089a83610a55565b821061090e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016101cd565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b61068f83838360405180602001604052805f815250610b07565b5f61095a60085490565b82106109ce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016101cd565b600882815481106109e1576109e16120b1565b905f5260205f2001549050919050565b5f818152600260205260408120546001600160a01b0316806104aa5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016101cd565b5f6001600160a01b038216610ad25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016101cd565b506001600160a01b03165f9081526003602052604090205490565b6060600180546104be90612079565b6107403383836111c7565b610b113383610f09565b610b835760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016101cd565b610b8f84848484610dd4565b50505050565b6060610ba082610cdb565b5f610ba96112b2565b90505f815111610bc75760405180602001604052805f815250610bf2565b80610bd1846112f9565b604051602001610be29291906120c5565b6040516020818303038152906040525b9392505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c8b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806104aa57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146104aa565b5f818152600260205260409020546001600160a01b0316610d3e5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016101cd565b50565b5f818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610d82826109f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610740828260405180602001604052805f815250611396565b610ddf848484610f86565b610deb8484848461141e565b610b8f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016101cd565b5f610e67826109f1565b9050610e76815f8460016115bb565b610e7f826109f1565b5f838152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0385168085526003845282852080545f190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b5f80610f14836109f1565b9050806001600160a01b0316846001600160a01b03161480610f5a57506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b80610f7e5750836001600160a01b0316610f738461053f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f99826109f1565b6001600160a01b0316146110155760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016101cd565b6001600160a01b0382166110905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016101cd565b61109d83838360016115bb565b826001600160a01b03166110b0826109f1565b6001600160a01b03161461112c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016101cd565b5f818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316036112285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016101cd565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60606112bd466112f9565b600a546112d4906001600160a01b03166014611648565b6040516020016112e59291906120f3565b604051602081830303815290604052905090565b60605f6113058361186b565b60010190505f8167ffffffffffffffff81111561132457611324611f76565b6040519080825280601f01601f19166020018201604052801561134e576020820181803683370190505b5090508181016020015b5f19017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461135857509392505050565b6113a0838361194c565b6113ac5f84848461141e565b61068f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016101cd565b5f6001600160a01b0384163b156115b0576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061147a90339089908890889060040161219e565b6020604051808303815f875af19250505080156114b4575060408051601f3d908101601f191682019092526114b1918101906121d9565b60015b611565573d8080156114e1576040519150601f19603f3d011682016040523d82523d5f602084013e6114e6565b606091505b5080515f0361155d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016101cd565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610f7e565b506001949350505050565b6115c784848484611aee565b600a546040517f540b755c00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff841660048201526001600160a01b039091169063540b755c906024015f604051808303815f87803b15801561162c575f80fd5b505af115801561163e573d5f803e3d5ffd5b5050505050505050565b60605f611656836002612208565b61166190600261221f565b67ffffffffffffffff81111561167957611679611f76565b6040519080825280601f01601f1916602001820160405280156116a3576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f815181106116d9576116d96120b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061173b5761173b6120b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f611775846002612208565b61178090600161221f565b90505b600181111561181c577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106117c1576117c16120b1565b1a60f81b8282815181106117d7576117d76120b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535060049490941c9361181581612232565b9050611783565b508315610bf25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016101cd565b5f807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106118b3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106118df576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118fd57662386f26fc10000830492506010015b6305f5e1008310611915576305f5e100830492506008015b612710831061192957612710830492506004015b6064831061193b576064830492506002015b600a83106104aa5760010192915050565b6001600160a01b0382166119a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016101cd565b5f818152600260205260409020546001600160a01b031615611a065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016101cd565b611a135f838360016115bb565b5f818152600260205260409020546001600160a01b031615611a775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016101cd565b6001600160a01b0382165f818152600360209081526040808320805460010190558483526002909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115611b655760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016101cd565b816001600160a01b038516611bc057611bbb81600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611be3565b836001600160a01b0316856001600160a01b031614611be357611be38582611c29565b6001600160a01b038416611bff57611bfa81611cc2565b611c22565b846001600160a01b0316846001600160a01b031614611c2257611c228482611d69565b5050505050565b5f6001611c3584610a55565b611c3f9190612247565b5f83815260076020526040902054909150808214611c90576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611cd390600190612247565b5f8381526009602052604081205460088054939450909284908110611cfa57611cfa6120b1565b905f5260205f20015490508060088381548110611d1957611d196120b1565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d5057611d5061225a565b600190038181905f5260205f20015f9055905550505050565b5f611d7383610a55565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d3e575f80fd5b5f60208284031215611de8575f80fd5b8135610bf281611dab565b5f5b83811015611e0d578181015183820152602001611df5565b50505f910152565b5f8151808452611e2c816020860160208601611df3565b601f01601f19169290920160200192915050565b602081525f610bf26020830184611e15565b5f60208284031215611e62575f80fd5b5035919050565b80356001600160a01b0381168114611e7f575f80fd5b919050565b5f8060408385031215611e95575f80fd5b611e9e83611e69565b946020939093013593505050565b5f8060408385031215611ebd575f80fd5b823567ffffffffffffffff81168114611ed4575f80fd5b9150611ee260208401611e69565b90509250929050565b5f805f60608486031215611efd575f80fd5b611f0684611e69565b9250611f1460208501611e69565b9150604084013590509250925092565b5f60208284031215611f34575f80fd5b610bf282611e69565b5f8060408385031215611f4e575f80fd5b611f5783611e69565b915060208301358015158114611f6b575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611f9d575f80fd5b611fa685611e69565b9350611fb460208601611e69565b925060408501359150606085013567ffffffffffffffff80821115611fd7575f80fd5b818701915087601f830112611fea575f80fd5b813581811115611ffc57611ffc611f76565b604051601f8201601f19908116603f0116810190838211818310171561202457612024611f76565b816040528281528a602084870101111561203c575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215612070575f80fd5b611ed483611e69565b600181811c9082168061208d57607f821691505b6020821081036120ab57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f83516120d6818460208801611df3565b8351908301906120ea818360208801611df3565b01949350505050565b7f68747470733a2f2f6465762e706b3931302e64652f6574687661756c743f633d81525f835161212a816020850160208801611df3565b80830190507f26763d000000000000000000000000000000000000000000000000000000000060208201528351612168816023840160208801611df3565b7f26703d000000000000000000000000000000000000000000000000000000000060239290910191820152602601949350505050565b5f6001600160a01b038087168352808616602084015250836040830152608060608301526121cf6080830184611e15565b9695505050505050565b5f602082840312156121e9575f80fd5b8151610bf281611dab565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104aa576104aa6121f4565b808201808211156104aa576104aa6121f4565b5f81612240576122406121f4565b505f190190565b818103818111156104aa576104aa6121f4565b634e487b7160e01b5f52603160045260245ffdfea26469706673582212204d0b4d706272c2f736255da2b741affa6a64696079b75db8926718bf75425c4a64736f6c63430008150033000000000000000000000000610866c6089768da95524bcc4ce7db61eda3931c

Deployed Bytecode

0x608060405260043610610126575f3560e01c80634f6ccce7116100a157806395d89b4111610071578063b88d4fde11610057578063b88d4fde146103d0578063c87b56dd146103ef578063e985e9c51461040e575f80fd5b806395d89b411461039d578063a22cb465146103b1575f80fd5b80634f6ccce7146103235780636352211e1461034257806370a08231146103615780638d928af814610380575f80fd5b80630e242232116100f657806323b872dd116100dc57806323b872dd146102c65780632f745c59146102e557806342842e0e14610304575f80fd5b80630e2422321461028957806318160ddd146102a8575f80fd5b806301ffc9a7146101de57806306fdde0314610212578063081812fc14610233578063095ea7b31461026a575f80fd5b366101da5734156101d857600a546040515f916001600160a01b03169034908381818185875af1925050503d805f811461017b576040519150601f19603f3d011682016040523d82523d5f602084013e610180565b606091505b50509050806101d65760405162461bcd60e51b815260206004820152601760248201527f6661696c656420746f20666f727761726420657468657200000000000000000060448201526064015b60405180910390fd5b505b005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611dd8565b610455565b60405190151581526020015b60405180910390f35b34801561021d575f80fd5b506102266104b0565b6040516102099190611e40565b34801561023e575f80fd5b5061025261024d366004611e52565b61053f565b6040516001600160a01b039091168152602001610209565b348015610275575f80fd5b506101d8610284366004611e84565b610564565b348015610294575f80fd5b506101d86102a3366004611eac565b610694565b3480156102b3575f80fd5b506008545b604051908152602001610209565b3480156102d1575f80fd5b506101d86102e0366004611eeb565b610809565b3480156102f0575f80fd5b506102b86102ff366004611e84565b610890565b34801561030f575f80fd5b506101d861031e366004611eeb565b610936565b34801561032e575f80fd5b506102b861033d366004611e52565b610950565b34801561034d575f80fd5b5061025261035c366004611e52565b6109f1565b34801561036c575f80fd5b506102b861037b366004611f24565b610a55565b34801561038b575f80fd5b50600a546001600160a01b0316610252565b3480156103a8575f80fd5b50610226610aed565b3480156103bc575f80fd5b506101d86103cb366004611f3d565b610afc565b3480156103db575f80fd5b506101d86103ea366004611f8a565b610b07565b3480156103fa575f80fd5b50610226610409366004611e52565b610b95565b348015610419575f80fd5b506101fd61042836600461205f565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104aa57506104aa82610bf9565b92915050565b60605f80546104be90612079565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea90612079565b80156105355780601f1061050c57610100808354040283529160200191610535565b820191905f5260205f20905b81548152906001019060200180831161051857829003601f168201915b5050505050905090565b5f61054982610cdb565b505f908152600460205260409020546001600160a01b031690565b5f61056e826109f1565b9050806001600160a01b0316836001600160a01b0316036105f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016101cd565b336001600160a01b038216148061061357506106138133610428565b6106855760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016101cd565b61068f8383610d41565b505050565b600a546001600160a01b0316336001600160a01b0316146106f75760405162461bcd60e51b815260206004820152601260248201527f6e6f74207661756c7420636f6e7472616374000000000000000000000000000060448201526064016101cd565b6001600160a01b038116156107cf5767ffffffffffffffff82165f908152600260205260409020546001600160a01b031661074457610740818367ffffffffffffffff16610dbb565b5050565b806001600160a01b03166107768367ffffffffffffffff165f908152600260205260409020546001600160a01b031690565b6001600160a01b031614610740576107406107af8367ffffffffffffffff165f908152600260205260409020546001600160a01b031690565b828467ffffffffffffffff1660405180602001604052805f815250610dd4565b67ffffffffffffffff82165f908152600260205260409020546001600160a01b031615610740576107408267ffffffffffffffff16610e5d565b6108133382610f09565b6108855760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016101cd565b61068f838383610f86565b5f61089a83610a55565b821061090e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016101cd565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b61068f83838360405180602001604052805f815250610b07565b5f61095a60085490565b82106109ce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016101cd565b600882815481106109e1576109e16120b1565b905f5260205f2001549050919050565b5f818152600260205260408120546001600160a01b0316806104aa5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016101cd565b5f6001600160a01b038216610ad25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016101cd565b506001600160a01b03165f9081526003602052604090205490565b6060600180546104be90612079565b6107403383836111c7565b610b113383610f09565b610b835760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016101cd565b610b8f84848484610dd4565b50505050565b6060610ba082610cdb565b5f610ba96112b2565b90505f815111610bc75760405180602001604052805f815250610bf2565b80610bd1846112f9565b604051602001610be29291906120c5565b6040516020818303038152906040525b9392505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c8b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806104aa57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146104aa565b5f818152600260205260409020546001600160a01b0316610d3e5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016101cd565b50565b5f818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610d82826109f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610740828260405180602001604052805f815250611396565b610ddf848484610f86565b610deb8484848461141e565b610b8f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016101cd565b5f610e67826109f1565b9050610e76815f8460016115bb565b610e7f826109f1565b5f838152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0385168085526003845282852080545f190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b5f80610f14836109f1565b9050806001600160a01b0316846001600160a01b03161480610f5a57506001600160a01b038082165f9081526005602090815260408083209388168352929052205460ff165b80610f7e5750836001600160a01b0316610f738461053f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f99826109f1565b6001600160a01b0316146110155760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016101cd565b6001600160a01b0382166110905760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016101cd565b61109d83838360016115bb565b826001600160a01b03166110b0826109f1565b6001600160a01b03161461112c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016101cd565b5f818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316036112285760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016101cd565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60606112bd466112f9565b600a546112d4906001600160a01b03166014611648565b6040516020016112e59291906120f3565b604051602081830303815290604052905090565b60605f6113058361186b565b60010190505f8167ffffffffffffffff81111561132457611324611f76565b6040519080825280601f01601f19166020018201604052801561134e576020820181803683370190505b5090508181016020015b5f19017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461135857509392505050565b6113a0838361194c565b6113ac5f84848461141e565b61068f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016101cd565b5f6001600160a01b0384163b156115b0576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061147a90339089908890889060040161219e565b6020604051808303815f875af19250505080156114b4575060408051601f3d908101601f191682019092526114b1918101906121d9565b60015b611565573d8080156114e1576040519150601f19603f3d011682016040523d82523d5f602084013e6114e6565b606091505b5080515f0361155d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016101cd565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610f7e565b506001949350505050565b6115c784848484611aee565b600a546040517f540b755c00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff841660048201526001600160a01b039091169063540b755c906024015f604051808303815f87803b15801561162c575f80fd5b505af115801561163e573d5f803e3d5ffd5b5050505050505050565b60605f611656836002612208565b61166190600261221f565b67ffffffffffffffff81111561167957611679611f76565b6040519080825280601f01601f1916602001820160405280156116a3576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f815181106116d9576116d96120b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061173b5761173b6120b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f611775846002612208565b61178090600161221f565b90505b600181111561181c577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106117c1576117c16120b1565b1a60f81b8282815181106117d7576117d76120b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535060049490941c9361181581612232565b9050611783565b508315610bf25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016101cd565b5f807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106118b3577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106118df576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118fd57662386f26fc10000830492506010015b6305f5e1008310611915576305f5e100830492506008015b612710831061192957612710830492506004015b6064831061193b576064830492506002015b600a83106104aa5760010192915050565b6001600160a01b0382166119a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016101cd565b5f818152600260205260409020546001600160a01b031615611a065760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016101cd565b611a135f838360016115bb565b5f818152600260205260409020546001600160a01b031615611a775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016101cd565b6001600160a01b0382165f818152600360209081526040808320805460010190558483526002909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115611b655760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016101cd565b816001600160a01b038516611bc057611bbb81600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611be3565b836001600160a01b0316856001600160a01b031614611be357611be38582611c29565b6001600160a01b038416611bff57611bfa81611cc2565b611c22565b846001600160a01b0316846001600160a01b031614611c2257611c228482611d69565b5050505050565b5f6001611c3584610a55565b611c3f9190612247565b5f83815260076020526040902054909150808214611c90576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f90611cd390600190612247565b5f8381526009602052604081205460088054939450909284908110611cfa57611cfa6120b1565b905f5260205f20015490508060088381548110611d1957611d196120b1565b5f918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d5057611d5061225a565b600190038181905f5260205f20015f9055905550505050565b5f611d7383610a55565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d3e575f80fd5b5f60208284031215611de8575f80fd5b8135610bf281611dab565b5f5b83811015611e0d578181015183820152602001611df5565b50505f910152565b5f8151808452611e2c816020860160208601611df3565b601f01601f19169290920160200192915050565b602081525f610bf26020830184611e15565b5f60208284031215611e62575f80fd5b5035919050565b80356001600160a01b0381168114611e7f575f80fd5b919050565b5f8060408385031215611e95575f80fd5b611e9e83611e69565b946020939093013593505050565b5f8060408385031215611ebd575f80fd5b823567ffffffffffffffff81168114611ed4575f80fd5b9150611ee260208401611e69565b90509250929050565b5f805f60608486031215611efd575f80fd5b611f0684611e69565b9250611f1460208501611e69565b9150604084013590509250925092565b5f60208284031215611f34575f80fd5b610bf282611e69565b5f8060408385031215611f4e575f80fd5b611f5783611e69565b915060208301358015158114611f6b575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611f9d575f80fd5b611fa685611e69565b9350611fb460208601611e69565b925060408501359150606085013567ffffffffffffffff80821115611fd7575f80fd5b818701915087601f830112611fea575f80fd5b813581811115611ffc57611ffc611f76565b604051601f8201601f19908116603f0116810190838211818310171561202457612024611f76565b816040528281528a602084870101111561203c575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215612070575f80fd5b611ed483611e69565b600181811c9082168061208d57607f821691505b6020821081036120ab57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f83516120d6818460208801611df3565b8351908301906120ea818360208801611df3565b01949350505050565b7f68747470733a2f2f6465762e706b3931302e64652f6574687661756c743f633d81525f835161212a816020850160208801611df3565b80830190507f26763d000000000000000000000000000000000000000000000000000000000060208201528351612168816023840160208801611df3565b7f26703d000000000000000000000000000000000000000000000000000000000060239290910191820152602601949350505050565b5f6001600160a01b038087168352808616602084015250836040830152608060608301526121cf6080830184611e15565b9695505050505050565b5f602082840312156121e9575f80fd5b8151610bf281611dab565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104aa576104aa6121f4565b808201808211156104aa576104aa6121f4565b5f81612240576122406121f4565b505f190190565b818103818111156104aa576104aa6121f4565b634e487b7160e01b5f52603160045260245ffdfea26469706673582212204d0b4d706272c2f736255da2b741affa6a64696079b75db8926718bf75425c4a64736f6c63430008150033

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

000000000000000000000000610866c6089768da95524bcc4ce7db61eda3931c

-----Decoded View---------------
Arg [0] : fundingVault (address): 0x610866c6089768dA95524bcc4cE7dB61eDa3931c

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000610866c6089768da95524bcc4ce7db61eda3931c


Deployed Bytecode Sourcemap

901:1493:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1173:9;:13;1170:149;;1221:13;;1213:49;;1198:9;;-1:-1:-1;;;;;1221:13:13;;1248:9;;1198;1213:49;1198:9;1213:49;1248:9;1221:13;1213:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1197:65;;;1279:4;1271:40;;;;-1:-1:-1;;;1271:40:13;;426:2:16;1271:40:13;;;408:21:16;465:2;445:18;;;438:30;504:25;484:18;;;477:53;547:18;;1271:40:13;;;;;;;;;1188:131;1170:149;901:1493;;;;;1005:222:3;;;;;;;;;;-1:-1:-1;1005:222:3;;;;;:::i;:::-;;:::i;:::-;;;1173:14:16;;1166:22;1148:41;;1136:2;1121:18;1005:222:3;;;;;;;;2471:98:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;;;;;-1:-1:-1;3935:167:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2364:55:16;;;2346:74;;2334:2;2319:18;3935:167:0;2200:226:16;3468:406:0;;;;;;;;;;-1:-1:-1;3468:406:0;;;;;:::i;:::-;;:::i;1936:453:13:-;;;;;;;;;;-1:-1:-1;1936:453:13;;;;;:::i;:::-;;:::i;1630:111:3:-;;;;;;;;;;-1:-1:-1;1717:10:3;:17;1630:111;;;3400:25:16;;;3388:2;3373:18;1630:111:3;3254:177:16;4612:296:0;;;;;;;;;;-1:-1:-1;4612:296:0;;;;;:::i;:::-;;:::i;1306:253:3:-;;;;;;;;;;-1:-1:-1;1306:253:3;;;;;:::i;:::-;;:::i;4974:149:0:-;;;;;;;;;;-1:-1:-1;4974:149:0;;;;;:::i;:::-;;:::i;1813:230:3:-;;;;;;;;;;-1:-1:-1;1813:230:3;;;;;:::i;:::-;;:::i;2190:219:0:-;;;;;;;;;;-1:-1:-1;2190:219:0;;;;;:::i;:::-;;:::i;1929:204::-;;;;;;;;;;-1:-1:-1;1929:204:0;;;;;:::i;:::-;;:::i;1330:83:13:-;;;;;;;;;;-1:-1:-1;1394:13:13;;-1:-1:-1;;;;;1394:13:13;1330:83;;2633:102:0;;;;;;;;;;;;;:::i;4169:153::-;;;;;;;;;;-1:-1:-1;4169:153:0;;;;;:::i;:::-;;:::i;5189:276::-;;;;;;;;;;-1:-1:-1;5189:276:0;;;;;:::i;:::-;;:::i;2801:::-;;;;;;;;;;-1:-1:-1;2801:276:0;;;;;:::i;:::-;;:::i;4388:162::-;;;;;;;;;;-1:-1:-1;4388:162:0;;;;;:::i;:::-;-1:-1:-1;;;;;4508:25:0;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162;1005:222:3;1107:4;1130:50;;;1145:35;1130:50;;:90;;;1184:36;1208:11;1184:23;:36::i;:::-;1123:97;1005:222;-1:-1:-1;;1005:222:3:o;2471:98:0:-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:0;;3935:167::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;-1:-1:-1;;;;;3605:11:0;:2;-1:-1:-1;;;;;3605:11:0;;3597:57;;;;-1:-1:-1;;;3597:57:0;;6612:2:16;3597:57:0;;;6594:21:16;6651:2;6631:18;;;6624:30;6690:34;6670:18;;;6663:62;6761:3;6741:18;;;6734:31;6782:19;;3597:57:0;6410:397:16;3597:57:0;719:10:7;-1:-1:-1;;;;;3686:21:0;;;;:62;;-1:-1:-1;3711:37:0;3728:5;719:10:7;4388:162:0;:::i;3711:37::-;3665:170;;;;-1:-1:-1;;;3665:170:0;;7014:2:16;3665:170:0;;;6996:21:16;7053:2;7033:18;;;7026:30;7092:34;7072:18;;;7065:62;7163:31;7143:18;;;7136:59;7212:19;;3665:170:0;6812:425:16;3665:170:0;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;1936:453:13:-;2031:13;;-1:-1:-1;;;;;2031:13:13;719:10:7;-1:-1:-1;;;;;2015:29:13;;2007:60;;;;-1:-1:-1;;;2007:60:13;;7444:2:16;2007:60:13;;;7426:21:16;7483:2;7463:18;;;7456:30;7522:20;7502:18;;;7495:48;7560:18;;2007:60:13;7242:342:16;2007:60:13;-1:-1:-1;;;;;2079:24:13;;;2076:308;;2118:16;;;7185:4:0;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;2114:200:13;;2147:30;2157:10;2169:7;2147:30;;:9;:30::i;:::-;1936:453;;:::o;2114:200::-;2224:10;-1:-1:-1;;;;;2203:31:13;:17;2212:7;2203:17;;6768:7:0;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;;6702:115;2203:17:13;-1:-1:-1;;;;;2203:31:13;;2200:114;;2247:57;2261:17;2270:7;2261:17;;6768:7:0;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;;6702:115;2261:17:13;2280:10;2292:7;2247:57;;;;;;;;;;;;;;:13;:57::i;2076:308::-;2335:16;;;7185:4:0;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;7208:31;2332:52:13;;2362:14;2368:7;2362:14;;:5;:14::i;4612:296:0:-;4771:41;719:10:7;4804:7:0;4771:18;:41::i;:::-;4763:99;;;;-1:-1:-1;;;4763:99:0;;7791:2:16;4763:99:0;;;7773:21:16;7830:2;7810:18;;;7803:30;7869:34;7849:18;;;7842:62;7940:15;7920:18;;;7913:43;7973:19;;4763:99:0;7589:409:16;4763:99:0;4873:28;4883:4;4889:2;4893:7;4873:9;:28::i;1306:253:3:-;1403:7;1438:23;1455:5;1438:16;:23::i;:::-;1430:5;:31;1422:87;;;;-1:-1:-1;;;1422:87:3;;8205:2:16;1422:87:3;;;8187:21:16;8244:2;8224:18;;;8217:30;8283:34;8263:18;;;8256:62;8354:13;8334:18;;;8327:41;8385:19;;1422:87:3;8003:407:16;1422:87:3;-1:-1:-1;;;;;;1526:19:3;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1306:253::o;4974:149:0:-;5077:39;5094:4;5100:2;5104:7;5077:39;;;;;;;;;;;;:16;:39::i;1813:230:3:-;1888:7;1923:30;1717:10;:17;;1630:111;1923:30;1915:5;:38;1907:95;;;;-1:-1:-1;;;1907:95:3;;8617:2:16;1907:95:3;;;8599:21:16;8656:2;8636:18;;;8629:30;8695:34;8675:18;;;8668:62;8766:14;8746:18;;;8739:42;8798:19;;1907:95:3;8415:408:16;1907:95:3;2019:10;2030:5;2019:17;;;;;;;;:::i;:::-;;;;;;;;;2012:24;;1813:230;;;:::o;2190:219:0:-;2262:7;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;;2324:56;;;;-1:-1:-1;;;2324:56:0;;9219:2:16;2324:56:0;;;9201:21:16;9258:2;9238:18;;;9231:30;9297:26;9277:18;;;9270:54;9341:18;;2324:56:0;9017:348:16;1929:204:0;2001:7;-1:-1:-1;;;;;2028:19:0;;2020:73;;;;-1:-1:-1;;;2020:73:0;;9572:2:16;2020:73:0;;;9554:21:16;9611:2;9591:18;;;9584:30;9650:34;9630:18;;;9623:62;9721:11;9701:18;;;9694:39;9750:19;;2020:73:0;9370:405:16;2020:73:0;-1:-1:-1;;;;;;2110:16:0;;;;;:9;:16;;;;;;;1929:204::o;2633:102::-;2689:13;2721:7;2714:14;;;;;:::i;4169:153::-;4263:52;719:10:7;4296:8:0;4306;4263:18;:52::i;5189:276::-;5319:41;719:10:7;5352:7:0;5319:18;:41::i;:::-;5311:99;;;;-1:-1:-1;;;5311:99:0;;7791:2:16;5311:99:0;;;7773:21:16;7830:2;7810:18;;;7803:30;7869:34;7849:18;;;7842:62;7940:15;7920:18;;;7913:43;7973:19;;5311:99:0;7589:409:16;5311:99:0;5420:38;5434:4;5440:2;5444:7;5453:4;5420:13;:38::i;:::-;5189:276;;;;:::o;2801:::-;2874:13;2899:23;2914:7;2899:14;:23::i;:::-;2933:21;2957:10;:8;:10::i;:::-;2933:34;;3008:1;2990:7;2984:21;:25;:86;;;;;;;;;;;;;;;;;3036:7;3045:18;:7;:16;:18::i;:::-;3019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2984:86;2977:93;2801:276;-1:-1:-1;;;2801:276:0:o;1570:300::-;1672:4;1707:40;;;1722:25;1707:40;;:104;;-1:-1:-1;1763:48:0;;;1778:33;1763:48;1707:104;:156;;;-1:-1:-1;952:25:9;937:40;;;;1827:36:0;829:155:9;13240:133:0;7185:4;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;13313:53;;;;-1:-1:-1;;;13313:53:0;;9219:2:16;13313:53:0;;;9201:21:16;9258:2;9238:18;;;9231:30;9297:26;9277:18;;;9270:54;9341:18;;13313:53:0;9017:348:16;13313:53:0;13240:133;:::o;12572:171::-;12646:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;12646:29:0;-1:-1:-1;;;;;12646:29:0;;;;;;;;:24;;12699:23;12646:24;12699:14;:23::i;:::-;-1:-1:-1;;;;;12690:46:0;;;;;;;;;;;12572:171;;:::o;7995:108::-;8070:26;8080:2;8084:7;8070:26;;;;;;;;;;;;:9;:26::i;6326:267::-;6438:28;6448:4;6454:2;6458:7;6438:9;:28::i;:::-;6484:47;6507:4;6513:2;6517:7;6526:4;6484:22;:47::i;:::-;6476:110;;;;-1:-1:-1;;;6476:110:0;;10483:2:16;6476:110:0;;;10465:21:16;10522:2;10502:18;;;10495:30;10561:34;10541:18;;;10534:62;10632:20;10612:18;;;10605:48;10670:19;;6476:110:0;10281:414:16;10171:762:0;10230:13;10246:23;10261:7;10246:14;:23::i;:::-;10230:39;;10280:51;10301:5;10316:1;10320:7;10329:1;10280:20;:51::i;:::-;10441:23;10456:7;10441:14;:23::i;:::-;10509:24;;;;:15;:24;;;;;;;;10502:31;;-1:-1:-1;;10502:31:0;;;;;;-1:-1:-1;;;;;10749:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;10749:21:0;;;10797:16;;;:7;:16;;;;;;10790:23;;;;;;;10829:36;10433:31;;-1:-1:-1;10525:7:0;;10829:36;;10509:24;;10829:36;1936:453:13;;:::o;7404:261:0:-;7497:4;7513:13;7529:23;7544:7;7529:14;:23::i;:::-;7513:39;;7581:5;-1:-1:-1;;;;;7570:16:0;:7;-1:-1:-1;;;;;7570:16:0;;:52;;;-1:-1:-1;;;;;;4508:25:0;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7590:32;7570:87;;;;7650:7;-1:-1:-1;;;;;7626:31:0;:20;7638:7;7626:11;:20::i;:::-;-1:-1:-1;;;;;7626:31:0;;7570:87;7562:96;7404:261;-1:-1:-1;;;;7404:261:0:o;11257:1203::-;11381:4;-1:-1:-1;;;;;11354:31:0;:23;11369:7;11354:14;:23::i;:::-;-1:-1:-1;;;;;11354:31:0;;11346:81;;;;-1:-1:-1;;;11346:81:0;;10902:2:16;11346:81:0;;;10884:21:16;10941:2;10921:18;;;10914:30;10980:34;10960:18;;;10953:62;11051:7;11031:18;;;11024:35;11076:19;;11346:81:0;10700:401:16;11346:81:0;-1:-1:-1;;;;;11445:16:0;;11437:65;;;;-1:-1:-1;;;11437:65:0;;11308:2:16;11437:65:0;;;11290:21:16;11347:2;11327:18;;;11320:30;11386:34;11366:18;;;11359:62;11457:6;11437:18;;;11430:34;11481:19;;11437:65:0;11106:400:16;11437:65:0;11513:42;11534:4;11540:2;11544:7;11553:1;11513:20;:42::i;:::-;11682:4;-1:-1:-1;;;;;11655:31:0;:23;11670:7;11655:14;:23::i;:::-;-1:-1:-1;;;;;11655:31:0;;11647:81;;;;-1:-1:-1;;;11647:81:0;;10902:2:16;11647:81:0;;;10884:21:16;10941:2;10921:18;;;10914:30;10980:34;10960:18;;;10953:62;11051:7;11031:18;;;11024:35;11076:19;;11647:81:0;10700:401:16;11647:81:0;11797:24;;;;:15;:24;;;;;;;;11790:31;;-1:-1:-1;;11790:31:0;;;;;;-1:-1:-1;;;;;12265:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;12265:20:0;;;12299:13;;;;;;;;;:18;;11790:31;12299:18;;;12337:16;;;:7;:16;;;;;;:21;;;;;;;;;;12374:27;;11813:7;;12374:27;;;3538:336;3468:406;;:::o;12879:277::-;12999:8;-1:-1:-1;;;;;12990:17:0;:5;-1:-1:-1;;;;;12990:17:0;;12982:55;;;;-1:-1:-1;;;12982:55:0;;11713:2:16;12982:55:0;;;11695:21:16;11752:2;11732:18;;;11725:30;11791:27;11771:18;;;11764:55;11836:18;;12982:55:0;11511:349:16;12982:55:0;-1:-1:-1;;;;;13047:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;13108:41;;1148::16;;;13108::0;;1121:18:16;13108:41:0;;;;;;;12879:277;;;:::o;1419:244:13:-;1471:13;1560:31;1577:13;1560:16;:31::i;:::-;1629:13;;1601:47;;-1:-1:-1;;;;;1629:13:13;1645:2;1601:19;:47::i;:::-;1507:149;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1493:164;;1419:244;:::o;447:696:8:-;503:13;552:14;569:17;580:5;569:10;:17::i;:::-;589:1;569:21;552:38;;604:20;638:6;627:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;627:18:8;-1:-1:-1;604:41:8;-1:-1:-1;765:28:8;;;781:2;765:28;820:280;-1:-1:-1;;851:5:8;990:8;985:2;974:14;;969:30;851:5;956:44;1044:2;1035:11;;;-1:-1:-1;1064:21:8;820:280;1064:21;-1:-1:-1;1120:6:8;447:696;-1:-1:-1;;;447:696:8:o;8324:279:0:-;8418:18;8424:2;8428:7;8418:5;:18::i;:::-;8467:53;8498:1;8502:2;8506:7;8515:4;8467:22;:53::i;:::-;8446:150;;;;-1:-1:-1;;;8446:150:0;;10483:2:16;8446:150:0;;;10465:21:16;10522:2;10502:18;;;10495:30;10561:34;10541:18;;;10534:62;10632:20;10612:18;;;10605:48;10670:19;;8446:150:0;10281:414:16;13925:831:0;14074:4;-1:-1:-1;;;;;14094:13:0;;1702:19:6;:23;14090:660:0;;14129:71;;;;;-1:-1:-1;;;;;14129:36:0;;;;;:71;;719:10:7;;14180:4:0;;14186:7;;14195:4;;14129:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14129:71:0;;;;;;;;-1:-1:-1;;14129:71:0;;;;;;;;;;;;:::i;:::-;;;14125:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14367:6;:13;14384:1;14367:18;14363:321;;14409:60;;-1:-1:-1;;;14409:60:0;;10483:2:16;14409:60:0;;;10465:21:16;10522:2;10502:18;;;10495:30;10561:34;10541:18;;;10534:62;10632:20;10612:18;;;10605:48;10670:19;;14409:60:0;10281:414:16;14363:321:0;14636:6;14630:13;14621:6;14617:2;14613:15;14606:38;14125:573;14250:51;;14260:41;14250:51;;-1:-1:-1;14243:58:0;;14090:660;-1:-1:-1;14735:4:0;13925:831;;;;;;:::o;1669:261:13:-;1794:56;1821:4;1827:2;1831:7;1840:9;1794:26;:56::i;:::-;1873:13;;1859:65;;;;;13964:18:16;13952:31;;1859:65:13;;;13934:50:16;-1:-1:-1;;;;;1873:13:13;;;;1859:48;;13907:18:16;;1859:65:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1669:261;;;;:::o;1818:437:8:-;1893:13;1918:19;1950:10;1954:6;1950:1;:10;:::i;:::-;:14;;1963:1;1950:14;:::i;:::-;1940:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1940:25:8;;1918:47;;1975:15;:6;1982:1;1975:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;2000;:6;2007:1;2000:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;2030:9:8;2042:10;2046:6;2042:1;:10;:::i;:::-;:14;;2055:1;2042:14;:::i;:::-;2030:26;;2025:128;2062:1;2058;:5;2025:128;;;2096:8;2105:5;2113:3;2105:11;2096:21;;;;;;;:::i;:::-;;;;2084:6;2091:1;2084:9;;;;;;;;:::i;:::-;;;;:33;;;;;;;;;;-1:-1:-1;2141:1:8;2131:11;;;;;2065:3;;;:::i;:::-;;;2025:128;;;-1:-1:-1;2170:10:8;;2162:55;;;;-1:-1:-1;;;2162:55:8;;14890:2:16;2162:55:8;;;14872:21:16;;;14909:18;;;14902:30;14968:34;14948:18;;;14941:62;15020:18;;2162:55:8;14688:356:16;10139:916:11;10192:7;;10276:8;10267:17;;10263:103;;10313:8;10304:17;;;-1:-1:-1;10349:2:11;10339:12;10263:103;10392:8;10383:5;:17;10379:103;;10429:8;10420:17;;;-1:-1:-1;10465:2:11;10455:12;10379:103;10508:8;10499:5;:17;10495:103;;10545:8;10536:17;;;-1:-1:-1;10581:2:11;10571:12;10495:103;10624:7;10615:5;:16;10611:100;;10660:7;10651:16;;;-1:-1:-1;10695:1:11;10685:11;10611:100;10737:7;10728:5;:16;10724:100;;10773:7;10764:16;;;-1:-1:-1;10808:1:11;10798:11;10724:100;10850:7;10841:5;:16;10837:100;;10886:7;10877:16;;;-1:-1:-1;10921:1:11;10911:11;10837:100;10963:7;10954:5;:16;10950:66;;11000:1;10990:11;11042:6;10139:916;-1:-1:-1;;10139:916:11:o;8925:920:0:-;-1:-1:-1;;;;;9004:16:0;;8996:61;;;;-1:-1:-1;;;8996:61:0;;15251:2:16;8996:61:0;;;15233:21:16;;;15270:18;;;15263:30;15329:34;15309:18;;;15302:62;15381:18;;8996:61:0;15049:356:16;8996:61:0;7185:4;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;7208:31;9067:58;;;;-1:-1:-1;;;9067:58:0;;15612:2:16;9067:58:0;;;15594:21:16;15651:2;15631:18;;;15624:30;15690;15670:18;;;15663:58;15738:18;;9067:58:0;15410:352:16;9067:58:0;9136:48;9165:1;9169:2;9173:7;9182:1;9136:20;:48::i;:::-;7185:4;6794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6794:16:0;7208:31;9271:58;;;;-1:-1:-1;;;9271:58:0;;15612:2:16;9271:58:0;;;15594:21:16;15651:2;15631:18;;;15624:30;15690;15670:18;;;15663:58;15738:18;;9271:58:0;15410:352:16;9271:58:0;-1:-1:-1;;;;;9671:13:0;;;;;;:9;:13;;;;;;;;:18;;9688:1;9671:18;;;9710:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;9710:21:0;;;;;9747:33;9718:7;;9671:13;;9747:33;;9671:13;;9747:33;1936:453:13;;:::o;2112:890:3:-;2371:1;2359:9;:13;2355:219;;;2500:63;;-1:-1:-1;;;2500:63:3;;15969:2:16;2500:63:3;;;15951:21:16;16008:2;15988:18;;;15981:30;16047:34;16027:18;;;16020:62;16118:23;16098:18;;;16091:51;16159:19;;2500:63:3;15767:417:16;2355:219:3;2602:12;-1:-1:-1;;;;;2629:18:3;;2625:183;;2663:40;2695:7;3811:10;:17;;3784:24;;;;:15;:24;;;;;:44;;;3838:24;;;;;;;;;;;;3708:161;2663:40;2625:183;;;2732:2;-1:-1:-1;;;;;2724:10:3;:4;-1:-1:-1;;;;;2724:10:3;;2720:88;;2750:47;2783:4;2789:7;2750:32;:47::i;:::-;-1:-1:-1;;;;;2821:16:3;;2817:179;;2853:45;2890:7;2853:36;:45::i;:::-;2817:179;;;2925:4;-1:-1:-1;;;;;2919:10:3;:2;-1:-1:-1;;;;;2919:10:3;;2915:81;;2945:40;2973:2;2977:7;2945:27;:40::i;:::-;2273:729;2112:890;;;;:::o;4486:970::-;4748:22;4798:1;4773:22;4790:4;4773:16;:22::i;:::-;:26;;;;:::i;:::-;4809:18;4830:26;;;:17;:26;;;;;;4748:51;;-1:-1:-1;4960:28:3;;;4956:323;;-1:-1:-1;;;;;5026:18:3;;5004:19;5026:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5075:30;;;;;;:44;;;5191:30;;:17;:30;;;;;:43;;;4956:323;-1:-1:-1;5372:26:3;;;;:17;:26;;;;;;;;5365:33;;;-1:-1:-1;;;;;5415:18:3;;;;;:12;:18;;;;;:34;;;;;;;5408:41;4486:970::o;5744:1061::-;6018:10;:17;5993:22;;6018:21;;6038:1;;6018:21;:::i;:::-;6049:18;6070:24;;;:15;:24;;;;;;6438:10;:26;;5993:46;;-1:-1:-1;6070:24:3;;5993:46;;6438:26;;;;;;:::i;:::-;;;;;;;;;6416:48;;6500:11;6475:10;6486;6475:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6579:28;;;:15;:28;;;;;;;:41;;;6748:24;;;;;6741:31;6782:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5815:990;;;5744:1061;:::o;3296:217::-;3380:14;3397:20;3414:2;3397:16;:20::i;:::-;-1:-1:-1;;;;;3427:16:3;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3471:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3296:217:3:o;576:177:16:-;661:66;654:5;650:78;643:5;640:89;630:117;;743:1;740;733:12;758:245;816:6;869:2;857:9;848:7;844:23;840:32;837:52;;;885:1;882;875:12;837:52;924:9;911:23;943:30;967:5;943:30;:::i;1200:250::-;1285:1;1295:113;1309:6;1306:1;1303:13;1295:113;;;1385:11;;;1379:18;1366:11;;;1359:39;1331:2;1324:10;1295:113;;;-1:-1:-1;;1442:1:16;1424:16;;1417:27;1200:250::o;1455:330::-;1497:3;1535:5;1529:12;1562:6;1557:3;1550:19;1578:76;1647:6;1640:4;1635:3;1631:14;1624:4;1617:5;1613:16;1578:76;:::i;:::-;1699:2;1687:15;-1:-1:-1;;1683:88:16;1674:98;;;;1774:4;1670:109;;1455:330;-1:-1:-1;;1455:330:16:o;1790:220::-;1939:2;1928:9;1921:21;1902:4;1959:45;2000:2;1989:9;1985:18;1977:6;1959:45;:::i;2015:180::-;2074:6;2127:2;2115:9;2106:7;2102:23;2098:32;2095:52;;;2143:1;2140;2133:12;2095:52;-1:-1:-1;2166:23:16;;2015:180;-1:-1:-1;2015:180:16:o;2431:196::-;2499:20;;-1:-1:-1;;;;;2548:54:16;;2538:65;;2528:93;;2617:1;2614;2607:12;2528:93;2431:196;;;:::o;2632:254::-;2700:6;2708;2761:2;2749:9;2740:7;2736:23;2732:32;2729:52;;;2777:1;2774;2767:12;2729:52;2800:29;2819:9;2800:29;:::i;:::-;2790:39;2876:2;2861:18;;;;2848:32;;-1:-1:-1;;;2632:254:16:o;2891:358::-;2958:6;2966;3019:2;3007:9;2998:7;2994:23;2990:32;2987:52;;;3035:1;3032;3025:12;2987:52;3074:9;3061:23;3124:18;3117:5;3113:30;3106:5;3103:41;3093:69;;3158:1;3155;3148:12;3093:69;3181:5;-1:-1:-1;3205:38:16;3239:2;3224:18;;3205:38;:::i;:::-;3195:48;;2891:358;;;;;:::o;3436:328::-;3513:6;3521;3529;3582:2;3570:9;3561:7;3557:23;3553:32;3550:52;;;3598:1;3595;3588:12;3550:52;3621:29;3640:9;3621:29;:::i;:::-;3611:39;;3669:38;3703:2;3692:9;3688:18;3669:38;:::i;:::-;3659:48;;3754:2;3743:9;3739:18;3726:32;3716:42;;3436:328;;;;;:::o;3769:186::-;3828:6;3881:2;3869:9;3860:7;3856:23;3852:32;3849:52;;;3897:1;3894;3887:12;3849:52;3920:29;3939:9;3920:29;:::i;3960:347::-;4025:6;4033;4086:2;4074:9;4065:7;4061:23;4057:32;4054:52;;;4102:1;4099;4092:12;4054:52;4125:29;4144:9;4125:29;:::i;:::-;4115:39;;4204:2;4193:9;4189:18;4176:32;4251:5;4244:13;4237:21;4230:5;4227:32;4217:60;;4273:1;4270;4263:12;4217:60;4296:5;4286:15;;;3960:347;;;;;:::o;4312:184::-;-1:-1:-1;;;4361:1:16;4354:88;4461:4;4458:1;4451:15;4485:4;4482:1;4475:15;4501:1197;4596:6;4604;4612;4620;4673:3;4661:9;4652:7;4648:23;4644:33;4641:53;;;4690:1;4687;4680:12;4641:53;4713:29;4732:9;4713:29;:::i;:::-;4703:39;;4761:38;4795:2;4784:9;4780:18;4761:38;:::i;:::-;4751:48;;4846:2;4835:9;4831:18;4818:32;4808:42;;4901:2;4890:9;4886:18;4873:32;4924:18;4965:2;4957:6;4954:14;4951:34;;;4981:1;4978;4971:12;4951:34;5019:6;5008:9;5004:22;4994:32;;5064:7;5057:4;5053:2;5049:13;5045:27;5035:55;;5086:1;5083;5076:12;5035:55;5122:2;5109:16;5144:2;5140;5137:10;5134:36;;;5150:18;;:::i;:::-;5284:2;5278:9;5346:4;5338:13;;-1:-1:-1;;5334:22:16;;;5358:2;5330:31;5326:40;5314:53;;;5382:18;;;5402:22;;;5379:46;5376:72;;;5428:18;;:::i;:::-;5468:10;5464:2;5457:22;5503:2;5495:6;5488:18;5543:7;5538:2;5533;5529;5525:11;5521:20;5518:33;5515:53;;;5564:1;5561;5554:12;5515:53;5620:2;5615;5611;5607:11;5602:2;5594:6;5590:15;5577:46;5665:1;5660:2;5655;5647:6;5643:15;5639:24;5632:35;5686:6;5676:16;;;;;;;4501:1197;;;;;;;:::o;5703:260::-;5771:6;5779;5832:2;5820:9;5811:7;5807:23;5803:32;5800:52;;;5848:1;5845;5838:12;5800:52;5871:29;5890:9;5871:29;:::i;5968:437::-;6047:1;6043:12;;;;6090;;;6111:61;;6165:4;6157:6;6153:17;6143:27;;6111:61;6218:2;6210:6;6207:14;6187:18;6184:38;6181:218;;-1:-1:-1;;;6252:1:16;6245:88;6356:4;6353:1;6346:15;6384:4;6381:1;6374:15;6181:218;;5968:437;;;:::o;8828:184::-;-1:-1:-1;;;8877:1:16;8870:88;8977:4;8974:1;8967:15;9001:4;8998:1;8991:15;9780:496;9959:3;9997:6;9991:13;10013:66;10072:6;10067:3;10060:4;10052:6;10048:17;10013:66;:::i;:::-;10142:13;;10101:16;;;;10164:70;10142:13;10101:16;10211:4;10199:17;;10164:70;:::i;:::-;10250:20;;9780:496;-1:-1:-1;;;;9780:496:16:o;11865:960::-;12377:34;12372:3;12365:47;12347:3;12441:6;12435:13;12457:73;12523:6;12518:2;12513:3;12509:12;12504:2;12496:6;12492:15;12457:73;:::i;:::-;12558:6;12553:3;12549:16;12539:26;;12594:5;12589:2;12585;12581:11;12574:26;12631:6;12625:13;12647:74;12712:8;12707:2;12703;12699:11;12694:2;12686:6;12682:15;12647:74;:::i;:::-;12786:5;12781:2;12740:17;;;;12773:11;;;12766:26;12816:2;12808:11;;11865:960;-1:-1:-1;;;;11865:960:16:o;13019:512::-;13213:4;-1:-1:-1;;;;;13323:2:16;13315:6;13311:15;13300:9;13293:34;13375:2;13367:6;13363:15;13358:2;13347:9;13343:18;13336:43;;13415:6;13410:2;13399:9;13395:18;13388:34;13458:3;13453:2;13442:9;13438:18;13431:31;13479:46;13520:3;13509:9;13505:19;13497:6;13479:46;:::i;:::-;13471:54;13019:512;-1:-1:-1;;;;;;13019:512:16:o;13536:249::-;13605:6;13658:2;13646:9;13637:7;13633:23;13629:32;13626:52;;;13674:1;13671;13664:12;13626:52;13706:9;13700:16;13725:30;13749:5;13725:30;:::i;13995:184::-;-1:-1:-1;;;14044:1:16;14037:88;14144:4;14141:1;14134:15;14168:4;14165:1;14158:15;14184:168;14257:9;;;14288;;14305:15;;;14299:22;;14285:37;14275:71;;14326:18;;:::i;14357:125::-;14422:9;;;14443:10;;;14440:36;;;14456:18;;:::i;14487:196::-;14526:3;14554:5;14544:39;;14563:18;;:::i;:::-;-1:-1:-1;;;14599:78:16;;14487:196::o;16189:128::-;16256:9;;;16277:11;;;16274:37;;;16291:18;;:::i;16322:184::-;-1:-1:-1;;;16371:1:16;16364:88;16471:4;16468:1;16461:15;16495:4;16492:1;16485:15

Swarm Source

ipfs://4d0b4d706272c2f736255da2b741affa6a64696079b75db8926718bf75425c4a
[ 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.