ETH Price: $3,058.82 (+1.15%)
Gas: 3 Gwei

Contract

0xa8824EeE90cA9D2e9906D377D36aE02B1aDe5973
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...200717292024-06-11 23:00:1128 days ago1718146811IN
DigiDaigaku: DISP Token
0 ETH0.000390698.44480093
Set Approval For...195767642024-04-03 17:34:1197 days ago1712165651IN
DigiDaigaku: DISP Token
0 ETH0.0024788653.58079029
Set Approval For...192335552024-02-15 13:14:11145 days ago1708002851IN
DigiDaigaku: DISP Token
0 ETH0.000615625.36702377
Set Approval For...188372082023-12-21 22:25:47201 days ago1703197547IN
DigiDaigaku: DISP Token
0 ETH0.0008048233.16385825
Set Approval For...188372062023-12-21 22:25:23201 days ago1703197523IN
DigiDaigaku: DISP Token
0 ETH0.0007238429.72428307
Set Approval For...187380752023-12-08 0:49:47214 days ago1701996587IN
DigiDaigaku: DISP Token
0 ETH0.0009901840.66120103
Set Approval For...187183622023-12-05 6:29:11217 days ago1701757751IN
DigiDaigaku: DISP Token
0 ETH0.0019332741.78783055
Set Approval For...187180432023-12-05 5:24:47217 days ago1701753887IN
DigiDaigaku: DISP Token
0 ETH0.0018783740.60120025
Set Approval For...185209842023-11-07 15:30:59245 days ago1699371059IN
DigiDaigaku: DISP Token
0 ETH0.0017353637.51014611
Set Approval For...185177442023-11-07 4:37:35245 days ago1699331855IN
DigiDaigaku: DISP Token
0 ETH0.0012707927.46828943
Set Approval For...175789692023-06-28 16:20:35377 days ago1687969235IN
DigiDaigaku: DISP Token
0 ETH0.0011398824.6835097
Set Approval For...173524312023-05-27 19:20:23409 days ago1685215223IN
DigiDaigaku: DISP Token
0 ETH0.0011097524.0310319
Set Approval For...173507932023-05-27 13:49:47409 days ago1685195387IN
DigiDaigaku: DISP Token
0 ETH0.0004918720.26850967
Set Approval For...169068792023-03-25 20:33:59472 days ago1679776439IN
DigiDaigaku: DISP Token
0 ETH0.0003896816.05753445
Set Approval For...168742872023-03-21 6:38:47476 days ago1679380727IN
DigiDaigaku: DISP Token
0 ETH0.0005756912.46629175
Set Approval For...168741702023-03-21 6:15:23476 days ago1679379323IN
DigiDaigaku: DISP Token
0 ETH0.0005698812.34051367
Set Approval For...168553112023-03-18 14:44:11479 days ago1679150651IN
DigiDaigaku: DISP Token
0 ETH0.0004103116.84949473
Set Approval For...168217432023-03-13 21:28:47484 days ago1678742927IN
DigiDaigaku: DISP Token
0 ETH0.0011283224.42040337
Set Approval For...168074342023-03-11 21:14:23486 days ago1678569263IN
DigiDaigaku: DISP Token
0 ETH0.0019381841.94832725
Set Approval For...167596292023-03-05 3:47:59492 days ago1677988079IN
DigiDaigaku: DISP Token
0 ETH0.0008935619.3396214
Set Approval For...167519482023-03-04 1:53:59493 days ago1677894839IN
DigiDaigaku: DISP Token
0 ETH0.0011907825.77236234
Set Approval For...167518672023-03-04 1:37:23493 days ago1677893843IN
DigiDaigaku: DISP Token
0 ETH0.0008946319.36266925
Set Approval For...167282982023-02-28 17:59:59497 days ago1677607199IN
DigiDaigaku: DISP Token
0 ETH0.0016869536.53006448
Set Approval For...167282172023-02-28 17:43:47497 days ago1677606227IN
DigiDaigaku: DISP Token
0 ETH0.0014060830.4478996
Set Approval For...166901832023-02-23 9:23:59502 days ago1677144239IN
DigiDaigaku: DISP Token
0 ETH0.0013410129.02387619
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DigiDaigakuSpirits

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion
File 1 of 17 : DigiDaigakuSpirits.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./AdventureERC721.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

/// @title DigiDaigakuSpirits contract
/// @dev Extends ERC721 Non-Fungible Token Standard basic implementation and includes adventure/quest staking behaviors
contract DigiDaigakuSpirits is AdventureERC721, ERC2981 {
    using Strings for uint256;

    string public baseTokenURI;
    string public suffixURI = ".json";
    uint256 private nextTokenId = 1;

    uint96 public constant MAX_ROYALTY_FEE_NUMERATOR = 1000;
    uint256 public constant MAX_SUPPLY = 2022;

    /// @dev Emitted when base URI is set.
    event BaseURISet(string baseTokenURI);

    /// @dev Emitted when suffix URI is set.
    event SuffixURISet(string suffixURI);

    /// @dev Emitted when royalty is set.
    event RoyaltySet(address receiver, uint96 feeNumerator);

    constructor() ERC721("DigiDaigakuSpirits", "DISP") {}

    /// @notice Owner bulk mint to airdrop
    function airdropMint(address[] calldata to) external onlyOwner {
        uint256 batchSize = to.length;
        uint256 tokenIdToMint = nextTokenId;
        require(tokenIdToMint + batchSize - 1 <= MAX_SUPPLY, "Supply cannot exceed 2022");
        nextTokenId = nextTokenId + batchSize;

        unchecked {
            for(uint256 i = 0; i < batchSize; ++i) {
                _mint(to[i], tokenIdToMint + i);
            }
        }
    }

    /// @dev Required to return baseTokenURI for tokenURI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    /// @notice Sets base URI
    function setBaseURI(string memory baseTokenURI_) external onlyOwner {
        baseTokenURI = baseTokenURI_;

        emit BaseURISet(baseTokenURI_);
    }

    /// @notice Sets suffix URI
    function setSuffixURI(string memory suffixURI_) external onlyOwner {
        suffixURI = suffixURI_;

        emit SuffixURISet(suffixURI_);
    }

    /// @notice Sets royalty information
    function setRoyaltyInfo(address receiver, uint96 feeNumerator) external onlyOwner {
        require(feeNumerator <= MAX_ROYALTY_FEE_NUMERATOR, "Exceeds max royalty fee");
        _setDefaultRoyalty(receiver, feeNumerator);

        emit RoyaltySet(receiver, feeNumerator);
    }

    /// @notice Returns tokenURI if baseURI is set
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Nonexistent token");

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

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

File 2 of 17 : AdventureERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./IQuestStaking.sol";
import "./AdventurePermissions.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

abstract contract AdventureERC721 is ERC721, AdventurePermissions, IQuestStaking {

    uint256 private constant MAX_UINT = type(uint256).max;
    uint256 public constant MAX_CONCURRENT_QUESTS = 100;

    /// @dev Maps each token id to a variable that maps adventures to quests that are active
    mapping (uint256 => mapping (address => Quest[])) public quests;

    /// @dev ERC-165 interface support
    function supportsInterface(bytes4 interfaceId) public view virtual override (ERC721, IERC165) returns (bool) {
        return interfaceId == type(IQuestStaking).interfaceId || super.supportsInterface(interfaceId);
    }

    /// @notice Allows an authorized game contract to transfer a player's token if they have opted in
    function adventureTransferFrom(address from, address to, uint256 tokenId) external override onlyAdventure {
        require(_isApprovedForAdventure(_msgSender(), tokenId), "Caller not approved for adventure");
        _transfer(from, to, tokenId);
    }

    /// @notice Allows an authorized game contract to transfer a player's token if they have opted in
    function adventureSafeTransferFrom(address from, address to, uint256 tokenId) external override onlyAdventure {
        require(_isApprovedForAdventure(_msgSender(), tokenId), "Caller not approved for adventure");
        _safeTransfer(from, to, tokenId, "");
    }

    /// @notice Allows an authorized game contract to burn a player's token if they have opted in
    function adventureBurn(uint256 tokenId) external override onlyAdventure {
        require(_isApprovedForAdventure(_msgSender(), tokenId), "Caller not approved for adventure");
        _burn(tokenId);
    }

    /// @notice Allows an authorized game contract to stake a player's token into a quest if they have opted in
    function enterQuest(uint256 tokenId, uint256 questId) external override onlyAdventure {
        require(_isApprovedForAdventure(_msgSender(), tokenId), "Caller not approved for adventure");
        _enterQuest(tokenId, _msgSender(), questId);
    }

    /// @notice Allows an authorized game contract to unstake a player's token from a quest if they have opted in    
    function exitQuest(uint256 tokenId, uint256 questId) external override onlyAdventure {
        require(_isApprovedForAdventure(_msgSender(), tokenId), "Caller not approved for adventure");
        _exitQuest(tokenId, _msgSender(), questId);
    }

    /// @notice Admin-only ability to boot a token from all quests on an adventure.
    /// This allows booting the token from staking if abuse is detected.
    function bootFromAllQuests(uint256 tokenId, address adventure) external onlyOwner {
        _exitAllQuests(tokenId, adventure, true);
    }

    /// @notice Gives the player the ability to exit a quest without interacting directly with the approved, whitelisted adventure
    function userExitQuest(uint256 tokenId, address adventure, uint256 questId) external {
        require(ownerOf(tokenId) == _msgSender(), "Only token owner may exit quest");
        _exitQuest(tokenId, adventure, questId);
    }

    /// @notice Gives the player the ability to exit all quests on an adventure without interacting directly with the approved, whitelisted adventure
    function userExitAllQuests(uint256 tokenId, address adventure) external {
        require(ownerOf(tokenId) == _msgSender(), "Only token owner may exit quest");
        _exitAllQuests(tokenId, adventure, false);
    }
    
    /// @notice Returns the number of quests a token is actively participating in for a specified adventure
    function getQuestCount(uint256 tokenId, address adventure) public override view returns (uint256) {
        return quests[tokenId][adventure].length;
    }

    /// @notice Returns the amount of time a token has been participating in the specified quest
    function getTimeOnQuest(uint256 tokenId, address adventure, uint256 questId) public override view returns (uint256) {
        (bool participatingInQuest, uint256 startTimestamp,) = isParticipatingInQuest(tokenId, adventure, questId);
        return participatingInQuest ? (block.timestamp - startTimestamp) : 0;
    } 

    /// @notice Returns whether or not a token is currently participating in the specified quest as well as the time it was started and the quest index
    function isParticipatingInQuest(uint256 tokenId, address adventure, uint256 questId) public override view returns (bool participatingInQuest, uint256 startTimestamp, uint256 index) {
        index = MAX_UINT;

        Quest[] memory tokenQuestsForAdventure_ = quests[tokenId][adventure];

        for(uint256 i = 0; i < tokenQuestsForAdventure_.length; ++i) {
            Quest memory quest = tokenQuestsForAdventure_[i];
            if(quest.questId == uint64(questId)) {
                participatingInQuest = true;
                startTimestamp = quest.startTimestamp;
                index = i;
                break;
            }
        }

        return (participatingInQuest, startTimestamp, index);
    }

    /// @notice Returns a list of all active quests for the specified token id and adventure
    function getActiveQuests(uint256 tokenId, address adventure) public override view returns (Quest[] memory activeQuests) {
        uint256 questCount = getQuestCount(tokenId, adventure);
        activeQuests = new Quest[](questCount);

        for(uint256 i = 0; i < questCount; ++i) {
            activeQuests[i] = quests[tokenId][adventure][i];
        }

        return activeQuests;
    }

    /// @notice Enters the specified quest for a token id.
    /// Throws if the token is already participating in the specified quest.
    /// Throws if the number of active quests exceeds the max allowable for the given adventure.
    /// Emits a QuestUpdated event for off-chain processing.
    function _enterQuest(uint256 tokenId, address adventure, uint256 questId) internal {
        (bool participatingInQuest,,) = isParticipatingInQuest(tokenId, adventure, questId);
        require(!participatingInQuest, "Already on quest");
        require(getQuestCount(tokenId, adventure) < MAX_CONCURRENT_QUESTS, "Too many active quests");

        quests[tokenId][adventure].push(Quest({ startTimestamp: uint64(block.timestamp), questId: uint64(questId) }));

        emit QuestUpdated(tokenId, ownerOf(tokenId), adventure, questId, true, false);
    }

    /// @notice Exits the specified quest for a token id.
    /// Throws if the token is not currently participating on the specified quest.
    /// Emits a QuestUpdated event for off-chain processing.
    function _exitQuest(uint256 tokenId, address adventure, uint256 questId) internal {
        (bool participatingInQuest,, uint256 index) = isParticipatingInQuest(tokenId, adventure, questId);
        require(participatingInQuest, "Not on quest");

        // Copy last quest element to overwrite the quest to be removed and then pop the end of the quests array
        quests[tokenId][adventure][index] = quests[tokenId][adventure][getQuestCount(tokenId, adventure) - 1];
        quests[tokenId][adventure].pop();
        
        emit QuestUpdated(tokenId, ownerOf(tokenId), adventure, questId, false, false);
    }

    /// @notice Removes the specified token id from all quests on the specified adventure
    function _exitAllQuests(uint256 tokenId, address adventure, bool booted) internal {
        address tokenOwner = ownerOf(tokenId);
        uint256 questCount = getQuestCount(tokenId, adventure);

        for(uint256 i = 0; i < questCount; ++i) {
            emit QuestUpdated(tokenId, tokenOwner, adventure, quests[tokenId][adventure][i].questId, false, booted);
        }
        delete quests[tokenId][adventure];
    }

    /// @dev By default, tokens that are participating in quests are transferrable.  However, if a token is participating
    /// in a quest on an adventure that was designated as a token locker, the transfer will revert and keep the token
    /// locked.
    function _beforeTokenTransfer(address /*from*/, address /*to*/, uint256 tokenId) internal virtual override {

        address[] memory whitelistedAdventureList_ = whitelistedAdventureList;

        for(uint256 i = 0; i < whitelistedAdventureList_.length; ++i) {
            address adventure = whitelistedAdventureList_[i];
            if(getQuestCount(tokenId, adventure) > 0) {
                require(!whitelistedAdventures[adventure].questsLockTokens, "An active quest is preventing transfers");
            }
        }
    }
}

File 3 of 17 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 4 of 17 : IQuestStaking.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./Quest.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IQuestStaking is IERC165 {

    /**
     * @dev Emitted when a token enters or exists a quest
     */    
    event QuestUpdated(uint256 indexed tokenId, address indexed tokenOwner, address indexed adventure, uint256 questId, bool active, bool booted);

    /**
     * @notice Allows an authorized game contract to transfer a player's token if they have opted in
     */
    function adventureTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @notice Allows an authorized game contract to safe transfer a player's token if they have opted in
     */
    function adventureSafeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @notice Allows an authorized game contract to burn a player's token if they have opted in
     */
    function adventureBurn(uint256 tokenId) external;

    /**
     * @notice Allows an authorized game contract to stake a player's token into a quest if they have opted in
     */
    function enterQuest(uint256 tokenId, uint256 questId) external;

    /**
     * @notice Allows an authorized game contract to unstake a player's token from a quest if they have opted in
     */
    function exitQuest(uint256 tokenId, uint256 questId) external;

    /**
     * @notice Returns the number of quests a token is actively participating in for a specified adventure
     */
    function getQuestCount(uint256 tokenId, address adventure) external view returns (uint256);

    /**
     * @notice Returns the amount of time a token has been participating in the specified quest
     */
    function getTimeOnQuest(uint256 tokenId, address adventure, uint256 questId) external view returns (uint256);

    /**
     * @notice Returns whether or not a token is currently participating in the specified quest as well as the time it was started and the quest index
     */
    function isParticipatingInQuest(uint256 tokenId, address adventure, uint256 questId) external view returns (bool participatingInQuest, uint256 startTimestamp, uint256 index);

    /**
     * @notice Returns a list of all active quests for the specified token id and adventure
     */
    function getActiveQuests(uint256 tokenId, address adventure) external view returns (Quest[] memory activeQuests);
}

File 5 of 17 : AdventurePermissions.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

abstract contract AdventurePermissions is Ownable {

    struct AdventureDetails {        
        bool isWhitelisted;
        bool questsLockTokens;
        uint128 arrayIndex;        
    }

    /// @dev Emitted when the adventure whitelist is updated
    event AdventureWhitelistUpdated(address indexed adventure, bool whitelisted);    

    /// @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets, for special in-game adventures.
    event AdventureApprovalForAll(address indexed tokenOwner, address indexed operator, bool approved);
    
    /// @dev Whitelist array for iteration
    address[] public whitelistedAdventureList;

    /// @dev Whitelist mapping
    mapping (address => AdventureDetails) public whitelistedAdventures;    

    /// @dev Mapping from owner to operator approvals for special gameplay behavior
    mapping (address => mapping (address => bool)) private _operatorAdventureApprovals;    

    modifier onlyAdventure() {
        require(isAdventureWhitelisted(_msgSender()), "Not an adventure.");
        _;
    }    

    /// @notice Returns whether the specified account is a whitelisted adventure
    function isAdventureWhitelisted(address account) public view returns (bool) {
        return whitelistedAdventures[account].isWhitelisted;
    }

    /// @notice Whitelists an adventure and specifies whether or not the quests in that adventure lock token transfers
    function whitelistAdventure(address adventure, bool questsLockTokens) external onlyOwner {
        require(!whitelistedAdventures[adventure].isWhitelisted, "Already whitelisted");        
        whitelistedAdventures[adventure].isWhitelisted = true;
        whitelistedAdventures[adventure].questsLockTokens = questsLockTokens;
        whitelistedAdventures[adventure].arrayIndex = uint128(whitelistedAdventureList.length);
        whitelistedAdventureList.push(adventure);

        emit AdventureWhitelistUpdated(adventure, true);
    }

    /// @notice Removes an adventure from the whitelist
    function unwhitelistAdventure(address adventure) external onlyOwner {
        require(whitelistedAdventures[adventure].isWhitelisted, "Not whitelisted");
        
        uint128 itemPositionToDelete = whitelistedAdventures[adventure].arrayIndex;
        whitelistedAdventureList[itemPositionToDelete] = whitelistedAdventureList[whitelistedAdventureList.length - 1];
        whitelistedAdventures[whitelistedAdventureList[itemPositionToDelete]].arrayIndex = itemPositionToDelete;

        whitelistedAdventureList.pop();
        delete whitelistedAdventures[adventure];

        emit AdventureWhitelistUpdated(adventure, false);
    }    

    /// @notice Similar to {IERC721-setApprovalForAll}, but for special in-game adventures only
    function setAdventuresApprovedForAll(address operator, bool approved) public {
        _setAdventuresApprovedForAll(_msgSender(), operator, approved);
    }

    /// @notice Similar to {IERC721-isApprovedForAll}, but for special in-game adventures only
    function areAdventuresApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorAdventureApprovals[owner][operator];
    }    

    /// @dev Approve `operator` to operate on all of `owner` tokens for special in-game adventures only
    function _setAdventuresApprovedForAll(address tokenOwner, address operator, bool approved) internal {
        require(tokenOwner != operator, "approve to caller");
        _operatorAdventureApprovals[tokenOwner][operator] = approved;
        emit AdventureApprovalForAll(tokenOwner, operator, approved);
    }

    /// Modify to remove individual approval check
    /// @dev Returns whether `spender` is allowed to manage `tokenId`, for special in-game adventures only.
    function _isApprovedForAdventure(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address tokenOwner = IERC721(address(this)).ownerOf(tokenId);
        return (areAdventuresApprovedForAll(tokenOwner, spender));
    }
}

File 6 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 = _owners[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 nor 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 nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        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);

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @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.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 17 : Quest.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

struct Quest {
    uint64 questId;
    uint64 startTimestamp;
}

File 8 of 17 : 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 9 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 10 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

    /**
     * @dev 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 11 of 17 : 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 12 of 17 : 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 13 of 17 : 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 14 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
     * ====
     *
     * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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

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

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

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

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

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

File 15 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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

File 16 of 17 : 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 17 of 17 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"AdventureApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"adventure","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"AdventureWhitelistUpdated","type":"event"},{"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":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"BaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"adventure","type":"address"},{"indexed":false,"internalType":"uint256","name":"questId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"active","type":"bool"},{"indexed":false,"internalType":"bool","name":"booted","type":"bool"}],"name":"QuestUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"RoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"suffixURI","type":"string"}],"name":"SuffixURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_CONCURRENT_QUESTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ROYALTY_FEE_NUMERATOR","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adventureBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adventureSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"adventureTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"areAdventuresApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"bootFromAllQuests","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"enterQuest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"exitQuest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"getActiveQuests","outputs":[{"components":[{"internalType":"uint64","name":"questId","type":"uint64"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct Quest[]","name":"activeQuests","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"getQuestCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"getTimeOnQuest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdventureWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"isParticipatingInQuest","outputs":[{"internalType":"bool","name":"participatingInQuest","type":"bool"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"quests","outputs":[{"internalType":"uint64","name":"questId","type":"uint64"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setAdventuresApprovedForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"suffixURI_","type":"string"}],"name":"setSuffixURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"suffixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adventure","type":"address"}],"name":"unwhitelistAdventure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"}],"name":"userExitAllQuests","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"adventure","type":"address"},{"internalType":"uint256","name":"questId","type":"uint256"}],"name":"userExitQuest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adventure","type":"address"},{"internalType":"bool","name":"questsLockTokens","type":"bool"}],"name":"whitelistAdventure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAdventureList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAdventures","outputs":[{"internalType":"bool","name":"isWhitelisted","type":"bool"},{"internalType":"bool","name":"questsLockTokens","type":"bool"},{"internalType":"uint128","name":"arrayIndex","type":"uint128"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600e919062000121565b506001600f553480156200003b57600080fd5b5060408051808201825260128152714469676944616967616b755370697269747360701b6020808301918252835180850190945260048452630444953560e41b908401528151919291620000929160009162000121565b508051620000a890600190602084019062000121565b505050620000c5620000bf620000cb60201b60201c565b620000cf565b62000204565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012f90620001c7565b90600052602060002090601f0160209004810192826200015357600085556200019e565b82601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b5b80821115620001ac5760008155600101620001b1565b600181811c90821680620001dc57607f821691505b60208210811415620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b61380280620002146000396000f3fe608060405234801561001057600080fd5b506004361061030a5760003560e01c8063703fa9291161019c578063aa6cab5a116100ee578063d547cfb711610097578063e985e9c511610071578063e985e9c514610781578063f1e923c5146107bd578063f2fde38b146107d057600080fd5b8063d547cfb714610753578063e2989f4c1461075b578063e370ab461461076e57600080fd5b8063b88d4fde116100c8578063b88d4fde1461071a578063c05e2f441461072d578063c87b56dd1461074057600080fd5b8063aa6cab5a14610689578063aca139f7146106ff578063b3bcea481461071257600080fd5b80638be18e571161015057806395d89b411161012a57806395d89b411461065b5780639bc17ea414610663578063a22cb4651461067657600080fd5b80638be18e57146106015780638da5cb5b14610614578063916237181461062557600080fd5b8063715018a611610181578063715018a6146105aa5780637f1a5ce1146105b2578063816a1501146105ee57600080fd5b8063703fa9291461056757806370a082311461059757600080fd5b80632ebb386a116102605780634e02c078116102095780635d3e3bad116101e35780635d3e3bad1461052657806360bbcbdc1461052e5780636352211e1461055457600080fd5b80634e02c078146104ed57806353401df91461050057806355f804b31461051357600080fd5b806332cb6b0c1161023a57806332cb6b0c146104b057806342842e0e146104c757806346d36211146104da57600080fd5b80632ebb386a1461045e578063301be74014610471578063301f2c851461049d57600080fd5b8063095ea7b3116102c2578063136d41de1161029c578063136d41de146103e557806323b872dd146104195780632a55205a1461042c57600080fd5b8063095ea7b31461039f5780630f3d911c146103b257806311ad4081146103d257600080fd5b806306fdde03116102f357806306fdde031461034c578063070cba1714610361578063081812fc1461037457600080fd5b806301ffc9a71461030f57806302fa7c4714610337575b600080fd5b61032261031d3660046130f8565b6107e3565b60405190151581526020015b60405180910390f35b61034a61034536600461312a565b6107f4565b005b6103546108be565b60405161032e91906131cc565b61034a61036f3660046131df565b610950565b6103876103823660046131fc565b610bae565b6040516001600160a01b03909116815260200161032e565b61034a6103ad366004613215565b610bd5565b6103c56103c0366004613241565b610d07565b60405161032e9190613266565b61034a6103e03660046132c3565b610e40565b6103f86103f33660046132e5565b610ef9565b6040805167ffffffffffffffff93841681529290911660208301520161032e565b61034a61042736600461331d565b610f50565b61043f61043a3660046132c3565b610fd7565b604080516001600160a01b03909316835260208301919091520161032e565b61034a61046c366004613241565b611092565b61032261047f3660046131df565b6001600160a01b031660009081526008602052604090205460ff1690565b61034a6104ab36600461334d565b6110fe565b6104b96107e681565b60405190815260200161032e565b61034a6104d536600461331d565b611249565b61034a6104e8366004613380565b611264565b61034a6104fb3660046132e5565b611335565b61034a61050e3660046132c3565b6113a0565b61034a610521366004613481565b611453565b6104b9606481565b6105376103e881565b6040516bffffffffffffffffffffffff909116815260200161032e565b6103876105623660046131fc565b6114a9565b61057a6105753660046132e5565b61150e565b60408051931515845260208401929092529082015260600161032e565b6104b96105a53660046131df565b611629565b61034a6116c3565b6103226105c03660046134ca565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6104b96105fc3660046132e5565b6116d7565b61034a61060f366004613481565b61170c565b6006546001600160a01b0316610387565b6104b9610633366004613241565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205490565b610354611757565b61034a6106713660046131fc565b611766565b61034a61068436600461334d565b61181c565b6106d06106973660046131df565b60086020526000908152604090205460ff808216916101008104909116906201000090046fffffffffffffffffffffffffffffffff1683565b60408051931515845291151560208401526fffffffffffffffffffffffffffffffff169082015260600161032e565b61034a61070d36600461331d565b611827565b6103546118ea565b61034a6107283660046134f8565b611978565b61034a61073b36600461334d565b611a06565b61035461074e3660046131fc565b611a11565b610354611ad7565b6103876107693660046131fc565b611ae4565b61034a61077c36600461331d565b611b0e565b61032261078f3660046134ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61034a6107cb366004613241565b611bb6565b61034a6107de3660046131df565b611bca565b60006107ee82611c57565b92915050565b6107fc611c95565b6103e86bffffffffffffffffffffffff821611156108615760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d617820726f79616c74792066656500000000000000000060448201526064015b60405180910390fd5b61086b8282611cef565b604080516001600160a01b03841681526bffffffffffffffffffffffff831660208201527f23813f5ad446622633cb58c75ceef768a2111751b0f30477a63e06fcaedcff60910160405180910390a15050565b6060600080546108cd90613578565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990613578565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b610958611c95565b6001600160a01b03811660009081526008602052604090205460ff166109c05760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610858565b6001600160a01b03811660009081526008602052604090205460078054620100009092046fffffffffffffffffffffffffffffffff1691610a03906001906135c9565b81548110610a1357610a136135e0565b600091825260209091200154600780546001600160a01b03909216916fffffffffffffffffffffffffffffffff8416908110610a5157610a516135e0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600860006007846fffffffffffffffffffffffffffffffff1681548110610aa957610aa96135e0565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546fffffffffffffffffffffffffffffffff92909216620100000271ffffffffffffffffffffffffffffffff0000199092169190911790556007805480610b1757610b176135f6565b60008281526020808220600019908401810180546001600160a01b03191690559092019092556001600160a01b03841680835260088252604080842080547fffffffffffffffffffffffffffff00000000000000000000000000000000000016905551928352917fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e91015b60405180910390a25050565b6000610bb982611e09565b506000908152600460205260409020546001600160a01b031690565b6000610be0826114a9565b9050806001600160a01b0316836001600160a01b03161415610c6a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610858565b336001600160a01b0382161480610c865750610c86813361078f565b610cf85760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610858565b610d028383611e6d565b505050565b6000828152600a602090815260408083206001600160a01b03851684529091529020546060908067ffffffffffffffff811115610d4657610d466133f5565b604051908082528060200260200182016040528015610d8b57816020015b6040805180820190915260008082526020820152815260200190600190039081610d645790505b50915060005b81811015610e38576000858152600a602090815260408083206001600160a01b03881684529091529020805482908110610dcd57610dcd6135e0565b60009182526020918290206040805180820190915291015467ffffffffffffffff80821683526801000000000000000090910416918101919091528351849083908110610e1c57610e1c6135e0565b602002602001018190525080610e319061360c565b9050610d91565b505092915050565b610e493361047f565b610e895760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b610e94335b83611edb565b610eea5760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b610ef5823383611f9d565b5050565b600a6020528260005260406000206020528160005260406000208181548110610f2157600080fd5b60009182526020909120015467ffffffffffffffff808216945068010000000000000000909104169150839050565b610f5a33826121a5565b610fcc5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610858565b610d02838383612223565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291611056575060408051808201909152600b546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b60208101516000906127109061107a906bffffffffffffffffffffffff1687613627565b611084919061365c565b915196919550909350505050565b3361109c836114a9565b6001600160a01b0316146110f25760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920746f6b656e206f776e6572206d61792065786974207175657374006044820152606401610858565b610ef5828260006123fb565b611106611c95565b6001600160a01b03821660009081526008602052604090205460ff161561116f5760405162461bcd60e51b815260206004820152601360248201527f416c72656164792077686974656c6973746564000000000000000000000000006044820152606401610858565b6001600160a01b03821660008181526008602052604080822080548515156101000261ffff19909116176001908117808355600780546fffffffffffffffffffffffffffffffff16620100000271ffffffffffffffffffffffffffffffff0000199092169190911790925581548082018355919093527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191684179055517fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e91610ba291901515815260200190565b610d0283838360405180602001604052806000815250611978565b61126c611c95565b600f5481906107e660016112808484613670565b61128a91906135c9565b11156112d85760405162461bcd60e51b815260206004820152601960248201527f537570706c792063616e6e6f74206578636565642032303232000000000000006044820152606401610858565b81600f546112e69190613670565b600f5560005b8281101561132e57611326858583818110611309576113096135e0565b905060200201602081019061131e91906131df565b82840161250a565b6001016112ec565b5050505050565b3361133f846114a9565b6001600160a01b0316146113955760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920746f6b656e206f776e6572206d61792065786974207175657374006044820152606401610858565b610d02838383611f9d565b6113a93361047f565b6113e95760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b6113f233610e8e565b6114485760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b610ef5823383612658565b61145b611c95565b805161146e90600d906020840190613003565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f68160405161149e91906131cc565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806107ee5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610858565b6000838152600a602090815260408083206001600160a01b038616845282528083208054825181850281018501909352808352849360001993859390929091849084015b828210156115a1576000848152602090819020604080518082019091529084015467ffffffffffffffff8082168352680100000000000000009091041681830152825260019092019101611552565b50505050905060005b815181101561161e5760008282815181106115c7576115c76135e0565b602002602001015190508667ffffffffffffffff16816000015167ffffffffffffffff16141561160d57602001516001955067ffffffffffffffff16935091508161161e565b506116178161360c565b90506115aa565b505093509350939050565b60006001600160a01b0382166116a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610858565b506001600160a01b031660009081526003602052604090205490565b6116cb611c95565b6116d56000612813565b565b60008060006116e786868661150e565b5091509150816116f8576000611702565b61170281426135c9565b9695505050505050565b611714611c95565b805161172790600e906020840190613003565b507f65ccd57f8a46e7a6cfc4d214d84094e8ba5561ab50fd328f26e4c44052ffeba08160405161149e91906131cc565b6060600180546108cd90613578565b61176f3361047f565b6117af5760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b6117ba335b82611edb565b6118105760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b61181981612865565b50565b610ef533838361290c565b6118303361047f565b6118705760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b611879336117b4565b6118cf5760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b610d02838383604051806020016040528060008152506129dc565b600e80546118f790613578565b80601f016020809104026020016040519081016040528092919081815260200182805461192390613578565b80156119705780601f1061194557610100808354040283529160200191611970565b820191906000526020600020905b81548152906001019060200180831161195357829003601f168201915b505050505081565b61198233836121a5565b6119f45760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610858565b611a00848484846129dc565b50505050565b610ef5338383612a65565b6000818152600260205260409020546060906001600160a01b0316611a785760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610858565b6000611a82612b2c565b90506000815111611aa25760405180602001604052806000815250611ad0565b80611aac84612b3b565b600e604051602001611ac093929190613688565b6040516020818303038152906040525b9392505050565b600d80546118f790613578565b60078181548110611af457600080fd5b6000918252602090912001546001600160a01b0316905081565b611b173361047f565b611b575760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b611b60336117b4565b610fcc5760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b611bbe611c95565b610ef5828260016123fb565b611bd2611c95565b6001600160a01b038116611c4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610858565b61181981612813565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806107ee57506107ee82612c6d565b6006546001600160a01b031633146116d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610858565b6127106bffffffffffffffffffffffff82161115611d755760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610858565b6001600160a01b038216611dcb5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610858565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600b55565b6000818152600260205260409020546001600160a01b03166118195760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610858565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ea2826114a9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810182905260009081903090636352211e9060240160206040518083038186803b158015611f3057600080fd5b505afa158015611f44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f68919061374c565b6001600160a01b0380821660009081526009602090815260408083209389168352929052205490915060ff165b949350505050565b600080611fab85858561150e565b925050915081611ffd5760405162461bcd60e51b815260206004820152600c60248201527f4e6f74206f6e20717565737400000000000000000000000000000000000000006044820152606401610858565b6000858152600a602090815260408083206001600160a01b03881684529091529020805461202d906001906135c9565b8154811061203d5761203d6135e0565b60009182526020808320888452600a825260408085206001600160a01b038a1686529092529220805492909101918390811061207b5761207b6135e0565b6000918252602080832084549201805467ffffffffffffffff93841667ffffffffffffffff1982168117835595546fffffffffffffffffffffffffffffffff19909116909517680100000000000000009586900490931690940291909117909255868152600a825260408082206001600160a01b038816835290925220805480612107576121076135f6565b600082815260209020810160001990810180546fffffffffffffffffffffffffffffffff191690550190556001600160a01b038416612145866114a9565b6001600160a01b0316867f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee866000806040516121969392919092835290151560208301521515604082015260600190565b60405180910390a45050505050565b6000806121b1836114a9565b9050806001600160a01b0316846001600160a01b031614806121f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f955750836001600160a01b031661221184610bae565b6001600160a01b031614949350505050565b826001600160a01b0316612236826114a9565b6001600160a01b0316146122b25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610858565b6001600160a01b03821661232d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610858565b612338838383612cab565b612343600082611e6d565b6001600160a01b038316600090815260036020526040812080546001929061236c9084906135c9565b90915550506001600160a01b038216600090815260036020526040812080546001929061239a908490613670565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612406846114a9565b6000858152600a602090815260408083206001600160a01b03881684529091528120549192505b818110156124de576000868152600a602090815260408083206001600160a01b03808a1680865291909352922080549186169189917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee9186908110612494576124946135e0565b6000918252602080832091909101546040805167ffffffffffffffff9092168252918101929092528915159082015260600160405180910390a46124d78161360c565b905061242d565b506000858152600a602090815260408083206001600160a01b0388168452909152812061132e91613087565b6001600160a01b0382166125605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610858565b6000818152600260205260409020546001600160a01b0316156125c55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610858565b6125d160008383612cab565b6001600160a01b03821660009081526003602052604081208054600192906125fa908490613670565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061266584848461150e565b5050905080156126b75760405162461bcd60e51b815260206004820152601060248201527f416c7265616479206f6e207175657374000000000000000000000000000000006044820152606401610858565b6000848152600a602090815260408083206001600160a01b03871684529091529020546064116127295760405162461bcd60e51b815260206004820152601660248201527f546f6f206d616e792061637469766520717565737473000000000000000000006044820152606401610858565b6000848152600a602090815260408083206001600160a01b038716808552908352818420825180840190935267ffffffffffffffff80881684524281168486019081528254600181018455928752949095209251920180549351851668010000000000000000026fffffffffffffffffffffffffffffffff199094169290941691909117919091179091556127bd856114a9565b604080518581526001602082015260008183015290516001600160a01b03929092169187917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee919081900360600190a450505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612870826114a9565b905061287e81600084612cab565b612889600083611e6d565b6001600160a01b03811660009081526003602052604081208054600192906128b29084906135c9565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b0316141561296e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610858565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191015b60405180910390a3505050565b6129e7848484612223565b6129f384848484612e05565b611a005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610858565b816001600160a01b0316836001600160a01b03161415612ac75760405162461bcd60e51b815260206004820152601160248201527f617070726f766520746f2063616c6c65720000000000000000000000000000006044820152606401610858565b6001600160a01b03838116600081815260096020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f83347dcc77580bb841ae3bac834b5b8ac5ccd2326276d265e638987eb6b2c05691016129cf565b6060600d80546108cd90613578565b606081612b7b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ba55780612b8f8161360c565b9150612b9e9050600a8361365c565b9150612b7f565b60008167ffffffffffffffff811115612bc057612bc06133f5565b6040519080825280601f01601f191660200182016040528015612bea576020820181803683370190505b5090505b8415611f9557612bff6001836135c9565b9150612c0c600a86613769565b612c17906030613670565b60f81b818381518110612c2c57612c2c6135e0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c66600a8661365c565b9450612bee565b60006001600160e01b031982167ff9f7ab410000000000000000000000000000000000000000000000000000000014806107ee57506107ee82612f68565b60006007805480602002602001604051908101604052809291908181526020018280548015612d0357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612ce5575b5050505050905060005b815181101561132e576000828281518110612d2a57612d2a6135e0565b6020908102919091018101516000868152600a835260408082206001600160a01b0384168352909352918220549092501115612df4576001600160a01b038116600090815260086020526040902054610100900460ff1615612df45760405162461bcd60e51b815260206004820152602760248201527f416e206163746976652071756573742069732070726576656e74696e6720747260448201527f616e7366657273000000000000000000000000000000000000000000000000006064820152608401610858565b50612dfe8161360c565b9050612d0d565b60006001600160a01b0384163b15612f5d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e4990339089908890889060040161377d565b602060405180830381600087803b158015612e6357600080fd5b505af1925050508015612e93575060408051601f3d908101601f19168201909252612e90918101906137af565b60015b612f43573d808015612ec1576040519150601f19603f3d011682016040523d82523d6000602084013e612ec6565b606091505b508051612f3b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610858565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f95565b506001949350505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612fcb57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107ee57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107ee565b82805461300f90613578565b90600052602060002090601f0160209004810192826130315760008555613077565b82601f1061304a57805160ff1916838001178555613077565b82800160010185558215613077579182015b8281111561307757825182559160200191906001019061305c565b506130839291506130a5565b5090565b508054600082559060005260206000209081019061181991906130ba565b5b8082111561308357600081556001016130a6565b5b808211156130835780546fffffffffffffffffffffffffffffffff191681556001016130bb565b6001600160e01b03198116811461181957600080fd5b60006020828403121561310a57600080fd5b8135611ad0816130e2565b6001600160a01b038116811461181957600080fd5b6000806040838503121561313d57600080fd5b823561314881613115565b915060208301356bffffffffffffffffffffffff8116811461316957600080fd5b809150509250929050565b60005b8381101561318f578181015183820152602001613177565b83811115611a005750506000910152565b600081518084526131b8816020860160208601613174565b601f01601f19169290920160200192915050565b602081526000611ad060208301846131a0565b6000602082840312156131f157600080fd5b8135611ad081613115565b60006020828403121561320e57600080fd5b5035919050565b6000806040838503121561322857600080fd5b823561323381613115565b946020939093013593505050565b6000806040838503121561325457600080fd5b82359150602083013561316981613115565b602080825282518282018190526000919060409081850190868401855b828110156132b6578151805167ffffffffffffffff90811686529087015116868501529284019290850190600101613283565b5091979650505050505050565b600080604083850312156132d657600080fd5b50508035926020909101359150565b6000806000606084860312156132fa57600080fd5b83359250602084013561330c81613115565b929592945050506040919091013590565b60008060006060848603121561333257600080fd5b833561333d81613115565b9250602084013561330c81613115565b6000806040838503121561336057600080fd5b823561336b81613115565b91506020830135801515811461316957600080fd5b6000806020838503121561339357600080fd5b823567ffffffffffffffff808211156133ab57600080fd5b818501915085601f8301126133bf57600080fd5b8135818111156133ce57600080fd5b8660208260051b85010111156133e357600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115613426576134266133f5565b604051601f8501601f19908116603f0116810190828211818310171561344e5761344e6133f5565b8160405280935085815286868601111561346757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561349357600080fd5b813567ffffffffffffffff8111156134aa57600080fd5b8201601f810184136134bb57600080fd5b611f958482356020840161340b565b600080604083850312156134dd57600080fd5b82356134e881613115565b9150602083013561316981613115565b6000806000806080858703121561350e57600080fd5b843561351981613115565b9350602085013561352981613115565b925060408501359150606085013567ffffffffffffffff81111561354c57600080fd5b8501601f8101871361355d57600080fd5b61356c8782356020840161340b565b91505092959194509250565b600181811c9082168061358c57607f821691505b602082108114156135ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156135db576135db6135b3565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000600019821415613620576136206135b3565b5060010190565b6000816000190483118215151615613641576136416135b3565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261366b5761366b613646565b500490565b60008219821115613683576136836135b3565b500190565b60008451602061369b8285838a01613174565b8551918401916136ae8184848a01613174565b8554920191600090600181811c90808316806136cb57607f831692505b8583108114156136e957634e487b7160e01b85526022600452602485fd5b8080156136fd576001811461370e5761373b565b60ff1985168852838801955061373b565b60008b81526020902060005b858110156137335781548a82015290840190880161371a565b505083880195505b50939b9a5050505050505050505050565b60006020828403121561375e57600080fd5b8151611ad081613115565b60008261377857613778613646565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261170260808301846131a0565b6000602082840312156137c157600080fd5b8151611ad0816130e256fea264697066735822122018c8bb05cfe587cd4fbd7bbee4fb5f9137741883cc384455858c031d319301fb64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030a5760003560e01c8063703fa9291161019c578063aa6cab5a116100ee578063d547cfb711610097578063e985e9c511610071578063e985e9c514610781578063f1e923c5146107bd578063f2fde38b146107d057600080fd5b8063d547cfb714610753578063e2989f4c1461075b578063e370ab461461076e57600080fd5b8063b88d4fde116100c8578063b88d4fde1461071a578063c05e2f441461072d578063c87b56dd1461074057600080fd5b8063aa6cab5a14610689578063aca139f7146106ff578063b3bcea481461071257600080fd5b80638be18e571161015057806395d89b411161012a57806395d89b411461065b5780639bc17ea414610663578063a22cb4651461067657600080fd5b80638be18e57146106015780638da5cb5b14610614578063916237181461062557600080fd5b8063715018a611610181578063715018a6146105aa5780637f1a5ce1146105b2578063816a1501146105ee57600080fd5b8063703fa9291461056757806370a082311461059757600080fd5b80632ebb386a116102605780634e02c078116102095780635d3e3bad116101e35780635d3e3bad1461052657806360bbcbdc1461052e5780636352211e1461055457600080fd5b80634e02c078146104ed57806353401df91461050057806355f804b31461051357600080fd5b806332cb6b0c1161023a57806332cb6b0c146104b057806342842e0e146104c757806346d36211146104da57600080fd5b80632ebb386a1461045e578063301be74014610471578063301f2c851461049d57600080fd5b8063095ea7b3116102c2578063136d41de1161029c578063136d41de146103e557806323b872dd146104195780632a55205a1461042c57600080fd5b8063095ea7b31461039f5780630f3d911c146103b257806311ad4081146103d257600080fd5b806306fdde03116102f357806306fdde031461034c578063070cba1714610361578063081812fc1461037457600080fd5b806301ffc9a71461030f57806302fa7c4714610337575b600080fd5b61032261031d3660046130f8565b6107e3565b60405190151581526020015b60405180910390f35b61034a61034536600461312a565b6107f4565b005b6103546108be565b60405161032e91906131cc565b61034a61036f3660046131df565b610950565b6103876103823660046131fc565b610bae565b6040516001600160a01b03909116815260200161032e565b61034a6103ad366004613215565b610bd5565b6103c56103c0366004613241565b610d07565b60405161032e9190613266565b61034a6103e03660046132c3565b610e40565b6103f86103f33660046132e5565b610ef9565b6040805167ffffffffffffffff93841681529290911660208301520161032e565b61034a61042736600461331d565b610f50565b61043f61043a3660046132c3565b610fd7565b604080516001600160a01b03909316835260208301919091520161032e565b61034a61046c366004613241565b611092565b61032261047f3660046131df565b6001600160a01b031660009081526008602052604090205460ff1690565b61034a6104ab36600461334d565b6110fe565b6104b96107e681565b60405190815260200161032e565b61034a6104d536600461331d565b611249565b61034a6104e8366004613380565b611264565b61034a6104fb3660046132e5565b611335565b61034a61050e3660046132c3565b6113a0565b61034a610521366004613481565b611453565b6104b9606481565b6105376103e881565b6040516bffffffffffffffffffffffff909116815260200161032e565b6103876105623660046131fc565b6114a9565b61057a6105753660046132e5565b61150e565b60408051931515845260208401929092529082015260600161032e565b6104b96105a53660046131df565b611629565b61034a6116c3565b6103226105c03660046134ca565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6104b96105fc3660046132e5565b6116d7565b61034a61060f366004613481565b61170c565b6006546001600160a01b0316610387565b6104b9610633366004613241565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205490565b610354611757565b61034a6106713660046131fc565b611766565b61034a61068436600461334d565b61181c565b6106d06106973660046131df565b60086020526000908152604090205460ff808216916101008104909116906201000090046fffffffffffffffffffffffffffffffff1683565b60408051931515845291151560208401526fffffffffffffffffffffffffffffffff169082015260600161032e565b61034a61070d36600461331d565b611827565b6103546118ea565b61034a6107283660046134f8565b611978565b61034a61073b36600461334d565b611a06565b61035461074e3660046131fc565b611a11565b610354611ad7565b6103876107693660046131fc565b611ae4565b61034a61077c36600461331d565b611b0e565b61032261078f3660046134ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61034a6107cb366004613241565b611bb6565b61034a6107de3660046131df565b611bca565b60006107ee82611c57565b92915050565b6107fc611c95565b6103e86bffffffffffffffffffffffff821611156108615760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d617820726f79616c74792066656500000000000000000060448201526064015b60405180910390fd5b61086b8282611cef565b604080516001600160a01b03841681526bffffffffffffffffffffffff831660208201527f23813f5ad446622633cb58c75ceef768a2111751b0f30477a63e06fcaedcff60910160405180910390a15050565b6060600080546108cd90613578565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990613578565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b610958611c95565b6001600160a01b03811660009081526008602052604090205460ff166109c05760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610858565b6001600160a01b03811660009081526008602052604090205460078054620100009092046fffffffffffffffffffffffffffffffff1691610a03906001906135c9565b81548110610a1357610a136135e0565b600091825260209091200154600780546001600160a01b03909216916fffffffffffffffffffffffffffffffff8416908110610a5157610a516135e0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600860006007846fffffffffffffffffffffffffffffffff1681548110610aa957610aa96135e0565b60009182526020808320909101546001600160a01b03168352820192909252604001902080546fffffffffffffffffffffffffffffffff92909216620100000271ffffffffffffffffffffffffffffffff0000199092169190911790556007805480610b1757610b176135f6565b60008281526020808220600019908401810180546001600160a01b03191690559092019092556001600160a01b03841680835260088252604080842080547fffffffffffffffffffffffffffff00000000000000000000000000000000000016905551928352917fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e91015b60405180910390a25050565b6000610bb982611e09565b506000908152600460205260409020546001600160a01b031690565b6000610be0826114a9565b9050806001600160a01b0316836001600160a01b03161415610c6a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610858565b336001600160a01b0382161480610c865750610c86813361078f565b610cf85760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610858565b610d028383611e6d565b505050565b6000828152600a602090815260408083206001600160a01b03851684529091529020546060908067ffffffffffffffff811115610d4657610d466133f5565b604051908082528060200260200182016040528015610d8b57816020015b6040805180820190915260008082526020820152815260200190600190039081610d645790505b50915060005b81811015610e38576000858152600a602090815260408083206001600160a01b03881684529091529020805482908110610dcd57610dcd6135e0565b60009182526020918290206040805180820190915291015467ffffffffffffffff80821683526801000000000000000090910416918101919091528351849083908110610e1c57610e1c6135e0565b602002602001018190525080610e319061360c565b9050610d91565b505092915050565b610e493361047f565b610e895760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b610e94335b83611edb565b610eea5760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b610ef5823383611f9d565b5050565b600a6020528260005260406000206020528160005260406000208181548110610f2157600080fd5b60009182526020909120015467ffffffffffffffff808216945068010000000000000000909104169150839050565b610f5a33826121a5565b610fcc5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610858565b610d02838383612223565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff16928201929092528291611056575060408051808201909152600b546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b60208101516000906127109061107a906bffffffffffffffffffffffff1687613627565b611084919061365c565b915196919550909350505050565b3361109c836114a9565b6001600160a01b0316146110f25760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920746f6b656e206f776e6572206d61792065786974207175657374006044820152606401610858565b610ef5828260006123fb565b611106611c95565b6001600160a01b03821660009081526008602052604090205460ff161561116f5760405162461bcd60e51b815260206004820152601360248201527f416c72656164792077686974656c6973746564000000000000000000000000006044820152606401610858565b6001600160a01b03821660008181526008602052604080822080548515156101000261ffff19909116176001908117808355600780546fffffffffffffffffffffffffffffffff16620100000271ffffffffffffffffffffffffffffffff0000199092169190911790925581548082018355919093527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191684179055517fe152843d7324c2cb58e95865f2b78d38f2dab6ce9eadf09438ec2c41e78c705e91610ba291901515815260200190565b610d0283838360405180602001604052806000815250611978565b61126c611c95565b600f5481906107e660016112808484613670565b61128a91906135c9565b11156112d85760405162461bcd60e51b815260206004820152601960248201527f537570706c792063616e6e6f74206578636565642032303232000000000000006044820152606401610858565b81600f546112e69190613670565b600f5560005b8281101561132e57611326858583818110611309576113096135e0565b905060200201602081019061131e91906131df565b82840161250a565b6001016112ec565b5050505050565b3361133f846114a9565b6001600160a01b0316146113955760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920746f6b656e206f776e6572206d61792065786974207175657374006044820152606401610858565b610d02838383611f9d565b6113a93361047f565b6113e95760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b6113f233610e8e565b6114485760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b610ef5823383612658565b61145b611c95565b805161146e90600d906020840190613003565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f68160405161149e91906131cc565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806107ee5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610858565b6000838152600a602090815260408083206001600160a01b038616845282528083208054825181850281018501909352808352849360001993859390929091849084015b828210156115a1576000848152602090819020604080518082019091529084015467ffffffffffffffff8082168352680100000000000000009091041681830152825260019092019101611552565b50505050905060005b815181101561161e5760008282815181106115c7576115c76135e0565b602002602001015190508667ffffffffffffffff16816000015167ffffffffffffffff16141561160d57602001516001955067ffffffffffffffff16935091508161161e565b506116178161360c565b90506115aa565b505093509350939050565b60006001600160a01b0382166116a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610858565b506001600160a01b031660009081526003602052604090205490565b6116cb611c95565b6116d56000612813565b565b60008060006116e786868661150e565b5091509150816116f8576000611702565b61170281426135c9565b9695505050505050565b611714611c95565b805161172790600e906020840190613003565b507f65ccd57f8a46e7a6cfc4d214d84094e8ba5561ab50fd328f26e4c44052ffeba08160405161149e91906131cc565b6060600180546108cd90613578565b61176f3361047f565b6117af5760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b6117ba335b82611edb565b6118105760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b61181981612865565b50565b610ef533838361290c565b6118303361047f565b6118705760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b611879336117b4565b6118cf5760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b610d02838383604051806020016040528060008152506129dc565b600e80546118f790613578565b80601f016020809104026020016040519081016040528092919081815260200182805461192390613578565b80156119705780601f1061194557610100808354040283529160200191611970565b820191906000526020600020905b81548152906001019060200180831161195357829003601f168201915b505050505081565b61198233836121a5565b6119f45760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610858565b611a00848484846129dc565b50505050565b610ef5338383612a65565b6000818152600260205260409020546060906001600160a01b0316611a785760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610858565b6000611a82612b2c565b90506000815111611aa25760405180602001604052806000815250611ad0565b80611aac84612b3b565b600e604051602001611ac093929190613688565b6040516020818303038152906040525b9392505050565b600d80546118f790613578565b60078181548110611af457600080fd5b6000918252602090912001546001600160a01b0316905081565b611b173361047f565b611b575760405162461bcd60e51b81526020600482015260116024820152702737ba1030b71030b23b32b73a3ab9329760791b6044820152606401610858565b611b60336117b4565b610fcc5760405162461bcd60e51b815260206004820152602160248201527f43616c6c6572206e6f7420617070726f76656420666f7220616476656e7475726044820152606560f81b6064820152608401610858565b611bbe611c95565b610ef5828260016123fb565b611bd2611c95565b6001600160a01b038116611c4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610858565b61181981612813565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806107ee57506107ee82612c6d565b6006546001600160a01b031633146116d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610858565b6127106bffffffffffffffffffffffff82161115611d755760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610858565b6001600160a01b038216611dcb5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610858565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600b55565b6000818152600260205260409020546001600160a01b03166118195760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610858565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ea2826114a9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810182905260009081903090636352211e9060240160206040518083038186803b158015611f3057600080fd5b505afa158015611f44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f68919061374c565b6001600160a01b0380821660009081526009602090815260408083209389168352929052205490915060ff165b949350505050565b600080611fab85858561150e565b925050915081611ffd5760405162461bcd60e51b815260206004820152600c60248201527f4e6f74206f6e20717565737400000000000000000000000000000000000000006044820152606401610858565b6000858152600a602090815260408083206001600160a01b03881684529091529020805461202d906001906135c9565b8154811061203d5761203d6135e0565b60009182526020808320888452600a825260408085206001600160a01b038a1686529092529220805492909101918390811061207b5761207b6135e0565b6000918252602080832084549201805467ffffffffffffffff93841667ffffffffffffffff1982168117835595546fffffffffffffffffffffffffffffffff19909116909517680100000000000000009586900490931690940291909117909255868152600a825260408082206001600160a01b038816835290925220805480612107576121076135f6565b600082815260209020810160001990810180546fffffffffffffffffffffffffffffffff191690550190556001600160a01b038416612145866114a9565b6001600160a01b0316867f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee866000806040516121969392919092835290151560208301521515604082015260600190565b60405180910390a45050505050565b6000806121b1836114a9565b9050806001600160a01b0316846001600160a01b031614806121f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f955750836001600160a01b031661221184610bae565b6001600160a01b031614949350505050565b826001600160a01b0316612236826114a9565b6001600160a01b0316146122b25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610858565b6001600160a01b03821661232d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610858565b612338838383612cab565b612343600082611e6d565b6001600160a01b038316600090815260036020526040812080546001929061236c9084906135c9565b90915550506001600160a01b038216600090815260036020526040812080546001929061239a908490613670565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612406846114a9565b6000858152600a602090815260408083206001600160a01b03881684529091528120549192505b818110156124de576000868152600a602090815260408083206001600160a01b03808a1680865291909352922080549186169189917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee9186908110612494576124946135e0565b6000918252602080832091909101546040805167ffffffffffffffff9092168252918101929092528915159082015260600160405180910390a46124d78161360c565b905061242d565b506000858152600a602090815260408083206001600160a01b0388168452909152812061132e91613087565b6001600160a01b0382166125605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610858565b6000818152600260205260409020546001600160a01b0316156125c55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610858565b6125d160008383612cab565b6001600160a01b03821660009081526003602052604081208054600192906125fa908490613670565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061266584848461150e565b5050905080156126b75760405162461bcd60e51b815260206004820152601060248201527f416c7265616479206f6e207175657374000000000000000000000000000000006044820152606401610858565b6000848152600a602090815260408083206001600160a01b03871684529091529020546064116127295760405162461bcd60e51b815260206004820152601660248201527f546f6f206d616e792061637469766520717565737473000000000000000000006044820152606401610858565b6000848152600a602090815260408083206001600160a01b038716808552908352818420825180840190935267ffffffffffffffff80881684524281168486019081528254600181018455928752949095209251920180549351851668010000000000000000026fffffffffffffffffffffffffffffffff199094169290941691909117919091179091556127bd856114a9565b604080518581526001602082015260008183015290516001600160a01b03929092169187917f1171d71105bda3fa01f863317a96e01684416ccb1e5416de7c09510bdfbe6aee919081900360600190a450505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612870826114a9565b905061287e81600084612cab565b612889600083611e6d565b6001600160a01b03811660009081526003602052604081208054600192906128b29084906135c9565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b0316141561296e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610858565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191015b60405180910390a3505050565b6129e7848484612223565b6129f384848484612e05565b611a005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610858565b816001600160a01b0316836001600160a01b03161415612ac75760405162461bcd60e51b815260206004820152601160248201527f617070726f766520746f2063616c6c65720000000000000000000000000000006044820152606401610858565b6001600160a01b03838116600081815260096020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f83347dcc77580bb841ae3bac834b5b8ac5ccd2326276d265e638987eb6b2c05691016129cf565b6060600d80546108cd90613578565b606081612b7b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ba55780612b8f8161360c565b9150612b9e9050600a8361365c565b9150612b7f565b60008167ffffffffffffffff811115612bc057612bc06133f5565b6040519080825280601f01601f191660200182016040528015612bea576020820181803683370190505b5090505b8415611f9557612bff6001836135c9565b9150612c0c600a86613769565b612c17906030613670565b60f81b818381518110612c2c57612c2c6135e0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c66600a8661365c565b9450612bee565b60006001600160e01b031982167ff9f7ab410000000000000000000000000000000000000000000000000000000014806107ee57506107ee82612f68565b60006007805480602002602001604051908101604052809291908181526020018280548015612d0357602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612ce5575b5050505050905060005b815181101561132e576000828281518110612d2a57612d2a6135e0565b6020908102919091018101516000868152600a835260408082206001600160a01b0384168352909352918220549092501115612df4576001600160a01b038116600090815260086020526040902054610100900460ff1615612df45760405162461bcd60e51b815260206004820152602760248201527f416e206163746976652071756573742069732070726576656e74696e6720747260448201527f616e7366657273000000000000000000000000000000000000000000000000006064820152608401610858565b50612dfe8161360c565b9050612d0d565b60006001600160a01b0384163b15612f5d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612e4990339089908890889060040161377d565b602060405180830381600087803b158015612e6357600080fd5b505af1925050508015612e93575060408051601f3d908101601f19168201909252612e90918101906137af565b60015b612f43573d808015612ec1576040519150601f19603f3d011682016040523d82523d6000602084013e612ec6565b606091505b508051612f3b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610858565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f95565b506001949350505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612fcb57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107ee57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107ee565b82805461300f90613578565b90600052602060002090601f0160209004810192826130315760008555613077565b82601f1061304a57805160ff1916838001178555613077565b82800160010185558215613077579182015b8281111561307757825182559160200191906001019061305c565b506130839291506130a5565b5090565b508054600082559060005260206000209081019061181991906130ba565b5b8082111561308357600081556001016130a6565b5b808211156130835780546fffffffffffffffffffffffffffffffff191681556001016130bb565b6001600160e01b03198116811461181957600080fd5b60006020828403121561310a57600080fd5b8135611ad0816130e2565b6001600160a01b038116811461181957600080fd5b6000806040838503121561313d57600080fd5b823561314881613115565b915060208301356bffffffffffffffffffffffff8116811461316957600080fd5b809150509250929050565b60005b8381101561318f578181015183820152602001613177565b83811115611a005750506000910152565b600081518084526131b8816020860160208601613174565b601f01601f19169290920160200192915050565b602081526000611ad060208301846131a0565b6000602082840312156131f157600080fd5b8135611ad081613115565b60006020828403121561320e57600080fd5b5035919050565b6000806040838503121561322857600080fd5b823561323381613115565b946020939093013593505050565b6000806040838503121561325457600080fd5b82359150602083013561316981613115565b602080825282518282018190526000919060409081850190868401855b828110156132b6578151805167ffffffffffffffff90811686529087015116868501529284019290850190600101613283565b5091979650505050505050565b600080604083850312156132d657600080fd5b50508035926020909101359150565b6000806000606084860312156132fa57600080fd5b83359250602084013561330c81613115565b929592945050506040919091013590565b60008060006060848603121561333257600080fd5b833561333d81613115565b9250602084013561330c81613115565b6000806040838503121561336057600080fd5b823561336b81613115565b91506020830135801515811461316957600080fd5b6000806020838503121561339357600080fd5b823567ffffffffffffffff808211156133ab57600080fd5b818501915085601f8301126133bf57600080fd5b8135818111156133ce57600080fd5b8660208260051b85010111156133e357600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115613426576134266133f5565b604051601f8501601f19908116603f0116810190828211818310171561344e5761344e6133f5565b8160405280935085815286868601111561346757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561349357600080fd5b813567ffffffffffffffff8111156134aa57600080fd5b8201601f810184136134bb57600080fd5b611f958482356020840161340b565b600080604083850312156134dd57600080fd5b82356134e881613115565b9150602083013561316981613115565b6000806000806080858703121561350e57600080fd5b843561351981613115565b9350602085013561352981613115565b925060408501359150606085013567ffffffffffffffff81111561354c57600080fd5b8501601f8101871361355d57600080fd5b61356c8782356020840161340b565b91505092959194509250565b600181811c9082168061358c57607f821691505b602082108114156135ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156135db576135db6135b3565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000600019821415613620576136206135b3565b5060010190565b6000816000190483118215151615613641576136416135b3565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261366b5761366b613646565b500490565b60008219821115613683576136836135b3565b500190565b60008451602061369b8285838a01613174565b8551918401916136ae8184848a01613174565b8554920191600090600181811c90808316806136cb57607f831692505b8583108114156136e957634e487b7160e01b85526022600452602485fd5b8080156136fd576001811461370e5761373b565b60ff1985168852838801955061373b565b60008b81526020902060005b858110156137335781548a82015290840190880161371a565b505083880195505b50939b9a5050505050505050505050565b60006020828403121561375e57600080fd5b8151611ad081613115565b60008261377857613778613646565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261170260808301846131a0565b6000602082840312156137c157600080fd5b8151611ad0816130e256fea264697066735822122018c8bb05cfe587cd4fbd7bbee4fb5f9137741883cc384455858c031d319301fb64736f6c63430008090033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

This collection consists of the spirits of the Official DigiDaigaku Genesis Collection. Please see our website: https://digidaigaku.com/spirits for instructions.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.