ETH Price: $2,665.66 (+1.51%)

Contract

0x8C4AcA1e6158959Bf171b7c3f87f9217655197A8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040143378982022-03-07 5:35:30900 days ago1646631330IN
 Create: MaviaNFTLand
0 ETH0.0879127935

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MaviaNFTLand

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : MaviaNFTLand.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

import "./MaviaNFT.sol";
import "./MaviaNFT.sol";

/**
 * @title Mavia NFT Land
 *
 * @notice This contract contains base implementation of Mavia NFT Land
 *
 * @dev This contract is inherited from MaviaNFT
 *
 * @author mavia.com, reviewed by King
 *
 * Copyright (c) 2021 Mavia
 */
contract MaviaNFTLand is MaviaNFT {
  /**
   * @dev Upgradable initializer
   * @param _pUri URI string
   */
  function __MaviaNFTLand_init(string memory _pUri) external initializer {
    __MaviaNFT_init("Mavia Land", "LAND", _pUri);
  }
}

File 2 of 20 : OpenseaDelegate.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

/**
  @title An OpenSea delegate proxy contract which we include for whitelisting.
  @author OpenSea
*/

//solhint-disable-next-line no-empty-blocks
contract OwnableDelegateProxy {

}

/**
  @title An OpenSea proxy registry contract which we include for whitelisting.
  @author OpenSea
*/
contract ProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

File 3 of 20 : IMintableNFT.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

interface IMintableNFT {
  function fMint(address _pTo, uint256 _pId) external; /* onlyRole(MINTER_ROLE) */

  function fMintType(
    address _pTo,
    uint256 _pId,
    uint256 _pType
  ) external; /* onlyRole(MINTER_ROLE) */

  function fBulkMint(
    address _pTo,
    uint256 _pFromId,
    uint256 _pToId
  ) external; /* onlyRole(MINTER_ROLE) */

  function fBulkMintType(
    address _pTo,
    uint256 _pFromId,
    uint256 _pToId,
    uint256 _pType
  ) external; /* onlyRole(MINTER_ROLE) */
}

File 4 of 20 : IMaviaNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

import "./IMintableNFT.sol";
import "./IBurnableNFT.sol";

// solhint-disable no-empty-blocks
interface IMaviaNFT is IMintableNFT, IBurnableNFT {

}

File 5 of 20 : IMaviaCreator.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

interface IMaviaCreator {
  /**
   * @dev Gets the creator of the token
   * @param _id ID of the token
   * @return Address of the creator
   */
  function fGetCreator(uint256 _id) external view returns (address);

  /**
   * @dev Sets the creator of the token
   * @param _id ID of the token
   * @param _creator Address of the creator for the token
   */
  function fSetCreator(uint256 _id, address _creator) external;
}

File 6 of 20 : IBurnableNFT.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

interface IBurnableNFT {
  function fBurn(uint256 _pId) external; /* onlyRole(BURNER_ROLE) || NFT owner */

  function fBulkBurn(uint256 _pFromId, uint256 _pToId) external; /* onlyRole(BURNER_ROLE) */
}

File 7 of 20 : MaviaNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
import "./interfaces/IMaviaNFT.sol";
import "./interfaces/IMaviaCreator.sol";
import "./utils/OpenseaDelegate.sol";

/**
 * @title Mavia NFT
 *
 * @notice This contract contains base implementation of Mavia NFT contracts
 *
 * @dev This contract will have all the base functions related to ERC721 NFT
 *
 * @author mavia.com, reviewed by King
 *
 * Copyright (c) 2021 Mavia
 */
contract MaviaNFT is ERC721Upgradeable, OwnableUpgradeable, AccessControlUpgradeable, IMaviaNFT, IMaviaCreator {
  bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
  bytes32 public constant CREATOR_ROLE = keccak256("CREATOR_ROLE");
  bytes32 public constant APPROVER_ROLE = keccak256("APPROVER_ROLE");

  mapping(uint256 => address) private _creators;
  mapping(uint256 => uint256) private _ownTime;

  string public uri;

  address public proxyRegistryAddress;
  bool public isOpenSeaProxyActive;

  mapping(uint256 => uint256) public typeIds;

  event SetURI(string _uri);

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

  /**
   * @dev Upgradable initializer
   * @param _pName Token name
   * @param _pSymbol Token symbol
   * @param _pUri URI string
   */
  function __MaviaNFT_init(
    string memory _pName,
    string memory _pSymbol,
    string memory _pUri
  ) internal initializer {
    __Ownable_init();
    __AccessControl_init();
    __ERC721_init(_pName, _pSymbol);
    _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
    uri = _pUri;
  }

  /**
   * @dev Return of base uri
   */
  function _baseURI() internal view virtual override returns (string memory) {
    return uri;
  }

  /**
   * @notice Active opensea proxy - Emergency case
   * @dev This function is only callable by owner
   * @param _pProxyRegistryAddress Address of opensea proxy
   * @param _pIsOpenSeaProxyActive Active opensea proxy by assigning true value
   */
  function fActiveOpenseaProxy(address _pProxyRegistryAddress, bool _pIsOpenSeaProxyActive) external onlyOwner {
    proxyRegistryAddress = _pProxyRegistryAddress;
    isOpenSeaProxyActive = _pIsOpenSeaProxyActive;
  }

  /**
   * @dev Sets a new URI for all token types, by relying on the token type ID
   * @dev This function is only callable by owner
   * @param _pUri String of uri
   */
  function fSetURI(string memory _pUri) external onlyOwner {
    uri = _pUri;

    emit SetURI(_pUri);
  }

  /**
   * @notice Set nft type
   * @dev Set NFT type by the contract owner
   * @param _pTypeId Type id: 0 common, 1 rare, 2 legendary
   * @param _pIds Token ids
   * Required Statements
   * - MaviaNFT:01 Invalid ids
   */
  function fSetTypeIds(uint256 _pTypeId, uint256[] memory _pIds) external onlyOwner {
    require(_pIds.length > 0, "MaviaNFT:01");

    for (uint i = 0; i < _pIds.length; i++) {
      typeIds[_pIds[i]] = _pTypeId;
    }
  }

  /**
   * @dev Transfer multi NFTs
   * @param _pTo Address of the token owner
   * @param _pIds Token ids
   * Required Statements
   * - MaviaNFT:01 Invalid ids
   */
  function fBulkTransfer(address _pTo, uint256[] memory _pIds) external {
    require(_pIds.length > 0, "MaviaNFT:01");

    for (uint i = 0; i < _pIds.length; i++) {
      transferFrom(_msgSender(), _pTo, _pIds[i]);
    }
  }

  /**
   * @dev Mint a new NFT
   * @param _pTo Address of the token owner
   * @param _pId Token id
   */
  function fMint(address _pTo, uint256 _pId) external override onlyRole(MINTER_ROLE) {
    _mint(_pTo, _pId);
    typeIds[_pId] = 0;
  }

  /**
   * @dev Mint a new NFT
   * @param _pTo Address of the token owner
   * @param _pId Token id
   * @param _pType Token type
   */
  function fMintType(
    address _pTo,
    uint256 _pId,
    uint256 _pType
  ) external override onlyRole(MINTER_ROLE) {
    _mint(_pTo, _pId);
    typeIds[_pId] = _pType;
  }

  /**
   * @dev Mint a Bulk NFT
   * @param _pTo Address of the token owner
   * @param _pFromId Token id from
   * @param _pToId Token id to
   */
  function fBulkMint(
    address _pTo,
    uint256 _pFromId,
    uint256 _pToId
  ) external override onlyRole(MINTER_ROLE) {
    for (uint256 id_ = _pFromId; id_ <= _pToId; id_++) {
      _mint(_pTo, id_);
      typeIds[id_] = 0;
    }
  }

  /**
   * @dev Mint a Bulk NFT
   * @param _pTo Address of the token owner
   * @param _pFromId token id from
   * @param _pToId token id to
   * @param _pType Token type
   */
  function fBulkMintType(
    address _pTo,
    uint256 _pFromId,
    uint256 _pToId,
    uint256 _pType
  ) external override onlyRole(MINTER_ROLE) {
    for (uint256 id_ = _pFromId; id_ <= _pToId; id_++) {
      _mint(_pTo, id_);
      typeIds[id_] = _pType;
    }
  }

  /**
   * @notice Burn an NFT
   * @dev Burn an NFT by the token owner and Burner role
   * @param _pId Token id
   * Required Statements
   * - MaviaNFT:01 Only owner of NFT or whoever has burner role can burn
   */
  function fBurn(uint256 _pId) external override {
    require(ownerOf(_pId) == _msgSender() || hasRole(BURNER_ROLE, _msgSender()), "MaviaNFT:01");
    _burn(_pId);
  }

  /**
   * @notice Burn a Bulk NFT
   * @dev Burn an NFT by the token owner and Burner role
   * @param _pFromId Token id
   * @param _pToId Token id
   */
  function fBulkBurn(uint256 _pFromId, uint256 _pToId) external override onlyRole(BURNER_ROLE) {
    for (uint256 id_ = _pFromId; id_ <= _pToId; id_++) {
      _burn(id_);
    }
  }

  /**
   * @notice Set creator
   * @dev Whoever has creator role, can change creator
   * @param _pId Token ID
   * @param _pAccount Token creator
   */
  function fSetCreator(uint256 _pId, address _pAccount) external override onlyRole(CREATOR_ROLE) {
    _creators[_pId] = _pAccount;
  }

  /**
   * @dev Get creator
   * @param _pId token ID
   */
  function fGetCreator(uint256 _pId) external view override returns (address) {
    return _creators[_pId];
  }

  /**
   * @dev Get own Time
   * @param _pId token ID
   */
  function fGetOwnTime(uint256 _pId) external view returns (uint256) {
    return _ownTime[_pId];
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   * @param _pAccount Address of Owner
   * @param _pOperator Address of operator
   */
  function isApprovedForAll(address _pAccount, address _pOperator) public view override returns (bool) {
    ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
    if (isOpenSeaProxyActive && address(proxyRegistry.proxies(_pAccount)) == _pOperator) {
      return true;
    }

    return hasRole(APPROVER_ROLE, _pOperator) || super.isApprovedForAll(_pAccount, _pOperator);
  }

  /**
   * @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 _pFrom,
    address _pTo,
    uint256 _pTokenId
  ) internal override {
    _ownTime[_pTokenId] = block.timestamp;
    super._transfer(_pFrom, _pTo, _pTokenId);
  }

  /**
   * @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 _pTo, uint256 _pTokenId) internal override {
    _creators[_pTokenId] = _pTo;
    _ownTime[_pTokenId] = block.timestamp;
    super._mint(_pTo, _pTokenId);
  }

  /**
   * @dev Destroys `tokenId`.
   * The approval is cleared when the token is burned.
   *
   * Requirements:
   *
   * - `tokenId` must exist.
   *
   * Emits a {Transfer} event.
   */
  function _burn(uint256 _pTokenId) internal override {
    _ownTime[_pTokenId] = block.timestamp;
    super._burn(_pTokenId);
  }
}

File 8 of 20 : IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 20 : ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal initializer {
        __ERC165_init_unchained();
    }

    function __ERC165_init_unchained() internal initializer {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }
    uint256[50] private __gap;
}

File 10 of 20 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    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 11 of 20 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}

File 12 of 20 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 13 of 20 : IERC721MetadataUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721Upgradeable is IERC165Upgradeable {
    /**
     * @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 15 of 20 : IERC721ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721ReceiverUpgradeable {
    /**
     * @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 16 of 20 : ERC721Upgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721Upgradeable.sol";
import "./IERC721ReceiverUpgradeable.sol";
import "./extensions/IERC721MetadataUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../utils/StringsUpgradeable.sol";
import "../../utils/introspection/ERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable {
    using AddressUpgradeable for address;
    using StringsUpgradeable 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.
     */
    function __ERC721_init(string memory name_, string memory symbol_) internal initializer {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) {
        return
            interfaceId == type(IERC721Upgradeable).interfaceId ||
            interfaceId == type(IERC721MetadataUpgradeable).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 = ERC721Upgradeable.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @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 = ERC721Upgradeable.ownerOf(tokenId);

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721ReceiverUpgradeable.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 {}
    uint256[44] private __gap;
}

File 17 of 20 : Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

File 18 of 20 : OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
    uint256[49] private __gap;
}

File 19 of 20 : IAccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControlUpgradeable {
    /**
     * @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;
}

File 20 of 20 : AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../utils/StringsUpgradeable.sol";
import "../utils/introspection/ERC165Upgradeable.sol";
import "../proxy/utils/Initializable.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 AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    function __AccessControl_init() internal initializer {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __AccessControl_init_unchained();
    }

    function __AccessControl_init_unchained() internal initializer {
    }
    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(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view 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 {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        StringsUpgradeable.toHexString(uint160(account), 20),
                        " is missing role ",
                        StringsUpgradeable.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 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 granted `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}.
     * ====
     */
    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);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
    uint256[49] private __gap;
}

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"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":false,"internalType":"string","name":"_uri","type":"string"}],"name":"SetURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"APPROVER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CREATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_pUri","type":"string"}],"name":"__MaviaNFTLand_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pProxyRegistryAddress","type":"address"},{"internalType":"bool","name":"_pIsOpenSeaProxyActive","type":"bool"}],"name":"fActiveOpenseaProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pFromId","type":"uint256"},{"internalType":"uint256","name":"_pToId","type":"uint256"}],"name":"fBulkBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pFromId","type":"uint256"},{"internalType":"uint256","name":"_pToId","type":"uint256"}],"name":"fBulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pFromId","type":"uint256"},{"internalType":"uint256","name":"_pToId","type":"uint256"},{"internalType":"uint256","name":"_pType","type":"uint256"}],"name":"fBulkMintType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256[]","name":"_pIds","type":"uint256[]"}],"name":"fBulkTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fGetCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fGetOwnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pId","type":"uint256"},{"internalType":"uint256","name":"_pType","type":"uint256"}],"name":"fMintType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"},{"internalType":"address","name":"_pAccount","type":"address"}],"name":"fSetCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pTypeId","type":"uint256"},{"internalType":"uint256[]","name":"_pIds","type":"uint256[]"}],"name":"fSetTypeIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_pUri","type":"string"}],"name":"fSetURI","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_pAccount","type":"address"},{"internalType":"address","name":"_pOperator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpenSeaProxyActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b50612c79806100206000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c806386519afb11610151578063b88d4fde116100c3578063d539139311610087578063d5391393146105e4578063d547741f146105f9578063e985e9c51461060c578063eac989f81461061f578063f1ee4c5b14610627578063f2fde38b1461063a57600080fd5b8063b88d4fde1461056f578063c46cddf814610582578063c48a6f8514610595578063c87b56dd146105be578063cd7c0326146105d157600080fd5b8063977027ec11610115578063977027ec146104fb578063a217fddf1461050e578063a22cb46514610516578063a3b5004714610529578063a602382314610549578063aa2f73351461055c57600080fd5b806386519afb146104955780638aeda25a146104a85780638da5cb5b146104cf57806391d14854146104e057806395d89b41146104f357600080fd5b806336568abe116101ea5780636352211e116101ae5780636352211e1461042d5780636c529a26146104405780636e3ca37b1461045457806370a0823114610467578063715018a61461047a5780637a1918511461048257600080fd5b806336568abe146103ba5780634245962b146103cd57806342842e0e146103f457806345d594d8146104075780635e0cc6441461041a57600080fd5b8063132f06061161023c578063132f06061461030957806323b872dd14610337578063248a9ca31461034a578063282c51f31461036d5780632ba78b3d146103945780632f2ff15d146103a757600080fd5b806301ffc9a71461027957806306fdde03146102a1578063081812fc146102b6578063095ea7b3146102e157806309b519ac146102f6575b600080fd5b61028c610287366004612721565b61064d565b60405190151581526020015b60405180910390f35b6102a961068b565b6040516102989190612918565b6102c96102c43660046126e5565b61071d565b6040516001600160a01b039091168152602001610298565b6102f46102ef36600461264c565b6107b7565b005b6102f46103043660046126ab565b6108cd565b6103296103173660046126e5565b600090815260fc602052604090205490565b604051908152602001610298565b6102f4610345366004612510565b610924565b6103296103583660046126e5565b600090815260c9602052604090206001015490565b6103297f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102f46103a23660046126e5565b610955565b6102f46103b53660046126fd565b6109c1565b6102f46103c83660046126fd565b6109e7565b6103297f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf81565b6102f4610402366004612510565b610a65565b6102f46104153660046126fd565b610a80565b6102f4610428366004612677565b610ada565b6102c961043b3660046126e5565b610b2e565b60fe5461028c90600160a01b900460ff1681565b6102f46104623660046127bb565b610ba5565b6103296104753660046124bc565b610c4e565b6102f4610cd5565b6102f46104903660046125cd565b610d0b565b6102f46104a3366004612775565b610d7c565b6103297f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f81565b6097546001600160a01b03166102c9565b61028c6104ee3660046126fd565b610e31565b6102a9610e5c565b6102f461050936600461261b565b610e6b565b610329600081565b6102f461052436600461261b565b610ec2565b6103296105373660046126e5565b60ff6020526000908152604090205481565b6102f461055736600461264c565b610f87565b6102f461056a366004612775565b610fbd565b6102f461057d366004612550565b611035565b6102f46105903660046127ea565b61106d565b6102c96105a33660046126e5565b600090815260fb60205260409020546001600160a01b031690565b6102a96105cc3660046126e5565b6110bc565b60fe546102c9906001600160a01b031681565b610329600080516020612c2483398151915281565b6102f46106073660046126fd565b611197565b61028c61061a3660046124d8565b6111bd565b6102a96112d9565b6102f4610635366004612677565b611367565b6102f46106483660046124bc565b61139e565b60006001600160e01b03198216158061067657506001600160e01b0319821663815ffb5d60e01b145b80610685575061068582611436565b92915050565b60606065805461069a90612b4c565b80601f01602080910402602001604051908101604052809291908181526020018280546106c690612b4c565b80156107135780601f106106e857610100808354040283529160200191610713565b820191906000526020600020905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b031661079b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b60006107c282610b2e565b9050806001600160a01b0316836001600160a01b031614156108305760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610792565b336001600160a01b038216148061084c575061084c81336111bd565b6108be5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610792565b6108c8838361145b565b505050565b600080516020612c248339815191526108e681336114c9565b835b83811161091c576108f9868261152d565b600081815260ff602052604090208390558061091481612b87565b9150506108e8565b505050505050565b61092e338261156b565b61094a5760405162461bcd60e51b815260040161079290612a25565b6108c883838361163a565b3361095f82610b2e565b6001600160a01b0316148061099957506109997f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610e31565b6109b55760405162461bcd60e51b8152600401610792906129cb565b6109be81611656565b50565b600082815260c960205260409020600101546109dd81336114c9565b6108c88383611670565b6001600160a01b0381163314610a575760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610792565b610a6182826116f6565b5050565b6108c883838360405180602001604052806000815250611035565b7f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f610aab81336114c9565b50600091825260fb602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b600080516020612c24833981519152610af381336114c9565b825b828111610b2757610b06858261152d565b600081815260ff602052604081205580610b1f81612b87565b915050610af5565b5050505050565b6000818152606760205260408120546001600160a01b0316806106855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610792565b6097546001600160a01b03163314610bcf5760405162461bcd60e51b8152600401610792906129f0565b6000815111610bf05760405162461bcd60e51b8152600401610792906129cb565b60005b81518110156108c8578260ff6000848481518110610c2157634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020819055508080610c4690612b87565b915050610bf3565b60006001600160a01b038216610cb95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610792565b506001600160a01b031660009081526068602052604090205490565b6097546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610792906129f0565b610d09600061175d565b565b6000815111610d2c5760405162461bcd60e51b8152600401610792906129cb565b60005b81518110156108c857610d6a3384848481518110610d5d57634e487b7160e01b600052603260045260246000fd5b6020026020010151610924565b80610d7481612b87565b915050610d2f565b600054610100900460ff1680610d95575060005460ff16155b610db15760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015610dd3576000805461ffff19166101011790555b610e1c6040518060400160405280600a81526020016913585d9a584813185b9960b21b815250604051806040016040528060048152602001631310539160e21b815250846117af565b8015610a61576000805461ff00191690555050565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461069a90612b4c565b6097546001600160a01b03163314610e955760405162461bcd60e51b8152600401610792906129f0565b60fe8054911515600160a01b026001600160a81b03199092166001600160a01b0390931692909217179055565b6001600160a01b038216331415610f1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610792565b336000818152606a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080516020612c24833981519152610fa081336114c9565b610faa838361152d565b50600090815260ff602052604081205550565b6097546001600160a01b03163314610fe75760405162461bcd60e51b8152600401610792906129f0565b8051610ffa9060fd906020840190612348565b507f562bf0237fa5139edc73ec903039c3a552e19ae62cc8292da62afeea43024b0a8160405161102a9190612918565b60405180910390a150565b61103f338361156b565b61105b5760405162461bcd60e51b815260040161079290612a25565b61106784848484611856565b50505050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861109881336114c9565b825b828111611067576110aa81611656565b806110b481612b87565b91505061109a565b6000818152606760205260409020546060906001600160a01b031661113b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610792565b6000611145611889565b905060008151116111655760405180602001604052806000815250611190565b8061116f84611898565b604051602001611180929190612837565b6040516020818303038152906040525b9392505050565b600082815260c960205260409020600101546111b381336114c9565b6108c883836116f6565b60fe546000906001600160a01b03811690600160a01b900460ff168015611268575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561122557600080fd5b505afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d9190612759565b6001600160a01b0316145b15611277576001915050610685565b6112a17f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf84610e31565b806112d157506001600160a01b038085166000908152606a602090815260408083209387168352929052205460ff165b949350505050565b60fd80546112e690612b4c565b80601f016020809104026020016040519081016040528092919081815260200182805461131290612b4c565b801561135f5780601f106113345761010080835404028352916020019161135f565b820191906000526020600020905b81548152906001019060200180831161134257829003601f168201915b505050505081565b600080516020612c2483398151915261138081336114c9565b61138a848461152d565b50600091825260ff60205260409091205550565b6097546001600160a01b031633146113c85760405162461bcd60e51b8152600401610792906129f0565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610792565b6109be8161175d565b60006001600160e01b03198216637965db0b60e01b14806106855750610685826119b2565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061149082610b2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114d38282610e31565b610a61576114eb816001600160a01b03166014611a02565b6114f6836020611a02565b604051602001611507929190612866565b60408051601f198184030181529082905262461bcd60e51b825261079291600401612918565b600081815260fb6020908152604080832080546001600160a01b0319166001600160a01b03871617905560fc9091529020429055610a618282611be4565b6000818152606760205260408120546001600160a01b03166115e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610792565b60006115ef83610b2e565b9050806001600160a01b0316846001600160a01b0316148061162a5750836001600160a01b031661161f8461071d565b6001600160a01b0316145b806112d157506112d181856111bd565b600081815260fc602052604090204290556108c8838383611d26565b600081815260fc602052604090204290556109be81611ec6565b61167a8282610e31565b610a6157600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556116b23390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6117008282610e31565b15610a6157600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b609780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16806117c8575060005460ff16155b6117e45760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015611806576000805461ffff19166101011790555b61180e611f61565b611816611fdc565b611820848461204b565b61182b6000336120d2565b815161183e9060fd906020850190612348565b508015611067576000805461ff001916905550505050565b61186184848461163a565b61186d848484846120dc565b6110675760405162461bcd60e51b81526004016107929061292b565b606060fd805461069a90612b4c565b6060816118bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118e657806118d081612b87565b91506118df9050600a83612abf565b91506118c0565b60008167ffffffffffffffff81111561190f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611939576020820181803683370190505b5090505b84156112d15761194e600183612af2565b915061195b600a86612ba2565b611966906030612aa7565b60f81b81838151811061198957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119ab600a86612abf565b945061193d565b60006001600160e01b031982166380ac58cd60e01b14806119e357506001600160e01b03198216635b5e139f60e01b145b8061068557506301ffc9a760e01b6001600160e01b0319831614610685565b60606000611a11836002612ad3565b611a1c906002612aa7565b67ffffffffffffffff811115611a4257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a6c576020820181803683370190505b509050600360fc1b81600081518110611a9557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611ad257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611af6846002612ad3565b611b01906001612aa7565b90505b6001811115611b95576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b4357634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b6757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611b8e81612b35565b9050611b04565b5083156111905760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610792565b6001600160a01b038216611c3a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610792565b6000818152606760205260409020546001600160a01b031615611c9f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610792565b6001600160a01b0382166000908152606860205260408120805460019290611cc8908490612aa7565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b826001600160a01b0316611d3982610b2e565b6001600160a01b031614611da15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610792565b6001600160a01b038216611e035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610792565b611e0e60008261145b565b6001600160a01b0383166000908152606860205260408120805460019290611e37908490612af2565b90915550506001600160a01b0382166000908152606860205260408120805460019290611e65908490612aa7565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ed182610b2e565b9050611ede60008361145b565b6001600160a01b0381166000908152606860205260408120805460019290611f07908490612af2565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff1680611f7a575060005460ff16155b611f965760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015611fb8576000805461ffff19166101011790555b611fc06121e9565b611fc8612253565b80156109be576000805461ff001916905550565b600054610100900460ff1680611ff5575060005460ff16155b6120115760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015612033576000805461ffff19166101011790555b61203b6121e9565b6120436121e9565b611fc86121e9565b600054610100900460ff1680612064575060005460ff16155b6120805760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff161580156120a2576000805461ffff19166101011790555b6120aa6121e9565b6120b26121e9565b6120bc83836122b3565b80156108c8576000805461ff0019169055505050565b610a618282611670565b60006001600160a01b0384163b156121de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121209033908990889088906004016128db565b602060405180830381600087803b15801561213a57600080fd5b505af192505050801561216a575060408051601f3d908101601f191682019092526121679181019061273d565b60015b6121c4573d808015612198576040519150601f19603f3d011682016040523d82523d6000602084013e61219d565b606091505b5080516121bc5760405162461bcd60e51b81526004016107929061292b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d1565b506001949350505050565b600054610100900460ff1680612202575060005460ff16155b61221e5760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015611fc8576000805461ffff191661010117905580156109be576000805461ff001916905550565b600054610100900460ff168061226c575060005460ff16155b6122885760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff161580156122aa576000805461ffff19166101011790555b611fc83361175d565b600054610100900460ff16806122cc575060005460ff16155b6122e85760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff1615801561230a576000805461ffff19166101011790555b825161231d906065906020860190612348565b508151612331906066906020850190612348565b5080156108c8576000805461ff0019169055505050565b82805461235490612b4c565b90600052602060002090601f01602090048101928261237657600085556123bc565b82601f1061238f57805160ff19168380011785556123bc565b828001600101855582156123bc579182015b828111156123bc5782518255916020019190600101906123a1565b506123c89291506123cc565b5090565b5b808211156123c857600081556001016123cd565b600067ffffffffffffffff8311156123fb576123fb612be2565b61240e601f8401601f1916602001612a76565b905082815283838301111561242257600080fd5b828260208301376000602084830101529392505050565b600082601f830112612449578081fd5b8135602067ffffffffffffffff82111561246557612465612be2565b8160051b612474828201612a76565b83815282810190868401838801850189101561248e578687fd5b8693505b858410156124b0578035835260019390930192918401918401612492565b50979650505050505050565b6000602082840312156124cd578081fd5b813561119081612bf8565b600080604083850312156124ea578081fd5b82356124f581612bf8565b9150602083013561250581612bf8565b809150509250929050565b600080600060608486031215612524578081fd5b833561252f81612bf8565b9250602084013561253f81612bf8565b929592945050506040919091013590565b60008060008060808587031215612565578081fd5b843561257081612bf8565b9350602085013561258081612bf8565b925060408501359150606085013567ffffffffffffffff8111156125a2578182fd5b8501601f810187136125b2578182fd5b6125c1878235602084016123e1565b91505092959194509250565b600080604083850312156125df578182fd5b82356125ea81612bf8565b9150602083013567ffffffffffffffff811115612605578182fd5b61261185828601612439565b9150509250929050565b6000806040838503121561262d578182fd5b823561263881612bf8565b915060208301358015158114612505578182fd5b6000806040838503121561265e578182fd5b823561266981612bf8565b946020939093013593505050565b60008060006060848603121561268b578283fd5b833561269681612bf8565b95602085013595506040909401359392505050565b600080600080608085870312156126c0578384fd5b84356126cb81612bf8565b966020860135965060408601359560600135945092505050565b6000602082840312156126f6578081fd5b5035919050565b6000806040838503121561270f578182fd5b82359150602083013561250581612bf8565b600060208284031215612732578081fd5b813561119081612c0d565b60006020828403121561274e578081fd5b815161119081612c0d565b60006020828403121561276a578081fd5b815161119081612bf8565b600060208284031215612786578081fd5b813567ffffffffffffffff81111561279c578182fd5b8201601f810184136127ac578182fd5b6112d1848235602084016123e1565b600080604083850312156127cd578182fd5b82359150602083013567ffffffffffffffff811115612605578182fd5b600080604083850312156127fc578182fd5b50508035926020909101359150565b60008151808452612823816020860160208601612b09565b601f01601f19169290920160200192915050565b60008351612849818460208801612b09565b83519083019061285d818360208801612b09565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161289e816017850160208801612b09565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516128cf816028840160208801612b09565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061290e9083018461280b565b9695505050505050565b602081526000611190602083018461280b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252600b908201526a4d617669614e46543a303160a81b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a9f57612a9f612be2565b604052919050565b60008219821115612aba57612aba612bb6565b500190565b600082612ace57612ace612bcc565b500490565b6000816000190483118215151615612aed57612aed612bb6565b500290565b600082821015612b0457612b04612bb6565b500390565b60005b83811015612b24578181015183820152602001612b0c565b838111156110675750506000910152565b600081612b4457612b44612bb6565b506000190190565b600181811c90821680612b6057607f821691505b60208210811415612b8157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9b57612b9b612bb6565b5060010190565b600082612bb157612bb1612bcc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109be57600080fd5b6001600160e01b0319811681146109be57600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a26469706673582212200074feb7a6b89ab850e35c8967cda4293d6c7b8eace27878e96200eb3c8e9c7964736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102745760003560e01c806386519afb11610151578063b88d4fde116100c3578063d539139311610087578063d5391393146105e4578063d547741f146105f9578063e985e9c51461060c578063eac989f81461061f578063f1ee4c5b14610627578063f2fde38b1461063a57600080fd5b8063b88d4fde1461056f578063c46cddf814610582578063c48a6f8514610595578063c87b56dd146105be578063cd7c0326146105d157600080fd5b8063977027ec11610115578063977027ec146104fb578063a217fddf1461050e578063a22cb46514610516578063a3b5004714610529578063a602382314610549578063aa2f73351461055c57600080fd5b806386519afb146104955780638aeda25a146104a85780638da5cb5b146104cf57806391d14854146104e057806395d89b41146104f357600080fd5b806336568abe116101ea5780636352211e116101ae5780636352211e1461042d5780636c529a26146104405780636e3ca37b1461045457806370a0823114610467578063715018a61461047a5780637a1918511461048257600080fd5b806336568abe146103ba5780634245962b146103cd57806342842e0e146103f457806345d594d8146104075780635e0cc6441461041a57600080fd5b8063132f06061161023c578063132f06061461030957806323b872dd14610337578063248a9ca31461034a578063282c51f31461036d5780632ba78b3d146103945780632f2ff15d146103a757600080fd5b806301ffc9a71461027957806306fdde03146102a1578063081812fc146102b6578063095ea7b3146102e157806309b519ac146102f6575b600080fd5b61028c610287366004612721565b61064d565b60405190151581526020015b60405180910390f35b6102a961068b565b6040516102989190612918565b6102c96102c43660046126e5565b61071d565b6040516001600160a01b039091168152602001610298565b6102f46102ef36600461264c565b6107b7565b005b6102f46103043660046126ab565b6108cd565b6103296103173660046126e5565b600090815260fc602052604090205490565b604051908152602001610298565b6102f4610345366004612510565b610924565b6103296103583660046126e5565b600090815260c9602052604090206001015490565b6103297f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102f46103a23660046126e5565b610955565b6102f46103b53660046126fd565b6109c1565b6102f46103c83660046126fd565b6109e7565b6103297f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf81565b6102f4610402366004612510565b610a65565b6102f46104153660046126fd565b610a80565b6102f4610428366004612677565b610ada565b6102c961043b3660046126e5565b610b2e565b60fe5461028c90600160a01b900460ff1681565b6102f46104623660046127bb565b610ba5565b6103296104753660046124bc565b610c4e565b6102f4610cd5565b6102f46104903660046125cd565b610d0b565b6102f46104a3366004612775565b610d7c565b6103297f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f81565b6097546001600160a01b03166102c9565b61028c6104ee3660046126fd565b610e31565b6102a9610e5c565b6102f461050936600461261b565b610e6b565b610329600081565b6102f461052436600461261b565b610ec2565b6103296105373660046126e5565b60ff6020526000908152604090205481565b6102f461055736600461264c565b610f87565b6102f461056a366004612775565b610fbd565b6102f461057d366004612550565b611035565b6102f46105903660046127ea565b61106d565b6102c96105a33660046126e5565b600090815260fb60205260409020546001600160a01b031690565b6102a96105cc3660046126e5565b6110bc565b60fe546102c9906001600160a01b031681565b610329600080516020612c2483398151915281565b6102f46106073660046126fd565b611197565b61028c61061a3660046124d8565b6111bd565b6102a96112d9565b6102f4610635366004612677565b611367565b6102f46106483660046124bc565b61139e565b60006001600160e01b03198216158061067657506001600160e01b0319821663815ffb5d60e01b145b80610685575061068582611436565b92915050565b60606065805461069a90612b4c565b80601f01602080910402602001604051908101604052809291908181526020018280546106c690612b4c565b80156107135780601f106106e857610100808354040283529160200191610713565b820191906000526020600020905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b031661079b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b60006107c282610b2e565b9050806001600160a01b0316836001600160a01b031614156108305760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610792565b336001600160a01b038216148061084c575061084c81336111bd565b6108be5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610792565b6108c8838361145b565b505050565b600080516020612c248339815191526108e681336114c9565b835b83811161091c576108f9868261152d565b600081815260ff602052604090208390558061091481612b87565b9150506108e8565b505050505050565b61092e338261156b565b61094a5760405162461bcd60e51b815260040161079290612a25565b6108c883838361163a565b3361095f82610b2e565b6001600160a01b0316148061099957506109997f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610e31565b6109b55760405162461bcd60e51b8152600401610792906129cb565b6109be81611656565b50565b600082815260c960205260409020600101546109dd81336114c9565b6108c88383611670565b6001600160a01b0381163314610a575760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610792565b610a6182826116f6565b5050565b6108c883838360405180602001604052806000815250611035565b7f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f610aab81336114c9565b50600091825260fb602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b600080516020612c24833981519152610af381336114c9565b825b828111610b2757610b06858261152d565b600081815260ff602052604081205580610b1f81612b87565b915050610af5565b5050505050565b6000818152606760205260408120546001600160a01b0316806106855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610792565b6097546001600160a01b03163314610bcf5760405162461bcd60e51b8152600401610792906129f0565b6000815111610bf05760405162461bcd60e51b8152600401610792906129cb565b60005b81518110156108c8578260ff6000848481518110610c2157634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020819055508080610c4690612b87565b915050610bf3565b60006001600160a01b038216610cb95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610792565b506001600160a01b031660009081526068602052604090205490565b6097546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610792906129f0565b610d09600061175d565b565b6000815111610d2c5760405162461bcd60e51b8152600401610792906129cb565b60005b81518110156108c857610d6a3384848481518110610d5d57634e487b7160e01b600052603260045260246000fd5b6020026020010151610924565b80610d7481612b87565b915050610d2f565b600054610100900460ff1680610d95575060005460ff16155b610db15760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015610dd3576000805461ffff19166101011790555b610e1c6040518060400160405280600a81526020016913585d9a584813185b9960b21b815250604051806040016040528060048152602001631310539160e21b815250846117af565b8015610a61576000805461ff00191690555050565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461069a90612b4c565b6097546001600160a01b03163314610e955760405162461bcd60e51b8152600401610792906129f0565b60fe8054911515600160a01b026001600160a81b03199092166001600160a01b0390931692909217179055565b6001600160a01b038216331415610f1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610792565b336000818152606a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080516020612c24833981519152610fa081336114c9565b610faa838361152d565b50600090815260ff602052604081205550565b6097546001600160a01b03163314610fe75760405162461bcd60e51b8152600401610792906129f0565b8051610ffa9060fd906020840190612348565b507f562bf0237fa5139edc73ec903039c3a552e19ae62cc8292da62afeea43024b0a8160405161102a9190612918565b60405180910390a150565b61103f338361156b565b61105b5760405162461bcd60e51b815260040161079290612a25565b61106784848484611856565b50505050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861109881336114c9565b825b828111611067576110aa81611656565b806110b481612b87565b91505061109a565b6000818152606760205260409020546060906001600160a01b031661113b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610792565b6000611145611889565b905060008151116111655760405180602001604052806000815250611190565b8061116f84611898565b604051602001611180929190612837565b6040516020818303038152906040525b9392505050565b600082815260c960205260409020600101546111b381336114c9565b6108c883836116f6565b60fe546000906001600160a01b03811690600160a01b900460ff168015611268575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561122557600080fd5b505afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d9190612759565b6001600160a01b0316145b15611277576001915050610685565b6112a17f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf84610e31565b806112d157506001600160a01b038085166000908152606a602090815260408083209387168352929052205460ff165b949350505050565b60fd80546112e690612b4c565b80601f016020809104026020016040519081016040528092919081815260200182805461131290612b4c565b801561135f5780601f106113345761010080835404028352916020019161135f565b820191906000526020600020905b81548152906001019060200180831161134257829003601f168201915b505050505081565b600080516020612c2483398151915261138081336114c9565b61138a848461152d565b50600091825260ff60205260409091205550565b6097546001600160a01b031633146113c85760405162461bcd60e51b8152600401610792906129f0565b6001600160a01b03811661142d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610792565b6109be8161175d565b60006001600160e01b03198216637965db0b60e01b14806106855750610685826119b2565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061149082610b2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114d38282610e31565b610a61576114eb816001600160a01b03166014611a02565b6114f6836020611a02565b604051602001611507929190612866565b60408051601f198184030181529082905262461bcd60e51b825261079291600401612918565b600081815260fb6020908152604080832080546001600160a01b0319166001600160a01b03871617905560fc9091529020429055610a618282611be4565b6000818152606760205260408120546001600160a01b03166115e45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610792565b60006115ef83610b2e565b9050806001600160a01b0316846001600160a01b0316148061162a5750836001600160a01b031661161f8461071d565b6001600160a01b0316145b806112d157506112d181856111bd565b600081815260fc602052604090204290556108c8838383611d26565b600081815260fc602052604090204290556109be81611ec6565b61167a8282610e31565b610a6157600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556116b23390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6117008282610e31565b15610a6157600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b609780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16806117c8575060005460ff16155b6117e45760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015611806576000805461ffff19166101011790555b61180e611f61565b611816611fdc565b611820848461204b565b61182b6000336120d2565b815161183e9060fd906020850190612348565b508015611067576000805461ff001916905550505050565b61186184848461163a565b61186d848484846120dc565b6110675760405162461bcd60e51b81526004016107929061292b565b606060fd805461069a90612b4c565b6060816118bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118e657806118d081612b87565b91506118df9050600a83612abf565b91506118c0565b60008167ffffffffffffffff81111561190f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611939576020820181803683370190505b5090505b84156112d15761194e600183612af2565b915061195b600a86612ba2565b611966906030612aa7565b60f81b81838151811061198957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119ab600a86612abf565b945061193d565b60006001600160e01b031982166380ac58cd60e01b14806119e357506001600160e01b03198216635b5e139f60e01b145b8061068557506301ffc9a760e01b6001600160e01b0319831614610685565b60606000611a11836002612ad3565b611a1c906002612aa7565b67ffffffffffffffff811115611a4257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a6c576020820181803683370190505b509050600360fc1b81600081518110611a9557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611ad257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611af6846002612ad3565b611b01906001612aa7565b90505b6001811115611b95576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b4357634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b6757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611b8e81612b35565b9050611b04565b5083156111905760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610792565b6001600160a01b038216611c3a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610792565b6000818152606760205260409020546001600160a01b031615611c9f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610792565b6001600160a01b0382166000908152606860205260408120805460019290611cc8908490612aa7565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b826001600160a01b0316611d3982610b2e565b6001600160a01b031614611da15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610792565b6001600160a01b038216611e035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610792565b611e0e60008261145b565b6001600160a01b0383166000908152606860205260408120805460019290611e37908490612af2565b90915550506001600160a01b0382166000908152606860205260408120805460019290611e65908490612aa7565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ed182610b2e565b9050611ede60008361145b565b6001600160a01b0381166000908152606860205260408120805460019290611f07908490612af2565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff1680611f7a575060005460ff16155b611f965760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015611fb8576000805461ffff19166101011790555b611fc06121e9565b611fc8612253565b80156109be576000805461ff001916905550565b600054610100900460ff1680611ff5575060005460ff16155b6120115760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015612033576000805461ffff19166101011790555b61203b6121e9565b6120436121e9565b611fc86121e9565b600054610100900460ff1680612064575060005460ff16155b6120805760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff161580156120a2576000805461ffff19166101011790555b6120aa6121e9565b6120b26121e9565b6120bc83836122b3565b80156108c8576000805461ff0019169055505050565b610a618282611670565b60006001600160a01b0384163b156121de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121209033908990889088906004016128db565b602060405180830381600087803b15801561213a57600080fd5b505af192505050801561216a575060408051601f3d908101601f191682019092526121679181019061273d565b60015b6121c4573d808015612198576040519150601f19603f3d011682016040523d82523d6000602084013e61219d565b606091505b5080516121bc5760405162461bcd60e51b81526004016107929061292b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d1565b506001949350505050565b600054610100900460ff1680612202575060005460ff16155b61221e5760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff16158015611fc8576000805461ffff191661010117905580156109be576000805461ff001916905550565b600054610100900460ff168061226c575060005460ff16155b6122885760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff161580156122aa576000805461ffff19166101011790555b611fc83361175d565b600054610100900460ff16806122cc575060005460ff16155b6122e85760405162461bcd60e51b81526004016107929061297d565b600054610100900460ff1615801561230a576000805461ffff19166101011790555b825161231d906065906020860190612348565b508151612331906066906020850190612348565b5080156108c8576000805461ff0019169055505050565b82805461235490612b4c565b90600052602060002090601f01602090048101928261237657600085556123bc565b82601f1061238f57805160ff19168380011785556123bc565b828001600101855582156123bc579182015b828111156123bc5782518255916020019190600101906123a1565b506123c89291506123cc565b5090565b5b808211156123c857600081556001016123cd565b600067ffffffffffffffff8311156123fb576123fb612be2565b61240e601f8401601f1916602001612a76565b905082815283838301111561242257600080fd5b828260208301376000602084830101529392505050565b600082601f830112612449578081fd5b8135602067ffffffffffffffff82111561246557612465612be2565b8160051b612474828201612a76565b83815282810190868401838801850189101561248e578687fd5b8693505b858410156124b0578035835260019390930192918401918401612492565b50979650505050505050565b6000602082840312156124cd578081fd5b813561119081612bf8565b600080604083850312156124ea578081fd5b82356124f581612bf8565b9150602083013561250581612bf8565b809150509250929050565b600080600060608486031215612524578081fd5b833561252f81612bf8565b9250602084013561253f81612bf8565b929592945050506040919091013590565b60008060008060808587031215612565578081fd5b843561257081612bf8565b9350602085013561258081612bf8565b925060408501359150606085013567ffffffffffffffff8111156125a2578182fd5b8501601f810187136125b2578182fd5b6125c1878235602084016123e1565b91505092959194509250565b600080604083850312156125df578182fd5b82356125ea81612bf8565b9150602083013567ffffffffffffffff811115612605578182fd5b61261185828601612439565b9150509250929050565b6000806040838503121561262d578182fd5b823561263881612bf8565b915060208301358015158114612505578182fd5b6000806040838503121561265e578182fd5b823561266981612bf8565b946020939093013593505050565b60008060006060848603121561268b578283fd5b833561269681612bf8565b95602085013595506040909401359392505050565b600080600080608085870312156126c0578384fd5b84356126cb81612bf8565b966020860135965060408601359560600135945092505050565b6000602082840312156126f6578081fd5b5035919050565b6000806040838503121561270f578182fd5b82359150602083013561250581612bf8565b600060208284031215612732578081fd5b813561119081612c0d565b60006020828403121561274e578081fd5b815161119081612c0d565b60006020828403121561276a578081fd5b815161119081612bf8565b600060208284031215612786578081fd5b813567ffffffffffffffff81111561279c578182fd5b8201601f810184136127ac578182fd5b6112d1848235602084016123e1565b600080604083850312156127cd578182fd5b82359150602083013567ffffffffffffffff811115612605578182fd5b600080604083850312156127fc578182fd5b50508035926020909101359150565b60008151808452612823816020860160208601612b09565b601f01601f19169290920160200192915050565b60008351612849818460208801612b09565b83519083019061285d818360208801612b09565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161289e816017850160208801612b09565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516128cf816028840160208801612b09565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061290e9083018461280b565b9695505050505050565b602081526000611190602083018461280b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252600b908201526a4d617669614e46543a303160a81b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a9f57612a9f612be2565b604052919050565b60008219821115612aba57612aba612bb6565b500190565b600082612ace57612ace612bcc565b500490565b6000816000190483118215151615612aed57612aed612bb6565b500290565b600082821015612b0457612b04612bb6565b500390565b60005b83811015612b24578181015183820152602001612b0c565b838111156110675750506000910152565b600081612b4457612b44612bb6565b506000190190565b600181811c90821680612b6057607f821691505b60208210811415612b8157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9b57612b9b612bb6565b5060010190565b600082612bb157612bb1612bcc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109be57600080fd5b6001600160e01b0319811681146109be57600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a26469706673582212200074feb7a6b89ab850e35c8967cda4293d6c7b8eace27878e96200eb3c8e9c7964736f6c63430008040033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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