Token Exiled Racers Racecraft

Overview ERC721

Total Supply:
1,568 EXRR

Holders:
682 addresses
Balance
1 EXRR
0x44e4728747a27966c1f86dc894a2dcc45723770b
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

The ultimate racing machines. Part of Exiled Racers.


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

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x515e20e6275CEeFe19221FC53e77E38cc32b80Fb

Contract Name:
EXRGameAsset

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

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

import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./extensions/ERC721Fragmentable.sol";

error GameAssetTokenAlreadyMinted(uint256 tokenId);
error GameAssetTokenDoesNotExist(uint256 tokenId);
error GameAssetInvalidFragment(uint256 fragment);
error GameAssetFragmentTokenPoolSupplyExceeded();
error GameAssetTokenIdReserved(uint256 tokenId);
error GameAssetReservedSupplyExceeded();
error GameAssetInvalidFragmentTokenId();
error GameAssetTokenIdNotReserved();
error GameAssetZeroAddress();
error GameAssetInvalidSeed();
error GameAssetZeroCount();

/**
 * @title   EXR Game Asset
 * @author  RacerDev
 * @notice  EXRGameAsset tokens are in-game assets for Exiled Racers, an NFT-based racing game set in space.
 *          The NFTs double as traditional collectibles, in addition to serving as in-game items.
 * @dev     The contract inherits from ERC721Fragmentable, which allows the collection to be
 *          broken into fragments and the collection released in phases.
 * @dev     The UX is designed in such a way minting is not allowed directly from the contract.
 *          Mint functions are exposed only to other contracts via interfaces that are Access Controlled.
 */
contract EXRGameAsset is ERC721Fragmentable, Pausable {
    bytes32 constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    mapping(uint256 => uint256) public idToFragments;

    event GameAssetMinted(address indexed recipient, uint256 indexed fragment, uint256 tokenId);

    constructor(
        string memory name,
        string memory symbol,
        string memory defaultUri
    ) ERC721(name, symbol) ERC721Fragmentable(defaultUri) {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);
    }

    /*
     * ===================================== EXTERNAL
     */

    /**
     * @notice  Mints one or more tokens
     * @dev     Function is intended to be called by other contracts, not by dApps
     * @dev     The seed's validity should be checked in the calling contract
     * @dev     There is no randomness like VRF available, so the verified seed is used instead
     * @param   recipient address to mint token to
     * @param   count number of tokens to mint
     * @param   fragment fragment of the collection that the token belongs to
     * @param   seed random seed provided by the caller
     */
    function mint(
        address recipient,
        uint256 count,
        uint8 fragment,
        bytes32 seed
    ) external whenNotPaused onlyRole(MINTER_ROLE) {
        if (recipient == address(0)) revert GameAssetZeroAddress();
        if (count == 0) revert GameAssetZeroCount();

        Fragment memory assetFragment = fragments[fragment];
        if (assetFragment.status != 1) revert GameAssetInvalidFragment(fragment);
        if (assetFragment.publicTokens.issuedCount + count > assetFragment.publicTokens.supply)
            revert GameAssetFragmentTokenPoolSupplyExceeded();

        for (uint256 i; i < count; i++) {
            uint256 tokenId = issueRandomId(fragment, seed);

            if (tokenId < assetFragment.firstTokenId + assetFragment.reservedTokens.supply)
                revert GameAssetTokenIdReserved({tokenId: tokenId});

            if (tokenId > assetFragment.firstTokenId + assetFragment.supply - 1)
                revert GameAssetInvalidFragmentTokenId();

            _createAndMintGameAsset(recipient, tokenId, fragment);
        }
    }

    /**
     * @notice  Mint tokens with IDs that have been reserved and are not public available
     * @dev     Allows admin to mint speficic Ids for a given fragment to a known recipient
     * @param   recipient address to mint to
     * @param   tokenId ID to mint
     * @param   fragment the fragment the token ID belongs to
     */
    function mintReserved(
        address recipient,
        uint256 tokenId,
        uint8 fragment
    ) external whenNotPaused onlyRole(MINTER_ROLE) {
        if (_exists(tokenId)) revert GameAssetTokenAlreadyMinted({tokenId: tokenId});

        Fragment storage assetFragment = fragments[fragment];
        if (assetFragment.status != 1) revert GameAssetInvalidFragment({fragment: fragment});

        if (assetFragment.reservedTokens.issuedCount >= assetFragment.reservedTokens.supply)
            revert GameAssetReservedSupplyExceeded();

        if (
            tokenId < assetFragment.firstTokenId ||
            tokenId > (assetFragment.firstTokenId + assetFragment.reservedTokens.supply) - 1
        ) revert GameAssetTokenIdNotReserved();

        fragments[fragment].reservedTokens.issuedCount++;
        _createAndMintGameAsset(recipient, tokenId, fragment);
    }

    /**
     * @notice  Pause the contract
     * @dev     Should only be used in emergency situations
     */
    function pause() external onlyRole(PAUSER_ROLE) {
        _pause();
    }

    /**
     * @notice  Unpause the contract
     * @dev     Used once any issues have been resolved
     */
    function unpause() external onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    /*
     * ===================================== INTERNAL
     */

    /**
        @dev mints an asset and binds the token ID to the fragment ID
        @param to address to mint token to
        @param id ID to mint
        @param fragment fragment of the collection that the token belongs to
    */
    function _createAndMintGameAsset(
        address to,
        uint256 id,
        uint8 fragment
    ) internal {
        idToFragments[id] = fragment;
        _mint(to, id);
        emit GameAssetMinted(to, fragment, id);
    }

    /*
     * ===================================== OVERRIDES
     */

    /**
     * @dev     Fetches the {tokenURI} for the fragment the token belongs to. The fragment is
     *          is retrieved using the token ID.
     * @param   tokenId token ID to get the URI for
     * @return  the URL to the token metadata file
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert GameAssetTokenDoesNotExist({tokenId: tokenId});

        uint256 fragment = idToFragments[tokenId];

        return _fragmentTokenURI(fragment, tokenId);
    }

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

File 2 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 18 : ERC721Fragmentable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "@openzeppelin/contracts/utils/Strings.sol";

import "../interfaces/IRenderer.sol";

error FragmentNotFound(uint256 fragment);
error FragmentExceedsCollectionSupply();
error FragmentsTokenIdsNotSequential();
error FragmentTokenSupplyExceeded();
error FragmentSupplyMismatch();
error FragmentNotSequential();
error FragmentInvalidSupply();
error FragmentZeroAddress();
error FragmentInvalid();
error TokenPoolEmpty();
error FragmentExists();
error FragmentLocked();

/**
 * @title   Collection fragment
 * @author  RacerDev
 * @notice  This contract is the base for a novel extension to the ERC721 standard that allows a
 *          collection to be partitioned, or fragmented, into smaller fragments.  Each fragment is allocated
 *          its own supply and defines the range of token IDs that it contains. In addition, each
 *          fragment has its own unique metadata storage URI that points to an IFPS collection containing
 *          the collection's metadata files.
 * @notice  The extension was created to allow for NFT collections to be extended, or released in phases,
 *          as opposed to having all tokens minted druing a single event.  It provides flexibility to add different/additional
 *          assets that are part of the same collection, but do not share an metadata origin with the other fragments.
 * @dev     Fragments can have an external renderer contract attached to return a `tokenURI` containing purely on-chain data
 * @dev     A Fragment is capable of issuing randomized token IDs at mint time, with the aid of seed provided by the caller. Verifying
 *          the validity of the seed is left up to the caller (usually another contract).
 */

abstract contract ERC721Fragmentable is ERC721Enumerable, Ownable, AccessControl {
    using Strings for uint256;

    bytes32 public constant SYS_ADMIN_ROLE = keccak256("SYS_ADMIN_ROLE");
    bytes32 public constant FRAGMENT_CREATOR_ROLE = keccak256("FRAGMENT_CREATOR_ROLE");

    struct TokenPool {
        uint64 issuedCount;
        uint64 startId;
        uint64 supply;
    }

    struct Fragment {
        uint8 status;
        uint8 locked;
        uint8 fragmentId;
        uint64 firstTokenId;
        uint64 supply;
        string baseURI;
        IRenderer renderer;
        TokenPool reservedTokens;
        TokenPool publicTokens;
    }

    uint256 public constant MAX_SUPPLY = 9000;
    string public fallbackURI;

    uint256 public fragmentCount;

    mapping(uint256 => Fragment) public fragments;
    mapping(uint256 => mapping(uint256 => uint256)) public fragmentPoolTokenMatrix;

    event FragmentMetadataLocked(uint256 fragment);
    event FragmentCreated(uint256 id, uint256 supply);
    event FragmentExternalRendererSet(uint256 fragment, address renderContract);
    event FragmentMetadataUpdated(uint256 fragmentNumber, string uri);

    constructor(string memory uri) {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(SYS_ADMIN_ROLE, msg.sender);
        fallbackURI = uri;
    }

    // =============================================== EXTERNAL | OWNER

    /**
     * @notice  Allows the owner of the contract to update the metadata URI for a given fragment
     * @dev     A fragment's metadata can only be updated if the fragment has not been locked. Once the fragment
     *          has been locked, the metdata for that fragment is permananetly frozen.
     * @param   fragmentNumber  The fragment's identifier in the collection.
     * @param   baseURI_  The content identifier for the fragment's metadata.
     */
    function updateFragmentMetadata(uint256 fragmentNumber, string calldata baseURI_)
        external
        onlyRole(SYS_ADMIN_ROLE)
    {
        if (fragments[fragmentNumber].status == 0) revert FragmentInvalid();
        if (fragments[fragmentNumber].locked == 1) revert FragmentLocked();

        fragments[fragmentNumber].baseURI = baseURI_;
        emit FragmentMetadataUpdated(fragmentNumber, baseURI_);
    }

    /**
     * @notice  Allows the contract owner to lock a fragment's metadata, permanently freezing it.
     * @dev     This action is irreversible.
     * @param   fragmentNumber the fragment's identifier in the collection.
     */
    function lockFragmentMetadata(uint256 fragmentNumber) external onlyRole(SYS_ADMIN_ROLE) {
        if (fragments[fragmentNumber].status == 0) revert FragmentInvalid();
        fragments[fragmentNumber].locked = 1;
        emit FragmentMetadataLocked(fragmentNumber);
    }

    /**
     * @notice  Allows an Admin to assign an external on-chain renderer to the fragment
     * @dev     Once a renderer has been assigned, the contract cannot go back to using the {_baseURI}
     * @param   fragmentNumber the fragment's identifier in the collection.
     * @param   renderContract the address for the renderer's contract interface
     */
    function setRenderer(uint256 fragmentNumber, address renderContract)
        external
        onlyRole(SYS_ADMIN_ROLE)
    {
        if (renderContract == address(0)) revert FragmentZeroAddress();
        if (fragments[fragmentNumber].status == 0) revert FragmentInvalid();
        if (fragments[fragmentNumber].locked == 1) revert FragmentLocked();
        fragments[fragmentNumber].renderer = IRenderer(renderContract);
        emit FragmentExternalRendererSet(fragmentNumber, renderContract);
    }

    // =============================================== EXTERNAL

    /**
     * @notice  Checks whether a fragment has been created
     * @dev     convenience function for checking if an external contract is interacting with
     *          a valid fragment.
     * @param   fragmentNumber  The fragment's identifier in the collection.
     */
    function fragmentExists(uint256 fragmentNumber) external view returns (bool) {
        return fragments[fragmentNumber].status == 1;
    }

    /**
     * @notice  Creates a new fragment in the collection.
     * @dev     Fragments can only be created by an account with the FRAGMENT_CREATOR_ROLE assigned.
     *          The function contains checks to ensure that the fragment created follows on from the previous,
     *          that the supply is consistent with the IDs, and that the first ID of the fragment follows
     *          the last ID of the previous.
     * @dev     A fragment contains two `TokenPools`, one for publicly available tokens, and one for reserved tokens
     * @param   id              The fragment's identifier in the collection.
     * @param   fragmentSupply  The total number of tokens in the fragment.
     * @param   firstId         The Token ID of the first token in the fragment.
     * @param   reserved        The number of reserved tokens in the collection.
     */
    function createFragment(
        uint8 id,
        uint64 fragmentSupply,
        uint64 firstId,
        uint64 reserved
    ) external onlyRole(FRAGMENT_CREATOR_ROLE) {
        if (fragmentSupply <= 1) revert FragmentInvalidSupply();
        if (firstId + fragmentSupply - 1 >= MAX_SUPPLY) revert FragmentExceedsCollectionSupply();
        if (reserved > fragmentSupply) revert FragmentTokenSupplyExceeded();
        if (fragments[id].status == 1) revert FragmentExists();

        if (id > 0) {
            Fragment memory previousFragment = fragments[id - 1];
            if (id != previousFragment.fragmentId + 1) revert FragmentNotSequential();
            if (firstId != previousFragment.firstTokenId + previousFragment.supply)
                revert FragmentsTokenIdsNotSequential();
        }
        fragmentCount++;
        fragments[id] = Fragment({
            status: 1,
            locked: 0,
            fragmentId: id,
            firstTokenId: firstId,
            supply: fragmentSupply,
            baseURI: "",
            renderer: IRenderer(address(0)),
            publicTokens: TokenPool({
                issuedCount: 0,
                startId: firstId + reserved,
                supply: fragmentSupply - reserved
            }),
            reservedTokens: reserved > 0
                ? TokenPool({issuedCount: 0, startId: firstId, supply: reserved})
                : TokenPool(0, 0, 0)
        });

        emit FragmentCreated(id, fragmentSupply);
    }

    /**
     * @notice  Returns all the token IDs for a given address.
     * @dev     Uses {tokenOfOwnerByIndex} to enumerate the tokens owned by the `_address` provided.
     * @return  The token IDs owned by the address provided.
     */
    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

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

        return tokenIds;
    }

    // =============================================== INTERNAL

    /**
     * @notice  Issues a randomly assigned token ID from the pool of remaining IDs in the fragment
     * @dev     Uses the {fragmentPoolTokenMatrix} mapping to keep track of the minted IDs for each fragment, which
     *          is an implementation of the Fisher-Yates shuffle
     * @param   fragment The fragment identifier indicating which fragment the token is for
     * @param   seed A 32-byte seed to improve randomness (this should be verified before reaching this function)
     * @return  A random token ID offset from the start of the designated fragment's public token range
     */
    function issueRandomId(uint256 fragment, bytes32 seed) internal returns (uint256) {
        Fragment storage currentFragment = fragments[fragment];

        uint256 remaining = currentFragment.publicTokens.supply -
            currentFragment.publicTokens.issuedCount;
        if (remaining == 0) revert TokenPoolEmpty();

        // returns a random number between 0 and the number of tokens remaining - 1, this will be
        // used as the random ID if the slot in the matrix corresponding to the index is empty
        uint256 randomIndex = uint256(
            keccak256(abi.encodePacked(block.basefee, blockhash(block.number - 1), seed))
        ) % remaining;

        // If the matrix is empty at the given random index (slot), we use the index as the token ID.
        // However, if the slot contains an ID, we'll assign that instead.

        uint256 offset = fragmentPoolTokenMatrix[fragment][randomIndex] == 0
            ? randomIndex
            : fragmentPoolTokenMatrix[fragment][randomIndex];

        currentFragment.publicTokens.issuedCount++;

        uint256 temp = fragmentPoolTokenMatrix[fragment][remaining - 1];

        if (temp == 0) {
            fragmentPoolTokenMatrix[fragment][randomIndex] = remaining - 1;
        } else {
            fragmentPoolTokenMatrix[fragment][randomIndex] = temp;
            delete fragmentPoolTokenMatrix[fragment][remaining - 1]; // small gas refund
        }

        uint256 tokenId = currentFragment.publicTokens.startId + offset;
        return tokenId;
    }

    /**
     * @notice  Retrieves the fragment-specific token URI
     * @dev     If the fragment's metadata hash has not been set (ie. it's empty), the
     *          collections {fallbackURI} is returned.
     * @dev     Uses the `fragment` parameter to determine which fragment the `tokenId` belongs to
     * @param   fragment The fragment's identifier in the collection
     * @param   tokenId The token ID to retrieve the metadata for
     * @return  The token URI for the fragment if it's been set, the {fallbackURI} if not.
     */
    function _fragmentTokenURI(uint256 fragment, uint256 tokenId)
        internal
        view
        returns (string memory)
    {
        if (fragments[fragment].status == 0) revert FragmentNotFound({fragment: fragment});
        if (fragments[fragment].renderer != IRenderer(address(0))) {
            return fragments[fragment].renderer.getTokenMetadata(tokenId);
        }

        return
            bytes(fragments[fragment].baseURI).length > 0
                ? string(abi.encodePacked(fragments[fragment].baseURI, "/", tokenId.toString()))
                : fallbackURI;
    }

    // =============================================== OVERRIDES

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

File 5 of 18 : 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 6 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 18 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 8 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

    /**
     * @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 9 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 18 : IRenderer.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

interface IRenderer {
    function getTokenMetadata(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 14 of 18 : 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 15 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

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

File 16 of 18 : 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 18 : 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 18 of 18 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"defaultUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"FragmentExceedsCollectionSupply","type":"error"},{"inputs":[],"name":"FragmentExists","type":"error"},{"inputs":[],"name":"FragmentInvalid","type":"error"},{"inputs":[],"name":"FragmentInvalidSupply","type":"error"},{"inputs":[],"name":"FragmentLocked","type":"error"},{"inputs":[{"internalType":"uint256","name":"fragment","type":"uint256"}],"name":"FragmentNotFound","type":"error"},{"inputs":[],"name":"FragmentNotSequential","type":"error"},{"inputs":[],"name":"FragmentTokenSupplyExceeded","type":"error"},{"inputs":[],"name":"FragmentZeroAddress","type":"error"},{"inputs":[],"name":"FragmentsTokenIdsNotSequential","type":"error"},{"inputs":[],"name":"GameAssetFragmentTokenPoolSupplyExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"fragment","type":"uint256"}],"name":"GameAssetInvalidFragment","type":"error"},{"inputs":[],"name":"GameAssetInvalidFragmentTokenId","type":"error"},{"inputs":[],"name":"GameAssetReservedSupplyExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"GameAssetTokenAlreadyMinted","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"GameAssetTokenDoesNotExist","type":"error"},{"inputs":[],"name":"GameAssetTokenIdNotReserved","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"GameAssetTokenIdReserved","type":"error"},{"inputs":[],"name":"GameAssetZeroAddress","type":"error"},{"inputs":[],"name":"GameAssetZeroCount","type":"error"},{"inputs":[],"name":"TokenPoolEmpty","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"FragmentCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fragment","type":"uint256"},{"indexed":false,"internalType":"address","name":"renderContract","type":"address"}],"name":"FragmentExternalRendererSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fragment","type":"uint256"}],"name":"FragmentMetadataLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fragmentNumber","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"FragmentMetadataUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"uint256","name":"fragment","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"GameAssetMinted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FRAGMENT_CREATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYS_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"uint64","name":"fragmentSupply","type":"uint64"},{"internalType":"uint64","name":"firstId","type":"uint64"},{"internalType":"uint64","name":"reserved","type":"uint64"}],"name":"createFragment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fallbackURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fragmentCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fragmentNumber","type":"uint256"}],"name":"fragmentExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"fragmentPoolTokenMatrix","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"fragments","outputs":[{"internalType":"uint8","name":"status","type":"uint8"},{"internalType":"uint8","name":"locked","type":"uint8"},{"internalType":"uint8","name":"fragmentId","type":"uint8"},{"internalType":"uint64","name":"firstTokenId","type":"uint64"},{"internalType":"uint64","name":"supply","type":"uint64"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"contract IRenderer","name":"renderer","type":"address"},{"components":[{"internalType":"uint64","name":"issuedCount","type":"uint64"},{"internalType":"uint64","name":"startId","type":"uint64"},{"internalType":"uint64","name":"supply","type":"uint64"}],"internalType":"struct ERC721Fragmentable.TokenPool","name":"reservedTokens","type":"tuple"},{"components":[{"internalType":"uint64","name":"issuedCount","type":"uint64"},{"internalType":"uint64","name":"startId","type":"uint64"},{"internalType":"uint64","name":"supply","type":"uint64"}],"internalType":"struct ERC721Fragmentable.TokenPool","name":"publicTokens","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"idToFragments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"fragmentNumber","type":"uint256"}],"name":"lockFragmentMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint8","name":"fragment","type":"uint8"},{"internalType":"bytes32","name":"seed","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"fragment","type":"uint8"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fragmentNumber","type":"uint256"},{"internalType":"address","name":"renderContract","type":"address"}],"name":"setRenderer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fragmentNumber","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"}],"name":"updateFragmentMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620041f3380380620041f38339810160408190526200003491620003b8565b80838381600090805190602001906200004f92919062000245565b5080516200006590600190602084019062000245565b505050620000826200007c6200014a60201b60201c565b6200014e565b6200008f600033620001a0565b620000bb7f102df6c829c4ae7b33ef1bb0ebd38acf773714f0196b4f4fd4b0ade595f3daf733620001a0565b8051620000d090600c90602084019062000245565b50506010805460ff19169055620000e9600033620001a0565b620001157f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001a0565b620001417f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620001a0565b50505062000486565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff1662000241576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002003390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b828054620002539062000449565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200031357600080fd5b81516001600160401b0380821115620003305762000330620002eb565b604051601f8301601f19908116603f011681019082821181831017156200035b576200035b620002eb565b816040528381526020925086838588010111156200037857600080fd5b600091505b838210156200039c57858201830151818301840152908201906200037d565b83821115620003ae5760008385830101525b9695505050505050565b600080600060608486031215620003ce57600080fd5b83516001600160401b0380821115620003e657600080fd5b620003f48783880162000301565b945060208601519150808211156200040b57600080fd5b620004198783880162000301565b935060408601519150808211156200043057600080fd5b506200043f8682870162000301565b9150509250925092565b600181811c908216806200045e57607f821691505b602082108114156200048057634e487b7160e01b600052602260045260246000fd5b50919050565b613d5d80620004966000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c80636352211e11610151578063c87b56dd116100c3578063f2fde38b11610087578063f2fde38b14610599578063f306ba30146105ac578063f968dcc4146105c1578063fc9e1f15146105d4578063fe4132ec146105fb578063ff6e53341461060e57600080fd5b8063c87b56dd146104f9578063d547741f1461050c578063dae99e2a1461051f578063e8ad885114610532578063e985e9c51461055d57600080fd5b806391d148541161011557806391d148541461049d57806395d89b41146104b0578063a217fddf146104b8578063a22cb465146104c0578063b88d4fde146104d3578063c2b7f6b9146104e657600080fd5b80636352211e1461045657806370a0823114610469578063715018a61461047c5780638456cb59146104845780638da5cb5b1461048c57600080fd5b80632f745c59116101ea57806340f05d24116101ae57806340f05d24146103d257806342842e0e146103f2578063438b6300146104055780634f6ccce7146104255780635b6f72bf146104385780635c975abb1461044b57600080fd5b80632f745c591461039257806332cb6b0c146103a557806336568abe146103ae57806337469344146103c15780633f4ba83a146103ca57600080fd5b806318160ddd1161023c57806318160ddd146102fe5780631ceb0f371461031057806323b872dd14610336578063248a9ca314610349578063289c15661461036c5780632f2ff15d1461037f57600080fd5b806301ffc9a71461027957806306fdde03146102a1578063081812fc146102b6578063095ea7b3146102e15780630c7d9752146102f6575b600080fd5b61028c61028736600461326f565b610636565b60405190151581526020015b60405180910390f35b6102a9610647565b60405161029891906132e4565b6102c96102c43660046132f7565b6106d9565b6040516001600160a01b039091168152602001610298565b6102f46102ef36600461332c565b610773565b005b6102a9610889565b6008545b604051908152602001610298565b61028c61031e3660046132f7565b6000908152600e602052604090205460ff1660011490565b6102f4610344366004613356565b610917565b6103026103573660046132f7565b6000908152600b602052604090206001015490565b6102f461037a366004613392565b610948565b6102f461038d366004613392565b610a5a565b6103026103a036600461332c565b610a80565b61030261232881565b6102f46103bc366004613392565b610b16565b610302600d5481565b6102f4610b94565b6103026103e03660046132f7565b60116020526000908152604090205481565b6102f4610400366004613356565b610bca565b6104186104133660046133be565b610be5565b60405161029891906133d9565b6103026104333660046132f7565b610c86565b6102f461044636600461341d565b610d19565b60105460ff1661028c565b6102c96104643660046132f7565b610df8565b6103026104773660046133be565b610e6f565b6102f4610ef6565b6102f4610f5c565b600a546001600160a01b03166102c9565b61028c6104ab366004613392565b610f8f565b6102a9610fba565b610302600081565b6102f46104ce366004613498565b610fc9565b6102f46104e1366004613541565b610fd4565b6102f46104f43660046135fc565b61100c565b6102a96105073660046132f7565b6111e3565b6102f461051a366004613392565b61123e565b6102f461052d3660046132f7565b611264565b610302610540366004613638565b600f60209081526000928352604080842090915290825290205481565b61028c61056b36600461365a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102f46105a73660046133be565b611305565b610302600080516020613d0883398151915281565b6102f46105cf366004613684565b6113cd565b6103027f960a9ffb00511131812d01be9ed6eda4cb84ad841876bbf90453754bef776e5981565b6102f46106093660046136df565b611726565b61062161061c3660046132f7565b611d1e565b60405161029899989796959493929190613733565b600061064182611e6f565b92915050565b606060008054610656906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610682906137f8565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077e82610df8565b9050806001600160a01b0316836001600160a01b031614156107ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074e565b336001600160a01b03821614806108085750610808813361056b565b61087a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074e565b6108848383611e94565b505050565b600c8054610896906137f8565b80601f01602080910402602001604051908101604052809291908181526020018280546108c2906137f8565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b505050505081565b6109213382611f02565b61093d5760405162461bcd60e51b815260040161074e90613833565b610884838383611ff9565b600080516020613d0883398151915261096181336121a0565b6001600160a01b038216610988576040516358af7b2b60e01b815260040160405180910390fd5b6000838152600e602052604090205460ff166109b7576040516307f8839960e01b815260040160405180910390fd5b6000838152600e602052604090205460ff61010090910416600114156109f05760405163de35448360e01b815260040160405180910390fd5b6000838152600e602090815260409182902060020180546001600160a01b0319166001600160a01b0386169081179091558251868152918201527f295ab2938a368506a875623f3927a8554f55a26254ab5cf3029e505dae8792e8910160405180910390a1505050565b6000828152600b6020526040902060010154610a7681336121a0565b6108848383612204565b6000610a8b83610e6f565b8210610aed5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b0381163314610b865760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161074e565b610b90828261228a565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bbf81336121a0565b610bc76122f1565b50565b61088483838360405180602001604052806000815250610fd4565b60606000610bf283610e6f565b90506000816001600160401b03811115610c0e57610c0e6134d4565b604051908082528060200260200182016040528015610c37578160200160208202803683370190505b50905060005b82811015610c7e57610c4f8582610a80565b828281518110610c6157610c61613884565b602090810291909101015280610c76816138b0565b915050610c3d565b509392505050565b6000610c9160085490565b8210610cf45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074e565b60088281548110610d0757610d07613884565b90600052602060002001549050919050565b600080516020613d08833981519152610d3281336121a0565b6000848152600e602052604090205460ff16610d61576040516307f8839960e01b815260040160405180910390fd5b6000848152600e602052604090205460ff6101009091041660011415610d9a5760405163de35448360e01b815260040160405180910390fd5b6000848152600e60205260409020610db690600101848461314c565b507f366f182c538de512cbb1be2a2e99f2a3cc8baebdd7914c0020fa6843688b3eb1848484604051610dea939291906138cb565b60405180910390a150505050565b6000818152600260205260408120546001600160a01b0316806106415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074e565b60006001600160a01b038216610eda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b610f5a6000612384565b565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f8781336121a0565b610bc76123d6565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610656906137f8565b610b9033838361242e565b610fde3383611f02565b610ffa5760405162461bcd60e51b815260040161074e90613833565b611006848484846124fe565b50505050565b60105460ff161561102f5760405162461bcd60e51b815260040161074e90613901565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661105a81336121a0565b6000838152600260205260409020546001600160a01b03161561109357604051637914c3f760e01b81526004810184905260240161074e565b60ff8083166000908152600e6020526040902080549091166001146110d05760405163cea7e33b60e01b815260ff8416600482015260240161074e565b60038101546001600160401b03600160801b820481169116106111065760405163dcc6a31160e01b815260040160405180910390fd5b8054630100000090046001600160401b031684108061116557506003810154815460019161114f916001600160401b03600160801b90920482169163010000009091041661392b565b6111599190613956565b6001600160401b031684115b1561118257604051622b174160e31b815260040160405180910390fd5b60ff83166000908152600e6020526040812060030180546001600160401b0316916111ac8361397e565b91906101000a8154816001600160401b0302191690836001600160401b03160217905550506111dc858585612531565b5050505050565b6000818152600260205260409020546060906001600160a01b031661121e57604051630b3f37d960e11b81526004810183905260240161074e565b600082815260116020526040902054611237818461258e565b9392505050565b6000828152600b602052604090206001015461125a81336121a0565b610884838361228a565b600080516020613d0883398151915261127d81336121a0565b6000828152600e602052604090205460ff166112ac576040516307f8839960e01b815260040160405180910390fd5b6000828152600e602052604090819020805461ff001916610100179055517f21f57328d6c1c3c82eb90c80b82ef7b45c19f6a798efb1b7733e74f612fc2bf2906112f99084815260200190565b60405180910390a15050565b600a546001600160a01b0316331461135f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074e565b6001600160a01b0381166113c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074e565b610bc781612384565b60105460ff16156113f05760405162461bcd60e51b815260040161074e90613901565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661141b81336121a0565b6001600160a01b038516611442576040516386bd3d8760e01b815260040160405180910390fd5b8361146057604051637c1248f160e11b815260040160405180910390fd5b60ff8084166000908152600e60209081526040808320815161012081018352815480871682526101008104871694820194909452620100008404909516918501919091526001600160401b036301000000830481166060860152600160581b909204909116608084015260018101805492939260a0840191906114e2906137f8565b80601f016020809104026020016040519081016040528092919081815260200182805461150e906137f8565b801561155b5780601f106115305761010080835404028352916020019161155b565b820191906000526020600020905b81548152906001019060200180831161153e57829003601f168201915b505050918352505060028201546001600160a01b0316602080830191909152604080516060808201835260038601546001600160401b038082168452600160401b808304821685880152600160801b9283900482168587015285880194909452845180840186526004909801548082168952938404811695880195909552909104909216908401520152805190915060ff166001146116125760405163cea7e33b60e01b815260ff8516600482015260240161074e565b610100810151604081015190516001600160401b0391821691611637918891166139a5565b1115611656576040516362b9ee8160e01b815260040160405180910390fd5b60005b8581101561171d5760006116708660ff168661276e565b90508260e0015160400151836060015161168a919061392b565b6001600160401b03168110156116b657604051630c324cf760e31b81526004810182905260240161074e565b6001836080015184606001516116cc919061392b565b6116d69190613956565b6001600160401b03168111156116ff576040516336ff45c160e11b815260040160405180910390fd5b61170a888288612531565b5080611715816138b0565b915050611659565b50505050505050565b7f960a9ffb00511131812d01be9ed6eda4cb84ad841876bbf90453754bef776e5961175181336121a0565b6001846001600160401b03161161177b5760405163672fd83760e01b815260040160405180910390fd5b612328600161178a868661392b565b6117949190613956565b6001600160401b0316106117bb5760405163cd3dd30d60e01b815260040160405180910390fd5b836001600160401b0316826001600160401b031611156117ee5760405163014d795f60e11b815260040160405180910390fd5b60ff8086166000908152600e60205260409020541660011415611824576040516314da3bad60e31b815260040160405180910390fd5b60ff851615611a42576000600e8161183d6001896139bd565b60ff90811682526020808301939093526040918201600020825161012081018452815480841682526101008104841695820195909552620100008504909216928201929092526001600160401b036301000000840481166060830152600160581b909304909216608083015260018101805460a0840191906118be906137f8565b80601f01602080910402602001604051908101604052809291908181526020018280546118ea906137f8565b80156119375780601f1061190c57610100808354040283529160200191611937565b820191906000526020600020905b81548152906001019060200180831161191a57829003601f168201915b505050918352505060028201546001600160a01b0316602080830191909152604080516060808201835260038601546001600160401b038082168452600160401b808304821685880152600160801b9283900482168587015285880194909452845180840186526004909801548082168952938404811695880195909552909104909216848201529101919091528101519091506119d69060016139e0565b60ff168660ff16146119fb57604051633c90053d60e11b815260040160405180910390fd5b80608001518160600151611a0f919061392b565b6001600160401b0316846001600160401b031614611a405760405163da90a14f60e01b815260040160405180910390fd5b505b600d8054906000611a52836138b0565b90915550506040805161012081018252600181526000602080830182905260ff8916838501526001600160401b0380881660608501528881166080850152845191820190945281815260a083015260c08201529060e08201908416611ad3576040805160608101825260008082526020820181905291810191909152611b0b565b604051806060016040528060006001600160401b03168152602001866001600160401b03168152602001856001600160401b03168152505b8152602001604051806060016040528060006001600160401b031681526020018587611b37919061392b565b6001600160401b03168152602001611b4f8689613956565b6001600160401b03908116909152915260ff8088166000908152600e6020908152604091829020855181548784015194880151606089015160808a01518916600160581b0267ffffffffffffffff60581b19919099166301000000026affffffffffffffff000000199289166201000002929092166affffffffffffffffff0000199789166101000261ffff199094169490981693909317919091179490941694909417929092179290921692909217825560a08301518051611c1892600185019201906131d0565b5060c08201516002820180546001600160a01b0319166001600160a01b0390921691909117905560e082015180516003830180546020808501516040958601516001600160401b039586166fffffffffffffffffffffffffffffffff1994851617600160401b92871683021767ffffffffffffffff60801b19908116600160801b9288168302179095556101009098015180516004909801805482850151928901519988169516949094179086169091021790921694831690950293909317909355805160ff89168152928716918301919091527f6fcf7a6630686870c1423ade47592d6c1bd8643c8302761a755063d7f1dd83f2910160405180910390a15050505050565b600e602052600090815260409020805460018201805460ff808416946101008504821694620100008104909216936001600160401b0363010000008404811694600160581b9094041692611d71906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9d906137f8565b8015611dea5780601f10611dbf57610100808354040283529160200191611dea565b820191906000526020600020905b815481529060010190602001808311611dcd57829003601f168201915b505050506002830154604080516060808201835260038701546001600160401b038082168452600160401b8083048216602080870191909152600160801b93849004831686880152865194850187526004909a0154808316855290810482169984019990995297049096169186019190915292936001600160a01b0390911692915089565b60006001600160e01b03198216637965db0b60e01b148061064157506106418261296e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ec982610df8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f7b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074e565b6000611f8683610df8565b9050806001600160a01b0316846001600160a01b03161480611fc15750836001600160a01b0316611fb6846106d9565b6001600160a01b0316145b80611ff157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661200c82610df8565b6001600160a01b0316146120705760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161074e565b6001600160a01b0382166120d25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074e565b6120dd838383612993565b6120e8600082611e94565b6001600160a01b0383166000908152600360205260408120805460019290612111908490613a05565b90915550506001600160a01b038216600090815260036020526040812080546001929061213f9084906139a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6121aa8282610f8f565b610b90576121c2816001600160a01b031660146129c1565b6121cd8360206129c1565b6040516020016121de929190613a38565b60408051601f198184030181529082905262461bcd60e51b825261074e916004016132e4565b61220e8282610f8f565b610b90576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122463390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6122948282610f8f565b15610b90576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60105460ff1661233a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161074e565b6010805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60105460ff16156123f95760405162461bcd60e51b815260040161074e90613901565b6010805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123673390565b816001600160a01b0316836001600160a01b031614156124905760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191015b60405180910390a3505050565b612509848484611ff9565b61251584848484612b5c565b6110065760405162461bcd60e51b815260040161074e90613aad565b600082815260116020526040902060ff8216905561254f8383612c69565b8060ff16836001600160a01b03167f2c74708379268214c9af038c0ef1a87af017d7848b0da092e560aba9d86e8d19846040516124f191815260200190565b6000828152600e602052604090205460609060ff166125c357604051636746564160e11b81526004810184905260240161074e565b6000838152600e60205260409020600201546001600160a01b03161561267a576000838152600e602052604090819020600201549051636031680160e01b8152600481018490526001600160a01b039091169063603168019060240160006040518083038186803b15801561263757600080fd5b505afa15801561264b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126739190810190613aff565b9050610641565b6000838152600e602052604081206001018054612696906137f8565b90501161272d57600c80546126aa906137f8565b80601f01602080910402602001604051908101604052809291908181526020018280546126d6906137f8565b80156127235780601f106126f857610100808354040283529160200191612723565b820191906000526020600020905b81548152906001019060200180831161270657829003601f168201915b5050505050611237565b6000838152600e6020526040902060010161274783612db7565b604051602001612758929190613b75565b6040516020818303038152906040529392505050565b6000828152600e60205260408120600481015482906127a0906001600160401b0380821691600160801b900416613956565b6001600160401b03169050806127c95760405163dd26d9dd60e01b815260040160405180910390fd5b600081486127d8600143613a05565b604080516020810193909352904090820152606081018790526080016040516020818303038152906040528051906020012060001c6128179190613c39565b6000878152600f602090815260408083208484529091528120549192509015612859576000878152600f6020908152604080832085845290915290205461285b565b815b6004850180549192506001600160401b0390911690600061287b8361397e565b82546001600160401b039182166101009390930a9283029190920219909116179055506000878152600f60205260408120816128b8600187613a05565b815260200190815260200160002054905080600014156128fc576128dd600185613a05565b6000898152600f6020908152604080832087845290915290205561293e565b6000888152600f602081815260408084208785528083529084208590558b84529190529061292b600187613a05565b8152602001908152602001600020600090555b6004850154600090612961908490600160401b90046001600160401b03166139a5565b9998505050505050505050565b60006001600160e01b0319821663780e9d6360e01b1480610641575061064182612eb4565b60105460ff16156129b65760405162461bcd60e51b815260040161074e90613901565b610884838383612f04565b606060006129d0836002613c4d565b6129db9060026139a5565b6001600160401b038111156129f2576129f26134d4565b6040519080825280601f01601f191660200182016040528015612a1c576020820181803683370190505b509050600360fc1b81600081518110612a3757612a37613884565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612a6657612a66613884565b60200101906001600160f81b031916908160001a9053506000612a8a846002613c4d565b612a959060016139a5565b90505b6001811115612b0d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612ac957612ac9613884565b1a60f81b828281518110612adf57612adf613884565b60200101906001600160f81b031916908160001a90535060049490941c93612b0681613c6c565b9050612a98565b5083156112375760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161074e565b60006001600160a01b0384163b15612c5e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ba0903390899088908890600401613c83565b602060405180830381600087803b158015612bba57600080fd5b505af1925050508015612bea575060408051601f3d908101601f19168201909252612be791810190613cc0565b60015b612c44573d808015612c18576040519150601f19603f3d011682016040523d82523d6000602084013e612c1d565b606091505b508051612c3c5760405162461bcd60e51b815260040161074e90613aad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ff1565b506001949350505050565b6001600160a01b038216612cbf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074e565b6000818152600260205260409020546001600160a01b031615612d245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074e565b612d3060008383612993565b6001600160a01b0382166000908152600360205260408120805460019290612d599084906139a5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081612ddb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e055780612def816138b0565b9150612dfe9050600a83613cdd565b9150612ddf565b6000816001600160401b03811115612e1f57612e1f6134d4565b6040519080825280601f01601f191660200182016040528015612e49576020820181803683370190505b5090505b8415611ff157612e5e600183613a05565b9150612e6b600a86613c39565b612e769060306139a5565b60f81b818381518110612e8b57612e8b613884565b60200101906001600160f81b031916908160001a905350612ead600a86613cdd565b9450612e4d565b60006001600160e01b031982166380ac58cd60e01b1480612ee557506001600160e01b03198216635b5e139f60e01b145b8061064157506301ffc9a760e01b6001600160e01b0319831614610641565b6001600160a01b038316612f5f57612f5a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612f82565b816001600160a01b0316836001600160a01b031614612f8257612f828382612fbc565b6001600160a01b038216612f995761088481613059565b826001600160a01b0316826001600160a01b031614610884576108848282613108565b60006001612fc984610e6f565b612fd39190613a05565b600083815260076020526040902054909150808214613026576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061306b90600190613a05565b6000838152600960205260408120546008805493945090928490811061309357613093613884565b9060005260206000200154905080600883815481106130b4576130b4613884565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130ec576130ec613cf1565b6001900381819060005260206000200160009055905550505050565b600061311383610e6f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613158906137f8565b90600052602060002090601f01602090048101928261317a57600085556131c0565b82601f106131935782800160ff198235161785556131c0565b828001600101855582156131c0579182015b828111156131c05782358255916020019190600101906131a5565b506131cc929150613244565b5090565b8280546131dc906137f8565b90600052602060002090601f0160209004810192826131fe57600085556131c0565b82601f1061321757805160ff19168380011785556131c0565b828001600101855582156131c0579182015b828111156131c0578251825591602001919060010190613229565b5b808211156131cc5760008155600101613245565b6001600160e01b031981168114610bc757600080fd5b60006020828403121561328157600080fd5b813561123781613259565b60005b838110156132a757818101518382015260200161328f565b838111156110065750506000910152565b600081518084526132d081602086016020860161328c565b601f01601f19169290920160200192915050565b60208152600061123760208301846132b8565b60006020828403121561330957600080fd5b5035919050565b80356001600160a01b038116811461332757600080fd5b919050565b6000806040838503121561333f57600080fd5b61334883613310565b946020939093013593505050565b60008060006060848603121561336b57600080fd5b61337484613310565b925061338260208501613310565b9150604084013590509250925092565b600080604083850312156133a557600080fd5b823591506133b560208401613310565b90509250929050565b6000602082840312156133d057600080fd5b61123782613310565b6020808252825182820181905260009190848201906040850190845b81811015613411578351835292840192918401916001016133f5565b50909695505050505050565b60008060006040848603121561343257600080fd5b8335925060208401356001600160401b038082111561345057600080fd5b818601915086601f83011261346457600080fd5b81358181111561347357600080fd5b87602082850101111561348557600080fd5b6020830194508093505050509250925092565b600080604083850312156134ab57600080fd5b6134b483613310565b9150602083013580151581146134c957600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613512576135126134d4565b604052919050565b60006001600160401b03821115613533576135336134d4565b50601f01601f191660200190565b6000806000806080858703121561355757600080fd5b61356085613310565b935061356e60208601613310565b92506040850135915060608501356001600160401b0381111561359057600080fd5b8501601f810187136135a157600080fd5b80356135b46135af8261351a565b6134ea565b8181528860208385010111156135c957600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b803560ff8116811461332757600080fd5b60008060006060848603121561361157600080fd5b61361a84613310565b92506020840135915061362f604085016135eb565b90509250925092565b6000806040838503121561364b57600080fd5b50508035926020909101359150565b6000806040838503121561366d57600080fd5b61367683613310565b91506133b560208401613310565b6000806000806080858703121561369a57600080fd5b6136a385613310565b9350602085013592506136b8604086016135eb565b9396929550929360600135925050565b80356001600160401b038116811461332757600080fd5b600080600080608085870312156136f557600080fd5b6136fe856135eb565b935061370c602086016136c8565b925061371a604086016136c8565b9150613728606086016136c8565b905092959194509250565b60006101a060ff8c16835260ff8b16602084015260ff8a1660408401526001600160401b03808a1660608501528089166080850152508060a084015261377b818401886132b8565b6001600160a01b03871660c085015285516001600160401b0390811660e08601526020870151811661010086015260408701511661012085015291506137be9050565b82516001600160401b03908116610140840152602084015181166101608401526040840151166101808301529a9950505050505050505050565b600181811c9082168061380c57607f821691505b6020821081141561382d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156138c4576138c461389a565b5060010190565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60006001600160401b0380831681851680830382111561394d5761394d61389a565b01949350505050565b60006001600160401b03838116908316818110156139765761397661389a565b039392505050565b60006001600160401b038083168181141561399b5761399b61389a565b6001019392505050565b600082198211156139b8576139b861389a565b500190565b600060ff821660ff8416808210156139d7576139d761389a565b90039392505050565b600060ff821660ff84168060ff038211156139fd576139fd61389a565b019392505050565b600082821015613a1757613a1761389a565b500390565b60008151613a2e81856020860161328c565b9290920192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613a7081601785016020880161328c565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613aa181602884016020880161328c565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060208284031215613b1157600080fd5b81516001600160401b03811115613b2757600080fd5b8201601f81018413613b3857600080fd5b8051613b466135af8261351a565b818152856020838501011115613b5b57600080fd5b613b6c82602083016020860161328c565b95945050505050565b600080845481600182811c915080831680613b9157607f831692505b6020808410821415613bb157634e487b7160e01b86526022600452602486fd5b818015613bc55760018114613bd657613c03565b60ff19861689528489019650613c03565b60008b81526020902060005b86811015613bfb5781548b820152908501908301613be2565b505084890196505b505050505050613b6c613c1d82602f60f81b815260010190565b85613a1c565b634e487b7160e01b600052601260045260246000fd5b600082613c4857613c48613c23565b500690565b6000816000190483118215151615613c6757613c6761389a565b500290565b600081613c7b57613c7b61389a565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613cb6908301846132b8565b9695505050505050565b600060208284031215613cd257600080fd5b815161123781613259565b600082613cec57613cec613c23565b500490565b634e487b7160e01b600052603160045260246000fdfe102df6c829c4ae7b33ef1bb0ebd38acf773714f0196b4f4fd4b0ade595f3daf7a2646970667358221220b043e2f05a4ab4b82c5b9175f6e97f3bffb088263d104da4282bf443a1144f9264736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000134578696c6564205261636572732050696c6f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044558525000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e68747470733a2f2f6578722e6d7970696e6174612e636c6f75642f697066732f516d506739704c4e3864706a7637506456313152356557507776797472417843464474476a33504d78544d426263000000000000000000000000000000000000

Loading